:root {
  color-scheme: light;
  --bg: #f1be47;
  --text: #111111;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100dvh;
  background: var(--bg);
  color: var(--text);
  font-family: "Handjet", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

.qrlab-support {
  position: relative;
  min-height: 100dvh;
  padding: 24px 16px 56px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.support-copy {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  text-align: center;
}

.support-copy h1 {
  margin: 0;
  font-size: clamp(2rem, 7vw, 3.6rem);
  line-height: 1.1;
  font-weight: 800;
  letter-spacing: 0.02em;
}

.support-copy p {
  margin: 0;
  max-width: 24ch;
  font-size: clamp(1.3rem, 4.4vw, 2rem);
  line-height: 1.1;
  font-weight: 700;
}

.support-copy a {
  color: var(--text);
  font-weight: 400;
  text-decoration-thickness: 2px;
  text-underline-offset: 3px;
}

.privacy-link {
  position: absolute;
  left: 50%;
  bottom: 20px;
  transform: translateX(-50%);
  color: var(--text);
  font-size: clamp(1.2rem, 3.8vw, 1.5rem);
  font-weight: 700;
  text-decoration-thickness: 2px;
  text-underline-offset: 3px;
  letter-spacing: 0.01em;
}

.privacy-link:focus-visible {
  outline: 3px solid rgba(17, 17, 17, 0.3);
  outline-offset: 4px;
  border-radius: 8px;
}
