:root {
    color-scheme: dark;
    --bg-color: #050505;
    --text-color: #e0e0e0;
    --accent-color: #ff2a2a;
    /* Neon Red */
    --accent-gradient: linear-gradient(135deg, #ff2a2a 0%, #ff6b6b 100%);
    --accent-hover: #cc0000;
    --secondary-bg: #121212;
    --glass-bg: rgba(255, 255, 255, 0.03);
    --glass-border: rgba(255, 255, 255, 0.05);
    --border-color: #333;
    --font-main: 'Inter', sans-serif;
    --font-display: 'Oswald', sans-serif;
}

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

html {
    scroll-behavior: smooth;

    body {
        background-color: var(--bg-color);
        background-image:
            radial-gradient(circle at 15% 50%, rgba(255, 42, 42, 0.08) 0%, transparent 25%),
            radial-gradient(circle at 85% 30%, rgba(255, 42, 42, 0.05) 0%, transparent 25%);
        color: var(--text-color);
        font-family: var(--font-main);
        line-height: 1.6;
        overflow-x: hidden;
    }

    html {
        scroll-behavior: smooth;
    }

    h1,
    h2,
    h3,
    h4,
    h5,
    h6 {
        font-family: var(--font-display);
        text-transform: uppercase;
        letter-spacing: 1px;
        color: #fff;
    }

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

    .container {
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 20px;
    }

    /* Header */
    header {
        padding: 20px 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
        position: sticky;
        top: 0;
        background: rgba(0, 0, 0, 0.7);
        backdrop-filter: blur(12px);
        -webkit-backdrop-filter: blur(12px);
        z-index: 100;
    }

    .nav-flex {
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .nav-links {
        display: flex;
        align-items: center;
        gap: 20px;
    }

    .nav-links a:not(.btn-cta) {
        font-size: 0.95rem;
        font-weight: 500;
        color: #ccc;
        transition: color 0.3s;
    }

    .nav-links a:not(.btn-cta):hover {
        color: #fff;
    }

    .logo {
        font-size: 1.5rem;
        font-weight: 700;
        color: #1a3a5c;
        display: flex;
        align-items: center;
        gap: 8px;
        transition: transform 0.3s ease;
        position: relative;
        z-index: 1002;
        isolation: isolate;
    }

    .logo:hover {
        transform: scale(1.02);
    }

    .logo svg {
        filter: drop-shadow(0 2px 4px rgba(26, 58, 92, 0.2));
    }

    .logo-text {
        font-family: var(--font-display);
        letter-spacing: 2px;
        display: none;
        /* Hidden since logo SVG now contains text */
    }

    /* Start Hidden on Desktop */
    .nav-toggle {
        display: none;
        background: none;
        border: none;
        cursor: pointer;
        padding: 5px;
    }

    .btn-cta {
        background: var(--accent-gradient);
        color: #fff;
        padding: 12px 28px;
        border-radius: 4px;
        font-weight: 600;
        transition: all 0.3s ease;
        border: none;
        text-transform: uppercase;
        font-size: 0.9rem;
        letter-spacing: 0.5px;
        box-shadow: 0 4px 15px rgba(255, 42, 42, 0.3);
    }

    .btn-cta:hover {
        transform: translateY(-2px);
        box-shadow: 0 6px 20px rgba(255, 42, 42, 0.5);
    }

    /* Hero Section */
    .hero {
        padding: 120px 0 100px;
        text-align: center;
        min-height: 90vh;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        background: radial-gradient(circle at center, #0f0f0f 0%, #050505 70%);
        position: relative;
        overflow: hidden;
    }

    .hero-background-graphics {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        pointer-events: none;
        z-index: 0;
    }

    .hero-graphic {
        position: absolute;
        width: 300px;
        height: 300px;
        opacity: 0.6;
    }

    .hero-graphic-1 {
        top: 10%;
        left: 5%;
        animation: float 6s ease-in-out infinite;
    }

    .hero-graphic-2 {
        bottom: 10%;
        right: 5%;
        animation: float 8s ease-in-out infinite reverse;
    }

    @keyframes float {

        0%,
        100% {
            transform: translateY(0px);
        }

        50% {
            transform: translateY(-20px);
        }
    }

    .hero .container {
        position: relative;
        z-index: 1;
    }

    .hero-badge {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        background: rgba(255, 42, 42, 0.1);
        border: 1px solid rgba(255, 42, 42, 0.3);
        padding: 8px 20px;
        border-radius: 50px;
        margin-bottom: 30px;
        font-size: 0.85rem;
        font-weight: 600;
        text-transform: uppercase;
        letter-spacing: 1px;
        color: var(--accent-color);
    }

    .hero h1 {
        font-size: 4rem;
        line-height: 1.1;
        margin-bottom: 25px;
        max-width: 1000px;
        margin-left: auto;
        margin-right: auto;
    }

    .hero h1 span {
        color: var(--accent-color);
        text-shadow: 0 0 30px rgba(255, 42, 42, 0.5);
    }

    .hero p {
        font-size: 1.3rem;
        color: #bbb;
        max-width: 700px;
        margin: 0 auto 40px;
        line-height: 1.8;
    }

    .hero-stats {
        display: flex;
        justify-content: center;
        gap: 60px;
        margin: 40px 0;
        flex-wrap: wrap;
    }

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

    .stat-value {
        font-size: 2.5rem;
        font-weight: 700;
        color: var(--accent-color);
        font-family: var(--font-display);
        margin-bottom: 5px;
    }

    .stat-label {
        font-size: 0.9rem;
        color: #888;
        text-transform: uppercase;
        letter-spacing: 1px;
    }

    .hero-btns {
        display: flex;
        gap: 20px;
        justify-content: center;
        flex-wrap: wrap;
    }

    .btn-secondary {
        background: transparent;
        color: #fff;
        padding: 12px 28px;
        border-radius: 4px;
        font-weight: 600;
        transition: all 0.3s ease;
        border: 2px solid rgba(255, 255, 255, 0.2);
        text-transform: uppercase;
        font-size: 0.9rem;
        letter-spacing: 0.5px;
    }

    .btn-secondary:hover {
        border-color: var(--accent-color);
        background: rgba(255, 42, 42, 0.1);
        transform: translateY(-2px);
    }

    /* Hero Waitlist Form - Glassmorphic */
    .hero-waitlist-container {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 15px;
        margin-top: 10px;
    }

    .hero-waitlist-form {
        display: flex;
        align-items: center;
        gap: 0;
        max-width: 550px;
        width: 100%;
        background: linear-gradient(135deg, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0.03) 100%);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        border: 1px solid rgba(255, 255, 255, 0.15);
        border-radius: 16px;
        padding: 6px;
        position: relative;
        box-shadow:
            0 0 40px rgba(255, 42, 42, 0.15),
            0 0 80px rgba(255, 42, 42, 0.08),
            0 8px 32px rgba(0, 0, 0, 0.3),
            inset 0 1px 0 rgba(255, 255, 255, 0.1);
        transition: all 0.4s ease;
    }

    .hero-waitlist-form::before {
        content: '';
        position: absolute;
        top: -1px;
        left: -1px;
        right: -1px;
        bottom: -1px;
        background: linear-gradient(135deg, rgba(255, 42, 42, 0.3), transparent 50%, rgba(255, 42, 42, 0.3));
        border-radius: 17px;
        z-index: -1;
        opacity: 0;
        transition: opacity 0.4s ease;
    }

    .hero-waitlist-form:focus-within::before {
        opacity: 1;
    }

    .hero-waitlist-form:focus-within {
        border-color: rgba(255, 42, 42, 0.4);
        box-shadow:
            0 0 60px rgba(255, 42, 42, 0.25),
            0 0 100px rgba(255, 42, 42, 0.12),
            0 12px 40px rgba(0, 0, 0, 0.4),
            inset 0 1px 0 rgba(255, 255, 255, 0.15);
    }

    .hero-waitlist-input-wrapper {
        display: flex;
        align-items: center;
        flex: 1;
        padding: 0 20px;
        gap: 12px;
    }

    .hero-waitlist-input-wrapper .input-icon {
        color: rgba(255, 255, 255, 0.4);
        flex-shrink: 0;
        transition: color 0.3s ease;
    }

    .hero-waitlist-form:focus-within .input-icon {
        color: var(--accent-color);
    }

    .hero-waitlist-input {
        flex: 1;
        background: transparent;
        border: none;
        padding: 16px 0;
        color: #fff;
        font-size: 1rem;
        font-family: var(--font-main);
        outline: none;
    }

    .hero-waitlist-input::placeholder {
        color: rgba(255, 255, 255, 0.4);
        transition: color 0.3s ease;
    }

    .hero-waitlist-input:focus::placeholder {
        color: rgba(255, 255, 255, 0.6);
    }

    .hero-waitlist-btn {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        gap: 10px;
        padding: 16px 32px;
        background: linear-gradient(135deg, rgba(255, 42, 42, 0.9) 0%, rgba(255, 80, 80, 0.9) 100%);
        color: #fff;
        font-size: 0.95rem;
        font-weight: 700;
        text-transform: uppercase;
        letter-spacing: 0.5px;
        border: none;
        border-radius: 12px;
        cursor: pointer;
        transition: all 0.3s ease;
        position: relative;
        overflow: hidden;
        box-shadow:
            0 4px 15px rgba(255, 42, 42, 0.4),
            inset 0 1px 0 rgba(255, 255, 255, 0.2);
    }

    .hero-waitlist-btn::before {
        content: '';
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
        transition: left 0.5s ease;
    }

    .hero-waitlist-btn:hover::before {
        left: 100%;
    }

    .hero-waitlist-btn:hover {
        transform: translateY(-2px);
        box-shadow:
            0 8px 25px rgba(255, 42, 42, 0.5),
            0 0 40px rgba(255, 42, 42, 0.3),
            inset 0 1px 0 rgba(255, 255, 255, 0.25);
        background: linear-gradient(135deg, rgba(255, 60, 60, 1) 0%, rgba(255, 100, 100, 1) 100%);
    }

    .hero-waitlist-btn svg {
        transition: transform 0.3s ease;
    }

    .hero-waitlist-btn:hover svg {
        transform: translateX(4px);
    }

    .hero-waitlist-note {
        font-size: 0.85rem;
        color: rgba(255, 255, 255, 0.4);
        margin: 0;
    }

    /* 1. SCARCITY BADGE - Doomsday Counter */
    .scarcity-badge {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        background: linear-gradient(135deg, rgba(255, 42, 42, 0.2) 0%, rgba(255, 42, 42, 0.1) 100%);
        border: 1px solid rgba(255, 42, 42, 0.5);
        border-radius: 50px;
        padding: 8px 18px;
        margin-bottom: 20px;
        font-size: 0.85rem;
        font-weight: 600;
        color: #ff6b6b;
        text-transform: uppercase;
        letter-spacing: 1.5px;
        animation: pulse-glow 2s ease-in-out infinite;
    }

    .scarcity-badge svg {
        color: #ff4444;
        animation: tick 1s ease-in-out infinite;
    }

    .scarcity-badge strong {
        color: #ff4444;
        font-weight: 800;
        font-size: 1rem;
        transition: transform 0.3s ease, color 0.3s ease;
    }

    .scarcity-badge-bottom {
        margin-bottom: 30px;
    }

    @keyframes pulse-glow {

        0%,
        100% {
            box-shadow: 0 0 10px rgba(255, 42, 42, 0.3);
        }

        50% {
            box-shadow: 0 0 20px rgba(255, 42, 42, 0.5), 0 0 30px rgba(255, 42, 42, 0.2);
        }
    }

    @keyframes tick {

        0%,
        100% {
            transform: rotate(0deg);
        }

        25% {
            transform: rotate(-5deg);
        }

        75% {
            transform: rotate(5deg);
        }
    }

    /* 3. BRIBE - Immediate Value */
    .hero-waitlist-bribe {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        font-size: 0.9rem;
        color: #4ade80;
        margin: 15px 0 10px;
        padding: 10px 20px;
        background: rgba(74, 222, 128, 0.1);
        border: 1px solid rgba(74, 222, 128, 0.3);
        border-radius: 8px;
    }

    .hero-waitlist-bribe svg {
        color: #4ade80;
    }

    .hero-waitlist-bribe strong {
        color: #22c55e;
    }

    .waitlist-bribe {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        font-size: 0.9rem;
        color: #4ade80;
        margin: 20px 0 10px;
        padding: 10px 20px;
        background: rgba(74, 222, 128, 0.1);
        border: 1px solid rgba(74, 222, 128, 0.3);
        border-radius: 8px;
    }

    .waitlist-bribe svg {
        color: #4ade80;
    }

    .waitlist-bribe strong {
        color: #22c55e;
    }

    /* 5. TRIBAL SOCIAL PROOF */
    .hero-waitlist-social-proof,
    .waitlist-social-proof {
        display: inline-flex;
        align-items: center;
        gap: 10px;
        font-size: 0.85rem;
        color: rgba(255, 255, 255, 0.6);
        margin-top: 8px;
    }

    .hero-waitlist-social-proof strong,
    .waitlist-social-proof strong {
        color: rgba(255, 255, 255, 0.9);
        font-weight: 600;
    }

    .pulse-dot {
        width: 8px;
        height: 8px;
        background: #4ade80;
        border-radius: 50%;
        animation: pulse-dot 1.5s ease-in-out infinite;
    }

    @keyframes pulse-dot {

        0%,
        100% {
            opacity: 1;
            transform: scale(1);
        }

        50% {
            opacity: 0.5;
            transform: scale(1.3);
        }
    }

    /* Features Section */
    .features {
        padding: 100px 0;
        background-color: var(--secondary-bg);
        position: relative;
    }

    .features::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 1px;
        background: linear-gradient(90deg, transparent 0%, var(--accent-color) 50%, transparent 100%);
    }

    .section-title {
        text-align: center;
        margin-bottom: 70px;
    }

    .section-title h2 {
        font-size: 2.8rem;
        margin-bottom: 15px;
        background: linear-gradient(135deg, #fff 0%, #ff2a2a 100%);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
    }

    .section-title p {
        color: #999;
        font-size: 1.1rem;
        letter-spacing: 0.5px;
    }

    .feature-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 30px;
    }

    .feature-card {
        background: var(--glass-bg);
        padding: 40px 35px;
        border: 1px solid var(--glass-border);
        border-radius: 16px;
        transition: all 0.3s ease;
        backdrop-filter: blur(5px);
        position: relative;
        overflow: hidden;
    }

    .feature-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 3px;
        background: var(--accent-gradient);
        transform: scaleX(0);
        transition: transform 0.3s ease;
    }

    .feature-card:hover::before {
        transform: scaleX(1);
    }

    .feature-card:hover {
        transform: translateY(-10px);
        border-color: var(--accent-color);
        background: rgba(255, 255, 255, 0.05);
        box-shadow: 0 15px 40px rgba(255, 42, 42, 0.2);
    }

    .feature-icon {
        width: 60px;
        height: 60px;
        margin-bottom: 25px;
        color: var(--accent-color);
        filter: drop-shadow(0 0 10px rgba(255, 42, 42, 0.3));
    }

    .feature-card h3 {
        margin-bottom: 18px;
        font-size: 1.6rem;
        color: #fff;
    }

    .feature-card p {
        color: #bbb;
        font-size: 1rem;
        line-height: 1.7;
    }

    /* Problem Section */
    .problem {
        padding: 100px 0;
        border-bottom: 1px solid var(--border-color);
        background: linear-gradient(180deg, var(--bg-color) 0%, var(--secondary-bg) 100%);
    }

    .problem-content {
        display: flex;
        align-items: center;
        gap: 60px;
        flex-wrap: wrap;
    }

    .problem-text {
        flex: 1;
        min-width: 300px;
    }

    .problem-text p {
        font-size: 1.1rem;
        line-height: 1.8;
        color: #bbb;
    }

    .problem-visual {
        flex: 1;
        min-width: 300px;
        background: linear-gradient(135deg, rgba(255, 42, 42, 0.1) 0%, rgba(0, 0, 0, 0.5) 100%);
        padding: 60px 40px;
        border-radius: 16px;
        border: 2px solid var(--accent-color);
        text-align: center;
        position: relative;
        overflow: hidden;
    }

    .problem-visual::before {
        content: '';
        position: absolute;
        top: -50%;
        left: -50%;
        width: 200%;
        height: 200%;
        background: radial-gradient(circle, rgba(255, 42, 42, 0.1) 0%, transparent 70%);
        animation: rotate 20s linear infinite;
    }

    @keyframes rotate {
        from {
            transform: rotate(0deg);
        }

        to {
            transform: rotate(360deg);
        }
    }

    .problem-visual>* {
        position: relative;
        z-index: 1;
    }

    .stat-number {
        font-size: 5rem;
        font-weight: 700;
        color: var(--accent-color);
        font-family: var(--font-display);
        text-shadow: 0 0 30px rgba(255, 42, 42, 0.5);
        margin-bottom: 10px;
    }

    .problem-visual p {
        font-size: 1.2rem;
        color: #ccc;
        text-transform: uppercase;
        letter-spacing: 2px;
    }

    /* App Flow Section */
    .app-flow {
        padding: 100px 0;
        background: #0f0f0f;
    }

    .flow-steps {
        display: flex;
        justify-content: center;
        align-items: stretch;
        gap: 20px;
        flex-wrap: wrap;
        margin-top: 50px;
    }

    .step {
        flex: 1;
        min-width: 280px;
        max-width: 350px;
        text-align: center;
        padding: 50px 35px;
        background: var(--glass-bg);
        border-radius: 16px;
        border: 1px solid var(--glass-border);
        position: relative;
        transition: all 0.3s;
        backdrop-filter: blur(5px);
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .step:hover {
        transform: translateY(-10px);
        border-color: var(--accent-color);
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
        background: rgba(255, 255, 255, 0.05);
    }

    .step-icon {
        margin-bottom: 20px;
        color: var(--accent-color);
    }

    .step-number {
        font-family: var(--font-display);
        font-size: 3rem;
        color: rgba(255, 255, 255, 0.08);
        position: absolute;
        top: 15px;
        right: 25px;
        font-weight: 700;
    }

    .step h3 {
        margin-bottom: 15px;
        color: var(--accent-color);
        font-size: 1.6rem;
    }

    .step p {
        color: #bbb;
        line-height: 1.7;
    }

    .step-arrow {
        display: flex;
        align-items: center;
        justify-content: center;
        color: var(--accent-color);
        opacity: 0.5;
    }

    /* Stats Impact Section */
    .stats-impact {
        padding: 100px 0;
        background: linear-gradient(180deg, var(--secondary-bg) 0%, var(--bg-color) 100%);
    }

    .stats-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 30px;
        margin-top: 50px;
    }

    .stat-card {
        background: var(--glass-bg);
        padding: 40px 30px;
        border-radius: 16px;
        border: 1px solid var(--glass-border);
        text-align: center;
        transition: all 0.3s;
        backdrop-filter: blur(5px);
    }

    .stat-card:hover {
        transform: translateY(-10px);
        border-color: var(--accent-color);
        box-shadow: 0 15px 40px rgba(255, 42, 42, 0.2);
    }

    .stat-icon {
        margin: 0 auto 20px;
        color: var(--accent-color);
        filter: drop-shadow(0 0 10px rgba(255, 42, 42, 0.3));
    }

    .stat-big {
        font-size: 3.5rem;
        font-weight: 700;
        color: var(--accent-color);
        font-family: var(--font-display);
        margin-bottom: 10px;
        text-shadow: 0 0 20px rgba(255, 42, 42, 0.3);
    }

    .stat-desc {
        font-size: 1.1rem;
        font-weight: 600;
        color: #fff;
        text-transform: uppercase;
        letter-spacing: 1px;
        margin-bottom: 15px;
    }

    .stat-card p {
        color: #999;
        font-size: 0.9rem;
        line-height: 1.6;
    }

    /* Research Section */
    .research {
        padding: 100px 0;
        background: var(--bg-color);
    }

    .research-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
        gap: 40px;
    }

    .research-item {
        padding: 35px;
        border-left: 4px solid var(--accent-color);
        background: linear-gradient(90deg, rgba(255, 42, 42, 0.08) 0%, rgba(0, 0, 0, 0) 100%);
        border-radius: 0 12px 12px 0;
        transition: all 0.3s;
        position: relative;
    }

    .research-item:hover {
        transform: translateX(10px);
        background: linear-gradient(90deg, rgba(255, 42, 42, 0.12) 0%, rgba(0, 0, 0, 0) 100%);
    }

    .research-icon {
        margin-bottom: 20px;
        color: var(--accent-color);
    }

    .research-item h3 {
        margin-bottom: 15px;
        font-size: 1.4rem;
        color: var(--accent-color);
    }

    .research-item p {
        color: #bbb;
        font-size: 1rem;
        line-height: 1.7;
    }

    /* FAQ Section */
    .faq {
        padding: 100px 0;
        background: linear-gradient(180deg, #0a0a0a 0%, #111 100%);
    }

    .faq-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
        gap: 40px;
        margin-top: 50px;
    }

    .faq-column {
        background: var(--glass-bg);
        padding: 35px;
        border-radius: 16px;
        border: 1px solid var(--glass-border);
        backdrop-filter: blur(5px);
    }

    .faq-category {
        font-size: 1.4rem;
        color: var(--accent-color);
        margin-bottom: 25px;
        padding-bottom: 15px;
        border-bottom: 2px solid var(--accent-color);
        text-transform: uppercase;
        letter-spacing: 1px;
    }

    .accordion {
        max-width: 100%;
        margin: 0;
    }

    .accordion-item {
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
        margin-bottom: 10px;
    }

    .accordion-item:last-child {
        border-bottom: none;
    }

    .accordion-header {
        width: 100%;
        padding: 18px 20px;
        background: rgba(255, 255, 255, 0.02);
        border: none;
        text-align: left;
        color: #fff;
        font-size: 1.05rem;
        font-weight: 600;
        cursor: pointer;
        display: flex;
        justify-content: space-between;
        align-items: center;
        font-family: var(--font-main);
        border-radius: 8px;
        transition: all 0.3s;
        position: relative;
    }

    .accordion-header::after {
        content: '+';
        font-size: 1.5rem;
        color: var(--accent-color);
        transition: transform 0.3s;
    }

    .accordion-item.active .accordion-header::after {
        content: '−';
        transform: rotate(180deg);
    }

    .accordion-header:hover {
        color: var(--accent-color);
        background: rgba(255, 42, 42, 0.05);
        padding-left: 25px;
    }

    .accordion-content {
        padding: 0 20px 20px;
        color: #bbb;
        display: none;
        line-height: 1.8;
        font-size: 0.98rem;
    }

    .accordion-content p {
        margin-top: 10px;
    }

    .accordion-content strong {
        color: #fff;
        display: block;
        margin-top: 8px;
    }

    .accordion-item.active .accordion-content {
        display: block;
        animation: fadeIn 0.3s ease-in;
    }

    @keyframes fadeIn {
        from {
            opacity: 0;
            transform: translateY(-10px);
        }

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

    /* Footer Links */
    .footer-links {
        margin-top: 20px;
        display: flex;
        justify-content: center;
        gap: 30px;
    }

    .footer-links a {
        color: #666;
        font-size: 0.9rem;
        transition: color 0.3s;
    }

    .footer-links a:hover {
        color: var(--accent-color);
    }

    /* Mobile Navigation */
    .mobile-menu-toggle {
        display: none;
        background: none;
        border: none;
        color: var(--accent-color);
        font-size: 1.5rem;
        cursor: pointer;
        padding: 5px;
    }

    @media (max-width: 768px) {
        .hero h1 {
            font-size: 2.5rem;
        }

        .hero p {
            font-size: 1.1rem;
        }

        .hero-stats {
            gap: 30px;
        }

        .stat-value {
            font-size: 2rem;
        }

        .hero-btns {
            flex-direction: column;
            width: 100%;
            max-width: 300px;
            margin: 0 auto;
        }

        .hero-btns a {
            width: 100%;
            text-align: center;
        }

        .hero-waitlist-form {
            flex-direction: column;
            padding: 12px;
            gap: 10px;
        }

        .hero-waitlist-input-wrapper {
            width: 100%;
            padding: 0 15px;
        }

        .hero-waitlist-input {
            padding: 12px 0;
        }

        .hero-waitlist-btn {
            width: 100%;
            padding: 14px 24px;
        }

        .scarcity-badge {
            font-size: 0.75rem;
            padding: 6px 14px;
            letter-spacing: 1px;
        }

        .scarcity-badge strong {
            font-size: 0.9rem;
        }

        .hero-waitlist-bribe,
        .waitlist-bribe {
            font-size: 0.8rem;
            padding: 8px 14px;
            text-align: center;
        }

        .hero-waitlist-social-proof,
        .waitlist-social-proof {
            font-size: 0.75rem;
            flex-wrap: wrap;
            justify-content: center;
            text-align: center;
        }

        .step-arrow {
            display: none;
        }

        .nav-links a:not(.btn-cta) {
            display: none;
        }

        .mobile-menu-toggle {
            display: block;
        }

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

        .problem-content {
            flex-direction: column;
        }

        .comparison-row {
            grid-template-columns: 1.5fr 1fr 1fr;
            font-size: 0.85rem;
        }

        .comparison-cell {
            padding: 15px 10px;
        }

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

        .waitlist-form {
            flex-direction: column;
        }

        .footer-links {
            flex-direction: column;
            gap: 15px;
        }

        .section-title h2 {
            font-size: 2rem;
        }

        .flow-steps {
            gap: 30px;
        }

        .step {
            max-width: 100%;
        }

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

        .stat-big {
            font-size: 2.8rem;
        }

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

        .hero-graphic {
            width: 200px;
            height: 200px;
        }

        .faq-grid {
            grid-template-columns: 1fr;
            gap: 30px;
        }

        .faq-column {
            padding: 25px;
        }

        .faq-category {
            font-size: 1.2rem;
        }

        .accordion-header {
            font-size: 0.95rem;
            padding: 15px;
        }
    }

    /* Animations */
    @keyframes fadeInUp {
        from {
            opacity: 0;
            transform: translateY(20px);
        }

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

    .animate-on-scroll {
        opacity: 0;
        transform: translateY(20px);
        transition: opacity 0.6s ease-out, transform 0.6s ease-out;
    }

    .animate-on-scroll.is-visible {
        opacity: 1;
        transform: translateY(0);
    }

    .animate-on-scroll.is-visible {
        opacity: 1;
        transform: translateY(0);
    }

    .page-content {
        padding: 100px 20px;
        max-width: 800px;
        margin: 0 auto;
    }

    .page-content h1 {
        margin-bottom: 30px;
        color: #fff;
        font-size: 2.5rem;
    }

    .page-content p {
        margin-bottom: 20px;
        color: #ccc;
        font-size: 1.1rem;
        line-height: 1.8;
    }

    .page-content h2 {
        margin: 40px 0 20px;
        color: #fff;
        font-size: 1.8rem;
    }

    .page-content h3 {
        margin: 30px 0 15px;
        color: #fff;
        font-size: 1.4rem;
    }

    .page-content ul {
        list-style: none;
        padding: 0;
        margin-bottom: 25px;
    }

    .page-content li {
        margin-bottom: 15px;
        padding-left: 20px;
        border-left: 2px solid var(--accent-color);
        color: #aaa;
        line-height: 1.7;
    }

    .page-content strong {
        color: #fff;
    }

    .page-content hr {
        border: none;
        border-top: 1px solid var(--border-color);
        margin: 40px 0;
    }

    .page-content em {
        color: #bbb;
        font-style: italic;
    }

    .page-content a {
        color: var(--accent-color);
        text-decoration: underline;
        transition: color 0.3s;
    }

    .page-content a:hover {
        color: #ff6b6b;
    }

    /* SEO Content Section */
    .seo-content {
        padding: 80px 0;
        background: var(--bg-color);
        border-top: 1px solid var(--border-color);
    }

    .seo-content-wrapper {
        max-width: 900px;
        margin: 0 auto;
    }

    .seo-content h2 {
        font-size: 2rem;
        margin-bottom: 30px;
        color: #fff;
        text-align: center;
        line-height: 1.3;
    }

    .seo-content h3 {
        font-size: 1.5rem;
        margin: 35px 0 20px;
        color: var(--accent-color);
    }

    .seo-text {
        color: #bbb;
        line-height: 1.9;
        font-size: 1.05rem;
    }

    .seo-text p {
        margin-bottom: 20px;
    }

    .seo-text strong {
        color: #fff;
        font-weight: 600;
    }

    .seo-text ul {
        margin: 20px 0 30px 20px;
        list-style: none;
    }

    .seo-text ul li {
        margin-bottom: 15px;
        padding-left: 30px;
        position: relative;
    }

    .seo-text ul li::before {
        content: '▸';
        position: absolute;
        left: 0;
        color: var(--accent-color);
        font-size: 1.2rem;
    }

    .waitlist {
        padding: 100px 0;
        text-align: center;
        background: linear-gradient(180deg, var(--bg-color) 0%, var(--secondary-bg) 100%);
    }

    .waitlist-form {
        max-width: 500px;
        margin: 40px auto 0;
        display: flex;
        gap: 10px;
    }

    .waitlist-input {
        flex: 1;
        padding: 15px;
        background: #1a1a1a;
        border: 1px solid var(--border-color);
        color: #fff;
        border-radius: 4px;
        font-family: var(--font-main);
    }

    .waitlist-input:focus {
        outline: none;
        border-color: var(--accent-color);
    }

    /* Comparison Section */
    .comparison {
        padding: 100px 0;
        background: var(--secondary-bg);
    }

    .comparison-table {
        max-width: 900px;
        margin: 0 auto;
        background: var(--glass-bg);
        border-radius: 12px;
        overflow: hidden;
        border: 1px solid var(--glass-border);
    }

    .comparison-row {
        display: grid;
        grid-template-columns: 2fr 1fr 1fr;
        border-bottom: 1px solid var(--border-color);
        transition: background 0.3s;
    }

    .comparison-row:last-child {
        border-bottom: none;
    }

    .comparison-row:not(.comparison-header):hover {
        background: rgba(255, 255, 255, 0.02);
    }

    .comparison-header {
        background: rgba(255, 42, 42, 0.1);
        font-weight: 700;
        text-transform: uppercase;
        letter-spacing: 1px;
        font-size: 0.9rem;
    }

    .comparison-cell {
        padding: 20px;
        display: flex;
        align-items: center;
        justify-content: center;
        text-align: center;
        border-right: 1px solid var(--border-color);
    }

    .comparison-cell:last-child {
        border-right: none;
    }

    .comparison-cell.highlight {
        background: rgba(255, 42, 42, 0.05);
        color: var(--accent-color);
        font-weight: 600;
    }

    /* Testimonials Section */
    .testimonials {
        padding: 100px 0;
        background: var(--bg-color);
    }

    .testimonial-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
        gap: 30px;
        margin-top: 50px;
    }

    .testimonial-card {
        background: var(--glass-bg);
        padding: 35px;
        border-radius: 12px;
        border: 1px solid var(--glass-border);
        transition: all 0.3s;
        position: relative;
        backdrop-filter: blur(5px);
    }

    .testimonial-card:hover {
        transform: translateY(-5px);
        border-color: var(--accent-color);
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    }

    .testimonial-quote {
        margin-bottom: 20px;
        opacity: 0.3;
    }

    .testimonial-text {
        font-size: 1.05rem;
        line-height: 1.7;
        color: #ccc;
        margin-bottom: 25px;
        font-style: italic;
    }

    .testimonial-author {
        display: flex;
        flex-direction: column;
        gap: 5px;
        padding-top: 20px;
        border-top: 1px solid var(--border-color);
    }

    .testimonial-author strong {
        color: #fff;
        font-size: 1rem;
    }

    .testimonial-author span {
        color: #888;
        font-size: 0.85rem;
    }

    /* Footer */
    footer {
        padding: 50px 0;
        border-top: 1px solid var(--border-color);
        background: var(--secondary-bg);
    }

    .footer-content {
        display: flex;
        justify-content: space-between;
        align-items: center;
        flex-wrap: wrap;
        gap: 30px;
    }

    .footer-brand p {
        margin: 0;
        color: #666;
        font-size: 0.9rem;
        text-align: left;
    }

    .footer-tagline {
        margin-top: 5px !important;
        color: #555 !important;
        font-size: 0.85rem !important;
    }

    .footer-social {
        display: flex;
        align-items: center;
    }

    .social-link {
        display: flex;
        align-items: center;
        gap: 10px;
        padding: 12px 20px;
        background: rgba(255, 255, 255, 0.02);
        border: 1px solid var(--border-color);
        border-radius: 8px;
        color: #fff;
        text-decoration: none;
        transition: all 0.3s;
    }

    .social-link:hover {
        background: rgba(255, 42, 42, 0.1);
        border-color: var(--accent-color);
        color: var(--accent-color);
        transform: translateY(-2px);
    }

    .social-link svg {
        width: 24px;
        height: 24px;
    }

    .social-link span {
        font-weight: 600;
        font-size: 0.95rem;
    }

    .footer-links {
        display: flex;
        gap: 25px;
    }

    .footer-links a {
        color: #888;
        text-decoration: none;
        font-size: 0.9rem;
        transition: color 0.3s;
    }

    .footer-links a:hover {
        color: var(--accent-color);
    }

    /* Utilities */
    .text-accent {
        color: var(--accent-color);
    }

    @media (max-width: 768px) {
        .hero h1 {
            font-size: 2.5rem;
        }

        .waitlist-form {
            flex-direction: column;
        }

        .footer-content {
            flex-direction: column;
            text-align: center;
            gap: 25px;
        }

        .footer-brand p {
            text-align: center;
        }

        .footer-links {
            flex-direction: column;
            gap: 15px;
        }
    }

    /* ========================================
   SCIENCE PAGE STYLES
   ======================================== */

    /* Science Hero */
    .science-hero {
        padding: 120px 0 80px;
        text-align: center;
        background: radial-gradient(circle at center, #0f0f0f 0%, #050505 70%);
        position: relative;
    }

    .science-hero-badge {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        background: rgba(255, 42, 42, 0.1);
        border: 1px solid rgba(255, 42, 42, 0.3);
        padding: 8px 20px;
        border-radius: 50px;
        margin-bottom: 30px;
        font-size: 0.85rem;
        font-weight: 600;
        text-transform: uppercase;
        letter-spacing: 1px;
        color: var(--accent-color);
    }

    .science-hero h1 {
        font-size: 3.5rem;
        line-height: 1.2;
        margin-bottom: 20px;
        max-width: 900px;
        margin-left: auto;
        margin-right: auto;
    }

    .science-hero p {
        font-size: 1.3rem;
        color: #bbb;
        max-width: 600px;
        margin: 0 auto;
    }

    /* Science Sections */
    .science-section {
        padding: 100px 0;
        background: var(--bg-color);
        position: relative;
    }

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

    .science-content {
        position: relative;
        max-width: 900px;
        margin: 0 auto;
    }

    .science-number {
        font-family: var(--font-display);
        font-size: 8rem;
        font-weight: 700;
        color: rgba(255, 42, 42, 0.08);
        position: absolute;
        top: -40px;
        right: 0;
        line-height: 1;
        user-select: none;
        pointer-events: none;
    }

    .science-text h2 {
        font-size: 2.5rem;
        margin-bottom: 10px;
        background: linear-gradient(135deg, #fff 0%, #ff2a2a 100%);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
    }

    .science-subtitle {
        font-size: 1.2rem;
        color: var(--accent-color);
        text-transform: uppercase;
        letter-spacing: 2px;
        margin-bottom: 40px;
        font-weight: 600;
    }

    .science-concept {
        background: var(--glass-bg);
        border: 1px solid var(--glass-border);
        border-left: 4px solid var(--accent-color);
        padding: 35px;
        border-radius: 0 12px 12px 0;
        margin-bottom: 40px;
    }

    .science-concept h3 {
        font-size: 1.3rem;
        margin-bottom: 20px;
        color: #fff;
    }

    .science-concept p {
        font-size: 1.1rem;
        line-height: 1.8;
        color: #ccc;
        margin-bottom: 15px;
    }

    .science-concept p:last-child {
        margin-bottom: 0;
    }

    .science-highlight {
        background: rgba(255, 42, 42, 0.1);
        border: 1px solid rgba(255, 42, 42, 0.3);
        padding: 20px 25px;
        border-radius: 8px;
        font-weight: 600;
        color: #fff !important;
        font-size: 1.15rem !important;
        margin-top: 20px;
    }

    /* Science Diagram */
    .science-diagram {
        background: linear-gradient(135deg, rgba(255, 42, 42, 0.05) 0%, rgba(0, 0, 0, 0.3) 100%);
        border: 1px solid rgba(255, 42, 42, 0.2);
        border-radius: 12px;
        padding: 20px;
        margin-bottom: 50px;
        transition: all 0.3s;
    }

    .science-diagram:hover {
        border-color: rgba(255, 42, 42, 0.4);
        background: linear-gradient(135deg, rgba(255, 42, 42, 0.08) 0%, rgba(0, 0, 0, 0.4) 100%);
    }

    .diagram-svg {
        width: 100%;
        height: auto;
        display: block;
    }

    /* Legacy placeholder styles (kept for backwards compatibility) */
    .science-image-placeholder {
        background: linear-gradient(135deg, rgba(255, 42, 42, 0.05) 0%, rgba(0, 0, 0, 0.3) 100%);
        border: 2px dashed rgba(255, 42, 42, 0.3);
        border-radius: 12px;
        padding: 60px 40px;
        text-align: center;
        margin-bottom: 50px;
        transition: all 0.3s;
    }

    .science-image-placeholder:hover {
        border-color: var(--accent-color);
        background: linear-gradient(135deg, rgba(255, 42, 42, 0.1) 0%, rgba(0, 0, 0, 0.4) 100%);
    }

    .placeholder-icon {
        margin-bottom: 15px;
        opacity: 0.7;
    }

    .science-image-placeholder span {
        color: #888;
        font-size: 0.95rem;
        text-transform: uppercase;
        letter-spacing: 1px;
    }

    /* Research Links Section */
    .research-links {
        margin-top: 40px;
    }

    .research-links h3 {
        font-size: 1.4rem;
        color: #fff;
        margin-bottom: 25px;
        padding-bottom: 15px;
        border-bottom: 2px solid var(--accent-color);
    }

    /* Research Cards */
    .research-card {
        background: var(--glass-bg);
        border: 1px solid var(--glass-border);
        border-radius: 12px;
        padding: 25px 30px;
        margin-bottom: 20px;
        transition: all 0.3s;
        position: relative;
        overflow: hidden;
    }

    .research-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 4px;
        height: 100%;
        background: var(--accent-gradient);
        opacity: 0;
        transition: opacity 0.3s;
    }

    .research-card:hover {
        transform: translateX(10px);
        border-color: var(--accent-color);
        background: rgba(255, 255, 255, 0.04);
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    }

    .research-card:hover::before {
        opacity: 1;
    }

    .research-card-header {
        margin-bottom: 15px;
    }

    .research-type {
        display: inline-block;
        background: rgba(255, 42, 42, 0.15);
        color: var(--accent-color);
        padding: 5px 12px;
        border-radius: 50px;
        font-size: 0.75rem;
        font-weight: 600;
        text-transform: uppercase;
        letter-spacing: 0.5px;
    }

    .research-card h4 {
        font-size: 1.2rem;
        color: #fff;
        margin-bottom: 8px;
        font-family: var(--font-main);
        font-weight: 700;
        text-transform: none;
        letter-spacing: 0;
    }

    .research-source {
        font-size: 0.9rem;
        color: var(--accent-color);
        font-weight: 600;
        margin-bottom: 12px !important;
    }

    .research-card p {
        color: #bbb;
        font-size: 0.95rem;
        line-height: 1.7;
        margin-bottom: 15px;
    }

    .research-link {
        display: inline-flex;
        align-items: center;
        color: #fff;
        font-weight: 600;
        font-size: 0.9rem;
        transition: all 0.3s;
        text-transform: uppercase;
        letter-spacing: 0.5px;
    }

    .research-link:hover {
        color: var(--accent-color);
        transform: translateX(5px);
    }

    /* Science CTA Section */
    .science-cta {
        padding: 100px 0;
        text-align: center;
        background: linear-gradient(180deg, var(--bg-color) 0%, var(--secondary-bg) 100%);
    }

    .science-cta h2 {
        font-size: 2.8rem;
        margin-bottom: 20px;
    }

    .science-cta p {
        font-size: 1.2rem;
        color: #bbb;
        margin-bottom: 40px;
    }

    /* Science Page Responsive */
    @media (max-width: 768px) {
        .science-hero h1 {
            font-size: 2.2rem;
        }

        .science-hero p {
            font-size: 1.1rem;
        }

        .science-number {
            font-size: 4rem;
            top: -20px;
        }

        .science-text h2 {
            font-size: 1.8rem;
        }

        .science-subtitle {
            font-size: 1rem;
        }

        .science-concept {
            padding: 25px;
        }

        .research-card {
            padding: 20px;
        }

        .research-card:hover {
            transform: translateX(5px);
        }

        .science-cta h2 {
            font-size: 2rem;
        }
    }

    /* ========================================
   AI ROASTER APP STYLES
   ======================================== */

    #roaster-app {
        padding: 60px 0;
        position: relative;
        z-index: 10;
        margin-top: -60px;
        /* Pull up to overlap hero slightly or just sit tight */
    }

    /* Upload Zone */
    .upload-zone {
        width: 100%;
        height: 300px;
        border: 2px dashed rgba(255, 255, 255, 0.1);
        background: rgba(18, 18, 18, 0.6);
        backdrop-filter: blur(10px);
        border-radius: 12px;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        cursor: pointer;
        transition: all 0.3s ease;
        text-align: center;
    }

    .upload-zone:hover,
    .upload-zone.is-dragging {
        border-color: var(--accent-color);
        background: rgba(255, 42, 42, 0.08);
    }

    .upload-icon {
        width: 48px;
        height: 48px;
        color: var(--accent-color);
        margin-bottom: 20px;
        filter: drop-shadow(0 0 10px rgba(255, 42, 42, 0.3));
    }

    .upload-text {
        font-size: 1.1rem;
        color: #fff;
        font-weight: 600;
        margin-bottom: 8px;
    }

    .upload-subtext {
        font-size: 0.85rem;
        color: #888;
    }

    /* Processing View */
    .processing-view {
        display: none;
        /* Hidden by default */
        width: 100%;
        height: 300px;
        border: 2px dashed rgba(255, 42, 42, 0.3);
        background: rgba(18, 18, 18, 0.8);
        border-radius: 12px;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 20px;
    }

    .spinner {
        width: 48px;
        height: 48px;
        border: 4px solid transparent;
        border-top: 4px solid var(--accent-color);
        border-radius: 50%;
        animation: spin 1s linear infinite;
    }

    @keyframes spin {
        0% {
            transform: rotate(0deg);
        }

        100% {
            transform: rotate(360deg);
        }
    }

    .processing-message {
        color: var(--accent-color);
        font-family: var(--font-mono, monospace);
        font-size: 1.1rem;
        animation: pulse-glow 1.5s infinite;
    }

    /* Result View */
    .result-view {
        display: none;
        /* Hidden by default */
        flex-direction: column;
        align-items: center;
        gap: 30px;
        width: 100%;
        max-width: 600px;
        margin: 0 auto;
    }

    .roast-card {
        background: rgba(18, 18, 18, 0.9);
        border: 1px solid rgba(255, 255, 255, 0.1);
        box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4), 0 0 0 1px rgba(255, 42, 42, 0.2);
        border-radius: 16px;
        padding: 30px;
        width: 100%;
        text-align: center;
        position: relative;
        overflow: hidden;
    }

    .roast-header {
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        padding-bottom: 15px;
        margin-bottom: 20px;
    }

    .roast-title {
        font-size: 0.8rem;
        text-transform: uppercase;
        letter-spacing: 2px;
        color: #888;
    }

    .roast-score-container {
        margin: 20px 0;
    }

    .roast-score {
        font-family: var(--font-display);
        font-size: 5rem;
        color: #fff;
        text-shadow: 0 0 30px rgba(255, 42, 42, 0.4);
        line-height: 1;
    }

    .roast-score-max {
        font-size: 2rem;
        color: #666;
    }

    .roast-verdict {
        display: inline-block;
        background: rgba(255, 42, 42, 0.15);
        border: 1px solid rgba(255, 42, 42, 0.4);
        color: var(--accent-color);
        padding: 8px 16px;
        border-radius: 4px;
        font-weight: 700;
        text-transform: uppercase;
        letter-spacing: 1px;
        margin-bottom: 25px;
        box-shadow: 0 0 15px rgba(255, 42, 42, 0.1);
    }

    .roast-text-container {
        background: rgba(0, 0, 0, 0.4);
        border: 1px solid rgba(255, 255, 255, 0.05);
        padding: 20px;
        border-radius: 8px;
        margin-bottom: 20px;
    }

    .roast-text {
        font-style: italic;
        color: #ccc;
        font-size: 1.1rem;
        line-height: 1.6;
    }

    .roast-footer {
        display: flex;
        justify-content: space-between;
        font-size: 0.8rem;
        color: #666;
        margin-top: 15px;
        padding-top: 15px;
        border-top: 1px solid rgba(255, 255, 255, 0.05);
    }

    .roast-actions {
        display: flex;
        gap: 15px;
        margin-top: 20px;
    }

    .btn-retry {
        background: transparent;
        color: #888;
        text-decoration: underline;
        border: none;
        cursor: pointer;
        font-size: 0.9rem;
    }

    .btn-retry:hover {
        color: #fff;
    }

    /* Mobile Navigation */
    @media (max-width: 768px) {
        .nav-flex {
            flex-wrap: wrap;
        }

        .nav-toggle {
            display: block !important;
        }

        .nav-links {
            display: none;
            /* Hidden by default */
            width: 100%;
            flex-direction: column;
            background: rgba(10, 10, 10, 0.95);
            position: absolute;
            top: 100%;
            left: 0;
            padding: 20px;
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(10px);
            -webkit-backdrop-filter: blur(10px);
            gap: 15px;
            animation: slideDown 0.3s ease-out forwards;
        }

        .nav-links.nav-mobile-active {
            display: flex !important;
        }

        /* Standard Nav Links in Mobile */
        .nav-links a:not(.btn-cta) {
            display: block;
            width: 100%;
            text-align: center;
            padding: 15px 10px;
            color: #e0e0e0;
            font-size: 1.1rem;
            border-bottom: 1px solid rgba(255, 255, 255, 0.05);
            transition: background 0.2s, color 0.2s;
        }

        .nav-links a:not(.btn-cta):hover {
            background: rgba(255, 255, 255, 0.05);
            color: #fff;
        }

        /* Fix Button sizing on mobile */
        /* Fix Button sizing and style on mobile */
        .nav-links .btn-cta {
            width: 100%;
            max-width: 300px;
            margin: 15px auto 0;
            display: block;
            text-align: center;
            background: var(--accent-gradient);
            padding: 14px 28px !important;
            /* Force override generic link padding */
            border-radius: 8px;
            box-shadow: 0 4px 15px rgba(255, 42, 42, 0.3);
        }

        .nav-links .btn-cta:hover {
            background: linear-gradient(135deg, #ff4444 0%, #ff8888 100%);
            transform: translateY(-2px);
        }

        @keyframes slideDown {
            from {
                opacity: 0;
                transform: translateY(-10px);
            }

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

/* Page Content Styles for Guides, Tools, and Blog */
.page-content {
    line-height: 1.8;
}

.page-content h1 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #fff;
    border-bottom: 2px solid var(--accent-color);
    padding-bottom: 1rem;
}

.page-content h2 {
    font-size: 2rem;
    margin-top: 3rem;
    margin-bottom: 1.5rem;
    color: #fff;
}

.page-content h3 {
    font-size: 1.5rem;
    margin-top: 2rem;
    margin-bottom: 1rem;
    color: #fff;
}

.page-content h4 {
    font-size: 1.2rem;
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
    color: #ccc;
}

.page-content p {
    margin-bottom: 1.5rem;
    color: #ccc;
}

.page-content ul,
.page-content ol {
    margin-bottom: 1.5rem;
    padding-left: 2rem;
    color: #ccc;
}

.page-content li {
    margin-bottom: 0.5rem;
}

.page-content a {
    color: var(--accent-color);
    text-decoration: none;
    border-bottom: 1px solid transparent;
    transition: border-color 0.3s ease;
}

.page-content a:hover {
    border-bottom-color: var(--accent-color);
}

.page-content code {
    background: rgba(255, 42, 42, 0.1);
    padding: 0.2rem 0.5rem;
    border-radius: 4px;
    font-family: 'Courier New', monospace;
    color: #ff6b6b;
}

.page-content pre {
    background: #1a1a1a;
    padding: 1.5rem;
    border-radius: 8px;
    overflow-x: auto;
    margin-bottom: 1.5rem;
    border: 1px solid #333;
}

.page-content pre code {
    background: none;
    padding: 0;
    color: #ccc;
}

.page-content table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 2rem;
    background: #1a1a1a;
    border-radius: 8px;
    overflow: hidden;
}

.page-content th,
.page-content td {
    padding: 1rem;
    text-align: left;
    border-bottom: 1px solid #333;
}

.page-content th {
    background: rgba(255, 42, 42, 0.1);
    color: #fff;
    font-weight: 600;
}

.page-content tr:last-child td {
    border-bottom: none;
}

.page-content blockquote {
    border-left: 4px solid var(--accent-color);
    padding-left: 1.5rem;
    margin: 2rem 0;
    font-style: italic;
    color: #999;
}

.page-content strong {
    color: #fff;
    font-weight: 600;
}

.page-content em {
    color: #ff6b6b;
}

/* Checklist Section Styles */
.checklist-section {
    background: #1a1a1a;
    border: 1px solid #333;
    border-radius: 8px;
    padding: 2rem;
    margin-bottom: 2rem;
}

.checklist-section h4 {
    color: #fff;
    margin-top: 0;
}

/* Resource Cards Hover Effect */
.resource-card:hover {
    transform: translateY(-5px);
    border-color: var(--accent-color) !important;
    box-shadow: 0 10px 30px rgba(255, 42, 42, 0.2);
}

/* Button Hover Effects */
.btn-cta:hover {
    background: var(--accent-hover) !important;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 42, 42, 0.3);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .page-content h1 {
        font-size: 2rem;
    }

    .page-content h2 {
        font-size: 1.5rem;
    }

    .page-content h3 {
        font-size: 1.2rem;
    }

    .page-content {
        padding: 1rem !important;
    }
}