/* Zevani marketing site — design system v2 (premium/cinematic redesign).
   Zero build step, zero dependencies. Dark cinematic base, one dominant
   emerald accent, restrained cyan ambient light in the hero only. */

:root {
  /* Surfaces — layered near-black, never pure #000 */
  --bg: #0a0d10;
  --bg-soft: #0d1114;
  --surface-1: #12171b;
  --surface-2: #171e23;
  --surface-3: #1c242a;
  --border: rgba(255, 255, 255, 0.08);
  --border-strong: rgba(255, 255, 255, 0.16);

  /* Text */
  --ink: #f5f2ea;
  --ink-soft: #c7cdd2;
  --muted: #8b949c;

  /* Accent — one dominant emerald family */
  --accent: #17b892;
  --accent-bright: #3fe8c0;
  --accent-dim: #0d5f4c;
  --accent-tint: rgba(63, 232, 192, 0.1);
  --accent-tint-strong: rgba(63, 232, 192, 0.18);
  --glow: rgba(63, 232, 192, 0.35);

  /* Restrained secondary — ambient hero light only, never text/buttons */
  --cyan: #6fd8ff;

  /* Warning-tint used sparingly for callouts */
  --warn: #e0a45e;
  --warn-tint: rgba(224, 164, 94, 0.12);

  --focus: #3fe8c0;
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 22px;
  --shadow-card: 0 20px 44px rgba(0, 0, 0, 0.38);
  --container: 1152px;

  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --dur-fast: 180ms;
  --dur-med: 480ms;
  --dur-slow: 900ms;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  color-scheme: dark;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
}

body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  color: var(--ink-soft);
  background: var(--bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

a {
  color: var(--accent-bright);
}

::selection {
  background: var(--accent);
  color: #05100c;
}

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

/* Focus states — visible everywhere, never suppressed */
a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible,
summary:focus-visible {
  outline: 2.5px solid var(--focus);
  outline-offset: 3px;
  border-radius: 4px;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--accent-bright);
  color: #05100c;
  font-weight: 700;
  padding: 12px 20px;
  z-index: 1000;
  border-radius: 0 0 8px 0;
}
.skip-link:focus {
  left: 0;
}

/* ── Scroll reveal (IntersectionObserver-driven, see js/motion.js) ───────── */
.reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity var(--dur-slow) var(--ease-out), transform var(--dur-slow) var(--ease-out);
  transition-delay: calc(var(--reveal-delay, 0) * 70ms);
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}
@media (prefers-reduced-motion: reduce) {
  .reveal {
    opacity: 1;
    transform: none;
  }
}
/* Note: only js/motion.js ever applies the .reveal class (opacity: 0) in
   the first place, so content is never hidden when JavaScript is off. */

/* ── Header ────────────────────────────────────────────────────────────── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(10, 13, 16, 0.72);
  backdrop-filter: saturate(140%) blur(14px);
  -webkit-backdrop-filter: saturate(140%) blur(14px);
  border-bottom: 1px solid var(--border);
  transition: background-color var(--dur-med) var(--ease-out), border-color var(--dur-med) var(--ease-out);
}
.site-header.scrolled {
  background: rgba(10, 13, 16, 0.9);
  border-bottom-color: var(--border-strong);
}

.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--ink);
}
.brand-mark {
  width: 30px;
  height: 30px;
  flex: none;
}
.brand-word {
  font-size: 1.2rem;
  font-weight: 800;
  letter-spacing: -0.01em;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 32px;
}

.main-nav a:not(.btn) {
  position: relative;
  color: var(--ink-soft);
  text-decoration: none;
  font-size: 0.94rem;
  font-weight: 500;
  transition: color var(--dur-fast) var(--ease-out);
}
.main-nav a:not(.btn)::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: -4px;
  height: 1.5px;
  background: var(--accent-bright);
  transition: right var(--dur-med) var(--ease-out);
}
.main-nav a:not(.btn):hover {
  color: var(--ink);
}
.main-nav a:not(.btn):hover::after {
  right: 0;
}

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

.nav-toggle {
  display: none;
  background: none;
  border: 1px solid var(--border-strong);
  border-radius: 8px;
  padding: 8px 10px;
  cursor: pointer;
  color: var(--ink);
}
.nav-toggle svg {
  width: 22px;
  height: 22px;
}

/* ── Buttons ───────────────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-weight: 650;
  font-size: 0.98rem;
  text-decoration: none;
  border-radius: 10px;
  padding: 13px 22px;
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: transform var(--dur-fast) var(--ease-out), box-shadow var(--dur-fast) var(--ease-out),
    background-color var(--dur-fast) var(--ease-out), border-color var(--dur-fast) var(--ease-out),
    color var(--dur-fast) var(--ease-out);
  white-space: nowrap;
  position: relative;
}
.btn:active {
  transform: translateY(1px) scale(0.99);
}

.btn-primary {
  background: linear-gradient(180deg, var(--accent-bright), var(--accent));
  color: #062119;
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.35) inset, 0 10px 28px -8px var(--glow);
}
.btn-primary:hover {
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.4) inset, 0 14px 34px -6px var(--glow);
  transform: translateY(-1px);
}

.btn-secondary {
  background: transparent;
  color: var(--ink);
  border-color: var(--border-strong);
}
.btn-secondary:hover {
  border-color: var(--accent-bright);
  color: var(--accent-bright);
}

.btn-ghost-on-dark {
  background: rgba(255, 255, 255, 0.04);
  color: var(--ink);
  border-color: var(--border-strong);
}
.btn-ghost-on-dark:hover {
  border-color: var(--accent-bright);
  background: var(--accent-tint);
}

.btn-block {
  width: 100%;
}
.btn-lg {
  padding: 16px 28px;
  font-size: 1.05rem;
}

/* ── Sections / rhythm ─────────────────────────────────────────────────── */
section {
  padding: 96px 0;
  position: relative;
}
section.tight {
  padding: 64px 0;
}
.section-alt {
  background: var(--bg-soft);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.section-calm {
  padding-top: 72px;
  padding-bottom: 72px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: var(--accent-bright);
  margin-bottom: 14px;
}
.eyebrow::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent-bright);
  box-shadow: 0 0 8px var(--glow);
}

h1, h2, h3, h4 {
  color: var(--ink);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.15;
  margin: 0 0 16px;
}

h1 {
  font-size: clamp(2.35rem, 5.4vw, 3.75rem);
  letter-spacing: -0.03em;
}
h2 {
  font-size: clamp(1.7rem, 3.3vw, 2.35rem);
}
h3 {
  font-size: 1.2rem;
  letter-spacing: -0.01em;
}

.section-head {
  max-width: 680px;
  margin: 0 0 48px;
}
.section-head.center {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.lede {
  font-size: 1.15rem;
  color: var(--ink-soft);
}

/* ── Hero ──────────────────────────────────────────────────────────────── */
.hero {
  padding: 64px 0 88px;
  overflow: clip;
  isolation: isolate;
}
.hero .container {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 40px;
  align-items: center;
}
.hero h1 {
  margin-bottom: 20px;
}
.hero .lede {
  font-size: 1.2rem;
  max-width: 46ch;
  margin-bottom: 32px;
  color: var(--ink-soft);
}
.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 22px;
}
.trust-line {
  font-size: 0.88rem;
  color: var(--muted);
  display: flex;
  align-items: center;
  gap: 8px;
}
.trust-line svg {
  width: 15px;
  height: 15px;
  color: var(--accent-bright);
}

/* Voice-core visual */
.hero-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 420px;
  --mx: 0;
  --my: 0;
}
.orb-ambient {
  position: absolute;
  inset: -20%;
  background:
    radial-gradient(38% 38% at 50% 46%, var(--accent-tint-strong), transparent 70%),
    radial-gradient(30% 30% at 62% 62%, rgba(111, 216, 255, 0.08), transparent 70%);
  filter: blur(28px);
  pointer-events: none;
  z-index: 0;
}
.orb-stage {
  position: relative;
  width: min(420px, 82vw);
  height: min(420px, 82vw);
  z-index: 1;
}
.orb-svg {
  width: 100%;
  height: 100%;
  overflow: visible;
}
.orb-ring {
  fill: none;
  stroke-width: 1;
  transform-box: fill-box;
  transform-origin: center;
  transition: transform var(--dur-fast) linear;
}
.orb-ring-1 {
  stroke: rgba(63, 232, 192, 0.28);
  stroke-dasharray: 2 10;
  animation: spin-cw 46s linear infinite;
  transform: translate(calc(var(--mx) * 4px), calc(var(--my) * 4px));
}
.orb-ring-2 {
  stroke: rgba(111, 216, 255, 0.18);
  stroke-dasharray: 1 7;
  animation: spin-ccw 34s linear infinite;
  transform: translate(calc(var(--mx) * 7px), calc(var(--my) * 7px));
}
.orb-ring-3 {
  stroke: rgba(255, 255, 255, 0.12);
  stroke-dasharray: 0.5 5;
  animation: spin-cw 22s linear infinite;
  transform: translate(calc(var(--mx) * 10px), calc(var(--my) * 10px));
}
@keyframes spin-cw {
  to { rotate: 360deg; }
}
@keyframes spin-ccw {
  to { rotate: -360deg; }
}
.orb-core-halo {
  fill: url(#orbGlow);
  animation: breathe 5s var(--ease-out) infinite;
  transform-box: fill-box;
  transform-origin: center;
}
.orb-core {
  fill: url(#orbCore);
  animation: breathe 5s var(--ease-out) infinite;
  transform-box: fill-box;
  transform-origin: center;
}
@keyframes breathe {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.045); }
}
.orb-wave rect {
  fill: #04140f;
  animation: wave-pulse 1.7s ease-in-out infinite;
  transform-box: fill-box;
  transform-origin: center;
}
.orb-wave rect:nth-child(1) { animation-delay: 0s; }
.orb-wave rect:nth-child(2) { animation-delay: 0.12s; }
.orb-wave rect:nth-child(3) { animation-delay: 0.24s; }
.orb-wave rect:nth-child(4) { animation-delay: 0.36s; }
.orb-wave rect:nth-child(5) { animation-delay: 0.48s; }
@keyframes wave-pulse {
  0%, 100% { transform: scaleY(0.45); }
  50% { transform: scaleY(1); }
}

.lead-chip {
  position: absolute;
  right: 2%;
  bottom: 10%;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(18, 23, 27, 0.86);
  border: 1px solid var(--border-strong);
  backdrop-filter: blur(10px);
  border-radius: 14px;
  padding: 12px 16px;
  box-shadow: var(--shadow-card);
  opacity: 0;
  transform: translateY(10px) scale(0.97);
  animation: chip-in var(--dur-slow) var(--ease-out) 1.15s forwards;
}
@keyframes chip-in {
  to { opacity: 1; transform: translateY(0) scale(1); }
}
.lead-chip .chip-icon {
  flex: none;
  width: 30px;
  height: 30px;
  border-radius: 8px;
  background: var(--accent-tint-strong);
  color: var(--accent-bright);
  display: flex;
  align-items: center;
  justify-content: center;
}
.lead-chip .chip-icon svg {
  width: 16px;
  height: 16px;
}
.lead-chip .chip-title {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--ink);
}
.lead-chip .chip-sub {
  font-size: 0.72rem;
  color: var(--muted);
}

@media (hover: none) {
  .lead-chip { animation-delay: 0.5s; }
}
@media (prefers-reduced-motion: reduce) {
  .orb-ring-1, .orb-ring-2, .orb-ring-3, .orb-core, .orb-core-halo, .orb-wave rect {
    animation: none;
  }
  .lead-chip {
    animation: none;
    opacity: 1;
    transform: none;
  }
}

/* ── Problem section — borderless, calmer than the hero ──────────────── */
.problem-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 44px;
}
.problem-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.problem-item .num {
  flex: none;
  font-size: 0.78rem;
  font-weight: 800;
  color: var(--accent-bright);
  letter-spacing: 0.04em;
  padding-top: 3px;
}
.problem-item p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.98rem;
}
.problem-punch {
  margin-top: 52px;
  text-align: center;
  border-top: 1px solid var(--border);
  padding-top: 44px;
}
.problem-punch p {
  font-size: 1.4rem;
  color: var(--ink);
  font-weight: 700;
  max-width: 620px;
  margin: 0 auto 10px;
  letter-spacing: -0.01em;
}
.problem-punch .then {
  color: var(--accent-bright);
  font-weight: 800;
  font-size: 1.7rem;
}

/* ── How it works — flow with self-drawing connector ──────────────────── */
.flow {
  position: relative;
  display: flex;
  align-items: stretch;
  gap: 0;
  margin-top: 56px;
}
.flow-line {
  position: absolute;
  left: 0;
  right: 0;
  top: 27px;
  height: 1px;
  background: var(--border);
  z-index: 0;
}
.flow-line-progress {
  position: absolute;
  left: 0;
  top: 27px;
  height: 1px;
  width: 0;
  background: linear-gradient(90deg, var(--accent), var(--accent-bright));
  z-index: 0;
  transition: width 1.4s var(--ease-out);
}
.flow.is-visible .flow-line-progress {
  width: 100%;
}
.flow-step {
  flex: 1;
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 0 12px;
}
.flow-step .step-num {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: var(--surface-2);
  border: 1px solid var(--border-strong);
  color: var(--accent-bright);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
  transition: border-color var(--dur-med) var(--ease-out), box-shadow var(--dur-med) var(--ease-out);
}
.flow.is-visible .flow-step .step-num {
  border-color: var(--accent);
  box-shadow: 0 0 0 4px var(--accent-tint);
}
.flow-step .step-num svg {
  width: 22px;
  height: 22px;
}
.flow-step h3 {
  font-size: 0.98rem;
  margin-bottom: 6px;
}
.flow-step p {
  font-size: 0.85rem;
  color: var(--muted);
  margin: 0;
}
.flow-note {
  margin-top: 32px;
  font-size: 0.9rem;
  color: var(--muted);
  text-align: center;
}

/* ── Industries — compact tag treatment, not a big box grid ────────────── */
.industry-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-top: 40px;
}
.industry-tag {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: var(--surface-1);
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 11px 18px 11px 14px;
  font-weight: 600;
  font-size: 0.92rem;
  color: var(--ink-soft);
  transition: border-color var(--dur-fast) var(--ease-out), transform var(--dur-fast) var(--ease-out), color var(--dur-fast) var(--ease-out);
}
.industry-tag:hover {
  border-color: var(--accent);
  color: var(--ink);
  transform: translateY(-2px);
}
.industry-tag svg {
  width: 17px;
  height: 17px;
  color: var(--accent-bright);
}
.industry-note {
  margin-top: 28px;
  font-size: 0.92rem;
  color: var(--muted);
  text-align: center;
}

/* ── Capabilities — modular cards + illustrative call-outcome UI ───────── */
.capability-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
  margin-top: 40px;
}
.capability-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}
.capability {
  display: flex;
  gap: 13px;
  background: var(--surface-1);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 16px 18px;
  transition: border-color var(--dur-fast) var(--ease-out), transform var(--dur-fast) var(--ease-out);
}
.capability:hover {
  border-color: var(--border-strong);
  transform: translateY(-2px);
}
.capability svg {
  flex: none;
  width: 19px;
  height: 19px;
  color: var(--accent-bright);
  margin-top: 2px;
}
.capability h3 {
  font-size: 0.92rem;
  margin-bottom: 3px;
}
.capability p {
  font-size: 0.83rem;
  color: var(--muted);
  margin: 0;
  line-height: 1.5;
}

/* Illustrative call-outcome UI card */
.outcome-card {
  background: var(--surface-2);
  border: 1px solid var(--border-strong);
  border-radius: var(--radius-lg);
  padding: 26px;
  box-shadow: var(--shadow-card);
}
.outcome-label {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 18px;
}
.outcome-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 11px 0;
  border-bottom: 1px solid var(--border);
  font-size: 0.92rem;
}
.outcome-row:last-of-type {
  border-bottom: none;
}
.outcome-row .k {
  color: var(--muted);
}
.outcome-row .v {
  color: var(--ink);
  font-weight: 600;
  text-align: right;
}
.outcome-row .v.urgent {
  color: var(--warn);
}
.outcome-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 18px;
  background: var(--accent-tint);
  color: var(--accent-bright);
  font-size: 0.78rem;
  font-weight: 700;
  padding: 7px 12px;
  border-radius: 999px;
}

.capability-callout {
  margin-top: 28px;
  background: var(--warn-tint);
  border: 1px solid rgba(224, 164, 94, 0.3);
  border-radius: var(--radius-md);
  padding: 16px 20px;
  font-size: 0.88rem;
  color: #e8c197;
}
.capability-callout strong {
  color: var(--warn);
}

/* ── Non-replacement trust band ─────────────────────────────────────────── */
.trust-band {
  background:
    radial-gradient(60% 100% at 50% 0%, rgba(63, 232, 192, 0.06), transparent 65%),
    var(--bg-soft);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.trust-band .container {
  max-width: 780px;
  text-align: center;
}
.trust-flow {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin: 28px 0 34px;
  flex-wrap: wrap;
  font-size: 0.88rem;
  color: var(--muted);
}
.trust-flow span {
  padding: 8px 14px;
  border: 1px solid var(--border);
  border-radius: 999px;
}
.trust-flow svg {
  width: 16px;
  height: 16px;
  color: var(--accent-bright);
}
.trust-band p.emphasis {
  color: var(--ink);
  font-weight: 700;
  font-size: 1.25rem;
}
.trust-band p.support {
  color: var(--ink-soft);
  font-size: 1.05rem;
}

/* ── When Zevani answers ────────────────────────────────────────────────── */
.mode-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 44px;
}
.mode-card {
  background: var(--surface-1);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 28px 24px;
  transition: border-color var(--dur-fast) var(--ease-out), transform var(--dur-fast) var(--ease-out);
}
.mode-card:hover {
  transform: translateY(-2px);
}
.mode-card.featured {
  background: linear-gradient(180deg, var(--surface-2), var(--surface-1));
  border-color: var(--accent);
  box-shadow: 0 0 0 1px var(--accent-tint), var(--shadow-card);
  position: relative;
}
.mode-card.featured::before {
  content: "Recommended starting point";
  position: absolute;
  top: -12px;
  left: 24px;
  background: var(--accent);
  color: #062119;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.03em;
  padding: 4px 10px;
  border-radius: 999px;
}
.mode-card svg {
  width: 24px;
  height: 24px;
  color: var(--accent-bright);
  margin-bottom: 16px;
}
.mode-card .eyebrow {
  margin-bottom: 10px;
}
.mode-card p {
  font-size: 0.92rem;
  color: var(--ink-soft);
  margin: 0;
}

/* ── Founding program — spotlight treatment ─────────────────────────────── */
.founding {
  background:
    radial-gradient(70% 120% at 50% 0%, rgba(63, 232, 192, 0.08), transparent 60%),
    var(--bg);
}
.founding-card {
  background: linear-gradient(180deg, var(--surface-2), var(--surface-1));
  border: 1px solid var(--border-strong);
  box-shadow: 0 0 0 1px rgba(63, 232, 192, 0.16), 0 40px 80px -20px rgba(0, 0, 0, 0.6);
  border-radius: var(--radius-lg);
  padding: 52px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 44px;
  align-items: start;
  position: relative;
  overflow: hidden;
}
.founding-card::before {
  content: "";
  position: absolute;
  top: -40%;
  right: -20%;
  width: 60%;
  height: 140%;
  background: radial-gradient(circle, rgba(63, 232, 192, 0.1), transparent 70%);
  pointer-events: none;
}
.founding-badge {
  display: inline-block;
  background: var(--accent-tint-strong);
  color: var(--accent-bright);
  font-weight: 700;
  font-size: 0.76rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 6px 12px;
  border-radius: 999px;
  margin-bottom: 20px;
}
.price-row {
  display: flex;
  align-items: baseline;
  gap: 10px;
  margin-bottom: 6px;
}
.price {
  font-size: 3.4rem;
  font-weight: 800;
  color: var(--ink);
  letter-spacing: -0.03em;
}
.price-period {
  font-size: 1rem;
  color: var(--muted);
}
.setup-fee {
  color: var(--accent-bright);
  font-weight: 700;
  margin-bottom: 26px;
  font-size: 0.95rem;
}
.founding-list {
  list-style: none;
  margin: 0 0 28px;
  padding: 0;
}
.founding-list li {
  display: flex;
  gap: 10px;
  padding: 8px 0;
  font-size: 0.94rem;
  color: var(--ink-soft);
  border-bottom: 1px solid var(--border);
}
.founding-list li:last-child {
  border-bottom: none;
}
.founding-list svg {
  flex: none;
  width: 17px;
  height: 17px;
  color: var(--accent-bright);
  margin-top: 3px;
}
.usage-note {
  font-size: 0.83rem;
  color: var(--muted);
  margin-bottom: 26px;
}
.founding-side h3 {
  margin-bottom: 14px;
}
.founding-side ul {
  padding-left: 0;
  margin: 0 0 24px;
  color: var(--ink-soft);
  font-size: 0.94rem;
  list-style: none;
}
.founding-side li {
  padding: 8px 0 8px 24px;
  position: relative;
}
.founding-side li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 16px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent-bright);
}
.spots-note {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 16px 18px;
  font-size: 0.9rem;
  color: var(--ink-soft);
}

/* ── FAQ — calm, minimal ────────────────────────────────────────────────── */
.faq-list {
  max-width: 780px;
  margin: 40px auto 0;
}
.faq-item {
  border-bottom: 1px solid var(--border);
}
.faq-item summary {
  cursor: pointer;
  list-style: none;
  padding: 22px 4px;
  font-weight: 650;
  color: var(--ink);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}
.faq-item summary::-webkit-details-marker {
  display: none;
}
.faq-item summary .chev {
  flex: none;
  width: 18px;
  height: 18px;
  color: var(--muted);
  transition: transform var(--dur-fast) var(--ease-out);
}
.faq-item[open] summary .chev {
  transform: rotate(180deg);
  color: var(--accent-bright);
}
.faq-item p {
  margin: 0 4px 22px;
  color: var(--ink-soft);
  font-size: 0.95rem;
  max-width: 68ch;
}

/* ── Final CTA ───────────────────────────────────────────────────────────── */
.final-cta {
  text-align: center;
  background: radial-gradient(60% 140% at 50% 100%, rgba(63, 232, 192, 0.07), transparent 60%), var(--bg);
}
.final-cta p.lede2 {
  color: var(--ink-soft);
  font-size: 1.1rem;
  max-width: 560px;
  margin: 0 auto 32px;
}
.final-cta .cta-row {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 28px;
}
.final-cta .contact-emails {
  font-size: 0.92rem;
  color: var(--muted);
}
.final-cta .contact-emails a {
  color: var(--ink-soft);
}

/* ── Footer — calmest section ───────────────────────────────────────────── */
.site-footer {
  background: var(--bg-soft);
  border-top: 1px solid var(--border);
  padding: 52px 0 32px;
}
.footer-grid {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 24px;
}
.footer-brand .brand {
  margin-bottom: 10px;
}
.footer-brand p {
  color: var(--muted);
  font-size: 0.88rem;
  max-width: 320px;
  margin: 0;
}
.footer-links {
  display: flex;
  gap: 48px;
  flex-wrap: wrap;
}
.footer-col h4 {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--muted);
  margin-bottom: 12px;
  font-weight: 700;
}
.footer-col a {
  display: block;
  color: var(--ink-soft);
  text-decoration: none;
  font-size: 0.92rem;
  padding: 4px 0;
  transition: color var(--dur-fast) var(--ease-out);
}
.footer-col a:hover {
  color: var(--accent-bright);
}
.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 20px;
  font-size: 0.85rem;
  color: var(--muted);
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px;
}

/* ── Simple pages (privacy/terms/apply header banner) ───────────────────── */
.page-hero {
  padding: 56px 0 40px;
  border-bottom: 1px solid var(--border);
}
.page-hero p {
  color: var(--muted);
  max-width: 640px;
}
.placeholder-notice {
  background: var(--warn-tint);
  border: 1px solid rgba(224, 164, 94, 0.3);
  border-radius: var(--radius-md);
  padding: 18px 20px;
  font-size: 0.92rem;
  color: #e8c197;
  margin: 32px 0;
}
.prose {
  max-width: 720px;
}
.prose h2 {
  margin-top: 36px;
}
.prose p, .prose li {
  color: var(--ink-soft);
}
.prose a {
  color: var(--accent-bright);
}

/* ── Application form ────────────────────────────────────────────────────── */
.apply-layout {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 48px;
  align-items: start;
}
.apply-aside h2 {
  font-size: 1.4rem;
}
.apply-aside ul {
  padding-left: 0;
  list-style: none;
  color: var(--ink-soft);
  font-size: 0.92rem;
}
.apply-aside li {
  padding: 8px 0 8px 22px;
  position: relative;
}
.apply-aside li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 15px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent-bright);
}
.apply-aside .contact-box {
  margin-top: 28px;
  background: var(--surface-1);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 20px;
  font-size: 0.9rem;
  color: var(--ink-soft);
}
.apply-aside .contact-box a {
  font-weight: 600;
  text-decoration: none;
}

.form-card {
  background: var(--surface-1);
  border: 1px solid var(--border-strong);
  border-radius: var(--radius-lg);
  padding: 36px;
  box-shadow: var(--shadow-card);
}
.field {
  margin-bottom: 20px;
}
.field label {
  display: block;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--ink);
  margin-bottom: 7px;
}
.field .hint {
  font-weight: 400;
  color: var(--muted);
  font-size: 0.82rem;
}
.field input[type="text"],
.field input[type="email"],
.field input[type="tel"],
.field input[type="url"],
.field select,
.field textarea {
  width: 100%;
  font: inherit;
  padding: 12px 14px;
  border: 1.5px solid var(--border-strong);
  border-radius: 9px;
  background: var(--bg-soft);
  color: var(--ink);
  transition: border-color var(--dur-fast) var(--ease-out), box-shadow var(--dur-fast) var(--ease-out);
}
.field input::placeholder,
.field textarea::placeholder {
  color: var(--muted);
}
.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px var(--accent-tint);
}
.field select {
  color-scheme: dark;
}
.field textarea {
  resize: vertical;
  min-height: 96px;
}
.field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
fieldset {
  border: none;
  padding: 0;
  margin: 0 0 20px;
}
fieldset legend {
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--ink);
  padding: 0;
  margin-bottom: 10px;
}
.radio-group {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.radio-option {
  display: flex;
  align-items: center;
  gap: 8px;
  border: 1.5px solid var(--border-strong);
  border-radius: 9px;
  padding: 10px 14px;
  font-size: 0.9rem;
  color: var(--ink-soft);
  cursor: pointer;
  transition: border-color var(--dur-fast) var(--ease-out), background-color var(--dur-fast) var(--ease-out);
  background: var(--bg-soft);
}
.radio-option:has(input:checked) {
  border-color: var(--accent);
  background: var(--accent-tint);
  color: var(--ink);
}
.radio-option input {
  accent-color: var(--accent);
}
.form-status {
  margin-top: 18px;
  font-size: 0.92rem;
  padding: 14px 16px;
  border-radius: 9px;
  display: none;
}
.form-status.visible {
  display: block;
}
.form-status.success {
  background: var(--accent-tint-strong);
  color: var(--accent-bright);
  border: 1px solid rgba(63, 232, 192, 0.3);
}
.form-status.error {
  background: var(--warn-tint);
  color: var(--warn);
  border: 1px solid rgba(224, 164, 94, 0.3);
}
.form-fallback {
  margin-top: 16px;
  font-size: 0.85rem;
  color: var(--muted);
}

/* Honeypot — hidden from sighted users and screen readers (aria-hidden in
   markup); off-screen rather than display:none so simple bots that skip
   display:none fields still fill it in. */
.hp-field {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

/* Submit-button loading state */
.btn-spinner {
  display: none;
  width: 16px;
  height: 16px;
  flex: none;
  border-radius: 50%;
  border: 2px solid rgba(6, 33, 25, 0.3);
  border-top-color: currentColor;
  animation: btn-spin 0.7s linear infinite;
}
.btn.is-loading {
  cursor: wait;
  opacity: 0.85;
}
.btn.is-loading .btn-spinner {
  display: inline-block;
}
@keyframes btn-spin {
  to { transform: rotate(360deg); }
}

/* In-page success state — replaces the form, no navigation away */
.apply-success {
  text-align: center;
  padding: 20px 8px 4px;
}
.apply-success .success-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--accent-tint-strong);
  color: var(--accent-bright);
  margin-bottom: 18px;
}
.apply-success .success-icon svg {
  width: 26px;
  height: 26px;
}
.apply-success h2 {
  font-size: 1.4rem;
  margin-bottom: 10px;
}
.apply-success p {
  color: var(--ink-soft);
  margin: 0 0 6px;
}
.apply-success .success-sub {
  color: var(--muted);
  font-size: 0.88rem;
}

/* ── Responsive ───────────────────────────────────────────────────────────── */
@media (max-width: 980px) {
  .hero .container {
    grid-template-columns: 1fr;
  }
  .hero-visual {
    order: -1;
    min-height: 320px;
  }
  .problem-grid,
  .mode-grid {
    grid-template-columns: 1fr 1fr;
  }
  .capability-layout {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .founding-card {
    grid-template-columns: 1fr;
    padding: 36px;
  }
  .apply-layout {
    grid-template-columns: 1fr;
  }
  .apply-aside {
    order: 2;
  }
}

@media (max-width: 720px) {
  .nav-links {
    position: fixed;
    top: 72px;
    left: 0;
    right: 0;
    background: rgba(10, 13, 16, 0.97);
    backdrop-filter: blur(14px);
    border-bottom: 1px solid var(--border);
    flex-direction: column;
    align-items: stretch;
    padding: 16px 24px 24px;
    gap: 4px;
    transform: translateY(-8px);
    opacity: 0;
    pointer-events: none;
    transition: opacity var(--dur-fast) var(--ease-out), transform var(--dur-fast) var(--ease-out);
  }
  .nav-links.open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }
  .main-nav a:not(.btn) {
    padding: 12px 0;
    border-bottom: 1px solid var(--border);
  }
  .main-nav a:not(.btn)::after {
    display: none;
  }
  .nav-links .btn {
    margin-top: 12px;
  }
  .nav-toggle {
    display: inline-flex;
  }
  section {
    padding: 60px 0;
  }
  .problem-grid,
  .mode-grid {
    grid-template-columns: 1fr;
  }
  .capability-grid {
    grid-template-columns: 1fr;
  }
  .flow {
    flex-direction: column;
    gap: 28px;
  }
  .flow-line,
  .flow-line-progress {
    left: 27px;
    top: 0;
    bottom: 0;
    right: auto;
    width: 1px;
    height: 100%;
  }
  .flow.is-visible .flow-line-progress {
    width: 1px;
    height: 100%;
  }
  .flow-step {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    text-align: left;
    padding: 0;
  }
  .flow-step .step-num {
    margin: 0;
  }
  .field-row {
    grid-template-columns: 1fr;
  }
  .form-card {
    padding: 22px;
  }
  .founding-card {
    padding: 26px;
  }
  .price {
    font-size: 2.6rem;
  }
  .footer-bottom {
    flex-direction: column;
  }
}

@media (max-width: 400px) {
  .container {
    padding: 0 18px;
  }
  h1 {
    font-size: clamp(2rem, 8vw, 2.4rem);
  }
}
