:root {
  --bg: #f5f1e8;
  --surface: #fffdf8;
  --ink: #161616;
  --muted: #69665f;
  --line: rgba(22, 22, 22, 0.17);
  --acid: #d7ff3f;
  --orange: #ff6b3d;
  --purple: #7161ff;
  --shadow: 10px 10px 0 #161616;
  --radius-lg: 32px;
  --radius-md: 22px;
  --radius-sm: 14px;
  --max-width: 1220px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at 8% 4%, rgba(113, 97, 255, 0.12), transparent 24rem),
    radial-gradient(circle at 88% 10%, rgba(255, 107, 61, 0.12), transparent 22rem),
    var(--bg);
  font-family: "Manrope", system-ui, sans-serif;
  line-height: 1.5;
  overflow-x: hidden;
}

button,
input {
  font: inherit;
}

a {
  color: inherit;
}

.noise {
  position: fixed;
  inset: 0;
  z-index: 100;
  pointer-events: none;
  opacity: 0.05;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.55'/%3E%3C/svg%3E");
}

.section-shell {
  width: min(calc(100% - 40px), var(--max-width));
  margin-inline: auto;
}

.site-header {
  width: min(calc(100% - 40px), var(--max-width));
  min-height: 84px;
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  border-bottom: 1px solid var(--line);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  font-family: "DM Mono", monospace;
  font-weight: 500;
  letter-spacing: 0.08em;
}

.brand-dot {
  width: 14px;
  height: 14px;
  display: block;
  border-radius: 999px;
  background: var(--acid);
  border: 2px solid var(--ink);
  box-shadow: 3px 3px 0 var(--ink);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 18px;
}

.language-switch {
  min-width: 44px;
  min-height: 38px;
  padding: 7px 10px;
  border: 1px solid var(--ink);
  border-radius: 999px;
  background: transparent;
  cursor: pointer;
  font-family: "DM Mono", monospace;
  font-size: 0.78rem;
  font-weight: 500;
}

.language-switch:hover {
  background: var(--ink);
  color: var(--surface);
}

.tiny-link {
  font-size: 0.88rem;
  font-weight: 700;
  text-underline-offset: 4px;
}

.hero {
  min-height: calc(100svh - 84px);
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(370px, 0.95fr);
  align-items: center;
  gap: clamp(40px, 7vw, 100px);
  padding-block: clamp(70px, 10vw, 130px);
}

.eyebrow,
.section-number,
.price-label {
  margin: 0 0 18px;
  font-family: "DM Mono", monospace;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.eyebrow {
  display: inline-flex;
  padding: 8px 12px;
  background: var(--acid);
  border: 1px solid var(--ink);
  border-radius: 999px;
}

h1,
h2,
p {
  margin-top: 0;
}

h1 {
  max-width: 770px;
  margin-bottom: 24px;
  font-size: clamp(3.5rem, 8vw, 7.5rem);
  line-height: 0.92;
  letter-spacing: -0.075em;
  font-weight: 800;
}

h2 {
  margin-bottom: 22px;
  font-size: clamp(2.4rem, 5vw, 5rem);
  line-height: 0.97;
  letter-spacing: -0.055em;
  font-weight: 800;
}

.scribble-wrap {
  position: relative;
  z-index: 1;
  display: inline-block;
}

.scribble {
  position: absolute;
  z-index: -1;
  left: -2%;
  right: -3%;
  bottom: 8%;
  height: 23%;
  background: var(--acid);
  transform: rotate(-1.7deg);
  border-radius: 4px 18px 5px 16px;
}

.hero-lead {
  max-width: 670px;
  margin-bottom: 30px;
  color: var(--muted);
  font-size: clamp(1.15rem, 2vw, 1.45rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
}

.button {
  min-height: 56px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding: 15px 21px;
  border: 2px solid var(--ink);
  border-radius: 999px;
  text-decoration: none;
  font-weight: 800;
  cursor: pointer;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.button:hover {
  transform: translate(-2px, -2px);
}

.button-primary {
  color: var(--ink);
  background: var(--acid);
  box-shadow: 5px 5px 0 var(--ink);
}

.button-primary:hover {
  box-shadow: 8px 8px 0 var(--ink);
}

.button-ghost {
  background: transparent;
}

.button-ghost:hover {
  background: var(--surface);
}

.button-light {
  background: var(--surface);
  color: var(--ink);
  box-shadow: 5px 5px 0 var(--acid);
}

.microcopy {
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 0.84rem;
}

.hero-object {
  position: relative;
  min-height: 540px;
  display: grid;
  place-items: center;
}

.email-card {
  width: min(100%, 480px);
  overflow: hidden;
  background: var(--surface);
  border: 2px solid var(--ink);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  transform: rotate(2deg);
  transition: transform 260ms ease;
}

.email-card.is-wiggling {
  animation: wiggle 460ms ease;
}

@keyframes wiggle {
  0%, 100% { transform: rotate(2deg) translateX(0); }
  25% { transform: rotate(0deg) translateX(-6px); }
  50% { transform: rotate(4deg) translateX(6px); }
  75% { transform: rotate(1deg) translateX(-3px); }
}

.email-toolbar {
  min-height: 58px;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 14px 18px;
  border-bottom: 2px solid var(--ink);
  background: #ebe7dc;
}

.email-toolbar > span {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: 1px solid var(--ink);
  background: var(--orange);
}

.email-toolbar > span:nth-child(2) {
  background: #ffd953;
}

.email-toolbar > span:nth-child(3) {
  background: var(--acid);
}

.email-toolbar small {
  margin-left: auto;
  font-family: "DM Mono", monospace;
  font-size: 0.62rem;
  letter-spacing: 0.06em;
}

.email-body {
  min-height: 350px;
  padding: clamp(34px, 6vw, 62px);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.email-message {
  margin-bottom: 34px;
  font-size: clamp(2rem, 4vw, 3.7rem);
  line-height: 1.02;
  letter-spacing: -0.045em;
  font-weight: 800;
}

.agree-button {
  align-self: flex-start;
  min-height: 48px;
  padding: 11px 18px;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  border: 1px solid var(--ink);
  border-radius: 999px;
  background: transparent;
  cursor: pointer;
  font-weight: 800;
}

.agree-button:hover,
.agree-button.is-agreed {
  background: var(--ink);
  color: var(--surface);
}

.agree-result {
  min-height: 22px;
  margin: 13px 0 0;
  color: var(--muted);
  font-size: 0.83rem;
}

.floating-note {
  position: absolute;
  max-width: 165px;
  padding: 12px 14px;
  border: 1px solid var(--ink);
  border-radius: 12px;
  background: var(--acid);
  font-family: "DM Mono", monospace;
  font-size: 0.74rem;
  box-shadow: 4px 4px 0 var(--ink);
}

.note-one {
  top: 8%;
  right: -2%;
  transform: rotate(7deg);
}

.note-two {
  bottom: 7%;
  left: -2%;
  background: #ffd9cc;
  transform: rotate(-8deg);
}

.marquee {
  overflow: hidden;
  padding-block: 19px;
  border-block: 2px solid var(--ink);
  background: var(--ink);
  color: var(--surface);
}

.marquee-track {
  width: max-content;
  display: flex;
  align-items: center;
  gap: 28px;
  animation: marquee 22s linear infinite;
  font-family: "DM Mono", monospace;
  letter-spacing: 0.08em;
}

@keyframes marquee {
  to {
    transform: translateX(-50%);
  }
}

.live-counter-section {
  padding-block: clamp(48px, 7vw, 90px);
}

.live-counter-card {
  padding: clamp(28px, 5vw, 58px);
  border: 2px solid var(--ink);
  border-radius: var(--radius-lg);
  background: var(--purple);
  color: var(--surface);
  box-shadow: var(--shadow);
  transform: rotate(-0.4deg);
}

.live-counter-card .section-number {
  color: rgba(255, 253, 248, 0.72);
}

.live-counter-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(280px, 0.75fr);
  align-items: end;
  gap: clamp(34px, 7vw, 90px);
}

.live-counter-title {
  max-width: 720px;
  margin: 0 0 18px;
  font-size: clamp(2.6rem, 5.6vw, 5.8rem);
}

.live-counter-copy {
  max-width: 670px;
  margin: 0;
  color: rgba(255, 253, 248, 0.76);
  font-size: clamp(1rem, 1.8vw, 1.25rem);
}

.live-counter-status p {
  min-height: 3.2em;
  margin: 18px 0 7px;
  font-size: 1.08rem;
  font-weight: 700;
}

.live-counter-status small {
  color: rgba(255, 253, 248, 0.7);
}

.counter-progress-track,
.referral-progress-track {
  position: relative;
  height: 15px;
  overflow: hidden;
  border: 2px solid currentColor;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.18);
}

.counter-progress-track > span,
.referral-progress-track > span {
  display: block;
  width: 0;
  height: 100%;
  background: var(--acid);
  transition: width 420ms ease;
}

.two-column,
.faq-section {
  padding-block: clamp(100px, 12vw, 180px);
  display: grid;
  grid-template-columns: minmax(260px, 0.8fr) minmax(0, 1.2fr);
  gap: clamp(40px, 9vw, 130px);
  border-bottom: 1px solid var(--line);
}

.section-number {
  color: var(--muted);
}

.large-copy > p {
  margin-bottom: 48px;
  font-size: clamp(1.4rem, 2.5vw, 2.25rem);
  line-height: 1.25;
  letter-spacing: -0.025em;
}

.truth-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border: 1px solid var(--ink);
  border-radius: var(--radius-md);
  overflow: hidden;
  background: var(--surface);
}

.truth-grid article {
  min-height: 180px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border-right: 1px solid var(--ink);
}

.truth-grid article:last-child {
  border-right: 0;
}

.truth-grid strong {
  font-size: 1.22rem;
}

.truth-grid span {
  color: var(--muted);
}

.promise-section {
  padding-block: clamp(100px, 12vw, 180px);
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  border-bottom: 1px solid var(--line);
}

.promise-column {
  padding: clamp(28px, 5vw, 58px);
  border: 2px solid var(--ink);
  border-radius: var(--radius-lg);
}

.promise-negative {
  background: #ffd9cc;
  transform: rotate(-1deg);
}

.promise-positive {
  background: var(--acid);
  transform: rotate(1deg);
}

.promise-list {
  margin: 34px 0 0;
  padding: 0;
  list-style: none;
}

.promise-list li {
  padding: 15px 0;
  border-top: 1px solid rgba(22, 22, 22, 0.28);
  font-size: clamp(1.08rem, 2vw, 1.4rem);
  font-weight: 700;
}

.promise-negative li::before {
  content: "×";
  margin-right: 12px;
}

.promise-positive li::before {
  content: "✓";
  margin-right: 12px;
}

.quote-section {
  padding-block: clamp(100px, 13vw, 190px);
  text-align: center;
  border-bottom: 1px solid var(--line);
}

blockquote {
  max-width: 980px;
  margin: 0 auto;
}

.quote-mark {
  display: block;
  margin-bottom: -30px;
  color: var(--purple);
  font-family: Georgia, serif;
  font-size: 9rem;
  line-height: 1;
}

blockquote p {
  margin-bottom: 24px;
  font-size: clamp(3rem, 8vw, 7rem);
  line-height: 0.98;
  letter-spacing: -0.06em;
  font-weight: 800;
}

blockquote footer {
  color: var(--muted);
}

.price-section {
  padding-block: clamp(100px, 12vw, 180px);
  display: grid;
  grid-template-columns: minmax(280px, 0.9fr) minmax(360px, 0.7fr);
  justify-content: space-between;
  gap: clamp(50px, 10vw, 140px);
  border-bottom: 1px solid var(--line);
}

.price-copy p:last-child {
  max-width: 620px;
  color: var(--muted);
  font-size: 1.2rem;
}

.price-card {
  padding: clamp(28px, 5vw, 52px);
  border: 2px solid var(--ink);
  border-radius: var(--radius-lg);
  background: var(--surface);
  box-shadow: var(--shadow);
}

.price {
  display: flex;
  align-items: baseline;
  margin-bottom: 24px;
}

.currency {
  align-self: flex-start;
  margin-top: 16px;
  font-size: 2rem;
  font-weight: 800;
}

.price strong {
  font-size: clamp(5rem, 10vw, 8rem);
  line-height: 0.9;
  letter-spacing: -0.07em;
}

.period {
  margin-left: 10px;
  color: var(--muted);
}

.price-card ul {
  margin: 30px 0;
  padding: 0;
  list-style: none;
}

.price-card li {
  padding: 11px 0;
  border-bottom: 1px solid var(--line);
}

.price-card li::before {
  content: "✓";
  margin-right: 10px;
  font-weight: 800;
}

.referral-offer {
  margin: 30px 0 18px;
  padding: 18px;
  border: 2px solid var(--ink);
  border-radius: var(--radius-sm);
  background: var(--acid);
  box-shadow: 4px 4px 0 var(--ink);
}

.referral-offer strong,
.referral-result strong {
  display: block;
  margin-bottom: 6px;
}

.referral-offer p,
.referral-result > p {
  margin: 0;
  color: var(--muted);
  font-size: 0.86rem;
}

.waitlist-notice {
  margin: 30px 0 18px;
  padding: 17px 18px;
  border: 1px solid var(--ink);
  border-radius: var(--radius-sm);
  background: #f2edff;
}

.waitlist-notice strong {
  display: block;
  margin-bottom: 5px;
}

.waitlist-notice p {
  margin: 0;
  color: var(--muted);
  font-size: 0.86rem;
}

.referral-arrival {
  margin: 0;
  padding: 12px 14px;
  border: 1px dashed var(--ink);
  border-radius: var(--radius-sm);
  background: #fff8d8;
  font-size: 0.82rem;
  font-weight: 700;
}

.signup-form {
  display: grid;
  gap: 12px;
}

.signup-fields {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
  gap: 10px;
}

.signup-form input {
  width: 100%;
  min-height: 56px;
  padding: 14px 17px;
  border: 2px solid var(--ink);
  border-radius: 999px;
  background: #fff;
  outline: none;
}

.signup-form input:focus {
  box-shadow: 0 0 0 4px rgba(113, 97, 255, 0.18);
}

.form-message {
  min-height: 22px;
  margin: 12px 0 0;
  font-size: 0.86rem;
  font-weight: 700;
}

.form-message.is-error {
  color: #a41b1b;
}

.form-message.is-success {
  color: #1d6f32;
}

.referral-result {
  margin-top: 18px;
  padding: 18px;
  border: 2px solid var(--ink);
  border-radius: var(--radius-sm);
  background: #f2edff;
}

.referral-link-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 10px;
  margin-top: 15px;
}

.referral-link-row input {
  min-width: 0;
  min-height: 52px;
  padding: 12px 15px;
  border: 2px solid var(--ink);
  border-radius: 999px;
  background: #fff;
  outline: none;
  font-family: "DM Mono", monospace;
  font-size: 0.77rem;
}

.referral-copy-button {
  min-height: 52px;
  padding-inline: 18px;
  white-space: nowrap;
}

.referral-code-line {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 0.78rem;
}

.referral-code-line code {
  color: var(--ink);
  font-family: "DM Mono", monospace;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.referral-progress-panel,
.share-panel {
  margin-top: 18px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
}

.referral-progress-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.progress-refresh {
  padding: 5px 0;
  border: 0;
  background: transparent;
  color: var(--muted);
  cursor: pointer;
  font-size: 0.78rem;
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.progress-refresh:disabled {
  cursor: wait;
  opacity: 0.6;
}

.referral-metrics {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin: 14px 0;
}

.referral-metrics > div {
  min-height: 112px;
  padding: 14px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border: 1px solid var(--ink);
  border-radius: var(--radius-sm);
  background: var(--surface);
}

.referral-metrics strong {
  margin: 0;
  font-size: 2.2rem;
  line-height: 1;
  letter-spacing: -0.05em;
}

.referral-metrics span {
  color: var(--muted);
  font-size: 0.76rem;
}

.referral-progress-track {
  color: var(--ink);
  background: #fff;
}

.referral-progress-panel > p {
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 0.78rem;
}

.share-panel > strong {
  margin-bottom: 4px;
}

.share-panel > p {
  margin: 0;
  color: var(--muted);
  font-size: 0.82rem;
}

.share-buttons {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 8px;
  margin-top: 14px;
}

.share-button {
  min-height: 44px;
  padding: 10px 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--ink);
  border-radius: 999px;
  background: var(--surface);
  color: var(--ink);
  cursor: pointer;
  text-decoration: none;
  font-size: 0.78rem;
  font-weight: 800;
}

.share-button:hover {
  background: var(--ink);
  color: var(--surface);
}

.share-native {
  font: inherit;
  font-size: 0.78rem;
  font-weight: 800;
}

.price-note {
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 0.76rem;
}

.faq-list {
  border-top: 1px solid var(--ink);
}

details {
  border-bottom: 1px solid var(--ink);
}

summary {
  padding: 23px 2px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  cursor: pointer;
  list-style: none;
  font-size: 1.15rem;
  font-weight: 800;
}

summary::-webkit-details-marker {
  display: none;
}

summary::after {
  content: "+";
  font-family: "DM Mono", monospace;
  font-size: 1.6rem;
  font-weight: 400;
}

details[open] summary::after {
  content: "−";
}

details p {
  max-width: 680px;
  padding: 0 38px 24px 2px;
  color: var(--muted);
}

.final-cta {
  background: var(--ink);
  color: var(--surface);
}

.final-cta-inner {
  padding-block: clamp(100px, 14vw, 190px);
  text-align: center;
}

.final-cta-inner > p:first-child {
  font-family: "DM Mono", monospace;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.final-cta-inner h2 {
  max-width: 1000px;
  margin-inline: auto;
  font-size: clamp(3.5rem, 9vw, 8rem);
}

.final-cta-inner > p:not(:first-child) {
  margin-bottom: 34px;
  color: #bbb7ae;
  font-size: 1.2rem;
}

.site-footer {
  min-height: 100px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  color: var(--muted);
  font-size: 0.85rem;
}

.site-footer p {
  margin: 0;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

@media (max-width: 930px) {
  .hero,
  .live-counter-layout,
  .two-column,
  .faq-section,
  .price-section {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .hero-copy {
    max-width: 820px;
  }

  .hero-object {
    min-height: 500px;
  }

  .note-one {
    right: 2%;
  }

  .note-two {
    left: 2%;
  }

  .promise-section {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 680px) {
  .section-shell,
  .site-header {
    width: min(calc(100% - 24px), var(--max-width));
  }

  .site-header {
    min-height: 72px;
  }

  .tiny-link {
    display: none;
  }

  h1 {
    font-size: clamp(3.35rem, 17vw, 5.7rem);
  }

  h2 {
    font-size: clamp(2.7rem, 12vw, 4.3rem);
  }

  .hero {
    padding-block: 58px 90px;
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .signup-fields,
  .referral-link-row,
  .referral-metrics,
  .share-buttons {
    grid-template-columns: 1fr;
  }

  .live-counter-card {
    transform: none;
    box-shadow: 7px 7px 0 var(--ink);
  }

  .referral-copy-button {
    width: 100%;
  }

  .hero-object {
    min-height: 430px;
  }

  .email-card {
    transform: rotate(0);
    box-shadow: 7px 7px 0 var(--ink);
  }

  .email-toolbar small {
    display: none;
  }

  .email-body {
    min-height: 310px;
  }

  .floating-note {
    display: none;
  }

  .truth-grid {
    grid-template-columns: 1fr;
  }

  .truth-grid article {
    min-height: 130px;
    border-right: 0;
    border-bottom: 1px solid var(--ink);
  }

  .truth-grid article:last-child {
    border-bottom: 0;
  }

  .promise-column {
    transform: none;
  }

  .price-section {
    grid-template-columns: 1fr;
  }

  .site-footer {
    min-height: 120px;
    align-items: flex-start;
    justify-content: center;
    flex-direction: column;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* Anti-bot honeypot: intentionally invisible to human visitors. */
.website-field {
  position: absolute !important;
  left: -10000px !important;
  top: auto !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
  opacity: 0 !important;
  pointer-events: none !important;
}

.signup-form .button:disabled {
  cursor: wait;
  opacity: 0.72;
  transform: none;
  box-shadow: 3px 3px 0 var(--ink);
}


/* Legal and privacy controls */
.consent-box {
  display: grid;
  gap: 14px;
  margin: 6px 0 4px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: #f7f4ec;
}

.consent-row {
  display: grid;
  grid-template-columns: 20px minmax(0, 1fr);
  align-items: start;
  gap: 11px;
  color: var(--muted);
  font-size: 0.82rem;
  line-height: 1.55;
}

.consent-row input {
  width: 18px;
  height: 18px;
  min-height: 0;
  margin: 2px 0 0;
  accent-color: var(--ink);
}

.consent-row a,
.consent-help a,
.footer-links a {
  font-weight: 800;
  text-underline-offset: 3px;
}

.consent-help {
  margin: 0 0 0 31px;
  color: var(--muted);
  font-size: 0.76rem;
  line-height: 1.5;
}

.footer-identity {
  display: grid;
  gap: 4px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
}

.legal-page-body {
  min-height: 100vh;
}

.legal-header {
  width: min(calc(100% - 40px), 980px);
  min-height: 84px;
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  border-bottom: 1px solid var(--line);
}

.legal-back {
  font-weight: 800;
  text-underline-offset: 4px;
}

.legal-document {
  width: min(calc(100% - 40px), 980px);
  margin-inline: auto;
  padding-block: clamp(64px, 9vw, 120px);
}

.legal-intro {
  max-width: 800px;
  margin-bottom: 54px;
}

.legal-intro h1 {
  max-width: none;
  margin-bottom: 20px;
  font-size: clamp(3.1rem, 8vw, 6.5rem);
}

.legal-intro > p {
  color: var(--muted);
  font-size: 1.05rem;
}

.legal-language-block {
  margin-top: 68px;
  padding-top: 54px;
  border-top: 2px solid var(--ink);
}

.legal-language-label {
  display: inline-flex;
  margin-bottom: 26px;
  padding: 7px 11px;
  border: 1px solid var(--ink);
  border-radius: 999px;
  background: var(--acid);
  font-family: monospace;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.legal-section {
  margin-top: 44px;
}

.legal-section h2 {
  margin-bottom: 18px;
  font-size: clamp(1.65rem, 3.5vw, 2.6rem);
  letter-spacing: -0.035em;
}

.legal-section h3 {
  margin: 28px 0 10px;
  font-size: 1.12rem;
}

.legal-section p,
.legal-section li,
.legal-data-grid dd,
.legal-data-grid dt {
  line-height: 1.72;
}

.legal-section ul {
  padding-left: 22px;
}

.legal-data-grid {
  display: grid;
  grid-template-columns: minmax(180px, 0.35fr) minmax(0, 0.65fr);
  gap: 0;
  margin: 20px 0 0;
  border: 1px solid var(--ink);
  border-radius: var(--radius-md);
  overflow: hidden;
  background: var(--surface);
}

.legal-data-grid dt,
.legal-data-grid dd {
  margin: 0;
  padding: 14px 18px;
  border-bottom: 1px solid var(--line);
}

.legal-data-grid dt {
  font-weight: 800;
  background: #eee9de;
}

.legal-data-grid > :nth-last-child(-n+2) {
  border-bottom: 0;
}

.legal-note {
  padding: 18px 20px;
  border-left: 5px solid var(--purple);
  background: var(--surface);
}

.legal-footer {
  width: min(calc(100% - 40px), 980px);
  margin-inline: auto;
  padding: 34px 0 60px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 20px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.85rem;
}

.legal-footer nav {
  display: flex;
  gap: 16px;
}

@media (max-width: 680px) {
  .consent-help {
    margin-left: 0;
  }

  .site-footer,
  .legal-header,
  .legal-footer {
    align-items: flex-start;
  }

  .footer-links {
    justify-content: flex-start;
  }

  .legal-header,
  .legal-document,
  .legal-footer {
    width: min(calc(100% - 24px), 980px);
  }

  .legal-data-grid {
    grid-template-columns: 1fr;
  }

  .legal-data-grid dt {
    border-bottom: 0;
    padding-bottom: 3px;
  }

  .legal-data-grid dd {
    padding-top: 3px;
  }

  .legal-data-grid > :nth-last-child(-n+2) {
    border-bottom: 1px solid var(--line);
  }

  .legal-data-grid dd:last-child {
    border-bottom: 0;
  }
}
