/* ============================================================
   getVeryl.com — marketing site
   Brand: brand/BRAND.md · tokens: DESIGN.md
   Blue #2D6BFF = action only. Green/amber/red = trust status only.
   ============================================================ */

:root {
  /* brand */
  --action: #2D6BFF;
  --action-bright: #6B95FF;
  --trust: #0D7E52;
  --trust-bright: #34C88C;
  --attention: #D98A00;
  --danger: #E5484D;

  /* light register */
  --canvas: #FBFBFD;
  --surface: #FFFFFF;
  --surface-2: #F5F6F8;
  --border: #E4E6EB;
  --ink: #1A1D21;
  --muted: #646B76;

  /* dark register */
  --night: #0C0D10;
  --night-surface: #15171C;
  --night-surface-2: #1B1E24;
  --night-border: #262A31;
  --night-text: #ECEEF1;
  --night-muted: #9098A6;

  --font-display: 'Cabinet Grotesk', 'Geist', ui-sans-serif, sans-serif;
  --font-text: 'Geist', ui-sans-serif, system-ui, sans-serif;
  --font-mono: 'Geist Mono', ui-monospace, 'SF Mono', monospace;

  --r-sm: 5px;
  --r-md: 9px;
  --r-lg: 13px;

  --max: 1200px;
  --pad: clamp(20px, 4vw, 48px);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

[id] { scroll-margin-top: 78px; }

body {
  font-family: var(--font-text);
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink);
  background: var(--canvas);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

::selection { background: rgba(45, 107, 255, 0.22); }

img { max-width: 100%; display: block; }

a { color: inherit; text-decoration: none; }

a:focus-visible, button:focus-visible {
  outline: 2px solid var(--action);
  outline-offset: 3px;
  border-radius: 3px;
}

.skip {
  position: absolute;
  left: -9999px;
  z-index: 200;
  background: var(--action);
  color: #FFFFFF;
  font-weight: 600;
  font-size: 14px;
  padding: 10px 18px;
  border-radius: 0 0 var(--r-md) 0;
}
.skip:focus { left: 0; top: 0; }

.wrap {
  max-width: var(--max);
  margin: 0 auto;
  padding-left: var(--pad);
  padding-right: var(--pad);
}

/* ---------- type ---------- */

h1, h2, h3 { font-family: var(--font-display); font-weight: 700; letter-spacing: -0.02em; text-wrap: balance; }

.display {
  font-size: clamp(44px, 7vw, 84px);
  line-height: 1.02;
  font-weight: 800;
  letter-spacing: -0.025em;
}

.headline {
  font-size: clamp(32px, 4.4vw, 52px);
  line-height: 1.08;
  font-weight: 800;
}

.subhead {
  font-size: clamp(17px, 2vw, 21px);
  line-height: 1.55;
  font-weight: 400;
}

.eyebrow {
  font-family: var(--font-text);
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--muted);
}

.mono { font-family: var(--font-mono); font-size: 0.85em; }

/* ---------- nav ---------- */

.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  border-bottom: 1px solid transparent;
  transition: background 200ms ease-out, border-color 200ms ease-out;
}

.nav.scrolled {
  background: rgba(12, 13, 16, 0.82);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
  border-bottom-color: var(--night-border);
}

.nav-inner {
  display: flex;
  align-items: center;
  gap: 36px;
  height: 68px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 11px;
  margin-right: auto;
}

.nav-logo img { width: 30px; height: 30px; border-radius: 7px; }

.nav-logo span {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 21px;
  letter-spacing: -0.02em;
  color: #FFFFFF;
}

.nav-links { display: flex; align-items: center; gap: 30px; }

.nav-links a {
  font-size: 14px;
  font-weight: 500;
  color: var(--night-muted);
  transition: color 140ms ease-out;
}

.nav-links a:hover { color: #FFFFFF; }

.nav-cta {
  font-size: 14px;
  font-weight: 600;
  color: #FFFFFF !important;
  background: var(--action);
  padding: 9px 18px;
  border-radius: var(--r-md);
  transition: background 140ms ease-out;
}

.nav-cta:hover { background: #1F5AE8; }

/* nav over light sections (company / get-started deep scroll stays dark—fine) */

.nav-burger {
  display: none;
  background: none;
  border: 0;
  cursor: pointer;
  width: 40px; height: 40px;
  position: relative;
}
.nav-burger span, .nav-burger span::before, .nav-burger span::after {
  content: '';
  position: absolute;
  left: 8px;
  width: 24px; height: 2px;
  background: #fff;
  transition: transform 160ms ease-out, opacity 160ms ease-out;
}
.nav-burger span { top: 19px; }
.nav-burger span::before { left: 0; top: -7px; }
.nav-burger span::after { left: 0; top: 7px; }

@media (max-width: 800px) {
  .nav-burger { display: block; }
  .nav-links {
    display: none;
    position: absolute;
    top: 68px; left: 0; right: 0;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    background: rgba(12, 13, 16, 0.97);
    border-bottom: 1px solid var(--night-border);
    padding: 8px var(--pad) 20px;
  }
  .nav-links.open { display: flex; }
  .nav-links a { padding: 12px 0; font-size: 16px; width: 100%; }
  .nav-links .nav-cta { width: auto; margin-top: 10px; padding: 11px 22px; }
  .nav.menu-open { background: rgba(12, 13, 16, 0.97); border-bottom-color: var(--night-border); }
}

/* ---------- buttons ---------- */

.btn {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-family: var(--font-text);
  font-size: 15.5px;
  font-weight: 600;
  padding: 13px 26px;
  border-radius: var(--r-md);
  border: 1px solid transparent;
  cursor: pointer;
  transition: background 140ms ease-out, border-color 140ms ease-out, color 140ms ease-out;
}

.btn-primary { background: var(--action); color: #FFFFFF; }
.btn-primary:hover { background: #1F5AE8; }

.btn-ghost-dark { border-color: var(--night-border); color: var(--night-text); }
.btn-ghost-dark:hover { border-color: var(--night-muted); background: rgba(255,255,255,0.04); }

.btn-ghost-light { border-color: var(--border); color: var(--ink); background: var(--surface); }
.btn-ghost-light:hover { border-color: var(--muted); }

.btn .arr { transition: transform 140ms ease-out; }
.btn:hover .arr { transform: translateX(3px); }

.textlink {
  font-weight: 600;
  font-size: 15px;
  color: var(--action);
  display: inline-flex;
  align-items: center;
  gap: 7px;
}
.textlink:hover .arr { transform: translateX(3px); }
.textlink .arr { transition: transform 140ms ease-out; }

/* ---------- hero ---------- */

.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: flex-end;
  background: var(--night) center / cover no-repeat;
  color: var(--night-text);
}

.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(12,13,16,0.55) 0%, rgba(12,13,16,0.10) 45%, rgba(12,13,16,0.82) 100%);
}

.hero .wrap {
  position: relative;
  z-index: 1;
  width: 100%;
  padding-top: 160px;
  padding-bottom: clamp(56px, 9vh, 110px);
}

.hero .eyebrow { color: var(--night-muted); margin-bottom: 26px; }

.hero h1 { color: #FFFFFF; max-width: 13ch; }

.hero .subhead {
  color: var(--night-muted);
  max-width: 560px;
  margin-top: 26px;
}
.hero .subhead strong { color: var(--night-text); font-weight: 500; }

.hero-ctas { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 38px; }

.hero-sub { min-height: 64vh; }

/* ---------- fact strip ---------- */

.facts {
  background: var(--night);
  border-top: 1px solid var(--night-border);
  color: var(--night-text);
}

.facts .wrap {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
}

.fact {
  padding: 34px 32px 34px 0;
  border-left: 1px solid var(--night-border);
  padding-left: 32px;
}
.fact:first-child { border-left: 0; padding-left: 0; }

.fact .k {
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 700;
  letter-spacing: -0.01em;
}

.fact .v { color: var(--night-muted); font-size: 14px; margin-top: 6px; }

@media (max-width: 800px) {
  .facts .wrap { grid-template-columns: 1fr; }
  .fact { border-left: 0; padding-left: 0; border-top: 1px solid var(--night-border); }
  .fact:first-child { border-top: 0; }
}

/* ---------- sections ---------- */

.section { padding: clamp(72px, 10vw, 130px) 0; }

.section-head { max-width: 720px; margin-bottom: clamp(40px, 6vw, 72px); }
.section-head .eyebrow { margin-bottom: 18px; }
.section-head .headline { margin-bottom: 20px; }
.section-head .subhead { color: var(--muted); }

.dark {
  background: var(--night);
  color: var(--night-text);
}
.dark .eyebrow { color: var(--night-muted); }
.dark .section-head .subhead { color: var(--night-muted); }

/* manifesto */

.manifesto p {
  font-family: var(--font-display);
  font-size: clamp(24px, 3.2vw, 38px);
  line-height: 1.28;
  font-weight: 500;
  letter-spacing: -0.015em;
  max-width: 900px;
  color: var(--ink);
}

.manifesto p + p { margin-top: 1.2em; }

.manifesto .dim { color: var(--muted); }

/* ---------- feature rows ---------- */

.feature {
  display: grid;
  grid-template-columns: minmax(0, 5fr) minmax(0, 6fr);
  gap: clamp(36px, 6vw, 90px);
  align-items: center;
  padding: clamp(56px, 8vw, 100px) 0;
  border-top: 1px solid var(--border);
}

.feature.flip .f-media { order: -1; }

.f-copy .eyebrow { margin-bottom: 16px; }

.f-copy h3 {
  font-size: clamp(26px, 3vw, 36px);
  line-height: 1.12;
  margin-bottom: 18px;
}

.f-copy p { color: var(--muted); max-width: 480px; }
.f-copy p + p { margin-top: 14px; }
.f-copy .textlink { margin-top: 22px; }

.f-points { list-style: none; margin-top: 24px; display: grid; gap: 12px; }

.f-points li {
  position: relative;
  padding-left: 22px;
  color: var(--muted);
  font-size: 15px;
}

.f-points li::before {
  content: '';
  position: absolute;
  left: 0; top: 7px;
  width: 3px; height: 15px;
  border-radius: 2px;
  background: var(--action);
}

.f-points li strong { color: var(--ink); font-weight: 600; }

.f-media { position: relative; }

.f-media img {
  border-radius: var(--r-lg);
  border: 1px solid var(--border);
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}

@media (max-width: 900px) {
  .feature { grid-template-columns: minmax(0, 1fr); }
  .feature.flip .f-media { order: 0; }
  .f-media img { aspect-ratio: 4 / 3; }
}

/* ---------- product mock: catalog rows ---------- */

.mock {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: 0 22px 60px -32px rgba(26, 29, 33, 0.28);
}

.mock-titlebar {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 18px;
  border-bottom: 1px solid var(--border);
  background: var(--surface-2);
  font-size: 12.5px;
  font-weight: 600;
  color: var(--muted);
}

.mock-titlebar .mono { font-weight: 500; }

.mock-note {
  margin-top: 10px;
  font-size: 12px;
  color: var(--muted);
  text-align: right;
}

.dark .mock-note { color: var(--night-muted); }

.mock-row {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 13px 18px 13px 15px;
  border-top: 1px solid var(--border);
  border-left: 3px solid transparent;
  font-size: 14px;
}
.mock-row:first-of-type { border-top: 0; }
a.mock-row { transition: background 120ms ease-out; }
a.mock-row:hover { background: var(--surface-2); }

.mock-row.certified { border-left-color: var(--trust); }
.mock-row.verified  { border-left-color: var(--trust); }
.mock-row.verifying { border-left-color: #5B6473; }
.mock-row.attention { border-left-color: var(--attention); }

.mock-row .name { font-weight: 600; color: var(--ink); }

.mock-row .id {
  font-family: var(--font-mono);
  font-size: 11.5px;
  color: var(--muted);
  display: none;
}
@media (min-width: 560px) { .mock-row .id { display: inline; } }

.mock-row .badge { margin-left: auto; flex-shrink: 0; }

.badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 600;
  padding: 3.5px 10px;
  border-radius: 999px;
  white-space: nowrap;
}

.badge .dot { width: 7px; height: 7px; border-radius: 999px; background: currentColor; }

.badge-certified { background: var(--trust); color: #FFFFFF; }
.badge-verified  { color: var(--trust); background: #E7F6EF; box-shadow: inset 0 0 0 1px rgba(13,126,82,0.35); }
.badge-verifying { color: #5B6473; background: #EEF0F3; }
.badge-verifying .dot { animation: pulse 1.3s ease-in-out infinite; }
.badge-attention { color: #8A5800; background: #FBF1DC; }

.badge .when { font-weight: 450; opacity: 0.75; }

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.35; }
}

/* ---------- room transcript mock ---------- */

.chat-row {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding: 14px 18px;
  border-top: 1px solid var(--border);
}
.chat-row:first-of-type { border-top: 0; }

.chat-av {
  width: 26px;
  height: 26px;
  border-radius: 999px;
  background: var(--surface-2);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10.5px;
  font-weight: 600;
  color: var(--muted);
  flex-shrink: 0;
  margin-top: 1px;
}

.chat-av.agent { border-radius: 7px; background: var(--action); color: #FFFFFF; border: 0; }

.chat-name { font-weight: 600; font-size: 13px; display: flex; align-items: center; gap: 8px; flex-wrap: wrap; }
.chat-name .when { font-family: var(--font-mono); font-weight: 400; font-size: 10.5px; color: var(--muted); }

.chat-text { color: var(--muted); font-size: 13.5px; margin-top: 3px; line-height: 1.5; }

.chat-gate {
  font-family: var(--font-mono);
  font-size: 11.5px;
  color: var(--muted);
  background: var(--surface-2);
  border-top: 1px solid var(--border);
  padding: 10px 18px;
}

.badge-mini {
  display: inline-flex;
  align-items: center;
  font-size: 10px;
  font-weight: 600;
  padding: 1.5px 7px;
  border-radius: 999px;
  color: var(--trust);
  background: #E7F6EF;
  box-shadow: inset 0 0 0 1px rgba(13,126,82,0.3);
}

/* ---------- platform grid ---------- */

.grid-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--night-border);
  border-left: 1px solid var(--night-border);
}

.gcard {
  border-right: 1px solid var(--night-border);
  border-bottom: 1px solid var(--night-border);
  padding: 34px 30px 38px;
  transition: background 160ms ease-out;
}

.gcard:hover { background: var(--night-surface); }

.gcard h4 {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  letter-spacing: -0.01em;
  margin-bottom: 10px;
  color: #FFFFFF;
}

.gcard p { font-size: 14.5px; color: var(--night-muted); }

.gcard .g-meta {
  font-family: var(--font-mono);
  font-size: 11.5px;
  color: var(--night-muted);
  opacity: 0.75;
  display: block;
  margin-top: 18px;
}

@media (max-width: 900px) { .grid-cards { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .grid-cards { grid-template-columns: 1fr; } }

/* ---------- trust tiers band ---------- */

.tiers { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(20px, 3vw, 36px); }

.tier {
  background: var(--night-surface);
  border: 1px solid var(--night-border);
  border-radius: var(--r-lg);
  padding: 28px 26px 30px;
}

.tier .tier-label {
  font-size: 12.5px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--night-muted);
  margin-bottom: 18px;
  display: block;
}

.tier .badges { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 16px; }

.dark .badge-certified { background: var(--trust-bright); color: var(--night); }
.dark .badge-verified  { color: var(--trust-bright); background: #0F2A20; box-shadow: inset 0 0 0 1px rgba(52,200,140,0.4); }
.dark .badge-verifying { color: #B4BCC9; background: #1C2027; }
.dark .badge-attention { color: #E8B65A; background: #2C2410; }
.badge-danger    { color: var(--danger); background: #FBE9EA; box-shadow: inset 0 0 0 1px rgba(229,72,77,0.4); }
.dark .badge-danger { color: #F0565B; background: #2C1416; }
.badge-retired   { color: var(--muted); background: #EEF0F3; text-decoration: line-through; }
.dark .badge-retired { color: var(--night-muted); background: #1C2027; }

.tier p { font-size: 14.5px; color: var(--night-muted); }

@media (max-width: 860px) { .tiers { grid-template-columns: 1fr; } }

.rule-note {
  margin-top: clamp(36px, 5vw, 56px);
  padding-top: 28px;
  border-top: 1px solid var(--night-border);
  display: flex;
  flex-wrap: wrap;
  gap: 12px 40px;
  justify-content: space-between;
  align-items: baseline;
}

.rule-note .big {
  font-family: var(--font-display);
  font-size: clamp(19px, 2.4vw, 26px);
  font-weight: 700;
  letter-spacing: -0.01em;
  color: #FFFFFF;
}

.rule-note .mono { color: var(--night-muted); font-size: 12.5px; }

/* ---------- terminal ---------- */

.term {
  background: var(--night);
  border: 1px solid var(--night-border);
  border-radius: var(--r-lg);
  overflow: hidden;
  font-family: var(--font-mono);
  font-size: 13.5px;
  line-height: 1.75;
}

.dark .term { background: var(--night-surface); }

.term-bar {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 11px 16px;
  border-bottom: 1px solid var(--night-border);
  color: var(--night-muted);
  font-size: 12px;
}

.term-bar .dots { display: flex; gap: 6px; }
.term-bar .dots i { width: 10px; height: 10px; border-radius: 999px; background: var(--night-border); }

.term pre {
  padding: 20px 22px 24px;
  overflow-x: auto;
  color: var(--night-text);
}

.term .c { color: var(--night-muted); }   /* comment */
.term .p { color: var(--action-bright); user-select: none; } /* prompt */
.term .ok { color: var(--trust-bright); }

/* ---------- steps ---------- */

.steps { counter-reset: step; display: grid; gap: 0; }

.step {
  display: grid;
  grid-template-columns: 72px minmax(0, 1fr);
  gap: 24px;
  padding: 30px 0;
  border-top: 1px solid var(--border);
}

.step::before {
  counter-increment: step;
  content: '0' counter(step);
  font-family: var(--font-mono);
  font-size: 15px;
  color: var(--action);
  padding-top: 3px;
}

.step h4 { font-family: var(--font-display); font-size: 19px; font-weight: 700; margin-bottom: 8px; }
.step p { color: var(--muted); font-size: 15px; max-width: 640px; }
.step .mono-inline {
  font-family: var(--font-mono);
  font-size: 12.5px;
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: var(--r-sm);
  padding: 1.5px 7px;
  white-space: nowrap;
  color: var(--ink);
}

/* ---------- quote ---------- */

.quote {
  max-width: 860px;
}

.quote blockquote {
  font-family: var(--font-display);
  font-size: clamp(24px, 3.4vw, 40px);
  line-height: 1.25;
  font-weight: 500;
  letter-spacing: -0.015em;
  color: #FFFFFF;
}

.quote figcaption {
  margin-top: 26px;
  font-size: 14px;
  color: var(--night-muted);
}

/* ---------- principles (company) ---------- */

.principles { display: grid; gap: 0; }

.principle {
  display: grid;
  grid-template-columns: minmax(150px, 260px) minmax(0, 1fr);
  gap: clamp(20px, 4vw, 60px);
  padding: 34px 0;
  border-top: 1px solid var(--border);
}

.principle h4 {
  font-family: var(--font-display);
  font-size: clamp(20px, 2.4vw, 26px);
  font-weight: 700;
}

.principle p { color: var(--muted); max-width: 620px; }

@media (max-width: 700px) { .principle { grid-template-columns: 1fr; gap: 10px; } }

/* ---------- founders ---------- */

.founders {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(20px, 3vw, 36px);
}

.founder {
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  background: var(--surface);
  padding: 32px 30px 34px;
}

.founder .f-avatar {
  width: 72px;
  height: 72px;
  border-radius: var(--r-md);
  background: var(--surface-2);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 24px;
  color: var(--muted);
  margin-bottom: 22px;
}

.founder h4 {
  font-family: var(--font-display);
  font-size: 21px;
  font-weight: 700;
  letter-spacing: -0.01em;
  margin-bottom: 4px;
}

.founder .role {
  font-size: 12.5px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--muted);
  margin-bottom: 14px;
}

.founder p { color: var(--muted); font-size: 15px; }

@media (max-width: 700px) { .founders { grid-template-columns: 1fr; } }

/* ---------- product stage pills ---------- */

.badge-stage {
  display: inline-flex;
  align-items: center;
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--muted);
  background: var(--surface-2);
  box-shadow: inset 0 0 0 1px var(--border);
  border-radius: 999px;
  padding: 3px 10px;
  margin-left: 12px;
  vertical-align: middle;
  white-space: nowrap;
}

.dark .badge-stage {
  color: var(--night-muted);
  background: var(--night-surface-2);
  box-shadow: inset 0 0 0 1px var(--night-border);
}

/* ---------- waitlist form ---------- */

.waitlist-card {
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  background: var(--surface);
  padding: 30px 28px 32px;
  box-shadow: 0 22px 60px -32px rgba(26, 29, 33, 0.18);
}

.waitlist-card h3 { font-size: 22px; margin-bottom: 18px; }

.field { margin-bottom: 14px; }

.field label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 6px;
}

.field input[type="text"],
.field input[type="email"] {
  width: 100%;
  font-family: var(--font-text);
  font-size: 16px;
  padding: 11px 14px;
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  background: var(--surface);
  color: var(--ink);
}

.field input:focus-visible {
  outline: 2px solid var(--action);
  outline-offset: 1px;
  border-color: var(--action);
}

.checks {
  display: grid;
  gap: 10px;
  margin: 18px 0 22px;
}

.check {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 15px;
  cursor: pointer;
}

.check input[type="checkbox"] {
  width: 18px;
  height: 18px;
  margin-top: 2px;
  accent-color: var(--action);
  flex-shrink: 0;
}

.check .stage-hint { color: var(--muted); font-size: 13.5px; }

.waitlist-card .btn { width: 100%; justify-content: center; }

.form-note { font-size: 13px; color: var(--muted); margin-top: 12px; }

.form-done {
  display: none;
  margin-top: 12px;
  font-size: 14px;
  font-weight: 500;
  color: var(--ink);
}

/* ---------- plan cards (pricing) ---------- */

.plans {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(16px, 2.2vw, 28px);
}

.plan {
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  background: var(--surface);
  padding: 34px 32px 36px;
  display: flex;
  flex-direction: column;
}

.plan h3 { font-size: 24px; margin-bottom: 6px; }

.plan .plan-tag {
  font-size: 12.5px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--muted);
  margin-bottom: 18px;
}

.plan > p { color: var(--muted); font-size: 15px; margin-bottom: 18px; }

.plan .f-points { margin-top: 0; margin-bottom: 26px; }

.plan .btn { margin-top: auto; align-self: flex-start; }

@media (max-width: 960px) { .plans { grid-template-columns: 1fr; } }

/* ---------- pricing: credential card ---------- */

.cred {
  background: var(--night-surface);
  border: 1px solid var(--night-border);
  border-radius: var(--r-lg);
  padding: 26px 26px 0;
  box-shadow: 0 30px 70px -30px rgba(0, 0, 0, 0.55);
  max-width: 460px;
}

.cred-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 22px;
}

.cred-top .mono { color: var(--night-muted); font-size: 11.5px; letter-spacing: 0.08em; }
.cred-top img { width: 34px; height: 34px; border-radius: 8px; }

.cred h3 { color: #FFFFFF; font-size: 24px; margin-bottom: 6px; }

.cred .cred-status {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.08em;
  color: var(--trust-bright);
  margin-bottom: 22px;
}

.cred-row {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 9px 0;
  border-top: 1px solid var(--night-border);
  font-size: 13.5px;
}

.cred-row .k { font-family: var(--font-mono); font-size: 11.5px; color: var(--night-muted); padding-top: 2px; }
.cred-row .v { color: var(--night-text); text-align: right; }
.cred-row .v.good { color: var(--trust-bright); }

.cred-foot {
  display: flex;
  justify-content: space-between;
  margin-top: 14px;
  padding: 14px 0 18px;
  border-top: 1px dashed var(--night-border);
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--night-muted);
}

/* ---------- pricing: idea cells ---------- */

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

.cellrow .cell { padding: 30px 28px 32px; border-left: 1px solid var(--border); }
.cellrow .cell:first-child { border-left: 0; }

.cell .cell-tag {
  font-family: var(--font-mono);
  font-size: 11.5px;
  letter-spacing: 0.08em;
  color: var(--action);
  display: block;
  margin-bottom: 16px;
}

.cell h4 { font-family: var(--font-display); font-size: 20px; margin-bottom: 10px; }
.cell p { color: var(--muted); font-size: 14.5px; }

@media (max-width: 860px) {
  .cellrow { grid-template-columns: 1fr; }
  .cellrow .cell { border-left: 0; border-top: 1px solid var(--border); }
  .cellrow .cell:first-child { border-top: 0; }
}

/* ---------- pricing: billing toggle ---------- */

.billing {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin: 0 0 clamp(32px, 4vw, 44px);
}

.toggle {
  position: relative;
  display: inline-flex;
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 3px;
}

.toggle button {
  position: relative;
  z-index: 1;
  border: 0;
  background: none;
  font-family: var(--font-text);
  font-size: 14px;
  font-weight: 600;
  color: var(--muted);
  padding: 8px 20px;
  border-radius: 999px;
  cursor: pointer;
  transition: color 160ms ease-out;
}

.toggle button[aria-pressed="true"] { color: var(--ink); }

.toggle .slider {
  position: absolute;
  top: 3px; bottom: 3px;
  width: calc(50% - 3px);
  left: 3px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 999px;
  transition: transform 180ms ease-out;
}

.toggle.annual .slider { transform: translateX(100%); }

.save-tag {
  font-family: var(--font-mono);
  font-size: 11.5px;
  letter-spacing: 0.06em;
  color: var(--trust);
  background: #E7F6EF;
  border-radius: 999px;
  padding: 4px 10px;
}

/* ---------- pricing: plan card upgrades ---------- */

.plan { position: relative; }

.plan .price {
  font-family: var(--font-display);
  font-size: 40px;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1;
  margin: 6px 0 4px;
}

.plan .price .prefix { font-size: 16px; font-weight: 500; color: var(--muted); margin-right: 6px; }

.plan .price-unit {
  font-family: var(--font-mono);
  font-size: 11.5px;
  color: var(--muted);
  display: block;
  margin-bottom: 14px;
}

.plan .agents-line { font-size: 14.5px; color: var(--ink); font-weight: 500; margin-bottom: 18px; }

.plan-featured {
  border-color: var(--action);
  box-shadow: 0 22px 60px -28px rgba(45, 107, 255, 0.35);
}

.seal-tag {
  position: absolute;
  top: -13px;
  left: 28px;
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #FFFFFF;
  background: var(--action);
  border-radius: 999px;
  padding: 5px 12px;
}

.plan .f-points li::before { background: var(--action); }

.plans-note {
  text-align: center;
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--muted);
  margin-top: clamp(24px, 3vw, 36px);
}

/* ---------- pricing: add-on cards ---------- */

.addons {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(20px, 3vw, 36px);
}

.addon {
  background: var(--night);
  border: 1px solid var(--night-border);
  border-radius: var(--r-lg);
  padding: 32px 30px 34px;
  color: var(--night-text);
}

.addon .eyebrow { color: var(--night-muted); margin-bottom: 14px; }
.addon h4 { font-family: var(--font-display); font-size: 22px; color: #FFFFFF; margin-bottom: 10px; }
.addon p { color: var(--night-muted); font-size: 14.5px; }
.addon .addon-price { margin-top: 18px; font-size: 15px; color: var(--night-text); }
.addon .addon-price strong { font-family: var(--font-display); font-size: 22px; }

@media (max-width: 760px) { .addons { grid-template-columns: 1fr; } }

/* ---------- pricing: comparison table ---------- */

.cmp-wrap { overflow-x: auto; border: 1px solid var(--border); border-radius: var(--r-lg); background: var(--surface); }

.cmp { width: 100%; border-collapse: collapse; min-width: 640px; font-size: 14.5px; }

.cmp th, .cmp td { padding: 14px 20px; border-top: 1px solid var(--border); text-align: left; }

.cmp thead th { border-top: 0; font-family: var(--font-text); font-size: 13px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.08em; color: var(--muted); background: var(--surface-2); }

.cmp thead th.feat { color: var(--action); }

.cmp td:first-child { color: var(--ink); font-weight: 500; }
.cmp td { color: var(--muted); }

.cmp .yes { color: var(--action); font-weight: 700; }
.cmp .no { color: var(--border); }

/* ---------- pricing: FAQ ---------- */

.faq { max-width: 760px; margin: 0 auto; }

.faq details { border-top: 1px solid var(--border); }
.faq details:last-child { border-bottom: 1px solid var(--border); }

.faq summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  padding: 20px 4px;
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
}
.faq summary::-webkit-details-marker { display: none; }

.faq summary .plus {
  flex-shrink: 0;
  font-family: var(--font-text);
  font-weight: 400;
  font-size: 24px;
  color: var(--action);
  transition: transform 160ms ease-out;
}
.faq details[open] summary .plus { transform: rotate(45deg); }

.faq .answer { padding: 0 4px 22px; color: var(--muted); font-size: 15px; max-width: 660px; }

/* ---------- pricing: badge pills row ---------- */

.pill-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}

/* ---------- legal pages ---------- */

.legal { max-width: 760px; }

.legal .note {
  border: 1px solid var(--border);
  background: var(--surface-2);
  border-radius: var(--r-md);
  padding: 14px 18px;
  font-size: 14px;
  margin-bottom: 40px;
}

.legal h2 {
  font-size: 22px;
  margin: 42px 0 14px;
}

.legal p, .legal li { color: var(--muted); font-size: 15.5px; margin-bottom: 12px; }

.legal ul { padding-left: 22px; margin-bottom: 14px; }

.legal .placeholder { background: #FBF1DC00; border-bottom: 1px dashed var(--muted); }

/* ---------- name/mark explainer ---------- */

.mark-story {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(36px, 6vw, 90px);
  align-items: center;
}

.mark-stage {
  background: var(--night-surface);
  border: 1px solid var(--night-border);
  border-radius: var(--r-lg);
  aspect-ratio: 4 / 3;
  display: flex;
  align-items: center;
  justify-content: center;
}

.mark-stage img { width: clamp(96px, 12vw, 148px); height: auto; border-radius: 22%; box-shadow: 0 30px 70px -30px rgba(45,107,255,0.55); }

@media (max-width: 860px) { .mark-story { grid-template-columns: 1fr; } }

/* ---------- CTA band ---------- */

.cta-band {
  position: relative;
  background: var(--night) center / cover no-repeat;
  color: var(--night-text);
}

.cta-band::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(12,13,16,0.88) 0%, rgba(12,13,16,0.55) 100%);
}

.cta-band .wrap {
  position: relative;
  z-index: 1;
  padding-top: clamp(80px, 12vw, 150px);
  padding-bottom: clamp(80px, 12vw, 150px);
}

.cta-band h2 { color: #FFFFFF; max-width: 15ch; }

.cta-band .subhead { color: var(--night-muted); max-width: 520px; margin-top: 20px; }

/* ---------- footer ---------- */

footer {
  background: var(--night);
  color: var(--night-muted);
  border-top: 1px solid var(--night-border);
  font-size: 14px;
}

.foot-main {
  display: grid;
  grid-template-columns: minmax(0, 1.6fr) repeat(4, minmax(0, 1fr));
  gap: 32px;
  padding: 64px 0 56px;
}

.foot-brand img { width: 34px; height: 34px; border-radius: 8px; margin-bottom: 16px; }

.foot-brand p { max-width: 260px; font-size: 13.5px; }

.foot-col h5 {
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--night-text);
  margin-bottom: 16px;
}

.foot-col ul { list-style: none; display: grid; gap: 10px; }
.foot-col a { color: var(--night-muted); transition: color 140ms ease-out; }
.foot-col a:hover { color: #FFFFFF; }

.foot-legal {
  border-top: 1px solid var(--night-border);
  padding: 22px 0;
  display: flex;
  flex-wrap: wrap;
  gap: 10px 30px;
  justify-content: space-between;
  font-size: 12.5px;
}

.foot-legal .mono { font-size: 11.5px; }

@media (max-width: 800px) { .foot-main { grid-template-columns: 1fr 1fr; } }
@media (max-width: 500px) { .foot-main { grid-template-columns: 1fr; } }

/* ---------- reveal on scroll ---------- */

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 400ms ease-out, transform 400ms ease-out;
}

.reveal.in { opacity: 1; transform: none; }

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