/* ═══════════════════════════════════════════════════════════
   KAVORLY — brand-first immersive site
   Dual-tone masters: navy/white K · sage #6E9277 tick
   ═══════════════════════════════════════════════════════════ */

:root {
  --navy: #1C244B;
  --void: #060910;
  --deep: #0B1220;
  --surface: #101828;
  --elevated: #162033;
  --line: rgba(255, 255, 255, 0.08);
  --line-hi: rgba(255, 255, 255, 0.14);
  /* Dark text: bumped for contrast (grey-on-black was too faint) */
  --text: #F4F6FA;
  --text-soft: #D5DCE8;
  --muted: #B6C2D4;
  --dim: #9AA8BC;
  --sage: #6E9277;
  --sage-bri: #A8D4B2;
  --sage-deep: #4A6B53;
  --sage-glow: rgba(110, 146, 119, 0.45);
  --nav-bg-solid: rgba(6, 9, 16, 0.88);
  --nav-bg-mobile: rgba(6, 9, 16, 0.97);
  --ghost-fill: rgba(255, 255, 255, 0.04);
  --code-bg: rgba(255, 255, 255, 0.06);
  --table-head-bg: rgba(255, 255, 255, 0.04);
  --font: "Plus Jakarta Sans", system-ui, -apple-system, "Segoe UI", sans-serif;
  --mono: "IBM Plex Mono", ui-monospace, Menlo, monospace;
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-tick: cubic-bezier(0.22, 1.2, 0.36, 1);
  --nav-h: 68px;
  --banner-h: 0px; /* announcement bar removed; set a height here to bring one back */
  color-scheme: dark;
}

/* ── Light theme ── */
html[data-theme="light"] {
  --void: #F3F5F9;
  --deep: #FFFFFF;
  --surface: #FFFFFF;
  --elevated: #E8ECF4;
  --line: rgba(28, 36, 75, 0.10);
  --line-hi: rgba(28, 36, 75, 0.16);
  --text: #1A2338;
  --text-soft: #2C3A52;
  --muted: #3D4D66;
  --dim: #5A6A82;
  --sage: #5F8568;
  --sage-bri: #3D6B4A;
  --sage-deep: #4A6B53;
  --sage-glow: rgba(95, 133, 104, 0.28);
  --nav-bg-solid: rgba(255, 255, 255, 0.92);
  --nav-bg-mobile: rgba(255, 255, 255, 0.98);
  --ghost-fill: rgba(28, 36, 75, 0.04);
  --code-bg: rgba(28, 36, 75, 0.06);
  --table-head-bg: rgba(28, 36, 75, 0.04);
  color-scheme: light;
}

*, *::before, *::after { box-sizing: border-box; }
html {
  scroll-behavior: smooth;
  background: var(--void);
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .mark-host .mk-body,
  .mark-host .mk-tick,
  .hero-fx,
  .hero-copy > * {
    opacity: 1 !important;
    transform: none !important;
    filter: none !important;
    animation: none !important;
    transition: none !important;
  }
}

body {
  margin: 0;
  font-family: var(--font);
  color: var(--text);
  background: var(--void);
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  overflow-x: clip;
}

img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: 0; background: none; color: inherit; }
:focus-visible { outline: 2px solid var(--sage); outline-offset: 3px; }

/* ── Banner ── */
.ban {
  position: relative;
  z-index: 50;
  height: var(--banner-h);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 11px;
  color: var(--dim);
  border-bottom: 1px solid var(--line);
  background: #04060c;
}
.ban b {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--sage-bri);
  font-weight: 500;
}

/* ── Nav: one mark + name ── */
.nav {
  position: sticky;
  top: 0;
  z-index: 40;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  border-bottom: 1px solid transparent;
  background: transparent;
  transition: background 0.35s, border-color 0.35s, backdrop-filter 0.35s;
}
.nav.solid {
  background: var(--nav-bg-solid);
  backdrop-filter: blur(16px) saturate(1.3);
  -webkit-backdrop-filter: blur(16px) saturate(1.3);
  border-bottom-color: var(--line);
}
.nav-in {
  width: min(1200px, calc(100% - 40px));
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 750;
  font-size: 18px;
  letter-spacing: -0.03em;
}
.brand img {
  width: 34px;
  height: 30px;
  filter: drop-shadow(0 0 12px var(--sage-glow));
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
  list-style: none;
  margin: 0;
  padding: 0;
  font-size: 14px;
  color: var(--muted);
}
.nav-links a:hover { color: var(--sage-bri); }
.nav-cta {
  display: inline-flex;
  align-items: center;
  height: 40px;
  padding: 0 18px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--sage-bri), var(--sage));
  color: #06100c;
  font-weight: 700;
  font-size: 13.5px;
  box-shadow: 0 8px 28px -8px var(--sage);
  transition: transform 0.2s var(--ease);
}
.nav-cta:hover { transform: translateY(-1px); }
.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border-radius: 10px;
  border: 1px solid var(--line-hi);
  color: var(--text);
  font-size: 18px;
}
@media (max-width: 820px) {
  .nav-links { display: none; }
  .nav-toggle { display: grid; place-items: center; }
  .nav-links.open {
    display: flex;
    position: absolute;
    top: var(--nav-h);
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 12px 20px 20px;
    background: var(--nav-bg-mobile);
    border-bottom: 1px solid var(--line);
  }
  .nav-links.open a { padding: 12px 0; }
  /* Keep walkthrough CTA visible inside open mobile menu */
  .nav-links.open .nav-cta {
    display: inline-flex;
    margin-top: 8px;
    justify-content: center;
    width: 100%;
  }
  .nav-in > .nav-cta { display: none; }
}

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45em;
  height: 50px;
  padding: 0 24px;
  border-radius: 13px;
  font-weight: 700;
  font-size: 14.5px;
  transition: transform 0.18s var(--ease), box-shadow 0.2s, border-color 0.2s;
}
.btn:hover { transform: translateY(-2px); }
.btn-fill {
  background: linear-gradient(135deg, var(--sage-bri), var(--sage) 55%, var(--sage-deep));
  color: #06100c;
  box-shadow: 0 12px 36px -10px rgba(110, 146, 119, 0.7);
}
.btn-ghost {
  border: 1px solid var(--line-hi);
  color: var(--text);
  background: var(--ghost-fill);
}
.btn-ghost:hover {
  border-color: var(--sage);
  color: var(--sage-bri);
}

/* ══════════════════════════════════════════
   HERO — mark left/side + brand copy
   ══════════════════════════════════════════ */
.hero {
  position: relative;
  min-height: calc(100svh - var(--banner-h) - var(--nav-h));
  display: flex;
  align-items: center;
  padding: clamp(32px, 6vh, 64px) 0 clamp(48px, 8vh, 88px);
  overflow: hidden;
}

/* Atmospheric light field (not random nodes) */
.hero-light {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}
.hero-light .beam {
  position: absolute;
  width: 80%;
  height: 120%;
  left: -10%;
  top: -20%;
  background: conic-gradient(
    from 210deg at 35% 45%,
    transparent 0deg,
    rgba(110, 146, 119, 0.06) 28deg,
    transparent 56deg,
    transparent 180deg,
    rgba(36, 60, 110, 0.1) 220deg,
    transparent 280deg
  );
  filter: blur(48px);
  opacity: 0;
  animation: light-wake 2.8s cubic-bezier(0.22, 0.61, 0.36, 1) 0.1s forwards;
}
.hero-light .orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  opacity: 0;
}
.hero-light .orb-a {
  width: min(55vw, 520px);
  height: min(55vw, 520px);
  left: 5%;
  top: 15%;
  background: radial-gradient(circle, rgba(110, 146, 119, 0.28), transparent 68%);
  animation: orb-in 2.4s cubic-bezier(0.22, 0.61, 0.36, 1) 0.2s forwards, orb-pulse 8s ease-in-out 2.8s infinite;
}
.hero-light .orb-b {
  width: min(40vw, 380px);
  height: min(40vw, 380px);
  right: 5%;
  bottom: 10%;
  background: radial-gradient(circle, rgba(40, 70, 140, 0.28), transparent 70%);
  animation: orb-in 2.6s cubic-bezier(0.22, 0.61, 0.36, 1) 0.35s forwards;
}
.hero-light .grain {
  position: absolute;
  inset: 0;
  opacity: 0.35;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.5'/%3E%3C/svg%3E");
}
@keyframes light-wake {
  to { opacity: 1; }
}
@keyframes orb-in {
  to { opacity: 1; }
}
@keyframes orb-pulse {
  0%, 100% { transform: scale(1); opacity: 0.85; }
  50% { transform: scale(1.08); opacity: 1; }
}

.hero-grid {
  position: relative;
  z-index: 2;
  width: min(1200px, calc(100% - 40px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(28px, 5vw, 64px);
  align-items: center;
}
@media (max-width: 900px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }
  .hero-copy .actions { justify-content: center; }
  .hero-copy .lede { margin-inline: auto; }
  .hero-copy .kicker { justify-content: center; }
}

/* ── THE MARK — side hero, big, fully animated ── */
.hero-mark-wrap {
  position: relative;
  display: grid;
  place-items: center;
  min-height: min(58vh, 520px);
}
.hero-mark {
  position: relative;
  width: min(100%, 480px);
  aspect-ratio: 456 / 412;
  z-index: 2;
}
@media (max-width: 900px) {
  .hero-mark { width: min(78vw, 360px); }
  .hero-mark-wrap { min-height: auto; order: -1; }
}

/* Soft ambient glow — refined, not flashy */
.mark-halo {
  position: absolute;
  inset: -22%;
  border-radius: 50%;
  background:
    radial-gradient(circle at 52% 48%, rgba(110, 146, 119, 0.28) 0%, transparent 55%),
    radial-gradient(circle at 42% 55%, rgba(255, 255, 255, 0.05) 0%, transparent 45%);
  filter: blur(18px);
  opacity: 0;
  z-index: 0;
  transition: opacity 1.4s cubic-bezier(0.22, 0.61, 0.36, 1);
}
.hero-mark.is-sealed .mark-halo {
  opacity: 1;
  animation: halo-breathe 7s ease-in-out 0.3s infinite;
}
@keyframes halo-breathe {
  0%, 100% { transform: scale(1); opacity: 0.7; }
  50% { transform: scale(1.04); opacity: 0.95; }
}

/* Very subtle completion rings — only after seal */
.mark-ring {
  position: absolute;
  inset: 8%;
  border-radius: 50%;
  border: 1px solid rgba(168, 212, 178, 0.35);
  opacity: 0;
  z-index: 1;
  pointer-events: none;
  transform: scale(0.92);
}
.hero-mark.is-sealed .mark-ring.r1 {
  animation: ring-soft 1.6s cubic-bezier(0.22, 0.61, 0.36, 1) 0.05s forwards;
}
.hero-mark.is-sealed .mark-ring.r2 {
  inset: 2%;
  border-color: rgba(110, 146, 119, 0.18);
  animation: ring-soft 1.9s cubic-bezier(0.22, 0.61, 0.36, 1) 0.12s forwards;
}
@keyframes ring-soft {
  0% { opacity: 0.45; transform: scale(0.92); }
  100% { opacity: 0; transform: scale(1.22); }
}

.mark-flash {
  display: none; /* was clunky — removed from refined motion */
}

/* Host for the *exact* master SVG (inlined by animate-mark.js) */
.mark-host {
  position: relative;
  z-index: 2;
  width: 100%;
  height: 100%;
}
.mark-host .mark-master,
.mark-host .mark-fallback {
  width: 100%;
  height: 100%;
  display: block;
  overflow: visible;
  filter: drop-shadow(0 20px 48px rgba(0, 0, 0, 0.4));
}
.mark-host .mark-fallback {
  object-fit: contain;
}
/* Exact sage tick — solid after seal */
.mark-host .mk-tick {
  fill: #6E9277 !important;
}
.mark-host .mk-body-group {
  transform-origin: 50% 55%;
}
.mark-host .mk-tick-wrap {
  will-change: mask-image, -webkit-mask-image;
}
.hero-mark.is-sealed .mk-tick-wrap {
  -webkit-mask-image: none !important;
  mask-image: none !important;
}

/* Soft light sweep — only once sealed */
.mark-sheen {
  position: absolute;
  inset: 0;
  z-index: 4;
  pointer-events: none;
  background: linear-gradient(
    115deg,
    transparent 32%,
    rgba(255, 255, 255, 0.12) 50%,
    transparent 68%
  );
  mix-blend-mode: soft-light;
  transform: translateX(-130%);
  opacity: 0;
}
.hero-mark.is-sealed .mark-sheen {
  opacity: 1;
  animation: sheen 1.4s cubic-bezier(0.22, 0.61, 0.36, 1) 0.15s forwards;
}
@keyframes sheen {
  to { transform: translateX(130%); }
}

/* ── Hero copy ── */
.hero-copy { position: relative; z-index: 2; }
.kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--sage-bri);
  font-weight: 500;
  margin: 0 0 20px;
  opacity: 0;
  transform: translateY(10px);
  animation: fade-up 1s cubic-bezier(0.22, 0.61, 0.36, 1) 0.9s forwards;
}
.kicker::before {
  content: "";
  width: 22px;
  height: 1px;
  background: var(--sage);
  box-shadow: 0 0 8px var(--sage);
}
.hero-copy h1 {
  margin: 0 0 20px;
  font-size: clamp(2.5rem, 5.8vw, 4.25rem);
  font-weight: 750;
  letter-spacing: -0.04em;
  line-height: 0.98;
  text-wrap: balance;
  max-width: 11ch;
  opacity: 0;
  transform: translateY(14px);
  animation: fade-up 1.1s cubic-bezier(0.22, 0.61, 0.36, 1) 1.05s forwards;
}
@media (max-width: 900px) {
  .hero-copy h1 { max-width: none; margin-inline: auto; }
}
.hero-copy h1 .line { display: block; }
.hero-copy h1 em {
  font-style: normal;
  background: linear-gradient(105deg, var(--sage-bri) 0%, #c5e8cc 40%, var(--sage) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
}
/* Light mode: pale #c5e8cc mid-stop washes out on a light page — use deeper greens only */
html[data-theme="light"] .hero-copy h1 em {
  background: linear-gradient(105deg, #2F5A3C 0%, #4A7A58 42%, #3D6B4A 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
  /* Slight weight so the clipped gradient stays crisp on white */
  filter: none;
  text-shadow: none;
}
.lede {
  margin: 0 0 28px;
  font-size: clamp(1.05rem, 1.7vw, 1.2rem);
  color: var(--muted);
  max-width: 36ch;
  line-height: 1.65;
  opacity: 0;
  transform: translateY(12px);
  animation: fade-up 1.05s cubic-bezier(0.22, 0.61, 0.36, 1) 1.2s forwards;
}
.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 36px;
  opacity: 0;
  transform: translateY(10px);
  animation: fade-up 1s cubic-bezier(0.22, 0.61, 0.36, 1) 1.35s forwards;
}
.hero-proof {
  display: grid;
  grid-template-columns: repeat(3, auto);
  gap: 20px 28px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
  opacity: 0;
  transform: translateY(8px);
  animation: fade-up 1s cubic-bezier(0.22, 0.61, 0.36, 1) 1.5s forwards;
}
@media (max-width: 900px) {
  .hero-proof { justify-content: center; }
}
.hero-proof div strong {
  display: block;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 2px;
}
.hero-proof div span {
  font-size: 12px;
  color: var(--dim);
}
@keyframes fade-up {
  to { opacity: 1; transform: none; }
}

/* ── Sections below ── */
.wrap {
  width: min(1080px, calc(100% - 40px));
  margin: 0 auto;
}
section {
  position: relative;
  z-index: 2;
  padding: clamp(72px, 12vw, 120px) 0;
}
.sec-kicker {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--sage);
  margin: 0 0 14px;
}
.sec-title {
  margin: 0 0 16px;
  font-size: clamp(1.9rem, 3.8vw, 2.85rem);
  font-weight: 750;
  letter-spacing: -0.035em;
  line-height: 1.08;
  text-wrap: balance;
  max-width: 16ch;
}
.sec-lede {
  margin: 0 0 36px;
  color: var(--muted);
  font-size: 1.1rem;
  max-width: 48ch;
  line-height: 1.65;
}

/* Truth toggle */
/* ── Flip: Without / With — always both visible ── */
.flip {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 18px;
  align-items: stretch;
  margin-top: 8px;
}
@media (max-width: 800px) {
  .flip { grid-template-columns: 1fr; }
  .flip-arrow { transform: rotate(90deg); justify-self: center; }
}
.flip-card {
  border: 1px solid var(--line-hi);
  border-radius: 20px;
  padding: 26px 24px;
  background: var(--deep);
}
.flip-card.bad {
  border-style: dashed;
  background: transparent;
}
.flip-card.good {
  border-color: rgba(110, 146, 119, 0.35);
  background: linear-gradient(165deg, rgba(110, 146, 119, 0.1), var(--deep));
  box-shadow: 0 20px 50px -28px rgba(110, 146, 119, 0.35);
}
.flip-h {
  margin: 0 0 18px;
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 600;
}
.flip-card.bad .flip-h { color: #e08a82; }
.flip-card.good .flip-h { color: var(--sage-bri); }
.flip-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 14px;
}
.flip-list li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  font-size: 15px;
  line-height: 1.45;
  color: var(--muted);
}
.flip-card.good .flip-list li { color: var(--text); }
.flip-arrow {
  display: grid;
  place-items: center;
  color: var(--sage);
  font-size: 28px;
  opacity: 0.75;
  font-weight: 300;
}

/* Bulletproof icons — pure CSS shapes, not text glyphs */
.mark-x,
.mark-tick {
  flex: 0 0 26px;
  width: 26px;
  height: 26px;
  border-radius: 8px;
  position: relative;
  margin-top: 1px;
}
.mark-x {
  background: rgba(201, 123, 116, 0.16);
}
.mark-x::before,
.mark-x::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 12px;
  height: 2px;
  background: #e08a82;
  border-radius: 1px;
}
.mark-x::before { transform: translate(-50%, -50%) rotate(45deg); }
.mark-x::after { transform: translate(-50%, -50%) rotate(-45deg); }

.mark-tick {
  background: rgba(110, 146, 119, 0.2);
  box-shadow: inset 0 0 0 1px rgba(110, 146, 119, 0.3);
}
.mark-tick::before {
  content: "";
  position: absolute;
  left: 7px;
  top: 11px;
  width: 6px;
  height: 11px;
  border: solid var(--sage-bri);
  border-width: 0 2.5px 2.5px 0;
  transform: rotate(40deg);
}

/* Help / differentiate */
.help-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
@media (max-width: 760px) {
  .help-grid { grid-template-columns: 1fr; }
}
.help-card {
  border: 1px solid var(--line-hi);
  border-radius: 20px;
  padding: 28px;
  background: var(--deep);
}
.help-card h3 {
  margin: 0 0 16px;
  font-size: 1.15rem;
  letter-spacing: -0.02em;
}
.help-card ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 12px;
}
.help-card li {
  position: relative;
  padding-left: 18px;
  color: var(--muted);
  font-size: 14.5px;
  line-height: 1.5;
}
.help-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--sage);
  box-shadow: 0 0 8px var(--sage);
}
.help-card li strong { color: var(--text); font-weight: 650; }

/* Path pills */
.path-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0 0 14px;
}
.path-pill {
  height: 40px;
  padding: 0 16px;
  border-radius: 999px;
  border: 1px solid var(--line-hi);
  font-weight: 650;
  font-size: 13px;
  color: var(--muted);
  background: transparent;
  transition: color 0.2s, border-color 0.2s, background 0.2s;
  white-space: nowrap;
}
@media (max-width: 520px) {
  .path-pill { font-size: 12px; padding: 0 12px; }
}
.path-pill.on,
.path-pill[aria-pressed="true"] {
  color: var(--navy-void, #06100c);
  background: linear-gradient(135deg, var(--sage-bri), var(--sage));
  border-color: transparent;
}
/* Path panels — full content swap on tab */
.path-panels {
  margin-top: 8px;
}
.path-panel {
  display: none;
  animation: path-in 0.35s cubic-bezier(0.22, 0.61, 0.36, 1);
}
.path-panel.on {
  display: block;
}
.path-panel[hidden] {
  display: none !important;
}
@keyframes path-in {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: none; }
}
.path-hero {
  margin-bottom: 28px;
  max-width: 52ch;
}
.path-kicker {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--sage);
  margin: 0 0 10px;
  font-weight: 500;
}
.path-title {
  margin: 0 0 14px;
  font-size: clamp(1.45rem, 2.8vw, 2rem);
  font-weight: 750;
  letter-spacing: -0.03em;
  line-height: 1.15;
  color: var(--text);
}
.path-lead {
  margin: 0;
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.65;
}
.path-lead strong {
  color: var(--text);
  font-weight: 650;
}

.benefit-grid {
  display: grid;
  gap: 12px;
  margin-bottom: 24px;
}
.benefit-grid-2 {
  grid-template-columns: 1fr 1fr;
}
.benefit-grid-3 {
  grid-template-columns: repeat(3, 1fr);
}
@media (max-width: 860px) {
  .benefit-grid-3 { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 640px) {
  .benefit-grid-2,
  .benefit-grid-3 { grid-template-columns: 1fr; }
}

.benefit-card {
  border: 1px solid var(--line-hi);
  border-radius: 18px;
  padding: 22px 20px;
  background: var(--deep);
  transition: border-color 0.2s;
}
.benefit-card:hover {
  border-color: rgba(110, 146, 119, 0.35);
}
.benefit-card.ops-tone {
  background: linear-gradient(165deg, rgba(21, 40, 32, 0.9), var(--deep));
}
/* Light mode: dark green wash + dark text tokens = unreadable list body */
html[data-theme="light"] .benefit-card.ops-tone {
  background: linear-gradient(165deg, #E4EFE7 0%, #F3F7F4 50%, var(--surface) 100%);
  border-color: rgba(61, 107, 74, 0.28);
}
html[data-theme="light"] .benefit-card.ops-tone:hover {
  border-color: rgba(61, 107, 74, 0.45);
}
html[data-theme="light"] .benefit-card.ops-tone .tag {
  color: #3D6B4A;
}
html[data-theme="light"] .benefit-card.ops-tone h4 {
  color: #1A2338;
}
html[data-theme="light"] .benefit-card.ops-tone .benefit-list li {
  color: #3D4D66;
}
html[data-theme="light"] .benefit-card.ops-tone .benefit-list strong {
  color: #1A2338;
}
html[data-theme="light"] .benefit-card.ops-tone .benefit-list li::before {
  background: #5F8568;
  box-shadow: none;
}
/* Same issue on Ops pricing card */
html[data-theme="light"] .price-card.ops-tone {
  background: linear-gradient(165deg, #E4EFE7 0%, var(--surface) 100%);
  border-color: rgba(61, 107, 74, 0.28);
}
html[data-theme="light"] .price-card.ops-tone .price-for {
  color: #8A6A2E;
}
.benefit-card .tag {
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--sage-bri);
  margin-bottom: 10px;
}
.benefit-card h4 {
  margin: 0 0 10px;
  font-size: 1.05rem;
  letter-spacing: -0.02em;
  line-height: 1.25;
  color: var(--text);
}
.benefit-card > p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.55;
}
.benefit-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 12px;
}
.benefit-list li {
  position: relative;
  padding-left: 16px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.5;
}
.benefit-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--sage);
  box-shadow: 0 0 8px var(--sage);
}
.benefit-list strong {
  color: var(--text);
  font-weight: 650;
}

.path-outcomes {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-bottom: 28px;
}
@media (max-width: 720px) {
  .path-outcomes { grid-template-columns: 1fr; }
}
.outcome {
  border: 1px dashed rgba(110, 146, 119, 0.3);
  border-radius: 14px;
  padding: 16px 18px;
  background: rgba(110, 146, 119, 0.05);
}
.outcome span {
  display: block;
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--sage-bri);
  margin-bottom: 8px;
}
.outcome p {
  margin: 0;
  font-size: 13.5px;
  color: var(--muted);
  line-height: 1.5;
}

.path-chips-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0 0 24px;
}
.path-chips-row span {
  font-family: var(--mono);
  font-size: 11px;
  padding: 6px 11px;
  border-radius: 999px;
  border: 1px solid var(--line);
  color: var(--muted);
}

.path-cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

/* Standards grid */
.std-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}
@media (max-width: 960px) {
  .std-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 520px) {
  .std-grid { grid-template-columns: 1fr; }
}
.std-card {
  border: 1px solid var(--line-hi);
  border-radius: 16px;
  padding: 18px;
  background: var(--deep);
  border-top: 3px solid var(--sw, var(--sage));
}
.std-card .top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 8px;
  margin-bottom: 8px;
}
.std-card .code {
  font-weight: 700;
  font-size: 14px;
  letter-spacing: -0.02em;
}
.std-card .badge {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 4px 8px;
  border-radius: 999px;
  border: 1px solid var(--line);
  color: var(--dim);
  white-space: nowrap;
}
.std-card .badge.live {
  background: var(--sage);
  border-color: transparent;
  color: #06100c;
  font-weight: 700;
}
.std-card .badge.soon { color: var(--gold, #c9a85c); border-color: rgba(201, 168, 92, 0.35); }
.std-card .badge.coverage { color: var(--steel); }
.std-card .cat {
  font-size: 12px;
  color: var(--dim);
  margin-bottom: 8px;
  font-family: var(--mono);
}
.std-card p {
  margin: 0;
  font-size: 13px;
  color: var(--muted);
  line-height: 1.45;
}
.std-foot {
  margin: 20px 0 0;
  color: var(--dim);
  font-size: 13.5px;
}

/* How steps as cards */
.how-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 8px;
}
@media (max-width: 800px) {
  .how-steps { grid-template-columns: 1fr; }
}
.how-step {
  border: 1px solid var(--line-hi);
  border-radius: 18px;
  padding: 24px;
  background: var(--deep);
}
.how-step .n {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  color: var(--sage);
  margin-bottom: 12px;
}
.how-step h3 { margin: 0 0 10px; font-size: 1.15rem; }
.how-step p { margin: 0; color: var(--muted); font-size: 14.5px; line-height: 1.55; }

/* Features */
.feat-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}
@media (max-width: 860px) {
  .feat-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 540px) {
  .feat-grid { grid-template-columns: 1fr; }
}
.feat {
  border: 1px solid var(--line-hi);
  border-radius: 16px;
  padding: 22px;
  background: var(--deep);
  transition: border-color 0.2s;
}
.feat:hover { border-color: rgba(110, 146, 119, 0.35); }
.feat h3 { margin: 0 0 8px; font-size: 1rem; letter-spacing: -0.015em; }
.feat p { margin: 0; color: var(--muted); font-size: 13.5px; line-height: 1.55; }
.feat ul {
  margin: 10px 0 0;
  padding: 0 0 0 1.15em;
  color: var(--muted);
  font-size: 13.5px;
  line-height: 1.5;
}
.feat li { margin: 0 0 5px; }
a.feat { color: inherit; text-decoration: none; display: block; }
a.feat .go { display: inline-block; margin-top: 12px; color: var(--sage-bri); font-size: 13px; font-weight: 600; }

/* Coverage */
.cov {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 40px;
  align-items: center;
  border: 1px solid var(--line-hi);
  border-radius: 24px;
  padding: clamp(28px, 4vw, 40px);
  background: var(--deep);
}
@media (max-width: 800px) {
  .cov { grid-template-columns: 1fr; }
}
.meters { display: grid; gap: 16px; }
.meter .mtop {
  display: flex;
  justify-content: space-between;
  font-size: 13.5px;
  margin-bottom: 6px;
  color: var(--text);
}
.meter .pct {
  font-family: var(--mono);
  color: var(--sage-bri);
  font-weight: 600;
}
.meter .track {
  height: 8px;
  border-radius: 99px;
  background: var(--line);
  overflow: hidden;
}
.meter .track i {
  display: block;
  height: 100%;
  border-radius: 99px;
  background: linear-gradient(90deg, var(--sage), var(--sage-bri));
  width: 0;
  transition: width 1.2s cubic-bezier(0.22, 0.61, 0.36, 1);
}
.meter-note {
  font-family: var(--mono);
  font-size: 11px;
  color: var(--dim);
  margin: 4px 0 0;
}

/* Tool cards */
.tool-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
@media (max-width: 800px) {
  .tool-cards { grid-template-columns: 1fr; }
}
.tool-card {
  display: flex;
  flex-direction: column;
  padding: 26px;
  border-radius: 18px;
  border: 1px solid var(--line-hi);
  background: var(--deep);
  min-height: 220px;
  transition: transform 0.2s, border-color 0.2s;
}
.tool-card:hover {
  transform: translateY(-3px);
  border-color: rgba(110, 146, 119, 0.4);
}
.tool-card .tn {
  font-family: var(--mono);
  font-size: 12px;
  color: var(--sage);
  letter-spacing: 0.12em;
  margin-bottom: 14px;
}
.tool-card h3 {
  margin: 0 0 10px;
  font-size: 1.15rem;
  letter-spacing: -0.02em;
}
.tool-card p {
  margin: 0 0 18px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.55;
  flex: 1;
}
.tool-card .go {
  font-weight: 650;
  color: var(--sage-bri);
  font-size: 14px;
}

/* Trust */
.trust-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}
@media (max-width: 860px) {
  .trust-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 540px) {
  .trust-grid { grid-template-columns: 1fr; }
}
.trust-card {
  border: 1px solid var(--line-hi);
  border-radius: 16px;
  padding: 20px;
  background: var(--deep);
}
.trust-card strong {
  display: block;
  margin-bottom: 6px;
  font-size: 14.5px;
}
.trust-card span {
  font-size: 13.5px;
  color: var(--muted);
  line-height: 1.5;
}

/* Products */
.products {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
@media (max-width: 760px) {
  .products { grid-template-columns: 1fr; }
}
.product {
  border: 1px solid var(--line-hi);
  border-radius: 22px;
  padding: 32px;
  background: linear-gradient(165deg, var(--elevated), var(--deep));
  min-height: 300px;
  display: flex;
  flex-direction: column;
  transition: border-color 0.25s, transform 0.25s var(--ease);
  position: relative;
  overflow: hidden;
}
.product::after {
  content: "";
  position: absolute;
  right: -40px;
  top: -40px;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--sage-glow), transparent 70%);
  opacity: 0.35;
  pointer-events: none;
}
.product:hover {
  border-color: rgba(110, 146, 119, 0.4);
  transform: translateY(-3px);
}
.product.ops {
  background: linear-gradient(165deg, #152820, #0c1612);
}
.product .tag {
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--sage-bri);
  margin-bottom: 14px;
}
.product h3 {
  margin: 0 0 12px;
  font-size: clamp(1.6rem, 2.5vw, 2.1rem);
  letter-spacing: -0.03em;
}
.product p {
  margin: 0 0 20px;
  color: var(--muted);
  font-size: 14.5px;
  flex: 1;
  max-width: 36ch;
}
.chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 22px;
}
.chips span {
  font-family: var(--mono);
  font-size: 11px;
  padding: 6px 11px;
  border-radius: 999px;
  border: 1px solid var(--line);
  color: var(--muted);
}

/* How */
.steps {
  display: grid;
  gap: 0;
  margin-top: 8px;
  border-left: 2px solid rgba(110, 146, 119, 0.35);
  padding-left: 28px;
}
.step {
  position: relative;
  padding: 0 0 36px;
}
.step:last-child { padding-bottom: 0; }
.step::before {
  content: "";
  position: absolute;
  left: -35px;
  top: 4px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--sage);
  box-shadow: 0 0 0 5px rgba(110, 146, 119, 0.2), 0 0 16px var(--sage);
}
.step .n {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  color: var(--sage);
  margin-bottom: 8px;
}
.step h3 {
  margin: 0 0 8px;
  font-size: 1.25rem;
  letter-spacing: -0.02em;
}
.step p {
  margin: 0;
  color: var(--muted);
  max-width: 52ch;
  font-size: 15px;
}

/* Close */
.close {
  background:
    radial-gradient(ellipse 55% 50% at 80% 30%, rgba(110, 146, 119, 0.14), transparent 55%),
    var(--deep);
  border-radius: 28px 28px 0 0;
  border-top: 1px solid var(--line);
}
.close-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
}
@media (max-width: 800px) {
  .close-grid { grid-template-columns: 1fr; }
}
.form {
  display: grid;
  gap: 12px;
  padding: 28px;
  border-radius: 18px;
  border: 1px solid var(--line-hi);
  background: var(--void);
}
.form label {
  display: block;
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--dim);
  margin-bottom: 6px;
}
.form input,
.form select,
.form textarea {
  width: 100%;
  height: 44px;
  padding: 0 12px;
  border-radius: 10px;
  border: 1px solid var(--line-hi);
  background: var(--surface);
  color: var(--text);
  font: inherit;
}
.form textarea {
  height: 90px;
  padding: 12px;
  resize: vertical;
}
.form .row2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
@media (max-width: 500px) {
  .form .row2 { grid-template-columns: 1fr; }
}
.form-note { font-size: 12px; color: var(--dim); margin: 0; }
.form-ok {
  display: none;
  padding: 14px;
  border-radius: 10px;
  background: rgba(110, 146, 119, 0.15);
  color: var(--sage-bri);
  font-weight: 650;
}
.form-ok.show { display: block; }
.trust-bits {
  list-style: none;
  margin: 24px 0 0;
  padding: 0;
  display: grid;
  gap: 12px;
}
.trust-bits li {
  display: flex;
  gap: 12px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.45;
}
.trust-bits li::before {
  content: "✓";
  color: var(--sage-bri);
  font-weight: 700;
  flex: none;
}

/* Footer */
.foot {
  border-top: 1px solid var(--line);
  padding: 28px 0 40px;
  color: var(--dim);
  font-size: 12.5px;
}
.foot-in {
  width: min(1080px, calc(100% - 40px));
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 12px;
  align-items: center;
}
.foot a {
  color: var(--muted);
  text-decoration: none;
}
.foot a:hover { color: var(--sage-bri); }
.foot-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--text);
  font-weight: 700;
}
.foot-brand img { width: 26px; height: 23px; }

/* Reveal */
.rise {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.75s var(--ease), transform 0.75s var(--ease);
}
.rise.in { opacity: 1; transform: none; }

/* ═══════════════════════════════════════════════════════════
   ADDITIONS — 2026-07-29
   Origin block · Platform capabilities · Pricing · Partners
   Immersion pass (stagger, depth, hero scroll atmosphere)
   ═══════════════════════════════════════════════════════════ */

/* ── Skip link ── */
.skip {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 200;
  padding: 12px 20px;
  background: var(--sage);
  color: #06100c;
  font-weight: 700;
  border-radius: 0 0 10px 0;
}
.skip:focus { left: 0; }

.inline-link {
  color: var(--sage-bri);
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-color: rgba(168, 212, 178, 0.4);
}
.inline-link:hover { text-decoration-color: var(--sage-bri); }

/* ── Hero mantra (the demoted brand line) ── */
.hero-mantra {
  margin: -8px 0 20px;
  font-family: var(--mono);
  font-size: 13px;
  letter-spacing: 0.1em;
  color: var(--sage);
  opacity: 0;
  transform: translateY(10px);
  animation: fade-up 1s cubic-bezier(0.22, 0.61, 0.36, 1) 1.15s forwards;
}
@media (max-width: 900px) {
  .hero-mantra { text-align: center; }
}

/* ── Origin / why we built it ── */
.origin {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 28px;
  align-items: start;
  padding: 40px 44px;
  border-radius: 24px;
  border: 1px solid var(--line-hi);
  background:
    radial-gradient(120% 140% at 0% 0%, rgba(110, 146, 119, 0.14) 0%, transparent 55%),
    linear-gradient(150deg, var(--elevated) 0%, var(--deep) 100%);
  position: relative;
  overflow: hidden;
}
.origin::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255,255,255,0.05), transparent 40%);
  pointer-events: none;
}
@media (max-width: 760px) {
  .origin { grid-template-columns: 1fr; padding: 30px 24px; gap: 18px; }
}
.origin-mark {
  width: 66px;
  height: 66px;
  display: grid;
  place-items: center;
  border-radius: 18px;
  background: rgba(110, 146, 119, 0.12);
  border: 1px solid rgba(110, 146, 119, 0.28);
}
.origin-body { position: relative; z-index: 1; }
.origin-quote {
  margin: 8px 0 20px;
  font-size: clamp(1.1rem, 1.9vw, 1.35rem);
  line-height: 1.6;
  letter-spacing: -0.015em;
  color: var(--text);
  max-width: 62ch;
  border: 0;
  padding: 0;
}
.origin-em {
  display: block;
  margin-top: 16px;
  font-weight: 700;
  background: linear-gradient(105deg, var(--sage-bri) 0%, #c5e8cc 45%, var(--sage) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.origin-attrib {
  margin: 0;
  font-size: 14px;
  color: var(--dim);
  line-height: 1.6;
  max-width: 56ch;
}
.origin-attrib strong { color: var(--muted); }

/* ── Platform capabilities ── */
.cap-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
@media (max-width: 940px) { .cap-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 640px) { .cap-grid { grid-template-columns: 1fr; } }
.cap-col {
  padding: 26px 24px;
  border-radius: 18px;
  border: 1px solid var(--line);
  background: var(--surface);
  transition: transform 0.22s var(--ease), border-color 0.22s, box-shadow 0.22s;
}
.cap-col:hover {
  transform: translateY(-3px);
  border-color: rgba(110, 146, 119, 0.34);
  box-shadow: 0 18px 44px -24px rgba(0, 0, 0, 0.9);
}
.cap-h {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 18px;
  font-size: 1.02rem;
  letter-spacing: -0.02em;
}
.cap-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--sage);
  box-shadow: 0 0 12px var(--sage-glow);
  flex: none;
}
.cap-col.ops .cap-dot { background: #C99A52; box-shadow: 0 0 12px rgba(201, 154, 82, 0.5); }
.cap-list { list-style: none; margin: 0; padding: 0; }
.cap-list li {
  position: relative;
  padding: 0 0 11px 18px;
  font-size: 14px;
  line-height: 1.5;
  color: var(--muted);
}
.cap-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 6px;
  height: 6px;
  border-radius: 2px;
  background: var(--sage-deep);
}
.cap-col.ops .cap-list li::before { background: #7A5F2E; }
.cap-list b { color: var(--text); font-weight: 650; }
.cap-foot {
  margin: 26px 0 0;
  font-size: 14.5px;
  color: var(--dim);
}
.cap-foot a { color: var(--sage-bri); font-weight: 650; }

/* ── Tools: four-up ── */
.tool-cards-4 { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 1000px) { .tool-cards-4 { grid-template-columns: 1fr 1fr; } }
@media (max-width: 640px) { .tool-cards-4 { grid-template-columns: 1fr; } }
.tool-card.ops-tool { border-color: rgba(201, 154, 82, 0.32); }
.tool-card.ops-tool .tn,
.tool-card.ops-tool .go { color: #DDB877; }
.tool-card.ops-tool:hover { border-color: rgba(201, 154, 82, 0.6); }

/* ── Pricing ── */
.price-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
@media (max-width: 860px) { .price-grid { grid-template-columns: 1fr; } }
.price-card {
  padding: 26px 24px;
  border-radius: 18px;
  border: 1px solid var(--line-hi);
  background: var(--deep);
  transition: transform 0.2s var(--ease), border-color 0.2s;
}
.price-card:hover { transform: translateY(-3px); border-color: rgba(110, 146, 119, 0.4); }
.price-card.feature {
  border-color: rgba(110, 146, 119, 0.45);
  background:
    radial-gradient(120% 130% at 100% 0%, rgba(110, 146, 119, 0.16) 0%, transparent 60%),
    var(--elevated);
}
.price-card.ops-tone { border-color: rgba(201, 154, 82, 0.3); }
.price-card h3 { margin: 0 0 6px; font-size: 1.15rem; letter-spacing: -0.02em; }
.price-for {
  margin: 0 0 16px;
  font-size: 13px;
  color: var(--sage);
  font-family: var(--mono);
  letter-spacing: 0.02em;
  line-height: 1.45;
}
.price-card.ops-tone .price-for { color: #C99A52; }
.price-list { list-style: none; margin: 0; padding: 0; }
.price-list li {
  position: relative;
  padding: 0 0 9px 18px;
  font-size: 14px;
  color: var(--muted);
  line-height: 1.5;
}
.price-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 7px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  border: 1.5px solid var(--sage-deep);
}
.price-facts {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 26px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
}
@media (max-width: 700px) { .price-facts { grid-template-columns: 1fr; gap: 14px; } }
.price-facts strong { display: block; font-size: 14px; margin-bottom: 2px; }
.price-facts span { font-size: 13px; color: var(--dim); }
.price-note { margin: 24px 0 0; font-size: 14.5px; color: var(--dim); }
.price-note a { color: var(--sage-bri); font-weight: 650; }

/* ── Partners ── */
.partner-panel {
  display: grid;
  grid-template-columns: 1.35fr 0.65fr;
  gap: 40px;
  align-items: center;
  padding: 44px;
  border-radius: 26px;
  border: 1px solid rgba(110, 146, 119, 0.3);
  background:
    radial-gradient(90% 130% at 100% 0%, rgba(110, 146, 119, 0.18) 0%, transparent 58%),
    linear-gradient(155deg, var(--elevated) 0%, var(--void) 100%);
}
@media (max-width: 900px) {
  .partner-panel { grid-template-columns: 1fr; padding: 30px 24px; gap: 28px; }
}
.partner-points { list-style: none; margin: 22px 0 0; padding: 0; }
.partner-points li {
  position: relative;
  padding: 0 0 12px 24px;
  font-size: 15px;
  color: var(--muted);
  line-height: 1.55;
}
.partner-points li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 7px;
  width: 11px;
  height: 6px;
  border-left: 2px solid var(--sage-bri);
  border-bottom: 2px solid var(--sage-bri);
  transform: rotate(-45deg);
}
.partner-points b { color: var(--text); font-weight: 650; }
.partner-rates { display: grid; gap: 12px; }
.rate-card {
  padding: 22px;
  border-radius: 18px;
  border: 1px solid var(--line-hi);
  background: rgba(6, 9, 16, 0.5);
  text-align: center;
}
.rate-card.alt { opacity: 0.82; }
.rate-num {
  font-size: 2.6rem;
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1;
  background: linear-gradient(140deg, var(--sage-bri), var(--sage));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.rate-label {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--sage);
  margin: 8px 0 8px;
}
.rate-card p { margin: 0; font-size: 13px; color: var(--dim); line-height: 1.5; }
.rate-foot {
  margin: 2px 0 0;
  font-size: 12px;
  color: var(--dim);
  text-align: center;
  line-height: 1.5;
}

/* ── Footer legal ── */
.foot-legal {
  max-width: 1080px;
  margin: 16px auto 0;
  padding: 16px 20px 0;
  border-top: 1px solid var(--line);
  font-size: 12px;
  color: var(--dim);
  line-height: 1.6;
}

/* ═══ IMMERSION PASS ═══ */

/* Staggered children on reveal (B2.4) */
.rise.in > * { --stagger: 0ms; }
.help-grid.in > *,
.cap-grid.in > *,
.price-grid.in > *,
.trust-grid.in > *,
.feat-grid.in > *,
.tool-cards.in > *,
.benefit-grid.in > *,
.how-steps.in > * {
  animation: stagger-in 0.6s var(--ease) both;
}
.help-grid.in > *:nth-child(1),  .cap-grid.in > *:nth-child(1),
.price-grid.in > *:nth-child(1), .trust-grid.in > *:nth-child(1),
.feat-grid.in > *:nth-child(1),  .tool-cards.in > *:nth-child(1),
.benefit-grid.in > *:nth-child(1), .how-steps.in > *:nth-child(1) { animation-delay: 40ms; }
.help-grid.in > *:nth-child(2),  .cap-grid.in > *:nth-child(2),
.price-grid.in > *:nth-child(2), .trust-grid.in > *:nth-child(2),
.feat-grid.in > *:nth-child(2),  .tool-cards.in > *:nth-child(2),
.benefit-grid.in > *:nth-child(2), .how-steps.in > *:nth-child(2) { animation-delay: 110ms; }
.help-grid.in > *:nth-child(3),  .cap-grid.in > *:nth-child(3),
.price-grid.in > *:nth-child(3), .trust-grid.in > *:nth-child(3),
.feat-grid.in > *:nth-child(3),  .tool-cards.in > *:nth-child(3),
.benefit-grid.in > *:nth-child(3), .how-steps.in > *:nth-child(3) { animation-delay: 180ms; }
.trust-grid.in > *:nth-child(4), .feat-grid.in > *:nth-child(4),
.tool-cards.in > *:nth-child(4), .benefit-grid.in > *:nth-child(4) { animation-delay: 250ms; }
.trust-grid.in > *:nth-child(5), .feat-grid.in > *:nth-child(5),
.benefit-grid.in > *:nth-child(5) { animation-delay: 320ms; }
.trust-grid.in > *:nth-child(6), .feat-grid.in > *:nth-child(6),
.benefit-grid.in > *:nth-child(6) { animation-delay: 390ms; }
.trust-grid.in > *:nth-child(n+7) { animation-delay: 460ms; }
@keyframes stagger-in {
  from { opacity: 0; transform: translateY(16px); }
  to   { opacity: 1; transform: none; }
}

/* Hero scroll atmosphere (B2.1) — driven by --scroll-p set in site.js */
.hero-light .beam,
.hero-light .orb-a,
.hero-light .orb-b {
  will-change: transform;
}
.hero-light .orb-a { transform: translate3d(0, calc(var(--scroll-p, 0) * 90px), 0); }
.hero-light .orb-b { transform: translate3d(0, calc(var(--scroll-p, 0) * -60px), 0); }
.hero-light .beam  { opacity: calc(1 - var(--scroll-p, 0) * 0.75); }

/* Meter count-up uses tabular figures so the number doesn't jitter */
.meter .pct { font-variant-numeric: tabular-nums; }

/* Card depth unification (B2.5) */
.feat, .trust-card, .std-card, .benefit-card, .how-step {
  transition: transform 0.22s var(--ease), border-color 0.22s, box-shadow 0.22s;
}
.feat:hover, .trust-card:hover, .std-card:hover, .how-step:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 44px -26px rgba(0, 0, 0, 0.9);
}

/* Reduced motion — everything above goes quiet */
@media (prefers-reduced-motion: reduce) {
  .help-grid.in > *, .cap-grid.in > *, .price-grid.in > *, .trust-grid.in > *,
  .feat-grid.in > *, .tool-cards.in > *, .benefit-grid.in > *, .how-steps.in > * {
    animation: none !important;
    opacity: 1 !important;
    transform: none !important;
  }
  .hero-light .orb-a, .hero-light .orb-b { transform: none !important; }
  .hero-light .beam { opacity: 1 !important; }
  .hero-mantra { opacity: 1 !important; transform: none !important; animation: none !important; }
  .feat:hover, .trust-card:hover, .std-card:hover, .how-step:hover,
  .cap-col:hover, .price-card:hover { transform: none !important; }
}

/* ── Hero fit corrections for the longer headline ── */
.hero-copy h1 {
  max-width: 18ch;
  font-size: clamp(2.2rem, 4.4vw, 3.45rem);
  line-height: 1.02;
}
@media (max-width: 900px) {
  .hero-copy h1 { max-width: none; }
}
.hero-proof {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px 22px;
}
.hero-proof div strong { font-size: 13.5px; line-height: 1.3; }
.hero-proof div span { display: block; line-height: 1.45; }
@media (max-width: 640px) {
  .hero-proof { grid-template-columns: 1fr; text-align: center; }
}

/* ── FAQ ── */
.faq-list { max-width: 820px; }
.faq-item {
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--surface);
  margin-bottom: 12px;
  overflow: hidden;
  transition: border-color 0.2s;
}
.faq-item[open] { border-color: rgba(110, 146, 119, 0.34); }
.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 20px 54px 20px 24px;
  font-size: 1.05rem;
  font-weight: 650;
  letter-spacing: -0.01em;
  position: relative;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "";
  position: absolute;
  right: 24px;
  top: 50%;
  width: 11px;
  height: 11px;
  border-right: 2px solid var(--sage);
  border-bottom: 2px solid var(--sage);
  transform: translateY(-70%) rotate(45deg);
  transition: transform 0.25s var(--ease);
}
.faq-item[open] summary::after { transform: translateY(-30%) rotate(-135deg); }
.faq-item summary:hover { color: var(--sage-bri); }
.faq-a { padding: 0 24px 22px; }
.faq-a p { margin: 0; color: var(--muted); max-width: 68ch; line-height: 1.65; }
.faq-a strong { color: var(--text); font-weight: 650; }
@media (prefers-reduced-motion: reduce) {
  .faq-item summary::after { transition: none; }
}

/* ═══════════════════════════════════════════════════════════
   CONTENT PAGES — solution landing pages + guides
   Reuses tokens, grids and cards from the main stylesheet.
   ═══════════════════════════════════════════════════════════ */

/* Breadcrumb */
.crumb {
  width: min(1080px, calc(100% - 40px));
  margin: 0 auto;
  padding: 22px 0 0;
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.03em;
  color: var(--dim);
}
.crumb a { color: var(--muted); }
.crumb a:hover { color: var(--sage-bri); }
.crumb span[aria-current] { color: var(--sage); }
.crumb .sep { margin: 0 8px; opacity: 0.5; }

/* Page hero (simpler than the homepage hero) */
.page-hero {
  position: relative;
  padding: 40px 0 clamp(36px, 6vh, 64px);
  overflow: hidden;
}
.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(70% 90% at 15% 0%, rgba(110, 146, 119, 0.12) 0%, transparent 55%);
  pointer-events: none;
}
.page-hero .wrap { position: relative; }
.page-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--sage-bri);
  margin: 0 0 18px;
}
.page-eyebrow::before {
  content: "";
  width: 20px; height: 1px;
  background: var(--sage);
  box-shadow: 0 0 8px var(--sage);
}
.page-hero h1 {
  margin: 0 0 18px;
  font-size: clamp(2.1rem, 4.6vw, 3.3rem);
  font-weight: 750;
  letter-spacing: -0.035em;
  line-height: 1.04;
  text-wrap: balance;
  max-width: 20ch;
}
.page-hero h1 em {
  font-style: normal;
  background: linear-gradient(105deg, var(--sage-bri) 0%, #c5e8cc 45%, var(--sage) 100%);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.page-lede {
  font-size: clamp(1.08rem, 1.8vw, 1.28rem);
  color: var(--muted);
  max-width: 60ch;
  line-height: 1.6;
  margin: 0 0 28px;
}
.page-hero .actions { margin-bottom: 8px; }

/* Long-form prose (guides) */
.prose {
  width: min(760px, calc(100% - 40px));
  margin: 0 auto;
}
.prose > * + * { margin-top: 1.15em; }
.prose h2 {
  margin-top: 1.9em;
  font-size: clamp(1.4rem, 2.6vw, 1.9rem);
  font-weight: 720;
  letter-spacing: -0.025em;
  line-height: 1.2;
  scroll-margin-top: 90px;
}
.prose h3 {
  margin-top: 1.5em;
  font-size: 1.2rem;
  font-weight: 680;
  letter-spacing: -0.015em;
}
.prose p, .prose li { color: var(--text-soft); font-size: 1.05rem; line-height: 1.75; }
.prose p { color: var(--text-soft); }
.prose strong { color: var(--text); font-weight: 650; }
.prose ul, .prose ol { padding-left: 22px; }
.prose li { margin-top: 0.5em; }
.prose li::marker { color: var(--sage); }
.prose a { color: var(--sage-bri); text-decoration: underline; text-underline-offset: 3px; text-decoration-color: rgba(168,212,178,0.35); }
.prose a:hover { text-decoration-color: var(--sage-bri); }
.prose blockquote {
  margin: 1.6em 0;
  padding: 4px 0 4px 22px;
  border-left: 3px solid var(--sage);
  color: var(--text);
  font-size: 1.15rem;
  line-height: 1.55;
}
.prose .lead { font-size: 1.2rem; color: var(--muted); line-height: 1.65; }
.prose .callout {
  margin: 1.8em 0;
  padding: 22px 24px;
  border: 1px solid rgba(110,146,119,0.32);
  border-radius: 16px;
  background: radial-gradient(120% 140% at 0 0, rgba(110,146,119,0.12), transparent 60%), var(--surface);
}
.prose .callout p { margin: 0; }
.prose .callout strong { color: var(--sage-bri); }
.article-meta {
  font-family: var(--mono);
  font-size: 12px;
  color: var(--dim);
  letter-spacing: 0.03em;
  margin-top: 8px;
}
.prose hr { border: 0; border-top: 1px solid var(--line); margin: 2.4em 0; }

/* Legal / policy pages */
.page-meta {
  font-family: var(--mono);
  font-size: 12px;
  color: var(--dim);
  letter-spacing: 0.03em;
  margin-top: 14px;
}
.legal-body { padding: 8px 0 24px; }
.prose code {
  font-family: var(--mono);
  font-size: 0.86em;
  background: var(--code-bg);
  border: 1px solid var(--line);
  border-radius: 5px;
  padding: 1px 6px;
  color: var(--sage-bri);
}
.legal-table {
  width: 100%;
  border-collapse: collapse;
  margin: 0.4em 0;
  font-size: 0.95rem;
}
.legal-table th, .legal-table td {
  text-align: left;
  padding: 10px 12px;
  border: 1px solid var(--line);
  vertical-align: top;
  color: var(--text-soft);
}
.legal-table th {
  color: var(--text);
  font-weight: 650;
  background: var(--table-head-bg);
}
.legal-table code { white-space: nowrap; }

/* Resources index grid */
.res-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}
@media (max-width: 720px) { .res-grid { grid-template-columns: 1fr; } }
.res-card {
  display: flex;
  flex-direction: column;
  padding: 26px;
  border-radius: 18px;
  border: 1px solid var(--line-hi);
  background: var(--deep);
  transition: transform 0.2s var(--ease), border-color 0.2s, box-shadow 0.2s;
}
.res-card:hover { transform: translateY(-3px); border-color: rgba(110,146,119,0.4); box-shadow: 0 18px 44px -26px rgba(0,0,0,0.9); }
.res-card .kind { font-family: var(--mono); font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--sage); margin-bottom: 12px; }
.res-card h3 { margin: 0 0 10px; font-size: 1.2rem; letter-spacing: -0.02em; line-height: 1.25; }
.res-card p { margin: 0 0 18px; color: var(--muted); font-size: 14.5px; line-height: 1.6; flex: 1; }
.res-card .go { font-weight: 650; color: var(--sage-bri); font-size: 14px; }
.res-card.soon { opacity: 0.62; pointer-events: none; }
.res-card.soon .go { color: var(--dim); }

/* CTA band */
.cta-band {
  margin-top: 8px;
  padding: 44px;
  border-radius: 24px;
  border: 1px solid rgba(110,146,119,0.3);
  background:
    radial-gradient(90% 130% at 100% 0%, rgba(110,146,119,0.18) 0%, transparent 58%),
    linear-gradient(155deg, var(--elevated) 0%, var(--void) 100%);
  text-align: center;
}
@media (max-width: 640px) { .cta-band { padding: 30px 22px; } }
.cta-band h2 { margin: 0 auto 12px; max-width: 22ch; }
.cta-band p { margin: 0 auto 24px; max-width: 52ch; color: var(--muted); }
.cta-band .actions { justify-content: center; }

/* Footer link columns */
.foot-cols {
  width: min(1080px, calc(100% - 40px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.4fr repeat(3, 1fr);
  gap: 28px;
  padding: 44px 0 28px;
}
@media (max-width: 760px) { .foot-cols { grid-template-columns: 1fr 1fr; gap: 24px; } }
@media (max-width: 460px) { .foot-cols { grid-template-columns: 1fr; } }
.foot-col h4 {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--dim);
  margin: 0 0 14px;
  font-weight: 500;
}
.foot-col ul { list-style: none; margin: 0; padding: 0; }
.foot-col li { margin-bottom: 9px; }
.foot-col a { color: var(--muted); font-size: 14px; }
.foot-col a:hover { color: var(--sage-bri); }
.foot-blurb { color: var(--dim); font-size: 13.5px; line-height: 1.6; max-width: 32ch; margin-top: 14px; }

.callout-note { margin-top: 4px; font-size: 15px; }

/* ══════════════════════════════════════════
   THEME TOGGLE — always visible, right of nav
   ══════════════════════════════════════════ */
.theme-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  min-width: 42px;
  height: 40px;
  padding: 0 12px;
  border-radius: 999px;
  border: 1px solid var(--line-hi);
  background: var(--elevated);
  color: var(--text);
  flex-shrink: 0;
  z-index: 5;
  transition: color 0.15s, border-color 0.15s, background 0.15s, box-shadow 0.15s;
  box-shadow: 0 1px 0 rgba(0,0,0,0.12);
}
.theme-toggle:hover {
  color: var(--sage-bri);
  border-color: var(--sage);
  background: var(--surface);
}
.theme-toggle svg {
  width: 18px;
  height: 18px;
  display: block;
  flex-shrink: 0;
}
.theme-toggle .theme-toggle-text {
  font-size: 12px;
  font-weight: 650;
  letter-spacing: 0.02em;
  line-height: 1;
}
.theme-toggle .icon-sun { display: none; }
.theme-toggle .icon-moon { display: block; }
html[data-theme="light"] .theme-toggle .icon-sun { display: block; }
html[data-theme="light"] .theme-toggle .icon-moon { display: none; }
html[data-theme="light"] .theme-toggle .theme-toggle-text-dark { display: none; }
html[data-theme="dark"] .theme-toggle .theme-toggle-text-light,
html:not([data-theme="light"]) .theme-toggle .theme-toggle-text-light { display: none; }
html[data-theme="light"] .theme-toggle .theme-toggle-text-light { display: inline; }

/* Layout: brand | links (push right) | theme | hamburger */
.nav-in {
  display: flex;
  align-items: center;
  gap: 12px;
}
.nav-in .brand { flex: 0 0 auto; }
.nav-in .nav-links { margin-left: auto; }
.nav-in .theme-toggle { margin-left: 4px; }
.nav-in .nav-toggle { margin-left: 0; }

@media (max-width: 820px) {
  /* Keep theme control visible when menu is collapsed */
  .nav-in .theme-toggle {
    margin-left: auto;
  }
  .nav-in .nav-links {
    margin-left: 0;
  }
  .theme-toggle .theme-toggle-text { display: none; } /* icon only on small screens */
}
@media (min-width: 821px) {
  .theme-toggle .theme-toggle-text { display: inline; }
}

html[data-theme="light"] .ban {
  background: #e8ecf4;
  color: var(--dim);
}
html[data-theme="light"] .btn-fill {
  color: #fff;
  box-shadow: 0 12px 32px -12px rgba(74, 107, 83, 0.45);
}
html[data-theme="light"] .nav-cta {
  color: #fff;
}
html[data-theme="light"] .hero-light {
  opacity: 0.45;
}
html[data-theme="light"] .foot {
  background: #e8ecf4;
  border-top-color: var(--line);
}
html[data-theme="light"] .faq-item,
html[data-theme="light"] .trust-card,
html[data-theme="light"] .feat,
html[data-theme="light"] .res-card,
html[data-theme="light"] .benefit-card,
html[data-theme="light"] .flip-card,
html[data-theme="light"] .tool-card,
html[data-theme="light"] .price-card,
html[data-theme="light"] .path-panel,
html[data-theme="light"] .help-card {
  box-shadow: 0 1px 0 rgba(28, 36, 75, 0.04), 0 12px 40px -24px rgba(28, 36, 75, 0.18);
}
html[data-theme="light"] .sec-lede,
html[data-theme="light"] .page-lede,
html[data-theme="light"] .path-lead {
  color: var(--muted);
}
html[data-theme="light"] .brand img {
  filter: drop-shadow(0 1px 2px rgba(28, 36, 75, 0.12));
}
