/* =====================================================================
   NORTHPOINT — site.css (marketing surface)
   Written from scratch 2026-08-03 to replace the 5,300-line legacy sheet.
   Design language V2: premium/minimal toward resend.com.
   - Serif metallic H1s + CTA bands, Geist gradient H2s, solid-ink H3/H4.
   - Monochrome primary buttons. Aurora (ice-cyan→deep-blue) = commerce
     accent. Amber = warning semantics only. Green = pass.
   - Both themes first-class: dark (near-black) + light (warm paper).
   The legacy sheet lives on ONLY for /portal, /webapp and auth pages
   (public/css/styles.css) — never import it here.
   ===================================================================== */

/* ---------- 1. Tokens ---------- */
:root {
  --bg: #09090B;
  --surface: #101014;
  --surface-2: #17171C;
  --text: #F4F4F5;
  --text-muted: #A8A8B0;
  --text-dim: #6E6E77;
  --border: rgba(255,255,255,.08);
  --border-strong: rgba(255,255,255,.17);
  --aurora: #5AC8FA;
  --aurora-deep: #4478FF;
  --aurora-pill-text: #06131C;
  --btn-bg: #FAFAFA;
  --btn-text: #0A0A0B;
  --btn-hover: #FFFFFF;
  --glow-a: rgba(90,200,250,.11);
  --glow-b: rgba(68,120,255,.08);
  --shadow-card: 0 1px 2px rgba(0,0,0,.4), 0 12px 40px -12px rgba(0,0,0,.5);
  --ink-grad: linear-gradient(180deg, #FFFFFF 8%, #D9D9DE 55%, #8B8B94 100%);
  /* legacy aliases still referenced by content + page-local styles */
  --cyan: #5AC8FA;
  --cyan-dim: rgba(90,200,250,.16);
  --cyan-soft: rgba(90,200,250,.09);
  --gold: #E8B547;            /* warning semantics only */
  --gold-hover: #F0C264;
  --danger: #F07B7B;
  --ok: #5BE3B3;
  --ok-soft: rgba(91,227,179,.10);
  /* type + layout */
  --font-body: 'Inter', system-ui, -apple-system, 'Segoe UI', sans-serif;
  --font-display: 'Geist', 'Inter', system-ui, -apple-system, sans-serif;
  --font-editorial: 'Instrument Serif', 'Iowan Old Style', 'Georgia', serif;
  --mono: 'JetBrains Mono', ui-monospace, 'SF Mono', Menlo, Consolas, monospace;
  --container: 1160px;
  --radius: 16px;
  --radius-sm: 10px;
}
[data-theme="light"] {
  --bg: #FAFAF8;
  --surface: #FFFFFF;
  --surface-2: #F4F4F1;
  --text: #111113;
  --text-muted: #565660;
  --text-dim: #9C9CA3;
  --border: rgba(17,17,19,.085);
  --border-strong: rgba(17,17,19,.18);
  --aurora: #1D4ED8;
  --aurora-deep: #312E81;
  --aurora-pill-text: #FFFFFF;
  --btn-bg: #111113;
  --btn-text: #FFFFFF;
  --btn-hover: #26262B;
  --glow-a: rgba(90,200,250,.15);
  --glow-b: rgba(29,78,216,.09);
  --shadow-card: 0 1px 2px rgba(17,17,19,.05), 0 12px 32px -12px rgba(17,17,19,.10);
  --ink-grad: linear-gradient(180deg, #2A2A2F 0%, #111113 55%, #4A4A52 100%);
  --cyan: #1D4ED8;
  --cyan-dim: rgba(29,78,216,.14);
  --cyan-soft: rgba(29,78,216,.07);
  --gold: #B8860B;
  --gold-hover: #A0750A;
  --danger: #C24141;
  --ok: #0E9F6E;
  --ok-soft: rgba(14,159,110,.10);
}

/* ---------- 2. Base ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-padding-top: calc(var(--nav-height, 60px) + 8px); }
body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  padding-top: var(--nav-height, 60px);
  transition: background .3s ease, color .3s ease;
}
img, svg { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
::selection { background: rgba(90,200,250,.28); }
[data-theme="light"] ::selection { background: rgba(29,78,216,.18); color: inherit; }
.container { max-width: var(--container); margin: 0 auto; padding: 0 1.5rem; }
.section { padding: 4.5rem 0; }
.content-section { padding: 4rem 0; }
.page { min-height: 60vh; }

/* ---------- 3. Typography constitution ---------- */
h1, h2, h3, h4 { margin: 0 0 .75rem; line-height: 1.12; letter-spacing: -.02em; font-weight: 600; font-family: var(--font-display); }
p { margin: 0 0 1rem; }
.display { font-family: var(--font-editorial); font-weight: 400; letter-spacing: -.015em; }
.metal, .page-hero-title, .final-cta-title {
  background: var(--ink-grad);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; color: transparent;
  padding-bottom: .09em;
}
.hero-title, .page-hero-title, .final-cta-title { font-family: var(--font-editorial); font-weight: 400; letter-spacing: -.02em; }
.hero-title { font-size: clamp(2.9rem, 6.8vw, 4.8rem); line-height: 1.05; letter-spacing: -.045em; margin: 0 0 .5rem; }
.page-hero-title { font-size: clamp(2.6rem, 5.5vw, 4rem); line-height: 1.07; margin-left: auto; margin-right: auto; max-width: 20ch; }
.final-cta-title { font-size: clamp(2.5rem, 5.6vw, 3.8rem); line-height: 1.08; }
.section-title, .np-waitlist-title {
  font-family: var(--font-display); font-weight: 600; letter-spacing: -.03em; line-height: 1.15;
  background: var(--ink-grad);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; color: transparent;
  padding-bottom: .05em;
}
.section-title { font-size: clamp(1.75rem, 3vw, 2.4rem); max-width: 44rem; margin: 0 auto 1rem; text-align: center; }
.np-waitlist-title { font-size: clamp(1.6rem, 3vw, 2.1rem); margin: 0 0 .9rem; }
.aurora-text {
  background: linear-gradient(100deg, var(--aurora) 0%, var(--aurora-deep) 100%);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; color: transparent;
}
[data-theme="light"] .aurora-text { background: linear-gradient(100deg, #0E7490 0%, #1D4ED8 60%, #312E81 100%); -webkit-background-clip: text; background-clip: text; }
@supports not (background-clip: text) {
  .metal, .page-hero-title, .final-cta-title, .section-title, .np-waitlist-title, .aurora-text { color: var(--text); -webkit-text-fill-color: var(--text); background: none; }
}
.section-body { max-width: 42rem; color: var(--text-muted); font-size: 1.05rem; margin-left: auto; margin-right: auto; text-align: center; }
.mono { font-family: var(--mono); }
.mono-label { font-family: var(--font-body); font-size: .78rem; font-weight: 600; letter-spacing: .02em; color: var(--text-dim); }
.mono-label--muted { color: var(--text-dim); }

/* ---------- 4. Navbar ---------- */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: color-mix(in srgb, var(--bg) 78%, transparent);
  backdrop-filter: blur(14px) saturate(150%);
  -webkit-backdrop-filter: blur(14px) saturate(150%);
  border-bottom: 1px solid var(--border);
}
.nav-container {
  max-width: var(--container); margin: 0 auto;
  height: 60px; padding: 0 24px;
  display: flex; align-items: center; gap: 28px; justify-content: flex-start;
}
.nav-logo { display: flex; align-items: center; gap: 10px; font-weight: 600; font-size: 1.02rem; letter-spacing: -.01em; white-space: nowrap; }
.nav-logo-mark { width: 20px; height: 20px; display: grid; place-items: center; }
.nav-logo-mark img { width: 100%; height: 100%; }
[data-theme="light"] .nav-logo-mark img, [data-theme="light"] .footer-logo img { filter: invert(1); }
.nav-menu { list-style: none; margin: 0; padding: 0; display: flex; gap: 24px; align-items: center; }
.nav-menu a { font-size: .885rem; color: var(--text-muted); transition: color .15s ease; white-space: nowrap; }
.nav-menu a:hover { color: var(--text); }
.nav-menu > li.nav-menu-cta { display: none; }   /* drawer-only items */
.nav-dropdown { position: relative; }
.nav-dropdown-menu {
  position: absolute; top: calc(100% + .5rem); left: -.5rem; min-width: 240px;
  background: var(--surface); border: 1px solid var(--border); border-radius: 12px;
  box-shadow: var(--shadow-card);
  list-style: none; margin: 0; padding: .4rem;
  opacity: 0; visibility: hidden; transform: translateY(4px);
  transition: opacity .15s ease, transform .15s ease, visibility .15s;
  z-index: 5;
}
.nav-dropdown:hover .nav-dropdown-menu, .nav-dropdown:focus-within .nav-dropdown-menu { opacity: 1; visibility: visible; transform: none; }
.nav-dropdown-menu a { display: block; padding: .55rem .75rem; border-radius: 8px; color: var(--text-muted); }
.nav-dropdown-menu a:hover { background: var(--surface-2); color: var(--text); }
.nav-ctas { margin-left: auto; display: flex; align-items: center; gap: 14px; flex-shrink: 0; }
.nav-cta-secondary { font-size: .885rem; color: var(--text-muted); padding: 6px 0; white-space: nowrap; transition: color .15s ease; }
.nav-cta-secondary:hover { color: var(--text); }
.nav-cta-secondary:focus-visible { outline: 2px solid var(--aurora); outline-offset: 3px; border-radius: 6px; }
.nav-progress { position: absolute; bottom: 0; left: 0; height: 1px; background: var(--aurora); width: 0%; transition: width .05s linear; pointer-events: none; }
.mobile-toggle { display: none; background: none; border: none; padding: 10px; cursor: pointer; }
.mobile-toggle span { display: block; width: 20px; height: 2px; background: var(--text); margin: 4px 0; border-radius: 2px; transition: transform .2s ease, opacity .2s ease; }
.theme-toggle {
  display: inline-flex; align-items: center; justify-content: center;
  width: 34px; height: 34px; padding: 0;
  border: 1px solid var(--border); background: transparent; color: var(--text-muted);
  border-radius: 8px; cursor: pointer;
  transition: border-color .15s ease, color .15s ease;
}
.theme-toggle:hover { border-color: var(--border-strong); color: var(--text); }
.theme-toggle svg { width: 15px; height: 15px; display: block; }
.theme-toggle .icon-sun { display: block; }
.theme-toggle .icon-moon { display: none; }
[data-theme="light"] .theme-toggle .icon-sun { display: none; }
[data-theme="light"] .theme-toggle .icon-moon { display: block; }

/* ---------- 5. Breadcrumbs ---------- */
.np-crumbs, .breadcrumb { font-size: .82rem; color: var(--text-dim); padding: .9rem 0 0; }
.breadcrumb { max-width: var(--container); margin: 0 auto; }
.np-crumbs a, .breadcrumb a { color: var(--text-dim); transition: color .15s ease; }
.np-crumbs a:hover, .breadcrumb a:hover { color: var(--text); }
.np-crumbs [aria-current="page"] { color: var(--text-muted); }
.np-crumb-sep { margin: 0 .45rem; opacity: .6; }

/* ---------- 6. Buttons ---------- */
.cta-primary, .nav-cta-primary, .check-button, .signup-submit, .np-btnp {
  display: inline-flex; align-items: center; justify-content: center; gap: .45rem;
  background: var(--btn-bg); color: var(--btn-text);
  border: none; border-radius: var(--radius-sm); cursor: pointer;
  font-family: var(--font-body); font-weight: 500; font-size: .9rem;
  padding: .65rem 1.3rem; letter-spacing: 0; text-transform: none; white-space: nowrap;
  transition: background .15s ease, transform .15s ease, box-shadow .2s ease;
}
.cta-primary:hover, .nav-cta-primary:hover, .check-button:hover, .signup-submit:hover, .np-btnp:hover {
  background: var(--btn-hover); transform: translateY(-1px);
  box-shadow: 0 6px 20px -6px rgba(0,0,0,.35);
}
.nav-cta-primary { font-size: .885rem; padding: 9px 18px; }
.check-button:disabled { opacity: .4; cursor: not-allowed; transform: none; }
.cta-secondary {
  display: inline-flex; align-items: center; justify-content: center; gap: .45rem;
  background: transparent; color: var(--text);
  border: 1px solid var(--border-strong); border-radius: var(--radius-sm);
  font-weight: 500; font-size: .9rem; padding: .62rem 1.25rem; cursor: pointer;
  transition: border-color .15s ease, background .15s ease;
}
.cta-secondary:hover { border-color: var(--text-dim); background: var(--surface); }
.u-link-cyan { color: var(--aurora); transition: color .15s ease; }
.u-link-cyan:hover { color: var(--aurora-deep); }
.v2-quiet-link { font-size: .85rem; color: var(--text-dim); border-bottom: 1px solid var(--border-strong); transition: color .15s ease; }
.v2-quiet-link:hover { color: var(--text); }
.proof-link { color: var(--text-muted); font-size: .85rem; }
.proof-link:hover { color: var(--aurora); }

/* ---------- 7. Heroes + glow ---------- */
.hero { position: relative; overflow: clip; padding: 6rem 0 4.5rem; text-align: center; }
.hero .container { position: relative; max-width: 860px; }
.hero-grid { display: none; }
.v2-glow {
  position: absolute; inset: -20% -10% auto; height: 130%;
  background:
    radial-gradient(ellipse 640px 420px at 50% 8%, var(--glow-a), transparent 65%),
    radial-gradient(ellipse 900px 500px at 50% -10%, var(--glow-b), transparent 70%);
  pointer-events: none;
}
.hero-sub { color: var(--text-muted); font-size: 1.16rem; max-width: 560px; margin: 22px auto 34px; }
.hero-ctas, .page-hero-ctas, .final-cta-ctas { display: flex; gap: .75rem; flex-wrap: wrap; align-items: center; }
.hero-ctas { justify-content: center; }
.page-hero { position: relative; padding: 4rem 0 2.5rem; text-align: center; }
.page-hero-body, .page-hero-sub { color: var(--text-muted); font-size: 1.08rem; max-width: 44rem; margin-left: auto; margin-right: auto; }
.page-hero-ctas { justify-content: center; }

/* ---------- 8. V2 components ---------- */
.v2-stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; max-width: var(--container); margin: 0 auto; padding: 2.6rem 1.5rem; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); text-align: center; }
.v2-stat b { display: block; font-family: var(--font-display); font-size: 1.9rem; font-weight: 700; letter-spacing: -.02em; }
.v2-stat span { color: var(--text-dim); font-size: .85rem; }
.v2-tile {
  --tc: 90,200,250;
  width: 64px; height: 64px; border-radius: 17px;
  display: inline-flex; align-items: center; justify-content: center;
  position: relative; margin-bottom: 18px;
  background: linear-gradient(160deg, rgba(255,255,255,.10), rgba(255,255,255,.02) 45%, rgba(0,0,0,.25)), #17171B;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.14), inset 0 -1px 0 rgba(0,0,0,.5), 0 1px 2px rgba(0,0,0,.5), 0 18px 36px -12px rgba(var(--tc), .28);
}
.v2-tile::after { content: ''; position: absolute; left: 18%; right: 18%; bottom: -10px; height: 18px; background: radial-gradient(closest-side, rgba(var(--tc), .5), transparent); filter: blur(8px); }
.v2-tile svg { width: 26px; height: 26px; color: rgb(var(--tc)); filter: drop-shadow(0 1px 3px rgba(var(--tc), .5)); }
[data-theme="light"] .v2-tile { background: linear-gradient(160deg, #FFFFFF, #F1F1EE 60%, #E4E4E0), #FFFFFF; box-shadow: inset 0 1px 0 #FFF, 0 1px 2px rgba(17,17,19,.10), 0 14px 30px -12px rgba(var(--tc), .35); }
.v2-tile.t-gold { --tc: 232,181,71; }
.v2-tile.t-blue { --tc: 122,162,255; }
.v2-tile.t-green { --tc: 91,227,179; }
[data-theme="light"] .v2-tile.t-gold { --tc: 184,134,11; }
[data-theme="light"] .v2-tile.t-blue { --tc: 62,100,220; }
[data-theme="light"] .v2-tile.t-green { --tc: 14,159,110; }
.v2-tile--sm { width: 46px; height: 46px; border-radius: 13px; margin-bottom: 12px; }
.v2-tile--sm svg { width: 21px; height: 21px; }
.v2-split { display: grid; grid-template-columns: 1fr 1fr; gap: 3.5rem; align-items: center; }
.v2-verdict { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); padding: 1.4rem; box-shadow: var(--shadow-card); }
.v2-vhead { display: flex; justify-content: space-between; align-items: center; margin-bottom: 1rem; font-size: .85rem; color: var(--text-dim); }
.v2-vcount { font-family: var(--mono); font-size: .78rem; }
.v2-vrow { display: flex; align-items: center; gap: .7rem; padding: .55rem 0; border-top: 1px solid var(--border); font-size: .88rem; }
.v2-vtag { font-size: .68rem; font-weight: 700; letter-spacing: .06em; padding: .15rem .5rem; border-radius: 6px; }
.v2-vtag.pass { color: var(--ok); background: var(--ok-soft); }
.v2-vtag.warn { color: var(--gold); background: rgba(232,181,71,.12); }
.v2-vtag.fail { color: var(--danger); background: rgba(240,123,123,.12); }
.v2-verdict-bar { height: 6px; border-radius: 4px; background: var(--surface-2); overflow: hidden; margin-top: 1rem; }
.v2-verdict-body { color: var(--text-muted); font-size: .92rem; }
.v2-chips { display: flex; flex-wrap: wrap; gap: .5rem; }
.v2-chip { font-size: .8rem; color: var(--text-muted); border: 1px solid var(--border); border-radius: 999px; padding: .32rem .8rem; background: var(--surface); }
.v2-ticks { list-style: none; padding: 0; margin: 0 0 1.5rem; display: grid; gap: 10px; font-size: .9rem; color: var(--text-muted); }
.v2-ticks li { display: flex; gap: 10px; align-items: flex-start; }
.v2-ticks li svg { flex: none; margin-top: 4px; color: var(--aurora); width: 13px; height: 13px; }

/* ---------- 9. Cards ---------- */
.tier-grid { display: grid; gap: 1.25rem; }
.tier-grid--3 { grid-template-columns: repeat(3, 1fr); }
.tier-card { position: relative; background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); padding: 1.8rem 1.6rem; box-shadow: var(--shadow-card); }
.tier-card--featured { border-color: color-mix(in srgb, var(--aurora) 45%, var(--border)); }
.tier-card-label { font-size: .78rem; font-weight: 500; color: var(--text-dim); margin-bottom: .5rem; }
.tier-card--featured .tier-card-label {
  position: absolute; top: -13px; left: 50%; transform: translateX(-50%);
  background: linear-gradient(100deg, var(--aurora), var(--aurora-deep));
  color: var(--aurora-pill-text); font-size: .74rem; font-weight: 600;
  padding: .28rem .9rem; border-radius: 999px; white-space: nowrap; margin: 0;
}
.tier-card-title { font-size: 1.2rem; margin: 0 0 .3rem; }
.tier-card-price { font-family: var(--font-display); font-size: 1.6rem; font-weight: 700; letter-spacing: -.02em; margin-bottom: .6rem; }
.tier-card-oneline { color: var(--text-muted); font-size: .95rem; margin-bottom: 1rem; }
.plans-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; }
.plan-card { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); padding: 1.6rem 1.4rem; box-shadow: var(--shadow-card); }
.plan-card--highlight { border-color: color-mix(in srgb, var(--aurora) 55%, var(--border)); }
.plan-name { font-size: .78rem; font-weight: 600; letter-spacing: .04em; color: var(--text-dim); margin-bottom: .5rem; }
.plan-price { font-family: var(--font-display); font-size: 1.5rem; font-weight: 700; letter-spacing: -.02em; margin-bottom: .5rem; }
.plan-desc { color: var(--text-muted); font-size: .95rem; margin-bottom: 1.2rem; }
.credentials-grid, .info-grid, .pillar-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; }
.credential-card, .info-card, .pillar-card, .path-card {
  background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius);
  padding: 1.6rem 1.4rem; box-shadow: var(--shadow-card);
}
.credential-title, .info-card-title, .pillar-title { font-size: 1.05rem; margin-bottom: .4rem; }
.credential-body, .info-card-body { color: var(--text-muted); font-size: .92rem; }
.pillar-label { font-size: .75rem; font-weight: 600; color: var(--text-dim); margin-bottom: .4rem; }
.pillar-tagline, .pillar-units { color: var(--text-muted); font-size: .9rem; }
.path-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; }
.path-tag { font-size: .72rem; font-weight: 600; color: var(--aurora); margin-bottom: .4rem; }
.check-tiles { display: grid; grid-template-columns: repeat(auto-fill, minmax(230px, 1fr)); gap: 1rem; }
.check-tile {
  display: flex; flex-direction: column; align-items: flex-start;
  background: var(--surface); border: 1px solid var(--border); border-radius: 14px;
  padding: 1.3rem 1.2rem; box-shadow: var(--shadow-card);
  transition: border-color .15s ease, transform .15s ease;
}
.check-tile:hover { border-color: var(--border-strong); transform: translateY(-2px); }
.check-tile-icon {
  --tc: 90,200,250;
  width: 46px; height: 46px; border-radius: 13px;
  display: inline-flex; align-items: center; justify-content: center;
  margin-bottom: 12px; position: relative;
  background: linear-gradient(160deg, rgba(255,255,255,.10), rgba(255,255,255,.02) 45%, rgba(0,0,0,.25)), #17171B;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.14), inset 0 -1px 0 rgba(0,0,0,.5), 0 1px 2px rgba(0,0,0,.5), 0 14px 30px -12px rgba(var(--tc), .28);
}
[data-theme="light"] .check-tile-icon { background: linear-gradient(160deg, #FFFFFF, #F1F1EE 60%, #E4E4E0), #FFFFFF; box-shadow: inset 0 1px 0 #FFF, 0 1px 2px rgba(17,17,19,.10), 0 12px 26px -12px rgba(var(--tc), .35); }
.check-tile-icon svg { width: 21px; height: 21px; color: rgb(var(--tc)); filter: drop-shadow(0 1px 3px rgba(var(--tc), .5)); }
[data-theme="light"] .check-tile-icon svg { color: rgb(62,100,220); }
.check-tile-name { font-weight: 600; letter-spacing: -.01em; }
.np-tile-sub { font-size: .82rem; color: var(--text-dim); }
.np-tile-buy { font-size: .86rem; font-weight: 500; color: var(--text); margin-top: .35rem; }
.check-tile:hover .np-tile-buy { color: var(--aurora); }
.check-tile.np-pack-hit, .tier-card.np-pack-hit:not(.tier-card--featured) { border-color: var(--aurora); }
.reg-framework-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; }
.reg-framework-card { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); padding: 1.5rem 1.4rem; box-shadow: var(--shadow-card); }
.reg-framework-meta { color: var(--text-dim); font-size: .82rem; margin: .3rem 0 .8rem; }
.reg-framework-cta { color: var(--aurora); font-size: .9rem; font-weight: 500; }
.essay-list { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; }
.essay-list li, .essay-list > * { border-top: 1px solid var(--border); padding: 1.1rem 0; }
.essay-title { font-weight: 600; color: var(--text); font-size: 1rem; margin-bottom: .25rem; letter-spacing: -.01em; }
.essay-blurb { color: var(--text-muted); font-size: .92rem; margin: 0; }
.option-tree { display: grid; gap: 1rem; }
.option-title { font-size: 1rem; margin-bottom: .3rem; }
.option-body, .option-mkt { color: var(--text-muted); font-size: .92rem; }

/* ---------- 10. FAQ ---------- */
.faq-list { max-width: 720px; margin: 1.5rem auto 0; display: flex; flex-direction: column; }
.faq-item { border-top: 1px solid var(--border); }
.faq-item:last-child { border-bottom: 1px solid var(--border); }
.faq-q {
  font-family: var(--font-display); font-weight: 600; letter-spacing: -.01em;
  color: var(--text); font-size: 1rem; cursor: pointer; list-style: none;
  position: relative; padding: 1.05rem 2rem 1.05rem 0;
}
.faq-q::-webkit-details-marker { display: none; }
.faq-q::after { content: '+'; position: absolute; right: .25rem; top: 50%; transform: translateY(-50%); color: var(--text-dim); font-size: 1.2rem; font-weight: 400; }
details[open] .faq-q::after { content: '\2212'; }
.faq-a { color: var(--text-muted); font-size: .95rem; padding: 0 0 1.1rem; max-width: 42rem; }

/* ---------- 11. Tables ---------- */
.compare-wrap, .tax-table-wrap { overflow-x: auto; }
.compare, table.compare { width: 100%; border-collapse: collapse; font-size: .92rem; }
.compare th { text-align: left; font-size: .75rem; font-weight: 600; letter-spacing: .04em; color: var(--text-dim); padding: .6rem .9rem; border-bottom: 1px solid var(--border-strong); }
.compare td { padding: .7rem .9rem; border-bottom: 1px solid var(--border); color: var(--text-muted); }
.compare td:first-child { color: var(--text); }
.compare td.mono { font-family: var(--mono); font-size: .8rem; color: var(--text); }
.price-cell { font-family: var(--mono); }
.total-row td { font-weight: 600; color: var(--text); }

/* ---------- 12. Check widget (Resend register) ---------- */
.check-form { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); padding: 1.75rem 1.75rem 1.5rem; box-shadow: var(--shadow-card); max-width: 680px; margin: 0 auto; }
.check-input-tabs { display: inline-flex; gap: 4px; background: var(--surface-2); border: 1px solid var(--border); border-radius: 10px; padding: 3px; margin-bottom: 1.4rem; }
.check-input-tab { font-family: var(--font-body); font-size: .85rem; font-weight: 500; color: var(--text-muted); background: none; border: none; border-radius: 7px; padding: 6px 14px; cursor: pointer; transition: color .15s ease, background .15s ease; }
.check-input-tab[aria-selected="true"] { background: var(--bg); color: var(--text); box-shadow: 0 1px 2px rgba(0,0,0,.08); }
.check-form-label { display: block; font-size: .85rem; font-weight: 500; color: var(--text-muted); margin-bottom: .6rem; }
.check-textarea, .check-url-input {
  width: 100%; font-family: var(--font-body); font-size: .95rem; line-height: 1.6; color: var(--text);
  background: var(--surface-2); border: 1px solid var(--border); border-radius: 12px; padding: .9rem 1rem;
}
.check-textarea { min-height: 180px; resize: vertical; }
.check-textarea::placeholder, .check-url-input::placeholder { color: var(--text-dim); }
.check-textarea:focus, .check-url-input:focus { outline: 2px solid var(--aurora); outline-offset: 1px; border-color: transparent; }
.check-controls { display: flex; align-items: center; gap: .7rem; flex-wrap: wrap; margin-top: 1rem; }
.check-select { font-family: var(--font-body); font-size: .88rem; color: var(--text); background-color: var(--surface-2); border: 1px solid var(--border); border-radius: 10px; padding: .6rem 2.2rem .6rem .9rem; }
.check-button.check-button--secondary { background: none; border: none; box-shadow: none; color: var(--text-dim); font-weight: 500; padding: .65rem .6rem; }
.check-button.check-button--secondary:hover { background: none; color: var(--text); transform: none; box-shadow: none; }
.check-sample-bar { font-size: .82rem; color: var(--text-dim); margin-top: 1rem; display: flex; align-items: center; gap: .5rem; flex-wrap: wrap; }
.check-sample-link { font-size: .8rem; color: var(--text-muted); background: var(--surface-2); border: 1px solid var(--border); border-radius: 999px; padding: .3rem .85rem; cursor: pointer; transition: color .15s ease, border-color .15s ease; }
.check-sample-link:hover { color: var(--text); border-color: var(--aurora); }
.check-url-pane { margin-bottom: 1rem; }
.check-url-row { display: flex; gap: .6rem; }
.check-url-hint, .check-url-status { font-size: .8rem; color: var(--text-dim); margin-top: .5rem; }
.check-url-status.is-error { color: var(--danger); }
.check-url-status.is-ok { color: var(--ok); }
[hidden] { display: none !important; }

/* ---------- 13. Check results (JS-rendered) ---------- */
.check-results { margin-top: 2rem; max-width: 820px; margin-left: auto; margin-right: auto; }
.results-summary { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); padding: 1.4rem 1.5rem; margin-bottom: 1rem; box-shadow: var(--shadow-card); }
.results-verdict { font-family: var(--font-display); font-size: 1.25rem; font-weight: 700; letter-spacing: -.01em; margin-bottom: .4rem; }
.verdict-pass { color: var(--ok); }
.verdict-flag { color: var(--gold); }
.verdict-fail { color: var(--danger); }
.results-counts { display: flex; gap: 1.2rem; font-size: .85rem; color: var(--text-muted); flex-wrap: wrap; }
.results-count-pass b { color: var(--ok); }
.results-count-flag b { color: var(--gold); }
.results-count-fail b { color: var(--danger); }
.rule-card { background: var(--surface); border: 1px solid var(--border); border-radius: 12px; padding: 1.1rem 1.25rem; margin-bottom: .7rem; }
.rule-header { display: flex; align-items: baseline; justify-content: space-between; gap: 1rem; }
.rule-title { font-family: var(--font-display); font-weight: 600; font-size: .98rem; }
.rule-status { font-size: .72rem; font-weight: 700; letter-spacing: .06em; padding: .18rem .55rem; border-radius: 6px; white-space: nowrap; }
.rule-pass .rule-status { color: var(--ok); background: var(--ok-soft); }
.rule-flag .rule-status { color: var(--gold); background: rgba(232,181,71,.12); }
.rule-fail .rule-status { color: var(--danger); background: rgba(240,123,123,.12); }
.rule-message { color: var(--text-muted); font-size: .9rem; margin: .45rem 0 0; }
.rule-evidence { font-family: var(--mono); font-size: .78rem; color: var(--text-dim); background: var(--surface-2); border-radius: 8px; padding: .55rem .7rem; margin-top: .55rem; overflow-x: auto; }
.rule-citation { font-size: .78rem; color: var(--text-dim); margin-top: .5rem; }
.rule-suggestion { font-size: .88rem; color: var(--text-muted); margin-top: .55rem; border-left: 2px solid var(--aurora); padding-left: .7rem; }
.rule-suggestion-label { display: block; font-weight: 600; color: var(--text); margin-bottom: .15rem; }

/* ---------- 14. Scan / lite / waitlist funnel ---------- */
.np-scan-panel { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); padding: 1.9rem 1.8rem; box-shadow: var(--shadow-card); max-width: 640px; margin: 0 auto; }
.np-scan-title { font-family: var(--font-display); font-weight: 600; letter-spacing: -.02em; font-size: 1.15rem; margin-bottom: .8rem; }
.np-scan-field { margin-bottom: .8rem; }
.np-scan-label { display: block; font-size: .85rem; font-weight: 500; color: var(--text-muted); margin-bottom: .45rem; }
.np-scan-input { width: 100%; font-family: var(--font-body); font-size: 1rem; color: var(--text); background: var(--surface-2); border: 1px solid var(--border); border-radius: 10px; padding: .8rem .95rem; }
.np-scan-input:focus { outline: 2px solid var(--aurora); outline-offset: 1px; border-color: transparent; }
.np-scan-fielderror { color: var(--danger); font-size: .8rem; margin-top: .3rem; }
.np-scan-runrow { display: flex; align-items: center; gap: .8rem; flex-wrap: wrap; margin-top: .4rem; }
.np-scan-status { font-size: .85rem; color: var(--text-dim); }
.np-scan-consent { font-size: .8rem; color: var(--text-dim); display: flex; gap: .5rem; align-items: flex-start; margin-top: .7rem; }
.np-scan-results { margin-top: 1.4rem; }
.np-scan-smallprint { font-size: .8rem; color: var(--text-dim); max-width: 680px; margin-left: auto; margin-right: auto; text-align: center; }
.np-pills { display: inline-flex; border: 1px solid var(--border); border-radius: 10px; overflow: hidden; }
.np-pill { padding: .72rem 1.15rem; font-weight: 600; font-size: .85rem; background: var(--surface-2); color: var(--text-muted); border: none; cursor: pointer; }
.np-pill.is-on { background: var(--aurora); color: #fff; }
.np-steps-wrap { margin-top: 1.2rem; }
.np-steps { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: .55rem; }
.np-step { display: flex; align-items: center; gap: .6rem; font-size: .88rem; color: var(--text-dim); }
.np-step-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--border-strong); flex: none; }
.np-step.is-active .np-step-dot, .np-step.is-live .np-step-dot { background: var(--aurora); }
.np-step.is-active, .np-step.is-live { color: var(--text); }
.np-steps-note { font-size: .8rem; color: var(--text-dim); margin-top: .6rem; }
.np-waitlist-panel { text-align: center; padding: 3.5rem 0 1rem; max-width: 44rem; margin: 0 auto; }
.np-waitlist-body { color: var(--text-muted); margin: 0 auto 1.6rem; max-width: 38rem; }
.np-lite-title { font-family: var(--font-display); font-size: 1.05rem; font-weight: 600; letter-spacing: -.01em; color: var(--text); margin: 0 0 .9rem; }
.np-inline-disc { font-size: .8rem; color: var(--text-dim); }

/* ---------- 15. Forms (contact / affiliate) ---------- */
.signup-wrap { max-width: 44rem; margin: 0 auto; }
.signup-form { display: flex; flex-direction: column; gap: 1rem; }
.signup-submit { align-self: flex-start; width: auto; padding: .7rem 1.6rem; }
.signup-fields { display: flex; flex-direction: column; gap: 1rem; }
.signup-field { display: flex; flex-direction: column; gap: .4rem; }
.signup-field-row { display: grid; gap: 1rem; }
.signup-field-row--two { grid-template-columns: 1fr 1fr; }
.signup-label { font-size: .85rem; font-weight: 500; color: var(--text-muted); }
.signup-required { color: var(--danger); }
.signup-input, .signup-textarea {
  width: 100%; font-family: var(--font-body); font-size: .95rem; color: var(--text);
  background: var(--surface-2); border: 1px solid var(--border); border-radius: 10px; padding: .75rem .9rem;
}
.signup-input:focus, .signup-textarea:focus { outline: 2px solid var(--aurora); outline-offset: 1px; border-color: transparent; }
.signup-textarea { min-height: 130px; resize: vertical; }
.signup-status { font-size: .88rem; color: var(--text-dim); }
.signup-fine-print { font-size: .8rem; color: var(--text-dim); }
.contact-address { color: var(--text-muted); font-style: normal; line-height: 1.7; }

/* ---------- 16. Misc content ---------- */
.quote { border-left: 3px solid var(--aurora); padding: .2rem 0 .2rem 1.2rem; margin: 1.5rem 0; }
.quote p { font-family: var(--font-editorial); font-size: 1.25rem; line-height: 1.4; color: var(--text); margin: 0; }
.u-lede { font-size: 1.05rem; color: var(--text-muted); max-width: 46rem; }
.u-lede p { margin-bottom: 1.1rem; }
.u-lede strong, .u-lede em { color: var(--text); }
.u-lede-wide-spaced { max-width: 52rem; line-height: 1.75; }
.u-h3-essay { font-family: var(--font-display); font-weight: 600; letter-spacing: -.01em; color: var(--text); font-size: 1.25rem; margin: 2.5rem 0 .75rem; }
.u-h4-essay { font-family: var(--font-display); font-weight: 600; color: var(--text); font-size: 1.05rem; margin: 1.8rem 0 .6rem; }
.u-prose-list { color: var(--text-muted); padding-left: 1.2rem; }
.u-prose-list li { margin-bottom: .5rem; }
.u-text-dim { color: var(--text-dim); }
.u-text-muted { color: var(--text-muted); }
.u-accent-cyan { color: var(--aurora); }
.u-accent-gold { color: var(--gold); }
.u-mono-cyan { font-family: var(--mono); color: var(--aurora); }
.u-mb-06 { margin-bottom: .6rem; }
.u-mt-1 { margin-top: 1rem; }
.u-mt-15 { margin-top: 1.5rem; }
.stat-band { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; text-align: center; padding: 2rem 0; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.stat-cell .stat-num { font-family: var(--font-display); font-size: 1.7rem; font-weight: 700; }
.stat-cell .stat-lbl { color: var(--text-dim); font-size: .82rem; }
.deadline-banner { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); padding: 1.2rem 1.4rem; display: flex; gap: 1rem; align-items: baseline; flex-wrap: wrap; }
.deadline-label { font-size: .78rem; font-weight: 600; letter-spacing: .04em; color: var(--gold); }
.deadline-date { font-family: var(--font-display); font-weight: 700; }
.prescribed-text { font-family: var(--mono); font-size: .82rem; background: var(--surface-2); border: 1px solid var(--border); border-radius: 10px; padding: .9rem 1rem; color: var(--text-muted); }
.np-share { margin-top: 1rem; }
.np-suite-cta { margin-top: 1rem; }

/* ---------- 17. Final CTA band ---------- */
.final-cta { position: relative; text-align: center; padding: 6.5rem 1.5rem 7rem; }
.final-cta::before {
  content: ''; position: absolute; left: 50%; top: -20%;
  width: min(720px, 92vw); height: 420px; transform: translateX(-50%);
  background: radial-gradient(closest-side, var(--glow-a), transparent 70%);
  filter: blur(80px); pointer-events: none;
}
.final-cta-body { color: var(--text-muted); max-width: 36rem; margin: 0 auto 2rem; position: relative; font-size: 1.05rem; }
.final-cta-ctas { justify-content: center; position: relative; }
.final-cta .cta-primary { font-size: .95rem; padding: 12px 24px; border-radius: 11px; }
.final-cta-ctas .cta-secondary { display: none; }

/* ---------- 18. Footer ---------- */
.footer { border-top: 1px solid var(--border); padding: 4rem 0 2rem; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 2rem; margin-bottom: 3rem; }
.footer-logo { display: flex; align-items: center; gap: .6rem; font-weight: 600; margin-bottom: .6rem; }
.footer-logo img { width: 18px; height: 18px; }
.footer-tagline { color: var(--text-dim); font-size: .9rem; }
.footer-section-title { font-family: var(--font-display); font-size: .8rem; font-weight: 600; letter-spacing: .02em; color: var(--text); margin-bottom: .8rem; }
.footer-links { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: .5rem; }
.footer-links a { color: var(--text-dim); font-size: .9rem; transition: color .15s ease; }
.footer-links a:hover { color: var(--text); }
.footer-bottom { border-top: 1px solid var(--border); padding-top: 1.5rem; display: flex; justify-content: space-between; gap: 1rem; flex-wrap: wrap; color: var(--text-dim); font-size: .8rem; }
.footer-bottom a:hover { color: var(--text); }

/* ---------- 19. Reveal motion ---------- */
.rv { opacity: 0; transform: translateY(18px); transition: opacity .7s cubic-bezier(.2,.6,.2,1), transform .7s cubic-bezier(.2,.6,.2,1); }
.rv.in { opacity: 1; transform: none; }
.rv[data-d="1"] { transition-delay: .08s; }
.rv[data-d="2"] { transition-delay: .16s; }
.rv[data-d="3"] { transition-delay: .24s; }
@media (prefers-reduced-motion: reduce) {
  .rv { opacity: 1; transform: none; transition: none; }
  * { animation-duration: .01ms !important; }
}

/* ---------- 20. Responsive ---------- */
@media (max-width: 960px) {
  .navbar { backdrop-filter: none; -webkit-backdrop-filter: none; background: var(--bg); }
  .mobile-toggle { display: block; }
  .mobile-toggle.active span:nth-child(1) { transform: translate(0, 6px) rotate(45deg); }
  .mobile-toggle.active span:nth-child(2) { opacity: 0; }
  .mobile-toggle.active span:nth-child(3) { transform: translate(0, -6px) rotate(-45deg); }
  .nav-menu { display: none; }
  .nav-menu.active {
    display: flex; position: fixed; top: var(--nav-height, 60px); left: 0; right: 0; bottom: 0;
    flex-direction: column; align-items: stretch; gap: 0;
    background: var(--bg); border-top: 1px solid var(--border);
    padding: .25rem 0 2rem; overflow-y: auto; z-index: 999;
  }
  .nav-menu > li { border-bottom: 1px solid var(--border); width: 100%; }
  .nav-menu > li > a { display: flex; align-items: center; justify-content: space-between; width: 100%; padding: 1.15rem 1.5rem; font-size: 1.05rem; color: var(--text); min-height: 44px; }
  .nav-dropdown > a::after { content: '+'; font-size: 1.25rem; color: var(--text-dim); }
  .nav-dropdown.open > a::after { content: '\2212'; }
  .nav-dropdown-menu { position: static; opacity: 1; visibility: hidden; transform: none; display: none; border: none; box-shadow: none; background: var(--surface); border-radius: 0; padding: 0; }
  .nav-dropdown.open .nav-dropdown-menu { display: block; visibility: visible; }
  .nav-dropdown-menu a { padding: .9rem 2.2rem; border-radius: 0; }
  .nav-menu.active > li.nav-menu-cta { display: flex; }
  .nav-menu.active > li.nav-menu-cta > a { color: var(--text-muted); }
  .nav-menu.active > li.nav-menu-cta--primary > a { color: var(--aurora); font-weight: 600; }
  .nav-ctas .nav-cta-secondary { display: none; }
  .v2-split { grid-template-columns: 1fr; gap: 2rem; }
  .v2-stats { grid-template-columns: repeat(2, 1fr); row-gap: 1.6rem; }
  .tier-grid--3, .plans-grid, .credentials-grid, .info-grid, .pillar-grid, .path-grid, .reg-framework-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .signup-field-row--two { grid-template-columns: 1fr; }
  .hero { padding: 3.5rem 0 3rem; }
  .section { padding: 3.5rem 0; }
  .content-section { padding: 3rem 0; }
}
@media (max-width: 768px) {
  .final-cta { padding: 4.5rem 1rem 5rem; }
  .compare th, .compare td { padding: .55rem .6rem; font-size: .85rem; }
}
@media (max-width: 480px) {
  .nav-container { padding: 0 16px; gap: 16px; }
  .nav-logo { font-size: 1rem; }
  .nav-ctas .nav-cta-primary { display: none; }
  .stat-band, .v2-stats { grid-template-columns: repeat(2, 1fr); }
  .hero-ctas, .page-hero-ctas { flex-direction: column; align-items: center; }
}
@media (max-width: 360px) {
  .nav-logo span { display: none; }
}
@media print {
  .navbar, .footer, .nav-ctas, .final-cta, .mobile-toggle { display: none; }
  body { padding-top: 0; }
}

/* ---------- 21. Extracted tail (verbatim from legacy sheet) ---------- */
.np-waitlist {
  margin: 2rem 0;
  max-width: 560px;
}
.np-waitlist-panel {
  background: var(--surface);
  border: 1px solid var(--border-strong);
  border-radius: var(--radius);
  padding: 2rem;
  position: relative;
}
.np-waitlist-eyebrow {
  font-family: var(--mono);
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  color: var(--cyan);
  text-transform: uppercase;
  margin-bottom: 0.75rem;
}
.np-waitlist-title {
  color: var(--text);
  font-size: 1.35rem;
  margin: 0 0 0.5rem;
}
.np-waitlist-body {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin: 0 0 1.5rem;
}
.np-waitlist-form {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.np-waitlist-label {
  font-family: var(--mono);
  font-size: 0.7rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-muted);
}
.np-waitlist-input-row {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}
.np-waitlist-input {
  flex: 1 1 220px;
  min-width: 0;
  background: var(--bg);
  border: 1px solid var(--border-strong);
  border-radius: var(--radius-sm);
  padding: 0.75rem 1rem;
  color: var(--text);
  font-size: 1rem;
  font-family: inherit;
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}
.np-waitlist-input::placeholder { color: var(--text-dim); }
.np-waitlist-input:focus {
  outline: none;
  border-color: var(--cyan);
  box-shadow: 0 0 0 3px var(--cyan-dim);
}
.np-waitlist-input[aria-invalid="true"] { border-color: var(--danger); }
.np-waitlist-submit {
  background: var(--gold);
  color: var(--bg);
  border-radius: var(--radius-sm);
  padding: 0.75rem 1.25rem;
  font-family: var(--mono);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  transition: background 0.15s ease, transform 0.1s ease;
  white-space: nowrap;
}
.np-waitlist-submit:hover { background: var(--gold-hover); }
.np-waitlist-submit:active { transform: translateY(1px); }
.np-waitlist-submit:disabled { opacity: 0.5; cursor: not-allowed; }
.np-waitlist-note {
  color: var(--text-dim);
  font-size: 0.8rem;
  line-height: 1.4;
  margin: 0.25rem 0 0;
}
.np-waitlist-status {
  margin-top: 0.5rem;
  font-size: 0.9rem;
  line-height: 1.5;
  min-height: 1.5em;
}
.np-waitlist-status[data-state="loading"] {
  color: var(--cyan);
  font-family: var(--mono);
  font-size: 0.85rem;
}
.np-waitlist-status[data-state="success"] {
  color: var(--cyan);
  padding: 0.75rem 1rem;
  background: var(--cyan-soft);
  border-left: 3px solid var(--cyan);
  border-radius: var(--radius-sm);
}
.np-waitlist-status[data-state="error"] {
  color: #F5C7C7;
  padding: 0.75rem 1rem;
  background: rgba(240, 123, 123, 0.08);
  border-left: 3px solid var(--danger);
  border-radius: var(--radius-sm);
}
[data-theme="light"] .signup-input,
[data-theme="light"] .signup-textarea,
[data-theme="light"] .check-textarea,
[data-theme="light"] .check-select,
[data-theme="light"] .auth-input,
[data-theme="light"] .np-waitlist-input {
  background: var(--surface);
  color: var(--text);
  border-color: var(--border-strong);
}
.essay-pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  margin-top: 2.5rem;
  flex-wrap: wrap;
}
.essay-page-btn {
  font-family: var(--mono);
  font-size: 0.85rem;
  font-weight: 500;
  min-width: 2.25rem;
  height: 2.25rem;
  padding: 0 0.6rem;
  border: 1px solid var(--border);
  background: transparent;
  color: var(--text-muted);
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition:
    border-color var(--dur-fast) var(--ease-precise),
    color var(--dur-fast) var(--ease-precise),
    background var(--dur-fast) var(--ease-precise);
}
.essay-page-btn:hover:not(:disabled) {
  border-color: var(--cyan);
  color: var(--cyan);
  background: var(--cyan-soft);
}
.essay-page-btn.is-active {
  border-color: var(--cyan);
  color: var(--cyan);
  background: var(--cyan-soft);
  font-weight: 600;
}
.essay-page-btn:disabled {
  opacity: 0.35;
  cursor: not-allowed;
}
.essay-page-btn:focus-visible {
  outline: 2px solid var(--cyan);
  outline-offset: 2px;
}
.check-textarea,
.signup-input,
.signup-textarea,
.auth-input,
.np-waitlist-input {
  font-size: max(16px, 1rem);
}
.np-step-label {
  font-family: var(--mono);
  font-size: 0.72rem;
  letter-spacing: 0.03em;
  color: var(--text-dim);
}
.np-step.is-active .np-step-label { color: var(--text); }
.np-step.is-done .np-step-label { color: var(--text-muted); }
.np-waitlist-panel {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  box-shadow: var(--v2-shadow-card);
}
.np-waitlist-eyebrow {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-dim);
}
.np-waitlist-panel .cta-primary {
  display: inline-flex !important;
  width: auto !important;
  margin: 0.25rem auto 0;
}
.np-waitlist-panel { text-align: left; }
.np-waitlist-panel > p:has(> a[href*="skills-pack"]), .np-waitlist-panel form { text-align: inherit; }

/* ---------- 22. Utilities replacing recurring legacy inline styles ---------- */
strong, em, b { color: var(--text); }
.u-ink { color: var(--text); }
.u-m-0 { margin: 0; }
.u-mt-04 { margin: .4rem 0 0; }
.u-mb-04 { margin: 0 0 .4rem; }
.u-mb-15 { margin: 0 0 1.5rem; }
.u-note { color: var(--text-muted); font-size: .88rem; }
.u-sub { margin: .4rem 0 0; color: var(--text-muted); font-size: .92rem; }
.u-sub-lg { margin: 1.25rem 0 0; color: var(--text-muted); font-size: .92rem; }
.u-foot-note { margin: 2.5rem 0 0; color: var(--text-muted); font-size: .9rem; }
.u-smallprint-gap { color: var(--text-dim); font-size: .85rem; margin-top: 2.5rem; }
.u-fs-14 { font-size: 1.4rem; }
.u-fs-15 { font-size: 1.5rem; }
.u-panel { margin: 2.5rem 0 0; border: 1px solid var(--border); border-radius: 10px; padding: 1rem 1.15rem; background: var(--surface); }
.u-table { width: 100%; border-collapse: collapse; margin: 1.5rem 0 0; font-size: .95rem; }
.u-table td { padding: .75rem .9rem; border: 1px solid var(--border); }
