/* ===== DESIGN TOKENS ===== */
:root {
    --bg-primary: #09090b;
    --bg-secondary: #111114;
    --bg-tertiary: #18181b;
    --bg-card: #131316;
    --bg-card-hover: #1a1a1f;
    --border: #27272a;
    --border-subtle: #1e1e22;
    --text-primary: #fafafa;
    --text-secondary: #a1a1aa;
    --text-muted: #71717a;
    --accent-1: #6d5cff;
    --accent-2: #a78bfa;
    --accent-3: #c4b5fd;
    --gradient-start: #6d5cff;
    --gradient-end: #06b6d4;
    --danger: #ef4444;
    --danger-soft: #451a1a;
    --success: #10b981;
    --success-soft: #0d3326;
    --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-mono: 'JetBrains Mono', monospace;
    --radius-sm: 6px;
    --radius-md: 10px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --shadow-glow: 0 0 80px rgba(109,92,255,0.15);
}

/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }
body {
    font-family: var(--font-sans);
    background: var(--bg-primary);
    color: var(--text-secondary);
    line-height: 1.7;
    overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
strong { color: var(--text-primary); font-weight: 600; }
img { max-width: 100%; display: block; }

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

/* ===== UTILITIES ===== */
.text-gradient {
    background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.text-danger { color: var(--danger); }
.mono { font-family: var(--font-mono); font-size: 0.85em; }

/* ===== NAV ===== */
.nav {
    position: fixed; top: 0; left: 0; right: 0; z-index: 100;
    background: rgba(9,9,11,0.75);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--border-subtle);
    transition: background 0.3s;
}
.nav-inner {
    display: flex; justify-content: space-between; align-items: center;
    height: 64px;
}
.nav-logo { display: flex; align-items: center; gap: 8px; font-weight: 700; font-size: 1.1rem; letter-spacing: -0.02em; color: var(--text-primary); }
.logo-icon { font-size: 1.4rem; color: var(--accent-1); }
.logo-accent { color: var(--accent-2); }
.nav-cta {
    font-size: 0.85rem; font-weight: 600; padding: 8px 20px;
    border-radius: var(--radius-sm);
    background: rgba(109,92,255,0.12); color: var(--accent-2);
    border: 1px solid rgba(109,92,255,0.25);
    transition: all 0.25s;
}
.nav-cta:hover { background: rgba(109,92,255,0.22); border-color: rgba(109,92,255,0.5); }

/* ===== HERO ===== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex; align-items: center;
    padding: 120px 0 80px;
    overflow: hidden;
}
.hero-grid-bg {
    position: absolute; inset: 0;
    background-image:
        linear-gradient(rgba(109,92,255,0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(109,92,255,0.04) 1px, transparent 1px);
    background-size: 60px 60px;
    mask-image: radial-gradient(ellipse 70% 60% at 50% 40%, black 20%, transparent 70%);
}
.hero-glow {
    position: absolute; top: -200px; left: 50%; transform: translateX(-50%);
    width: 800px; height: 600px;
    background: radial-gradient(ellipse, rgba(109,92,255,0.12) 0%, transparent 70%);
    pointer-events: none;
}
.hero-container { position: relative; text-align: center; }

.hero-badge {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 6px 16px; margin-bottom: 32px;
    border-radius: 100px;
    background: rgba(109,92,255,0.08);
    border: 1px solid rgba(109,92,255,0.2);
    font-size: 0.8rem; font-weight: 500;
    color: var(--accent-2);
    animation: fadeInUp 0.8s ease both;
}
.badge-dot {
    width: 6px; height: 6px; border-radius: 50%;
    background: var(--success);
    box-shadow: 0 0 8px var(--success);
    animation: pulse 2s infinite;
}

.hero-headline {
    font-size: clamp(2.4rem, 5.5vw, 4.2rem);
    font-weight: 800; letter-spacing: -0.035em;
    line-height: 1.1; color: var(--text-primary);
    margin-bottom: 24px;
    animation: fadeInUp 0.8s 0.1s ease both;
}
.hero-sub {
    font-size: clamp(1rem, 1.8vw, 1.15rem);
    max-width: 640px; margin: 0 auto 40px;
    line-height: 1.8; color: var(--text-secondary);
    animation: fadeInUp 0.8s 0.2s ease both;
}

.hero-cta-row {
    display: flex; align-items: center; justify-content: center;
    gap: 20px; flex-wrap: wrap;
    margin-bottom: 64px;
    animation: fadeInUp 0.8s 0.3s ease both;
}
.hero-note {
    font-size: 0.8rem; color: var(--text-muted);
    font-family: var(--font-mono);
}

/* ===== BUTTONS ===== */
.btn {
    display: inline-flex; align-items: center; gap: 10px;
    font-family: var(--font-sans);
    font-weight: 600; cursor: pointer;
    border: none; border-radius: var(--radius-md);
    transition: all 0.3s cubic-bezier(0.4,0,0.2,1);
    white-space: nowrap;
}
.btn-primary {
    background: linear-gradient(135deg, var(--accent-1), #8b5cf6);
    color: #fff;
    box-shadow: 0 0 24px rgba(109,92,255,0.25), inset 0 1px 0 rgba(255,255,255,0.1);
}
.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 40px rgba(109,92,255,0.4), inset 0 1px 0 rgba(255,255,255,0.15);
}
.btn-lg { padding: 16px 32px; font-size: 1rem; border-radius: var(--radius-md); }
.btn-arrow { transition: transform 0.3s; }
.btn:hover .btn-arrow { transform: translateX(4px); }

/* ===== METRICS BAR ===== */
.hero-metrics {
    display: flex; justify-content: center; align-items: center;
    gap: 0; flex-wrap: wrap;
    padding: 28px 40px;
    border-radius: var(--radius-lg);
    background: rgba(19,19,22,0.8);
    border: 1px solid var(--border);
    backdrop-filter: blur(8px);
    animation: fadeInUp 0.8s 0.4s ease both;
}
.metric { text-align: center; padding: 0 36px; }
.metric-value {
    display: block; font-size: 1.8rem; font-weight: 800;
    color: var(--text-primary);
    font-family: var(--font-mono);
    letter-spacing: -0.03em;
}
.metric-label { display: block; font-size: 0.78rem; color: var(--text-muted); margin-top: 4px; }
.metric-divider { width: 1px; height: 48px; background: var(--border); }

/* ===== SECTION BASICS ===== */
.section { padding: 120px 0; position: relative; }
.section-label {
    display: flex; align-items: center; gap: 12px;
    margin-bottom: 24px;
}
.section-label-center { justify-content: center; }
.label-line { width: 32px; height: 1px; background: var(--accent-1); }
.label-text {
    font-size: 0.72rem; font-weight: 600;
    letter-spacing: 0.15em;
    color: var(--accent-2);
    font-family: var(--font-mono);
}
.section-heading {
    font-size: clamp(1.8rem, 3.5vw, 2.8rem);
    font-weight: 800; letter-spacing: -0.03em;
    line-height: 1.15; color: var(--text-primary);
    margin-bottom: 20px;
}
.section-heading-center { text-align: center; }
.section-copy { font-size: 1.05rem; line-height: 1.8; max-width: 560px; margin-bottom: 16px; }
.section-copy-accent { color: var(--accent-2); font-weight: 600; font-size: 1.15rem; }

/* ===== PROBLEM SECTION ===== */
.section-problem { background: var(--bg-primary); border-top: 1px solid var(--border-subtle); }
.problem-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.problem-card, .solution-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 32px;
    transition: all 0.4s;
}
.problem-card:hover, .solution-card:hover { border-color: rgba(109,92,255,0.3); transform: translateY(-4px); }
.problem-card-header { display: flex; align-items: center; gap: 12px; margin-bottom: 24px; }
.problem-card-icon {
    width: 32px; height: 32px; border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 0.85rem; font-weight: 700;
}
.problem-card-icon-bad { background: var(--danger-soft); color: var(--danger); }
.problem-card-icon-good { background: var(--success-soft); color: var(--success); }
.problem-card-title { font-weight: 600; font-size: 1rem; color: var(--text-primary); }
.problem-card-list { display: flex; flex-direction: column; gap: 12px; margin-bottom: 24px; }
.problem-card-list li {
    padding-left: 20px; position: relative; font-size: 0.92rem;
    color: var(--text-secondary);
}
.problem-card-list li::before {
    content: ''; position: absolute; left: 0; top: 8px;
    width: 6px; height: 6px; border-radius: 50%;
}
.problem-card .problem-card-list li::before { background: var(--danger); opacity: 0.6; }
.solution-list li::before { background: var(--success) !important; opacity: 0.6; }
.problem-card-footer {
    padding-top: 16px; border-top: 1px solid var(--border);
    display: flex; justify-content: space-between; align-items: center;
}
.problem-card-footer-bad .mono { color: var(--text-muted); }
.problem-value-bad { color: var(--danger); font-weight: 600; }
.problem-card-footer-good .mono { color: var(--text-muted); }
.problem-value-good { color: var(--success); font-weight: 600; }

/* ===== SOLUTION SECTION ===== */
.section-solution { background: var(--bg-secondary); position: relative; overflow: hidden; }
.solution-glow {
    position: absolute; bottom: -200px; right: -100px;
    width: 500px; height: 500px;
    background: radial-gradient(ellipse, rgba(6,182,212,0.08), transparent 70%);
    pointer-events: none;
}
.solution-grid {
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 64px; align-items: center;
}
.solution-integrations { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 24px; }
.integration-badge {
    padding: 8px 16px; border-radius: var(--radius-sm);
    background: rgba(109,92,255,0.08);
    border: 1px solid rgba(109,92,255,0.15);
    font-size: 0.8rem; font-weight: 500;
    color: var(--accent-3);
    font-family: var(--font-mono);
}

/* ===== STEPS / WORKFLOW SECTION ===== */
.section-steps { background: var(--bg-primary); border-top: 1px solid var(--border-subtle); }

/* 4-column horizontal workflow track */
.workflow-track {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    margin-top: 56px;
    position: relative;
}

.workflow-step {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 0 28px 0 0;
    position: relative;
}
.workflow-step:last-child { padding-right: 0; }

/* Icon row with arrow connector */
.workflow-icon-wrap {
    display: flex;
    align-items: center;
    width: 100%;
    margin-bottom: 20px;
}
.workflow-icon {
    flex-shrink: 0;
    width: 64px; height: 64px;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    background: var(--bg-card);
    border: 1px solid var(--border);
    color: var(--accent-2);
    transition: all 0.35s;
    position: relative;
    z-index: 1;
}
.workflow-icon-active {
    background: linear-gradient(135deg, rgba(109,92,255,0.2), rgba(139,92,246,0.1));
    border-color: rgba(109,92,255,0.45);
    box-shadow: 0 0 24px rgba(109,92,255,0.18);
}
.workflow-step:hover .workflow-icon {
    border-color: rgba(109,92,255,0.4);
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(109,92,255,0.15);
}
.workflow-arrow {
    flex: 1;
    display: flex; align-items: center; justify-content: center;
    color: var(--border);
    opacity: 0.6;
}
.workflow-num {
    font-family: var(--font-mono);
    font-size: 0.72rem; font-weight: 700;
    letter-spacing: 0.08em;
    color: var(--accent-1);
    margin-bottom: 8px;
    background: rgba(109,92,255,0.1);
    padding: 2px 10px;
    border-radius: 100px;
    border: 1px solid rgba(109,92,255,0.2);
    display: inline-block;
}
.workflow-title {
    font-size: 1.05rem; font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 10px;
    line-height: 1.3;
}
.workflow-desc {
    font-size: 0.88rem;
    line-height: 1.7;
    color: var(--text-secondary);
}
.workflow-desc em {
    font-style: normal;
    color: var(--success);
    font-weight: 600;
}

/* Deposit callout strip */
.deposit-callout {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    margin-top: 48px;
    padding: 20px 28px;
    border-radius: var(--radius-md);
    background: rgba(109,92,255,0.05);
    border: 1px solid rgba(109,92,255,0.2);
    border-left: 3px solid var(--accent-1);
}
.deposit-callout-icon {
    flex-shrink: 0;
    color: var(--accent-2);
    margin-top: 1px;
}
.deposit-callout p {
    font-size: 0.9rem;
    line-height: 1.7;
    color: var(--text-secondary);
}
.deposit-callout strong {
    color: var(--text-primary);
}

/* ===== TRUST SECTION ===== */
.section-trust { background: var(--bg-secondary); }
.trust-wrapper { max-width: 960px; margin: 0 auto; }
.trust-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; margin-top: 56px; }
.trust-item {
    padding: 32px 24px;
    border-radius: var(--radius-lg);
    background: var(--bg-card);
    border: 1px solid var(--border);
    transition: all 0.4s;
}
.trust-item:hover { border-color: rgba(109,92,255,0.3); transform: translateY(-4px); }
.trust-icon {
    width: 52px; height: 52px; border-radius: var(--radius-md);
    display: flex; align-items: center; justify-content: center;
    background: rgba(109,92,255,0.1);
    color: var(--accent-2);
    margin-bottom: 20px;
}
.trust-title { font-size: 1rem; font-weight: 700; color: var(--text-primary); margin-bottom: 10px; }
.trust-desc { font-size: 0.88rem; line-height: 1.7; }

/* ===== FINAL CTA ===== */
.section-cta {
    background: var(--bg-primary); position: relative; overflow: hidden;
    padding: 140px 0;
    border-top: 1px solid var(--border-subtle);
}
.cta-glow {
    position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%);
    width: 600px; height: 400px;
    background: radial-gradient(ellipse, rgba(109,92,255,0.1), transparent 70%);
    pointer-events: none;
}
.cta-wrapper { text-align: center; position: relative; }
.cta-heading {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800; letter-spacing: -0.03em;
    line-height: 1.15; color: var(--text-primary);
    margin-bottom: 20px;
}
.cta-copy { font-size: 1.1rem; margin-bottom: 36px; color: var(--text-secondary); }
.btn-cta-final { margin-bottom: 28px; }
.cta-reassurance {
    display: flex; justify-content: center;
    gap: 28px; flex-wrap: wrap;
}
.reassurance-item {
    display: inline-flex; align-items: center; gap: 6px;
    font-size: 0.82rem; color: var(--text-muted);
}
.reassurance-item svg { color: var(--success); flex-shrink: 0; }

/* ===== FOOTER ===== */
.footer {
    padding: 32px 0;
    border-top: 1px solid var(--border-subtle);
    background: var(--bg-primary);
}
.footer-inner {
    display: flex; justify-content: space-between; align-items: center;
}
.footer-brand { display: flex; align-items: center; gap: 8px; }
.footer-copy { font-size: 0.8rem; color: var(--text-muted); }

/* ===== ANIMATIONS ===== */
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(24px); }
    to { opacity: 1; transform: translateY(0); }
}
@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.4; }
}

/* Scroll-triggered animation */
.reveal { opacity: 0; transform: translateY(32px); transition: all 0.8s cubic-bezier(0.16,1,0.3,1); }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ===== VALUE STACK / PACKAGES ===== */
.section-value-stack { background: var(--bg-secondary); border-top: 1px solid var(--border-subtle); }
.packages-intro { text-align: center; font-size: 0.95rem; color: var(--text-secondary); max-width: 560px; margin: 0 auto 48px; }
.packages-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; max-width: 900px; margin: 0 auto; }
.package-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 36px 32px;
    position: relative;
    transition: all 0.4s;
}
.package-card:hover { border-color: rgba(109,92,255,0.3); transform: translateY(-4px); }
.package-card-featured {
    border-color: rgba(109,92,255,0.4);
    background: linear-gradient(180deg, rgba(109,92,255,0.07) 0%, var(--bg-card) 50%);
    box-shadow: 0 0 48px rgba(109,92,255,0.1);
}
.package-badge-rec {
    position: absolute; top: -12px; left: 50%; transform: translateX(-50%);
    background: linear-gradient(135deg, var(--accent-1), #8b5cf6);
    color: #fff; font-size: 0.72rem; font-weight: 700; letter-spacing: 0.1em;
    padding: 4px 16px; border-radius: 100px;
}
.package-header { display: flex; justify-content: space-between; align-items: baseline; margin-bottom: 12px; }
.package-name { font-size: 1.1rem; font-weight: 700; color: var(--text-primary); }
.package-videos {
    font-family: var(--font-mono); font-size: 0.8rem; font-weight: 600;
    color: var(--accent-2); background: rgba(109,92,255,0.1);
    padding: 3px 12px; border-radius: 100px; border: 1px solid rgba(109,92,255,0.2);
}
.package-pitch { font-size: 0.88rem; color: var(--text-secondary); margin-bottom: 24px; line-height: 1.6; }
.deliverable-list { list-style: none; display: flex; flex-direction: column; gap: 10px; margin-bottom: 24px; }
.deliverable-list li { display: flex; align-items: flex-start; gap: 10px; font-size: 0.88rem; color: var(--text-secondary); line-height: 1.5; }
.dl-check { flex-shrink: 0; color: var(--success); font-weight: 700; font-size: 0.85rem; margin-top: 1px; }
.dl-check-featured { color: var(--accent-2); }
.package-deposit-note {
    font-family: var(--font-mono); font-size: 0.75rem; color: var(--text-muted);
    margin-bottom: 20px; padding-top: 16px; border-top: 1px solid var(--border-subtle);
}
.pkg-btn {
    display: block; width: 100%; text-align: center;
    padding: 12px 24px; border-radius: var(--radius-md);
    font-weight: 600; font-size: 0.9rem; cursor: pointer;
    transition: all 0.3s;
}
.pkg-btn-secondary {
    background: transparent; border: 1px solid var(--border);
    color: var(--text-secondary);
}
.pkg-btn-secondary:hover { border-color: rgba(109,92,255,0.4); color: var(--text-primary); }
.pkg-btn-primary {
    background: linear-gradient(135deg, var(--accent-1), #8b5cf6);
    color: #fff; border: none;
    box-shadow: 0 0 24px rgba(109,92,255,0.25);
}
.pkg-btn-primary:hover { box-shadow: 0 0 40px rgba(109,92,255,0.4); transform: translateY(-1px); }

/* ===== GUARANTEE SECTION ===== */
.section-guarantee { background: var(--bg-primary); border-top: 1px solid var(--border-subtle); padding: 80px 0; }
.guarantee-box {
    display: flex; gap: 48px; align-items: flex-start;
    max-width: 860px; margin: 0 auto;
    padding: 48px; border-radius: var(--radius-xl);
    background: rgba(109,92,255,0.04);
    border: 1px solid rgba(109,92,255,0.2);
    border-left: 4px solid var(--accent-1);
}
.guarantee-shield {
    width: 72px; height: 72px; border-radius: var(--radius-md);
    display: flex; align-items: center; justify-content: center;
    background: rgba(109,92,255,0.12); color: var(--accent-2);
    flex-shrink: 0;
}
.guarantee-eyebrow {
    font-family: var(--font-mono); font-size: 0.7rem; font-weight: 700;
    letter-spacing: 0.15em; color: var(--accent-1);
    margin-bottom: 12px;
}
.guarantee-heading {
    font-size: clamp(1.1rem, 2vw, 1.4rem);
    font-weight: 700; color: var(--text-primary);
    line-height: 1.3; margin-bottom: 16px;
}
.guarantee-body { font-size: 0.92rem; line-height: 1.8; color: var(--text-secondary); }
.guarantee-body strong { color: var(--text-primary); }

/* ===== COHORT BADGE (CTA) ===== */
.cohort-badge {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 6px 16px; margin-bottom: 28px;
    border-radius: 100px;
    background: rgba(16,185,129,0.08);
    border: 1px solid rgba(16,185,129,0.2);
    font-size: 0.78rem; font-weight: 500;
    color: var(--success); font-family: var(--font-mono);
}
.cohort-dot {
    width: 6px; height: 6px; border-radius: 50%;
    background: var(--success);
    box-shadow: 0 0 8px var(--success);
    animation: pulse 2s infinite;
}

/* ===== 5-COLUMN WORKFLOW ===== */
.workflow-5 { grid-template-columns: repeat(5, 1fr); }

/* ===== RESPONSIVE ===== */
@media (max-width: 1100px) {
    .workflow-5 { grid-template-columns: repeat(3, 1fr); gap: 32px; }
    .workflow-5 .workflow-step:nth-child(3) .workflow-arrow { display: none; }
    .workflow-5 .workflow-step:last-child .workflow-arrow { display: none; }
}
@media (max-width: 900px) {
    .problem-grid, .solution-grid { grid-template-columns: 1fr; gap: 40px; }
    .trust-grid { grid-template-columns: 1fr; }
    .hero-metrics { flex-direction: column; gap: 24px; padding: 24px; }
    .metric-divider { width: 48px; height: 1px; }
    .metric { padding: 0; }
    .workflow-track { grid-template-columns: repeat(2, 1fr); gap: 40px; }
    .workflow-5 { grid-template-columns: repeat(2, 1fr); }
    .workflow-step { padding-right: 0; }
    .workflow-arrow { display: none; }
    .packages-grid { grid-template-columns: 1fr; max-width: 480px; }
    .guarantee-box { flex-direction: column; gap: 24px; padding: 32px; }
}
@media (max-width: 600px) {
    .hero { padding: 100px 0 60px; }
    .section { padding: 80px 0; }
    .hero-headline { font-size: 2rem; }
    .nav-inner { padding: 0 16px; }
    .container { padding: 0 16px; }
    .cta-reassurance { flex-direction: column; align-items: center; gap: 12px; }
    .footer-inner { flex-direction: column; gap: 12px; text-align: center; }
    .workflow-5 { grid-template-columns: 1fr; }
    .nav-cta { font-size: 0.75rem; padding: 7px 14px; }
    .guarantee-box { padding: 24px; }
    .cohort-badge { font-size: 0.7rem; text-align: center; }
}

