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

:root {
    --bg: #fafafa;
    --bg-raised: #ffffff;
    --bg-card: #ffffff;
    --bg-card-hover: #f5f5f7;
    --bg-deep: #0b0c1b;
    --text: #0f0f1e;
    --text-dim: #5b5f7a;
    --text-soft: #8b8fa8;
    --accent: #4338ca;
    --accent-light: #6366f1;
    --accent-deep: #3730a3;
    --accent-glow: rgba(67,56,202,0.06);
    --green: #059669;
    --amber: #d97706;
    --pink: #db2777;
    --border: rgba(15,15,30,0.08);
    --border-strong: rgba(15,15,30,0.14);
    --border-accent: rgba(67,56,202,0.22);
    --r: 10px;
    --r-lg: 14px;
    --r-xl: 20px;
    --max: 1120px;
    --font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --mono: 'JetBrains Mono', 'SF Mono', 'Fira Code', monospace;
    --shadow-sm: 0 1px 3px rgba(15,15,30,0.04);
    --shadow-md: 0 4px 14px rgba(15,15,30,0.06);
    --shadow-lg: 0 10px 40px rgba(67,56,202,0.10);
}

html { scroll-behavior: smooth; }
body {
    font-family: var(--font);
    background: var(--bg);
    color: var(--text);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* ── NAV ── */
.site-nav {
    position: fixed; top: 0; left: 0; right: 0; z-index: 100;
    background: rgba(250,250,250,0.85);
    backdrop-filter: saturate(180%) blur(18px);
    -webkit-backdrop-filter: saturate(180%) blur(18px);
    border-bottom: 1px solid var(--border);
}
.nav-inner {
    max-width: var(--max); margin: 0 auto;
    display: flex; align-items: center; justify-content: space-between;
    padding: 0 2rem; height: 64px;
}
.nav-logo {
    display: flex; align-items: center; gap: 0.6rem;
    text-decoration: none; color: var(--text);
}
.nav-logo img { height: 28px; flex-shrink: 0; }
.nav-logo .logo-text {
    display: flex; flex-direction: column; line-height: 1;
    font-weight: 700; font-size: 0.92rem; letter-spacing: -0.005em;
    text-transform: none; color: var(--text);
}
.nav-logo .logo-sub {
    font-size: 0.62rem; font-weight: 500;
    letter-spacing: 0.14em; text-transform: uppercase;
    color: var(--accent); margin-top: 3px;
}
.nav-links { display: flex; align-items: center; gap: 0.1rem; list-style: none; }
.nav-links a {
    color: var(--text-dim); text-decoration: none;
    font-size: 0.82rem; font-weight: 500; padding: 0.42rem 0.9rem;
    border-radius: 6px; transition: color 0.15s, background 0.15s;
}
.nav-links a:hover { color: var(--text); background: rgba(15,15,30,0.04); }
.nav-links a.current { color: var(--text); }
.nav-links .nav-cta-btn {
    background: var(--accent); color: #fff !important; font-weight: 600;
    padding: 0.48rem 1.05rem; border-radius: 7px; margin-left: 0.5rem;
    transition: background 0.15s, transform 0.15s, box-shadow 0.15s;
}
.nav-links .nav-cta-btn:hover { background: var(--accent-deep); transform: translateY(-1px); box-shadow: 0 6px 18px rgba(67,56,202,0.25); }

.hamburger {
    display: none; background: none; border: none; cursor: pointer;
    width: 28px; height: 28px; flex-direction: column; justify-content: center; gap: 5px; z-index: 200;
}
.hamburger span { display: block; width: 100%; height: 2px; background: var(--text); border-radius: 2px; transition: 0.3s; }
.hamburger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-nav {
    display: none; position: fixed; inset: 0; z-index: 150;
    background: rgba(250,250,250,0.98); backdrop-filter: blur(20px);
    flex-direction: column; align-items: center; justify-content: center; gap: 0.25rem;
}
.mobile-nav.open { display: flex; }
.mobile-nav a {
    color: var(--text-dim); text-decoration: none; font-size: 1.15rem;
    font-weight: 500; padding: 0.9rem 2rem; width: 100%; text-align: center;
    transition: color 0.15s;
}
.mobile-nav a:hover, .mobile-nav a.current { color: var(--text); }

/* ── INVESTOR RIBBON ── */
.investor-ribbon {
    background: linear-gradient(90deg, var(--accent-deep), var(--accent) 50%, var(--pink));
    color: #fff; font-size: 0.78rem; font-weight: 500; letter-spacing: 0.02em;
    text-align: center; padding: 0.5rem 1rem;
    position: relative; z-index: 99;
}
.investor-ribbon a { color: #fff; text-decoration: underline; text-underline-offset: 3px; font-weight: 600; }
.investor-ribbon strong { font-weight: 700; margin-right: 0.3rem; }

/* ── LAYOUT ── */
.container { max-width: var(--max); margin: 0 auto; padding: 0 2rem; }
.container-narrow { max-width: 820px; margin: 0 auto; padding: 0 2rem; }
.page-top { padding-top: 130px; padding-bottom: 60px; }
.section { padding: 84px 0; }
.section + .section { border-top: 1px solid var(--border); }

.label {
    font-size: 0.7rem; font-weight: 700; letter-spacing: 0.18em;
    text-transform: uppercase; color: var(--accent); margin-bottom: 0.75rem;
}
.title {
    font-size: clamp(1.7rem, 3.6vw, 2.4rem); font-weight: 700;
    line-height: 1.18; letter-spacing: -0.025em; margin-bottom: 0.85rem;
}
.subtitle {
    font-size: 0.98rem; color: var(--text-dim); line-height: 1.75;
    max-width: 620px; margin-bottom: 2.75rem;
}
.center { text-align: center; margin-left: auto; margin-right: auto; }
.max-640 { max-width: 640px; }
.max-720 { max-width: 720px; }

/* ── BUTTONS ── */
.btn {
    display: inline-flex; align-items: center; gap: 0.5rem;
    padding: 0.78rem 1.7rem; border-radius: 9px;
    font-size: 0.9rem; font-weight: 600; text-decoration: none;
    transition: all 0.18s; cursor: pointer; border: none;
    font-family: var(--font); letter-spacing: 0.005em;
}
.btn-primary { background: var(--accent); color: #fff; }
.btn-primary:hover { background: var(--accent-deep); transform: translateY(-1px); box-shadow: 0 8px 24px rgba(67,56,202,0.24); }
.btn-ghost { background: transparent; color: var(--text); border: 1px solid var(--border-strong); }
.btn-ghost:hover { border-color: var(--accent); color: var(--accent); background: var(--accent-glow); }
.btn-lg { padding: 0.95rem 2.1rem; font-size: 0.98rem; }

/* ── HERO (home) ── */
.hero {
    min-height: 90vh; display: flex; align-items: center;
    position: relative; overflow: hidden;
    padding-top: 100px;
}
.hero::before {
    content: ''; position: absolute;
    top: 20%; left: 50%; transform: translate(-50%,-50%);
    width: 900px; height: 900px;
    background: radial-gradient(circle, rgba(67,56,202,0.06), transparent 62%);
    pointer-events: none; z-index: 0;
}
.hero::after {
    content: ''; position: absolute;
    bottom: -30%; right: -10%;
    width: 600px; height: 600px;
    background: radial-gradient(circle, rgba(219,39,119,0.04), transparent 65%);
    pointer-events: none; z-index: 0;
}
.hero .container { position: relative; z-index: 1; }
.hero-eyebrow {
    display: inline-flex; align-items: center; gap: 0.5rem;
    padding: 0.38rem 0.95rem; border-radius: 100px;
    background: rgba(67,56,202,0.06); border: 1px solid var(--border-accent);
    font-size: 0.74rem; font-weight: 600; color: var(--accent);
    margin-bottom: 1.75rem; letter-spacing: 0.03em;
}
.hero-eyebrow .dot {
    width: 7px; height: 7px; background: var(--green); border-radius: 50%;
    animation: blink 2s infinite;
    box-shadow: 0 0 8px rgba(5,150,105,0.5);
}
@keyframes blink { 0%,100% { opacity:1; } 50% { opacity:0.4; } }
.hero-h1 {
    font-size: clamp(2.4rem, 5.6vw, 4rem); font-weight: 800;
    line-height: 1.02; letter-spacing: -0.04em; margin-bottom: 1.6rem;
    max-width: 820px;
}
.grad {
    background: linear-gradient(135deg, #4338ca 0%, #7c3aed 55%, #db2777 100%);
    -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.hero-p {
    font-size: 1.08rem; color: var(--text-dim); line-height: 1.78;
    max-width: 580px; margin-bottom: 2.4rem;
}
.hero-p strong { color: var(--text); font-weight: 600; }
.hero-actions { display: flex; gap: 0.8rem; flex-wrap: wrap; align-items: center; }
.hero-meta {
    margin-top: 2.5rem;
    display: flex; gap: 2rem; flex-wrap: wrap;
    font-size: 0.78rem; color: var(--text-soft);
}
.hero-meta span { display: inline-flex; align-items: center; gap: 0.4rem; }
.hero-meta span::before {
    content: ''; width: 5px; height: 5px; border-radius: 50%;
    background: var(--accent); display: inline-block;
}

/* ── HEADLINE STATS BAR ── */
.stats-bar {
    display: grid; grid-template-columns: repeat(5,1fr); gap: 1px;
    background: var(--border); border: 1px solid var(--border);
    border-radius: var(--r-lg); overflow: hidden; margin: -40px 0 0;
    position: relative; z-index: 2; box-shadow: var(--shadow-md);
}
.stats-bar .stat {
    background: var(--bg-raised); text-align: center; padding: 1.7rem 0.75rem;
    transition: background 0.2s;
}
.stats-bar .stat:hover { background: var(--accent-glow); }
.stat-val {
    font-family: var(--mono); font-size: 1.7rem; font-weight: 700;
    background: linear-gradient(135deg, var(--accent), #7c3aed);
    -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
    line-height: 1.2; margin-bottom: 0.25rem;
}
.stat-lbl { font-size: 0.7rem; color: var(--text-dim); font-weight: 500; letter-spacing: 0.03em; }

/* ── BIG HEADLINE STATS (investor-grade) ── */
.big-stats {
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem;
    margin: 2.5rem 0;
}
.big-stat {
    background: var(--bg-card); border: 1px solid var(--border);
    border-radius: var(--r-lg); padding: 2rem 1.75rem;
    position: relative; overflow: hidden;
    transition: border-color 0.2s, box-shadow 0.2s, transform 0.2s;
}
.big-stat:hover { border-color: var(--border-accent); box-shadow: var(--shadow-lg); transform: translateY(-2px); }
.big-stat::before {
    content: ''; position: absolute; left: 0; top: 0; width: 3px; height: 100%;
    background: linear-gradient(180deg, var(--accent), var(--pink));
}
.big-stat-val {
    font-family: var(--mono); font-size: 2.6rem; font-weight: 800;
    color: var(--text); line-height: 1; margin-bottom: 0.5rem;
    letter-spacing: -0.02em;
}
.big-stat-val .unit { font-size: 1.4rem; opacity: 0.6; font-weight: 600; }
.big-stat-lbl {
    font-size: 0.72rem; font-weight: 700; letter-spacing: 0.14em;
    text-transform: uppercase; color: var(--accent); margin-bottom: 0.6rem;
}
.big-stat p { font-size: 0.88rem; color: var(--text-dim); line-height: 1.6; }

/* ── CARDS ── */
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; }

.card {
    background: var(--bg-card); border: 1px solid var(--border);
    border-radius: var(--r-lg); padding: 2rem;
    transition: border-color 0.2s, box-shadow 0.2s, transform 0.2s;
    box-shadow: var(--shadow-sm);
}
.card:hover { border-color: var(--border-accent); box-shadow: var(--shadow-md); transform: translateY(-2px); }
.card-icon {
    width: 44px; height: 44px; border-radius: 11px;
    display: flex; align-items: center; justify-content: center;
    font-family: var(--mono); font-size: 1.05rem; font-weight: 800;
    margin-bottom: 1.15rem;
}
.card-icon.purple { background: rgba(67,56,202,0.09); color: var(--accent); }
.card-icon.pink { background: rgba(219,39,119,0.09); color: var(--pink); }
.card-icon.green { background: rgba(5,150,105,0.09); color: var(--green); }
.card-icon.amber { background: rgba(217,119,6,0.09); color: var(--amber); }
.card h3 { font-size: 1.12rem; font-weight: 700; margin-bottom: 0.25rem; letter-spacing: -0.01em; }
.card .card-tag {
    font-size: 0.68rem; font-weight: 700; letter-spacing: 0.1em;
    text-transform: uppercase; color: var(--text-soft); margin-bottom: 0.9rem;
}
.card p { font-size: 0.88rem; color: var(--text-dim); line-height: 1.72; }
.card ul { list-style: none; margin-top: 0.9rem; display: flex; flex-direction: column; gap: 0.45rem; }
.card ul li {
    font-size: 0.84rem; color: var(--text-dim); padding-left: 1.3rem;
    position: relative; line-height: 1.55;
}
.card ul li::before {
    content: "\2713"; position: absolute; left: 0;
    color: var(--green); font-size: 0.82rem; font-weight: 700;
}

/* ── PULL QUOTE / THESIS ── */
.thesis {
    background: var(--bg-card); border: 1px solid var(--border-accent);
    border-radius: var(--r-xl); padding: 3rem 2.5rem;
    position: relative; overflow: hidden;
    box-shadow: var(--shadow-md);
}
.thesis::before {
    content: '"'; position: absolute; top: -1.5rem; left: 1.5rem;
    font-family: Georgia, serif; font-size: 7rem; color: var(--accent);
    opacity: 0.12; line-height: 1;
}
.thesis-body {
    font-size: clamp(1.15rem, 2.2vw, 1.45rem); font-weight: 600;
    line-height: 1.45; letter-spacing: -0.015em;
    color: var(--text); max-width: 720px;
}
.thesis-body em { color: var(--accent); font-style: normal; }
.thesis-attr {
    margin-top: 1.25rem; font-size: 0.82rem; color: var(--text-soft);
    font-weight: 500; letter-spacing: 0.02em;
}

/* ── TAM / OPPORTUNITY ── */
.opportunity-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0.75rem; }
.opp-tile {
    background: var(--bg-card); border: 1px solid var(--border);
    border-radius: var(--r); padding: 1.35rem 1.1rem;
    text-align: left;
    transition: border-color 0.2s, transform 0.2s;
}
.opp-tile:hover { border-color: var(--border-accent); transform: translateY(-2px); }
.opp-vert {
    font-size: 0.64rem; font-weight: 700; letter-spacing: 0.12em;
    text-transform: uppercase; color: var(--text-soft); margin-bottom: 0.5rem;
}
.opp-val {
    font-family: var(--mono); font-size: 1.55rem; font-weight: 800;
    color: var(--text); line-height: 1; margin-bottom: 0.35rem;
    letter-spacing: -0.02em;
}
.opp-val .unit { font-size: 0.9rem; opacity: 0.55; font-weight: 600; }
.opp-tile p { font-size: 0.76rem; color: var(--text-dim); line-height: 1.55; }

/* ── TRACTION TIMELINE ── */
.timeline {
    position: relative; padding-left: 2.25rem;
    border-left: 2px solid var(--border);
    margin-top: 0.5rem;
}
.timeline-item {
    position: relative; padding-bottom: 2rem;
}
.timeline-item:last-child { padding-bottom: 0; }
.timeline-item::before {
    content: ''; position: absolute;
    left: -2.32rem; top: 0.3rem;
    width: 12px; height: 12px; border-radius: 50%;
    background: var(--bg); border: 2px solid var(--accent);
    box-shadow: 0 0 0 4px var(--bg);
}
.timeline-item.now::before { background: var(--accent); box-shadow: 0 0 0 4px var(--bg), 0 0 12px var(--accent); }
.timeline-item.next::before { background: var(--bg); border-color: var(--text-soft); opacity: 0.6; }
.timeline-date {
    font-size: 0.7rem; font-weight: 700; letter-spacing: 0.12em;
    text-transform: uppercase; color: var(--accent);
    margin-bottom: 0.35rem;
}
.timeline-item.next .timeline-date { color: var(--text-soft); }
.timeline-title {
    font-size: 1rem; font-weight: 700; margin-bottom: 0.3rem;
    letter-spacing: -0.01em;
}
.timeline-body { font-size: 0.86rem; color: var(--text-dim); line-height: 1.65; max-width: 560px; }

/* ── MOAT GRID ── */
.moat-grid {
    display: grid; grid-template-columns: repeat(2, 1fr); gap: 1rem;
}
.moat-card {
    background: var(--bg-card); border: 1px solid var(--border);
    border-radius: var(--r-lg); padding: 1.6rem 1.75rem;
    position: relative;
    transition: border-color 0.2s, box-shadow 0.2s;
}
.moat-card:hover { border-color: var(--border-accent); box-shadow: var(--shadow-md); }
.moat-tag {
    display: inline-block;
    font-family: var(--mono); font-size: 0.68rem; font-weight: 700;
    letter-spacing: 0.08em; color: var(--accent);
    background: var(--accent-glow); padding: 0.2rem 0.55rem;
    border-radius: 4px; margin-bottom: 0.75rem;
}
.moat-card h4 { font-size: 0.98rem; font-weight: 700; margin-bottom: 0.4rem; letter-spacing: -0.01em; }
.moat-card p { font-size: 0.85rem; color: var(--text-dim); line-height: 1.65; }

/* ── STAGE CARDS ── */
.stages { display: flex; gap: 0; align-items: stretch; }
.stage {
    flex: 1; background: var(--bg-card); border: 1px solid var(--border);
    border-radius: var(--r); padding: 1.85rem 1.5rem;
    transition: border-color 0.2s, box-shadow 0.2s;
}
.stage:hover { border-color: var(--border-accent); box-shadow: var(--shadow-md); }
.stage-num {
    font-family: var(--mono); font-size: 0.78rem; font-weight: 700;
    color: var(--accent); margin-bottom: 0.8rem; letter-spacing: 0.08em;
}
.stage h3 { font-size: 1rem; font-weight: 700; margin-bottom: 0.55rem; }
.stage p { font-size: 0.84rem; color: var(--text-dim); line-height: 1.65; }
.stage-arrow {
    display: flex; align-items: center; padding: 0 0.6rem;
    color: var(--accent); opacity: 0.4; font-size: 1.3rem;
}

/* ── RESULT BLOCKS ── */
.result-block {
    background: var(--bg-card); border: 1px solid var(--border);
    border-radius: var(--r); padding: 1.65rem;
    transition: border-color 0.2s, box-shadow 0.2s, transform 0.2s;
}
.result-block:hover { border-color: var(--border-accent); box-shadow: var(--shadow-md); transform: translateY(-2px); }
.result-domain {
    font-size: 0.68rem; font-weight: 700; letter-spacing: 0.1em;
    text-transform: uppercase; color: var(--green); margin-bottom: 0.65rem;
}
.result-num {
    font-family: var(--mono); font-size: 1.4rem; font-weight: 700;
    background: linear-gradient(135deg, var(--accent), #7c3aed);
    -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
    margin-bottom: 0.5rem; letter-spacing: -0.01em;
}
.result-block p { font-size: 0.82rem; color: var(--text-dim); line-height: 1.65; }

/* ── INDUSTRY CARDS ── */
.ind-card {
    background: var(--bg-card); border: 1px solid var(--border);
    border-radius: var(--r); padding: 1.65rem; transition: border-color 0.2s;
}
.ind-card:hover { border-color: var(--border-accent); }
.ind-icon {
    width: 36px; height: 36px; border-radius: 8px;
    background: var(--accent-glow); color: var(--accent);
    display: flex; align-items: center; justify-content: center;
    margin-bottom: 0.9rem;
}
.ind-card h3 { font-size: 0.94rem; font-weight: 700; margin-bottom: 0.35rem; }
.ind-card p { font-size: 0.82rem; color: var(--text-dim); line-height: 1.65; }

/* ── MARKET STATS ── */
.market-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.25rem; }
.market-stat {
    background: var(--bg-card); border: 1px solid var(--border);
    border-radius: var(--r); padding: 1.65rem; text-align: center;
    transition: border-color 0.2s, box-shadow 0.2s;
}
.market-stat:hover { border-color: var(--border-accent); box-shadow: var(--shadow-md); }
.market-val {
    font-family: var(--mono); font-size: 2.15rem; font-weight: 800;
    background: linear-gradient(135deg, var(--accent), #7c3aed);
    -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
    margin-bottom: 0.5rem; letter-spacing: -0.02em;
}
.market-stat p { font-size: 0.86rem; color: var(--text-dim); line-height: 1.65; }

/* ── TEAM ── */
.team-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; max-width: 680px; }
.team-card {
    background: var(--bg-card); border: 1px solid var(--border);
    border-radius: var(--r-lg); padding: 1.85rem; text-align: center;
    transition: border-color 0.2s, box-shadow 0.2s;
}
.team-card:hover { border-color: var(--border-accent); box-shadow: var(--shadow-md); }
.team-avatar {
    width: 64px; height: 64px; border-radius: 50%;
    background: linear-gradient(135deg, var(--accent), #7c3aed);
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto 0.95rem; font-size: 1.15rem; font-weight: 700; color: #fff;
    box-shadow: 0 4px 14px rgba(67,56,202,0.2);
}
.team-card h3 { font-size: 1.05rem; font-weight: 700; margin-bottom: 0.2rem; }
.team-card .team-role { font-size: 0.76rem; color: var(--accent); font-weight: 700; margin-bottom: 0.75rem; letter-spacing: 0.03em; }
.team-card p { font-size: 0.84rem; color: var(--text-dim); line-height: 1.65; }

/* ── MOAT LIST (about) ── */
.moat-item {
    display: flex; gap: 1.1rem; align-items: flex-start;
    padding: 1.35rem 0; border-bottom: 1px solid var(--border);
}
.moat-item:last-child { border-bottom: none; }
.moat-num {
    width: 32px; height: 32px; border-radius: 8px;
    background: var(--accent-glow); color: var(--accent);
    display: flex; align-items: center; justify-content: center;
    font-family: var(--mono); font-size: 0.82rem; font-weight: 700; flex-shrink: 0;
}
.moat-body h4 { font-size: 0.98rem; font-weight: 700; margin-bottom: 0.3rem; letter-spacing: -0.01em; }
.moat-body p { font-size: 0.86rem; color: var(--text-dim); line-height: 1.7; }

/* ── BUILT / NEXT ── */
.roadmap-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; }
.roadmap-col {
    background: var(--bg-card); border: 1px solid var(--border);
    border-radius: var(--r-lg); padding: 1.85rem;
    transition: border-color 0.2s, box-shadow 0.2s;
}
.roadmap-col:hover { border-color: var(--border-accent); box-shadow: var(--shadow-md); }
.roadmap-col h3 {
    font-size: 0.78rem; font-weight: 700; text-transform: uppercase;
    letter-spacing: 0.14em; margin-bottom: 1.1rem;
}
.roadmap-col.done h3 { color: var(--green); }
.roadmap-col.next h3 { color: var(--accent); }
.roadmap-col ul { list-style: none; display: flex; flex-direction: column; gap: 0.55rem; }
.roadmap-col ul li {
    font-size: 0.86rem; color: var(--text-dim); padding-left: 1.4rem;
    position: relative; line-height: 1.5;
}
.roadmap-col.done ul li::before { content: "\2713"; position: absolute; left: 0; color: var(--green); font-weight: 700; }
.roadmap-col.next ul li::before { content: "\25B6"; position: absolute; left: 0; color: var(--accent); font-size: 0.72rem; top: 0.2rem; }

/* ── INVESTOR ASK CARD ── */
.investor-ask {
    background: linear-gradient(135deg, #0f0f1e 0%, #1a1533 55%, #2a1a4a 100%);
    color: #fff; border-radius: var(--r-xl); padding: 3rem 2.5rem;
    box-shadow: 0 20px 60px rgba(67,56,202,0.18);
    position: relative; overflow: hidden;
}
.investor-ask::before {
    content: ''; position: absolute; top: -40%; right: -10%;
    width: 500px; height: 500px;
    background: radial-gradient(circle, rgba(219,39,119,0.22), transparent 60%);
    pointer-events: none;
}
.investor-ask::after {
    content: ''; position: absolute; bottom: -30%; left: -15%;
    width: 480px; height: 480px;
    background: radial-gradient(circle, rgba(99,102,241,0.18), transparent 60%);
    pointer-events: none;
}
.investor-ask > * { position: relative; z-index: 1; }
.investor-ask .label {
    color: #a5a1ff; letter-spacing: 0.2em;
}
.investor-ask h2 {
    font-size: clamp(1.6rem, 3.5vw, 2.2rem); font-weight: 700;
    line-height: 1.2; letter-spacing: -0.02em; margin-bottom: 0.85rem;
    max-width: 720px;
}
.investor-ask .lead {
    font-size: 1rem; color: rgba(255,255,255,0.75); line-height: 1.75;
    max-width: 620px; margin-bottom: 2rem;
}
.investor-ask .ask-bullets {
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem;
    margin-bottom: 2rem;
}
.ask-bullet {
    background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1);
    border-radius: var(--r); padding: 1.1rem;
}
.ask-bullet-val {
    font-family: var(--mono); font-size: 1.35rem; font-weight: 800;
    color: #fff; margin-bottom: 0.3rem; letter-spacing: -0.02em;
}
.ask-bullet p { font-size: 0.8rem; color: rgba(255,255,255,0.65); line-height: 1.55; }
.investor-ask .investor-actions { display: flex; gap: 0.8rem; flex-wrap: wrap; align-items: center; }
.investor-ask .btn-primary { background: #fff; color: var(--accent-deep); }
.investor-ask .btn-primary:hover { background: #f4f4ff; color: var(--accent); box-shadow: 0 10px 28px rgba(255,255,255,0.15); }
.investor-ask .btn-outline {
    background: transparent; color: #fff; border: 1px solid rgba(255,255,255,0.3);
    padding: 0.78rem 1.7rem; border-radius: 9px; font-size: 0.9rem; font-weight: 600;
    text-decoration: none; transition: all 0.15s;
    display: inline-flex; align-items: center; gap: 0.5rem;
}
.investor-ask .btn-outline:hover { border-color: #fff; background: rgba(255,255,255,0.05); }

/* ── CTA SECTION ── */
.cta-block {
    text-align: center; padding: 90px 0;
}
.cta-block h2 {
    font-size: clamp(1.45rem, 3vw, 2rem); font-weight: 700;
    line-height: 1.25; margin-bottom: 0.95rem; letter-spacing: -0.02em;
}
.cta-block p {
    font-size: 0.95rem; color: var(--text-dim); line-height: 1.7;
    max-width: 500px; margin: 0 auto 1.85rem;
}
.cta-email {
    display: inline-block; font-size: 0.98rem; font-weight: 600;
    color: var(--accent); text-decoration: none; transition: color 0.15s;
    letter-spacing: 0.01em;
}
.cta-email:hover { color: var(--accent-deep); }

/* ── COMPARE TABLE ── */
.compare-wrap {
    background: var(--bg-card); border: 1px solid var(--border);
    border-radius: var(--r-lg); overflow: hidden; box-shadow: var(--shadow-sm);
}
.compare {
    width: 100%; border-collapse: collapse;
    font-size: 0.88rem;
}
.compare th, .compare td {
    padding: 1rem 1.25rem; text-align: left;
    border-bottom: 1px solid var(--border);
}
.compare thead th {
    background: var(--accent-glow); color: var(--accent);
    font-weight: 700; font-size: 0.78rem; text-transform: uppercase;
    letter-spacing: 0.08em;
}
.compare thead th:first-child { color: var(--text-soft); background: transparent; }
.compare tbody td:first-child {
    font-weight: 600; color: var(--text); font-size: 0.86rem;
}
.compare tbody td { color: var(--text-dim); font-size: 0.84rem; }
.compare tbody tr:last-child td { border-bottom: none; }
.compare .yes { color: var(--green); font-weight: 700; }
.compare .no { color: #b91c1c; font-weight: 700; opacity: 0.7; }
.compare .highlight-col { background: rgba(67,56,202,0.03); }
.compare thead th.highlight-col { background: var(--accent); color: #fff; }

/* ── FOOTER ── */
.site-footer {
    border-top: 1px solid var(--border); padding: 2rem 0 1.75rem;
    background: var(--bg-raised);
}
.footer-inner {
    max-width: var(--max); margin: 0 auto; padding: 0 2rem;
    display: flex; justify-content: space-between; align-items: center;
    font-size: 0.78rem; color: var(--text-dim); flex-wrap: wrap; gap: 1rem;
}
.footer-inner em { font-style: italic; opacity: 0.6; }
.footer-inner a { color: var(--text-dim); text-decoration: none; margin-left: 1.2rem; transition: color 0.15s; }
.footer-inner a:hover { color: var(--accent); }

/* ── RESPONSIVE ── */
@media (max-width: 960px) {
    .grid-4 { grid-template-columns: repeat(2,1fr); }
    .opportunity-grid { grid-template-columns: repeat(2, 1fr); }
    .big-stats { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
    .nav-links { display: none; }
    .hamburger { display: flex; }
    .nav-inner { padding: 0 1.25rem; }
    .nav-logo img { height: 24px; }
    .nav-logo .logo-text { font-size: 0.82rem; }
    .nav-logo .logo-sub { font-size: 0.56rem; letter-spacing: 0.1em; }

    .container, .container-narrow { padding: 0 1.25rem; }
    .page-top { padding-top: 110px; padding-bottom: 40px; }
    .section { padding: 56px 0; }
    .title { font-size: 1.55rem; }
    .subtitle { font-size: 0.9rem; margin-bottom: 2rem; }

    .hero { min-height: auto; padding: 110px 0 60px; }
    .hero-h1 { font-size: 2.15rem; }
    .hero-p { font-size: 0.95rem; }
    .hero-actions { flex-direction: column; align-items: stretch; }
    .hero-actions .btn { width: 100%; justify-content: center; }
    .hero-meta { flex-direction: column; gap: 0.55rem; }

    .stats-bar { grid-template-columns: repeat(2,1fr); margin-top: -20px; }
    .stat-val { font-size: 1.3rem; }

    .grid-2, .grid-3, .roadmap-grid, .team-grid { grid-template-columns: 1fr; }
    .grid-4 { grid-template-columns: 1fr; }

    .moat-grid { grid-template-columns: 1fr; }
    .opportunity-grid { grid-template-columns: 1fr; }
    .big-stats { grid-template-columns: 1fr; }

    .stages { flex-direction: column; gap: 0.65rem; }
    .stage-arrow { transform: rotate(90deg); padding: 0.15rem 0; justify-content: center; }

    .market-grid { grid-template-columns: 1fr; gap: 0.85rem; }
    .market-val { font-size: 1.7rem; }

    .team-grid { max-width: 100%; }
    .cta-block { padding: 55px 0; }
    .footer-inner { flex-direction: column; gap: 0.5rem; text-align: center; }

    .investor-ask { padding: 2rem 1.5rem; }
    .investor-ask .ask-bullets { grid-template-columns: 1fr; }
    .thesis { padding: 2rem 1.5rem; }

    .compare { font-size: 0.78rem; }
    .compare th, .compare td { padding: 0.7rem 0.8rem; }
}
@media (max-width: 480px) {
    .hero-h1 { font-size: 1.85rem; }
    .stats-bar { grid-template-columns: 1fr; }
}
