:root {
  color-scheme: light;
}
body {
  margin: 0;
  padding: 0;
  font:
    14px -apple-system,
    BlinkMacSystemFont,
    sans-serif;
  background: #faf9f5;
  color: #141413;
}
img {
  max-width: 100%;
}
[hidden]:not([hidden='until-found' i]) {
  display: none !important;
}

/* ============ TOKENS ============ */
:root {
  color-scheme: light;
  --bg: #f5f8fa;
  --bg-elevated: #ffffff;
  --bg-sunken: #e9eef1;
  --text: #0d0d0d;
  --text-muted: #3a4744;
  --accent: #064f46; /* brand teal, darkened to clear AAA text contrast on light grounds */
  --accent-navy: #0a2a45; /* brand navy, used as-is: 13.7:1+ on light grounds */
  --ink-navy: #0a2a45; /* fixed brand navy, does not swap with theme (dark cards, skip link) */
  --partner-1: #0a2a45;
  --partner-2: #082034; /* Design Partner Program card surface */
  --border: #d9dfe4;
  --focus-ring: #0a2a45;
  --btn-text-on-brand: #0d0d0d; /* charcoal on any bright brand fill clears AAA (8.9:1+) */
  --card-shadow: 0 1px 2px rgba(10, 42, 69, 0.06), 0 8px 24px -12px rgba(10, 42, 69, 0.18);
  --g1: #0fc5b0;
  --g2: #3dd98e;
  --g3: #4fcf7e;
  --g4: #a0e57b;
  --g5: #36dac2;
  /* Deepened stops for gradient TEXT only — the bright brand hues fail contrast
  directly on light grounds, so text-clip gradients use these AAA-safe darks;
  decorative fills (buttons, icons, logo) keep the vivid --g1..--g5 brand stops. */
  --tg1: #064f46;
  --tg2: #185739;
  --max: 76rem;
  --radius-sm: 10px;
  --radius-md: 16px;
  --radius-lg: 28px;
  --ff-display: 'Manrope', 'Segoe UI', system-ui, sans-serif;
  --ff-body: 'Public Sans', 'Segoe UI', system-ui, sans-serif;
}
@media (prefers-color-scheme: dark) {
  :root:not([data-theme='light']) {
    color-scheme: dark;
    --bg: #070b10;
    --bg-elevated: #0f1b24;
    --bg-sunken: #0a2a45;
    --text: #f5f8fa;
    --text-muted: #b7c4c9;
    --accent: #3dd98e; /* clears AAA on near-black AND on the navy sunken band */
    --accent-navy: #a0e57b;
    --border: rgba(245, 248, 250, 0.14);
    --focus-ring: #3dd98e;
    --btn-text-on-brand: #0d0d0d;
    --card-shadow: 0 1px 2px rgba(0, 0, 0, 0.3), 0 12px 32px -16px rgba(0, 0, 0, 0.6);
    --tg1: #0fc5b0;
    --tg2: #4fcf7e;
    /* A lighter, cooler near-black than the page background, so the card
    reads as a raised surface instead of blending into the dark page. */
    --partner-1: #142530;
    --partner-2: #05090c;
  }
}
:root[data-theme='dark'] {
  color-scheme: dark;
  --bg: #070b10;
  --bg-elevated: #0f1b24;
  --bg-sunken: #0a2a45;
  --text: #f5f8fa;
  --text-muted: #b7c4c9;
  --accent: #3dd98e;
  --accent-navy: #a0e57b;
  --border: rgba(245, 248, 250, 0.14);
  --focus-ring: #3dd98e;
  --btn-text-on-brand: #0d0d0d;
  --card-shadow: 0 1px 2px rgba(0, 0, 0, 0.3), 0 12px 32px -16px rgba(0, 0, 0, 0.6);
  --tg1: #0fc5b0;
  --tg2: #4fcf7e;
  --partner-1: #142530;
  --partner-2: #05090c;
}

/* ============ RESET / BASE ============ */
*,
*::before,
*::after {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
@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;
  background: var(--bg);
  color: var(--text);
  font-family: var(--ff-body);
  font-size: 1.0625rem;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
h1,
h2,
h3,
h4 {
  font-family: var(--ff-display);
  font-weight: 800;
  line-height: 1.1;
  margin: 0;
  text-wrap: balance;
  letter-spacing: -0.01em;
}
p {
  margin: 0;
}
ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
a {
  color: inherit;
}
img,
svg {
  max-width: 100%;
  display: block;
}
button {
  font: inherit;
  color: inherit;
  background: none;
  border: 0;
  cursor: pointer;
}
input,
textarea,
select {
  font: inherit;
  color: inherit;
}

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

.skip-link {
  position: absolute;
  left: 1rem;
  top: -4rem;
  z-index: 200;
  background: var(--ink-navy);
  color: #fff;
  padding: 0.85rem 1.25rem;
  border-radius: var(--radius-sm);
  font-weight: 700;
  transition: top 0.15s ease;
}
.skip-link:focus {
  top: 1rem;
}

.wrap {
  max-width: var(--max);
  margin-inline: auto;
  padding-inline: clamp(1.25rem, 4vw, 2.5rem);
}
.visually-hidden {
  position: absolute !important;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

section {
  padding-block: clamp(3.5rem, 8vw, 7rem);
  scroll-margin-top: 90px;
}
.surface-elevated {
  background: var(--bg-elevated);
}
.surface-sunken {
  background: var(--bg-sunken);
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5em;
  font-family: var(--ff-display);
  font-weight: 700;
  font-size: 0.8125rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
}

h2.section-title {
  font-size: clamp(1.75rem, 3.4vw, 2.75rem);
  max-width: 34ch;
}
.section-lede {
  font-size: clamp(1.0625rem, 1.6vw, 1.25rem);
  color: var(--text-muted);
  max-width: 58ch;
  margin-top: 0.9rem;
}
.section-head {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  margin-bottom: clamp(2rem, 5vw, 3.5rem);
}

/* ============ BUTTONS ============ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6em;
  font-family: var(--ff-display);
  font-weight: 700;
  font-size: 0.95rem;
  padding: 0.9rem 1.6rem;
  border-radius: 999px;
  white-space: nowrap;
  transition:
    transform 0.15s ease,
    box-shadow 0.15s ease,
    background 0.15s ease;
  text-decoration: none;
  border: 2px solid transparent;
}
.btn-primary {
  background: linear-gradient(120deg, var(--g1), var(--g3));
  color: var(--btn-text-on-brand);
}
.btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 24px -10px rgba(15, 197, 176, 0.55);
}
.btn-ghost {
  background: transparent;
  color: var(--text);
  border-color: var(--border);
}
.btn-ghost:hover {
  border-color: var(--accent-navy);
}
.btn-block {
  width: 100%;
}

/* ============ HEADER ============ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--bg);
  border-bottom: 1px solid var(--border);
}
/* Frosted-glass effect lives on a ::before, not on .site-header itself: a
backdrop-filter/filter on an element makes it a containing block for its
position:fixed descendants, which would trap the fixed mobile nav panel
(a child of this header) inside the header's own small box. Painting the
blur on a generated pseudo-element sidesteps that entirely. */
.site-header::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: -1;
  background: color-mix(in srgb, var(--bg) 88%, transparent);
  backdrop-filter: saturate(160%) blur(14px);
}
.site-header .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding-block: 0.9rem;
  position: relative;
}
.brand {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  text-decoration: none;
  flex: none;
}
.brand .logo-mark {
  width: 34px;
  height: 34px;
}
.brand-word {
  font-family: var(--ff-display);
  font-weight: 800;
  font-size: 1.25rem;
  color: var(--text);
}

.primary-nav {
  display: flex;
}
.primary-nav ul {
  display: flex;
  gap: clamp(0.9rem, 1.6vw, 1.6rem);
  align-items: center;
}
.primary-nav a {
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--text-muted);
  padding: 0.4rem 0.2rem;
  border-bottom: 2px solid transparent;
}
.primary-nav a:hover,
.primary-nav a[aria-current='true'] {
  color: var(--text);
  border-color: var(--accent);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  flex: none;
}
.theme-toggle {
  width: 42px;
  height: 42px;
  border-radius: 999px;
  border: 1px solid var(--border);
  display: grid;
  place-items: center;
  flex: none;
}
.theme-toggle:hover {
  border-color: var(--accent-navy);
}
.theme-toggle img {
  width: 20px;
  height: 20px;
}
.icon-sun {
  display: var(--show-sun, block);
}
.icon-moon {
  display: var(--show-moon, none);
}
:root[data-theme='dark'] {
  --show-sun: none;
  --show-moon: block;
}
@media (prefers-color-scheme: dark) {
  :root:not([data-theme='light']) {
    --show-sun: none;
    --show-moon: block;
  }
}
:root[data-theme='light'] {
  --show-sun: block;
  --show-moon: none;
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border-radius: 999px;
  border: 1px solid var(--border);
  place-items: center;
}
.nav-toggle svg {
  width: 20px;
  height: 20px;
}

@media (max-width: 900px) {
  .primary-nav {
    position: fixed;
    inset: 64px 0 0 0;
    background: var(--bg);
    padding: 1.5rem clamp(1.25rem, 4vw, 2.5rem);
    transform: translateY(-8px);
    opacity: 0;
    pointer-events: none;
    transition:
      opacity 0.18s ease,
      transform 0.18s ease;
    overflow-y: auto;
  }
  .primary-nav ul {
    flex-direction: column;
    align-items: stretch;
    gap: 0;
  }
  .primary-nav a {
    display: block;
    padding: 0.9rem 0;
    border-bottom: 1px solid var(--border);
    font-size: 1.05rem;
  }
  body[data-nav-open='true'] .primary-nav {
    opacity: 1;
    transform: none;
    pointer-events: auto;
  }
  .nav-toggle {
    display: grid;
  }
  .header-cta {
    display: none;
  }
}

/* ============ HERO ============ */
.hero {
  padding-block: clamp(3rem, 9vw, 6rem) clamp(3.5rem, 8vw, 6rem);
  position: relative;
  overflow: clip;
}
.hero-glow {
  position: absolute;
  inset: -20% -10% auto auto;
  width: 60vw;
  max-width: 760px;
  aspect-ratio: 1;
  background: radial-gradient(
    circle,
    color-mix(in srgb, var(--g1) 30%, transparent),
    transparent 70%
  );
  filter: blur(10px);
  pointer-events: none;
  z-index: 0;
}
.hero .wrap {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.1fr 0.8fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}
.hero-copy h1 {
  font-size: clamp(2.4rem, 5.4vw, 4.1rem);
}
.hero-copy h1 .hl {
  background: linear-gradient(120deg, var(--tg1), var(--tg2));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.hero-sub {
  font-size: clamp(1.05rem, 1.7vw, 1.3rem);
  color: var(--text-muted);
  margin-top: 1.25rem;
  max-width: 46ch;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-top: 2rem;
}
.hero-meta {
  margin-top: 2.25rem;
  display: flex;
  gap: 1.75rem;
  flex-wrap: wrap;
}
.hero-meta div {
  font-size: 0.85rem;
  color: var(--text-muted);
}
.hero-meta strong {
  display: block;
  font-family: var(--ff-display);
  font-size: 1.05rem;
  color: var(--text);
}

.hero-visual {
  position: relative;
  display: grid;
  place-items: center;
}
.hero-mark {
  width: min(320px, 70vw);
  filter: drop-shadow(0 30px 60px rgba(15, 197, 176, 0.25));
}

@media (max-width: 860px) {
  .hero .wrap {
    grid-template-columns: 1fr;
  }
  .hero-visual {
    order: -1;
  }
  .hero-mark {
    width: min(200px, 45vw);
  }
}

/* ============ QUOTE ============ */
.quote-band {
  text-align: center;
}
.quote-band blockquote {
  font-family: var(--ff-display);
  font-weight: 800;
  font-size: clamp(1.7rem, 4vw, 3rem);
  max-width: 20ch;
  margin-inline: auto;
  line-height: 1.2;
}
.quote-band blockquote::before {
  content: '\201C';
}
.quote-band blockquote::after {
  content: '\201D';
}
.quote-band cite {
  display: block;
  margin-top: 1.25rem;
  font-style: normal;
  color: var(--text-muted);
  font-size: 1rem;
}

/* ============ TWO COL COMPARE ============ */
.compare-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(1.25rem, 3vw, 2rem);
}
.compare-card {
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: clamp(1.5rem, 3vw, 2.25rem);
}
.compare-card h3 {
  font-size: 1.15rem;
}
.compare-card.miss {
  border-color: color-mix(in srgb, var(--g1) 35%, var(--border));
  box-shadow: 0 0 0 1px color-mix(in srgb, var(--g1) 18%, transparent) inset;
}
.compare-card ul {
  margin-top: 1.1rem;
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}
.compare-card li {
  color: var(--text-muted);
  padding-left: 1.2rem;
  position: relative;
}
.compare-card li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--text-muted);
}
.compare-card.miss li {
  color: var(--text);
  font-weight: 600;
}
.compare-card.miss li::before {
  background: linear-gradient(120deg, var(--g1), var(--g4));
}

/* ============ QUADRANT ============ */
.quadrant-wrap {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.5rem 1rem;
}
.quadrant-axis-y {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding-block: 1.5rem;
}
.quadrant-axis-y span {
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  font-family: var(--ff-display);
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
}
.quadrant-main {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.quadrant-axis-x {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
  text-align: center;
  font-family: var(--ff-display);
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
}
.quadrant-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 0.9rem;
  min-height: 420px;
}
.qcell {
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
  padding: 1.35rem;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  background: var(--bg-elevated);
}
.qcell h4 {
  font-family: var(--ff-display);
  font-size: 1.05rem;
  margin-bottom: 0.4rem;
}
.qcell p {
  color: var(--text-muted);
  font-size: 0.9rem;
}
.qcell.empty {
  background: linear-gradient(
    155deg,
    color-mix(in srgb, var(--g1) 16%, var(--bg)),
    color-mix(in srgb, var(--g4) 12%, var(--bg))
  );
  border: 1.5px solid var(--g1);
  position: relative;
  /* This cell stacks 3 elements (tag, h4, p) instead of the usual 2, so it
  flows from the top rather than bottom-anchoring like its siblings —
  bottom-anchoring plus an absolutely-positioned tag was overlapping the
  heading whenever text wrapped to more lines on a narrow screen. */
  justify-content: flex-start;
  gap: 0.5rem;
}
.qcell.empty .tag {
  font-family: var(--ff-display);
  font-weight: 800;
  font-size: 1.35rem;
  line-height: 1;
}
.qcell.empty .tag .g {
  background: linear-gradient(120deg, var(--tg1), var(--tg2));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.qcell.empty p {
  color: var(--text);
  font-weight: 600;
}
.quadrant-note {
  margin-top: 1.5rem;
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 60ch;
}
.quadrant-note strong {
  color: var(--text);
}

@media (max-width: 760px) {
  .quadrant-grid {
    min-height: 0;
  }
  .qcell {
    min-height: 150px;
  }
}

/* ============ PRODUCT INTRO ============ */
.product-intro {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}
.cue-mark {
  width: min(220px, 60vw);
  margin-inline: auto;
}
.product-intro blockquote {
  font-family: var(--ff-display);
  font-weight: 700;
  font-size: clamp(1.25rem, 2.4vw, 1.65rem);
  color: var(--text);
  margin-top: 1rem;
  padding-left: 1.1rem;
  border-left: 3px solid var(--g1);
}

/* ============ FLOW (Capture/Act/Understand) ============ */
/* 5 grid children (3 cards + 2 arrows) need 5 columns, not 3 — otherwise the
grid wraps mid-row and cards land on two uneven lines. */
.flow {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  gap: 0.75rem;
  align-items: stretch;
}
.flow-step {
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: clamp(1.5rem, 3vw, 2.25rem);
  position: relative;
}
.flow-num {
  font-family: var(--ff-display);
  font-weight: 800;
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  color: var(--accent);
}
.flow-step h3 {
  font-size: 1.25rem;
  margin-top: 0.5rem;
}
.flow-step .who {
  color: var(--text-muted);
  font-size: 0.85rem;
  font-weight: 600;
  margin-top: 0.15rem;
}
.flow-step ul {
  margin-top: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}
.flow-step li {
  font-size: 0.92rem;
  color: var(--text-muted);
  padding-left: 1.1rem;
  position: relative;
}
.flow-step li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.5em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--g1);
}
.flow-arrow {
  display: grid;
  place-items: center;
  color: var(--text-muted);
  z-index: 2;
}
.flow-arrow svg {
  width: 22px;
  height: 22px;
}

@media (max-width: 820px) {
  .flow {
    grid-template-columns: 1fr;
  }
  .flow-arrow {
    transform: rotate(90deg);
    padding-block: 0.25rem;
  }
}

/* ============ AI vs HUMAN ============ */
.ai-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(1.25rem, 3vw, 2rem);
}
.ai-card {
  border-radius: var(--radius-lg);
  padding: clamp(1.5rem, 3vw, 2.25rem);
  border: 1px solid var(--border);
}
.ai-card.synthetic {
  background: var(--bg-elevated);
}
.ai-card.human {
  background: linear-gradient(
    160deg,
    color-mix(in srgb, var(--g1) 14%, var(--bg-elevated)),
    color-mix(in srgb, var(--g4) 10%, var(--bg-elevated))
  );
  border-color: var(--g1);
}
.ai-card .tag {
  font-family: var(--ff-display);
  font-weight: 700;
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.ai-card.synthetic .tag {
  color: var(--text-muted);
}
.ai-card.human .tag {
  color: var(--accent);
}
.ai-card h3 {
  font-size: 1.3rem;
  margin-top: 0.5rem;
}
.ai-card ul {
  margin-top: 1.1rem;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}
.ai-card li {
  color: var(--text-muted);
  padding-left: 1.2rem;
  position: relative;
  font-size: 0.95rem;
}
.ai-card.human li {
  color: var(--text);
  font-weight: 500;
}
.ai-card li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--text-muted);
}
.ai-card.human li::before {
  background: linear-gradient(120deg, var(--g1), var(--g4));
}
.ai-closer {
  text-align: center;
  margin-top: 2.5rem;
  font-family: var(--ff-display);
  font-weight: 700;
  font-size: clamp(1.15rem, 2vw, 1.5rem);
  max-width: 44ch;
  margin-inline: auto;
}

@media (max-width: 760px) {
  .compare-grid,
  .ai-grid,
  .product-intro {
    grid-template-columns: 1fr;
  }
}

/* ============ LMS BYLINE (Product Intro) ============ */
/* Real LMS logos, each on a fixed light tile so brand colors stay legible
and on-brand in both light and dark theme -- the tile does NOT swap with
--bg-elevated, since several of these logos use dark text that would
disappear against the dark-theme surface color. */
.lms-byline {
  margin-top: 2.25rem;
  padding-top: 1.75rem;
  border-top: 1px solid var(--border);
}
.lms-byline .eyebrow {
  display: block;
  margin-bottom: 0.85rem;
}
.logo-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.85rem;
}
.logo-tile {
  background: #fff;
  border: 1px solid #e3e7ea;
  border-radius: 14px;
  padding: 0.55rem 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 56px;
  width: 128px;
  box-shadow: 0 1px 2px rgba(10, 42, 69, 0.05);
}
.logo-tile img {
  max-height: 34px;
  max-width: 100%;
  width: auto;
  height: auto;
  display: block;
}
.logo-more {
  font-family: var(--ff-display);
  font-weight: 700;
  font-size: 0.85rem;
  color: var(--text-muted);
  white-space: nowrap;
  padding-inline: 0.25rem;
}

/* ============ ROADMAP ============ */
.roadmap-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(1.25rem, 3vw, 1.75rem);
}
.roadmap-card {
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: clamp(1.5rem, 3vw, 2rem);
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.roadmap-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--g1), var(--g4));
  display: grid;
  place-items: center;
  flex: none;
}
.roadmap-icon svg {
  width: 22px;
  height: 22px;
  color: #0d0d0d;
}
.roadmap-card h3 {
  font-size: 1.2rem;
}
.roadmap-card .kicker {
  font-size: 0.85rem;
  color: var(--accent);
  font-weight: 700;
}
.roadmap-card ul {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  margin-top: 0.25rem;
}
.roadmap-card li {
  font-size: 0.9rem;
  color: var(--text-muted);
  padding-left: 1.1rem;
  position: relative;
}
.roadmap-card li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.5em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--g1);
}
@media (max-width: 900px) {
  .roadmap-grid {
    grid-template-columns: 1fr;
  }
}

/* ============ TEAM ============ */
.team-layout {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}
.team-copy ul {
  margin-top: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.team-copy li {
  padding-left: 1.4rem;
  position: relative;
  color: var(--text-muted);
}
.team-copy li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: linear-gradient(120deg, var(--g1), var(--g4));
}
.inline-link {
  color: var(--accent);
  font-weight: 700;
  text-decoration: underline;
  text-decoration-color: color-mix(in srgb, var(--accent) 45%, transparent);
  text-underline-offset: 3px;
}
.inline-link:hover {
  text-decoration-color: currentColor;
}
.stat-tiles {
  display: grid;
  gap: 1.25rem;
}
.stat-tile {
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.75rem 2rem;
}
.stat-tile .num {
  font-family: var(--ff-display);
  font-weight: 800;
  font-size: clamp(2.2rem, 4vw, 3rem);
  font-variant-numeric: tabular-nums;
  background: linear-gradient(120deg, var(--tg1), var(--tg2));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.stat-tile .label {
  color: var(--text-muted);
  margin-top: 0.25rem;
  font-weight: 600;
}
@media (max-width: 820px) {
  .team-layout {
    grid-template-columns: 1fr;
  }
}

/* ============ PARTNER PROGRAM TOAST ============ */
/* Replaces the old in-page section: a self-dismissing, bottom-right
invitation card that reflects the program's limited-time nature without
occupying permanent scroll real estate. Non-modal — the page behind it
stays fully usable and nothing is focus-trapped. */
.partner-toast {
  position: fixed;
  z-index: 150;
  right: clamp(1rem, 3vw, 1.75rem);
  bottom: clamp(1rem, 3vw, 1.75rem);
  width: min(360px, calc(100vw - 2rem));
  background: linear-gradient(155deg, var(--partner-1), var(--partner-2));
  box-shadow:
    0 24px 60px -20px rgba(0, 0, 0, 0.45),
    0 4px 16px -6px rgba(0, 0, 0, 0.3);
  border-radius: var(--radius-lg);
  padding: 1.5rem 1.6rem 1.6rem;
  color: #f5f8fa;
  opacity: 0;
  transform: translateY(16px) scale(0.98);
  pointer-events: none;
  transition:
    opacity 0.35s ease,
    transform 0.35s ease;
}
.partner-toast.show {
  opacity: 1;
  transform: none;
  pointer-events: auto;
}
@media (prefers-reduced-motion: reduce) {
  .partner-toast {
    transition: none;
  }
}
.partner-toast .eyebrow {
  color: var(--g4);
  font-size: 0.75rem;
}
.partner-toast-title {
  color: #fff;
  font-size: 1.3rem;
  margin-top: 0.6rem;
}
.partner-toast-copy {
  color: #cbd8d4;
  font-size: 0.9rem;
  margin-top: 0.6rem;
  line-height: 1.55;
}
.partner-toast .btn {
  margin-top: 1.15rem;
}
.partner-toast-close {
  position: absolute;
  top: 0.85rem;
  right: 0.85rem;
  width: 32px;
  height: 32px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  color: #cbd8d4;
  flex: none;
}
.partner-toast-close:hover {
  color: #fff;
  background: rgba(245, 248, 250, 0.12);
}
.partner-toast-close svg {
  width: 16px;
  height: 16px;
}
@media (max-width: 480px) {
  .partner-toast {
    left: 1rem;
    right: 1rem;
    width: auto;
  }
}

/* ============ CONTACT ============ */
.contact-layout {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: clamp(2rem, 5vw, 4rem);
}
.contact-info h2 {
  font-size: clamp(1.75rem, 3.4vw, 2.5rem);
}
.contact-channels {
  margin-top: 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
}
.contact-channel {
  display: flex;
  gap: 0.9rem;
  align-items: flex-start;
}
.contact-channel .ico {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: var(--bg-sunken);
  border: 1px solid var(--border);
  display: grid;
  place-items: center;
  flex: none;
}
.contact-channel .ico svg {
  width: 19px;
  height: 19px;
  color: var(--accent);
}
.contact-channel a {
  text-decoration: underline;
  text-decoration-color: var(--border);
  text-underline-offset: 3px;
  font-weight: 600;
}
.contact-channel a:hover {
  text-decoration-color: currentColor;
}
.contact-channel p {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-top: 0.15rem;
}

.contact-form {
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: clamp(1.5rem, 3vw, 2.25rem);
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.field {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  margin-top: 1.1rem;
}
.form-row .field {
  margin-top: 0;
}
.field label {
  font-size: 0.85rem;
  font-weight: 700;
}
.field .req {
  color: var(--accent);
  font-weight: 700;
}
.field input,
.field select,
.field textarea {
  background: var(--bg);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 0.8rem 0.9rem;
  color: var(--text);
  width: 100%;
}
.field input:focus-visible,
.field select:focus-visible,
.field textarea:focus-visible {
  outline: 3px solid var(--focus-ring);
  outline-offset: 1px;
  border-color: var(--focus-ring);
}
.field textarea {
  resize: vertical;
  min-height: 6.5rem;
}
.field .hint {
  font-size: 0.8rem;
  color: var(--text-muted);
}
.field .error {
  font-size: 0.82rem;
  color: var(--err);
  font-weight: 700;
  display: none;
  align-items: center;
  gap: 0.35rem;
}
:root {
  --err: #9a1b1b;
}
:root[data-theme='dark'] {
  --err: #ff9b9b;
}
@media (prefers-color-scheme: dark) {
  :root:not([data-theme='light']) {
    --err: #ff9b9b;
  }
}
.field.invalid input,
.field.invalid select,
.field.invalid textarea {
  border-color: var(--err);
}
.field.invalid .error {
  display: flex;
}
fieldset.field {
  border: 0;
  margin: 1.1rem 0 0;
  padding: 0;
  min-width: 0;
}
fieldset.field legend {
  font-size: 0.85rem;
  font-weight: 700;
  padding: 0;
}
.radio-group {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  margin-top: 0.6rem;
}
.radio-option {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  font-weight: 500;
  font-size: 0.95rem;
  cursor: pointer;
}
.radio-option input {
  width: 18px;
  height: 18px;
  accent-color: var(--accent);
  flex: none;
}
fieldset.invalid .radio-option {
  color: var(--err);
}
.form-foot {
  margin-top: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.form-status {
  font-size: 0.9rem;
  font-weight: 700;
  display: none;
  align-items: center;
  gap: 0.5rem;
}
.form-status.show {
  display: flex;
}
.form-status.ok {
  color: var(--accent);
}
.form-status.bad {
  color: var(--err);
}
.form-disclaimer {
  font-size: 0.78rem;
  color: var(--text-muted);
}

@media (max-width: 900px) {
  .contact-layout {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 560px) {
  .form-row {
    grid-template-columns: 1fr;
  }
}

/* ============ FOOTER ============ */
.site-footer {
  border-top: 1px solid var(--border);
  padding-block: clamp(2.5rem, 5vw, 3.5rem);
}
.footer-top {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 2.5rem;
}
.footer-brand .brand {
  margin-bottom: 0.85rem;
}
.footer-brand p {
  color: var(--text-muted);
  max-width: 32ch;
  font-size: 0.92rem;
}
.footer-cols {
  display: flex;
  gap: clamp(2rem, 5vw, 4rem);
  flex-wrap: wrap;
}
.footer-col h2 {
  font-family: var(--ff-display);
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
  font-weight: 700;
}
.footer-col ul {
  margin-top: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}
.footer-col a {
  text-decoration: none;
  color: var(--text);
  font-size: 0.92rem;
  font-weight: 500;
}
.footer-col a:hover {
  color: var(--accent);
}
.footer-bottom {
  margin-top: clamp(2.5rem, 5vw, 3.5rem);
  padding-top: 1.75rem;
  border-top: 1px solid var(--border);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 1rem;
}
.footer-bottom p {
  font-size: 0.85rem;
  color: var(--text-muted);
}
.footer-bottom .a11y-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.8rem;
  color: var(--text-muted);
}
.footer-bottom .a11y-chip svg {
  width: 15px;
  height: 15px;
  color: var(--accent);
}

/* ============ REVEAL ============ */
.reveal {
  opacity: 1;
  transform: none;
}
@media (prefers-reduced-motion: no-preference) {
  .reveal[data-anim] {
    opacity: 0;
    transform: translateY(14px);
    transition:
      opacity 0.55s ease,
      transform 0.55s ease;
  }
  .reveal[data-anim].in {
    opacity: 1;
    transform: none;
  }
}
