/* ════════════════════════════════════════════════════════
   Talara — talent acquisition at any scale.
   Sage-tinted light palette. 100vh per section.
   ════════════════════════════════════════════════════════ */

:root {
  /* Light sage palette (not beige) */
  --paper: #F1F5EE;
  --paper-deep: #E7EDE3;
  --paper-lift: #FFFFFF;

  --ink: #0D1A13;
  --ink-soft: #1E2A23;
  --muted: #5C6B62;
  --muted-soft: #8B978F;

  --rule: rgba(13, 26, 19, 0.11);
  --rule-soft: rgba(13, 26, 19, 0.055);

  --accent: #3C6B45;
  --accent-deep: #29502F;
  --accent-soft: #C8D9CB;
  --accent-halo: rgba(60, 107, 69, 0.12);

  --dark-bg: #0D1A13;
  --dark-bg-lift: #152620;
  --dark-ink: #F1F5EE;
  --dark-muted: rgba(241, 245, 238, 0.58);
  --dark-rule: rgba(241, 245, 238, 0.11);

  --pad-x: clamp(1.5rem, 5vw, 5.5rem);
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-back: cubic-bezier(0.34, 1.56, 0.64, 1);
  --ease-snap: cubic-bezier(0.7, 0, 0.3, 1);
}

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

html { scroll-behavior: smooth; }

body {
  background: var(--paper);
  color: var(--ink);
  font-family: "Montserrat", -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 16px;
  line-height: 1.65;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

::selection { background: var(--accent); color: var(--paper); }

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; font: inherit; }

.serif { font-family: "Fraunces", Georgia, serif; font-feature-settings: "ss01", "ss02"; }
.mono  { font-family: "JetBrains Mono", ui-monospace, monospace; }

/* ─── Scroll snap ──────────────────────────────── */

.snap {
  scroll-snap-type: y proximity;
}

.snap-item {
  scroll-snap-align: start;
  scroll-snap-stop: always;
}

/* ─── Eyebrow ──────────────────────────────────── */

.eyebrow {
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted);
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
}
.eyebrow::before {
  content: "";
  width: 22px;
  height: 1px;
  background: currentColor;
  flex-shrink: 0;
}
.eyebrow--on-dark { color: var(--dark-muted); }

/* ─── Buttons ──────────────────────────────────── */

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.625rem;
  font-family: "Montserrat", sans-serif;
  font-size: 13.5px;
  font-weight: 600;
  letter-spacing: 0.01em;
  border-radius: 999px;
  cursor: pointer;
  white-space: nowrap;
  border: 1.5px solid transparent;
  padding: 0.85rem 1.6rem;
  transition: background 0.4s var(--ease), color 0.4s var(--ease), border-color 0.4s var(--ease), transform 0.5s var(--ease), box-shadow 0.45s var(--ease);
  will-change: transform;
  position: relative;
}

.btn--primary {
  background: var(--ink);
  color: var(--paper);
  border-color: var(--ink);
  box-shadow: 0 1px 0 rgba(0,0,0,0.05);
}
.btn--primary:hover {
  background: var(--accent-deep);
  border-color: var(--accent-deep);
  box-shadow: 0 6px 20px rgba(41, 80, 47, 0.2);
}

.btn--ghost {
  background: transparent;
  color: var(--ink-soft);
  border-color: var(--rule);
}
.btn--ghost:hover {
  border-color: var(--ink);
  color: var(--ink);
  background: rgba(13, 26, 19, 0.025);
}

.btn--ghost-light {
  background: transparent;
  color: var(--paper);
  border-color: rgba(241, 245, 238, 0.35);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}
.btn--ghost-light:hover {
  border-color: rgba(241, 245, 238, 0.95);
  background: rgba(241, 245, 238, 0.1);
}

.btn--lg {
  padding: 1.1rem 2rem;
  font-size: 14.5px;
}

.btn-arrow {
  display: inline-block;
  transition: transform 0.45s var(--ease);
}
.btn:hover .btn-arrow { transform: translateX(5px); }

/* ─── Nav ── full-width → glass pill on scroll ── */

.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 80;
  height: 80px;
  padding: 0 32px;
  pointer-events: none;
  overflow: visible;
}

.nav-pill {
  pointer-events: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 56px;
  max-width: 1280px;
  margin: 12px auto;
  padding: 0 28px;
  border-radius: 0;
  background: transparent;
  border: 1px solid transparent;
  position: relative;
  gap: 2rem;
  transition:
    max-width 1.1s var(--ease),
    background .9s var(--ease),
    border-color .9s ease,
    border-radius 1.1s var(--ease),
    box-shadow .9s ease,
    padding .9s var(--ease);
}

/* Scrolled — liquid glass pill */
.nav.scrolled .nav-pill {
  max-width: 680px;
  background: rgba(241, 245, 238, 0.08);
  border: none;
  border-radius: 100px;
  padding: 0 22px;
  overflow: hidden;
  -webkit-backdrop-filter: blur(8px) saturate(1.4) brightness(1.04);
  backdrop-filter: blur(8px) saturate(1.4) brightness(1.04);
  box-shadow:
    0 1px 0 rgba(255,255,255,.08) inset,
    0 -1px 0 rgba(0,0,0,.14) inset,
    0 6px 18px rgba(0,0,0,.22),
    0 2px 4px rgba(0,0,0,.12);
}

/* Glass edge highlight */
.nav.scrolled .nav-pill::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
  border-radius: inherit;
  box-shadow:
    inset 0 0 0 1.5px rgba(241,245,238,.3),
    inset 0 1px 1px rgba(241,245,238,.25),
    inset 0 -1px 1px rgba(0,0,0,.1),
    0 4px 24px rgba(0,0,0,.08);
  pointer-events: none;
}

.nav-logo {
  display: inline-flex;
  align-items: center;
  color: var(--paper);
  position: relative;
  z-index: 2;
  transition: color .4s var(--ease);
}
.nav-logo .wordmark {
  height: 13px;
  width: auto;
  color: currentColor;
  display: block;
  overflow: visible;
}
.wordmark--lg { height: 18px; }

.nav-links {
  display: flex;
  gap: 28px;
  position: relative;
  z-index: 2;
}
.nav-links a {
  font-family: "Montserrat", sans-serif;
  font-size: 13px;
  font-weight: 500;
  color: rgba(241,245,238,.72);
  letter-spacing: 0.02em;
  transition: color .35s var(--ease);
}
.nav-links a:hover { color: var(--paper); }

.nav-btn {
  font-family: "Montserrat", sans-serif;
  font-size: 12.5px;
  font-weight: 600;
  padding: 8px 18px;
  border-radius: 100px;
  background: rgba(241,245,238,.15);
  color: var(--paper);
  border: 1px solid rgba(241,245,238,.22);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  letter-spacing: 0.02em;
  transition: all .35s var(--ease);
  cursor: pointer;
  position: relative;
  z-index: 2;
  white-space: nowrap;
}
.nav-btn:hover { background: rgba(241,245,238,.25); }

.nav.scrolled .nav-btn {
  background: rgba(241,245,238,.92);
  color: var(--ink);
  border-color: rgba(241,245,238,.4);
  backdrop-filter: none;
}
.nav.scrolled .nav-btn:hover {
  background: var(--paper);
  box-shadow: 0 2px 16px rgba(0,0,0,.08);
}

/* On-light — dark text for light bg sections */
.nav.on-light .nav-logo { color: var(--ink); }
.nav.on-light .nav-links a { color: rgba(13,26,19,.72); }
.nav.on-light .nav-links a:hover { color: var(--ink); }
.nav.on-light .nav-btn {
  background: rgba(13,26,19,.08);
  color: var(--ink);
  border-color: rgba(13,26,19,.14);
}
.nav.on-light .nav-btn:hover { background: rgba(13,26,19,.16); }

.nav.scrolled.on-light .nav-pill {
  background: rgba(255,255,255,.55);
}
.nav.scrolled.on-light .nav-pill::before {
  box-shadow:
    inset 0 0 0 1.5px rgba(13,26,19,.08),
    inset 0 1px 1px rgba(255,255,255,.6),
    inset 0 -1px 1px rgba(13,26,19,.04),
    0 4px 24px rgba(13,26,19,.06);
  opacity: .85;
}
.nav.scrolled.on-light .nav-btn {
  background: var(--ink);
  color: var(--paper);
  border-color: transparent;
}
.nav.scrolled.on-light .nav-btn:hover {
  background: var(--accent-deep);
  box-shadow: 0 6px 18px rgba(41,80,47,.25);
}

/* Hamburger */
.nav-hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 36px; height: 36px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  border-radius: 8px;
  transition: background .2s;
  position: relative;
  z-index: 2;
}
.nav-hamburger:hover { background: rgba(241,245,238,.1); }
.nav-hamburger span {
  display: block;
  width: 20px;
  height: 1.5px;
  background: rgba(241,245,238,.9);
  border-radius: 2px;
  transition: transform .35s var(--ease), opacity .25s ease, background .3s;
  transform-origin: center;
}
.nav.on-light .nav-hamburger span { background: var(--ink); }
.nav-hamburger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* Mobile drawer */
.mobile-menu {
  display: none;
  position: absolute;
  top: calc(100% + 8px);
  left: 16px; right: 16px;
  background: rgba(13,26,19,.96);
  backdrop-filter: blur(20px) saturate(1.4);
  -webkit-backdrop-filter: blur(20px) saturate(1.4);
  border: 1px solid rgba(241,245,238,.1);
  border-radius: 20px;
  padding: 12px;
  flex-direction: column;
  gap: 2px;
  box-shadow: 0 16px 48px rgba(0,0,0,.3);
  opacity: 0;
  transform: translateY(-8px);
  transition: opacity .3s var(--ease), transform .3s var(--ease);
  pointer-events: none;
  z-index: 5;
}
.mobile-menu.open {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
.mobile-link {
  font-family: "Montserrat", sans-serif;
  font-size: 15px;
  font-weight: 500;
  color: rgba(241,245,238,.78);
  padding: 14px 20px;
  border-radius: 12px;
  transition: background .2s, color .2s;
  letter-spacing: .02em;
}
.mobile-link:hover { background: rgba(241,245,238,.07); color: var(--paper); }
.mobile-link-cta {
  margin-top: 6px;
  background: var(--paper);
  color: var(--ink) !important;
  text-align: center;
  font-weight: 600;
}
.mobile-link-cta:hover { background: #fff !important; }

@media (max-width: 780px) {
  .nav-links { display: none; }
  .nav-btn-desktop { display: none; }
  .nav-hamburger { display: flex; }
  .mobile-menu { display: flex; }
  .nav { padding: 0 16px; }
  .nav-pill { padding: 0 18px; }
}

/* ─── Section shell ────────────────────────────── */

.section-inner {
  max-width: 1480px;
  margin: 0 auto;
  width: 100%;
  position: relative;
}

section.snap-item {
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  align-items: center;
  padding: 6rem var(--pad-x) 4rem;
  position: relative;
  overflow: hidden;
}

/* ─── Hero ─────────────────────────────────────── */

.hero {
  color: var(--paper);
  padding: 0;
  align-items: stretch;
  background: var(--dark-bg);
}

.hero__video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  transform: scale(1.02);
}

.hero__scrim {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(13, 26, 19, 0.55) 0%, rgba(13, 26, 19, 0.25) 30%, rgba(13, 26, 19, 0.45) 65%, rgba(13, 26, 19, 0.85) 100%),
    linear-gradient(110deg, rgba(13, 26, 19, 0.4) 0%, rgba(13, 26, 19, 0) 55%);
}

.hero__grain {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  opacity: 0.035;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='200' height='200'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3' stitchTiles='stitch'/></filter><rect width='200' height='200' filter='url(%23n)'/></svg>");
}

.hero__content {
  position: relative;
  z-index: 3;
  max-width: 1480px;
  margin: 0 auto;
  padding: 11vh var(--pad-x) 14vh;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  flex: 1;
  gap: 1.75rem;
}

[data-anim] {
  opacity: 0;
  transform: translateY(22px);
  animation: fadeUp 1.1s var(--ease) forwards;
}
[data-anim="1"] { animation-delay: 0.15s; }
[data-anim="2"] { animation-delay: 0.35s; }
[data-anim="3"] { animation-delay: 0.55s; }
[data-anim="4"] { animation-delay: 0.9s; }
[data-anim="5"] { animation-delay: 1.1s; }
[data-anim="6"] { animation-delay: 1.4s; }
[data-anim="7"] { animation-delay: 1.5s; }

@keyframes fadeUp {
  to { opacity: 1; transform: none; }
}

.hero__h1 {
  line-height: 0.97;
  letter-spacing: -0.025em;
  max-width: 22ch;
}

.h1-crisp {
  display: block;
  font-family: "Fraunces", serif;
  font-weight: 300;
  font-size: clamp(2.25rem, 4.5vw, 5rem);
  color: var(--paper);
  font-variation-settings: "opsz" 144, "SOFT" 0;
  text-shadow: 0 2px 24px rgba(0, 0, 0, 0.2);
}

.h1-soft {
  display: block;
  font-family: "Fraunces", serif;
  font-weight: 260;
  font-style: italic;
  font-size: clamp(2.25rem, 4.5vw, 5rem);
  color: rgba(241, 245, 238, 0.78);
  font-variation-settings: "opsz" 9, "SOFT" 100;
  margin-top: 0.1em;
  padding-left: 0.06em;
  text-shadow: 0 2px 24px rgba(0, 0, 0, 0.2);
}

.hero__lede {
  max-width: 48ch;
  font-size: clamp(15px, 1.15vw, 17px);
  font-weight: 400;
  color: rgba(241, 245, 238, 0.88);
  line-height: 1.6;
  text-shadow: 0 1px 20px rgba(0, 0, 0, 0.25);
}

.hero__actions {
  display: flex;
  gap: 0.875rem;
  flex-wrap: wrap;
  align-items: center;
  margin-top: 0.75rem;
}

.hero__actions .btn--primary {
  background: var(--paper);
  color: var(--ink);
  border-color: var(--paper);
}
.hero__actions .btn--primary:hover {
  background: var(--paper-lift);
  border-color: var(--paper-lift);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.hero__meta {
  position: absolute;
  z-index: 3;
  bottom: 2.5rem;
  left: var(--pad-x);
  right: var(--pad-x);
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 2rem;
  font-family: "JetBrains Mono", monospace;
  font-size: 11px;
  color: rgba(241, 245, 238, 0.55);
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.hero__scroll {
  display: inline-flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.75rem;
  color: rgba(241, 245, 238, 0.75);
  font-size: 10.5px;
  letter-spacing: 0.22em;
}
.hero__scroll-line {
  display: block;
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, transparent, rgba(241, 245, 238, 0.7));
  position: relative;
  overflow: hidden;
}
.hero__scroll-line::after {
  content: "";
  position: absolute;
  top: -50%;
  left: 0;
  width: 1px;
  height: 50%;
  background: var(--paper);
  animation: scrollDot 2.2s var(--ease) infinite;
}
@keyframes scrollDot {
  0% { top: -50%; }
  100% { top: 110%; }
}

/* ─── Compliance ───────────────────────────────── */

.compliance {
  background: var(--paper);
  color: var(--ink);
}

.compliance__inner {
  display: grid;
  gap: clamp(2.5rem, 5vh, 4rem);
}

.compliance__head {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  align-items: stretch;
}
@media (min-width: 960px) {
  .compliance__head {
    grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
    column-gap: clamp(3rem, 5vw, 5rem);
    align-items: stretch;
  }
}

.compliance__head-copy {
  display: grid;
  gap: 1.5rem;
  align-content: center;
  max-width: none;
}

.compliance__headline {
  font-family: "Fraunces", serif;
  font-weight: 300;
  font-size: clamp(2.25rem, 3.6vw, 3.5rem);
  line-height: 1.02;
  letter-spacing: -0.02em;
  font-variation-settings: "opsz" 144, "SOFT" 15;
  max-width: none;
}
.compliance__headline em {
  font-style: italic;
  color: var(--accent);
  font-variation-settings: "opsz" 9, "SOFT" 80;
}

.compliance__sub {
  max-width: 44ch;
}

.compliance__figure {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  aspect-ratio: auto;
  max-width: none;
  width: 100%;
  height: 100%;
  min-height: clamp(260px, 38vh, 460px);
  margin: 0;
  background: var(--paper-deep);
  box-shadow: 0 30px 60px -24px rgba(13, 26, 19, 0.22), 0 12px 24px -12px rgba(13, 26, 19, 0.14);
}
.compliance__figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.94) contrast(1.02);
  transition: transform 1.6s var(--ease);
}
.compliance__figure:hover img { transform: scale(1.035); }
.compliance__figure-cap {
  position: absolute;
  left: 1.25rem;
  right: 1.25rem;
  bottom: 1rem;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  font-family: "JetBrains Mono", monospace;
  font-size: 10.5px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(241, 245, 238, 0.9);
  z-index: 2;
}
.compliance__figure::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(13,26,19,0) 55%, rgba(13,26,19,0.7) 100%);
  pointer-events: none;
}
.compliance__figure-cap--dark {
  color: var(--ink);
  text-shadow: none;
}
.compliance__figure:has(.compliance__figure-cap--dark)::after {
  background: linear-gradient(180deg, rgba(241,245,238,0) 40%, rgba(241,245,238,0.88) 100%);
}
@media (max-width: 959px) {
  .compliance__figure { min-height: 260px; aspect-ratio: 16 / 10; }
}

.compliance__sub {
  font-size: clamp(15px, 1.1vw, 17px);
  color: var(--ink-soft);
  line-height: 1.6;
  max-width: 44ch;
}

.pillars {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media (min-width: 860px) {
  .pillars { grid-template-columns: repeat(3, 1fr); gap: 2rem; }
}

.pillar {
  padding: 1.75rem;
  border-radius: 14px;
  background: var(--paper-lift);
  border: 1px solid var(--rule);
  display: grid;
  gap: 0.75rem;
  align-content: start;
  transition: transform 0.5s var(--ease), box-shadow 0.5s var(--ease), border-color 0.5s var(--ease);
  position: relative;
  overflow: hidden;
}
.pillar::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.6s var(--ease);
}
.pillar:hover {
  transform: translateY(-4px);
  box-shadow: 0 22px 44px -18px rgba(13, 26, 19, 0.18);
  border-color: transparent;
}
.pillar:hover::before { transform: scaleX(1); }

.pillar__num {
  font-family: "JetBrains Mono", monospace;
  font-size: 10.5px;
  color: var(--accent);
  letter-spacing: 0.1em;
  font-weight: 600;
}

.pillar__title {
  font-family: "Fraunces", serif;
  font-weight: 380;
  font-size: clamp(1.125rem, 1.5vw, 1.375rem);
  line-height: 1.15;
  letter-spacing: -0.012em;
  color: var(--ink);
  font-variation-settings: "opsz" 60, "SOFT" 15;
}

.pillar__body {
  font-size: 14.5px;
  color: var(--muted);
  line-height: 1.6;
}

.pillar__tag {
  font-family: "JetBrains Mono", monospace;
  font-size: 10.5px;
  color: var(--muted-soft);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding-top: 0.5rem;
  margin-top: 0.25rem;
  border-top: 1px solid var(--rule-soft);
}

/* ─── Agents / Tabs ─────────────────────────────── */

.agents {
  background: var(--dark-bg);
  color: var(--dark-ink);
}
.agents::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 240px;
  background: radial-gradient(ellipse at top center, rgba(60, 107, 69, 0.25) 0%, transparent 70%);
  pointer-events: none;
}

.agents__inner {
  display: grid;
  gap: clamp(2.5rem, 5vh, 4rem);
  z-index: 1;
}

.agents__head {
  display: grid;
  gap: 1.25rem;
  max-width: 60ch;
}

.agents__title {
  font-family: "Fraunces", serif;
  font-weight: 300;
  font-size: clamp(2rem, 4.5vw, 4rem);
  line-height: 0.98;
  letter-spacing: -0.025em;
  color: var(--dark-ink);
  font-variation-settings: "opsz" 144, "SOFT" 15;
}
.agents__title em {
  font-style: italic;
  color: var(--accent-soft);
  font-variation-settings: "opsz" 9, "SOFT" 80;
}

.agents__sub {
  font-size: clamp(14.5px, 1.05vw, 16px);
  color: var(--dark-muted);
  line-height: 1.55;
  max-width: 48ch;
}

.tabs {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  border-top: 1px solid var(--dark-rule);
  padding-top: 2rem;
}

@media (min-width: 900px) {
  .tabs {
    grid-template-columns: 300px 1fr;
    gap: 4rem;
  }
}

.tabs__nav {
  list-style: none;
  display: flex;
  flex-direction: row;
  gap: 0;
  overflow-x: auto;
  border-top: 1px solid var(--dark-rule);
  padding-top: 0.25rem;
}
@media (min-width: 900px) {
  .tabs__nav {
    flex-direction: column;
    overflow-x: visible;
    border-top: 0;
    padding-top: 0;
  }
}

.tabs__nav li { flex: 1; }

.tab {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 0;
  width: 100%;
  background: transparent;
  border: 0;
  border-bottom: 1px solid var(--dark-rule);
  color: var(--dark-muted);
  font-family: inherit;
  cursor: pointer;
  text-align: left;
  position: relative;
  transition: color 0.4s var(--ease);
}
.tab:hover { color: var(--dark-ink); }
.tab.is-active { color: var(--dark-ink); }

.tab__num {
  font-family: "JetBrains Mono", monospace;
  font-size: 11px;
  letter-spacing: 0.08em;
  opacity: 0.7;
  font-weight: 500;
}

.tab__name {
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.01em;
  flex-grow: 1;
}

.tab__progress {
  position: absolute;
  bottom: -1px;
  left: 0;
  height: 1.5px;
  width: 0;
  background: var(--accent-soft);
  transition: none;
}
.tab.is-active .tab__progress {
  width: 100%;
  animation: tabProgress 6s linear forwards;
}
@keyframes tabProgress {
  from { width: 0; }
  to { width: 100%; }
}

.tabs__stage {
  position: relative;
  min-height: 280px;
}

.panel {
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.6s var(--ease), transform 0.6s var(--ease);
  pointer-events: none;
  display: grid;
  gap: 1.25rem;
  align-content: start;
}
.panel.is-active {
  opacity: 1;
  transform: none;
  pointer-events: auto;
}

.panel__title {
  font-family: "Fraunces", serif;
  font-weight: 340;
  font-size: clamp(2rem, 3.5vw, 3.25rem);
  line-height: 1.0;
  letter-spacing: -0.02em;
  color: var(--dark-ink);
  font-variation-settings: "opsz" 144, "SOFT" 10;
}

.panel__body {
  font-size: clamp(15px, 1.1vw, 17px);
  line-height: 1.6;
  color: rgba(241, 245, 238, 0.78);
  max-width: 62ch;
}

.panel__meta {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  padding-top: 1.25rem;
  margin-top: 0.5rem;
  border-top: 1px solid var(--dark-rule);
}
.panel__meta div { display: grid; gap: 0.25rem; }
.panel__meta dt {
  font-family: "JetBrains Mono", monospace;
  font-size: 10.5px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--dark-muted);
  font-weight: 500;
}
.panel__meta dd {
  font-size: 14.5px;
  color: var(--dark-ink);
  font-weight: 500;
}

/* ─── Agent list (replaces tabs) ───────────────── */

.agent-list {
  list-style: none;
  border-top: 1px solid var(--dark-rule);
}

.agent-item {
  display: grid;
  grid-template-columns: 3.5rem 1fr;
  gap: 2rem;
  padding: 2rem 0;
  border-bottom: 1px solid var(--dark-rule);
  transition: background 0.3s var(--ease);
}

.agent-item__num {
  font-family: "JetBrains Mono", monospace;
  font-size: 11px;
  letter-spacing: 0.1em;
  color: var(--accent-soft);
  opacity: 0.7;
  padding-top: 0.35rem;
  font-weight: 500;
}

.agent-item__content {
  display: grid;
  gap: 0.75rem;
  align-content: start;
}

.agent-item__title {
  font-family: "Fraunces", serif;
  font-weight: 340;
  font-size: clamp(1.5rem, 2.5vw, 2.25rem);
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--dark-ink);
  font-variation-settings: "opsz" 144, "SOFT" 10;
}

.agent-item__body {
  font-size: clamp(14px, 1.05vw, 16px);
  line-height: 1.65;
  color: rgba(241, 245, 238, 0.72);
  max-width: 64ch;
}

.agent-item__meta {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
  padding-top: 1rem;
  margin-top: 0.25rem;
  border-top: 1px solid var(--dark-rule);
}

.agent-item__meta div { display: grid; gap: 0.2rem; }

.agent-item__meta dt {
  font-family: "JetBrains Mono", monospace;
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--dark-muted);
  font-weight: 500;
}

.agent-item__meta dd {
  font-size: 13.5px;
  color: var(--dark-ink);
  font-weight: 500;
}

/* ─── SDK ──────────────────────────────────────── */

.sdk {
  background: var(--paper-deep);
  color: var(--ink);
}

.sdk__inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  align-items: center;
}

@media (min-width: 900px) {
  .sdk__inner {
    grid-template-columns: 0.9fr 1.1fr;
    column-gap: 5rem;
  }
}

.sdk__text {
  display: grid;
  gap: 1.5rem;
  align-content: center;
}

.sdk__title {
  font-family: "Fraunces", serif;
  font-weight: 300;
  font-size: clamp(2rem, 4vw, 3.75rem);
  line-height: 0.98;
  letter-spacing: -0.025em;
  color: var(--ink);
  font-variation-settings: "opsz" 144, "SOFT" 15;
  max-width: 16ch;
}
.sdk__title em {
  font-style: italic;
  color: var(--accent);
  font-variation-settings: "opsz" 9, "SOFT" 80;
}
.sdk__title-sub {
  display: block;
  font-style: italic;
  font-weight: 260;
  color: var(--muted);
  font-variation-settings: "opsz" 9, "SOFT" 100;
  margin-top: 0.15em;
}

.sdk__body {
  font-size: clamp(15px, 1.1vw, 17px);
  color: var(--ink-soft);
  line-height: 1.6;
  max-width: 44ch;
}

.sdk__actions {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.sdk__code {
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid var(--rule);
  background: var(--dark-bg);
  box-shadow: 0 30px 60px -20px rgba(13, 26, 19, 0.25), 0 10px 20px -10px rgba(13, 26, 19, 0.15);
  position: relative;
  transform-origin: center;
  transition: transform 0.5s var(--ease), box-shadow 0.5s var(--ease);
}
.sdk__code:hover {
  transform: translateY(-4px);
  box-shadow: 0 40px 80px -24px rgba(13, 26, 19, 0.3), 0 16px 28px -14px rgba(13, 26, 19, 0.2);
}

.code-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.75rem 1.125rem;
  background: rgba(241, 245, 238, 0.04);
  border-bottom: 1px solid rgba(241, 245, 238, 0.08);
}

.code-dots { display: flex; gap: 6px; }
.code-dots span {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: rgba(241, 245, 238, 0.15);
}

.code-file {
  font-family: "JetBrains Mono", monospace;
  font-size: 11px;
  letter-spacing: 0.03em;
  color: var(--dark-muted);
  font-weight: 500;
}

.code-body {
  padding: 1.5rem 1.5rem;
  font-family: "JetBrains Mono", monospace;
  font-size: 13px;
  line-height: 1.7;
  background: rgba(13, 26, 19, 0.75);
  overflow-x: auto;
  color: var(--dark-ink);
}
.code-body code { white-space: pre; display: block; }

/* Syntax colors (accessible contrast, green-leaning) */
.ck { color: #B9D6B9; font-weight: 500; }
.cp { color: rgba(241,245,238,0.7); }
.cs { color: #E6D585; }
.cv { color: #D7B8E6; }
.cf { color: #9ED5DC; }
.cc { color: rgba(241,245,238,0.38); font-style: italic; }

/* ─── Agent Studio card (replaces code block body) ── */

.studio .code-header { padding: 0.85rem 1.25rem; }
.studio .code-file {
  font-family: "JetBrains Mono", monospace;
  font-size: 10.5px;
  letter-spacing: 0.18em;
  color: var(--accent-soft);
  font-weight: 600;
  text-transform: uppercase;
}

.studio__body {
  padding: 1.5rem 1.4rem 1.25rem;
  background: rgba(13, 26, 19, 0.78);
  display: grid;
  gap: 1.1rem;
}

.studio__prompt {
  background: rgba(241, 245, 238, 0.04);
  border: 1px solid rgba(241, 245, 238, 0.09);
  border-radius: 10px;
  padding: 0.85rem 1rem;
  display: grid;
  gap: 0.35rem;
}
.studio__prompt-label {
  font-family: "JetBrains Mono", monospace;
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(241, 245, 238, 0.5);
  font-weight: 600;
}
.studio__prompt-text {
  font-family: "Montserrat", sans-serif;
  font-size: 13.5px;
  line-height: 1.55;
  color: var(--dark-ink);
  font-weight: 400;
}

.studio__response {
  border: 1px solid rgba(200, 217, 203, 0.18);
  border-left: 2px solid var(--accent-soft);
  border-radius: 10px;
  padding: 0.85rem 1rem 0.95rem;
  background: rgba(60, 107, 69, 0.09);
  display: grid;
  gap: 0.6rem;
}
.studio__response-label {
  font-family: "JetBrains Mono", monospace;
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent-soft);
  font-weight: 600;
}
.studio__response-label span {
  font-weight: 400;
  opacity: 0.7;
  text-transform: none;
  letter-spacing: 0.05em;
  font-style: italic;
}

.studio__rows {
  display: grid;
  gap: 0.4rem;
}
.studio__row {
  display: grid;
  grid-template-columns: 82px 1fr;
  gap: 0.75rem;
  font-size: 12.5px;
  line-height: 1.5;
  padding: 0.2rem 0;
}
.studio__row dt {
  font-family: "JetBrains Mono", monospace;
  font-size: 10.5px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(241, 245, 238, 0.55);
  font-weight: 500;
  padding-top: 1px;
}
.studio__row dd {
  color: var(--dark-ink);
  font-family: "Montserrat", sans-serif;
  font-weight: 400;
}
.studio__row dd strong {
  color: var(--accent-soft);
  font-weight: 500;
}
.studio__arrow { color: var(--accent-soft); padding: 0 3px; }

.studio__approval {
  font-family: "JetBrains Mono", monospace;
  font-size: 11.5px;
  color: rgba(241, 245, 238, 0.6);
  padding: 0.1rem 0.2rem 0;
  font-style: italic;
}
.studio__approval .cs { font-style: normal; }
.studio__approval .cc { color: rgba(241, 245, 238, 0.38); }

.studio__actions {
  display: flex;
  gap: 0.6rem;
  padding-top: 0.6rem;
  border-top: 1px solid rgba(241, 245, 238, 0.08);
}

.studio__btn {
  flex: 1;
  font-family: "Montserrat", sans-serif;
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: 0.015em;
  border-radius: 8px;
  padding: 0.7rem 1rem;
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: background 0.35s var(--ease), color 0.35s var(--ease), border-color 0.35s var(--ease), transform 0.5s var(--ease);
  will-change: transform;
}
.studio__btn--outline {
  background: transparent;
  color: rgba(241, 245, 238, 0.85);
  border-color: rgba(241, 245, 238, 0.22);
}
.studio__btn--outline:hover {
  border-color: rgba(241, 245, 238, 0.55);
  color: var(--dark-ink);
}
.studio__btn--fill {
  background: var(--accent);
  color: var(--paper);
  border-color: var(--accent);
}
.studio__btn--fill:hover {
  background: var(--accent-deep);
  border-color: var(--accent-deep);
  box-shadow: 0 6px 18px rgba(41, 80, 47, 0.4);
}

/* ─── Trust (architecture condensed) ─────────── */

.trust {
  background: var(--paper);
  color: var(--ink);
}

.trust__inner {
  display: grid;
  gap: clamp(2.5rem, 5vh, 4rem);
}

.trust__head {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  align-items: stretch;
}
@media (min-width: 960px) {
  .trust__head {
    grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
    column-gap: clamp(3rem, 5vw, 5rem);
  }
}

.trust__head-copy {
  display: grid;
  gap: 1.25rem;
  align-content: center;
  max-width: none;
}

.trust__figure {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  aspect-ratio: auto;
  max-width: none;
  width: 100%;
  height: 100%;
  min-height: clamp(240px, 34vh, 400px);
  margin: 0;
  background: var(--paper-deep);
  box-shadow: 0 30px 60px -24px rgba(13, 26, 19, 0.2), 0 12px 22px -12px rgba(13, 26, 19, 0.12);
}
.trust__figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.94) contrast(1.02);
  transition: transform 1.6s var(--ease);
}
.trust__figure:hover img { transform: scale(1.035); }
.trust__figure::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(13,26,19,0) 50%, rgba(13,26,19,0.72) 100%);
  pointer-events: none;
}
.trust__figure-cap {
  position: absolute;
  left: 1.25rem;
  right: 1.25rem;
  bottom: 1rem;
  z-index: 2;
  font-family: "JetBrains Mono", monospace;
  font-size: 10.5px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(241, 245, 238, 0.85);
}
@media (max-width: 959px) {
  .trust__figure { min-height: 220px; aspect-ratio: 16 / 9; }
}

.trust__title {
  font-family: "Fraunces", serif;
  font-weight: 300;
  font-size: clamp(2rem, 3.6vw, 3.25rem);
  line-height: 1.02;
  letter-spacing: -0.022em;
  color: var(--ink);
  font-variation-settings: "opsz" 144, "SOFT" 15;
  max-width: none;
}
.trust__title em {
  font-style: italic;
  color: var(--accent);
  font-variation-settings: "opsz" 9, "SOFT" 80;
}

.trust__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}
@media (min-width: 860px) {
  .trust__grid { grid-template-columns: repeat(3, 1fr); gap: 1.75rem; }
}

.trust-card {
  padding: 2rem;
  border-radius: 14px;
  background: var(--paper-lift);
  border: 1px solid var(--rule);
  display: grid;
  gap: 0.875rem;
  align-content: start;
  transition: transform 0.55s var(--ease), box-shadow 0.55s var(--ease), border-color 0.55s var(--ease);
  position: relative;
  overflow: hidden;
}
.trust-card::after {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 100% 0%, var(--accent-halo) 0%, transparent 55%);
  opacity: 0;
  transition: opacity 0.6s var(--ease);
}
.trust-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 28px 52px -22px rgba(13, 26, 19, 0.2);
  border-color: var(--accent-soft);
}
.trust-card:hover::after { opacity: 1; }

.trust-card__num {
  font-family: "JetBrains Mono", monospace;
  font-size: 10.5px;
  color: var(--accent);
  letter-spacing: 0.1em;
  font-weight: 600;
}

.trust-card h3 {
  font-family: "Fraunces", serif;
  font-weight: 380;
  font-size: clamp(1.25rem, 1.7vw, 1.5rem);
  line-height: 1.15;
  letter-spacing: -0.012em;
  color: var(--ink);
  font-variation-settings: "opsz" 60, "SOFT" 15;
  position: relative;
  z-index: 1;
}

.trust-card p {
  font-size: 14.5px;
  color: var(--muted);
  line-height: 1.6;
  position: relative;
  z-index: 1;
}

/* ─── Close / CTA ────────────────────────────── */

.close {
  background: var(--dark-bg);
  color: var(--dark-ink);
  position: relative;
  display: grid !important;
  grid-template-columns: 1fr;
  height: 100vh;
  height: 100svh;
  max-height: 100vh;
  max-height: 100svh;
  overflow: hidden;
  padding: 0 !important;
  align-items: stretch !important;
}
@media (min-width: 960px) {
  .close { grid-template-columns: 1fr 1fr; align-items: stretch; }
}
.close::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 60% at 20% 70%, rgba(60, 107, 69, 0.18) 0%, transparent 60%);
  pointer-events: none;
  z-index: 0;
}

.close__text {
  display: grid;
  gap: 1.75rem;
  align-content: center;
  padding: clamp(5rem, 10vh, 8rem) var(--pad-x);
  position: relative;
  z-index: 1;
}

.close__figure {
  position: relative;
  overflow: hidden;
  height: 40vh;
  min-height: unset;
}
@media (min-width: 960px) {
  .close__figure { height: 100%; }
}
.close__figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 0%;
  filter: saturate(0.88) contrast(1.02);
}
.close__figure::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(13,26,19,0.15) 40%, rgba(13,26,19,0.65) 100%);
  pointer-events: none;
}
.close__figure-cap {
  position: absolute;
  left: 1.25rem;
  right: 1.25rem;
  bottom: 1.1rem;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  font-family: "JetBrains Mono", monospace;
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(241, 245, 238, 0.85);
  z-index: 1;
}

.close__title {
  font-family: "Fraunces", serif;
  font-weight: 280;
  font-size: clamp(2.25rem, 4vw, 3.5rem);
  line-height: 1.0;
  letter-spacing: -0.025em;
  color: var(--dark-ink);
  font-variation-settings: "opsz" 144, "SOFT" 15;
  max-width: none;
}
.close__title em {
  font-style: italic;
  color: var(--accent-soft);
  font-variation-settings: "opsz" 9, "SOFT" 80;
}

.close__lede {
  font-size: clamp(15px, 1.1vw, 17px);
  color: rgba(241, 245, 238, 0.75);
  line-height: 1.6;
  max-width: 44ch;
  margin-bottom: 0.5rem;
}

.close__actions {
  display: flex;
  gap: 0.875rem;
  flex-wrap: wrap;
}

.close__actions .btn--primary {
  background: var(--paper);
  color: var(--ink);
  border-color: var(--paper);
}
.close__actions .btn--primary:hover {
  background: var(--paper-lift);
  border-color: var(--paper-lift);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.3);
}
.close__actions .btn--ghost {
  color: rgba(241, 245, 238, 0.85);
  border-color: rgba(241, 245, 238, 0.3);
}
.close__actions .btn--ghost:hover {
  border-color: var(--paper);
  color: var(--paper);
  background: rgba(241, 245, 238, 0.06);
}

/* ─── Footer ──────────────────────────────────── */

footer {
  background: var(--dark-bg);
  color: var(--dark-ink);
  border-top: 1px solid var(--dark-rule);
  padding: clamp(3rem, 6vw, 5rem) var(--pad-x) 2rem;
  position: relative;
  z-index: 1;
}

.foot__inner {
  max-width: 1480px;
  margin: 0 auto;
  display: grid;
  gap: 3rem;
  grid-template-columns: minmax(0, 1fr);
}
@media (min-width: 780px) {
  .foot__inner { grid-template-columns: 1fr 2fr; column-gap: 5rem; }
}

.foot__brand {
  display: flex;
  align-items: center;
  color: var(--dark-ink);
}

.foot__cols {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 2rem;
}

.foot__col {
  display: grid;
  gap: 0.7rem;
  align-content: start;
}
.foot__col span {
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--dark-muted);
  font-weight: 600;
  margin-bottom: 0.25rem;
}
.foot__col a {
  font-size: 14px;
  font-weight: 400;
  color: rgba(241, 245, 238, 0.75);
  transition: color 0.3s var(--ease);
}
.foot__col a:hover { color: var(--dark-ink); }

.foot__base {
  max-width: 1480px;
  margin: 3rem auto 0;
  padding-top: 1.5rem;
  border-top: 1px solid var(--dark-rule);
  font-size: 11px;
  font-weight: 500;
  color: var(--dark-muted);
  display: flex;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
  letter-spacing: 0.03em;
}

/* ─── Scroll reveals ──────────────────────────── */

[data-reveal] {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.95s var(--ease), transform 0.95s var(--ease);
}
[data-reveal].is-in {
  opacity: 1;
  transform: none;
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; }
  [data-reveal], [data-anim] { opacity: 1 !important; transform: none !important; }
  .hero__scroll-line::after { animation: none !important; }
  .tab.is-active .tab__progress { animation: none !important; width: 100%; }
}

/* ─── Responsive tweaks ───────────────────────── */

@media (max-width: 780px) {
  .panel__meta { grid-template-columns: 1fr 1fr; }
  .cursor-dot { display: none; }
  section.snap-item { padding: 5rem var(--pad-x) 3rem; }
  .hero__content { padding: 9vh var(--pad-x) 12vh; gap: 1.5rem; }
  .hero__meta { bottom: 1.5rem; }
}

/* ─── Pillar persona label ────────────────────── */

.pillar__persona {
  display: block;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.5rem;
}

/* ─── Compliance proof row ──────────────────────── */

.compliance__proof {
  display: flex;
  align-items: center;
  gap: 0.75rem 1.25rem;
  flex-wrap: wrap;
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid var(--rule);
}

.compliance__proof span {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
}

.compliance__proof span[aria-hidden="true"] {
  color: var(--rule);
  font-size: 14px;
}

/* ─── Market Moment ─────────────────────────────── */

.moment {
  background: var(--paper-deep);
  color: var(--ink);
}

.moment__inner {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: clamp(3rem, 6vw, 7rem);
  align-items: start;
}

.moment__head {
  position: sticky;
  top: 30vh;
}

.moment__title {
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 300;
  line-height: 1.18;
  margin-top: 1rem;
  letter-spacing: -0.02em;
}

.moment__lede {
  font-size: clamp(1rem, 1.4vw, 1.125rem);
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 2.5rem;
  max-width: 54ch;
}

.moment__points {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.moment__point {
  display: grid;
  grid-template-columns: 3rem 1fr;
  gap: 1rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--rule);
}

.moment__point:last-child { border-bottom: none; padding-bottom: 0; }

.moment__point-icon {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--muted-soft);
  padding-top: 0.2rem;
  font-family: "JetBrains Mono", monospace;
}

.moment__point strong {
  display: block;
  font-size: 1rem;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 0.35rem;
  line-height: 1.4;
}

.moment__point p {
  font-size: 0.9375rem;
  color: var(--muted);
  line-height: 1.65;
}

@media (max-width: 900px) {
  .moment__inner { grid-template-columns: 1fr; }
  .moment__head { position: static; }
}

/* ─── Outcomes ──────────────────────────────────── */

.outcomes {
  background: var(--dark-bg);
  color: var(--dark-ink);
}

.outcomes__inner {
  display: flex;
  flex-direction: column;
  gap: clamp(3rem, 5vh, 4.5rem);
}

.outcomes__head {
  max-width: 680px;
}

.outcomes__title {
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 300;
  line-height: 1.18;
  margin-top: 1rem;
  letter-spacing: -0.02em;
}

.outcomes__stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
}

.outcome {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  padding: clamp(2rem, 3.5vw, 3rem) clamp(1.5rem, 3vw, 2.5rem);
  background: var(--dark-bg-lift);
  border-radius: 4px;
}

.outcome__num {
  font-family: "Fraunces", Georgia, serif;
  font-size: clamp(2rem, 4vw, 3.25rem);
  font-weight: 300;
  color: var(--dark-ink);
  line-height: 1;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.outcome__arrow {
  color: var(--accent);
  font-size: 0.7em;
}

.outcome__label {
  font-size: clamp(0.875rem, 1.1vw, 1rem);
  font-weight: 600;
  color: var(--dark-ink);
  line-height: 1.35;
}

.outcome__note {
  font-size: 13px;
  color: var(--dark-muted);
  line-height: 1.55;
}

@media (max-width: 780px) {
  .outcomes__stats { grid-template-columns: 1fr; gap: 2px; }
}

/* ─── FAQ ───────────────────────────────────────── */

.faq {
  background: var(--paper);
  color: var(--ink);
}

.faq__inner {
  display: grid;
  grid-template-columns: 1fr 1.8fr;
  gap: clamp(3rem, 6vw, 7rem);
  align-items: start;
}

.faq__head {
  position: sticky;
  top: 30vh;
}

.faq__title {
  font-size: clamp(1.8rem, 3vw, 2.75rem);
  font-weight: 300;
  line-height: 1.2;
  margin-top: 1rem;
  letter-spacing: -0.02em;
}

.faq__list {
  list-style: none;
  border-top: 1px solid var(--rule);
}

.faq__item {
  border-bottom: 1px solid var(--rule);
}

.faq__q {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  background: none;
  border: none;
  padding: 1.5rem 0;
  text-align: left;
  font-size: clamp(0.9375rem, 1.2vw, 1.0625rem);
  font-weight: 600;
  color: var(--ink);
  gap: 1.5rem;
  cursor: pointer;
  transition: color 0.25s var(--ease);
}

.faq__q:hover { color: var(--accent); }

.faq__icon {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  border: 1.5px solid var(--rule);
  position: relative;
  transition: background 0.25s var(--ease), border-color 0.25s var(--ease), transform 0.35s var(--ease);
}

.faq__icon::before,
.faq__icon::after {
  content: '';
  position: absolute;
  background: var(--ink);
  transition: opacity 0.25s var(--ease), transform 0.35s var(--ease);
}

.faq__icon::before {
  width: 10px; height: 1.5px;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
}

.faq__icon::after {
  width: 1.5px; height: 10px;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
}

.faq__q[aria-expanded="true"] .faq__icon {
  background: var(--accent);
  border-color: var(--accent);
  transform: rotate(45deg);
}

.faq__q[aria-expanded="true"] .faq__icon::before,
.faq__q[aria-expanded="true"] .faq__icon::after {
  background: var(--paper);
}

.faq__a {
  padding-bottom: 1.75rem;
}

.faq__a p {
  font-size: 0.9375rem;
  color: var(--muted);
  line-height: 1.75;
  max-width: 60ch;
}

@media (max-width: 900px) {
  .faq__inner { grid-template-columns: 1fr; }
  .faq__head { position: static; }
}
