/* ===========================================
   NAME GAIN — REDESIGNED
   MarketVision × Atlas by Sequoia
   Innovative Fintech Palette
   =========================================== */

:root {
    /* Background – True deep black, fintech-grade */
    --bg: #06080C;
    --bg-alt: #0A0E14;
    --bg-card: #0E1219;
    --bg-elevated: #141A23;

    /* Borders – Thin, architectural lines */
    --border: rgba(255, 255, 255, 0.05);
    --border-med: rgba(255, 255, 255, 0.09);
    --border-strong: rgba(255, 255, 255, 0.14);

    /* Primary Accent – Electric Cyan-Teal (Stripe-inspired) */
    --accent: #00D4AA;
    --accent-bright: #5EEAD4;
    --accent-dim: #0D9373;
    --accent-glow: rgba(0, 212, 170, 0.15);

    /* Secondary – Luminous Gold */
    --gold: #E2B854;
    --gold-bright: #F5D06B;
    --gold-glow: rgba(226, 184, 84, 0.12);

    /* Tertiary – Deep Violet (gradient undertone) */
    --violet: #7C3AED;
    --violet-bright: #A78BFA;
    --violet-glow: rgba(124, 58, 237, 0.12);

    /* Success / Status */
    --green: #34D399;

    /* Text */
    --text: #ECF0F6;
    --text-2: #8B95A5;
    --text-3: #4A5568;
    --text-mute: #2D3748;

    /* Type */
    --sans: 'Space Grotesk', 'Inter', system-ui, sans-serif;
    --serif: 'Instrument Serif', Georgia, 'Times New Roman', serif;
    --body: 'Inter', system-ui, sans-serif;

    /* Sizing */
    --max-w: 1200px;
    --ease: cubic-bezier(0.16, 1, 0.3, 1);
}

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

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
}

body {
    font-family: var(--body);
    background: var(--bg);
    color: var(--text);
    font-size: 1rem;
    line-height: 1.7;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
}

img {
    max-width: 100%;
    display: block;
}

em {
    font-family: var(--serif);
    font-style: italic;
}

strong {
    font-weight: 600;
    color: var(--text);
}

/* ===========================================
   ANIMATIONS
   =========================================== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(24px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes barGrow {
    from {
        width: 0;
    }

    to {
        width: var(--bar-w);
    }
}

.fade-up {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}

.fade-up.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ===========================================
   NAVIGATION — MarketVision style
   Thin, minimal, institutional
   =========================================== */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: transparent;
    transition: background 0.4s var(--ease), border-color 0.4s var(--ease);
    border-bottom: 1px solid transparent;
}

.nav.scrolled {
    background: rgba(6, 8, 12, 0.94);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom-color: var(--border);
}

.nav-container {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 1.125rem 2.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo {
    font-family: var(--sans);
    font-size: 1.2rem;
    font-weight: 800;
    letter-spacing: -0.03em;
    color: var(--text);
}

.nav-center {
    display: flex;
    gap: 2.5rem;
}

.nav-link {
    font-family: var(--body);
    font-size: 0.8rem;
    font-weight: 400;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: var(--text-2);
    transition: color 0.2s;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--text);
    transition: width 0.3s var(--ease);
}

.nav-link:hover {
    color: var(--text);
}

.nav-link:hover::after {
    width: 100%;
}

.nav-cta {
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--text-2);
    letter-spacing: 0.02em;
    transition: color 0.2s;
}

.nav-cta:hover {
    color: var(--accent-bright);
}

.nav-right {
    display: flex;
    align-items: center;
}

.hamburger {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
}

.hamburger span {
    font-family: var(--body);
    font-size: 0.85rem;
    color: var(--text-2);
    letter-spacing: 0.05em;
}

/* ===========================================
   HERO — MarketVision massive title
   + Atlas data ledger
   =========================================== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: flex-end;
    padding: 0 2.5rem 5rem;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 60% 50% at 30% 20%, rgba(0, 212, 170, 0.06) 0%, transparent 70%),
        radial-gradient(ellipse 50% 50% at 80% 70%, rgba(124, 58, 237, 0.05) 0%, transparent 60%),
        radial-gradient(ellipse 30% 30% at 60% 50%, rgba(226, 184, 84, 0.03) 0%, transparent 50%);
    pointer-events: none;
}

.hero-inner {
    max-width: var(--max-w);
    margin: 0 auto;
    width: 100%;
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: 6rem;
    align-items: end;
    position: relative;
    z-index: 2;
}

.hero-overline {
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 2rem;
}

.hero-title {
    font-family: var(--sans);
    font-size: clamp(3.5rem, 7.5vw, 7rem);
    font-weight: 800;
    line-height: 0.95;
    letter-spacing: -0.04em;
    color: var(--text);
    margin-bottom: 2rem;
}

.hero-title em {
    font-family: var(--serif);
    font-weight: 400;
    background: linear-gradient(135deg, var(--accent-bright) 0%, var(--violet-bright) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-style: italic;
}

.hero-body {
    font-size: 1.125rem;
    color: var(--text-2);
    max-width: 520px;
    line-height: 1.75;
    margin-bottom: 2.5rem;
}

.hero-actions {
    display: flex;
    align-items: center;
    gap: 2rem;
}

/* Pill buttons — Atlas style */
.btn-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-family: var(--body);
    font-size: 0.875rem;
    font-weight: 600;
    color: #06080C;
    background: var(--accent);
    border: none;
    border-radius: 100px;
    padding: 0.875rem 2rem;
    cursor: pointer;
    transition: all 0.25s var(--ease);
    letter-spacing: 0.01em;
}

.btn-pill:hover {
    background: var(--accent-bright);
    box-shadow: 0 8px 32px rgba(0, 212, 170, 0.3);
    transform: translateY(-2px);
}

.btn-pill-lg {
    padding: 1rem 2.5rem;
    font-size: 0.95rem;
}

.btn-pill-outline {
    display: inline-flex;
    align-items: center;
    font-family: var(--body);
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--gold);
    background: transparent;
    border: 1.5px solid var(--gold);
    border-radius: 100px;
    padding: 0.875rem 2rem;
    cursor: pointer;
    transition: all 0.25s var(--ease);
}

.btn-pill-outline:hover {
    background: rgba(226, 184, 84, 0.08);
    box-shadow: 0 8px 32px rgba(226, 184, 84, 0.15);
    transform: translateY(-2px);
}

.btn-pill-outline.btn-pill-lg {
    padding: 1rem 2.5rem;
    font-size: 0.95rem;
}

.link-arrow {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--text-2);
    transition: color 0.2s;
    letter-spacing: 0.01em;
}

.link-arrow:hover {
    color: var(--text);
}

/* Hero Data — Atlas ledger */
.hero-data {
    display: flex;
    flex-direction: column;
    border-top: 1px solid var(--border-strong);
    padding-top: 1rem;
}

.hero-data-row {
    display: flex;
    align-items: center;
    padding: 1rem 0;
    border-bottom: 1px solid var(--border);
}

.data-key {
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--text-3);
    flex-shrink: 0;
    min-width: 180px;
}

.data-line {
    flex: 1;
    height: 1px;
    background: var(--border);
    margin: 0 1rem;
}

.data-val {
    font-family: var(--sans);
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: -0.03em;
    color: var(--text);
    flex-shrink: 0;
}

/* ===========================================
   STATEMENT BAR
   =========================================== */
.statement-bar {
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    padding: 3rem 2.5rem;
    background: var(--bg);
}

.statement-container {
    max-width: var(--max-w);
    margin: 0 auto;
}

.statement-text {
    font-family: var(--serif);
    font-size: clamp(1.25rem, 2.5vw, 1.75rem);
    color: var(--text-2);
    line-height: 1.6;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.statement-text em {
    color: var(--text);
}

/* ===========================================
   SECTION STRUCTURE — Numbered, editorial
   =========================================== */
.section {
    padding: 7rem 2.5rem;
    background: var(--bg);
}

.section--alt {
    background: var(--bg-alt);
}

.section-container {
    max-width: var(--max-w);
    margin: 0 auto;
}

.section-header {
    margin-bottom: 2rem;
}

.section-number {
    display: inline-block;
    font-family: var(--sans);
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 1.25rem;
    padding: 0.3rem 0.875rem;
    border: 1px solid rgba(0, 212, 170, 0.25);
    border-radius: 100px;
}

.section-title {
    font-family: var(--sans);
    font-size: clamp(2rem, 4.5vw, 3.75rem);
    font-weight: 800;
    line-height: 1.05;
    letter-spacing: -0.04em;
    color: var(--text);
}

.section-title em {
    font-family: var(--serif);
    font-weight: 400;
    background: linear-gradient(135deg, var(--accent-bright), var(--violet-bright));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-intro {
    font-size: 1.1rem;
    font-family: var(--serif);
    color: var(--text-2);
    max-width: 620px;
    line-height: 1.8;
    margin-bottom: 4rem;
}

/* ===========================================
   PROBLEM — Atlas ledger rows
   =========================================== */
.problem-table {
    border-top: 1px solid var(--border-strong);
}

.problem-row {
    display: grid;
    grid-template-columns: 48px 200px 1fr auto;
    align-items: start;
    gap: 2rem;
    padding: 2.25rem 0;
    border-bottom: 1px solid var(--border);
    transition: background 0.3s var(--ease);
}

.problem-row:hover {
    background: rgba(255, 255, 255, 0.015);
}

.problem-row-num {
    font-family: var(--serif);
    font-size: 1.25rem;
    color: var(--text-3);
    font-style: italic;
}

.problem-row-title {
    font-family: var(--sans);
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--text);
    padding-top: 2px;
}

.problem-row-desc {
    font-size: 0.925rem;
    color: var(--text-2);
    line-height: 1.7;
}

.problem-row-ref {
    font-size: 0.75rem;
    color: var(--text-mute);
    font-style: italic;
    text-align: right;
    max-width: 200px;
    line-height: 1.5;
    padding-top: 2px;
}

/* ===========================================
   SOLUTION — Feature grid with bottom border
   =========================================== */
.feature-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    border-top: 1px solid var(--border-strong);
    border-left: 1px solid var(--border-strong);
}

.feature-card {
    padding: 3rem 2.5rem;
    border-right: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    transition: background 0.3s var(--ease);
    position: relative;
}

.feature-card::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(to right, var(--accent), var(--violet), var(--gold));
    transition: width 0.5s var(--ease);
}

.feature-card:hover {
    background: rgba(255, 255, 255, 0.02);
}

.feature-card:hover::before {
    width: 100%;
}

.feature-num {
    font-family: var(--sans);
    font-size: 2.5rem;
    font-weight: 800;
    color: rgba(255, 255, 255, 0.04);
    line-height: 1;
    margin-bottom: 1.5rem;
    letter-spacing: -0.05em;
}

.feature-title {
    font-family: var(--sans);
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
}

.feature-desc {
    font-size: 0.9rem;
    color: var(--text-2);
    margin-bottom: 1.25rem;
    line-height: 1.7;
}

.feature-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}

.feature-list li {
    font-size: 0.825rem;
    color: var(--text-2);
    padding-left: 1.1rem;
    position: relative;
    line-height: 1.6;
}

.feature-list li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--accent);
    font-size: 0.75rem;
}

/* ===========================================
   MARKET — Atlas horizontal bars
   =========================================== */
.data-chart {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 2px;
    padding: 2.5rem;
    margin-bottom: 3rem;
}

.chart-header {
    display: flex;
    justify-content: space-between;
    margin-bottom: 2rem;
}

.chart-label {
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--text-3);
}

.chart-label-right {
    color: var(--text-mute);
}

.chart-row {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 1.25rem;
}

.chart-row:last-child {
    margin-bottom: 0;
}

.chart-row-label {
    font-size: 0.8rem;
    color: var(--text-2);
    min-width: 110px;
    flex-shrink: 0;
}

.chart-bar-wrap {
    flex: 1;
    height: 32px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 2px;
    overflow: hidden;
}

.chart-bar {
    height: 100%;
    width: 0;
    background: var(--accent);
    border-radius: 2px;
    display: flex;
    align-items: center;
    padding-left: 0.75rem;
    transition: width 1.2s var(--ease);
}

.chart-bar.animated {
    width: var(--bar-w);
}

.chart-bar span {
    font-size: 0.7rem;
    font-weight: 700;
    color: white;
    letter-spacing: 0.03em;
}

.chart-bar.bar-gold {
    background: var(--gold);
}

.chart-bar.bar-dim {
    background: var(--text-3);
}

.chart-bar.bar-mute {
    background: var(--text-mute);
}

/* Stats Row */
.stats-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    border: 1px solid var(--border);
    border-radius: 2px;
    margin-bottom: 3rem;
}

.stat-block {
    padding: 2.25rem 2rem;
    border-right: 1px solid var(--border);
    text-align: center;
}

.stat-block:last-child {
    border-right: none;
}

.stat-num {
    display: block;
    font-family: var(--sans);
    font-size: 2.5rem;
    font-weight: 800;
    letter-spacing: -0.04em;
    color: var(--text);
    line-height: 1;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--text-3);
}

/* Positioning */
.positioning-block {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-left: 3px solid var(--gold);
    padding: 2.5rem;
    border-radius: 0 2px 2px 0;
}

.positioning-title {
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--gold);
    margin-bottom: 1rem;
}

.positioning-body {
    font-family: var(--serif);
    font-size: 1.1rem;
    color: var(--text-2);
    line-height: 1.75;
    margin-bottom: 1.5rem;
}

.positioning-checks {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
}

.check-item {
    font-size: 0.85rem;
    color: var(--text-2);
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
}

.check-mark {
    color: var(--gold);
    font-weight: 700;
    flex-shrink: 0;
}

/* ===========================================
   INSTITUTIONAL
   =========================================== */
.inst-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.inst-benefits {
    display: flex;
    flex-direction: column;
}

.inst-benefit {
    padding: 1.75rem 0;
    border-bottom: 1px solid var(--border);
}

.inst-benefit:first-child {
    border-top: 1px solid var(--border-strong);
}

.inst-benefit-title {
    font-family: var(--sans);
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.inst-benefit-desc {
    font-size: 0.875rem;
    color: var(--text-2);
    line-height: 1.7;
}

/* Dashboard */
.inst-dashboard {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 4px;
    padding: 2rem;
}

.dash-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.75rem;
    color: var(--text-3);
    margin-bottom: 2rem;
    letter-spacing: 0.03em;
}

.dash-dots {
    display: flex;
    gap: 5px;
}

.dash-dots span {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--text-mute);
}

.dash-dots span:first-child {
    background: var(--accent);
}

.dash-dots span:nth-child(2) {
    background: var(--gold);
}

.dash-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid var(--border);
}

.dash-stat {
    text-align: center;
}

.dash-stat-num {
    font-family: var(--sans);
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--text);
    letter-spacing: -0.03em;
    margin-bottom: 0.25rem;
}

.dash-stat-num.accent {
    color: var(--gold);
}

.dash-stat-num.blue {
    color: var(--accent);
}

.dash-stat-label {
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--text-3);
}

.dash-progress {
    margin-bottom: 1rem;
}

.dash-progress-row {
    display: flex;
    justify-content: space-between;
    font-size: 0.8rem;
    color: var(--text-2);
    margin-bottom: 0.4rem;
}

.accent {
    color: var(--gold);
    font-weight: 600;
}

.blue {
    color: var(--accent);
    font-weight: 600;
}

.dash-bar {
    height: 5px;
    background: rgba(255, 255, 255, 0.06);
    border-radius: 3px;
    overflow: hidden;
}

.dash-fill {
    height: 100%;
    background: var(--gold);
    border-radius: 3px;
    transition: width 1.5s var(--ease);
}

.dash-fill.fill-blue {
    background: var(--accent);
}

.dash-fill.fill-dim {
    background: var(--text-3);
}

.dash-footer {
    margin-top: 1.5rem;
    padding-top: 1.25rem;
    border-top: 1px solid var(--border);
    font-size: 0.75rem;
    color: var(--green);
}

/* ===========================================
   FOUNDERS
   =========================================== */
.founders-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-bottom: 3rem;
}

.founder-card {
    display: flex;
    gap: 2rem;
    align-items: start;
    padding: 2.5rem;
    border: 1px solid var(--border);
    border-radius: 4px;
    transition: border-color 0.3s var(--ease), transform 0.3s var(--ease);
}

.founder-card:hover {
    border-color: var(--border-strong);
    transform: translateY(-4px);
}

.founder-portrait {
    width: 90px;
    height: 90px;
    background: linear-gradient(135deg, var(--bg-elevated), var(--bg));
    border: 1px solid var(--border);
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.founder-initials {
    font-family: var(--sans);
    font-size: 1.5rem;
    font-weight: 800;
    color: rgba(59, 130, 246, 0.3);
}

.founder-name {
    font-family: var(--sans);
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
}

.founder-role {
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--accent);
    margin-bottom: 0.5rem;
}

.founder-credential {
    font-size: 0.8rem;
    color: var(--gold);
    margin-bottom: 0.75rem;
    font-style: italic;
    font-family: var(--serif);
}

.founder-bio {
    font-size: 0.85rem;
    color: var(--text-2);
    line-height: 1.7;
}

.founder-quote {
    border-top: 1px solid var(--border-strong);
    border-bottom: 1px solid var(--border);
    padding: 2.5rem 0;
}

.founder-quote p {
    font-family: var(--serif);
    font-size: clamp(1.1rem, 2vw, 1.5rem);
    color: var(--text-2);
    line-height: 1.7;
    font-style: italic;
    margin-bottom: 1rem;
}

.founder-quote cite {
    font-size: 0.8rem;
    font-style: normal;
    color: var(--text-3);
    letter-spacing: 0.02em;
}

/* ===========================================
   VISION
   =========================================== */
.vision-pillars {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    border: 1px solid var(--border);
    border-radius: 2px;
    overflow: hidden;
    margin-bottom: 3rem;
}

.vision-pillar {
    padding: 2.5rem 2rem;
    border-right: 1px solid var(--border);
    transition: background 0.3s;
}

.vision-pillar:last-child {
    border-right: none;
}

.vision-pillar:hover {
    background: rgba(255, 255, 255, 0.02);
}

.vp-num {
    font-family: var(--serif);
    font-size: 1.5rem;
    color: var(--accent);
    font-style: italic;
    margin-bottom: 1rem;
}

.vp-title {
    font-family: var(--sans);
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
}

.vp-text {
    font-size: 0.875rem;
    color: var(--text-2);
    line-height: 1.7;
}

.vision-statement {
    text-align: center;
    font-family: var(--serif);
    font-size: clamp(1.1rem, 2vw, 1.4rem);
    color: var(--text-2);
    line-height: 1.7;
    padding: 2rem 0;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

/* ===========================================
   FINAL CTA
   =========================================== */
.cta-section {
    padding: 8rem 2.5rem;
    text-align: center;
    background: var(--bg);
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 60% 50% at 50% 100%, rgba(0, 212, 170, 0.08) 0%, transparent 60%),
        radial-gradient(ellipse 50% 40% at 20% 0%, rgba(124, 58, 237, 0.06) 0%, transparent 60%),
        radial-gradient(ellipse 30% 30% at 80% 50%, rgba(226, 184, 84, 0.04) 0%, transparent 50%);
    pointer-events: none;
}

.cta-title {
    font-family: var(--sans);
    font-size: clamp(2.5rem, 6vw, 5rem);
    font-weight: 800;
    line-height: 1;
    letter-spacing: -0.04em;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 2;
}

.cta-title em {
    font-family: var(--serif);
    font-weight: 400;
    background: linear-gradient(135deg, var(--accent-bright), var(--violet-bright));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.cta-body {
    font-family: var(--serif);
    font-size: 1.15rem;
    color: var(--text-2);
    max-width: 460px;
    margin: 0 auto 2.5rem;
    line-height: 1.7;
    position: relative;
    z-index: 2;
}

.cta-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    position: relative;
    z-index: 2;
}

/* ===========================================
   FOOTER
   =========================================== */
.footer {
    background: var(--bg-alt);
    border-top: 1px solid var(--border);
    padding: 4rem 2.5rem 0;
}

.footer-container {
    max-width: var(--max-w);
    margin: 0 auto;
}

.footer-top {
    display: flex;
    justify-content: space-between;
    gap: 4rem;
    margin-bottom: 4rem;
}

.footer-logo {
    font-family: var(--sans);
    font-size: 1.3rem;
    font-weight: 800;
    letter-spacing: -0.02em;
    margin-bottom: 0.75rem;
}

.footer-tagline {
    font-size: 0.875rem;
    color: var(--text-2);
}

.footer-cols {
    display: flex;
    gap: 5rem;
}

.footer-col {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.footer-col-title {
    font-size: 0.65rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--text-3);
    margin-bottom: 0.5rem;
}

.footer-col a {
    font-size: 0.85rem;
    color: var(--text-2);
    transition: color 0.2s;
}

.footer-col a:hover {
    color: var(--text);
}

.footer-bottom {
    border-top: 1px solid var(--border);
    padding: 1.5rem 0;
    display: flex;
    justify-content: space-between;
    font-size: 0.75rem;
    color: var(--text-mute);
}

/* ===========================================
   SCROLL PROGRESS
   =========================================== */
#progress-bar {
    position: fixed;
    top: 0;
    left: 0;
    height: 2px;
    width: 0;
    background: linear-gradient(to right, var(--accent), var(--gold));
    z-index: 10000;
    pointer-events: none;
    transition: width 0.1s linear;
}

/* ===========================================
   RESPONSIVE
   =========================================== */
@media (max-width: 1024px) {
    .hero-inner {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .hero {
        align-items: center;
        padding-top: 8rem;
    }

    .inst-layout {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .problem-row {
        grid-template-columns: 48px 1fr;
    }

    .problem-row-desc {
        grid-column: 2;
    }

    .problem-row-ref {
        grid-column: 2;
        text-align: left;
        max-width: none;
    }

    .positioning-checks {
        grid-template-columns: 1fr;
    }

    .footer-cols {
        gap: 3rem;
    }
}

@media (max-width: 768px) {

    .nav-center,
    .nav-right {
        display: none;
    }

    .hamburger {
        display: block;
    }

    .section {
        padding: 4.5rem 1.5rem;
    }

    .hero {
        padding: 6rem 1.5rem 3rem;
        min-height: auto;
    }

    .hero-title {
        font-size: 2.75rem;
    }

    .statement-bar {
        padding: 2rem 1.5rem;
    }

    .cta-section {
        padding: 5rem 1.5rem;
    }

    .feature-grid {
        grid-template-columns: 1fr;
    }

    .founders-grid {
        grid-template-columns: 1fr;
    }

    .vision-pillars {
        grid-template-columns: 1fr;
    }

    .vision-pillar {
        border-right: none;
        border-bottom: 1px solid var(--border);
    }

    .stats-row {
        grid-template-columns: 1fr;
    }

    .stat-block {
        border-right: none;
        border-bottom: 1px solid var(--border);
    }

    .problem-row {
        grid-template-columns: 1fr;
        gap: 0.5rem;
    }

    .problem-row-num {
        display: none;
    }

    .founder-card {
        flex-direction: column;
        gap: 1.25rem;
    }

    .hero-data-row {
        flex-wrap: wrap;
    }

    .data-key {
        min-width: auto;
    }

    .data-line {
        display: none;
    }

    .data-val {
        margin-left: auto;
    }

    .footer-top {
        flex-direction: column;
        gap: 2rem;
    }

    .footer-cols {
        flex-direction: column;
        gap: 2rem;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 0.5rem;
    }

    .cta-actions {
        flex-direction: column;
        align-items: center;
    }
}