  :root {
    --navy: #050f2c;
    --navy-mid: #0a1a45;
    --navy-light: #122259;
    --navy-card: #0d1e4a;
    --gold: #c8a84b;
    --gold-light: #e2c876;
    --gold-dim: #8c6f2e;
    --gold-muted: rgba(200,168,75,0.12);
    --white: #f5f0e8;
    --white-dim: rgba(245,240,232,0.6);
    --white-faint: rgba(245,240,232,0.08);
    --border: rgba(200,168,75,0.2);
    --border-light: rgba(245,240,232,0.08);
    --red: #c84b4b;
    --green: #4bc88a;
  }

  *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

  html { scroll-behavior: smooth; font-size: 16px; }

  body {
    background: var(--navy);
    color: var(--white);
    font-family: 'DM Sans', sans-serif;
    font-weight: 400;
    line-height: 1.7;
    overflow-x: hidden;
  }

  /* NOISE TEXTURE OVERLAY */
  body::before {
    content: '';
    position: fixed;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E");
    pointer-events: none;
    z-index: 0;
    opacity: 0.4;
  }

  /* ─── TYPOGRAPHY ─── */
  h1, h2, h3, h4 { font-family: 'Playfair Display', serif; line-height: 1.15; }
  h1 { font-size: clamp(2.6rem, 5.5vw, 5rem); font-weight: 900; }
  h2 { font-size: clamp(2rem, 3.5vw, 3.2rem); font-weight: 700; }
  h3 { font-size: clamp(1.2rem, 2vw, 1.6rem); font-weight: 600; }
  p { color: var(--white-dim); }

  .eyebrow {
    font-family: 'DM Mono', monospace;
    font-size: 0.72rem;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 1rem;
    display: block;
  }

  .gold { color: var(--gold); }
  .white { color: var(--white); }

  /* ─── LAYOUT ─── */
  .container { max-width: 1200px; margin: 0 auto; padding: 0 2rem; position: relative; z-index: 1; }
  section { padding: 6rem 0; }
  .section-header { margin-bottom: 4rem; }

  /* ─── NAV ─── */
  nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 100;
    padding: 1.4rem 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: rgba(5,15,44,0.85);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--border);
  }

  .nav-logo {
      display: flex;
      align-items: center;
      text-decoration: none;
    }

    .nav-logo-img {
      height: 36px;
      width: auto;
      object-fit: contain;
      display: block;
    }

  @keyframes pulse {
    0%,100% { box-shadow: 0 0 0 0 rgba(200,168,75,0.6); }
    50% { box-shadow: 0 0 0 6px rgba(200,168,75,0); }
  }

  .nav-links { display: flex; gap: 2.5rem; list-style: none; }
  .nav-links a {
    font-size: 0.82rem;
    letter-spacing: 0.06em;
    font-weight: 500;
    color: var(--white-dim);
    text-decoration: none;
    transition: color 0.2s;
  }
  .nav-links a:hover { color: var(--gold); }

  .demo-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.6rem 1.2rem;
  border-radius: 999px; /* fully rounded pill */
  
  background: linear-gradient(135deg, #C8A84B, #E5C76B);
  color: #0a1a45 !important; /* dark text for contrast */
  font-weight: 600;
  font-size: 0.9rem;
  
  text-decoration: none;
  border: 1px solid rgba(200,168,75,0.6);
  
  box-shadow: 0 4px 20px rgba(200,168,75,0.25);
  transition: all 0.25s ease;
}

/* hover effect */
.demo-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 25px rgba(200,168,75,0.4);
}

/* live dot */
.live-dot {
  width: 8px;
  height: 8px;
  background: #0a1a45;
  border-radius: 50%;
  position: relative;
}

/* pulse animation */
.live-dot::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: #0a1a45;
  animation: pulseDot 1.5s infinite;
  opacity: 0.5;
}

@keyframes pulseDot {
  0% {
    transform: scale(1);
    opacity: 0.5;
  }
  70% {
    transform: scale(2.2);
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}

  .btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.7rem 1.6rem;
    font-family: 'DM Sans', sans-serif;
    font-size: 0.85rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 2px;
    cursor: pointer;
    transition: all 0.25s;
    border: none;
    letter-spacing: 0.04em;
  }

  .btn-gold {
    background: var(--gold);
    color: var(--navy);
  }
  .btn-gold:hover {
    background: var(--gold-light);
    transform: translateY(-1px);
    box-shadow: 0 8px 30px rgba(200,168,75,0.35);
  }

  .btn-outline {
    background: transparent;
    color: var(--gold);
    border: 1px solid var(--gold);
  }
  .btn-outline:hover {
    background: var(--gold-muted);
    transform: translateY(-1px);
  }

  .btn-lg { padding: 1rem 2.4rem; font-size: 0.95rem; }

  /* ─── HERO ─── */
  #hero {
    min-height: 100vh;
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    padding-top: 5rem;
    position: relative;
    overflow: hidden;
  }

    #hero .container {
    margin-left: 0px;
    margin-right: 0;
    }

  .hero-grid {
    position: absolute;
    inset: 0;
    background-image:
      linear-gradient(rgba(200,168,75,0.05) 1px, transparent 1px),
      linear-gradient(90deg, rgba(200,168,75,0.05) 1px, transparent 1px);
    background-size: 80px 80px;
    mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 20%, transparent 100%);
  }

  .hero-glow {
    position: absolute;
    width: 900px; height: 900px;
    background: radial-gradient(circle, rgba(200,168,75,0.07) 0%, transparent 65%);
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
  }

  .hero-content { max-width: 820px; }

  .hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--gold-muted);
    border: 1px solid var(--border);
    padding: 0.4rem 1rem;
    border-radius: 100px;
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.08em;
    color: var(--gold);
    margin-bottom: 2rem;
  }

  .hero-badge::before {
    content: '';
    width: 6px; height: 6px;
    background: var(--gold);
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
  }

  .hero-headline { margin-bottom: 1.5rem; }
  .hero-headline em { font-style: italic; color: var(--gold); }

  .hero-sub {
    font-size: 1.15rem;
    max-width: 600px;
    margin-bottom: 3rem;
    line-height: 1.8;
  }

  .hero-cta { display: flex; gap: 1rem; flex-wrap: wrap; margin-bottom: 4rem; }

  .hero-metrics {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background: var(--border);
    border: 1px solid var(--border);
    border-radius: 4px;
    overflow: hidden;
    max-width: 640px;
  }

  .metric-cell {
    background: var(--navy-card);
    padding: 1.4rem 1.6rem;
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
  }

  .metric-value {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--white);
    line-height: 1;
  }

  @media (max-width: 768px) {
    .metric-value {
        font-size: 1.3rem;
    }
    }

  .metric-label {
    font-size: 0.72rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--gold);
    font-weight: 500;
  }

  /* ─── DIVIDER ─── */
  .divider {
    border: none;
    border-top: 1px solid var(--border-light);
  }

  /* ─── OPPORTUNITY ─── */
  #opportunity { background: var(--navy-mid); }

  .stat-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 3rem;
  }

  .stat-card {
    background: var(--navy-card);
    border: 1px solid var(--border);
    padding: 2rem;
    border-radius: 2px;
    position: relative;
    overflow: hidden;
    transition: transform 0.25s;
  }
  .stat-card:hover { transform: translateY(-3px); }

  .stat-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--gold), transparent);
  }

  .stat-big {
    font-family: 'Playfair Display', serif;
    font-size: 2.6rem;
    font-weight: 700;
    color: var(--gold);
    line-height: 1;
    margin-bottom: 0.5rem;
  }

  .stat-desc {
    font-size: 0.85rem;
    color: var(--white-dim);
    line-height: 1.5;
  }

  .two-col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
  }

  .timing-list { list-style: none; margin-top: 2rem; display: flex; flex-direction: column; gap: 1.2rem; }
  .timing-list li {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    font-size: 0.9rem;
    color: var(--white-dim);
  }
  .timing-list li::before {
    content: '→';
    color: var(--gold);
    font-size: 0.85rem;
    flex-shrink: 0;
    margin-top: 0.05rem;
  }

  /* ─── PRODUCT ─── */
  .product-verticals {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1px;
    background: var(--border-light);
    border: 1px solid var(--border-light);
    border-radius: 4px;
    overflow: hidden;
    margin-top: 3rem;
  }

  .vertical-card {
    background: var(--navy-card);
    padding: 2rem 1.5rem;
    text-align: center;
    transition: background 0.2s;
  }
  .vertical-card:hover { background: var(--navy-light); }

  .vertical-icon {
    font-size: 2rem;
    margin-bottom: 1rem;
    display: block;
  }

  .vertical-name {
    font-family: 'Playfair Display', serif;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 0.5rem;
  }

  .vertical-example {
    font-size: 0.78rem;
    color: var(--gold);
    line-height: 1.5;
    margin-bottom: 0.75rem;
  }

  .vertical-stat {
    font-family: 'DM Mono', monospace;
    font-size: 0.75rem;
    color: var(--white-dim);
    border-top: 1px solid var(--border-light);
    padding-top: 0.75rem;
    margin-top: 0.5rem;
  }

  .pilot-box {
    background: linear-gradient(135deg, var(--navy-card), var(--navy-light));
    border: 1px solid var(--border);
    border-radius: 4px;
    padding: 2.5rem;
    margin-top: 3rem;
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 2rem;
    align-items: center;
  }

  .pilot-metrics {
    display: flex;
    gap: 2.5rem;
    flex-wrap: wrap;
  }

  .pilot-metric { text-align: center; }
  .pilot-metric .val {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    font-weight: 700;
    color: var(--gold);
    display: block;
  }
  .pilot-metric .lbl {
    font-size: 0.72rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--white-dim);
  }

  /* ─── TRACTION ─── */
  #traction { background: var(--navy-mid); }

  .projection-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 3rem;
    font-size: 0.85rem;
  }

  .projection-table th {
    background: var(--navy-light);
    padding: 1rem 1.2rem;
    text-align: right;
    font-family: 'DM Mono', monospace;
    font-size: 0.7rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--gold);
    font-weight: 500;
  }
  .projection-table th:first-child { text-align: left; }

  .projection-table td {
    padding: 0.9rem 1.2rem;
    text-align: right;
    border-bottom: 1px solid var(--border-light);
    color: var(--white-dim);
    font-family: 'DM Mono', monospace;
    font-size: 0.8rem;
  }
  .projection-table td:first-child {
    text-align: left;
    color: var(--white);
    font-family: 'DM Sans', sans-serif;
    font-weight: 500;
  }

  .projection-table tr:last-child td {
    color: var(--gold);
    font-weight: 600;
    border-top: 1px solid var(--border);
    border-bottom: none;
  }

  .projection-table tr:hover td { background: var(--white-faint); }

  /* BAR CHART */
  .bar-chart {
    margin-top: 3rem;
    padding: 2.5rem;
    background: var(--navy-card);
    border: 1px solid var(--border);
    border-radius: 4px;
  }

  .bar-chart-title {
    font-family: 'DM Mono', monospace;
    font-size: 0.72rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 2rem;
  }

  .bars {
    display: flex;
    gap: 1.5rem;
    align-items: flex-end;
    height: 200px;
  }

  .bar-group { flex: 1; display: flex; flex-direction: column; align-items: center; gap: 0.5rem; }

  .bar {
    width: 100%;
    border-radius: 2px 2px 0 0;
    transition: opacity 0.2s;
    position: relative;
  }
  .bar:hover { opacity: 0.85; }

  .bar-val {
    position: absolute;
    top: -1.5rem;
    left: 50%;
    transform: translateX(-50%);
    font-family: 'DM Mono', monospace;
    font-size: 0.68rem;
    color: var(--white);
    white-space: nowrap;
  }

  .bar-year {
    font-family: 'DM Mono', monospace;
    font-size: 0.68rem;
    color: var(--white-dim);
    text-align: center;
  }

  /* ─── BUSINESS MODEL ─── */
  .revenue-streams {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-top: 3rem;
  }

  .revenue-card {
    border: 1px solid var(--border);
    border-radius: 2px;
    padding: 2rem;
    background: var(--navy-card);
    position: relative;
    overflow: hidden;
  }

  .revenue-card::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0;
    width: var(--pct);
    height: 2px;
    background: var(--gold);
  }

  .revenue-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.1rem;
    color: var(--white);
    margin-bottom: 0.5rem;
  }

  .revenue-desc {
    font-size: 0.85rem;
    color: var(--white-dim);
    line-height: 1.6;
    margin-bottom: 1rem;
  }

  .revenue-note {
    font-family: 'DM Mono', monospace;
    font-size: 0.72rem;
    color: var(--gold);
  }

  /* ─── GTM ─── */
  #gtm { background: var(--navy-mid); }

  .roadmap {
    margin-top: 3rem;
    display: flex;
    flex-direction: column;
    gap: 0;
  }

  .roadmap-phase {
    display: grid;
    grid-template-columns: 140px 1px 1fr;
    gap: 2rem;
    padding: 2.5rem 0;
    align-items: start;
  }

  .roadmap-phase:not(:last-child) .roadmap-line { background: var(--border); }

  .phase-label {
    font-family: 'DM Mono', monospace;
    font-size: 0.72rem;
    letter-spacing: 0.1em;
    color: var(--gold);
    padding-top: 0.3rem;
    text-align: right;
  }

  .roadmap-line { background: var(--border); position: relative; }
  .roadmap-line::after {
    content: '';
    position: absolute;
    top: 0; left: 50%;
    transform: translateX(-50%);
    width: 10px; height: 10px;
    background: var(--gold);
    border-radius: 50%;
    margin-left: -5px;
  }

  .phase-content { padding-top: 0.1rem; }
  .phase-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    color: var(--white);
    margin-bottom: 0.5rem;
  }

  .phase-flags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 0.75rem;
  }

  .flag {
    background: var(--gold-muted);
    border: 1px solid var(--border);
    padding: 0.25rem 0.75rem;
    border-radius: 100px;
    font-size: 0.75rem;
    color: var(--gold-light);
  }

  .phase-milestones {
    font-size: 0.85rem;
    color: var(--white-dim);
  }

  /* ─── MOAT ─── */
  .moat-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 3rem;
  }

  .moat-card {
    background: var(--navy-card);
    border: 1px solid var(--border-light);
    border-radius: 2px;
    padding: 2rem;
    transition: border-color 0.2s, transform 0.2s;
  }
  .moat-card:hover {
    border-color: var(--border);
    transform: translateY(-3px);
  }

  .moat-icon {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    display: block;
  }

  .moat-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.05rem;
    color: var(--white);
    margin-bottom: 0.5rem;
  }

  /* ─── FINANCIALS ─── */
  #financials { background: var(--navy-mid); }

  .roi-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 3rem;
  }

  .roi-card {
    border-radius: 4px;
    padding: 2.5rem 2rem;
    text-align: center;
    position: relative;
    overflow: hidden;
  }

  .roi-card.base {
    background: var(--navy-card);
    border: 1px solid var(--border);
  }
  .roi-card.bull {
    background: linear-gradient(135deg, var(--navy-light), #0d2e1a);
    border: 1px solid rgba(75,200,138,0.3);
  }
  .roi-card.bear {
    background: linear-gradient(135deg, var(--navy-card), #2e0d0d);
    border: 1px solid rgba(200,75,75,0.2);
  }

  .roi-scenario {
    font-family: 'DM Mono', monospace;
    font-size: 0.7rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
    opacity: 0.7;
  }
  .bull .roi-scenario { color: var(--green); }
  .base .roi-scenario { color: var(--gold); }
  .bear .roi-scenario { color: #ff8080; }

  .roi-moic {
    font-family: 'Playfair Display', serif;
    font-size: 3.2rem;
    font-weight: 900;
    line-height: 1;
    margin-bottom: 0.3rem;
  }
  .bull .roi-moic { color: var(--green); }
  .base .roi-moic { color: var(--gold); }
  .bear .roi-moic { color: #ff8080; }

  .roi-irr {
    font-family: 'DM Mono', monospace;
    font-size: 0.85rem;
    margin-bottom: 1.5rem;
    opacity: 0.7;
  }

  .roi-desc {
    font-size: 0.8rem;
    color: var(--white-dim);
    line-height: 1.6;
    font-style: italic;
  }

  /* ─── USE OF FUNDS ─── */
  .funds-chart {
    margin-top: 3rem;
    display: flex;
    gap: 3rem;
    align-items: center;
  }

  .donut-wrap { flex-shrink: 0; }
  .donut-svg { width: 240px; height: 240px; }

  .funds-legend { flex: 1; display: flex; flex-direction: column; gap: 1rem; }

  .legend-item {
    display: grid;
    grid-template-columns: 12px 1fr auto;
    gap: 1rem;
    align-items: center;
    padding: 1rem 1.5rem;
    background: var(--navy-card);
    border: 1px solid var(--border-light);
    border-radius: 2px;
  }

  .legend-dot { width: 12px; height: 12px; border-radius: 50%; }

  .legend-label { font-size: 0.85rem; color: var(--white); font-weight: 500; }
  .legend-pct {
    font-family: 'DM Mono', monospace;
    font-size: 0.85rem;
    color: var(--gold);
    font-weight: 500;
  }

  /* ─── INVESTMENT ─── */
  #invest {
    background: linear-gradient(135deg, var(--navy-mid), var(--navy-light));
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
  }

  .invest-box {
    background: var(--navy-card);
    border: 1px solid var(--border);
    border-radius: 4px;
    padding: 3rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
    margin-top: 3rem;
  }

  .invest-terms { display: flex; flex-direction: column; gap: 1.5rem; }

  .term-row {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    padding-bottom: 1.2rem;
    border-bottom: 1px solid var(--border-light);
  }
  .term-row:last-child { border-bottom: none; padding-bottom: 0; }

  .term-key {
    font-size: 0.78rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--white-dim);
    font-weight: 500;
  }

  .term-val {
    font-family: 'Playfair Display', serif;
    font-size: 1.1rem;
    color: var(--gold);
    font-weight: 600;
    text-align: right;
  }

  .invest-cta { display: flex; flex-direction: column; justify-content: center; gap: 1.5rem; }

  .invest-cta h3 {
    font-size: 1.8rem;
    color: var(--white);
    line-height: 1.3;
  }

  .invest-cta p { font-size: 0.9rem; }

  .cta-buttons { display: flex; flex-direction: column; gap: 0.8rem; margin-top: 0.5rem; }

  /* ─── LEADERSHIP ─── */
  .company-box {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-top: 3rem;
  }

  .company-info { display: flex; flex-direction: column; gap: 1.5rem; }

  .info-row {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
  }

  .info-icon {
    width: 36px; height: 36px;
    background: var(--gold-muted);
    border: 1px solid var(--border);
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    flex-shrink: 0;
  }

  .info-text .label {
    font-size: 0.72rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 0.2rem;
    display: block;
  }

  .info-text p {
    font-size: 0.9rem;
    color: var(--white-dim);
  }

  .exit-vectors { display: flex; flex-direction: column; gap: 1rem; }
  .exit-item {
    background: var(--navy-card);
    border: 1px solid var(--border-light);
    border-radius: 2px;
    padding: 1.2rem 1.5rem;
    font-size: 0.85rem;
    color: var(--white-dim);
  }
  .exit-item strong { color: var(--gold); display: block; margin-bottom: 0.3rem; font-size: 0.82rem; }

  /* ─── FOOTER ─── */
  footer {
    background: #030a1c;
    border-top: 1px solid var(--border-light);
    padding: 4rem 0 2.5rem;
  }

  .footer-top {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-bottom: 3rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid var(--border-light);
  }

  .footer-brand {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    color: var(--white);
    margin-bottom: 0.75rem;
    display: block;
  }

  .footer-contact a {
    color: var(--gold);
    text-decoration: none;
    font-size: 0.9rem;
  }

  .footer-disclaimer {
    font-size: 0.72rem;
    color: rgba(245,240,232,0.3);
    line-height: 1.7;
  }

  .footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  .footer-bottom p { font-size: 0.75rem; color: rgba(245,240,232,0.3); }

  /* ─── SECTION LABEL ─── */
  .section-index {
    font-family: 'DM Mono', monospace;
    font-size: 4rem;
    font-weight: 500;
    color: var(--white-faint);
    position: absolute;
    top: 3.5rem;
    right: 0;
    line-height: 1;
    pointer-events: none;
    user-select: none;
  }

  /* ─── QUOTE ─── */
  .quote-block {
    border-left: 3px solid var(--gold);
    padding: 1.5rem 2rem;
    background: var(--gold-muted);
    border-radius: 0 4px 4px 0;
    margin: 3rem 0;
    font-family: 'Playfair Display', serif;
    font-size: 1.25rem;
    font-style: italic;
    color: var(--white);
    line-height: 1.6;
  }

  /* ─── ANIMATIONS ─── */
  @keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
  }

  .animate { opacity: 0; }
  .animate.visible { animation: fadeInUp 0.7s ease forwards; }
  .animate:nth-child(2) { animation-delay: 0.1s; }
  .animate:nth-child(3) { animation-delay: 0.2s; }
  .animate:nth-child(4) { animation-delay: 0.3s; }
  .animate:nth-child(5) { animation-delay: 0.4s; }

  /* Hero section alignment - left aligned */
  .hero-content { margin-left: 0; }

  /* Hero badge - moved lower for visibility */
  .hero-badge { margin-top: 1.5rem; }

  /* ─── RESPONSIVE ─── */
  @media (max-width: 900px) {
    .stat-grid, .moat-grid, .roi-grid { grid-template-columns: 1fr 1fr; }
    .product-verticals { grid-template-columns: 1fr 1fr; }
    .two-col, .invest-box, .company-box, .footer-top { grid-template-columns: 1fr; gap: 2.5rem; }
    .revenue-streams { grid-template-columns: 1fr; }
    .funds-chart { flex-direction: column; }
    .nav-links { display: none; }
    .hero-metrics { grid-template-columns: repeat(3, 1fr); }
  }

  @media (max-width: 600px) {
    section { padding: 4rem 0; }
    .stat-grid, .moat-grid, .roi-grid { grid-template-columns: 1fr; }
    .product-verticals { grid-template-columns: 1fr; }
    .bars { gap: 0.8rem; }
    .pilot-metrics { gap: 1.5rem; }
    .pilot-box { grid-template-columns: 1fr; }
    /* Exit Pathways - stack vertically in mobile */
    .exit-pathways-grid { grid-template-columns: 1fr !important; }
    /* Tranche Structure - stack vertically in mobile */
    .tranche-grid { grid-template-columns: 1fr !important; }
    /* GTM Roadmap - phase-label 1/3, phase-content 2/3 in mobile */
    .roadmap-phase { grid-template-columns: 1fr 1px 2fr !important; gap: 1rem !important; }
    .phase-label { text-align: left !important; }
  }

  /* ─── STICKY CTA BAR ─── */
  .sticky-cta {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    z-index: 99;
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.3s;
    pointer-events: none;
  }
  .sticky-cta.show {
    opacity: 1;
    transform: translateY(0);
    pointer-events: all;
  }
