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

:root {
    --color-dark: #1a1a2e;
    --color-primary: #e94560;
    --color-primary-hover: #ff6b81;
    --color-secondary: #0f3460;
    --color-accent: #f8b500;
    --color-warm: #fdf6ec;
    --color-warm-alt: #fff9f0;
    --color-text: #2c2c2c;
    --color-text-light: #555;
    --color-text-muted: #888;
    --color-white: #ffffff;
    --color-bg: #fefefe;
    --color-card-bg: #ffffff;
    --font-heading: 'Playfair Display', Georgia, serif;
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    --shadow: 0 4px 30px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 12px 60px rgba(0, 0, 0, 0.12);
    --radius: 16px;
    --radius-sm: 8px;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    color: var(--color-text);
    background: var(--color-bg);
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

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


/* === Hero === */
.hero {
    position: relative;
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--color-white);
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background: url('IMG_5209.jpeg') center 30% / cover no-repeat;
    z-index: 0;
}

.hero-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(26, 26, 46, 0.8) 0%, rgba(22, 33, 62, 0.7) 50%, rgba(15, 52, 96, 0.65) 100%);
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 700px;
    padding: 80px 24px;
}

.hero-tag {
    display: inline-block;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--color-accent);
    margin-bottom: 20px;
    padding: 6px 16px;
    border: 1px solid rgba(248, 181, 0, 0.4);
    border-radius: 50px;
}

.hero h1 {
    font-family: var(--font-heading);
    font-size: clamp(2.4rem, 6vw, 4rem);
    font-weight: 900;
    line-height: 1.15;
    margin-bottom: 24px;
}

.hero-subhead {
    font-size: clamp(1rem, 2vw, 1.15rem);
    line-height: 1.8;
    opacity: 0.85;
    max-width: 580px;
    margin: 0 auto;
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1;
}

.scroll-indicator span {
    display: block;
    width: 2px;
    height: 36px;
    background: linear-gradient(to bottom, rgba(255,255,255,0.5), transparent);
    animation: scrollPulse 2s infinite;
}

@keyframes scrollPulse {
    0%, 100% { opacity: 1; transform: scaleY(1); }
    50% { opacity: 0.3; transform: scaleY(0.6); }
}


/* === The Fork (Choose Your Path) === */
.the-fork {
    padding: 80px 24px;
    background: var(--color-white);
    text-align: center;
}

.the-fork h2 {
    font-family: var(--font-heading);
    font-size: clamp(1.8rem, 4vw, 2.6rem);
    color: var(--color-dark);
    margin-bottom: 8px;
}

.fork-sub {
    color: var(--color-text-light);
    font-size: 1.05rem;
    margin-bottom: 48px;
}

.fork-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
    max-width: 800px;
    margin: 0 auto;
}

.fork-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 48px 32px;
    border-radius: var(--radius);
    text-decoration: none;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    cursor: pointer;
}

.fork-card:hover {
    transform: translateY(-6px);
}

.fork-guide {
    background: linear-gradient(145deg, #0f3460, #16213e);
    color: var(--color-white);
    box-shadow: 0 8px 40px rgba(15, 52, 96, 0.3);
}

.fork-guide:hover {
    box-shadow: 0 16px 60px rgba(15, 52, 96, 0.4);
}

.fork-runner {
    background: var(--color-warm);
    color: var(--color-dark);
    border: 2px solid rgba(0,0,0,0.06);
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.06);
}

.fork-runner:hover {
    box-shadow: 0 16px 60px rgba(0, 0, 0, 0.1);
}

.fork-emoji {
    font-size: 3rem;
    margin-bottom: 20px;
}

.fork-card h3 {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    margin-bottom: 12px;
    line-height: 1.4;
}

.fork-card p {
    font-size: 0.95rem;
    line-height: 1.7;
    opacity: 0.8;
    margin-bottom: 24px;
}

.fork-cta {
    display: inline-block;
    font-weight: 700;
    font-size: 0.9rem;
    padding: 8px 20px;
    border-radius: 50px;
    transition: all 0.2s ease;
}

.fork-guide .fork-cta {
    background: var(--color-primary);
    color: var(--color-white);
}

.fork-runner .fork-cta {
    background: var(--color-secondary);
    color: var(--color-white);
}


/* === Path Sections (Guide + Runner) === */
.path-section {
    padding: 100px 24px;
}

.guide-path {
    background: linear-gradient(180deg, #f0f4f8 0%, var(--color-white) 100%);
    border-top: 4px solid var(--color-secondary);
}

.runner-path {
    background: linear-gradient(180deg, var(--color-warm) 0%, var(--color-white) 100%);
    border-top: 4px solid var(--color-accent);
}

.path-label {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 3px;
    padding: 6px 14px;
    border-radius: 50px;
    margin-bottom: 20px;
}

.guide-path .path-label {
    background: var(--color-secondary);
    color: var(--color-white);
}

.runner-path .path-label {
    background: var(--color-accent);
    color: var(--color-dark);
}

.path-header {
    margin-bottom: 60px;
}

.path-header h2 {
    font-family: var(--font-heading);
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    color: var(--color-dark);
    margin-bottom: 16px;
    line-height: 1.3;
}

.path-header p {
    font-size: 1.1rem;
    color: var(--color-text-light);
    line-height: 1.8;
    max-width: 650px;
}

.path-how {
    margin-bottom: 60px;
}

.path-how h3 {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--color-dark);
    margin-bottom: 28px;
}

.path-steps {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.path-step {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    padding: 24px;
    background: var(--color-white);
    border-radius: var(--radius-sm);
    box-shadow: var(--shadow);
    border: 1px solid rgba(0,0,0,0.04);
}

.path-step-num {
    flex-shrink: 0;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 0.9rem;
    color: var(--color-white);
}

.guide-path .path-step-num {
    background: var(--color-secondary);
}

.runner-path .path-step-num {
    background: var(--color-accent);
    color: var(--color-dark);
}

.path-step strong {
    display: block;
    font-size: 1.05rem;
    margin-bottom: 4px;
    color: var(--color-dark);
}

.path-step p {
    font-size: 0.95rem;
    color: var(--color-text-light);
    line-height: 1.7;
}


/* === Path Details (Checklist) === */
.path-details {
    margin-bottom: 48px;
}

.path-details h3 {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--color-dark);
    margin-bottom: 20px;
}

.check-list {
    list-style: none;
}

.check-list li {
    padding: 12px 0;
    padding-left: 32px;
    position: relative;
    font-size: 1rem;
    color: var(--color-text);
    line-height: 1.7;
    border-bottom: 1px solid rgba(0,0,0,0.04);
}

.check-list li:last-child {
    border-bottom: none;
}

.check-list li::before {
    content: '\2713';
    position: absolute;
    left: 0;
    font-weight: 700;
    font-size: 1.1rem;
}

.guide-path .check-list li::before {
    color: var(--color-secondary);
}

.runner-path .check-list li::before {
    color: var(--color-accent);
}

/* === Path Quote === */
.path-quote {
    padding: 40px;
    background: var(--color-dark);
    border-radius: var(--radius);
    text-align: center;
}

.path-quote blockquote p {
    font-family: var(--font-heading);
    font-size: clamp(1.1rem, 2.5vw, 1.5rem);
    font-style: italic;
    color: var(--color-white);
    line-height: 1.6;
    opacity: 0.9;
}

/* === Why Section === */
.why-section {
    padding: 100px 24px;
    background: var(--color-bg);
    text-align: center;
}

.why-content h2 {
    font-family: var(--font-heading);
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    color: var(--color-dark);
    margin-bottom: 28px;
}

.why-content p {
    max-width: 650px;
    margin: 0 auto 18px;
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--color-text-light);
}

.why-bold {
    font-size: 1.3rem !important;
    font-weight: 800;
    color: var(--color-primary) !important;
    margin-top: 28px !important;
    letter-spacing: 1px;
}

/* === Stats === */
.stats {
    padding: 70px 24px;
    background: var(--color-dark);
    color: var(--color-white);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    text-align: center;
}

.stat-number {
    font-family: var(--font-heading);
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 900;
    color: var(--color-primary);
    line-height: 1;
    margin-bottom: 8px;
}

.stat-label {
    font-size: 0.85rem;
    opacity: 0.7;
    line-height: 1.5;
}


/* === Coming Soon / Signup === */
.signup {
    padding: 80px 24px;
    background: linear-gradient(135deg, #16213e 0%, #0f3460 100%);
    color: var(--color-white);
    text-align: center;
}

.signup h2 {
    font-family: var(--font-heading);
    font-size: clamp(1.8rem, 4vw, 2.4rem);
    margin-bottom: 12px;
}

.signup-sub {
    font-size: 1.05rem;
    opacity: 0.7;
}

/* === Footer === */
.footer {
    padding: 48px 24px;
    background: var(--color-dark);
    color: var(--color-white);
    text-align: center;
    border-top: 1px solid rgba(255,255,255,0.05);
}

.footer-brand {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 6px;
}

.footer-tagline {
    font-size: 0.9rem;
    opacity: 0.5;
    margin-bottom: 12px;
}

.footer-copy {
    font-size: 0.75rem;
    opacity: 0.3;
}

/* === Animations === */
.fade-in {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

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

/* === Responsive === */
@media (max-width: 768px) {
    .hero {
        min-height: 60vh;
    }

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

    .stats-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .path-section {
        padding: 70px 20px;
    }

    .path-step {
        padding: 20px;
    }

    .path-quote {
        padding: 28px 20px;
    }
}

@media (max-width: 480px) {
    .hero-content {
        padding: 60px 16px;
    }

    .the-fork {
        padding: 60px 20px;
    }

    .fork-card {
        padding: 36px 24px;
    }

    .path-step {
        flex-direction: column;
        gap: 12px;
    }

    .path-step-num {
        width: 32px;
        height: 32px;
        font-size: 0.8rem;
    }
}
