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

:root {
    --ink: #0a0f1a;
    --slate: #2d3548;
    --muted: #6b7a99;
    --ghost: #9aa8c4;
    --surface: #f4f6fb;
    --white: #ffffff;
    --accent: #1a6b4a;
    --accent-light: #e8f5ee;
    --gold: #c9953c;
    --gold-light: #fdf6e8;
    --border: rgba(0,0,0,0.07);
    --red: #d44;
}

html { scroll-behavior: smooth; }

body {
    font-family: 'DM Sans', sans-serif;
    color: var(--ink);
    background: var(--white);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

.container {
    max-width: 1080px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ── NAV ─────────────────────────────────── */
nav {
    padding: 20px 0;
    border-bottom: 1px solid var(--border);
    position: sticky;
    top: 0;
    background: rgba(255,255,255,0.97);
    backdrop-filter: blur(8px);
    z-index: 100;
}
nav .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 12px;
}
.logo {
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
    font-size: 22px;
    color: var(--ink);
    letter-spacing: -0.5px;
    text-decoration: none;
    flex-shrink: 0;
}
.logo span { color: var(--accent); }
.nav-right {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}
.nav-links {
    display: flex;
    align-items: center;
    gap: 0;
    list-style: none;
}
.nav-links li a {
    font-size: 13px;
    font-weight: 500;
    color: var(--muted);
    text-decoration: none;
    padding: 6px 12px;
    border-radius: 6px;
    transition: color 0.15s, background 0.15s;
    white-space: nowrap;
}
.nav-links li a:hover {
    color: var(--accent);
    background: var(--accent-light);
}
.nav-badge {
    font-size: 12px;
    font-weight: 600;
    color: var(--muted);
    letter-spacing: 0.06em;
    text-transform: uppercase;
    white-space: nowrap;
}
.nav-version-link {
    font-size: 12px;
    font-weight: 500;
    color: var(--accent);
    text-decoration: none;
    letter-spacing: 0.01em;
    white-space: nowrap;
    opacity: 0.75;
    transition: opacity 0.15s;
}
.nav-version-link:hover { opacity: 1; text-decoration: underline; }

/* ── HAMBURGER MENU ──────────────────────── */
.hamburger-btn {
    display: none;
    background: none;
    border: none;
    font-size: 24px;
    color: var(--ink);
    cursor: pointer;
    padding: 6px 8px;
    transition: opacity 0.2s;
    flex-shrink: 0;
}
.hamburger-btn:hover {
    opacity: 0.7;
}

.nav-drawer {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.5);
    z-index: 999;
    opacity: 0;
    transition: opacity 0.25s;
}
.nav-drawer.open {
    display: flex;
}
.nav-drawer.open {
    opacity: 1;
}

.nav-drawer-content {
    background: var(--white);
    width: 100%;
    max-width: 320px;
    margin-left: -320px;
    padding: 20px 0;
    transition: margin-left 0.3s ease;
    display: flex;
    flex-direction: column;
    box-shadow: 2px 0 16px rgba(0,0,0,0.1);
    overflow-y: auto;
    max-height: 100vh;
}
.nav-drawer.open .nav-drawer-content {
    margin-left: 0;
}

.nav-drawer-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 20px 24px;
    border-bottom: 1px solid var(--border);
}
.nav-drawer-close {
    background: none;
    border: none;
    font-size: 24px;
    color: var(--ink);
    cursor: pointer;
    padding: 4px;
    transition: opacity 0.2s;
}
.nav-drawer-close:hover {
    opacity: 0.7;
}

.nav-drawer-links {
    display: flex;
    flex-direction: column;
    gap: 0;
    list-style: none;
}
.nav-drawer-links li a {
    display: block;
    font-size: 15px;
    font-weight: 500;
    color: var(--slate);
    text-decoration: none;
    padding: 14px 20px;
    border-bottom: 1px solid var(--border);
    transition: background 0.15s, color 0.15s;
}
.nav-drawer-links li a:hover {
    background: var(--accent-light);
    color: var(--accent);
}
.nav-drawer-links li:last-child a {
    border-bottom: none;
}

@media (max-width: 780px) {
    .nav-links { display: none; }
    .nav-badge { display: none; }
    .nav-version-link { display: none; }
    .hamburger-btn { display: block; }
}

/* ── HERO ────────────────────────────────── */
.hero {
    padding: 72px 0 56px;
    border-bottom: 1px solid var(--border);
}
.hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    font-weight: 600;
    color: var(--accent);
    letter-spacing: 0.06em;
    text-transform: uppercase;
    margin-bottom: 20px;
}
.hero-eyebrow .dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--accent);
}
.hero h1 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: clamp(32px, 4.5vw, 52px);
    font-weight: 700;
    line-height: 1.12;
    letter-spacing: -1.5px;
    color: var(--ink);
    max-width: 820px;
    margin-bottom: 24px;
}
.hero h1 em {
    font-style: normal;
    color: var(--accent);
}
.hero-sub {
    font-size: 18px;
    color: var(--muted);
    max-width: 640px;
    line-height: 1.65;
    margin-bottom: 32px;
}
.hero-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}
.tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 14px;
    border-radius: 100px;
    font-size: 13px;
    font-weight: 500;
}
.tag-green { background: var(--accent-light); color: var(--accent); }
.tag-gold  { background: var(--gold-light);   color: var(--gold);   }
.tag-surface { background: var(--surface);    color: var(--slate);  }

/* ── SECTION CHROME ──────────────────────── */
.section {
    padding: 56px 0;
    border-bottom: 1px solid var(--border);
}
.section-label {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--ghost);
    margin-bottom: 32px;
}

/* ── METRICS GRID ────────────────────────── */
.metrics-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 1px;
    background: var(--border);
    border: 1px solid var(--border);
    border-radius: 12px;
    overflow: hidden;
}
.metric-card {
    background: var(--white);
    padding: 28px 24px;
}
.metric-card.highlight { background: var(--ink); }
.metric-card.green-bg  { background: var(--accent); }
.metric-label {
    font-size: 12px;
    font-weight: 600;
    color: var(--ghost);
    letter-spacing: 0.05em;
    text-transform: uppercase;
    margin-bottom: 10px;
}
.metric-card.highlight .metric-label,
.metric-card.green-bg  .metric-label { color: rgba(255,255,255,0.5); }
.metric-value {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 36px;
    font-weight: 700;
    letter-spacing: -1.5px;
    color: var(--ink);
    line-height: 1;
    margin-bottom: 6px;
}
.metric-card.highlight .metric-value { color: #fff; }
.metric-card.green-bg  .metric-value { color: #fff; }
.metric-card.accent    .metric-value { color: var(--accent); }
.metric-note {
    font-size: 13px;
    color: var(--muted);
}
.metric-card.highlight .metric-note,
.metric-card.green-bg  .metric-note { color: rgba(255,255,255,0.5); }
.metric-live {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 11px;
    font-weight: 600;
    color: var(--accent);
    background: var(--accent-light);
    padding: 2px 8px;
    border-radius: 100px;
    margin-top: 6px;
}
.metric-live .pulse {
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--accent);
    animation: pulse 2s infinite;
}
@keyframes pulse {
    0%, 100% { opacity: 1; }
    50%       { opacity: 0.4; }
}

/* ── TWO COLUMN ──────────────────────────── */
.two-col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
}
@media (max-width: 680px) {
    .two-col { grid-template-columns: 1fr; gap: 32px; }
}
.info-block h3 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 20px;
    font-weight: 600;
    letter-spacing: -0.4px;
    color: var(--ink);
    margin-bottom: 12px;
}
.info-block p {
    font-size: 15px;
    color: var(--muted);
    line-height: 1.7;
    margin-bottom: 16px;
}
.info-block p:last-child { margin-bottom: 0; }
.stat-inline {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 28px;
    font-weight: 700;
    color: var(--ink);
    letter-spacing: -1px;
}
.stat-inline-label {
    font-size: 13px;
    color: var(--muted);
    margin-left: 6px;
}

/* ── TABLE ───────────────────────────────── */
.clean-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 14px;
}
.clean-table th {
    text-align: left;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--ghost);
    padding: 0 0 12px;
    border-bottom: 1px solid var(--border);
}
.clean-table td {
    padding: 14px 0;
    border-bottom: 1px solid var(--border);
    color: var(--slate);
    vertical-align: top;
}
.clean-table td:first-child {
    font-weight: 500;
    color: var(--ink);
    width: 30%;
    padding-right: 16px;
}
.clean-table tr:last-child td { border-bottom: none; }
.clean-table .check { color: var(--accent); font-weight: 700; }
.clean-table .cross  { color: #cc3333; font-weight: 700; }
.clean-table .winner td:first-child { color: var(--accent); }
.clean-table .winner td { background: var(--accent-light); }

/* ── COMPETITIVE GRID ────────────────────── */
.comp-table th, .comp-table td { padding: 12px 16px; text-align: center; }
.comp-table th:first-child,
.comp-table td:first-child   { text-align: left; }
.comp-table .col-pacer { background: var(--accent-light); }
.comp-table .col-header-pacer {
    background: var(--accent);
    color: #fff;
    font-family: 'Space Grotesk', sans-serif;
    letter-spacing: -0.2px;
}

/* ── TIMELINE ────────────────────────────── */
.timeline { display: flex; flex-direction: column; gap: 0; }
.timeline-item {
    display: grid;
    grid-template-columns: 130px 1fr;
    gap: 24px;
    padding: 24px 0;
    border-bottom: 1px solid var(--border);
    align-items: start;
}
.timeline-item:last-child { border-bottom: none; }
.timeline-date {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 13px;
    font-weight: 600;
    color: var(--ghost);
    padding-top: 2px;
    letter-spacing: 0.02em;
}
.timeline-content h3 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 17px;
    font-weight: 600;
    color: var(--ink);
    margin-bottom: 6px;
    letter-spacing: -0.3px;
}
.timeline-content p {
    font-size: 14px;
    color: var(--muted);
    line-height: 1.6;
}
.timeline-pill {
    display: inline-flex;
    align-items: center;
    font-size: 11px;
    font-weight: 700;
    padding: 3px 10px;
    border-radius: 100px;
    margin-bottom: 8px;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}
.pill-green { background: var(--accent-light); color: var(--accent); }
.pill-gold  { background: var(--gold-light);   color: var(--gold);   }
.pill-ink   { background: var(--surface);       color: var(--slate);  }
@media (max-width: 640px) {
    .timeline-item { grid-template-columns: 1fr; gap: 4px; }
    .timeline-date { font-size: 12px; }
}

/* ── TEAM CARD ───────────────────────────── */
.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 24px;
}
.team-card {
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 28px 24px;
    background: var(--white);
}
.team-avatar {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: var(--accent-light);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 20px;
    font-weight: 700;
    color: var(--accent);
    margin-bottom: 16px;
    flex-shrink: 0;
}
.team-name {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 18px;
    font-weight: 700;
    color: var(--ink);
    letter-spacing: -0.3px;
    margin-bottom: 4px;
}
.team-title {
    font-size: 13px;
    font-weight: 600;
    color: var(--accent);
    letter-spacing: 0.04em;
    text-transform: uppercase;
    margin-bottom: 14px;
}
.team-bio {
    font-size: 14px;
    color: var(--muted);
    line-height: 1.65;
    margin-bottom: 16px;
}
.team-highlights {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 6px;
}
.team-highlights li {
    font-size: 13px;
    color: var(--slate);
    padding-left: 16px;
    position: relative;
}
.team-highlights li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--accent);
    font-weight: 700;
}

/* ── HIGHLIGHT BOX ───────────────────────── */
.highlight-box {
    background: var(--surface);
    border: 1px solid var(--border);
    border-left: 3px solid var(--accent);
    border-radius: 8px;
    padding: 20px 24px;
    margin-top: 24px;
}
.highlight-box p {
    font-size: 14px;
    color: var(--slate);
    line-height: 1.65;
}
.highlight-box strong { color: var(--ink); }

/* ── DEAL TERMS BOX ──────────────────────── */
.deal-card {
    background: var(--ink);
    border-radius: 16px;
    padding: 40px 36px;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 32px;
    margin-bottom: 32px;
}
@media (max-width: 640px) {
    .deal-card { grid-template-columns: 1fr 1fr; padding: 28px 20px; gap: 20px; }
}
@media (max-width: 400px) {
    .deal-card { grid-template-columns: 1fr; }
}
.deal-item-label {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.4);
    margin-bottom: 8px;
}
.deal-item-value {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 28px;
    font-weight: 700;
    color: #fff;
    letter-spacing: -0.8px;
    line-height: 1;
    margin-bottom: 4px;
}
.deal-item-note {
    font-size: 12px;
    color: rgba(255,255,255,0.45);
}

/* ── CALLOUT STRIP ───────────────────────── */
.callout-strip {
    background: var(--accent-light);
    border: 1px solid rgba(26,107,74,0.15);
    border-radius: 10px;
    padding: 20px 24px;
    display: flex;
    align-items: flex-start;
    gap: 14px;
    margin: 24px 0;
}
.callout-strip-icon { font-size: 20px; flex-shrink: 0; margin-top: 1px; }
.callout-strip p {
    font-size: 14px;
    color: var(--slate);
    line-height: 1.6;
}
.callout-strip strong { color: var(--accent); }

/* ── BULLET LIST ─────────────────────────── */
.bullet-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 16px;
}
.bullet-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 14px;
    color: var(--slate);
    line-height: 1.55;
}
.bullet-list li::before {
    content: '→';
    color: var(--accent);
    font-weight: 700;
    flex-shrink: 0;
    margin-top: 1px;
}

/* ── CTA ─────────────────────────────────── */
.cta-section {
    padding: 64px 0 72px;
    text-align: center;
}
.cta-section h2 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: clamp(26px, 3.5vw, 38px);
    font-weight: 700;
    letter-spacing: -1px;
    color: var(--ink);
    margin-bottom: 16px;
}
.cta-section p {
    font-size: 16px;
    color: var(--muted);
    max-width: 500px;
    margin: 0 auto 32px;
    line-height: 1.65;
}
.cta-buttons {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
}
.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    background: var(--ink);
    color: var(--white);
    font-family: 'Space Grotesk', sans-serif;
    font-size: 15px;
    font-weight: 600;
    border-radius: 8px;
    text-decoration: none;
    transition: opacity 0.2s, transform 0.15s;
    letter-spacing: -0.2px;
}
.cta-button:hover { opacity: 0.88; transform: translateY(-1px); }
.cta-button.secondary {
    background: var(--surface);
    color: var(--ink);
    border: 1px solid var(--border);
}
.cta-sub {
    margin-top: 16px;
    font-size: 13px;
    color: var(--ghost);
}

/* ── INVESTOR CTA ───────────────────────── */
.investor-cta {
    padding: 48px 0;
    background: var(--ink);
}
.investor-cta-inner {
    text-align: center;
    max-width: 480px;
    margin: 0 auto;
}
.investor-cta h2 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: clamp(22px, 3vw, 28px);
    font-weight: 700;
    letter-spacing: -0.8px;
    color: #fff;
    margin-bottom: 8px;
}
.investor-cta p {
    font-size: 16px;
    color: rgba(255,255,255,0.5);
    margin-bottom: 24px;
    line-height: 1.6;
}
.investor-cta-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 12px 28px;
    background: var(--accent);
    color: #fff;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 15px;
    font-weight: 600;
    border-radius: 8px;
    text-decoration: none;
    letter-spacing: -0.2px;
    transition: opacity 0.2s, transform 0.15s;
}
.investor-cta-link:hover {
    opacity: 0.88;
    transform: translateY(-1px);
}

/* Print: investor CTA */
@media print {
    .investor-cta {
        background: #fff !important;
        border-top: 1px solid rgba(0,0,0,0.1);
    }
    .investor-cta h2 { color: #0a0f1a !important; }
    .investor-cta p { color: #6b7a99 !important; }
    .investor-cta-link {
        background: #1a6b4a !important;
        color: #fff !important;
        -webkit-print-color-adjust: exact;
        print-color-adjust: exact;
    }
}

/* ── ANCHOR OFFSET ───────────────────────── */
[id] { scroll-margin-top: 72px; }

/* ── DIVIDER ─────────────────────────────── */
.divider-label {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 36px;
}
.divider-label span {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--ghost);
    white-space: nowrap;
}
.divider-label::after {
    content: '';
    flex: 1;
    height: 1px;
    background: var(--border);
}

/* ── FOOTER ──────────────────────────────── */
footer {
    border-top: 1px solid var(--border);
    padding: 24px 0;
}
footer .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 12px;
}
footer p { font-size: 13px; color: var(--ghost); }
footer a { color: var(--ghost); text-decoration: none; }
footer a:hover { color: var(--accent); }

/* ── RESPONSIVE ──────────────────────────── */
@media (max-width: 640px) {
    .metrics-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 420px) {
    .metrics-grid { grid-template-columns: 1fr; }
}
@media (max-width: 680px) {
    .cac-payback-grid { grid-template-columns: 1fr !important; gap: 28px !important; }
    .ltv-cac-grid { grid-template-columns: 1fr !important; gap: 28px !important; }
}

/* ── CONFIDENTIAL BANNER ─────────────────── */
.confidential-bar {
    background: var(--gold-light);
    border-bottom: 1px solid rgba(201,149,60,0.2);
    padding: 10px 0;
    text-align: center;
}
.confidential-bar p {
    font-size: 12px;
    font-weight: 600;
    color: var(--gold);
    letter-spacing: 0.05em;
}

/* ── PASSCODE GATE ─────────────────────────────── */
.investor-gate {
    position: fixed;
    inset: 0;
    z-index: 9999;
    background: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
}
.investor-unlocked .investor-gate {
    display: none;
}
.gate-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 48px 40px;
    max-width: 400px;
    width: 100%;
    text-align: center;
    box-shadow: 0 4px 24px rgba(0,0,0,0.06);
}
.gate-logo {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 22px;
    font-weight: 700;
    color: var(--ink);
    letter-spacing: -0.5px;
    margin-bottom: 32px;
    display: block;
}
.gate-logo span { color: var(--accent); }
.gate-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 20px;
    font-weight: 600;
    color: var(--ink);
    margin-bottom: 8px;
}
.gate-subtitle {
    font-size: 14px;
    color: var(--muted);
    margin-bottom: 28px;
    line-height: 1.5;
}
.gate-input-wrap {
    position: relative;
    margin-bottom: 12px;
}
.gate-input {
    width: 100%;
    padding: 14px 18px;
    border: 1.5px solid var(--border);
    border-radius: 10px;
    font-family: 'DM Sans', sans-serif;
    font-size: 15px;
    color: var(--ink);
    background: var(--surface);
    outline: none;
    transition: border-color 0.15s;
    text-align: center;
    letter-spacing: 2px;
}
.gate-input:focus {
    border-color: var(--accent);
    background: var(--white);
}
.gate-input.error {
    border-color: #e53e3e;
    animation: shake 0.3s ease;
}
@keyframes shake {
    0%, 100% { transform: translateX(0); }
    25% { transform: translateX(-6px); }
    75% { transform: translateX(6px); }
}
.gate-error {
    font-size: 13px;
    color: #e53e3e;
    margin-bottom: 12px;
    min-height: 18px;
}
.gate-btn {
    width: 100%;
    padding: 14px;
    background: var(--accent);
    color: var(--white);
    border: none;
    border-radius: 10px;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: opacity 0.15s, transform 0.1s;
}
.gate-btn:hover { opacity: 0.88; transform: translateY(-1px); }
.gate-btn:active { transform: translateY(0); }
.gate-lock {
    width: 44px;
    height: 44px;
    background: var(--accent-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 20px;
}

/* ── PLATFORM CARDS OPTIMIZATION ────────────────────── */
.platform-card {
    border-color: rgba(59,130,246,0.25);
    background: rgba(59,130,246,0.04);
}

.platform-card-header {
    display: flex;
    gap: 6px;
    flex-wrap: wrap;
    margin-bottom: 10px;
}

.platform-tag {
    background: rgba(59,130,246,0.15);
    color: #2563eb;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.06em;
    border-radius: 4px;
    padding: 2px 8px;
}

.platform-tag-surface {
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.04em;
    padding: 2px 8px;
}

.platform-card-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    font-weight: 600;
    color: var(--accent);
    text-decoration: none;
    margin-top: 4px;
}

.platform-card-link:hover {
    opacity: 0.8;
}

/* Validated card variant */
.platform-card.validated {
    border-color: rgba(34,197,94,0.3);
    background: rgba(34,197,94,0.03);
}

.platform-tag.validated {
    background: rgba(34,197,94,0.15);
    color: #16a34a;
}

/* Spacing utilities to replace inline styles */
.mt-28 { margin-top: 28px; }
.mt-32 { margin-top: 32px; }
.mt-40 { margin-top: 40px; }
.mb-28 { margin-bottom: 28px; }

.font-space-grotesk { font-family: 'Space Grotesk', sans-serif; }
.text-sm { font-size: 12px; color: var(--ghost); }
.text-accent-lg { font-family: 'Space Grotesk', sans-serif; font-size: 24px; font-weight: 700; color: var(--accent); letter-spacing: -0.8px; }

/* Legend items */
.legend-item {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    color: var(--muted);
}

.legend-dot {
    display: inline-block;
    width: 10px;
    height: 10px;
    border-radius: 50%;
}

/* CAC Payback metric cards */
.metric-card {
    border: 1px solid var(--border);
    border-radius: 10px;
    padding: 18px 16px;
}

.metric-card.accent-bg {
    background: var(--accent-light);
}

.metric-label {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--ghost);
    margin-bottom: 6px;
}

.metric-label.accent {
    color: var(--accent);
}

.metric-value {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 24px;
    font-weight: 700;
    color: var(--ink);
    letter-spacing: -0.8px;
}

.metric-value-small {
    font-size: 13px;
    font-weight: 500;
    color: var(--accent);
    letter-spacing: 0;
}

.mt-48 { margin-top: 48px; }

.section-description {
    font-size: 15px;
    color: var(--muted);
    margin-bottom: 28px;
    max-width: 760px;
    line-height: 1.7;
}

/* ── LITE PAGE UTILITY CLASSES ───────────────── */

/* Spacing */
.mt-8  { margin-top: 8px; }
.mt-16 { margin-top: 16px; }
.mb-16 { margin-bottom: 16px; }
.mb-20 { margin-bottom: 20px; }
.mb-32 { margin-bottom: 32px; }

/* Overflow table wrapper */
.overflow-table { overflow-x: auto; }

/* Tag row (team section flex wrapper) */
.tag-row {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

/* Nav drawer labels */
.drawer-nav-label {
    font-size: 13px;
    font-weight: 600;
    color: var(--muted);
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.drawer-footer {
    padding: 20px;
    border-top: 1px solid var(--border);
    margin-top: auto;
}

.drawer-footer-label {
    font-size: 12px;
    color: var(--muted);
    letter-spacing: 0.06em;
    text-transform: uppercase;
    font-weight: 600;
}

/* Team expansion card */
.team-card-expansion { background: var(--surface); }
.team-avatar-expansion { background: rgba(0,0,0,0.06); color: var(--ghost); }
.team-name-muted { color: var(--muted); }
.team-title-ghost { color: var(--ghost); }
.team-bio-ghost { color: var(--ghost); }
.team-highlights-muted { color: var(--muted); }

/* CAC / KPI hero card */
.kpi-two-col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: start;
}

.kpi-hero-card {
    background: var(--ink);
    border-radius: 16px;
    padding: 36px 32px;
    margin-bottom: 24px;
}

.kpi-hero-label {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.4);
    margin-bottom: 12px;
}

.kpi-hero-value {
    font-family: 'Space Grotesk', sans-serif;
    font-size: clamp(52px,7vw,80px);
    font-weight: 700;
    color: #fff;
    letter-spacing: -3px;
    line-height: 1;
}

.kpi-hero-unit {
    font-size: clamp(22px,3vw,32px);
    letter-spacing: -1px;
}

.kpi-hero-note {
    font-size: 14px;
    color: rgba(255,255,255,0.5);
    margin-top: 10px;
}

.kpi-formula-card {
    background: var(--accent-light);
    border: 1px solid rgba(26,107,74,0.15);
    border-radius: 10px;
    padding: 20px 24px;
}

.kpi-formula-title {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 14px;
}

.kpi-formula-body {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 15px;
    color: var(--ink);
    line-height: 1.8;
    letter-spacing: -0.2px;
}

.kpi-formula-muted { color: var(--muted); }
.kpi-formula-sm { font-size: 13px; }

.kpi-formula-result {
    color: var(--accent);
    font-size: 17px;
}

/* Mini metrics 2-col grid (CAC breakdown) */
.mini-metrics-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-top: 24px;
}

/* Last Updated meta line */
.data-room-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 12px;
    color: var(--muted);
    padding: 8px 0 16px;
}
.data-room-meta-email {
    color: var(--accent);
    text-decoration: none;
    font-weight: 500;
    transition: opacity 0.15s;
}
.data-room-meta-email:hover {
    opacity: 0.8;
    text-decoration: underline;
}
@media (max-width: 480px) {
    .data-room-meta {
        flex-direction: column;
        align-items: flex-start;
        gap: 4px;
    }
}

/* Muted small suffix in metric-value */
.muted-sm {
    font-size: 13px;
    font-weight: 500;
    color: var(--muted);
    letter-spacing: 0;
}

/* Responsive: stack kpi-two-col on mobile */
@media (max-width: 680px) {
    .kpi-two-col {
        grid-template-columns: 1fr;
        gap: 28px;
    }
}

/* ── PRINT STYLES ───────────────────────────────────── */
@media print {
    /* Hide everything that shouldn't appear on paper */
    nav,
    .hamburger-btn,
    .nav-drawer,
    .investor-gate,
    .confidential-bar,
    footer,
    .data-room-meta-email {
        display: none !important;
    }

    /* Reset body background & font for clean printing */
    body {
        background: #fff !important;
        color: #0a0f1a !important;
        -webkit-print-color-adjust: exact;
        print-color-adjust: exact;
    }

    /* Remove sticky positioning */
    nav {
        position: static !important;
    }

    /* Kill page break inside sections; allow between */
    .section {
        page-break-inside: avoid;
        break-inside: avoid;
    }

    /* Keep metric cards intact */
    .metrics-grid {
        page-break-inside: avoid;
        break-inside: avoid;
    }

    /* Dark-bg cards: add visible border so values are readable without color */
    .metric-card.highlight,
    .metric-card.green-bg,
    .kpi-hero-card,
    .deal-card {
        border: 1px solid rgba(0,0,0,0.15) !important;
        background: #fff !important;
    }
    .metric-card.highlight .metric-value,
    .metric-card.green-bg .metric-value,
    .kpi-hero-value,
    .kpi-hero-unit,
    .deal-item-value {
        color: #0a0f1a !important;
    }
    .metric-card.highlight .metric-label,
    .metric-card.green-bg .metric-label,
    .metric-card.highlight .metric-note,
    .metric-card.green-bg .metric-note,
    .kpi-hero-note,
    .deal-item-note {
        color: #6b7a99 !important;
    }
    .metric-card.highlight .metric-live,
    .metric-card.green-bg .metric-live {
        background: #e8f5ee !important;
        color: #1a6b4a !important;
    }

    /* Light tinted cards */
    .metric-card.accent-bg {
        background: #f4f6fb !important;
    }

    /* Competitive table winner rows */
    .comp-table .winner td {
        background: #e8f5ee !important;
        -webkit-print-color-adjust: exact;
        print-color-adjust: exact;
    }

    /* Hero tags stay visible */
    .tag-green  { background: #e8f5ee !important; color: #1a6b4a !important; }
    .tag-gold   { background: #fdf6e8 !important; color: #c9953c !important; }
    .tag-surface { background: #f4f6fb !important;  color: #2d3548 !important; }

    /* Pills */
    .pill-green { background: #e8f5ee !important; color: #1a6b4a !important; }
    .pill-gold  { background: #fdf6e8 !important; color: #c9953c !important; }
    .pill-ink   { background: #f4f6fb !important; color: #2d3548 !important; }

    /* Team card expansion */
    .team-card-expansion { background: #f4f6fb !important; }
    .team-avatar-expansion { background: rgba(0,0,0,0.08) !important; color: #6b7a99 !important; }

    /* Formula card */
    .kpi-formula-card { background: #e8f5ee !important; }
    .kpi-formula-result { color: #1a6b4a !important; }

    /* Callout strip */
    .callout-strip {
        background: #e8f5ee !important;
        border-color: rgba(26,107,74,0.2) !important;
    }

    /* Highlight box */
    .highlight-box {
        background: #f4f6fb !important;
        border-left-color: #1a6b4a !important;
    }

    /* Platform card variants */
    .platform-card {
        background: rgba(59,130,246,0.04) !important;
        border-color: rgba(59,130,246,0.25) !important;
    }
    .platform-card.validated {
        background: rgba(34,197,94,0.03) !important;
        border-color: rgba(34,197,94,0.3) !important;
    }

    /* Links should show URL after text */
    a[href]::after {
        content: none;
    }
}
