/* ============================================================
   Reach Creator — redesign
   Type:  Space Grotesk (display) · Hanken Grotesk (body) · JetBrains Mono (labels)
   ============================================================ */

:root {
  --bg:        #0b0b0c;
  --bg-2:      #111113;
  --surface:   #141417;
  --surface-2: #1b1b1f;
  --line:      rgba(255,255,255,.09);
  --line-2:    rgba(255,255,255,.16);
  --ink:       #f6f4f1;
  --ink-soft:  #b6b5b2;
  --ink-mute:  #79787a;

  /* light editorial */
  --paper:     #f3f1ec;
  --paper-2:   #e9e6df;
  --paper-line:rgba(11,11,12,.12);
  --ink-dark:  #131214;
  --ink-dark-soft: #4f4d50;

  /* brand red (tweakable) */
  --red:       #c81e2c;
  --red-bright:#f0414f;
  --red-deep:  #7c0d15;
  --red-glow:  rgba(200,30,44,.42);
  --red-rgb:   200,30,44;
  --orange-rgb: 245,130,31;

  /* brand orange — tertiary accent (from logo tagline) */
  --orange:    #f5821f;
  --orange-glow: rgba(245,130,31,.4);

  --maxw: 1240px;
  --pad: clamp(20px, 5vw, 64px);
  --r:   14px;

  --f-display: "Space Grotesk", system-ui, sans-serif;
  --f-body:    "Hanken Grotesk", system-ui, sans-serif;
  --f-mono:    "JetBrains Mono", ui-monospace, monospace;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--f-body);
  font-size: 17px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
::selection { background: var(--red); color: #fff; }

/* ---------- layout helpers ---------- */
.wrap { max-width: var(--maxw); margin: 0 auto; padding-inline: var(--pad); }
.section { position: relative; padding-block: clamp(72px, 11vw, 150px); }
.section--paper { background: var(--paper); color: var(--ink-dark); }
.section--tight { padding-block: clamp(48px, 7vw, 96px); }

.kicker {
  font-family: var(--f-mono);
  font-size: 12.5px;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--red);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 22px;
}
.kicker::before {
  content: "";
  width: 26px; height: 1px;
  background: var(--red);
  display: inline-block;
}
.section--paper .kicker { color: var(--orange); }
.section--paper .kicker::before { background: var(--orange); }

h1,h2,h3 { font-family: var(--f-display); font-weight: 600; line-height: 1.02; letter-spacing: -.02em; margin: 0; }
.h-sec {
  font-size: clamp(32px, 4.6vw, 58px);
  letter-spacing: -.025em;
  text-wrap: balance;
}
.lead {
  font-size: clamp(17px, 1.5vw, 20px);
  color: var(--ink-soft);
  max-width: 60ch;
  text-wrap: pretty;
}
.section--paper .lead { color: var(--ink-dark-soft); }
.sec-head { max-width: 760px; margin-bottom: clamp(40px, 5vw, 72px); }

/* ---------- buttons ---------- */
.btn {
  --bg-btn: var(--red);
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--f-body); font-weight: 600; font-size: 16px;
  padding: 15px 26px;
  border-radius: 100px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform .25s cubic-bezier(.2,.7,.3,1), background .25s, box-shadow .25s, color .25s, border-color .25s;
  white-space: nowrap;
}
.btn--primary {
  background: var(--red);
  color: #fff;
  box-shadow: 0 0 0 0 var(--red-glow);
}
.btn--primary:hover {
  background: var(--red-bright);
  transform: translateY(-2px);
  box-shadow: 0 14px 38px -10px var(--red-glow);
}
.btn--ghost {
  background: transparent;
  color: var(--ink);
  border-color: var(--line-2);
}
.btn--ghost:hover { border-color: var(--ink); transform: translateY(-2px); }
.section--paper .btn--ghost { color: var(--ink-dark); border-color: var(--paper-line); }
.section--paper .btn--ghost:hover { border-color: var(--ink-dark); }
.btn .ar { transition: transform .25s; }
.btn:hover .ar { transform: translateX(4px); }

/* ---------- nav ---------- */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 60;
  transition: background .35s, border-color .35s, backdrop-filter .35s;
  border-bottom: 1px solid transparent;
}
.nav.scrolled {
  background: rgba(11,11,12,.72);
  backdrop-filter: blur(14px) saturate(140%);
  border-bottom-color: var(--line);
}
.nav__in { display: flex; align-items: center; justify-content: space-between; height: 76px; }
.nav__logo img { height: 35px; }
.nav__links { display: flex; align-items: center; gap: 34px; }
.nav__links a {
  font-size: 15px; color: var(--ink-soft); font-weight: 500;
  position: relative; transition: color .2s;
}
.nav__links a::after {
  content:""; position:absolute; left:0; right:100%; bottom:-6px; height:1.5px;
  background: var(--red); transition: right .25s ease;
}
.nav__links a:hover { color: var(--ink); }
.nav__links a:hover::after { right: 0; }
.nav__cta { display: flex; align-items: center; gap: 18px; }
.nav__menu-btn { display:none; }
@media (max-width: 900px){
  .nav__links { display:none; }
}

/* ---------- HERO ---------- */
.hero { position: relative; min-height: 100svh; display: flex; align-items: center; overflow: hidden; }
#hero-canvas { position: absolute; inset: 0; width: 100%; height: 100%; z-index: 0; }
.hero__scrim {
  position: absolute; inset: 0; z-index: 1; pointer-events: none;
  background:
    radial-gradient(120% 90% at 78% 18%, transparent 0%, rgba(11,11,12,.4) 55%, var(--bg) 100%),
    linear-gradient(90deg, var(--bg) 8%, rgba(11,11,12,.55) 42%, transparent 70%);
}
.hero__in { position: relative; z-index: 2; width: 100%; padding-block: 120px 60px; }
.hero__eyebrow {
  display:inline-flex; align-items:center; gap:10px;
  font-family: var(--f-mono); font-size: 12.5px; letter-spacing:.16em; text-transform:uppercase;
  color: var(--ink-soft);
  border: 1px solid var(--line-2);
  padding: 7px 14px 7px 12px; border-radius: 100px;
  background: rgba(255,255,255,.03);
  margin-bottom: 30px;
}
.hero__eyebrow .dot { width:7px; height:7px; border-radius:50%; background: var(--red); box-shadow: 0 0 12px var(--red); }
.hero__title {
  font-size: clamp(40px, 6.6vw, 92px);
  line-height: .98;
  letter-spacing: -.03em;
  max-width: 16ch;
  margin-bottom: 26px;
}
.hero__title .accent { color: var(--red); position: relative; }
.hero__sub { font-size: clamp(17px, 1.7vw, 21px); color: var(--ink-soft); max-width: 50ch; margin-bottom: 38px; text-wrap: pretty; }
.hero__actions { display: flex; flex-wrap: wrap; gap: 14px; align-items: center; }

.hero__stats { display: flex; gap: clamp(28px, 5vw, 64px); margin-top: clamp(48px, 7vw, 86px); flex-wrap: wrap; }
.stat__num { font-family: var(--f-display); font-size: clamp(30px, 3.4vw, 46px); font-weight: 600; letter-spacing: -.02em; line-height: 1; }
.stat__num .u { color: var(--red); }
.stat__label { font-family: var(--f-mono); font-size: 12px; letter-spacing: .12em; text-transform: uppercase; color: var(--ink-mute); margin-top: 10px; }

.hero__hint {
  position: absolute; bottom: 26px; left: 50%; transform: translateX(-50%); z-index: 2;
  font-family: var(--f-mono); font-size: 11px; letter-spacing: .2em; text-transform: uppercase; color: var(--ink-mute);
  display:flex; align-items:center; gap:10px;
}
.hero__hint .ln { width: 1px; height: 30px; background: linear-gradient(var(--ink-mute), transparent); display:block; }

/* ---------- SUBPAGE HERO ---------- */
.page-hero {
  position: relative; padding-block: 140px 80px; overflow: hidden;
  background: linear-gradient(180deg, var(--surface) 0%, var(--bg) 100%);
  border-bottom: 1px solid var(--line);
}
.page-hero__in { position: relative; z-index: 2; text-align: center; }
.page-hero__title {
  font-size: clamp(38px, 5vw, 68px);
  line-height: 1.02;
  letter-spacing: -.03em;
  max-width: 18ch;
  margin: 0 auto 18px;
}
.page-hero__sub {
  font-size: clamp(16px, 1.3vw, 19px);
  color: var(--ink-soft);
  max-width: 60ch;
  margin: 0 auto 32px;
  text-wrap: pretty;
}
.page-hero__offerings {
  display: flex; flex-wrap: wrap; gap: 12px; justify-content: center;
  margin-top: 12px;
}
.page-hero__offerings .chip {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--surface-2); border: 1px solid var(--line-2);
  padding: 8px 16px; border-radius: 100px;
  font-size: 14px; color: var(--ink-soft); font-weight: 500;
}
.page-hero__offerings .chip .ic { width: 16px; height: 16px; color: var(--red); }

/* ---------- value chips under hero / trust ---------- */
.trust { border-bottom: 1px solid var(--line); background: linear-gradient(180deg, var(--bg-2), var(--bg)); }
.trust__in { display: grid; grid-template-columns: repeat(3,1fr); }
.trust__item { padding: 44px var(--pad); position: relative; }
.trust__item + .trust__item::before {
  content:""; position:absolute; left:0; top:38px; bottom:38px; width:1px;
  background: linear-gradient(transparent, var(--line) 22%, var(--line) 78%, transparent);
}
.trust__item h4 { font-family: var(--f-display); font-size: 18px; font-weight: 600; margin: 0 0 6px; letter-spacing: -.01em; }
.trust__item p { margin: 0; color: var(--ink-soft); font-size: 14.5px; max-width: 32ch; }
.trust__item .ic { width: 30px; height: 30px; margin-bottom: 16px; color: var(--red); }
@media (max-width: 820px){ .trust__in { grid-template-columns: 1fr; } .trust__item{ padding-block: 30px; } .trust__item + .trust__item::before { left: var(--pad); right: var(--pad); top:0; bottom:auto; width:auto; height:1px; background: var(--line); } }

/* ---------- services — interactive index ---------- */
.svc__top { display: grid; grid-template-columns: 1fr .8fr; gap: clamp(24px,4vw,60px); align-items: end; margin-bottom: clamp(40px,5vw,64px); }
@media (max-width: 860px){ .svc__top { grid-template-columns: 1fr; gap: 18px; } }
.svc__intro { color: var(--ink-soft); font-size: 16px; margin: 0; max-width: 46ch; text-wrap: pretty; }
.svc__intro strong { color: var(--ink); font-weight: 600; }

.svc__grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(28px,4vw,64px); align-items: start; }
@media (max-width: 860px){ .svc__grid { grid-template-columns: 1fr; gap: 8px; } }

/* left list */
.svc__list { list-style: none; margin: 0; padding: 0; border-top: 1px solid var(--line); }
.svc__item {
  position: relative; display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 20px;
  padding: clamp(18px,2.4vw,28px) 8px clamp(18px,2.4vw,28px) 22px;
  border-bottom: 1px solid var(--line); cursor: pointer;
  transition: padding-left .35s cubic-bezier(.2,.7,.3,1), background .35s;
  outline: none;
}
.svc__item::before {
  content:""; position:absolute; left:0; top:50%; transform: translateY(-50%);
  width: 3px; height: 0; background: var(--red); border-radius: 3px;
  transition: height .35s cubic-bezier(.2,.7,.3,1); box-shadow: 0 0 14px var(--red-glow);
}
.svc__n { font-family: var(--f-mono); font-size: 13px; color: var(--ink-mute); letter-spacing:.08em; transition: color .35s; }
.svc__name {
  font-family: var(--f-display); font-weight: 600; letter-spacing: -.02em; line-height: 1.02;
  font-size: clamp(16px,2vw,22px);
}
.svc__arrow { font-size: 19px; color: var(--ink-mute); transition: color .35s, transform .35s; }
.svc__item.is-active { padding-left: 32px; }
.svc__item.is-active::before { height: 60%; }
.svc__item.is-active .svc__n { color: var(--red); }
.svc__item.is-active .svc__arrow { color: var(--red); transform: translateX(4px); }
.svc__item:hover:not(.is-active) .svc__name { color: var(--ink); }

/* right stage */
.svc__stage { position: relative; min-height: 420px; }
.svc__ghost {
  position: absolute; right: 0; top: -16px;
  font-family: var(--f-display); font-size: clamp(100px,12vw,160px); font-weight: 700;
  color: rgba(255,255,255,.03); line-height: 1; letter-spacing: -.04em;
  pointer-events: none;
  user-select: none;
}
.svc__panel { display: none; }
.svc__panel.is-active { display: block; animation: fadIn .4s ease; }
@keyframes fadIn { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: translateY(0); } }
.svc__panel .svc__ic { width: 48px; height: 48px; color: var(--red); margin-bottom: 20px; }
.svc__panel h3 { font-size: clamp(24px,3vw,36px); margin-bottom: 14px; }
.svc__panel p { color: var(--ink-soft); max-width: 44ch; text-wrap: pretty; margin: 0 0 28px; }
.svc__meta { display: grid; grid-template-columns: 1fr 1fr; gap: 6px 20px; margin: 0; font-size: 14px; }
.svc__meta dt { font-family: var(--f-mono); font-size: 11px; letter-spacing:.12em; text-transform: uppercase; color: var(--ink-mute); }
.svc__meta dd { margin: 0; color: var(--ink); font-weight: 500; }
.svc__cta {
  display: inline-flex; align-items: center; gap: 10px;
  margin-top: 28px; font-weight: 600; font-size: 15px; color: var(--red);
  transition: gap .25s;
}
.svc__cta:hover { gap: 14px; }

/* ---------- why us ---------- */
.why__grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(36px,6vw,100px); align-items: start; }
@media (max-width: 900px){ .why__grid { grid-template-columns: 1fr; } }
.why__list { display: flex; flex-direction: column; gap: 22px; margin-top: 28px; }
.why__item { display: grid; grid-template-columns: auto 1fr; gap: 16px; }
.why__item .mk { width: 30px; height: 30px; border-radius: 50%; background: rgba(200,30,44,.12); display: flex; align-items: center; justify-content: center; color: var(--red); flex-shrink: 0; margin-top: 3px; }
.why__item h4 { font-family: var(--f-display); font-size: 16px; font-weight: 600; margin: 0 0 4px; letter-spacing: -.01em; }
.why__item p { margin: 0; color: var(--ink-soft); font-size: 14.5px; }

/* blacklist visualizer */
.blk {
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--r);
  padding: 22px 24px; font-family: var(--f-mono); font-size: 13px;
}
.blk__head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 16px; }
.blk__head h5 { margin: 0; font-family: var(--f-body); font-weight: 600; font-size: 14px; }
.blk__badge { font-size: 10px; letter-spacing: .12em; text-transform: uppercase; padding: 3px 9px; border-radius: 100px; background: rgba(200,30,44,.12); color: var(--red); border: 1px solid rgba(200,30,44,.25); }
.blk__row { display: flex; align-items: center; gap: 10px; padding: 10px 0; border-bottom: 1px solid var(--line); }
.blk__row:last-child { border-bottom: 0; }
.blk__row .ic { width: 16px; height: 16px; flex-shrink: 0; }
.blk__row .dom { flex: 1; }
.blk__row .st { font-size: 10px; letter-spacing: .1em; padding: 3px 8px; border-radius: 100px; }
.blk__row.bad .st { background: rgba(200,30,44,.15); color: var(--red); }
.blk__row.good .st { background: rgba(54,208,127,.15); color: #36d07f; }
.blk__row.bad .ic { color: var(--red); }

/* ---------- process ---------- */
.proc { display: grid; grid-template-columns: repeat(4,1fr); gap: 20px; counter-reset: step; list-style: none; margin: 0; padding: 0; }
@media (max-width: 880px){ .proc { grid-template-columns: repeat(2,1fr); } }
@media (max-width: 500px){ .proc { grid-template-columns: 1fr; } }
.proc__step { position: relative; padding: 28px 22px; background: var(--surface); border: 1px solid var(--line); border-radius: var(--r); }
.proc__num { font-family: var(--f-display); font-size: 32px; font-weight: 700; color: rgba(200,30,44,.25); letter-spacing: -.03em; line-height: 1; margin-bottom: 10px; }
.proc__step h3 { font-size: clamp(16px,1.4vw,20px); margin-bottom: 8px; }
.proc__step p { margin: 0; color: var(--ink-soft); font-size: 14px; text-wrap: pretty; }

/* ---------- founder (light section) ---------- */
.founder__grid { display: grid; grid-template-columns: .65fr 1fr; gap: clamp(36px,5vw,72px); align-items: start; }
@media (max-width: 800px){ .founder__grid { grid-template-columns: 1fr; } }
.founder__photo img { border-radius: var(--r); width: 100%; height: auto; aspect-ratio: 3/4; object-fit: cover; }
.founder__role { font-family: var(--f-mono); font-size: 12px; letter-spacing: .15em; text-transform: uppercase; color: var(--orange); margin-bottom: 4px; }
.founder__name { font-size: clamp(32px,4vw,48px); margin-bottom: 14px; }
.founder__bio { color: var(--ink-dark-soft); font-size: 16px; max-width: 55ch; text-wrap: pretty; }
.founder__pts { display: grid; grid-template-columns: 1fr 1fr; gap: 20px 28px; margin-top: 28px; }
@media (max-width: 540px){ .founder__pts { grid-template-columns: 1fr; } }
.founder__pt h5 { font-family: var(--f-mono); font-size: 11px; letter-spacing: .12em; text-transform: uppercase; color: var(--orange); margin: 0 0 5px; }
.founder__pt p { margin: 0; font-size: 14.5px; color: var(--ink-dark-soft); line-height: 1.55; }
.founder__cta { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 32px; }

/* ---------- testimonials ---------- */
.tst__grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
@media (max-width: 860px){ .tst__grid { grid-template-columns: 1fr; } }
.tst {
  background: var(--paper-2); border-radius: var(--r); padding: 28px 26px;
  display: flex; flex-direction: column;
}
.tst__stars { color: #eab308; font-size: 16px; letter-spacing: 2px; margin-bottom: 12px; }
.tst__quote { font-size: 14.5px; color: var(--ink-dark-soft); line-height: 1.65; flex: 1; text-wrap: pretty; margin: 0 0 18px; }
.tst__who { display: flex; align-items: center; gap: 12px; padding-top: 14px; border-top: 1px solid var(--paper-line); }
.tst__who img { width: 40px; height: 40px; border-radius: 50%; object-fit: cover; }
.tst__who b { display: block; font-size: 14px; }
.tst__who span { display: block; font-size: 12px; color: var(--ink-dark-soft); }

/* ---------- CTA ---------- */
.cta { text-align: center; }
.cta__in { max-width: 720px; }
.cta__in h2 { font-size: clamp(30px, 4vw, 50px); margin-bottom: 18px; text-wrap: balance; }
.cta__in p { color: var(--ink-soft); max-width: 55ch; margin: 0 auto 32px; font-size: 17px; text-wrap: pretty; }
.cta__actions { display: flex; flex-wrap: wrap; gap: 14px; justify-content: center; }

/* ---------- footer ---------- */
.foot { border-top: 1px solid var(--line); padding-block: clamp(48px,6vw,80px) 28px; background: var(--bg-2); }
.foot__top { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: clamp(24px,4vw,60px); }
@media (max-width: 760px){ .foot__top { grid-template-columns: 1fr 1fr; gap: 32px; } }
@media (max-width: 440px){ .foot__top { grid-template-columns: 1fr; } }
.foot__brand img { height: 32px; margin-bottom: 14px; }
.foot__brand p { font-size: 14px; color: var(--ink-soft); max-width: 34ch; text-wrap: pretty; }
.foot__col h6 { font-family: var(--f-mono); font-size: 11px; letter-spacing: .14em; text-transform: uppercase; color: var(--ink-mute); margin: 0 0 16px; }
.foot__col a { display: block; font-size: 14.5px; color: var(--ink-soft); padding: 4px 0; transition: color .2s; }
.foot__col a:hover { color: var(--ink); }
.foot__bot { margin-top: clamp(36px,4vw,52px); padding-top: 20px; border-top: 1px solid var(--line); display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px; font-size: 13px; color: var(--ink-mute); }
.foot__bot a { color: var(--ink-soft); }
.foot__bot a:hover { color: var(--ink); }

/* ---------- scroll reveal ---------- */
[data-reveal] { opacity: 0; transform: translateY(22px); transition: opacity .6s ease, transform .6s cubic-bezier(.2,.7,.3,1); }
[data-reveal].in { opacity: 1; transform: translateY(0); }
[data-delay="1"] { transition-delay: .1s; }
[data-delay="2"] { transition-delay: .2s; }

/* ---------- internal page content ---------- */
.page-content { padding-block: 60px 100px; }
.page-content .inner { max-width: 820px; margin: 0 auto; }
.page-content h2 { font-size: clamp(26px, 3vw, 36px); margin: 48px 0 16px; }
.page-content h3 { font-size: clamp(20px, 2.2vw, 26px); margin: 36px 0 12px; }
.page-content p { color: var(--ink-soft); margin: 0 0 18px; font-size: 16.5px; line-height: 1.7; }
.page-content ul, .page-content ol { color: var(--ink-soft); margin: 0 0 18px; padding-left: 24px; }
.page-content li { margin-bottom: 8px; font-size: 16.5px; }
.page-content blockquote {
  border-left: 3px solid var(--red); margin: 28px 0; padding: 16px 24px;
  background: var(--surface); border-radius: 0 var(--r) var(--r) 0;
}
.page-content blockquote p { margin: 0; font-style: italic; }

/* ---------- contact form (for subpages) ---------- */
.contact-form { max-width: 600px; margin: 40px auto 0; }
.contact-form .fld { margin-bottom: 18px; }
.contact-form label { display: block; font-size: 13px; font-weight: 600; margin-bottom: 5px; color: var(--ink-soft); }
.contact-form input,
.contact-form textarea {
  width: 100%; padding: 12px 16px; border-radius: 8px;
  background: var(--surface-2); border: 1px solid var(--line-2);
  color: var(--ink); font-family: var(--f-body); font-size: 15px;
  transition: border-color .2s;
}
.contact-form input:focus,
.contact-form textarea:focus { outline: none; border-color: var(--red); }
.contact-form button { width: 100%; }

/* ---------- articles grid ---------- */
.articles-container { display: grid; grid-template-columns: repeat(auto-fill, minmax(320px, 1fr)); gap: 24px; }
.article-card {
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--r);
  overflow: hidden; transition: transform .25s, border-color .25s;
}
.article-card:hover { transform: translateY(-3px); border-color: var(--line-2); }
.article-card img { width: 100%; height: 200px; object-fit: cover; }
.article-card .article-content { padding: 20px 22px; }
.article-card h3 { font-size: 18px; margin-bottom: 8px; }
.article-card p { font-size: 14px; color: var(--ink-soft); margin: 0 0 14px; }
.article-card .article-link { font-weight: 600; font-size: 14px; color: var(--red); }

/* ---------- privacy / markdown pages ---------- */
.page-hero--sm { padding-block: 130px 60px; }
.page-hero--sm .page-hero__title { font-size: clamp(30px, 4vw, 48px); }

/* ---------- thank you page ---------- */
.thank-you { min-height: 80vh; display: flex; align-items: center; justify-content: center; text-align: center; }
.thank-you__in { max-width: 540px; }
.thank-you__in h1 { font-size: clamp(34px, 5vw, 60px); margin-bottom: 16px; }
.thank-you__in p { color: var(--ink-soft); font-size: 17px; margin-bottom: 28px; }
