/* ============================================================
   ShopDomainName — styles.css
   Brand tokens carried over from the prototype, with fixes:
   - --slate darkened for WCAG AA small-text contrast
   - pulse animates transform/opacity (not box-shadow)
   - fonts self-hosted (no third-party requests)
   ============================================================ */

/* ---------- Fonts (self-hosted) ---------- */
@font-face {
  font-family: 'Bricolage Grotesque';
  font-style: normal;
  font-weight: 200 800;
  font-display: swap;
  src: url('/fonts/bricolage-grotesque-var.woff2') format('woff2');
}
@font-face {
  font-family: 'Manrope';
  font-style: normal;
  font-weight: 200 800;
  font-display: swap;
  src: url('/fonts/manrope-var.woff2') format('woff2');
}
@font-face {
  font-family: 'JetBrains Mono';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('/fonts/jetbrains-mono-latin-400-normal.woff2') format('woff2');
}
@font-face {
  font-family: 'JetBrains Mono';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url('/fonts/jetbrains-mono-latin-500-normal.woff2') format('woff2');
}
@font-face {
  font-family: 'JetBrains Mono';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url('/fonts/jetbrains-mono-latin-700-normal.woff2') format('woff2');
}

/* ---------- Tokens ---------- */
:root {
  --ink: #0d0e12;
  --ink-2: #15161c;
  --graphite: #3a3d45;
  --slate: #5b5f68;        /* darkened from #71757F for AA contrast */
  --slate-dark-bg: #9aa0aa; /* muted text on dark surfaces only */
  --porcelain: #f2f3f5;
  --porcelain-2: #eaecef;
  --pure: #ffffff;
  --hairline: rgba(13, 14, 18, 0.08);
  --hairline-2: rgba(13, 14, 18, 0.16);
  --hairline-d: rgba(255, 255, 255, 0.12);
  --emerald: #1fa971;
  --emerald-deep: #157a52;
  --emerald-soft: rgba(31, 169, 113, 0.12);
  --rose: #c4373c;
  --irid: linear-gradient(110deg, #6ee7d6 0%, #7c9cff 38%, #b98cff 68%, #ffc48a 100%);
  --irid-soft: linear-gradient(110deg, rgba(110,231,214,.16), rgba(124,156,255,.16), rgba(185,140,255,.16), rgba(255,196,138,.16));
  --shadow-sm: 0 1px 2px rgba(13,14,18,.04), 0 2px 6px rgba(13,14,18,.04);
  --shadow-md: 0 4px 12px rgba(13,14,18,.06), 0 14px 34px rgba(13,14,18,.08);
  --shadow-lg: 0 8px 24px rgba(13,14,18,.08), 0 30px 70px rgba(13,14,18,.14);
  --r-sm: 10px; --r-md: 16px; --r-lg: 24px; --r-xl: 34px; --r-pill: 999px;
  --maxw: 1160px;
  --ease: cubic-bezier(.2, .7, .2, 1);
  --ease-out: cubic-bezier(.16, 1, .3, 1);
  --font-disp: 'Bricolage Grotesque', 'Manrope', system-ui, sans-serif;
  --font-body: 'Manrope', system-ui, -apple-system, sans-serif;
  --font-mono: 'JetBrains Mono', ui-monospace, monospace;
}

/* ---------- Base ---------- */
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; scroll-padding-top: 84px; }
body {
  font-family: var(--font-body);
  background: var(--porcelain);
  color: var(--ink);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; }
button, input, select { font-family: inherit; font-size: inherit; color: inherit; }
button { cursor: pointer; border: none; background: none; }
h1, h2, h3 { font-family: var(--font-disp); letter-spacing: -.03em; line-height: 1.05; }
.wrap { max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }
.eyebrow {
  font-family: var(--font-mono);
  font-size: 11px; font-weight: 700;
  letter-spacing: .2em; text-transform: uppercase;
  color: var(--slate);
}
.mono { font-family: var(--font-mono); font-variant-numeric: tabular-nums; }
:focus-visible { outline: 2.5px solid #7c9cff; outline-offset: 3px; border-radius: 6px; }
::selection { background: rgba(124, 156, 255, .25); }

.skip {
  position: absolute; left: 16px; top: -48px; z-index: 300;
  background: var(--ink); color: var(--pure);
  padding: 10px 16px; border-radius: var(--r-sm);
  font-weight: 600; text-decoration: none;
  transition: top .2s var(--ease);
}
.skip:focus-visible { top: 12px; }

.visually-hidden {
  position: absolute !important;
  width: 1px; height: 1px;
  margin: -1px; padding: 0; border: 0;
  clip-path: inset(50%); overflow: hidden; white-space: nowrap;
}

/* ---------- Signature dot (transform-based pulse) ---------- */
.dot {
  position: relative;
  display: inline-block;
  width: 11px; height: 11px;
  border-radius: 50%;
  background: var(--irid);
  background-size: 200% 200%;
  animation: sheen 6s linear infinite;
  vertical-align: middle;
  flex: none;
}
.dot::after {
  content: "";
  position: absolute; inset: 0;
  border-radius: 50%;
  background: rgba(124, 156, 255, .45);
  animation: pulse 2.6s var(--ease) infinite;
}
.dot--sm { width: 7px; height: 7px; }
@keyframes sheen { to { background-position: 200% 50%; } }
@keyframes pulse {
  0% { transform: scale(1); opacity: .5; }
  70%, 100% { transform: scale(2.4); opacity: 0; }
}

.grad-text {
  background: var(--irid);
  background-size: 160% 160%;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation: sheen 8s linear infinite;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  font-weight: 700; font-size: 14.5px; line-height: 1;
  padding: 13px 22px; border-radius: var(--r-pill);
  text-decoration: none; white-space: nowrap;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease), background .2s, color .2s;
}
.btn:active { transform: translateY(1px); }
.btn-ink { background: var(--ink); color: var(--pure); box-shadow: var(--shadow-sm); }
.btn-ink:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn-ghost { background: var(--pure); color: var(--ink); box-shadow: inset 0 0 0 1px var(--hairline-2); }
.btn-ghost:hover { box-shadow: inset 0 0 0 1px var(--ink); transform: translateY(-2px); }
.btn-lg { padding: 16px 28px; font-size: 15.5px; }
.btn-sm { padding: 9px 15px; font-size: 13px; }
.btn[disabled] { opacity: .55; cursor: default; transform: none !important; }

/* ---------- Auth controls (Clerk) ---------- */
.nav-auth { display: flex; align-items: center; gap: 8px; }
.user-button-slot { display: flex; align-items: center; min-width: 28px; }
.mobile-auth-btn {
  display: block; width: 100%; text-align: left; background: none; border: none;
  font: inherit; font-weight: 600; color: var(--ink); padding: 14px 0; cursor: pointer;
  border-bottom: 1px solid var(--hairline);
}

/* ---------- Account page ---------- */
.acct-bar { border-bottom: 1px solid var(--hairline); background: var(--pure); }
.acct-bar-inner { display: flex; align-items: center; justify-content: space-between; height: 66px; }
.acct-main { padding: 56px 0 96px; min-height: 60vh; }
.acct-gate { max-width: 480px; }
.acct-gate h1, .acct-dash h1 { font-family: var(--font-disp); font-weight: 700; letter-spacing: -.03em; font-size: clamp(28px, 4vw, 40px); }
.acct-gate p { margin: 12px 0 24px; color: var(--slate); line-height: 1.6; }
.acct-verify { margin-top: 8px; font-size: 12px; color: var(--slate); }
.acct-cards { margin-top: 32px; display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 18px; }
.acct-card { position: relative; padding: 24px; border: 1px solid var(--hairline); border-radius: var(--r-lg, 16px); background: var(--pure); }
.acct-card h2 { font-family: var(--font-disp); font-weight: 700; font-size: 19px; letter-spacing: -.02em; margin-top: 10px; }
.acct-card p { margin-top: 8px; color: var(--slate); font-size: 14px; line-height: 1.55; }
.acct-soon {
  font-family: var(--font-mono); font-size: 10.5px; font-weight: 700;
  letter-spacing: .1em; text-transform: uppercase; color: var(--slate);
  background: rgba(13,14,18,.05); padding: 3px 8px; border-radius: var(--r-pill);
}
.acct-empty { margin-top: 32px; color: var(--slate); font-size: 13.5px; line-height: 1.6; }

/* ---------- Nav ---------- */
.nav {
  position: sticky; top: 0; z-index: 200;
  background: rgba(242, 243, 245, .78);
  backdrop-filter: saturate(1.4) blur(16px);
  -webkit-backdrop-filter: saturate(1.4) blur(16px);
  border-bottom: 1px solid var(--hairline);
}
.nav-inner { display: flex; align-items: center; gap: 20px; height: 66px; }
.brand {
  display: inline-flex; align-items: center; gap: 9px;
  font-weight: 800; font-size: 17.5px; letter-spacing: -.02em;
  text-decoration: none;
}
.nav-links { display: flex; gap: 2px; margin-left: 8px; }
.nav-links a {
  font-size: 14px; font-weight: 600; color: var(--graphite);
  padding: 9px 13px; border-radius: var(--r-pill);
  text-decoration: none; transition: .2s;
}
.nav-links a:hover { color: var(--ink); background: rgba(13, 14, 18, .05); }
.nav-cta { margin-left: auto; display: flex; align-items: center; gap: 10px; }
.nav-cta .badge-beta {
  font-family: var(--font-mono); font-size: 10.5px; font-weight: 700;
  letter-spacing: .1em; color: var(--emerald-deep);
  background: var(--emerald-soft);
  padding: 5px 10px; border-radius: var(--r-pill);
}
.menu-btn {
  display: none;
  width: 42px; height: 42px;
  place-items: center;
  border-radius: var(--r-sm);
  background: var(--pure);
  border: 1px solid var(--hairline);
}
.menu-btn .ic-close { display: none; }
.menu-btn[aria-expanded="true"] .ic-open { display: none; }
.menu-btn[aria-expanded="true"] .ic-close { display: block; }

.mobile-menu {
  display: none;
  border-top: 1px solid var(--hairline);
  background: var(--porcelain);
  padding: 10px 24px 18px;
}
.mobile-menu.open { display: block; }
.mobile-menu a {
  display: block; padding: 13px 4px;
  font-weight: 700; font-size: 16px;
  text-decoration: none;
  border-bottom: 1px solid var(--hairline);
}
.mobile-menu a:last-child { border-bottom: none; }

/* ---------- Hero ---------- */
.hero { position: relative; padding: 72px 0 80px; overflow: hidden; }
.hero-glow {
  position: absolute; top: -200px; left: 50%; transform: translateX(-50%);
  width: 900px; height: 560px; border-radius: 50%;
  background: var(--irid-soft); filter: blur(80px); opacity: .9;
  pointer-events: none;
}
.hero-grid {
  position: relative;
  display: grid; grid-template-columns: 1.02fr .98fr;
  gap: 56px; align-items: center;
}
.status-pill {
  display: inline-flex; align-items: center; gap: 9px;
  background: var(--pure); border: 1px solid var(--hairline);
  border-radius: var(--r-pill); padding: 8px 15px;
  font-size: 12.5px; font-weight: 700; color: var(--graphite);
  box-shadow: var(--shadow-sm); margin-bottom: 26px;
}
.status-pill .mono { color: var(--emerald-deep); font-size: 11px; letter-spacing: .08em; }
.hero h1 {
  font-size: clamp(38px, 5.6vw, 66px);
  font-weight: 700; max-width: 15ch;
}
.hero-sub {
  font-size: clamp(16px, 1.9vw, 18.5px);
  color: var(--graphite);
  max-width: 50ch; margin-top: 20px;
}
.hero-ctas { display: flex; gap: 12px; margin-top: 30px; flex-wrap: wrap; }

/* ---------- Valuation tool (the signature) ---------- */
.tool {
  position: relative;
  background: var(--pure);
  border: 1px solid var(--hairline);
  border-radius: var(--r-xl);
  padding: 30px;
  box-shadow: var(--shadow-lg);
}
.tool::before {
  content: ""; position: absolute; inset: 0;
  border-radius: inherit;
  background: var(--irid-soft); opacity: .45;
  pointer-events: none;
}
.tool > * { position: relative; }
.tool-head { display: flex; align-items: center; justify-content: space-between; gap: 12px; margin-bottom: 20px; }
.tool-title { display: flex; align-items: center; gap: 10px; font-weight: 800; font-size: 16.5px; letter-spacing: -.01em; }
.tool-live {
  font-family: var(--font-mono); font-size: 10.5px; font-weight: 700;
  letter-spacing: .1em; color: var(--emerald-deep);
  display: inline-flex; align-items: center; gap: 7px;
}
.val-form { display: flex; gap: 10px; }
.val-form input {
  flex: 1; min-width: 0;
  border: 1px solid var(--hairline-2); border-radius: var(--r-md);
  padding: 14px 16px; font-size: 15.5px;
  font-family: var(--font-mono);
  background: var(--pure); outline: none;
  transition: border-color .2s;
}
.val-form input:focus { border-color: var(--ink); }
.tool .hint {
  display: flex; align-items: center; gap: 7px;
  font-size: 12.5px; color: var(--slate);
  margin-top: 12px;
}
.val-msg { margin-top: 12px; font-size: 13.5px; font-weight: 600; color: var(--rose); min-height: 0; }

.val-result { margin-top: 6px; display: none; }
.val-result.show { display: block; animation: rise .5s var(--ease-out); }
@keyframes rise { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: none; } }

.val-top {
  display: flex; align-items: center; justify-content: space-between; gap: 20px;
  padding: 18px 0 20px; border-bottom: 1px solid var(--hairline);
}
.val-domain { font-family: var(--font-disp); font-weight: 700; font-size: clamp(22px, 3vw, 30px); letter-spacing: -.03em; overflow-wrap: anywhere; }
.val-domain .tld { color: var(--slate); }
.val-range-label {
  font-family: var(--font-mono); font-size: 10.5px; font-weight: 700;
  letter-spacing: .14em; text-transform: uppercase; color: var(--slate);
}
.val-range { font-family: var(--font-disp); font-weight: 700; font-size: clamp(19px, 2.4vw, 25px); letter-spacing: -.02em; }
.val-range-row { display: flex; align-items: baseline; flex-wrap: wrap; gap: 10px; margin-top: 4px; }
.val-conf {
  font-family: var(--font-mono); font-size: 10px; font-weight: 700;
  letter-spacing: .1em; text-transform: uppercase;
  color: var(--slate); background: rgba(13,14,18,.05);
  padding: 2px 7px; border-radius: var(--r-pill); white-space: nowrap;
}
.val-message {
  margin-top: 14px; font-size: 14px; line-height: 1.55; color: var(--graphite);
  overflow-wrap: anywhere;
}

.gauge { position: relative; width: 92px; height: 92px; flex: none; }
.gauge svg { transform: rotate(-90deg); }
.gauge .ring-bg { fill: none; stroke: var(--porcelain-2); stroke-width: 8; }
.gauge .ring-fg {
  fill: none; stroke: url(#iridgrad); stroke-width: 8; stroke-linecap: round;
  transition: stroke-dashoffset 1.4s var(--ease-out);
}
.gauge-num { position: absolute; inset: 0; display: grid; place-items: center; text-align: center; }
.gauge-num b { font-family: var(--font-disp); font-size: 25px; font-weight: 700; display: block; }
.gauge-num span {
  font-family: var(--font-mono); font-size: 8.5px; font-weight: 700;
  letter-spacing: .12em; color: var(--slate); display: block;
}

.factors { margin-top: 18px; display: flex; flex-direction: column; gap: 12px; }
.factor { display: grid; grid-template-columns: 158px 1fr 36px; align-items: center; gap: 12px; }
.factor .fl { font-size: 12.5px; font-weight: 600; color: var(--graphite); }
.factor .bar { height: 7px; border-radius: var(--r-pill); background: var(--porcelain-2); overflow: hidden; }
.factor .bar i {
  display: block; height: 100%; width: 0;
  border-radius: var(--r-pill); background: var(--irid);
  transition: width 1s var(--ease-out);
}
.factor .fv { font-family: var(--font-mono); font-size: 12px; font-weight: 700; text-align: right; }
.val-note { margin-top: 18px; font-size: 12px; color: var(--slate); line-height: 1.5; }

/* ---------- Status band (replaces the fake stats strip) ---------- */
.status-band { background: var(--pure); border-top: 1px solid var(--hairline); border-bottom: 1px solid var(--hairline); }
.status-grid { display: grid; grid-template-columns: repeat(3, 1fr); }
.status-cell { padding: 34px 26px; border-right: 1px solid var(--hairline); }
.status-cell:last-child { border-right: none; }
.status-cell .k {
  font-family: var(--font-mono); font-size: 10.5px; font-weight: 700;
  letter-spacing: .16em; text-transform: uppercase;
  display: inline-flex; align-items: center; gap: 8px;
}
.status-cell .k.live { color: var(--emerald-deep); }
.status-cell .k.build { color: #5566cc; }
.status-cell .k.next { color: var(--slate); }
.status-cell p { margin-top: 10px; font-size: 14.5px; color: var(--graphite); font-weight: 500; line-height: 1.5; }

/* ---------- Sections ---------- */
.sec { padding: 92px 0; }
.sec-head { max-width: 640px; margin-bottom: 44px; }
.sec-head h2 { font-size: clamp(28px, 4vw, 42px); font-weight: 700; margin-top: 14px; }
.sec-head p { font-size: 16.5px; color: var(--graphite); margin-top: 14px; }

/* ---------- How it will work ---------- */
.steps {
  display: grid; grid-template-columns: repeat(4, 1fr);
  background: var(--pure); border: 1px solid var(--hairline);
  border-radius: var(--r-xl); overflow: hidden;
}
.step { padding: 30px 24px; border-right: 1px solid var(--hairline); }
.step:last-child { border-right: none; }
.step .n { font-family: var(--font-mono); font-size: 12px; font-weight: 700; color: var(--slate); letter-spacing: .1em; }
.step h3 { font-size: 17.5px; font-weight: 700; letter-spacing: -.02em; margin: 13px 0 8px; font-family: var(--font-body); }
.step p { font-size: 13.5px; color: var(--graphite); line-height: 1.55; }
.how-note { margin-top: 18px; font-size: 13px; color: var(--slate); }

/* ---------- Waitlist (dark band) ---------- */
.waitlist { background: var(--ink); color: var(--pure); position: relative; overflow: hidden; }
.waitlist-glow {
  position: absolute; top: -30%; right: -12%;
  width: 620px; height: 620px; border-radius: 50%;
  background: var(--irid-soft); filter: blur(90px); opacity: .5;
  pointer-events: none;
}
.waitlist-grid { position: relative; display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.waitlist h2 { color: var(--pure); font-size: clamp(28px, 3.8vw, 42px); font-weight: 700; margin-top: 14px; }
.waitlist .lead { color: var(--slate-dark-bg); font-size: 16px; margin-top: 16px; max-width: 44ch; }
.waitlist .eyebrow { color: var(--slate-dark-bg); }

.wl-card {
  background: var(--ink-2); border: 1px solid var(--hairline-d);
  border-radius: var(--r-lg); padding: 28px;
}
.wl-field { margin-bottom: 16px; }
.wl-field label {
  display: block; margin-bottom: 8px;
  font-family: var(--font-mono); font-size: 11px; font-weight: 700;
  letter-spacing: .1em; text-transform: uppercase; color: var(--slate-dark-bg);
}
.wl-field input, .wl-field select {
  width: 100%;
  background: var(--ink); color: var(--pure);
  border: 1px solid var(--hairline-d); border-radius: var(--r-md);
  padding: 14px 15px; font-size: 15px; outline: none;
  transition: border-color .2s;
}
.wl-field input:focus, .wl-field select:focus { border-color: #7c9cff; }
.wl-field select { appearance: none; }
.wl-actions { margin-top: 6px; }
.wl-actions .btn { width: 100%; background: var(--pure); color: var(--ink); }
.wl-actions .btn:hover { background: #e9ebfa; }
.wl-fine { margin-top: 14px; font-size: 12px; color: var(--slate-dark-bg); line-height: 1.6; }
.wl-fine a { color: #c7cbe0; }
.wl-msg { margin-top: 14px; font-size: 14px; font-weight: 600; display: none; }
.wl-msg.ok { display: block; color: #5fe0ae; }
.wl-msg.err { display: block; color: #ff9a9e; }
.wl-success { display: none; text-align: center; padding: 26px 6px; }
.wl-success.show { display: block; animation: rise .4s var(--ease-out); }
.wl-success .ic {
  width: 60px; height: 60px; border-radius: 50%;
  background: var(--emerald-soft); color: var(--emerald);
  display: grid; place-items: center; margin: 0 auto 16px;
}
.wl-success h3 { color: var(--pure); font-size: 21px; font-family: var(--font-body); font-weight: 800; }
.wl-success p { color: var(--slate-dark-bg); font-size: 14px; margin-top: 8px; }

/* ---------- FAQ ---------- */
.faq { max-width: 800px; }
.faq details { border-bottom: 1px solid var(--hairline); }
.faq summary {
  display: flex; justify-content: space-between; align-items: center; gap: 18px;
  padding: 22px 4px; cursor: pointer; list-style: none;
  font-size: 17px; font-weight: 700; letter-spacing: -.01em;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary .pm {
  width: 28px; height: 28px; flex: none;
  border: 1px solid var(--hairline-2); border-radius: 50%;
  display: grid; place-items: center;
  transition: transform .3s var(--ease), background .2s, color .2s;
}
.faq details[open] .pm { background: var(--ink); color: var(--pure); border-color: var(--ink); transform: rotate(45deg); }
.faq .faq-a { padding: 0 4px 24px; font-size: 15px; color: var(--graphite); line-height: 1.65; max-width: 66ch; }

/* ---------- Footer ---------- */
footer { background: var(--ink); color: var(--pure); padding: 52px 0 40px; }
.foot-in { display: flex; align-items: center; justify-content: space-between; gap: 20px; flex-wrap: wrap; }
.foot-in .brand { color: var(--pure); }
.foot-links { display: flex; gap: 4px; flex-wrap: wrap; }
.foot-links a {
  font-size: 13.5px; font-weight: 600; color: #d4d6db;
  text-decoration: none; padding: 8px 12px; border-radius: var(--r-pill);
  transition: .2s;
}
.foot-links a:hover { color: var(--pure); background: rgba(255, 255, 255, .07); }
.foot-copy { font-size: 13px; color: var(--slate-dark-bg); }

/* ---------- Legal / document pages ---------- */
.doc { max-width: 760px; margin: 0 auto; padding: 64px 24px 96px; }
.doc h1 { font-size: clamp(30px, 4.5vw, 42px); }
.doc .updated { font-family: var(--font-mono); font-size: 12px; color: var(--slate); margin-top: 12px; }
.doc h2 { font-size: 21px; margin: 40px 0 12px; font-family: var(--font-body); font-weight: 800; letter-spacing: -.01em; }
.doc p, .doc li { font-size: 15.5px; color: var(--graphite); line-height: 1.7; }
.doc ul { padding-left: 22px; margin: 10px 0; }
.doc li { margin: 6px 0; }
.doc a { color: var(--ink); font-weight: 600; }
.doc .backlink { display: inline-block; margin-bottom: 28px; font-weight: 700; font-size: 14px; text-decoration: none; color: var(--graphite); }
.doc .backlink:hover { color: var(--ink); }

/* ---------- Reveal ---------- */
.reveal { opacity: 0; transform: translateY(20px); transition: opacity .65s var(--ease-out), transform .65s var(--ease-out); }
.reveal.in { opacity: 1; transform: none; }

/* ---------- Responsive ---------- */
@media (max-width: 960px) {
  .hero-grid, .waitlist-grid { grid-template-columns: 1fr; gap: 40px; }
  .steps { grid-template-columns: 1fr 1fr; }
  .step:nth-child(2) { border-right: none; }
  .step:nth-child(-n+2) { border-bottom: 1px solid var(--hairline); }
  .status-grid { grid-template-columns: 1fr; }
  .status-cell { border-right: none; border-bottom: 1px solid var(--hairline); }
  .status-cell:last-child { border-bottom: none; }
  .nav-links { display: none; }
  .menu-btn { display: grid; }
}
@media (max-width: 600px) {
  .wrap { padding: 0 18px; }
  .sec { padding: 64px 0; }
  .hero { padding: 48px 0 60px; }
  .steps { grid-template-columns: 1fr; }
  .step { border-right: none; border-bottom: 1px solid var(--hairline); }
  .step:last-child { border-bottom: none; }
  .val-form { flex-direction: column; }
  .val-form .btn { width: 100%; }
  .factor { grid-template-columns: 118px 1fr 34px; }
  .nav-cta .badge-beta { display: none; }
  .foot-in { flex-direction: column; align-items: flex-start; }
}

/* ---------- Reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .001ms !important;
    scroll-behavior: auto !important;
  }
  .reveal { opacity: 1; transform: none; }
  .dot::after { display: none; }
}

/* ---------- Utility ---------- */
.svg-defs { position: absolute; width: 0; height: 0; overflow: hidden; }

/* ---------- Availability chip ---------- */
.val-avail {
  display: inline-flex; align-items: center; gap: 6px;
  font-family: var(--font-mono); font-size: 10.5px; font-weight: 700;
  letter-spacing: .1em; text-transform: uppercase;
  padding: 5px 11px; border-radius: var(--r-pill);
  margin: 8px 0 12px;
}
.val-avail.registered { background: rgba(13,14,18,.06); color: var(--graphite); }
.val-avail.available { background: var(--emerald-soft); color: var(--emerald-deep); }
.val-avail.unknown { background: rgba(13,14,18,.04); color: var(--slate); }
