    /* ==========================================================================
    INDEX.CSS — SomaReel Landing Page
    Standalone. Does not affect home.css, styles.css, login.css.
    ========================================================================== */

    /* ── RESET & BASE ── */
    *, *::before, *::after {
        margin: 0; padding: 0;
        box-sizing: border-box;
        -webkit-font-smoothing: antialiased;
    }

    html { scroll-behavior: smooth; }

    body {
        width: 100%; max-width: 100vw;
        min-height: 100vh;
        background: #0C0C0B;
        color: #FFFFFF;
        overflow-x: hidden;
        font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif;
        position: relative;
    }

    /* ── AMBIENT GLOWS ── */
    .bg-glow-1 {
        position: fixed; top: -15%; left: -10%;
        width: 55vw; height: 55vw;
        background: radial-gradient(circle, rgba(212,175,55,0.08) 0%, transparent 65%);
        filter: blur(120px); pointer-events: none; z-index: 0;
    }
    .bg-glow-2 {
        position: fixed; top: 45%; right: -12%;
        width: 50vw; height: 50vw;
        background: radial-gradient(circle, rgba(75,142,130,0.06) 0%, transparent 65%);
        filter: blur(120px); pointer-events: none; z-index: 0;
    }
    .bg-glow-3 {
        position: fixed; bottom: -10%; left: 30%;
        width: 40vw; height: 40vw;
        background: radial-gradient(circle, rgba(212,175,55,0.05) 0%, transparent 70%);
        filter: blur(100px); pointer-events: none; z-index: 0;
    }

    /* ── HEADER ── */
    .landing-header {
        width: 100%;
        padding: 22px 5%; /* Switch from fixed px to percentage so it always has safe breathing room on any screen size */
        display: flex;
        justify-content: space-between;
        align-items: center;
        position: sticky; 
        top: 0; 
        z-index: 200;
        transition: background 0.3s ease, backdrop-filter 0.3s ease, border-color 0.3s ease;
        border-bottom: 1px solid transparent;
    }

    .landing-header.scrolled {
        background: rgba(12,12,11,0.85);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        border-color: rgba(255,255,255,0.06);
    }

    .nav-brand { display: flex; align-items: center; gap: 10px; }
    .nav-logo { height: 30px; width: auto; }
    .nav-title { font-size: 1.25rem; font-weight: 800; letter-spacing: -0.5px; }
    .nav-title .soma { color: #FFFFFF; }
    .nav-title .reel {
        background: linear-gradient(135deg, #FFE484 0%, #D4AF37 60%, #B3922E 100%);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
    }

    .nav-links { display: flex; align-items: center; gap: 28px; }
    .nav-link {
        color: #777775; font-size: 0.9rem; font-weight: 600;
        text-decoration: none; transition: color 0.2s ease;
    }
    .nav-link:hover { color: #E2DFD8; }
    .nav-cta {
        padding: 9px 22px;
        border: 1px solid rgba(212,175,55,0.35);
        border-radius: 999px;
        color: #D4AF37; font-size: 0.9rem; font-weight: 700;
        text-decoration: none;
        transition: all 0.2s ease;
        background: rgba(212,175,55,0.06);
    }
    .nav-cta:hover {
        background: rgba(212,175,55,0.14);
        border-color: rgba(212,175,55,0.6);
        color: #FFE484;
    }

    /* ── HERO ── */
    .hero-section {
        min-height: 88vh;
        display: flex; justify-content: center; align-items: center;
        text-align: center; padding: 60px 24px 80px;
        position: relative; z-index: 10;
    }

    .hero-content {
        max-width: 820px;
        display: flex; flex-direction: column;
        align-items: center;
        animation: heroEntrance 0.9s cubic-bezier(0.16,1,0.3,1) forwards;
        opacity: 0; transform: translateY(28px);
    }

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

    .hero-badge {
        display: inline-block;
        padding: 7px 18px;
        border-radius: 999px;
        background: rgba(212,175,55,0.1);
        border: 1px solid rgba(212,175,55,0.25);
        color: #D4AF37; font-size: 0.85rem; font-weight: 600;
        letter-spacing: 0.3px; margin-bottom: 28px;
    }

    .hero-headline {
        font-size: clamp(2.8rem, 6vw, 5rem);
        font-weight: 900;
        letter-spacing: -2.5px;
        line-height: 1.05;
        margin-bottom: 22px;
        background: linear-gradient(to bottom, #FFFFFF 40%, #C8C4BB 100%);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
    }

    .headline-accent {
        background: linear-gradient(135deg, #FFE484 0%, #D4AF37 50%, #C49A20 100%);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
        display: block;
    }

    .hero-subheadline {
        font-size: 1.15rem; color: #666663;
        font-weight: 500; line-height: 1.6;
        letter-spacing: -0.2px; margin-bottom: 38px;
    }
    .hero-subheadline span { color: #A09E9A; font-weight: 600; }

    .cta-group {
        display: flex; justify-content: center; align-items: center;
        gap: 14px; margin-bottom: 48px;
        flex-wrap: wrap;
    }

    .cta-primary {
        display: inline-flex; align-items: center;
        padding: 16px 32px;
        font-size: 1rem; font-weight: 700;
        border: none; border-radius: 14px;
        background: linear-gradient(180deg, #F2DC82 0%, #D4AF37 50%, #A18120 100%);
        color: #141412;
        cursor: pointer;
        box-shadow: 0 6px 24px rgba(212,175,55,0.3), inset 0 1px 0 rgba(255,255,255,0.3);
        transition: all 0.2s ease;
        letter-spacing: -0.2px;
    }
    .cta-primary:hover {
        transform: translateY(-2px);
        box-shadow: 0 10px 30px rgba(212,175,55,0.42);
        filter: brightness(1.06);
    }
    .cta-primary:active { transform: translateY(0); }

    .cta-secondary {
        padding: 15px 28px;
        font-size: 0.95rem; font-weight: 600;
        border: 1px solid rgba(255,255,255,0.1);
        border-radius: 14px;
        background: rgba(255,255,255,0.04);
        color: #A09E9A;
        cursor: pointer;
        transition: all 0.2s ease;
    }
    .cta-secondary:hover {
        background: rgba(255,255,255,0.08);
        border-color: rgba(255,255,255,0.18);
        color: #E2DFD8;
    }

    /* Hero stats row */
    .hero-stats {
        display: flex; align-items: center; gap: 28px;
        padding: 18px 32px;
        background: rgba(255,255,255,0.03);
        border: 1px solid rgba(255,255,255,0.07);
        border-radius: 16px;
        backdrop-filter: blur(12px);
    }
    .hero-stat { display: flex; flex-direction: column; align-items: center; gap: 2px; }
    .stat-n { font-size: 1.4rem; font-weight: 800; color: #D4AF37; letter-spacing: -0.5px; }
    .stat-l { font-size: 0.75rem; color: #555553; font-weight: 600; letter-spacing: 0.5px; text-transform: uppercase; }
    .stat-divider { width: 1px; height: 32px; background: rgba(255,255,255,0.08); }

    /* ── MARQUEE (signature element) ── */
    .marquee-wrapper {
        width: 100%; overflow: hidden;
        border-top: 1px solid rgba(212,175,55,0.12);
        border-bottom: 1px solid rgba(212,175,55,0.12);
        padding: 18px 0;
        position: relative; z-index: 10;
        background: rgba(212,175,55,0.02);
    }

    .marquee-track {
        display: flex; align-items: center; gap: 40px;
        width: max-content;
        animation: marquee 22s linear infinite;
    }

    .marquee-track span {
        font-size: 1.1rem; font-weight: 800;
        letter-spacing: 4px; text-transform: uppercase;
        color: transparent;
        -webkit-text-stroke: 1px rgba(212,175,55,0.4);
        white-space: nowrap;
    }

    .marquee-track .dot {
        color: #D4AF37;
        -webkit-text-stroke: 0;
        font-size: 1.4rem; letter-spacing: 0;
    }

    @keyframes marquee {
        from { transform: translateX(0); }
        to   { transform: translateX(-50%); }
    }

    /* Respect reduced motion */
    @media (prefers-reduced-motion: reduce) {
        .marquee-track { animation: none; }
        .hero-content  { animation: none; opacity: 1; transform: none; }
    }

    /* ── STATEMENT ── */
    .statement-section {
        padding: 100px 24px;
        display: flex; justify-content: center;
        position: relative; z-index: 10;
    }
    .statement-card { max-width: 740px; text-align: center; }
    .statement-row {
        font-size: clamp(1.6rem, 3vw, 2rem);
        font-weight: 700; color: #444442;
        margin-bottom: 10px; letter-spacing: -0.5px;
        transition: color 0.4s ease;
    }
    .statement-row:hover { color: #888886; }
    .accent-gold {
        font-size: clamp(1.8rem, 3.5vw, 2.4rem);
        background: linear-gradient(135deg, #FFE484 0%, #D4AF37 100%);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
        font-weight: 800; margin-top: 16px;
    }

    /* ── MATRIX ── */
    .matrix-section {
        max-width: 900px; margin: 20px auto 80px;
        padding: 0 24px; position: relative; z-index: 10;
    }
    .matrix-grid {
        display: flex; gap: 16px; align-items: center;
    }
    .vs-badge {
        font-size: 1rem; font-weight: 900;
        color: rgba(212,175,55,0.4);
        letter-spacing: 2px; flex-shrink: 0;
        width: 40px; text-align: center;
    }
    .matrix-box {
        flex: 1; padding: 36px;
        border-radius: 24px;
        background: rgba(255,255,255,0.02);
        border: 1px solid rgba(255,255,255,0.05);
        transition: transform 0.2s ease;
    }
    .matrix-box:hover { transform: translateY(-3px); }
    .matrix-box h3 { font-size: 1.2rem; font-weight: 700; margin-bottom: 24px; }
    .problem-box h3 { color: #555553; }
    .solution-box {
        border-color: rgba(212,175,55,0.18);
        background: linear-gradient(160deg, rgba(25,23,20,0.5) 0%, rgba(14,14,11,0.8) 100%);
        box-shadow: 0 0 40px rgba(212,175,55,0.05), inset 0 1px 0 rgba(255,255,255,0.05);
    }
    .solution-box h3 {
        background: linear-gradient(135deg, #FFE484 0%, #D4AF37 100%);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
    }
    .matrix-box ul { list-style: none; }
    .matrix-box li {
        margin-bottom: 14px; font-weight: 500;
        font-size: 0.98rem; display: flex;
        align-items: center; gap: 12px;
    }
    .problem-box li { color: #555553; }
    .solution-box li { color: #C8C4BB; }
    .cross { color: #EF4444; font-weight: 800; }
    .check { color: #D4AF37; font-weight: 800; }

    /* ── FEATURES ── */
    .features-section {
        max-width: 1100px; margin: 80px auto;
        padding: 0 24px; position: relative; z-index: 10;
    }

    .section-eyebrow {
        text-align: center;
        font-size: 0.72rem; font-weight: 800;
        letter-spacing: 4px; text-transform: uppercase;
        color: #D4AF37; margin-bottom: 14px;
        opacity: 0.7;
    }

    .section-title {
        text-align: center;
        font-size: clamp(1.8rem, 3.5vw, 2.4rem);
        font-weight: 800; letter-spacing: -1px;
        line-height: 1.15; margin-bottom: 54px;
        background: linear-gradient(to bottom, #FFFFFF 50%, #888886 100%);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
    }

    .features-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .feat-card {
        background: rgba(255,255,255,0.025);
        border: 1px solid rgba(255,255,255,0.05);
        border-radius: 22px; padding: 36px;
        transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
        position: relative; overflow: hidden;
    }
    .feat-card::before {
        content: '';
        position: absolute; left: 0; top: 16px; bottom: 16px;
        width: 3px; border-radius: 0 3px 3px 0;
        background: linear-gradient(to bottom, transparent, rgba(212,175,55,0.6), transparent);
        opacity: 0; transition: opacity 0.25s ease;
    }
    .feat-card:hover {
        transform: translateY(-5px);
        border-color: rgba(212,175,55,0.2);
        box-shadow: 0 12px 40px rgba(0,0,0,0.3), 0 0 0 1px rgba(212,175,55,0.08);
    }
    .feat-card:hover::before { opacity: 1; }
    .feat-icon { font-size: 1.8rem; margin-bottom: 14px; }
    .feat-card h4 { font-size: 1.1rem; font-weight: 700; margin-bottom: 10px; color: #E2DFD8; }
    .feat-card p { font-size: 0.93rem; color: #666663; line-height: 1.6; }

    /* ── LEVELS ── */
    .levels-section {
        max-width: 860px; margin: 80px auto;
        padding: 0 24px; position: relative; z-index: 10;
    }
    .levels-container {
        display: flex; justify-content: center; align-items: center;
        gap: 6px;
        background: rgba(255,255,255,0.025);
        padding: 7px; border-radius: 18px;
        border: 1px solid rgba(255,255,255,0.05);
    }
    .level-pill {
        flex: 1; text-align: center; padding: 12px 6px;
        font-size: 0.88rem; font-weight: 600;
        color: #555553; border-radius: 12px;
        cursor: pointer; transition: all 0.2s ease; white-space: nowrap;
    }
    .level-pill:hover { color: #A09E9A; }
    .active-level {
        background: #FFFFFF; color: #0E0E0D;
        font-weight: 700; box-shadow: 0 4px 16px rgba(0,0,0,0.2);
    }
    .active-level:hover { color: #0E0E0D; }

    /* ── FINAL CTA ── */
    .final-cta-section {
        max-width: 780px; margin: 80px auto 60px;
        padding: 0 24px; position: relative; z-index: 10;
    }
    .cta-panel {
        background: linear-gradient(160deg, #161614 0%, #101010 100%);
        border: 1px solid rgba(212,175,55,0.18);
        border-radius: 30px; 
        padding: 56px 44px;
        text-align: center;
        box-shadow: 0 20px 60px rgba(0,0,0,0.35), 0 0 60px rgba(212,175,55,0.04);
        position: relative; 
        overflow: hidden;

        /* ADD THESE THREE LINES TO CENTER EVERYTHING VERTICALLY */
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }
    .cta-panel-glow {
        position: absolute; top: -80px; left: 50%;
        transform: translateX(-50%);
        width: 400px; height: 200px;
        background: radial-gradient(ellipse, rgba(212,175,55,0.12) 0%, transparent 70%);
        pointer-events: none;
    }
    .cta-panel h2 {
        font-size: clamp(1.7rem, 3vw, 2.2rem);
        font-weight: 800; letter-spacing: -1px;
        margin-bottom: 14px; line-height: 1.2;
        position: relative;
    }
    .social-proof {
        font-size: 1rem; color: #D4AF37;
        font-weight: 600; margin-bottom: 32px;
        transition: color 0.2s ease; position: relative;
    }
    .cta-interactive-wrapper {
        display: flex; justify-content: center;
        min-height: 54px; position: relative;
    }
   .cta-state {
    display: none;
    width: 100%;
}

.cta-state.active-state {
    display: block;
}
    #state-live { flex-direction: column; gap: 14px; }
    .inline-btn { width: 100%; max-width: 260px; }
    .inline-link {
        background: transparent !important; /* Force transparent background */
        border: none; 
        outline: none;
        color: #555553; 
        font-size: 0.9rem; 
        font-weight: 600;
        cursor: pointer; 
        text-decoration: none; /* Remove default underline to make it cleaner */
        padding: 6px 12px;
        transition: color 0.2s ease; 
        font-family: inherit;
        display: inline-block;
    }

    .inline-link:hover { 
        color: #D4AF37; 
        text-decoration: underline; /* Only show underline on hover for that crisp interactive feel */
    }
   .waitlist-form-compact {
    display: flex;
    gap: 12px;
    justify-content: center;
    align-items: center;
    width: 100%;
    max-width: 450px;
    margin: 20px auto 0 auto;
}
    .waitlist-input-compact {
    flex: 1;
    padding: 14px 20px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    color: #ffffff;
    font-size: 1rem;
    outline: none;
    transition: all 0.3s ease;
}

.waitlist-input-compact:focus {
    border-color: #D4AF37;
    background: rgba(255, 255, 255, 0.08);
    box-shadow: 0 0 15px rgba(212, 175, 55, 0.1);
}
    .waitlist-input-compact::placeholder { color: #444442; }
  .waitlist-submit-compact {
    padding: 14px 24px;
    background: linear-gradient(135deg, #D4AF37 0%, #AA8811 100%);
    border: none;
    border-radius: 12px;
    color: #000000;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.waitlist-submit-compact:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.3);
}

.waitlist-submit-compact:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}
    /* ── FOOTER ── */
    .footer {
        width: 100%;
        border-top: 1px solid rgba(255, 255, 255, 0.04);
        padding: 30px 24px;
        position: relative;
        z-index: 10;
        background: #0C0C0B;
    }

.footer-container {
    max-width: 1100px;
    margin: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

    .footer-left {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        gap: 6px;
    }

    .footer-brand {
        font-size: 1.3rem;
        font-weight: 800;
        letter-spacing: -0.5px;
        margin-right: 30px;
    }

    .footer-brand .soma {
        color: #FFFFFF;
    }

    .reel-footer {
        background: linear-gradient(135deg, #FFE484 0%, #D4AF37 100%);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
    }

    .footer-copy {
        font-size: 0.85rem;
        color: #555553;
    }

    .footer-right {
        display: flex;
        gap: 24px;
    }

    .footer-social-link {
        color: #A09E9A;
        text-decoration: none;
        font-size: 0.9rem;
        font-weight: 600;
        transition: color 0.2s ease, transform 0.2s ease;
    }

    .footer-social-link:hover {
        color: #D4AF37;
        transform: translateY(-1px);
    }

    /* Responsive alignment rules for smaller mobile views */
    @media (max-width: 600px) {
        .footer-container {
            flex-direction: column;
            text-align: center;
            gap: 32px;
        }
        .footer-left {
            align-items: center;
        }
        .footer-right {
            justify-content: center;
            gap: 20px;
        }
    }

    /* ── SCROLL REVEAL ── */
    .reveal {
        opacity: 0;
        transform: translateY(24px);
        transition: opacity 0.65s cubic-bezier(0.16,1,0.3,1), transform 0.65s cubic-bezier(0.16,1,0.3,1);
    }
    .revealed { opacity: 1; transform: translateY(0); }

    /* Stagger children in features grid */
    .features-grid .feat-card:nth-child(1) { transition-delay: 0s; }
    .features-grid .feat-card:nth-child(2) { transition-delay: 0.08s; }
    .features-grid .feat-card:nth-child(3) { transition-delay: 0.16s; }
    .features-grid .feat-card:nth-child(4) { transition-delay: 0.24s; }

    /* ── RESPONSIVE ── */
    @media (max-width: 820px) {
        .landing-header { padding: 18px 20px; }
        .nav-link { display: none; }
        .hero-subheadline { font-size: 1rem; }
        .hero-stats { gap: 18px; padding: 14px 20px; }
        .matrix-grid { flex-direction: column; }
        .vs-badge { transform: rotate(90deg); }
        .features-grid { grid-template-columns: 1fr; }
        .cta-panel { padding: 40px 24px; }
        .levels-container { display: grid; grid-template-columns: repeat(2, 1fr); }
        .levels-container .level-pill:last-child { grid-column: span 2; }
        .waitlist-form-compact { flex-direction: column; background: transparent; border: none; padding: 0; gap: 10px; }
        .waitlist-input-compact { background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.07); padding: 14px 16px; border-radius: 12px; }
    }

    