/* =================================================================
   Argus Defense Systems — Investor Brief  (site-2, improved)
   styles.css
   Design notes:
     · Slim non-blocking scrollspy rail (32px) with hover tooltips
     · Body left-padding reserves space for rail (no overlap)
     · Mobile / wide-nav drawer from the right
     · Animated bar chart fill, animated counters
     · Premium typography rhythm and refined motion
   ================================================================= */

/* ---------- Custom properties ---------- */
:root {
  --navy:        #0A1628;
  --navy-2:      #1E293B;
  --ink:         #0F172A;
  --sage:        #5A7A5F;
  --sage-deep:   #3D5743;
  --sage-light:  #A0B5A4;
  --sage-pale:   #E5EDE6;
  --rust:        #B85C38;
  --gold:        #C9A961;
  --gray:        #64748B;
  --gray-2:      #94A3B8;
  --gray-3:      #CBD5E1;
  --gray-4:      #E2E8F0;
  --gray-5:      #F1F5F9;
  --light:       #F8FAFC;
  --white:       #ffffff;

  --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, system-ui, sans-serif;
  --font-mono: 'JetBrains Mono', 'SF Mono', Menlo, Consolas, monospace;

  --max-w:           1320px;
  --content-max-w:   840px;
  --rail-w:          32px;
  --rail-pad:        88px;       /* body left padding when rail visible */

  --shadow-sm:  0 1px 2px rgba(15, 23, 42, 0.04), 0 1px 3px rgba(15, 23, 42, 0.06);
  --shadow-md:  0 6px 16px rgba(15, 23, 42, 0.07), 0 2px 6px rgba(15, 23, 42, 0.04);
  --shadow-lg:  0 16px 40px rgba(15, 23, 42, 0.10), 0 6px 16px rgba(15, 23, 42, 0.06);
  --shadow-xl:  0 24px 64px rgba(15, 23, 42, 0.14), 0 12px 24px rgba(15, 23, 42, 0.08);

  --ease:       cubic-bezier(0.22, 1, 0.36, 1);
  --ease-in:    cubic-bezier(0.4, 0, 1, 1);
  --ease-out:   cubic-bezier(0, 0, 0.2, 1);
}

/* ---------- Reset / base ---------- */
*, *::before, *::after { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  margin: 0;
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.5;
  color: var(--ink);
  background: #FAFBFC;
  font-feature-settings: "ss01", "cv11";
  overflow-x: hidden;
}

/* Reserve space on the left for the scrollspy rail (>= 1100px) */
@media (min-width: 1100px) {
  body { padding-left: var(--rail-pad); }
  .topbar__inner, .footer__inner { padding-left: 16px; }
  .hero { margin-left: calc(var(--rail-pad) * -1); padding-left: var(--rail-pad); }
}

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

/* Focus rings */
:focus-visible {
  outline: 2px solid var(--sage);
  outline-offset: 3px;
  border-radius: 2px;
}

/* ---------- Reading progress bar ---------- */
.progress-bar {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: transparent;
  z-index: 100;
  pointer-events: none;
}
.progress-bar__fill {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, var(--sage-deep), var(--sage), var(--gold));
  transition: width 100ms linear;
}

/* ---------- Top brand bar ---------- */
.topbar {
  position: fixed;
  top: 2px; left: 0; right: 0;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: saturate(160%) blur(12px);
  -webkit-backdrop-filter: saturate(160%) blur(12px);
  border-bottom: 1px solid rgba(15, 23, 42, 0.06);
  z-index: 50;
  transform: translateY(-110%);
  transition: transform 0.4s var(--ease);
}
.topbar.is-visible { transform: translateY(0); }
.topbar__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 14px 32px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.12em;
  color: var(--ink);
}
.brand__mark {
  display: inline-block;
  width: 10px; height: 10px;
  background: var(--sage);
  transform: rotate(45deg);
}
.topbar__meta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 11px;
  letter-spacing: 0.04em;
  color: var(--gray);
}
.meta-tag { font-weight: 600; }
.meta-tag.muted { font-weight: 500; color: var(--gray-2); }
.meta-sep { color: var(--gray-3); }

.menu-trigger {
  display: none;
  background: transparent;
  border: 1px solid var(--gray-3);
  border-radius: 4px;
  width: 36px; height: 36px;
  padding: 0;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  transition: border-color 0.2s ease, background 0.2s ease;
}
.menu-trigger:hover {
  border-color: var(--sage);
  background: var(--sage-pale);
}
.menu-trigger span {
  display: block;
  width: 16px;
  height: 1.5px;
  background: var(--ink);
  margin: 3px auto;
  border-radius: 1px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}
@media (max-width: 1099px) {
  .menu-trigger { display: inline-flex; }
}

/* ---------- Slim scrollspy rail ---------- */
.sidenav {
  position: fixed;
  top: 50%;
  left: 28px;
  transform: translateY(-50%);
  width: var(--rail-w);
  z-index: 40;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s var(--ease);
}
.sidenav.is-visible {
  opacity: 1;
  pointer-events: auto;
}
.sidenav__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.sidenav__list li { margin: 0; }

.sidenav__list a {
  position: relative;
  display: flex;
  align-items: center;
  gap: 0;
  height: 26px;
  width: var(--rail-w);
  padding: 0;
  color: var(--gray-2);
  white-space: nowrap;
  transition: color 0.2s ease;
}
.sidenav__list a .tick {
  flex: 0 0 auto;
  display: inline-block;
  width: 14px;
  height: 1px;
  background: var(--gray-3);
  transition: width 0.3s var(--ease), background 0.2s ease, height 0.2s ease;
}
.sidenav__list a .label {
  position: absolute;
  left: 26px;
  top: 50%;
  transform: translate(-6px, -50%);
  background: var(--ink);
  color: var(--white);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.02em;
  padding: 5px 10px 5px 12px;
  border-radius: 3px;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.18s var(--ease), transform 0.22s var(--ease);
  box-shadow: var(--shadow-md);
}
.sidenav__list a .label::before {
  content: '';
  position: absolute;
  left: -4px; top: 50%;
  width: 0; height: 0;
  border-top: 4px solid transparent;
  border-bottom: 4px solid transparent;
  border-right: 4px solid var(--ink);
  transform: translateY(-50%);
}
.sidenav__list a[data-num] .label::after {
  content: attr(data-num);
  font-family: var(--font-mono);
  font-size: 9px;
  font-weight: 700;
  color: var(--sage-light);
  margin-left: 8px;
  letter-spacing: 0.06em;
}
.sidenav__list a:hover {
  color: var(--ink);
}
.sidenav__list a:hover .tick {
  width: 22px;
  background: var(--sage);
}
.sidenav__list a:hover .label {
  opacity: 1;
  transform: translate(0, -50%);
}
.sidenav__list a.is-active .tick {
  width: 26px;
  height: 2px;
  background: var(--sage);
}
.sidenav__list a.is-active {
  color: var(--ink);
  font-weight: 600;
}

/* ---------- Drawer (mobile + nav button) ---------- */
.drawer {
  position: fixed;
  inset: 0;
  z-index: 80;
  pointer-events: none;
  visibility: hidden;
}
.drawer.is-open {
  pointer-events: auto;
  visibility: visible;
}
.drawer__scrim {
  position: absolute;
  inset: 0;
  background: rgba(15, 23, 42, 0.5);
  opacity: 0;
  transition: opacity 0.3s var(--ease);
  backdrop-filter: blur(2px);
  -webkit-backdrop-filter: blur(2px);
}
.drawer.is-open .drawer__scrim { opacity: 1; }
.drawer__panel {
  position: absolute;
  top: 0; right: 0; bottom: 0;
  width: min(360px, 88%);
  background: var(--white);
  padding: 36px 32px 32px;
  transform: translateX(105%);
  transition: transform 0.36s var(--ease);
  box-shadow: var(--shadow-xl);
  overflow-y: auto;
}
.drawer.is-open .drawer__panel { transform: translateX(0); }
.drawer__close {
  position: absolute;
  top: 16px; right: 18px;
  background: transparent;
  border: 0;
  font-size: 28px;
  font-weight: 300;
  color: var(--gray);
  cursor: pointer;
  width: 32px; height: 32px;
  display: flex; align-items: center; justify-content: center;
  line-height: 1;
}
.drawer__close:hover { color: var(--ink); }
.drawer__brand {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  color: var(--ink);
  margin-bottom: 4px;
}
.drawer__sub {
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.10em;
  color: var(--sage);
  margin-bottom: 28px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--gray-4);
}
.drawer__list {
  list-style: none;
  margin: 0;
  padding: 0;
  counter-reset: item;
}
.drawer__list li {
  counter-increment: item;
  border-bottom: 1px solid var(--gray-4);
}
.drawer__list a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 4px;
  font-size: 14px;
  font-weight: 500;
  color: var(--ink);
  transition: color 0.2s ease, background 0.2s ease;
}
.drawer__list a:hover {
  color: var(--sage-deep);
}
.drawer__list a::after {
  content: attr(data-num);
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 700;
  color: var(--gray-2);
  letter-spacing: 0.04em;
}

/* ---------- Main / Sections ---------- */
.main {
  position: relative;
}

.section {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 112px 32px 80px;
  scroll-margin-top: 60px;
  position: relative;
}
.section + .section {
  border-top: 1px solid transparent;
}

.section__header {
  margin-bottom: 40px;
  position: relative;
}
.section__num {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.10em;
  color: var(--sage);
  margin-bottom: 12px;
  display: inline-block;
}
.section__rule {
  display: block;
  width: 38px;
  height: 2px;
  background: var(--sage);
  margin-bottom: 22px;
}
.section__title {
  margin: 0 0 8px;
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 800;
  line-height: 1.06;
  color: var(--ink);
  letter-spacing: -0.025em;
}
.section__subtitle {
  margin: 0;
  font-size: 14.5px;
  color: var(--gray);
  line-height: 1.55;
  max-width: 720px;
}

.h3, h3.h3 {
  margin: 28px 0 10px;
  font-size: 14px;
  font-weight: 700;
  color: var(--ink);
  letter-spacing: 0.02em;
}
.h3--sage { color: var(--sage-deep); margin-top: 36px; }

.body, .section p.body {
  font-size: 15px;
  line-height: 1.65;
  color: var(--navy-2);
  max-width: 760px;
}

.lede {
  font-size: 17.5px;
  line-height: 1.6;
  color: var(--navy-2);
  max-width: 760px;
  margin: 0 0 28px;
  letter-spacing: -0.005em;
}

.bullets {
  list-style: none;
  margin: 12px 0 16px;
  padding: 0;
  max-width: 760px;
}
.bullets li {
  position: relative;
  padding-left: 22px;
  margin-bottom: 10px;
  font-size: 14.5px;
  line-height: 1.6;
  color: var(--navy-2);
}
.bullets li::before {
  content: '';
  position: absolute;
  left: 0; top: 0.7em;
  width: 12px; height: 1px;
  background: var(--sage);
}

.caption {
  font-size: 13px;
  line-height: 1.55;
  color: var(--gray);
  margin: 14px 0 0;
}

/* ---------- HERO ---------- */
.hero {
  position: relative;
  min-height: 100vh;
  background: var(--navy);
  color: var(--white);
  overflow: hidden;
  isolation: isolate;
}
.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}
.hero__grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(160, 181, 164, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(160, 181, 164, 0.06) 1px, transparent 1px);
  background-size: 80px 80px;
  background-position: -1px -1px;
  mask-image: linear-gradient(180deg, transparent 0%, #000 25%, #000 75%, transparent 100%);
  -webkit-mask-image: linear-gradient(180deg, transparent 0%, #000 25%, #000 75%, transparent 100%);
}
.hero__glow {
  position: absolute;
  width: 1200px; height: 1200px;
  right: -380px; top: 18%;
  background: radial-gradient(circle, rgba(90, 122, 95, 0.22) 0%, rgba(90, 122, 95, 0) 55%);
  filter: blur(60px);
  animation: glowDrift 18s ease-in-out infinite alternate;
}
@keyframes glowDrift {
  from { transform: translate(0, 0); }
  to   { transform: translate(-60px, 40px); }
}
.hero__noise {
  position: absolute;
  inset: 0;
  opacity: 0.18;
  mix-blend-mode: soft-light;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='120' height='120' viewBox='0 0 120 120'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/></filter><rect width='100%25' height='100%25' filter='url(%23n)' opacity='0.5'/></svg>");
}
.hero::before {
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 6px;
  background: var(--sage);
  z-index: 1;
}
.hero__inner {
  position: relative;
  z-index: 2;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 56px 56px 120px;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}
.hero__top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 92px;
}
.hero__brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.16em;
  color: var(--white);
}
.hero__brand-mark {
  display: inline-block;
  width: 10px; height: 10px;
  background: var(--sage);
  transform: rotate(45deg);
}
.hero__tag {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  color: var(--sage);
}
.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.10em;
  color: var(--sage);
  margin-bottom: 24px;
}
.eyebrow-rule {
  display: inline-block;
  width: 28px;
  height: 2px;
  background: var(--gold);
}
.hero__title {
  font-family: var(--font-sans);
  font-size: clamp(40px, 6.5vw, 88px);
  font-weight: 800;
  line-height: 1.0;
  letter-spacing: -0.03em;
  margin: 0 0 28px;
  color: var(--white);
}
.accent-gold { color: var(--gold); }
.hero__subtitle {
  font-size: clamp(15px, 1.4vw, 18px);
  font-weight: 400;
  letter-spacing: 0.01em;
  color: var(--sage-light);
  margin: 0 0 auto;
  max-width: 640px;
}

.hero__stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  padding: 28px 0;
  border-top: 1px solid rgba(160, 181, 164, 0.22);
  border-bottom: 1px solid rgba(160, 181, 164, 0.22);
  margin-top: 56px;
}
.hero-stat {
  position: relative;
}
.hero-stat__num {
  font-family: var(--font-sans);
  font-size: clamp(28px, 3.2vw, 38px);
  font-weight: 800;
  letter-spacing: -0.025em;
  color: var(--white);
  line-height: 1;
  margin-bottom: 10px;
}
.hero-stat__label {
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--sage);
  margin-bottom: 6px;
}
.hero-stat__ctx {
  font-size: 11.5px;
  line-height: 1.45;
  color: var(--gray-2);
  max-width: 220px;
}

.hero__meta {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 32px;
}
.hero-meta__label {
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.12em;
  color: var(--gray-2);
  margin-bottom: 4px;
}
.hero-meta__val {
  font-size: 14px;
  color: var(--white);
}

.hero__scroll {
  position: absolute;
  left: 56px;
  bottom: 32px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  font-family: var(--font-mono);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.18em;
  color: var(--sage-light);
  z-index: 3;
}
.scroll-line {
  width: 1px;
  height: 30px;
  background: linear-gradient(180deg, transparent, var(--sage));
  animation: scrollPulse 2.4s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%, 100% { opacity: 0.3; transform: scaleY(0.6); }
  50%      { opacity: 1; transform: scaleY(1); }
}

/* ---------- AT A GLANCE ---------- */
.stat-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.stat-card {
  position: relative;
  background: var(--white);
  padding: 28px 26px 24px;
  border: 1px solid var(--gray-4);
  border-top: 3px solid var(--sage);
  border-radius: 4px;
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
  overflow: hidden;
}
.stat-card::after {
  content: '';
  position: absolute;
  top: 0; right: 0;
  width: 100%; height: 100%;
  background: radial-gradient(circle at 100% 0%, var(--sage-pale) 0%, transparent 40%);
  opacity: 0;
  transition: opacity 0.4s var(--ease);
  pointer-events: none;
}
.stat-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.stat-card:hover::after { opacity: 0.5; }
.stat-card--sage      { border-top-color: var(--sage); }
.stat-card--deep-sage { border-top-color: var(--sage-deep); }
.stat-card--gold      { border-top-color: var(--gold); }
.stat-card--rust      { border-top-color: var(--rust); }

.stat-card__num {
  font-family: var(--font-sans);
  font-size: 40px;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--ink);
  line-height: 1;
  margin-bottom: 12px;
}
.stat-card__num-divider {
  color: var(--gray-3);
  font-weight: 500;
  margin: 0 4px;
}
.stat-card__num-tail {
  font-size: 28px;
  margin-left: 2px;
}
.stat-card__label {
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--sage-deep);
  margin-bottom: 12px;
}
.stat-card__body {
  font-size: 13px;
  line-height: 1.55;
  color: var(--navy-2);
  margin: 0;
}

/* ---------- Pull quotes ---------- */
.pq {
  margin: 32px 0 0;
  padding: 30px 36px;
  background: var(--light);
  border-left: 3px solid var(--sage);
  font-size: 22px;
  font-weight: 700;
  line-height: 1.35;
  letter-spacing: -0.018em;
  color: var(--ink);
  border-radius: 0 4px 4px 0;
}
.pq p { margin: 0 0 4px; }
.pq p:last-child { margin: 0; }
.pq em {
  font-style: italic;
  color: var(--sage-deep);
}
.pq--gold { border-left-color: var(--gold); }
.pq--dark {
  background: var(--navy);
  color: var(--white);
  position: relative;
  overflow: hidden;
}
.pq--dark::before {
  content: '';
  position: absolute;
  top: -60%; right: -20%;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(201, 169, 97, 0.18) 0%, transparent 60%);
  filter: blur(40px);
  pointer-events: none;
}
.pq--dark p { position: relative; z-index: 1; }
.pq--dark em { color: var(--gold); }
.pq--gold-rule { border-left-color: var(--gold); }
.pq--xl {
  font-size: 30px;
  padding: 44px 44px;
}

/* ---------- Numbered reasons ---------- */
.reasons {
  list-style: none;
  margin: 32px 0 0;
  padding: 0;
}
.reason {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 8px;
  padding: 26px 0;
  border-bottom: 1px solid var(--gray-4);
  position: relative;
  transition: background 0.3s var(--ease);
}
.reason:last-child { border-bottom: none; }
.reason::before {
  content: '';
  position: absolute;
  left: -16px; top: 26px; bottom: 26px;
  width: 2px;
  background: var(--sage);
  transform: scaleY(0);
  transform-origin: top;
  transition: transform 0.3s var(--ease);
}
.reason:hover::before { transform: scaleY(1); }
.reason__num {
  font-family: var(--font-sans);
  font-size: 48px;
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.04em;
  color: var(--sage-light);
  transition: color 0.3s var(--ease), transform 0.3s var(--ease);
}
.reason:hover .reason__num {
  color: var(--sage);
}
.reason__title {
  margin: 0 0 8px;
  font-size: 18px;
  font-weight: 700;
  color: var(--ink);
  letter-spacing: -0.012em;
}
.reason__body p {
  margin: 0;
  font-size: 14.5px;
  line-height: 1.65;
  color: var(--navy-2);
  max-width: 720px;
}

/* ---------- Founder cards ---------- */
.founder-card {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 32px;
  padding: 28px 32px;
  background: var(--white);
  border: 1px solid var(--gray-4);
  border-top: 3px solid var(--sage);
  border-radius: 4px;
  margin-bottom: 18px;
  transition: box-shadow 0.3s var(--ease), transform 0.3s var(--ease);
}
.founder-card:hover {
  box-shadow: var(--shadow-md);
}
.founder-card__photo {
  position: relative;
}
.founder-card__photo::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 2px;
  box-shadow: inset 0 0 0 1px rgba(15, 23, 42, 0.08);
  pointer-events: none;
}
.founder-card__photo img {
  width: 200px;
  height: 200px;
  object-fit: cover;
  border-radius: 2px;
  filter: saturate(0.92) contrast(1.02);
}
.founder-card__name {
  margin: 0 0 4px;
  font-size: 24px;
  font-weight: 800;
  color: var(--ink);
  letter-spacing: -0.022em;
}
.founder-card__role {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.10em;
  color: var(--sage-deep);
  margin-bottom: 18px;
}
.founder-card__body p {
  margin: 0 0 10px;
  font-size: 14px;
  line-height: 1.62;
  color: var(--navy-2);
}
.founder-card__body p:last-child { margin-bottom: 0; }
.founder-card__body strong { color: var(--ink); }

/* ---------- Pod grid ---------- */
.pod-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 24px;
}
.pod {
  background: var(--white);
  padding: 22px 24px;
  border: 1px solid var(--gray-4);
  border-top: 2px solid var(--sage);
  border-radius: 4px;
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.pod:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}
.pod--wide {
  grid-column: 1 / -1;
}
.pod__title {
  margin: 0 0 4px;
  font-size: 16px;
  font-weight: 800;
  color: var(--ink);
  letter-spacing: -0.015em;
}
.pod__count {
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--sage);
  margin-bottom: 14px;
}
.pod p {
  margin: 0 0 8px;
  font-size: 13.5px;
  line-height: 1.55;
  color: var(--navy-2);
}
.pod p:last-child { margin: 0; }
.pod p strong { color: var(--ink); }

/* ---------- Bar chart (Use of $250K) ---------- */
.bar-chart {
  margin: 28px 0 4px;
}
.bar-chart__amounts {
  display: flex;
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 6px;
  gap: 2px;
}
.bar-chart__amounts > div { padding-left: 4px; }
.bar-chart__bar {
  display: flex;
  height: 56px;
  border-radius: 4px;
  overflow: hidden;
  gap: 0;
  box-shadow: var(--shadow-sm);
  background: var(--gray-5);
}
.bar-chart__seg {
  flex: 0;
  display: flex;
  align-items: center;
  padding: 0 12px;
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--white);
  transition: filter 0.3s ease, flex 1.2s var(--ease-out);
  white-space: nowrap;
  overflow: hidden;
  cursor: default;
}
.bar-chart__seg:hover { filter: brightness(1.10); }
.seg--deep-sage { background: var(--sage-deep); }
.seg--sage      { background: var(--sage); }
.seg--light-sage { background: var(--sage-light); color: var(--ink); }
.seg--gold      { background: var(--gold); color: var(--ink); }
.seg--rust      { background: var(--rust); }

.bar-chart.is-animated .bar-chart__seg {
  flex: var(--target);
}

/* ---------- Allocation table ---------- */
.alloc-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 18px;
  background: var(--white);
  border: 1px solid var(--gray-4);
  border-radius: 4px;
  overflow: hidden;
  font-size: 14px;
}
.alloc-table thead th {
  background: var(--navy);
  color: var(--white);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 13px 16px;
  text-align: left;
}
.alloc-table .alloc-table__amount-h { text-align: right; }
.alloc-table tbody tr {
  border-top: 1px solid var(--gray-4);
  transition: background 0.2s ease;
}
.alloc-table tbody tr:nth-child(even) { background: var(--light); }
.alloc-table tbody tr:hover { background: var(--sage-pale); }
.alloc-table tbody td {
  padding: 13px 16px;
  font-size: 13.5px;
  line-height: 1.55;
  color: var(--navy-2);
  vertical-align: top;
}
.alloc-table tbody td.num {
  font-family: var(--font-mono);
  text-align: right;
  font-weight: 600;
  color: var(--ink);
  white-space: nowrap;
}
.alloc-table .swatch {
  display: inline-block;
  width: 12px; height: 12px;
  border-radius: 2px;
  margin-top: 2px;
}
.sw--deep-sage  { background: var(--sage-deep); }
.sw--sage       { background: var(--sage); }
.sw--light-sage { background: var(--sage-light); }
.sw--gold       { background: var(--gold); }
.sw--rust       { background: var(--rust); }

/* ---------- Dual-use grid ---------- */
.dual-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 28px;
}
.dual-card {
  background: var(--white);
  padding: 24px 24px;
  border: 1px solid var(--gray-4);
  border-left: 3px solid var(--sage);
  border-radius: 4px;
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.dual-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}
.dual-card h4 {
  margin: 0 0 10px;
  font-size: 14.5px;
  font-weight: 700;
  color: var(--ink);
}
.dual-card p {
  margin: 0;
  font-size: 13px;
  line-height: 1.55;
  color: var(--navy-2);
}

/* ---------- Vertical grid ---------- */
.vertical-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
  margin-top: 8px;
}
.vertical {
  position: relative;
  background: var(--white);
  padding: 30px 30px 26px;
  border: 1px solid var(--gray-4);
  border-radius: 4px;
  transition: box-shadow 0.3s var(--ease), transform 0.3s var(--ease);
}
.vertical:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
}
.vertical::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 60px; height: 3px;
  background: var(--sage);
  transition: width 0.3s var(--ease);
}
.vertical:hover::before { width: 100px; }
.vertical__rank {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.10em;
  color: var(--sage);
  margin-bottom: 12px;
}
.vertical__title {
  margin: 0 0 18px;
  font-size: 18px;
  font-weight: 800;
  color: var(--ink);
  letter-spacing: -0.015em;
  line-height: 1.25;
}
.vertical__list {
  margin: 0;
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: 8px 16px;
}
.vertical__list dt {
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--sage);
  text-transform: uppercase;
  padding-top: 3px;
}
.vertical__list dd {
  margin: 0;
  font-size: 13px;
  line-height: 1.55;
  color: var(--navy-2);
}

/* ---------- Sales tracks ---------- */
.track-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  margin-top: 24px;
}
.track {
  background: var(--white);
  padding: 28px 28px;
  border: 1px solid var(--gray-4);
  border-radius: 4px;
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.track:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}
.track__tag {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--white);
  background: var(--sage);
  padding: 4px 10px;
  border-radius: 2px;
  margin-bottom: 14px;
}
.track h4 {
  margin: 0 0 10px;
  font-size: 18px;
  font-weight: 800;
  color: var(--ink);
  letter-spacing: -0.015em;
}
.track p {
  margin: 0;
  font-size: 13.5px;
  line-height: 1.6;
  color: var(--navy-2);
}

.callout {
  margin-top: 28px;
  padding: 26px 30px;
  background: var(--navy);
  color: var(--white);
  border-radius: 4px;
  position: relative;
  overflow: hidden;
}
.callout::before {
  content: '';
  position: absolute;
  top: 0; left: 0; bottom: 0;
  width: 3px;
  background: var(--gold);
}
.callout__label {
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.16em;
  color: var(--gold);
  margin-bottom: 12px;
}
.callout p {
  margin: 0;
  font-size: 14.5px;
  line-height: 1.65;
}

/* ---------- Data tables ---------- */
.data-table-wrap, .comp-table-wrap {
  overflow-x: auto;
  margin-top: 12px;
  border-radius: 4px;
}
.data-table, .comp-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--white);
  border: 1px solid var(--gray-4);
  border-radius: 4px;
  overflow: hidden;
  font-size: 14px;
}
.data-table thead th {
  background: var(--navy);
  color: var(--white);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 13px 16px;
  text-align: left;
}
.data-table thead th.num { text-align: right; }
.data-table tbody tr { border-top: 1px solid var(--gray-4); transition: background 0.2s ease; }
.data-table tbody tr:nth-child(even) { background: var(--light); }
.data-table tbody tr:hover { background: var(--sage-pale); }
.data-table tbody td {
  padding: 13px 16px;
  font-size: 13.5px;
  color: var(--navy-2);
}
.data-table tbody td.num {
  font-family: var(--font-mono);
  text-align: right;
  color: var(--ink);
}

/* ---------- Comparison table ---------- */
.comp-table {
  min-width: 720px;
}
.comp-table thead th {
  background: var(--navy);
  color: var(--white);
  font-size: 12px;
  font-weight: 700;
  padding: 14px 14px;
  text-align: center;
}
.comp-table thead th:first-child {
  background: var(--navy-2);
  text-align: left;
}
.comp-table thead th.comp-us {
  background: var(--sage-deep);
  color: var(--white);
  letter-spacing: 0.04em;
  position: relative;
}
.comp-table thead th.comp-us::after {
  content: '';
  position: absolute;
  bottom: -1px; left: 0; right: 0;
  height: 2px;
  background: var(--gold);
}
.comp-table tbody th {
  background: var(--light);
  text-align: left;
  font-weight: 600;
  font-size: 13px;
  padding: 11px 14px;
  color: var(--ink);
  border-top: 1px solid var(--gray-4);
}
.comp-table tbody td {
  padding: 11px 14px;
  text-align: center;
  font-size: 13.5px;
  color: var(--navy-2);
  border-top: 1px solid var(--gray-4);
}
.comp-table tbody td.comp-us {
  background: var(--sage-pale);
  color: var(--sage-deep);
  font-weight: 600;
}
.comp-table tbody tr:hover td:not(.comp-us) {
  background: var(--gray-5);
}
.comp-table tbody tr:hover th {
  background: var(--gray-4);
}

/* ---------- Timeline ---------- */
.timeline {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  margin-top: 28px;
}
.phase {
  position: relative;
  padding: 28px 26px 26px;
  background: var(--white);
  border: 1px solid var(--gray-4);
  border-top-width: 0;
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.phase::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: var(--sage);
}
.phase:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
  z-index: 1;
}
.phase--1 { border-radius: 4px 0 0 4px; }
.phase--1::before { background: var(--sage-deep); }
.phase--2::before { background: var(--sage); }
.phase--2 { border-left-width: 0; border-right-width: 0; }
.phase--3 { border-radius: 0 4px 4px 0; }
.phase--3::before { background: var(--sage-light); }

.phase__head {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 18px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--gray-4);
}
.phase__title {
  font-size: 17px;
  font-weight: 800;
  color: var(--ink);
  letter-spacing: -0.015em;
}
.phase__dates {
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.10em;
  color: var(--sage);
}
.phase__goals {
  list-style: none;
  margin: 0;
  padding: 0;
}
.phase__goals li {
  position: relative;
  padding-left: 18px;
  margin-bottom: 12px;
  font-size: 13px;
  line-height: 1.55;
  color: var(--navy-2);
}
.phase__goals li::before {
  content: '';
  position: absolute;
  left: 0; top: 0.55em;
  width: 8px; height: 1px;
  background: var(--sage);
}
.phase__goals li:last-child { margin-bottom: 0; }

/* ---------- Signoff ---------- */
.signoff {
  margin-top: 56px;
  padding-top: 28px;
}
.signoff__rule {
  display: block;
  width: 80px;
  height: 2px;
  background: var(--sage);
  margin-bottom: 18px;
}
.signoff__brand {
  font-size: 13px;
  font-weight: 700;
  color: var(--ink);
  letter-spacing: 0.04em;
  margin-bottom: 4px;
}
.signoff__contact {
  font-size: 13px;
  color: var(--gray);
}
.signoff__contact a {
  color: var(--sage-deep);
  border-bottom: 1px solid var(--sage-light);
  transition: border-color 0.2s ease;
}
.signoff__contact a:hover { border-color: var(--sage-deep); }
.dot { color: var(--gray-3); margin: 0 6px; }

/* ---------- Back to top ---------- */
.back-to-top {
  position: fixed;
  bottom: 28px;
  right: 28px;
  background: var(--ink);
  color: var(--white);
  border: 0;
  border-radius: 4px;
  padding: 10px 14px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.10em;
  cursor: pointer;
  opacity: 0;
  transform: translateY(8px);
  pointer-events: none;
  transition: opacity 0.3s var(--ease), transform 0.3s var(--ease), background 0.2s ease;
  box-shadow: var(--shadow-lg);
  z-index: 45;
}
.back-to-top.is-visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
.back-to-top:hover {
  background: var(--sage-deep);
}

/* ---------- Footer ---------- */
.footer {
  background: var(--navy);
  color: var(--white);
  padding: 56px 0;
  margin-top: 96px;
  position: relative;
}
.footer::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--sage-deep), var(--sage), var(--gold));
}
.footer__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 32px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
}
.footer__brand {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.16em;
  color: var(--white);
  margin-bottom: 6px;
}
.footer__line {
  font-size: 12px;
  color: var(--gray-2);
}
.footer__col--right a {
  color: var(--sage-light);
  font-size: 13px;
  transition: color 0.2s ease;
}
.footer__col--right a:hover { color: var(--white); }

/* ---------- Reveal-on-scroll animation ---------- */
.fade-up {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}
.fade-up.is-visible {
  opacity: 1;
  transform: translateY(0);
}
.fade-up--delay-1 { transition-delay: 80ms; }
.fade-up--delay-2 { transition-delay: 160ms; }
.fade-up--delay-3 { transition-delay: 240ms; }

/* Anchor target highlight pulse */
@keyframes anchorPulse {
  0%   { box-shadow: 0 0 0 0 rgba(90, 122, 95, 0.45); }
  100% { box-shadow: 0 0 0 12px rgba(90, 122, 95, 0); }
}
section:target .section__title {
  animation: anchorPulse 1.2s ease-out 1;
}

/* ---------- Responsive ---------- */
@media (max-width: 1099px) {
  .sidenav { display: none; }
  body { padding-left: 0; }
}
@media (max-width: 880px) {
  .section { padding: 80px 24px 56px; }
  .hero__inner { padding: 32px 24px 80px; }
  .hero__top { margin-bottom: 56px; }
  .hero__stats { grid-template-columns: 1fr 1fr; }
  .hero__meta { grid-template-columns: 1fr 1fr; }
  .stat-grid { grid-template-columns: 1fr 1fr; }
  .pod-grid { grid-template-columns: 1fr; }
  .pod--wide { grid-column: auto; }
  .vertical-grid { grid-template-columns: 1fr; }
  .dual-grid { grid-template-columns: 1fr; }
  .track-grid { grid-template-columns: 1fr; }
  .timeline { grid-template-columns: 1fr; }
  .phase--1, .phase--2, .phase--3 {
    border-radius: 4px;
    border-width: 1px;
    margin-bottom: 12px;
  }
  .founder-card { grid-template-columns: 1fr; }
  .founder-card__photo img { width: 160px; height: 160px; }
  .topbar__meta { display: none; }
  .hero__scroll { display: none; }
  .topbar__inner { padding: 12px 20px; }
  .reason { grid-template-columns: 60px 1fr; }
  .reason__num { font-size: 38px; }
  .pq--xl { font-size: 22px; padding: 28px; }
  .vertical__list { grid-template-columns: 1fr; }
  .vertical__list dt { padding-top: 0; margin-top: 8px; }
  .back-to-top { bottom: 20px; right: 20px; }
}
@media (max-width: 560px) {
  .hero__stats { grid-template-columns: 1fr; }
  .hero__meta { grid-template-columns: 1fr; }
  .stat-grid { grid-template-columns: 1fr; }
}

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

/* ---------- Print ---------- */
@media print {
  body {
    background: white;
    padding-left: 0;
  }
  .topbar, .sidenav, .progress-bar, .hero__scroll, .footer, .back-to-top, .menu-trigger, .drawer { display: none !important; }
  .hero { min-height: auto; page-break-after: always; }
  .hero__inner { padding: 36px 36px 36px; min-height: auto; }
  .hero__noise, .hero__glow, .hero__grid { display: none; }
  .section { page-break-before: always; padding: 36px 36px; }
  .section:first-of-type { page-break-before: auto; }
  .reason, .pod, .stat-card, .vertical, .founder-card, .dual-card, .track {
    box-shadow: none !important;
    page-break-inside: avoid;
  }
  .pq--dark {
    background: white;
    color: var(--ink);
    border-left-color: var(--gold);
  }
  .pq--dark em { color: var(--sage-deep); }
  .pq--dark::before { display: none; }
  .callout {
    background: var(--light);
    color: var(--ink);
    border: 1px solid var(--gray-3);
  }
  .callout::before { display: none; }
  .callout__label { color: var(--sage-deep); }
  a { color: inherit; text-decoration: none; }
}
