/**
 * homepage.css — Landing Page Stylesheet for Hexorexa
 * 
 * Covers the public-facing homepage at hexorexa.com.
 * Separate from style.css to keep the app dashboard styles isolated.
 * 
 * Sections:
 *   1. Hero section (gradient background, CTA buttons)
 *   2. Features grid (platform capabilities showcase)
 *   3. Founder section (circular photo, story)
 *   4. FAQ accordion
 *   5. Footer & email signup
 *   6. Navigation bar (fixed, transparent → solid on scroll)
 *   7. Cookie consent banner
 *   8. Responsive media queries
 * 
 * Design: Premium dark theme with glassmorphism effects,
 * gradient backgrounds, and smooth scroll animations.
 */
/* ═══════════════════════════════════════════════════════════
   Hexorexa — Homepage Styles v2.0
   Modern dark theme with glassmorphism, gradients & animations
   ═══════════════════════════════════════════════════════════ */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&family=JetBrains+Mono:wght@400;500;700&display=swap');

/* ── Design Tokens ──────────────────────────────────────── */
:root {
    --bg: #06080d;
    --bg-alt: #0a0e17;
    --surface-1: #111827;
    --surface-2: #1f2937;
    --surface-3: #374151;
    --text-main: #f1f5f9;
    --text-secondary: #cbd5e1;
    --text-muted: #64748b;
    --text-dim: #475569;
    --accent: #10b981;
    --accent-hover: #34d399;
    --accent-glow: rgba(16, 185, 129, 0.35);
    --blue: #3b82f6;
    --purple: #8b5cf6;
    --cyan: #06b6d4;
    --amber: #f59e0b;
    --rose: #f43f5e;
    --gradient-brand: linear-gradient(135deg, #10b981 0%, #06b6d4 40%, #3b82f6 70%, #8b5cf6 100%);
    --gradient-hero: linear-gradient(135deg, #10b981, #0ea5e9, #6366f1);
    --gradient-subtle: linear-gradient(135deg, rgba(16,185,129,0.08), rgba(59,130,246,0.08));
    --gradient-card: linear-gradient(160deg, rgba(255,255,255,0.04), rgba(255,255,255,0.01));
    --font: 'Inter', system-ui, -apple-system, sans-serif;
    --mono: 'JetBrains Mono', 'Fira Code', monospace;
    --radius: 16px;
    --radius-sm: 10px;
    --radius-xs: 6px;
    --shadow: 0 4px 24px rgba(0,0,0,0.4);
    --shadow-lg: 0 20px 60px rgba(0,0,0,0.6);
    --shadow-glow: 0 0 40px rgba(16,185,129,0.15);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-fast: all 0.15s ease;
    --warning-bg: #fffbeb;
    --warning-text: #92400e;
}

/* ── Reset & Base ───────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; }
body {
    font-family: var(--font);
    background: var(--bg);
    color: var(--text-main);
    overflow-x: hidden;
    line-height: 1.7;
    font-size: 16px;
}
h1, h2, h3, h4, h5, h6 { font-weight: 800; line-height: 1.15; letter-spacing: -0.03em; color: var(--text-main); }
p { margin-bottom: 1rem; color: var(--text-secondary); }
a { color: var(--accent); text-decoration: none; transition: var(--transition-fast); }
a:hover { color: var(--accent-hover); }
img { max-width: 100%; display: block; }
ul { list-style: none; }

/* ── Background Effects ─────────────────────────────────── */
.cyber-grid {
    position: fixed; inset: 0;
    background-image: linear-gradient(rgba(255,255,255,0.02) 1px, transparent 1px),
                      linear-gradient(90deg, rgba(255,255,255,0.02) 1px, transparent 1px);
    background-size: 60px 60px;
    transform: perspective(500px) rotateX(60deg) translateZ(-200px);
    animation: gridScroll 20s linear infinite;
    z-index: -2;
    opacity: 0.5;
}
@keyframes gridScroll {
    0% { transform: perspective(500px) rotateX(60deg) translateY(0) translateZ(-200px); }
    100% { transform: perspective(500px) rotateX(60deg) translateY(60px) translateZ(-200px); }
}
.bg-glow {
    position: fixed; width: 80vw; height: 80vw;
    background: radial-gradient(circle, var(--accent-glow) 0%, transparent 50%);
    top: -40vh; left: 50%; transform: translateX(-50%);
    z-index: -1; filter: blur(140px); opacity: 0.5;
    animation: pulseGlow 10s infinite alternate ease-in-out;
    pointer-events: none;
}
.bg-glow-2 {
    position: fixed; width: 50vw; height: 50vw;
    background: radial-gradient(circle, rgba(99,102,241,0.2) 0%, transparent 50%);
    bottom: -30vh; right: -10vw;
    z-index: -1; filter: blur(120px); opacity: 0.4;
    pointer-events: none;
}
@keyframes pulseGlow {
    0% { transform: translateX(-50%) scale(1); opacity: 0.4; }
    100% { transform: translateX(-50%) scale(1.15); opacity: 0.7; }
}

/* ── Announcement Banner ────────────────────────────────── */
.announcement-banner {
    background: linear-gradient(90deg, #1e3a8a, #4c1d95, #1e3a8a);
    background-size: 200% 100%;
    animation: shimmerBanner 6s ease infinite;
    color: #fff; text-align: center;
    padding: 0.75rem 3rem 0.75rem 1.5rem;
    font-size: 0.85rem; font-weight: 500;
    position: relative; width: 100%;
    display: flex; flex-direction: column;
    justify-content: center; align-items: center;
    gap: 0.5rem; line-height: 1.4;
}
@keyframes shimmerBanner { 0%,100% { background-position: 0% 50%; } 50% { background-position: 100% 50%; } }
@media (min-width: 600px) { .announcement-banner { flex-direction: row; gap: 1rem; } }
.announcement-banner a { color: #fff; text-decoration: underline; font-weight: 700; }
.announcement-banner .close-btn {
    background: none; border: none; color: rgba(255,255,255,0.7);
    cursor: pointer; font-size: 1.2rem;
    position: absolute; right: 1rem; top: 50%; transform: translateY(-50%);
    transition: var(--transition-fast);
}
.announcement-banner .close-btn:hover { color: #fff; }

/* ── Navigation ─────────────────────────────────────────── */
.fixed-top-header {
    position: fixed; top: 0; left: 0; width: 100%;
    z-index: 1000; display: flex; flex-direction: column;
}
nav {
    background: rgba(6, 8, 13, 0.75);
    backdrop-filter: blur(20px) saturate(1.8);
    -webkit-backdrop-filter: blur(20px) saturate(1.8);
    border-bottom: 1px solid rgba(255,255,255,0.06);
    padding: 0.9rem 5%; display: flex;
    justify-content: space-between; align-items: center;
    transition: var(--transition);
}
.logo {
    font-size: 1.4rem; font-weight: 800;
    display: flex; align-items: center; gap: 0.5rem;
    text-decoration: none; color: var(--text-main);
}
.logo:hover { color: var(--text-main); }
.logo-icon {
    background: var(--gradient-hero);
    -webkit-background-clip: text; -webkit-text-fill-color: transparent;
    background-clip: text; font-size: 1.5rem;
}
.beta-pill {
    background: rgba(245, 158, 11, 0.12);
    color: #f59e0b; padding: 0.12rem 0.55rem;
    border-radius: 99px; font-size: 0.6rem; font-weight: 800;
    border: 1px solid rgba(245, 158, 11, 0.25);
    vertical-align: middle; letter-spacing: 0.05em;
}
.nav-links {
    display: flex; gap: 2rem; align-items: center;
}
.nav-links a {
    color: var(--text-muted); text-decoration: none;
    font-size: 0.88rem; font-weight: 500;
    transition: var(--transition); position: relative;
}
.nav-links a:hover { color: var(--text-main); }
.nav-links a::after {
    content: ''; position: absolute;
    bottom: -4px; left: 0; width: 0; height: 2px;
    background: var(--gradient-hero);
    transition: width 0.3s ease;
}
.nav-links a:hover::after { width: 100%; }
.nav-cta {
    background: var(--gradient-hero); color: #fff !important;
    padding: 0.55rem 1.2rem; border-radius: 8px;
    font-weight: 700; font-size: 0.88rem;
    transition: transform 0.2s, box-shadow 0.2s;
    box-shadow: 0 4px 15px rgba(16, 185, 129, 0.25);
}
.nav-cta::after { display: none !important; }
.nav-cta:hover {
    color: #fff !important; transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(16, 185, 129, 0.4);
}
.mobile-menu-btn {
    display: none; background: none; border: none; cursor: pointer;
    padding: 0.25rem;
}
.mobile-menu-btn svg {
    width: 24px; height: 24px; stroke: var(--text-main);
    fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round;
}

/* ── Disclaimer Bar ─────────────────────────────────────── */
.disclaimer-bar {
    background: var(--warning-bg); color: var(--warning-text);
    text-align: center; padding: 0.45rem 1rem;
    font-size: 0.78rem; border-bottom: 1px solid #fcd34d; font-weight: 500;
}
.disclaimer-bar a { color: #92400e; text-decoration: underline; font-weight: 600; }

/* ── Hero Section ───────────────────────────────────────── */
.hero {
    min-height: 100vh; display: flex; flex-direction: column;
    align-items: center; text-align: center;
    padding: 12rem 5% 5rem; position: relative;
}
.hero-badge {
    background: rgba(16, 185, 129, 0.08);
    border: 1px solid rgba(16, 185, 129, 0.2);
    color: var(--accent); padding: 0.45rem 1.4rem;
    border-radius: 99px; font-size: 0.78rem; font-weight: 700;
    margin-bottom: 2rem; letter-spacing: 0.06em;
    text-transform: uppercase;
    box-shadow: 0 0 25px rgba(16, 185, 129, 0.12);
    display: inline-flex; align-items: center; gap: 0.5rem;
    animation: fadeInUp 0.6s ease-out;
}
.hero-title {
    font-size: clamp(2.2rem, 5vw, 4.2rem);
    margin-bottom: 1.5rem; max-width: 900px;
    animation: fadeInUp 0.6s ease-out 0.1s both;
}
.gradient-text {
    background: var(--gradient-hero);
    -webkit-background-clip: text; -webkit-text-fill-color: transparent;
    background-clip: text;
}
.hero-sub {
    font-size: clamp(1rem, 1.8vw, 1.15rem);
    color: var(--text-muted); max-width: 700px;
    margin-bottom: 2.5rem; line-height: 1.8;
    animation: fadeInUp 0.6s ease-out 0.2s both;
}
.hero-buttons {
    display: flex; gap: 1rem; flex-wrap: wrap;
    justify-content: center; margin-bottom: 2rem;
    animation: fadeInUp 0.6s ease-out 0.3s both;
}
.btn-large {
    padding: 0.9rem 1.8rem; font-size: 1rem; font-weight: 700;
    border-radius: 12px; text-decoration: none;
    display: inline-flex; align-items: center; gap: 0.5rem;
    transition: all 0.3s ease; border: none; cursor: pointer;
    font-family: var(--font);
}
.btn-primary {
    background: var(--gradient-hero); color: #fff;
    box-shadow: 0 8px 30px rgba(16, 185, 129, 0.3);
    position: relative; overflow: hidden;
}
.btn-primary::before {
    content: ''; position: absolute; inset: 0;
    background: linear-gradient(135deg, rgba(255,255,255,0.15), transparent);
    opacity: 0; transition: opacity 0.3s;
}
.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(16, 185, 129, 0.5);
    color: #fff;
}
.btn-primary:hover::before { opacity: 1; }
.btn-secondary {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.1);
    color: var(--text-main); backdrop-filter: blur(10px);
}
.btn-secondary:hover {
    background: rgba(255,255,255,0.08);
    border-color: rgba(255,255,255,0.2);
    transform: translateY(-3px); color: var(--text-main);
}

/* Social Proof */
.social-proof {
    display: flex; flex-direction: column;
    align-items: center; gap: 0.5rem; margin-bottom: 3rem;
    animation: fadeInUp 0.6s ease-out 0.4s both;
}
.social-badge {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    padding: 0.5rem 1.2rem; border-radius: 99px;
    font-size: 0.85rem; font-weight: 600; color: var(--text-secondary);
}
.beta-notice { font-size: 0.72rem; color: var(--text-dim); font-style: italic; }

/* Terminal Preview */
.terminal {
    width: 100%; max-width: 780px;
    background: rgba(13, 17, 23, 0.9);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 14px; overflow: hidden; text-align: left;
    box-shadow: 0 30px 80px -10px rgba(0,0,0,0.7), var(--shadow-glow);
    animation: fadeInUp 0.8s ease-out 0.5s both;
}
.terminal-header {
    background: rgba(255,255,255,0.04);
    padding: 0.8rem 1rem; display: flex;
    gap: 0.5rem; align-items: center;
    border-bottom: 1px solid rgba(255,255,255,0.04);
}
.dot { width: 12px; height: 12px; border-radius: 50%; }
.dot-red { background: #ff5f56; }
.dot-yellow { background: #ffbd2e; }
.dot-green { background: #27c93f; }
.terminal-content {
    padding: 1.5rem; font-family: var(--mono);
    color: #e6edf3; font-size: 0.88rem; line-height: 1.7;
}
.t-cmd { color: #6e7681; }
.t-err { color: #ff7b72; }
.t-warn { color: #d2a8ff; }
.t-ok { color: #7ee787; }
.t-cursor { animation: blink 1s step-end infinite; }
@keyframes blink { 50% { opacity: 0; } }
.terminal-caption {
    text-align: center; margin-top: 0.75rem;
    font-size: 0.78rem; color: var(--text-dim); font-style: italic;
}

/* ── Sections (Shared) ──────────────────────────────────── */
.section {
    padding: 7rem 5%; max-width: 1200px;
    margin: 0 auto; position: relative;
}
.section-label {
    text-align: center; font-size: 0.75rem; font-weight: 700;
    text-transform: uppercase; letter-spacing: 0.12em;
    color: var(--accent); margin-bottom: 1rem;
    display: flex; align-items: center; justify-content: center; gap: 0.5rem;
}
.section-label::before, .section-label::after {
    content: ''; width: 30px; height: 1px;
    background: rgba(16,185,129,0.3);
}
.section-title {
    text-align: center; font-size: clamp(1.8rem, 3.5vw, 2.6rem);
    margin-bottom: 1rem; letter-spacing: -0.02em;
}
.section-sub {
    text-align: center; color: var(--text-muted);
    font-size: 1.05rem; margin-bottom: 4rem;
    max-width: 650px; margin-left: auto; margin-right: auto;
    line-height: 1.7;
}
.grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
}

/* ── What is Hexorexa Section ───────────────────────────── */
.about-platform {
    padding: 7rem 5%; position: relative;
    background: linear-gradient(180deg, transparent, rgba(16,185,129,0.03), transparent);
}
.about-grid {
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 4rem; max-width: 1200px; margin: 0 auto;
    align-items: center;
}
.about-content .section-label { text-align: left; justify-content: flex-start; }
.about-content .section-label::before { display: none; }
.about-content h2 {
    text-align: left; font-size: clamp(1.6rem, 3vw, 2.4rem);
    margin-bottom: 1.5rem;
}
.about-content p { font-size: 1.02rem; line-height: 1.8; }
.about-highlights {
    display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin-top: 2rem;
}
.highlight-card {
    background: var(--gradient-card);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: var(--radius-sm); padding: 1.2rem;
    transition: var(--transition);
}
.highlight-card:hover {
    border-color: rgba(255,255,255,0.12);
    transform: translateY(-2px);
    background: rgba(255,255,255,0.04);
}
.highlight-icon { font-size: 1.5rem; margin-bottom: 0.5rem; }
.highlight-card h4 { font-size: 0.9rem; margin-bottom: 0.3rem; font-weight: 700; }
.highlight-card p { font-size: 0.82rem; color: var(--text-muted); margin-bottom: 0; }
.about-visual {
    display: flex; flex-direction: column; gap: 1.5rem;
}
.stat-showcase {
    display: grid; grid-template-columns: 1fr 1fr; gap: 1rem;
}
.stat-item {
    background: var(--gradient-card);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: var(--radius-sm); padding: 1.5rem;
    text-align: center; transition: var(--transition);
}
.stat-item:hover {
    border-color: rgba(16,185,129,0.2);
    box-shadow: 0 0 20px rgba(16,185,129,0.08);
}
.stat-number {
    font-size: 2rem; font-weight: 900; margin-bottom: 0.25rem;
    background: var(--gradient-hero);
    -webkit-background-clip: text; -webkit-text-fill-color: transparent;
    background-clip: text;
}
.stat-label { font-size: 0.82rem; color: var(--text-muted); font-weight: 500; }

/* ── Feature Cards ──────────────────────────────────────── */
.card {
    background: var(--gradient-card);
    backdrop-filter: blur(16px);
    border: 1px solid rgba(255,255,255,0.05);
    padding: 2rem; border-radius: var(--radius);
    transition: var(--transition); position: relative;
    overflow: hidden;
}
.card::before {
    content: ''; position: absolute;
    top: 0; left: 0; right: 0; height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.08), transparent);
}
.card:hover {
    transform: translateY(-6px);
    border-color: rgba(255,255,255,0.12);
    background: rgba(255,255,255,0.04);
    box-shadow: var(--shadow-lg);
}
.card-header {
    display: flex; justify-content: space-between;
    align-items: flex-start; margin-bottom: 1.25rem;
}
.icon-box {
    font-size: 1.8rem; width: 50px; height: 50px;
    display: flex; align-items: center; justify-content: center;
    background: rgba(16,185,129,0.08);
    border-radius: 12px;
}
.status-badge {
    font-size: 0.7rem; padding: 0.2rem 0.6rem;
    border-radius: 99px; background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.08);
    font-weight: 600; white-space: nowrap; color: var(--text-muted);
}
.card-title { font-size: 1.15rem; margin-bottom: 0.5rem; color: #fff; font-weight: 700; }
.card-desc { color: var(--text-muted); font-size: 0.9rem; line-height: 1.65; margin-bottom: 1.25rem; }
.card-disclaimer {
    font-size: 0.72rem; color: var(--text-dim); font-style: italic;
    padding-top: 0.75rem; border-top: 1px solid rgba(255,255,255,0.04);
}

/* ── How It Works ───────────────────────────────────────── */
.steps-container {
    display: flex; flex-direction: column; gap: 2rem;
}
@media (min-width: 768px) { .steps-container { flex-direction: row; } }
.step {
    flex: 1; background: var(--gradient-card);
    padding: 2rem; border-radius: var(--radius);
    border: 1px solid rgba(255,255,255,0.05);
    transition: var(--transition); position: relative;
    overflow: hidden;
}
.step::before {
    content: ''; position: absolute; top: 0; left: 0;
    width: 4px; height: 100%; border-radius: 2px;
    background: var(--gradient-hero); opacity: 0.5;
}
.step:hover {
    border-color: rgba(255,255,255,0.12);
    transform: translateY(-4px);
}
.step-number {
    font-size: 2.5rem; font-weight: 900;
    background: var(--gradient-hero);
    -webkit-background-clip: text; -webkit-text-fill-color: transparent;
    background-clip: text; line-height: 1; margin-bottom: 0.75rem;
    opacity: 0.5;
}
.step h3 {
    font-size: 1.1rem; margin-bottom: 0.75rem;
    display: flex; align-items: center; gap: 0.5rem;
}
.step p { color: var(--text-muted); font-size: 0.92rem; margin-bottom: 0; }
.step-disclaimer {
    text-align: center; margin-top: 2rem;
    font-size: 0.78rem; color: var(--text-dim); font-style: italic;
}

/* ── Founder Section ────────────────────────────────────── */
.founder-section {
    padding: 7rem 5%; position: relative;
    background: linear-gradient(180deg, transparent, rgba(99,102,241,0.03), transparent);
}
.founder-wrapper {
    max-width: 1100px; margin: 0 auto;
}
.founder-card {
    display: grid; grid-template-columns: 280px 1fr;
    gap: 3.5rem; align-items: start;
    background: var(--gradient-card);
    padding: 3rem; border-radius: 24px;
    border: 1px solid rgba(255,255,255,0.06);
    position: relative; overflow: hidden;
}
.founder-card::before {
    content: ''; position: absolute;
    top: 0; left: 0; right: 0; height: 2px;
    background: var(--gradient-brand);
    opacity: 0.4;
}
.founder-left {
    display: flex; flex-direction: column;
    align-items: center; text-align: center; gap: 1rem;
    position: sticky; top: 2rem;
}
.founder-photo {
    width: 234px; height: 234px; border-radius: 50%;
    overflow: hidden; border: 2px solid rgba(16,185,129,0.3);
    box-shadow: 0 10px 40px rgba(0,0,0,0.4);
    transition: var(--transition);
}
.founder-photo:hover {
    border-color: rgba(16,185,129,0.5);
    box-shadow: 0 15px 50px rgba(0,0,0,0.5), 0 0 30px rgba(16,185,129,0.15);
}
.founder-photo img {
    width: 100%; height: 100%; object-fit: cover;
}
.founder-name {
    font-size: 1.3rem; font-weight: 800; margin-bottom: 0;
}
.founder-role {
    color: var(--accent); font-weight: 600;
    font-size: 0.88rem; margin-bottom: 0;
}
.founder-edu {
    color: var(--text-muted); font-size: 0.82rem;
    display: flex; align-items: center; gap: 0.4rem;
    margin-bottom: 0;
}
.founder-socials {
    display: flex; gap: 0.75rem; margin-top: 0.5rem;
}
.founder-socials a {
    display: flex; align-items: center; justify-content: center;
    width: 36px; height: 36px; border-radius: 8px;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.08);
    color: var(--text-muted); transition: var(--transition);
}
.founder-socials a:hover {
    background: rgba(16,185,129,0.1);
    border-color: rgba(16,185,129,0.3);
    color: var(--accent);
}
.founder-socials svg { width: 18px; height: 18px; fill: currentColor; }
.founder-right { display: flex; flex-direction: column; gap: 1.5rem; }
.founder-quote {
    border-left: 3px solid var(--accent); padding-left: 1.5rem;
    font-style: italic; color: var(--text-secondary);
    font-size: 1.08rem; line-height: 1.8;
    background: rgba(16,185,129,0.04);
    padding: 1.5rem 1.5rem 1.5rem 2rem;
    border-radius: 0 12px 12px 0; margin: 0;
}
.founder-quote cite {
    display: block; font-size: 0.82rem; color: var(--text-dim);
    font-style: normal; margin-top: 0.75rem;
}
.founder-story h3 {
    font-size: 1.2rem; margin-bottom: 0.75rem;
    display: flex; align-items: center; gap: 0.5rem;
}
.founder-story p {
    font-size: 0.95rem; line-height: 1.8;
}

/* Founder Timeline */
.founder-timeline {
    display: flex; flex-direction: column; gap: 0;
    margin-top: 1rem; position: relative;
    padding-left: 1.5rem;
}
.founder-timeline::before {
    content: ''; position: absolute;
    left: 5px; top: 8px; bottom: 8px; width: 2px;
    background: linear-gradient(180deg, var(--accent), rgba(99,102,241,0.3));
    border-radius: 1px;
}
.timeline-item {
    display: flex; gap: 1rem; align-items: flex-start;
    padding: 0.6rem 0; position: relative;
}
.timeline-item::before {
    content: ''; position: absolute;
    left: calc(-1.5rem + 5px); top: 50%; transform: translate(-50%, -50%);
    width: 12px; height: 12px; border-radius: 50%;
    background: var(--bg); border: 2px solid var(--accent);
}
.timeline-year {
    font-size: 0.75rem; font-weight: 700;
    color: var(--accent); min-width: 55px;
    padding-top: 0.1rem;
}
.timeline-text {
    font-size: 0.85rem; color: var(--text-muted);
    margin-bottom: 0;
}

/* Founder Stats */
.founder-stats {
    display: flex; flex-wrap: wrap; gap: 0.6rem; margin-top: 0.5rem;
}
.stat-pill {
    background: rgba(255,255,255,0.04);
    padding: 0.4rem 0.9rem; border-radius: 8px;
    font-size: 0.8rem; font-weight: 600;
    border: 1px solid rgba(255,255,255,0.07);
    color: var(--text-secondary);
}

/* ── Email Capture Section ──────────────────────────────── */
.capture-section {
    background: linear-gradient(135deg, rgba(16,185,129,0.08), rgba(14,165,233,0.08), rgba(99,102,241,0.08));
    border-top: 1px solid rgba(16,185,129,0.15);
    border-bottom: 1px solid rgba(16,185,129,0.15);
    text-align: center; padding: 5rem 5%;
    position: relative;
}
.capture-section h2 { font-size: 2rem; margin-bottom: 0.5rem; }
.capture-section > p {
    color: var(--text-muted); font-size: 1rem;
    max-width: 550px; margin: 0 auto;
}
.capture-form {
    display: flex; flex-direction: column;
    gap: 1rem; max-width: 480px;
    margin: 2rem auto 0;
}
@media (min-width: 600px) { .capture-form { flex-direction: row; } }
.capture-input {
    flex: 1; padding: 0.9rem 1.25rem; border-radius: 10px;
    border: 1px solid rgba(255,255,255,0.1);
    background: rgba(0,0,0,0.4); color: #fff;
    font-size: 0.95rem; outline: none; font-family: var(--font);
    transition: var(--transition);
}
.capture-input:focus {
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(16,185,129,0.1);
}
.capture-input::placeholder { color: var(--text-dim); }
.capture-btn {
    padding: 0.9rem 1.6rem; background: var(--gradient-hero);
    border: none; border-radius: 10px; color: #fff;
    font-weight: 700; font-size: 0.95rem; cursor: pointer;
    transition: var(--transition); white-space: nowrap;
    font-family: var(--font);
}
.capture-btn:hover {
    opacity: 0.9; transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(16,185,129,0.3);
}

/* ── FAQ Section ────────────────────────────────────────── */
.faq-container {
    max-width: 750px; margin: 0 auto; text-align: left;
}
.faq-item {
    border-bottom: 1px solid rgba(255,255,255,0.05);
    padding: 1.25rem 0;
}
.faq-q {
    font-weight: 600; font-size: 1rem; color: var(--text-main);
    cursor: pointer; display: flex;
    justify-content: space-between; align-items: center;
    gap: 1rem; transition: var(--transition-fast);
}
.faq-q:hover { color: var(--accent); }
.faq-q::after {
    content: '+'; font-size: 1.3rem;
    transition: transform 0.3s ease; flex-shrink: 0;
    color: var(--text-dim);
}
.faq-item.active .faq-q::after { transform: rotate(45deg); color: var(--accent); }
.faq-a {
    max-height: 0; overflow: hidden;
    transition: max-height 0.35s ease-out, padding-top 0.35s ease-out;
    color: var(--text-muted); font-size: 0.92rem; line-height: 1.7;
}
.faq-item.active .faq-a { max-height: 300px; padding-top: 0.75rem; }


/* ── Company Trust Badges ──────────────────────────────── */
.trust-section {
    padding: 2rem 5% 3rem;
    text-align: center;
    max-width: 1200px;
    margin: 0 auto;
}
.trust-label {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--text-dim);
    margin-bottom: 1.5rem;
    font-weight: 500;
}
.trust-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2.5rem;
    flex-wrap: wrap;
}
.trust-logo {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.4rem;
    opacity: 0.6;
    transition: opacity 0.3s ease;
}
.trust-logo:hover { opacity: 1; }
.trust-icon {
    font-size: 2rem;
    font-weight: 900;
    font-family: 'Inter', sans-serif;
    line-height: 1;
}
.trust-logo span:last-child {
    font-size: 0.75rem;
    color: var(--text-dim);
    font-weight: 500;
    letter-spacing: 0.05em;
}
.trust-disclaimer {
    margin-top: 1.5rem;
    font-size: 0.72rem;
    color: var(--text-dim);
    opacity: 0.5;
}

/* ── Platform Demo Video Section ───────────────────────── */
.demo-section {
    padding: 5rem 5%;
    text-align: center;
    max-width: 1200px;
    margin: 0 auto;
}
.demo-browser {
    max-width: 960px;
    margin: 2.5rem auto 0;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,0.1);
    box-shadow: 0 30px 80px rgba(0,0,0,0.5), 0 0 0 1px rgba(255,255,255,0.05);
}
.browser-chrome {
    background: linear-gradient(180deg, #2a2a2e 0%, #1e1e22 100%);
    padding: 12px 16px;
    display: flex;
    align-items: center;
    gap: 12px;
    border-bottom: 1px solid rgba(255,255,255,0.06);
}
.browser-dots {
    display: flex;
    gap: 6px;
}
.browser-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}
.browser-url {
    flex: 1;
    background: rgba(255,255,255,0.06);
    border-radius: 6px;
    padding: 5px 14px;
    font-size: 0.78rem;
    color: var(--text-dim);
    font-family: var(--mono);
}
.browser-content {
    background: #0a0e17;
    line-height: 0;
}
.demo-video {
    width: 100%;
    display: block;
}

/* ── Animated Stats Bar ────────────────────────────────── */
.stats-bar {
    padding: 4rem 5%;
    background: linear-gradient(180deg, transparent, rgba(16,185,129,0.03), transparent);
}
.stats-grid {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 3rem;
    max-width: 900px;
    margin: 0 auto;
    flex-wrap: wrap;
}
.stat-block {
    text-align: center;
    min-width: 100px;
}
.stat-num {
    font-size: 2.5rem;
    font-weight: 900;
    background: var(--gradient-brand);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    margin-bottom: 0.5rem;
}
.stat-desc {
    font-size: 0.82rem;
    color: var(--text-dim);
    line-height: 1.4;
    font-weight: 500;
}

/* ── Curriculum Preview ────────────────────────────────── */
.curriculum-section {
    padding: 5rem 5%;
    text-align: center;
    max-width: 1200px;
    margin: 0 auto;
}
.curriculum-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1.25rem;
    margin-top: 2.5rem;
}
.curriculum-card {
    background: var(--gradient-card);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: var(--radius-sm);
    padding: 1.5rem 1rem;
    text-align: center;
    transition: var(--transition);
}
.curriculum-card:hover {
    border-color: rgba(16,185,129,0.3);
    transform: translateY(-4px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}
.curr-icon {
    font-size: 2rem;
    margin-bottom: 0.75rem;
}
.curriculum-card h3 {
    font-size: 0.95rem;
    margin-bottom: 0.4rem;
    font-weight: 700;
}
.curriculum-card p {
    font-size: 0.78rem;
    color: var(--text-dim);
    margin-bottom: 0.5rem;
}
.curr-tag {
    display: inline-block;
    font-size: 0.68rem;
    color: var(--accent);
    background: rgba(16,185,129,0.08);
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
    line-height: 1.3;
}

/* ── Pricing Section ───────────────────────────────────── */
.pricing-section {
    padding: 5rem 5%;
    text-align: center;
    max-width: 1000px;
    margin: 0 auto;
}
.pricing-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-top: 2.5rem;
}
.pricing-card {
    background: var(--gradient-card);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: var(--radius);
    padding: 2.5rem 2rem;
    text-align: left;
    position: relative;
    transition: var(--transition);
}
.pricing-card:hover {
    border-color: rgba(255,255,255,0.15);
    transform: translateY(-4px);
}
.pricing-premium {
    border-color: rgba(16,185,129,0.3);
    background: linear-gradient(160deg, rgba(16,185,129,0.06), rgba(59,130,246,0.04));
}
.pricing-badge {
    position: absolute;
    top: -12px;
    right: 24px;
    background: var(--gradient-brand);
    color: #fff;
    font-size: 0.68rem;
    font-weight: 700;
    padding: 4px 14px;
    border-radius: 20px;
    letter-spacing: 0.08em;
}
.pricing-label {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--text-dim);
    font-weight: 600;
    margin-bottom: 0.5rem;
}
.pricing-price {
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--text-main);
    margin-bottom: 0.25rem;
}
.pricing-price span {
    font-size: 1rem;
    font-weight: 500;
    color: var(--text-dim);
}
.pricing-desc {
    font-size: 0.85rem;
    color: var(--text-dim);
    margin-bottom: 1.5rem;
}
.pricing-features {
    list-style: none;
    padding: 0;
    margin-bottom: 2rem;
}
.pricing-features li {
    font-size: 0.88rem;
    color: var(--text-secondary);
    padding: 0.4rem 0;
    line-height: 1.5;
}
.btn-medium {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.9rem;
    text-decoration: none;
    transition: var(--transition);
    text-align: center;
    border: none;
    cursor: pointer;
    font-family: var(--font);
}
.btn-medium.btn-primary {
    background: var(--gradient-brand);
    color: #fff;
}
.btn-medium.btn-primary:hover {
    box-shadow: 0 4px 20px var(--accent-glow);
    transform: translateY(-2px);
}
.btn-medium.btn-secondary {
    background: transparent;
    border: 1px solid rgba(255,255,255,0.15);
    color: var(--text-secondary);
}

/* ── Disclaimer bar (removed from redesign) ──────────── */
.disclaimer-bar { display: none; }

/* ── Footer ─────────────────────────────────────────────── */
footer {
    background: #030508;
    border-top: 1px solid rgba(255,255,255,0.05);
    padding: 4rem 5% 2rem;
}
.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 3rem; max-width: 1200px; margin: 0 auto 3rem;
}
.footer-brand .logo { margin-bottom: 1rem; }
.footer-brand p { color: var(--text-muted); font-size: 0.88rem; line-height: 1.7; margin-bottom: 1rem; }
.footer-col h4 {
    font-size: 0.85rem; margin-bottom: 1.25rem;
    color: var(--text-secondary); text-transform: uppercase;
    letter-spacing: 0.08em; font-weight: 700;
}
.footer-links li { margin-bottom: 0.65rem; }
.footer-links a {
    color: var(--text-muted); text-decoration: none;
    font-size: 0.88rem; transition: var(--transition-fast);
}
.footer-links a:hover { color: var(--accent); }
.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.05);
    padding-top: 2rem; text-align: center;
    color: var(--text-dim); font-size: 0.82rem;
    max-width: 1200px; margin: 0 auto;
}

/* ── Scroll Reveal Animations ───────────────────────────── */
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(25px); }
    to { opacity: 1; transform: translateY(0); }
}
.reveal {
    opacity: 0; transform: translateY(30px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible {
    opacity: 1; transform: translateY(0);
}

/* ── Mobile Responsive ──────────────────────────────────── */
@media (max-width: 1024px) {
    .about-grid { grid-template-columns: 1fr; gap: 3rem; }
    .founder-card { grid-template-columns: 1fr; gap: 2rem; }
    .founder-left { position: static; flex-direction: row; text-align: left; gap: 1.5rem; }
    .founder-photo { width: 156px; height: 156px; flex-shrink: 0; border-radius: 50%; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
    .hero { padding-top: 10rem; }
    .nav-links {
        position: fixed; top: 0; right: -100%;
        width: 260px; height: 100vh;
        background: rgba(6, 8, 13, 0.98);
        backdrop-filter: blur(20px);
        border-left: 1px solid rgba(255,255,255,0.06);
        flex-direction: column; padding: 5rem 2rem 2rem;
        align-items: flex-start;
        transition: right 0.3s ease;
        box-shadow: -10px 0 40px rgba(0,0,0,0.6);
        z-index: 200;
    }
    .nav-links.active { right: 0; }
    .nav-links a::after { display: none; }
    .mobile-menu-btn { display: block; z-index: 205; position: relative; }
    .mobile-menu-btn.active svg { stroke: var(--accent); }
    .section { padding: 4rem 5%; }
    .section-title { font-size: 1.6rem; }
    .grid { grid-template-columns: 1fr; }
    .about-highlights { grid-template-columns: 1fr; }
    .stat-showcase { grid-template-columns: 1fr 1fr; }
    .founder-left { flex-direction: column; align-items: center; text-align: center; }
    .founder-card { padding: 2rem; }
    .footer-grid { grid-template-columns: 1fr; }
    .steps-container { flex-direction: column; }
}

@media (max-width: 480px) {
    .hero { padding-top: 9rem; min-height: auto; padding-bottom: 3rem; }
    .hero-buttons { flex-direction: column; }
    .btn-large { justify-content: center; }
    .stat-showcase { grid-template-columns: 1fr; }
    .founder-photo { width: 130px; height: 130px; border-radius: 50%; }
}

/* Mobile CTA Fix — ensure Launch App is clickable on all screens */
@media (max-width: 768px) {
    .nav-cta {
        width: 100%;
        text-align: center;
        padding: 0.85rem 1.5rem;
        font-size: 1rem;
        margin-top: 1rem;
        pointer-events: auto;
        position: relative;
        z-index: 210;
    }
    .hero-buttons .btn-large {
        width: 100%;
        justify-content: center;
    }
}

/* ── Mobile: New Sections ──────────────────────────────── */
@media (max-width: 1024px) {
    .curriculum-grid { grid-template-columns: repeat(3, 1fr); }
    .trust-logos { gap: 1.5rem; }
    .stats-grid { gap: 2rem; }
}
@media (max-width: 768px) {
    .curriculum-grid { grid-template-columns: repeat(2, 1fr); }
    .pricing-grid { grid-template-columns: 1fr; }
    .trust-logos { gap: 1rem; }
    .trust-icon { font-size: 1.5rem; }
    .demo-browser { margin: 1.5rem -2% 0; border-radius: 8px; }
    .stats-grid { gap: 1.5rem; }
    .stat-num { font-size: 2rem; }
}
@media (max-width: 480px) {
    .curriculum-grid { grid-template-columns: 1fr; }
    .trust-logos { flex-direction: column; gap: 0.75rem; }
    .trust-logo { flex-direction: row; gap: 0.5rem; }
}

/* --- MOBILE FIXES --- */
@media (max-width: 768px) {
    html, body { overflow-x: hidden; width: 100%; max-width: 100vw; position: relative; }
    .navbar { padding: 1rem; }
    .nav-links { display: none; }
    .trust-logos { flex-wrap: wrap; justify-content: center; }
    .hero-buttons { flex-direction: column; width: 100%; align-items: center; }
    .btn-large { width: 90%; text-align: center; }
    .stats-grid, .pricing-grid, .about-grid { grid-template-columns: 1fr; }
    .demo-browser { margin: 1rem; }
    .founder-card { flex-direction: column; }
    
    /* Make typography smaller */
    .hero-title { font-size: 2.2rem; }
    .section-title { font-size: 2rem; }
}
