/* OverDrive Design System — Red / Black / Chrome */
* { margin: 0; padding: 0; box-sizing: border-box; }
html { overflow-x: hidden; }

:root {
    /* New brand colors - Purple/Pink/Chrome */
    --primary-purple: #9333EA;
    --deep-purple: #7C3AED;
    --hot-pink: #EC4899;
    --chrome: #C0C0C0;
    --chrome-light: #E0E0E0;

    /* Legacy aliases (referenced in inline styles) */
    --neon-green: #9333EA;
    --electric-blue: #C0C0C0;

    --dark-bg: #0A0A0A;
    --card-bg: #111111;
    --card-border: #1E1E1E;
    --text-primary: #FFFFFF;
    --text-secondary: #9A9A9A;
    --text-dim: #666666;
    --gradient-start: #9333EA;
    --gradient-end: #C0C0C0;
    --danger: #FF4444;
    --success: #22CC44;
}

body {
    font-family: 'Plus Jakarta Sans', sans-serif;
    background-color: var(--dark-bg);
    background-image:
        linear-gradient(rgba(0, 0, 0, 0.62), rgba(0, 0, 0, 0.62)),
        url('https://pub-629428d185ca4960a0a73c850d32294b.r2.dev/company_40253/images/b72f349f-2183-43e8-b25f-330262e5b372.png');
    background-size: cover;
    background-position: center center;
    background-attachment: fixed;
    color: var(--text-primary);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
    font-family: 'Space Grotesk', sans-serif;
}

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

/* ── Ambient Glow ─────────────────────────────── */
.glow-orb {
    position: fixed;
    border-radius: 50%;
    filter: blur(120px);
    pointer-events: none;
    z-index: 0;
}
.glow-orb.red {
    width: 600px; height: 600px;
    background: rgba(147, 51, 234, 0.07);
    top: -200px; left: -200px;
}
.glow-orb.chrome {
    width: 500px; height: 500px;
    background: rgba(192, 192, 192, 0.04);
    bottom: -100px; right: -200px;
}

/* ── Navigation ───────────────────────────────── */
nav {
    position: fixed; top: 0; left: 0; right: 0;
    padding: 12px 40px;
    display: flex; justify-content: space-between; align-items: center;
    z-index: 100;
    backdrop-filter: blur(20px);
    background: rgba(10, 10, 10, 0.85);
    border-bottom: 1px solid rgba(147, 51, 234, 0.12);
}
.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
}
.logo-img {
    height: 44px;
    width: auto;
    border-radius: 4px;
}
.logo span {
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700; font-size: 1.4rem;
    letter-spacing: -0.5px;
    background: linear-gradient(135deg, #FFFFFF 0%, #C0C0C0 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.nav-links {
    display: flex;
    align-items: center;
    gap: 24px;
}
.nav-link {
    font-size: 0.9rem;
    color: var(--text-secondary);
    transition: color 0.2s;
    letter-spacing: 0.3px;
}
.nav-link:hover {
    color: var(--text-primary);
}
/* ── Nav Shop link — prominent glow CTA ──── */
.nav-shop-link {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--primary-purple);
    text-shadow: 0 0 10px rgba(147, 51, 234, 0.6), 0 0 20px rgba(147, 51, 234, 0.3);
    letter-spacing: 0.3px;
    transition: color 0.2s, text-shadow 0.2s;
    position: relative;
}
.nav-shop-link:hover {
    color: var(--hot-pink);
    text-shadow: 0 0 10px rgba(236, 72, 153, 0.7), 0 0 25px rgba(236, 72, 153, 0.35);
}
.nav-cta {
    font-size: 0.85rem;
    font-weight: 600;
    padding: 10px 24px;
    border-radius: 100px;
    background: var(--primary-purple);
    color: #FFFFFF;
    transition: all 0.2s;
    border: 1px solid transparent;
}
.nav-cta:hover {
    background: transparent;
    border-color: var(--chrome);
    color: var(--chrome-light);
    transform: translateY(-1px);
}
.nav-tag {
    font-size: 0.75rem;
    color: var(--text-dim);
    border: 1px solid var(--card-border);
    padding: 6px 14px;
    border-radius: 100px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

/* ── Buttons ──────────────────────────────────── */
.btn-primary {
    display: inline-block;
    padding: 14px 36px;
    border-radius: 100px;
    background: var(--primary-purple);
    color: #FFFFFF;
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
    font-size: 1rem;
    letter-spacing: -0.3px;
    transition: all 0.2s;
    border: 1px solid transparent;
    cursor: pointer;
    text-decoration: none;
    box-shadow: 0 0 20px rgba(147, 51, 234, 0.25);
}
.btn-primary:hover {
    background: #7C3AED;
    transform: translateY(-2px);
    box-shadow: 0 0 30px rgba(147, 51, 234, 0.4);
}
.btn-primary.btn-lg {
    padding: 18px 48px;
    font-size: 1.1rem;
}
.btn-primary.btn-sm {
    padding: 10px 24px;
    font-size: 0.85rem;
}
.btn-secondary {
    display: inline-block;
    padding: 14px 36px;
    border-radius: 100px;
    background: transparent;
    color: var(--chrome-light);
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 600;
    font-size: 1rem;
    letter-spacing: -0.3px;
    border: 1px solid var(--card-border);
    transition: all 0.2s;
    cursor: pointer;
    text-decoration: none;
}
.btn-secondary:hover {
    border-color: var(--chrome);
    color: #FFFFFF;
    transform: translateY(-2px);
}
.btn-secondary.btn-sm {
    padding: 10px 24px;
    font-size: 0.85rem;
}

/* ── Hero ─────────────────────────────────────── */
.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 140px 24px 80px;
    position: relative;
    z-index: 1;
    overflow: hidden;
}
.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        135deg,
        rgba(10, 10, 10, 0.75) 0%,
        rgba(0, 0, 0, 0.6) 50%,
        rgba(20, 20, 20, 0.7) 100%
    );
    z-index: 0;
}
.hero > * {
    position: relative;
    z-index: 2;
}
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 20px;
    border-radius: 100px;
    border: 1px solid rgba(147, 51, 234, 0.4);
    background: rgba(147, 51, 234, 0.15);
    font-size: 0.8rem;
    color: var(--primary-purple);
    margin-bottom: 40px;
    letter-spacing: 0.5px;
    position: relative;
    z-index: 2;
}
.hero-badge::before {
    content: '';
    width: 6px; height: 6px;
    border-radius: 50%;
    background: var(--primary-purple);
    box-shadow: 0 0 8px var(--primary-purple);
}
/* Hero logo banner */
.hero-logo-banner {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    margin-bottom: 48px;
    position: relative;
    z-index: 2;
}
.hero-logo-img {
    width: 100%;
    max-width: 680px;
    height: auto;
    display: block;
    border-radius: 16px;
    filter: drop-shadow(0 0 40px rgba(147, 51, 234, 0.55)) drop-shadow(0 0 80px rgba(236, 72, 153, 0.3));
}

.hero h1 {
    font-size: clamp(3rem, 8vw, 6.5rem);
    font-weight: 700;
    line-height: 0.95;
    letter-spacing: -3px;
    margin-bottom: 28px;
    max-width: 900px;
}
/* Chrome metallic text for highlighted words */
.hero h1 .highlight, h2 .highlight {
    background: linear-gradient(180deg, #FFFFFF 0%, var(--primary-purple) 50%, var(--chrome) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.hero-slogan {
    font-family: 'Space Grotesk', sans-serif;
    font-size: clamp(1.15rem, 2.5vw, 1.55rem);
    font-weight: 500;
    font-style: italic;
    letter-spacing: 0.5px;
    margin-bottom: 24px;
    max-width: 620px;
    line-height: 1.5;
    background: linear-gradient(135deg, var(--primary-purple) 30%, var(--chrome-light) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
}
.hero-slogan::before,
.hero-slogan::after {
    content: '\2014';
    -webkit-text-fill-color: rgba(147, 51, 234, 0.4);
    margin: 0 10px;
    font-style: normal;
}
.hero-sub {
    font-size: clamp(1.05rem, 2vw, 1.3rem);
    color: var(--text-secondary);
    max-width: 560px;
    line-height: 1.7;
    margin-bottom: 50px;
}

/* ── Stats ────────────────────────────────────── */
.stats-bar {
    display: flex;
    gap: 60px;
    padding: 40px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 20px;
    position: relative;
    z-index: 2;
}
.stat { text-align: center; }
.stat-value {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    background: linear-gradient(180deg, #FFFFFF 0%, var(--chrome) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.stat-label {
    font-size: 0.8rem;
    color: var(--text-dim);
    margin-top: 4px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ── Split Section ────────────────────────────── */
.split-section {
    padding: 100px 24px;
    position: relative;
    z-index: 1;
}
.split-inner {
    max-width: 1100px;
    margin: 0 auto;
}
.section-label {
    font-size: 0.75rem;
    color: var(--primary-purple);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 20px;
}
.split-section h2 {
    font-size: clamp(2rem, 4.5vw, 3.2rem);
    font-weight: 700;
    letter-spacing: -1.5px;
    line-height: 1.1;
    margin-bottom: 20px;
    max-width: 700px;
}
.split-section .subtitle, .subtitle {
    font-size: 1.1rem;
    color: var(--text-secondary);
    max-width: 600px;
    line-height: 1.7;
    margin-bottom: 60px;
}

/* ── Feature Grid ─────────────────────────────── */
.feature-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}
.feature-card {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: 16px;
    padding: 40px;
    transition: border-color 0.3s;
}
.feature-card:hover {
    border-color: rgba(147, 51, 234, 0.3);
}
.feature-card.tall {
    grid-row: span 2;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.feature-icon {
    width: 48px; height: 48px;
    border-radius: 12px;
    display: flex; align-items: center; justify-content: center;
    margin-bottom: 24px;
    font-size: 1.4rem;
}
.feature-icon.green { background: rgba(230, 0, 0, 0.12); }
.feature-icon.blue { background: rgba(192, 192, 192, 0.1); }
.feature-icon.purple { background: rgba(147, 51, 234, 0.12); }
.feature-card h3 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 12px;
    letter-spacing: -0.3px;
}
.feature-card p {
    color: var(--text-secondary);
    line-height: 1.65;
    font-size: 0.95rem;
}

/* ── Comparison ───────────────────────────────── */
.comparison {
    padding: 100px 24px;
    position: relative;
    z-index: 1;
}
.comparison-inner {
    max-width: 1100px;
    margin: 0 auto;
}
.comparison h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    letter-spacing: -1.5px;
    text-align: center;
    margin-bottom: 60px;
}
.comparison-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 20px;
}
.comp-card {
    border-radius: 16px;
    padding: 36px;
    text-align: center;
}
.comp-card.others {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
}
.comp-card.ours {
    background: linear-gradient(180deg, rgba(147, 51, 234, 0.12) 0%, rgba(192, 192, 192, 0.04) 100%);
    border: 1px solid rgba(147, 51, 234, 0.3);
    box-shadow: 0 0 40px rgba(147, 51, 234, 0.12);
}
.comp-card h4 {
    font-size: 1.1rem;
    margin-bottom: 6px;
}
.comp-card .comp-type {
    font-size: 0.75rem;
    color: var(--text-dim);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 24px;
}
.comp-card ul {
    list-style: none;
    text-align: left;
}
.comp-card ul li {
    padding: 10px 0;
    border-bottom: 1px solid rgba(255,255,255,0.04);
    font-size: 0.9rem;
    color: var(--text-secondary);
    display: flex;
    align-items: center;
    gap: 10px;
}
.comp-card ul li:last-child { border-bottom: none; }
.comp-card.ours ul li { color: var(--text-primary); }
.check { color: var(--primary-purple); font-size: 1rem; }
.cross { color: #555; font-size: 1rem; }

/* ── Products Preview / Shop ──────────────────── */
.products-preview {
    padding: 100px 24px;
    position: relative;
    z-index: 1;
}
.products-preview-inner, .shop-inner {
    max-width: 1100px;
    margin: 0 auto;
}
.products-preview h2, .shop-header h2 {
    font-size: clamp(2rem, 4.5vw, 3.2rem);
    font-weight: 700;
    letter-spacing: -1.5px;
    line-height: 1.1;
    margin-bottom: 20px;
}
.products-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 20px;
}

/* ── Product Card ─────────────────────────────── */
.product-card {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: 20px;
    overflow: hidden;
    transition: border-color 0.3s, transform 0.3s, box-shadow 0.3s;
}
.product-card:hover {
    border-color: rgba(147, 51, 234, 0.3);
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(147, 51, 234, 0.12);
}
.product-card-visual {
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}
.product-card-visual.green {
    background: linear-gradient(135deg, rgba(147, 51, 234, 0.12) 0%, rgba(147, 51, 234, 0.02) 100%);
}
.product-card-visual.blue {
    background: linear-gradient(135deg, rgba(192, 192, 192, 0.08) 0%, rgba(192, 192, 192, 0.02) 100%);
}
.product-card-visual.gradient {
    background: linear-gradient(135deg, rgba(147, 51, 234, 0.12) 0%, rgba(192, 192, 192, 0.06) 100%);
}
.product-card-icon {
    font-size: 4rem;
    filter: drop-shadow(0 0 20px rgba(147, 51, 234, 0.3));
}
.product-card-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.4s ease;
    display: block;
}
.product-card:hover .product-card-image {
    transform: scale(1.05);
}
.product-detail-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    border-radius: 24px;
    display: block;
}
.product-badge {
    position: absolute;
    top: 16px;
    right: 16px;
    padding: 6px 14px;
    border-radius: 100px;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}
.badge-green {
    background: rgba(147, 51, 234, 0.15);
    color: var(--primary-purple);
    border: 1px solid rgba(147, 51, 234, 0.3);
}
.badge-blue {
    background: rgba(192, 192, 192, 0.12);
    color: var(--chrome-light);
    border: 1px solid rgba(192, 192, 192, 0.3);
}
.badge-gradient {
    background: linear-gradient(135deg, rgba(147, 51, 234, 0.15), rgba(192, 192, 192, 0.12));
    color: var(--text-primary);
    border: 1px solid rgba(147, 51, 234, 0.3);
}
.product-card-info {
    padding: 24px;
}
.product-card-info h3 {
    font-size: 1.15rem;
    font-weight: 700;
    letter-spacing: -0.3px;
    margin-bottom: 8px;
}
.product-tagline {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-bottom: 16px;
    line-height: 1.5;
}
.product-meta {
    display: flex;
    gap: 12px;
    margin-bottom: 16px;
}
.product-flavor, .product-servings {
    font-size: 0.75rem;
    color: var(--text-dim);
    padding: 4px 10px;
    border: 1px solid var(--card-border);
    border-radius: 100px;
    letter-spacing: 0.3px;
}
.product-pricing {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}
.product-price {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.6rem;
    font-weight: 700;
    background: linear-gradient(135deg, #FFFFFF, var(--chrome));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.product-compare-price {
    font-size: 1rem;
    color: var(--text-dim);
    text-decoration: line-through;
}
.save-badge {
    font-size: 0.7rem;
    font-weight: 600;
    padding: 4px 10px;
    border-radius: 100px;
    background: rgba(230, 0, 0, 0.12);
    color: var(--primary-purple);
}
.product-card-actions {
    display: flex;
    gap: 12px;
}
.product-card-actions .btn-primary,
.product-card-actions .btn-secondary {
    flex: 1;
    text-align: center;
}

/* ── Shop Page ────────────────────────────────── */
.shop-hero {
    padding: 160px 24px 60px;
    text-align: center;
    position: relative;
    z-index: 1;
}
.shop-hero h1 {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 700;
    letter-spacing: -2px;
    margin-bottom: 16px;
}
.shop-hero p {
    font-size: 1.15rem;
    color: var(--text-secondary);
    max-width: 560px;
    margin: 0 auto;
    line-height: 1.7;
}
.shop-section {
    padding: 40px 24px 100px;
    position: relative;
    z-index: 1;
}

/* ── Product Detail Page ──────────────────────── */
.product-detail {
    padding: 120px 24px 80px;
    position: relative;
    z-index: 1;
}
.product-detail-inner {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}
.product-detail-visual {
    border-radius: 24px;
    height: 480px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}
.product-detail-visual.green {
    background: linear-gradient(135deg, rgba(147, 51, 234, 0.12) 0%, rgba(147, 51, 234, 0.02) 100%);
    border: 1px solid rgba(147, 51, 234, 0.15);
}
.product-detail-visual.blue {
    background: linear-gradient(135deg, rgba(192, 192, 192, 0.08) 0%, rgba(192, 192, 192, 0.02) 100%);
    border: 1px solid rgba(192, 192, 192, 0.15);
}
.product-detail-visual.gradient {
    background: linear-gradient(135deg, rgba(147, 51, 234, 0.12) 0%, rgba(192, 192, 192, 0.06) 100%);
    border: 1px solid rgba(147, 51, 234, 0.15);
}
.product-detail-icon {
    font-size: 8rem;
    filter: drop-shadow(0 0 40px rgba(147, 51, 234, 0.3));
}
.product-detail-badge {
    position: absolute;
    top: 24px;
    left: 24px;
    padding: 8px 18px;
    border-radius: 100px;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}
.product-detail-info h1 {
    font-size: 2.4rem;
    font-weight: 700;
    letter-spacing: -1px;
    margin-bottom: 12px;
    line-height: 1.1;
}
.product-detail-tagline {
    font-size: 1.15rem;
    color: var(--primary-purple);
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 500;
    margin-bottom: 20px;
}
.product-detail-description {
    font-size: 1.05rem;
    color: var(--text-secondary);
    line-height: 1.75;
    margin-bottom: 32px;
}
.product-detail-pricing {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 24px;
}
.product-detail-price {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    background: linear-gradient(135deg, #FFFFFF, var(--chrome));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.product-detail-compare {
    font-size: 1.2rem;
    color: var(--text-dim);
    text-decoration: line-through;
}
.product-detail-meta {
    display: flex;
    gap: 12px;
    margin-bottom: 32px;
    flex-wrap: wrap;
}
.product-detail-meta span {
    font-size: 0.8rem;
    color: var(--text-secondary);
    padding: 6px 14px;
    border: 1px solid var(--card-border);
    border-radius: 100px;
    letter-spacing: 0.3px;
}
.product-detail-actions {
    display: flex;
    gap: 16px;
    margin-bottom: 40px;
}
.product-detail-actions .btn-primary {
    flex: 2;
    text-align: center;
}
.product-detail-actions .btn-secondary {
    flex: 1;
    text-align: center;
}

/* Highlights list */
.product-highlights {
    margin-bottom: 40px;
}
.product-highlights h3 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 16px;
    color: var(--text-primary);
    letter-spacing: -0.2px;
}
.product-highlights ul {
    list-style: none;
}
.product-highlights ul li {
    padding: 10px 0;
    border-bottom: 1px solid rgba(255,255,255,0.04);
    font-size: 0.95rem;
    color: var(--text-secondary);
    display: flex;
    align-items: center;
    gap: 12px;
}
.product-highlights ul li:last-child { border-bottom: none; }
.highlight-check {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: rgba(230, 0, 0, 0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-purple);
    font-size: 0.7rem;
    flex-shrink: 0;
}

/* Ingredients section */
.ingredients-section {
    padding: 60px 24px 100px;
    position: relative;
    z-index: 1;
}
.ingredients-inner {
    max-width: 1100px;
    margin: 0 auto;
}
.ingredients-section h2 {
    font-size: 1.8rem;
    font-weight: 700;
    letter-spacing: -0.5px;
    margin-bottom: 12px;
}
.ingredients-section .subtitle {
    margin-bottom: 40px;
}
.ingredients-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 16px;
}
.ingredient-card {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: 16px;
    padding: 24px;
    transition: border-color 0.3s;
}
.ingredient-card:hover {
    border-color: rgba(147, 51, 234, 0.25);
}
.ingredient-name {
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 600;
    font-size: 1rem;
    margin-bottom: 4px;
}
.ingredient-amount {
    font-size: 0.85rem;
    color: var(--primary-purple);
    font-weight: 600;
    margin-bottom: 10px;
}
.ingredient-desc {
    font-size: 0.85rem;
    color: var(--text-secondary);
    line-height: 1.5;
}

/* ── Closing ──────────────────────────────────── */
.closing {
    padding: 120px 24px;
    text-align: center;
    position: relative;
    z-index: 1;
}
.closing-inner {
    max-width: 700px;
    margin: 0 auto;
}
.closing h2 {
    font-size: clamp(2.2rem, 5vw, 3.5rem);
    font-weight: 700;
    letter-spacing: -2px;
    line-height: 1.05;
    margin-bottom: 24px;
}
.closing p {
    color: var(--text-secondary);
    font-size: 1.15rem;
    line-height: 1.7;
    max-width: 520px;
    margin: 0 auto;
}

/* ── Success Page ─────────────────────────────── */
.success-page {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 140px 24px 80px;
    position: relative;
    z-index: 1;
}
.success-icon {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: rgba(147, 51, 234, 0.12);
    border: 2px solid rgba(147, 51, 234, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    margin-bottom: 32px;
    color: var(--primary-purple);
}
.success-page h1 {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 700;
    letter-spacing: -2px;
    margin-bottom: 16px;
}
.success-page p {
    font-size: 1.15rem;
    color: var(--text-secondary);
    max-width: 480px;
    line-height: 1.7;
    margin-bottom: 40px;
}
.success-actions {
    display: flex;
    gap: 16px;
}

/* ── Back Link ────────────────────────────────── */
.back-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--text-secondary);
    font-size: 0.9rem;
    padding: 8px 0;
    transition: color 0.2s;
    margin-bottom: 20px;
}
.back-link:hover {
    color: var(--text-primary);
}

/* ── Loading ──────────────────────────────────── */
.loading-spinner {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 80px 0;
}
.spinner {
    width: 40px;
    height: 40px;
    border: 3px solid var(--card-border);
    border-top-color: var(--primary-purple);
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}
@keyframes spin {
    to { transform: rotate(360deg); }
}

/* ── Footer ───────────────────────────────────── */
footer {
    padding: 40px 24px;
    border-top: 1px solid var(--card-border);
    text-align: center;
    position: relative;
    z-index: 1;
}
footer p {
    color: var(--text-dim);
    font-size: 0.8rem;
}
footer .from {
    color: var(--text-secondary);
    font-size: 0.85rem;
    margin-bottom: 8px;
}

/* ── Mobile ───────────────────────────────────── */
@media (max-width: 768px) {
    body {
        background-attachment: scroll;
        background-position: center top;
    }
    nav { padding: 10px 16px; }
    .logo-img { height: 36px; }
    .nav-links { gap: 16px; }
    .nav-cta { padding: 8px 18px; font-size: 0.8rem; }
    .stats-bar { gap: 30px; flex-wrap: wrap; justify-content: center; }
    .feature-grid { grid-template-columns: 1fr; }
    .feature-card.tall { grid-row: span 1; }
    .comparison-grid { grid-template-columns: 1fr; }
    .comp-card.ours { order: -1; }
    .hero h1 { letter-spacing: -1.5px; }
    .hero-logo-img { max-width: 100%; border-radius: 12px; }
    .products-grid { grid-template-columns: 1fr; }
    .product-detail-inner { grid-template-columns: 1fr; gap: 32px; }
    .product-detail-visual { height: 300px; }
    .product-detail-actions { flex-direction: column; }
    .ingredients-grid { grid-template-columns: 1fr; }
    .success-actions { flex-direction: column; }
    .shop-hero h1 { letter-spacing: -1px; }
    .mockup-grid { grid-template-columns: 1fr; gap: 20px; }
    .mockup-showcase { padding: 70px 24px; }
    .mockup-name { font-size: 1.2rem; }
    .mockup-price { font-size: 1.5rem; }
    .mockup-actions { flex-direction: column; gap: 8px; }
}

/* ── Product Mockup Showcase ──────────────────── */
.mockup-showcase {
    padding: 100px 24px;
    position: relative;
    z-index: 1;
    background: linear-gradient(180deg, transparent 0%, rgba(147, 51, 234, 0.03) 50%, transparent 100%);
}
.mockup-showcase-inner {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}
.mockup-showcase-inner h2 {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 700;
    letter-spacing: -2px;
    margin-bottom: 16px;
}
.mockup-showcase-inner .subtitle {
    font-size: 1.05rem;
    color: var(--text-secondary);
    max-width: 520px;
    margin: 0 auto 60px;
    line-height: 1.7;
}

.mockup-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    align-items: stretch;
}

.mockup-card {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: 20px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
}
.mockup-card:hover {
    transform: translateY(-8px);
    border-color: rgba(147, 51, 234, 0.4);
    box-shadow: 0 20px 60px rgba(147, 51, 234, 0.15), 0 0 0 1px rgba(147, 51, 234, 0.12);
}
.mockup-card.featured {
    border-color: rgba(192, 192, 192, 0.2);
    background: linear-gradient(180deg, rgba(192, 192, 192, 0.04) 0%, var(--card-bg) 40%);
}
.mockup-card.featured:hover {
    border-color: rgba(192, 192, 192, 0.5);
    box-shadow: 0 20px 60px rgba(192, 192, 192, 0.12), 0 0 0 1px rgba(192, 192, 192, 0.2);
}

.mockup-img-wrap {
    position: relative;
    aspect-ratio: 1;
    overflow: hidden;
    background: #0D0D0D;
}
.mockup-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
    display: block;
}
.mockup-card:hover .mockup-img {
    transform: scale(1.05);
}
.mockup-img-glow {
    position: absolute;
    inset: 0;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.3s ease;
}
.mockup-card:hover .mockup-img-glow {
    opacity: 1;
}
.mockup-img-glow.red {
    background: radial-gradient(ellipse at center bottom, rgba(147, 51, 234, 0.25) 0%, transparent 70%);
}
.mockup-img-glow.chrome {
    background: radial-gradient(ellipse at center bottom, rgba(192, 192, 192, 0.2) 0%, transparent 70%);
}
.mockup-img-glow.gradient {
    background: radial-gradient(ellipse at center bottom, rgba(147, 51, 234, 0.15) 0%, rgba(192, 192, 192, 0.12) 50%, transparent 70%);
}

.mockup-info {
    padding: 24px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
    flex: 1;
}

.mockup-badge {
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 5px 12px;
    border-radius: 100px;
    margin-bottom: 4px;
}
.badge-gaming {
    background: rgba(230, 0, 0, 0.12);
    color: var(--primary-purple);
    border: 1px solid rgba(147, 51, 234, 0.3);
}
.badge-training {
    background: rgba(192, 192, 192, 0.1);
    color: var(--chrome-light);
    border: 1px solid rgba(192, 192, 192, 0.25);
}
.badge-bundle {
    background: linear-gradient(135deg, rgba(147, 51, 234, 0.12), rgba(236, 72, 153, 0.1));
    color: var(--text-primary);
    border: 1px solid rgba(147, 51, 234, 0.25);
}

.mockup-name {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.4rem;
    font-weight: 700;
    letter-spacing: -0.5px;
    color: var(--text-primary);
    line-height: 1.1;
}

.mockup-tagline {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.5;
    flex: 1;
}

.mockup-price {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.8rem;
    font-weight: 700;
    background: linear-gradient(135deg, #FFFFFF 0%, var(--chrome) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-top: 4px;
}

.mockup-actions {
    display: flex;
    gap: 10px;
    width: 100%;
    margin-top: 8px;
}
.mockup-actions .btn-primary,
.mockup-actions .btn-secondary {
    flex: 1;
    text-align: center;
}

@media (min-width: 769px) and (max-width: 1024px) {
    .products-grid { grid-template-columns: repeat(2, 1fr); }
    .product-detail-inner { gap: 40px; }
    .mockup-grid { grid-template-columns: repeat(2, 1fr); }
    .mockup-grid .mockup-card:last-child { grid-column: span 2; max-width: 480px; margin: 0 auto; }
}

/* ── Product Video Section ────────────────────── */
.product-video-section {
    padding: 100px 24px;
    position: relative;
    background: linear-gradient(180deg, transparent 0%, rgba(147, 51, 234, 0.05) 50%, transparent 100%);
    text-align: center;
}

.product-video-inner {
    max-width: 960px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.product-video-inner h2 {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 16px;
}

.product-video-inner .subtitle {
    font-size: 1.05rem;
    color: var(--text-secondary);
    max-width: 560px;
    margin-bottom: 40px;
    line-height: 1.7;
}

.product-video-wrap {
    position: relative;
    width: 100%;
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid rgba(147, 51, 234, 0.25);
    box-shadow: 0 0 80px rgba(147, 51, 234, 0.2), 0 0 0 1px rgba(147, 51, 234, 0.1);
    background: #0F0F0F;
    aspect-ratio: 16 / 9;
}

.product-video {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    border-radius: 20px;
}

.product-video-glow {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at center, transparent 60%, rgba(147, 51, 234, 0.12) 100%);
    pointer-events: none;
    border-radius: 20px;
}

/* ── Unmute / Sound Toggle Button ─────────────────── */
.video-sound-btn {
    position: absolute;
    bottom: 14px;
    right: 14px;
    z-index: 10;
    background: rgba(0, 0, 0, 0.72);
    border: 2px solid rgba(147, 51, 234, 0.75);
    border-radius: 50px;
    padding: 10px 16px;
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    color: #fff;
    font-size: 0.85rem;
    font-family: inherit;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    animation: sound-pulse 2.2s ease-in-out infinite;
    box-shadow: 0 0 18px rgba(147, 51, 234, 0.65), 0 0 36px rgba(236, 72, 153, 0.3);
    transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.15s ease;
    min-width: 44px;
    min-height: 44px;
}

.video-sound-btn:hover {
    border-color: rgba(236, 72, 153, 0.95);
    box-shadow: 0 0 28px rgba(236, 72, 153, 0.85), 0 0 56px rgba(147, 51, 234, 0.55);
    transform: scale(1.06);
}

.video-sound-btn.unmuted {
    animation: none;
    border-color: rgba(236, 72, 153, 0.55);
    box-shadow: 0 0 10px rgba(236, 72, 153, 0.45);
}

.video-sound-icon {
    font-size: 1.25rem;
    line-height: 1;
    display: block;
}

.video-sound-hint {
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.03em;
    white-space: nowrap;
}

.video-sound-btn.unmuted .video-sound-hint {
    display: none;
}

@keyframes sound-pulse {
    0%, 100% {
        box-shadow: 0 0 18px rgba(147, 51, 234, 0.65), 0 0 36px rgba(236, 72, 153, 0.3);
        border-color: rgba(147, 51, 234, 0.75);
    }
    50% {
        box-shadow: 0 0 32px rgba(147, 51, 234, 1), 0 0 64px rgba(236, 72, 153, 0.65);
        border-color: rgba(236, 72, 153, 1);
    }
}

@media (max-width: 768px) {
    .video-sound-btn {
        bottom: 10px;
        right: 10px;
        padding: 10px 14px;
    }
}

@media (max-width: 768px) {
    .product-video-section { padding: 70px 24px; }
    .product-video-inner h2 { font-size: clamp(1.7rem, 6vw, 2.5rem); }
}

/* ════════════════════════════════════════════════
   GAME-INTRO EXPERIENCE — OverDrive FX
   ════════════════════════════════════════════════ */

/* ── Particle canvas ──────────────────────────── */
#od-particles {
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    z-index: 0;
    pointer-events: none;
    opacity: 0.55;
}

/* ── Cursor glow trail ────────────────────────── */
#od-cursor-glow {
    position: fixed;
    width: 300px; height: 300px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(147,51,234,0.10) 0%, rgba(236,72,153,0.06) 40%, transparent 70%);
    pointer-events: none;
    z-index: 2;
    top: 0; left: 0;
    will-change: transform;
    transition: opacity 0.3s;
}

/* ── Hero parallax bg layer ───────────────────── */
.od-hero-parallax {
    position: absolute;
    inset: -20%;
    background: inherit;
    background-attachment: fixed;
    will-change: transform;
    z-index: 0;
}

/* ── Metallic shimmer heading ─────────────────── */
.od-metallic {
    background: linear-gradient(
        100deg,
        #FFFFFF 0%,
        var(--chrome) 25%,
        var(--primary-purple) 45%,
        var(--hot-pink) 60%,
        var(--chrome-light) 80%,
        #FFFFFF 100%
    );
    background-size: 250% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: od-metallic-shimmer 5s linear infinite;
}
@keyframes od-metallic-shimmer {
    from { background-position: 0% center; }
    to   { background-position: 250% center; }
}

/* ── "THE LINEUP" dramatic header ─────────────── */
.od-lineup-header {
    font-family: 'Space Grotesk', sans-serif;
    font-size: clamp(2.8rem, 7vw, 6rem);
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    text-align: center;
    margin-bottom: 12px;
    line-height: 1;
    background: linear-gradient(135deg, #FFFFFF 0%, var(--chrome) 50%, var(--primary-purple) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.od-lineup-sub {
    font-size: clamp(0.8rem, 1.5vw, 1rem);
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--primary-purple);
    text-align: center;
    margin-bottom: 8px;
    font-weight: 600;
}
.od-lineup-divider {
    width: 80px;
    height: 2px;
    background: linear-gradient(90deg, var(--primary-purple), var(--hot-pink));
    margin: 12px auto 48px;
    border-radius: 2px;
    box-shadow: 0 0 12px rgba(147,51,234,0.6);
}

/* ── Button pulse glow ────────────────────────── */
@keyframes od-pulse-glow {
    0%   { box-shadow: 0 0 20px rgba(147,51,234,0.3), 0 0 0 0 rgba(147,51,234,0.25); }
    50%  { box-shadow: 0 0 30px rgba(147,51,234,0.55), 0 0 12px 4px rgba(236,72,153,0.2); }
    100% { box-shadow: 0 0 20px rgba(147,51,234,0.3), 0 0 0 0 rgba(147,51,234,0.25); }
}
.btn-primary.od-pulse {
    animation: od-pulse-glow 2.4s ease-in-out infinite;
}
.btn-primary.od-pulse:hover {
    animation: none;
    box-shadow: 0 0 40px rgba(147,51,234,0.7), 0 0 20px rgba(236,72,153,0.4);
}

/* ── Glow burst (card entrance) ───────────────── */
.od-glow-burst {
    position: absolute;
    inset: 0;
    border-radius: 20px;
    background: radial-gradient(circle at 50% 40%, rgba(147,51,234,0.3) 0%, rgba(236,72,153,0.15) 40%, transparent 70%);
    opacity: 0;
    pointer-events: none;
    z-index: 10;
    transition: opacity 0.15s ease;
}
.od-glow-burst--fire {
    opacity: 1;
    animation: od-burst-fade 0.75s ease-out forwards;
}
@keyframes od-burst-fade {
    0%   { opacity: 1; transform: scale(0.9); }
    40%  { opacity: 0.85; transform: scale(1.04); }
    100% { opacity: 0; transform: scale(1.12); }
}

/* ── Card 3D tilt ─────────────────────────────── */
.mockup-card {
    transform-style: preserve-3d;
    will-change: transform;
}

/* ── Card flip wrapper ────────────────────────── */
.od-flip-wrapper {
    position: relative;
    aspect-ratio: 1;
    perspective: 900px;
    cursor: pointer;
}
.od-flip-inner {
    position: relative;
    width: 100%;
    height: 100%;
    transform-style: preserve-3d;
    transition: transform 0.55s cubic-bezier(0.4, 0, 0.2, 1);
}
.od-flip-inner.od-flipped {
    transform: rotateY(180deg);
}
.od-flip-inner > *:first-child {
    position: absolute; inset: 0;
    backface-visibility: hidden;
}
.od-flip-back {
    position: absolute; inset: 0;
    background: linear-gradient(160deg, rgba(147,51,234,0.15) 0%, rgba(10,10,10,0.95) 100%);
    border-radius: 0;
    backface-visibility: hidden;
    transform: rotateY(180deg);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    padding: 20px;
    gap: 8px;
}
.od-flip-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--primary-purple);
    margin-bottom: 8px;
}
.od-flip-item {
    display: flex;
    align-items: baseline;
    gap: 8px;
    font-size: 0.82rem;
    line-height: 1.4;
}
.od-flip-dose {
    font-weight: 700;
    color: var(--hot-pink);
    min-width: 50px;
    font-size: 0.78rem;
}
.od-flip-name {
    color: var(--text-secondary);
}

/* ── Flavor quiz section ──────────────────────── */
.od-quiz-section {
    padding: 100px 24px;
    position: relative;
    z-index: 1;
    background: linear-gradient(180deg, transparent 0%, rgba(147,51,234,0.04) 50%, transparent 100%);
}
.od-quiz-inner {
    max-width: 720px;
    margin: 0 auto;
    text-align: center;
}
.od-quiz-inner h2 {
    font-size: clamp(1.8rem, 4vw, 3rem);
    font-weight: 700;
    letter-spacing: -1.5px;
    margin-bottom: 12px;
}
.od-quiz-subtitle {
    color: var(--text-secondary);
    font-size: 1rem;
    margin-bottom: 48px;
    line-height: 1.6;
}
.od-quiz-form {
    display: flex;
    flex-direction: column;
    gap: 32px;
    text-align: left;
}
.od-quiz-question {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: 16px;
    padding: 24px;
    transition: border-color 0.2s;
}
.od-quiz-question:focus-within {
    border-color: rgba(147,51,234,0.4);
}
.od-quiz-q-text {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 16px;
}
.od-quiz-options {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.od-quiz-option {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    border-radius: 10px;
    border: 1px solid var(--card-border);
    cursor: pointer;
    transition: all 0.2s;
    font-size: 0.9rem;
    color: var(--text-secondary);
}
.od-quiz-option:hover {
    border-color: rgba(147,51,234,0.35);
    background: rgba(147,51,234,0.06);
    color: var(--text-primary);
}
.od-quiz-option input[type="radio"] {
    appearance: none;
    -webkit-appearance: none;
    width: 18px; height: 18px;
    border-radius: 50%;
    border: 2px solid var(--card-border);
    flex-shrink: 0;
    transition: all 0.2s;
    position: relative;
}
.od-quiz-option input[type="radio"]:checked {
    border-color: var(--primary-purple);
    background: var(--primary-purple);
    box-shadow: 0 0 8px rgba(147,51,234,0.5);
}
.od-quiz-option:has(input:checked) {
    border-color: rgba(147,51,234,0.4);
    background: rgba(147,51,234,0.08);
    color: var(--text-primary);
}
.od-quiz-submit {
    margin-top: 8px;
    align-self: center;
    min-width: 200px;
}
.od-quiz-result {
    display: none;
    margin-top: 8px;
}
.od-quiz-rec {
    border: 1px solid var(--primary-purple);
    border-radius: 20px;
    padding: 36px;
    background: linear-gradient(160deg, rgba(147,51,234,0.1) 0%, rgba(10,10,10,0.9) 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    text-align: center;
}
.od-quiz-emoji {
    font-size: 2.8rem;
    line-height: 1;
}
.od-quiz-rec-badge {
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--primary-purple);
    background: rgba(147,51,234,0.12);
    border: 1px solid rgba(147,51,234,0.25);
    padding: 5px 14px;
    border-radius: 100px;
}
.od-quiz-rec-name {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    letter-spacing: -1px;
    background: linear-gradient(135deg, #FFFFFF 0%, var(--chrome) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.od-quiz-rec-tagline {
    font-size: 0.95rem;
    color: var(--text-secondary);
    max-width: 360px;
    line-height: 1.6;
}
.od-quiz-rec-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 8px;
}
.od-quiz-retry {
    background: none;
    border: none;
    color: var(--text-dim);
    font-size: 0.8rem;
    cursor: pointer;
    padding: 4px 8px;
    border-radius: 6px;
    transition: color 0.2s;
    margin-top: 4px;
}
.od-quiz-retry:hover { color: var(--text-secondary); }

/* ── After-video CTA banner ───────────────────── */
.od-after-video-cta {
    text-align: center;
    padding: 40px 24px 60px;
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
}
.od-after-video-cta .cta-tagline {
    font-size: 1.05rem;
    color: var(--text-secondary);
    max-width: 480px;
    line-height: 1.6;
}

/* ── Featured Products section ──────────────── */
.od-featured-products {
    padding: 80px 24px;
    position: relative;
    z-index: 1;
    background: linear-gradient(180deg, transparent 0%, rgba(147, 51, 234, 0.04) 50%, transparent 100%);
}
.od-featured-inner {
    max-width: 1100px;
    margin: 0 auto;
}
.od-featured-header {
    text-align: center;
    margin-bottom: 52px;
}
.od-featured-header h2 {
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    font-weight: 700;
    letter-spacing: -1.5px;
    margin-bottom: 12px;
}
.od-featured-header .subtitle {
    color: var(--text-secondary);
    font-size: 1rem;
    max-width: 500px;
    margin: 0 auto;
    line-height: 1.65;
}
.od-featured-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}
.od-featured-card {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: 18px;
    overflow: hidden;
    transition: border-color 0.3s, transform 0.3s, box-shadow 0.3s;
    display: flex;
    flex-direction: column;
}
.od-featured-card:hover {
    border-color: rgba(147, 51, 234, 0.4);
    transform: translateY(-6px);
    box-shadow: 0 16px 48px rgba(147, 51, 234, 0.14);
}
.od-featured-img-wrap {
    position: relative;
    height: 200px;
    overflow: hidden;
    background: #0D0D0D;
}
.od-featured-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
    display: block;
}
.od-featured-card:hover .od-featured-img {
    transform: scale(1.06);
}
.od-featured-img-glow {
    position: absolute;
    inset: 0;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.3s ease;
}
.od-featured-card:hover .od-featured-img-glow { opacity: 1; }
.od-featured-img-glow.red {
    background: radial-gradient(ellipse at center bottom, rgba(147, 51, 234, 0.3) 0%, transparent 70%);
}
.od-featured-img-glow.chrome {
    background: radial-gradient(ellipse at center bottom, rgba(192, 192, 192, 0.2) 0%, transparent 70%);
}
.od-featured-img-glow.gradient {
    background: radial-gradient(ellipse at center bottom, rgba(147, 51, 234, 0.2) 0%, rgba(192, 192, 192, 0.12) 50%, transparent 70%);
}
.od-featured-info {
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 6px;
    flex: 1;
}
.od-featured-badge {
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 4px 11px;
    border-radius: 100px;
    margin-bottom: 2px;
}
.od-featured-name {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.25rem;
    font-weight: 700;
    letter-spacing: -0.4px;
    color: var(--text-primary);
}
.od-featured-tagline {
    font-size: 0.85rem;
    color: var(--text-secondary);
    line-height: 1.5;
    flex: 1;
}
.od-featured-price {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.6rem;
    font-weight: 700;
    background: linear-gradient(135deg, #FFFFFF 0%, var(--chrome) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.od-featured-actions {
    display: flex;
    gap: 8px;
    margin-top: 4px;
}
.od-featured-actions .btn-primary,
.od-featured-actions .btn-secondary {
    flex: 1;
    text-align: center;
}

@media (max-width: 768px) {
    .od-featured-grid { grid-template-columns: 1fr; }
}

@media (min-width: 769px) and (max-width: 1024px) {
    .od-featured-grid { grid-template-columns: repeat(2, 1fr); }
    .od-featured-grid .od-featured-card:last-child { grid-column: span 2; max-width: 380px; margin: 0 auto; }
}

/* ── Mockup card: glow burst on scroll enter ──── */
.mockup-card {
    position: relative;
}

/* ── Section label (enhanced) ─────────────────── */
.section-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 16px;
    border-radius: 100px;
    border: 1px solid rgba(147, 51, 234, 0.3);
    background: rgba(147, 51, 234, 0.08);
    font-size: 0.72rem;
    color: var(--primary-purple);
    letter-spacing: 1.2px;
    text-transform: uppercase;
    margin-bottom: 20px;
    font-weight: 600;
}

/* ── Neon glow text (headings) ────────────────── */
.od-neon-text {
    text-shadow:
        0 0 10px rgba(147,51,234,0.6),
        0 0 30px rgba(147,51,234,0.3),
        0 0 60px rgba(236,72,153,0.15);
}

/* ── Footer ───────────────────────────────────── */
footer {
    text-align: center;
    padding: 56px 24px 40px;
    border-top: 1px solid rgba(147, 51, 234, 0.2);
    background: linear-gradient(0deg, rgba(147,51,234,0.06) 0%, transparent 100%);
    position: relative;
    z-index: 1;
}
.footer-inner {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 18px;
}
.footer-social {
    display: flex;
    gap: 16px;
    align-items: center;
    justify-content: center;
    margin-bottom: 4px;
}
.footer-social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 1px solid rgba(147, 51, 234, 0.35);
    background: rgba(147, 51, 234, 0.08);
    color: var(--text-secondary);
    font-size: 1.15rem;
    transition: color 0.28s ease, border-color 0.28s ease, background 0.28s ease, box-shadow 0.28s ease, transform 0.28s ease;
    text-decoration: none;
}
.footer-social-link:hover {
    color: #ffffff;
    border-color: var(--hot-pink);
    background: rgba(236, 72, 153, 0.14);
    box-shadow:
        0 0 14px rgba(236, 72, 153, 0.55),
        0 0 36px rgba(236, 72, 153, 0.18),
        0 0 70px rgba(147, 51, 234, 0.12);
    transform: translateY(-4px) scale(1.12);
}
footer .from {
    color: var(--text-secondary);
    font-size: 0.88rem;
    letter-spacing: 0.02em;
}
footer p:last-child {
    color: var(--text-dim);
    font-size: 0.78rem;
}

/* ── Mobile responsive ────────────────────────── */
@media (max-width: 768px) {
    #od-particles { opacity: 0.35; }
    #od-cursor-glow { display: none; }
    .od-lineup-header { letter-spacing: 0.02em; }
    .od-quiz-rec { padding: 24px; }
    .od-quiz-inner h2 { letter-spacing: -1px; }
    .od-quiz-rec-actions { flex-direction: column; align-items: center; }
    .footer-social { gap: 12px; }
    .footer-social-link { width: 44px; height: 44px; font-size: 1rem; }
    .od-reflex-arena { min-height: 260px; padding: 28px 20px; }
    .od-rg-ms { font-size: clamp(3.5rem, 14vw, 6rem); }
    .od-rg-actions { flex-direction: column; gap: 12px; align-items: center; }
    .od-rg-actions a, .od-rg-actions button { width: 100%; max-width: 280px; text-align: center; }
}

/* ── Reflex Game Section ─────────────────────────────── */
.od-reflex-section {
    padding: 100px 40px 80px;
    position: relative;
    z-index: 1;
}

.od-reflex-inner {
    max-width: 680px;
    margin: 0 auto;
    text-align: center;
}

.od-reflex-subtitle {
    color: var(--text-secondary);
    font-size: 1.05rem;
    margin: 12px 0 40px;
}

/* ── Arena Container ──────────────────────────────────── */
.od-reflex-arena {
    background: var(--card-bg);
    border: 1px solid rgba(147, 51, 234, 0.25);
    border-radius: 20px;
    min-height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    transition: border-color 0.3s, box-shadow 0.3s, background 0.25s;
    box-shadow: 0 0 40px rgba(147, 51, 234, 0.08);
    cursor: default;
    padding: 48px 32px;
}

.od-reflex-arena::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 20px;
    background: radial-gradient(ellipse at 50% 50%, rgba(147, 51, 234, 0.06) 0%, transparent 70%);
    pointer-events: none;
}

/* Flash state — hot pink burst */
.od-reflex-arena.is-flash {
    background: linear-gradient(135deg, #1a003a 0%, #2d0050 50%, #1a0030 100%);
    border-color: var(--hot-pink);
    box-shadow: 0 0 60px rgba(236, 72, 153, 0.5), 0 0 120px rgba(236, 72, 153, 0.2), inset 0 0 80px rgba(236, 72, 153, 0.15);
    cursor: pointer;
}

/* Waiting state pulse */
.od-reflex-arena.is-waiting {
    border-color: rgba(147, 51, 234, 0.5);
    animation: od-arena-pulse 2s ease-in-out infinite;
    cursor: not-allowed;
}

@keyframes od-arena-pulse {
    0%, 100% { box-shadow: 0 0 40px rgba(147, 51, 234, 0.08); }
    50%       { box-shadow: 0 0 60px rgba(147, 51, 234, 0.22); }
}

/* ── Game State Panels ────────────────────────────────── */
.od-rg-state {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    animation: od-rg-fadein 0.3s ease;
}

.od-rg-hidden { display: none !important; }

@keyframes od-rg-fadein {
    from { opacity: 0; transform: translateY(8px); }
    to   { opacity: 1; transform: translateY(0); }
}

/* ── Idle State ───────────────────────────────────────── */
.od-rg-best-badge {
    font-size: 0.78rem;
    color: var(--text-dim);
    letter-spacing: 0.5px;
    min-height: 20px;
}

.od-rg-best-badge.has-best {
    background: rgba(147, 51, 234, 0.12);
    border: 1px solid rgba(147, 51, 234, 0.25);
    border-radius: 999px;
    padding: 4px 14px;
    color: #C084FC;
}

.od-rg-prompt {
    color: var(--text-secondary);
    font-size: 0.92rem;
    max-width: 360px;
    line-height: 1.5;
}

/* ── Waiting State ────────────────────────────────────── */
.od-rg-wait-label {
    font-family: 'Space Grotesk', sans-serif;
    font-size: clamp(2.4rem, 8vw, 4rem);
    font-weight: 700;
    letter-spacing: -1px;
    color: var(--text-primary);
    text-shadow: 0 0 20px rgba(147, 51, 234, 0.6);
}

.od-rg-wait-sub {
    color: var(--text-dim);
    font-size: 0.88rem;
    letter-spacing: 0.5px;
}

/* ── Flash State ──────────────────────────────────────── */
.od-rg-flash-state {
    animation: od-flash-burst 0.25s ease-out forwards, od-rg-fadein 0.1s ease !important;
}

@keyframes od-flash-burst {
    0%   { transform: scale(0.97); }
    50%  { transform: scale(1.01); }
    100% { transform: scale(1); }
}

.od-rg-flash-label {
    font-family: 'Space Grotesk', sans-serif;
    font-size: clamp(2.6rem, 10vw, 5rem);
    font-weight: 700;
    letter-spacing: -2px;
    color: var(--hot-pink);
    text-shadow: 0 0 30px rgba(236, 72, 153, 0.9), 0 0 60px rgba(236, 72, 153, 0.5);
    animation: od-flash-text 0.6s ease-in-out infinite alternate;
}

@keyframes od-flash-text {
    from { text-shadow: 0 0 20px rgba(236, 72, 153, 0.7), 0 0 50px rgba(236, 72, 153, 0.4); }
    to   { text-shadow: 0 0 40px rgba(236, 72, 153, 1),   0 0 80px rgba(236, 72, 153, 0.6); }
}

/* ── Result State ─────────────────────────────────────── */
.od-rg-time-wrap {
    display: flex;
    align-items: flex-end;
    gap: 6px;
    line-height: 1;
}

.od-rg-ms {
    font-family: 'Space Grotesk', sans-serif;
    font-size: clamp(4rem, 16vw, 7rem);
    font-weight: 700;
    letter-spacing: -3px;
    background: linear-gradient(135deg, var(--primary-purple), var(--hot-pink));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    tabular-nums: always;
}

.od-rg-ms-unit {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-secondary);
    margin-bottom: 8px;
}

.od-rg-rating {
    font-family: 'Space Grotesk', sans-serif;
    font-size: clamp(1.2rem, 4vw, 1.8rem);
    font-weight: 700;
    color: var(--text-primary);
    text-shadow: 0 0 20px rgba(147, 51, 234, 0.5);
    animation: od-rg-pop 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

@keyframes od-rg-pop {
    from { transform: scale(0.7); opacity: 0; }
    to   { transform: scale(1);   opacity: 1; }
}

.od-rg-best-result {
    font-size: 0.78rem;
    color: var(--text-dim);
    min-height: 18px;
}

.od-rg-best-result.is-new {
    color: #C084FC;
    font-weight: 600;
    animation: od-rg-pop 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.od-rg-actions {
    display: flex;
    gap: 14px;
    align-items: center;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 8px;
}

/* ── Too Early State ──────────────────────────────────── */
.od-rg-early-state {
    animation: od-rg-fadein 0.2s ease !important;
}

.od-rg-early-label {
    font-family: 'Space Grotesk', sans-serif;
    font-size: clamp(1.8rem, 7vw, 3rem);
    font-weight: 700;
    color: #FF4444;
    text-shadow: 0 0 20px rgba(255, 68, 68, 0.6);
    letter-spacing: -1px;
}

.od-rg-early-sub {
    color: var(--text-secondary);
    font-size: 0.92rem;
}

/* ════════════════════════════════════════════════════════════
   LOADING SCREEN
   ════════════════════════════════════════════════════════════ */
#od-loading {
    position: fixed;
    inset: 0;
    z-index: 9999;
    background: #0A0A0A;
    display: flex;
    align-items: center;
    justify-content: center;
}
.od-loading-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
    opacity: 0;
}
.od-loading-logo {
    width: 220px;
    max-width: 60vw;
    height: auto;
    border-radius: 12px;
    filter: drop-shadow(0 0 30px rgba(147,51,234,0.6)) drop-shadow(0 0 60px rgba(236,72,153,0.3));
}
.od-loading-bar {
    width: 200px;
    height: 4px;
    background: rgba(255,255,255,0.08);
    border-radius: 4px;
    overflow: hidden;
}
.od-loading-fill {
    width: 0;
    height: 100%;
    background: linear-gradient(90deg, var(--primary-purple), var(--hot-pink));
    border-radius: 4px;
    box-shadow: 0 0 12px rgba(147,51,234,0.6);
}
.od-loading-tagline {
    font-size: 0.78rem;
    color: var(--text-dim);
    letter-spacing: 1px;
    text-transform: uppercase;
}

/* ════════════════════════════════════════════════════════════
   FLOATING NEON ORBS
   ════════════════════════════════════════════════════════════ */
.od-neon-orb {
    position: fixed;
    border-radius: 50%;
    pointer-events: none;
    z-index: 0;
    opacity: 0.5;
}
.od-orb-1 {
    width: 400px; height: 400px;
    background: radial-gradient(circle, rgba(147,51,234,0.12) 0%, transparent 70%);
    top: 10%; left: -5%;
    filter: blur(80px);
    animation: od-orb-float-1 18s ease-in-out infinite;
}
.od-orb-2 {
    width: 350px; height: 350px;
    background: radial-gradient(circle, rgba(236,72,153,0.10) 0%, transparent 70%);
    top: 40%; right: -8%;
    filter: blur(80px);
    animation: od-orb-float-2 22s ease-in-out infinite;
}
.od-orb-3 {
    width: 300px; height: 300px;
    background: radial-gradient(circle, rgba(192,192,192,0.08) 0%, transparent 70%);
    bottom: 15%; left: 20%;
    filter: blur(80px);
    animation: od-orb-float-3 20s ease-in-out infinite;
}
@keyframes od-orb-float-1 {
    0%, 100% { transform: translate(0, 0); }
    33% { transform: translate(40px, 30px); }
    66% { transform: translate(-20px, -40px); }
}
@keyframes od-orb-float-2 {
    0%, 100% { transform: translate(0, 0); }
    33% { transform: translate(-50px, 20px); }
    66% { transform: translate(30px, -30px); }
}
@keyframes od-orb-float-3 {
    0%, 100% { transform: translate(0, 0); }
    33% { transform: translate(30px, -40px); }
    66% { transform: translate(-40px, 20px); }
}

/* ── Extra float orbs ─────────────────────────────────── */
.od-float-orb {
    position: fixed;
    border-radius: 50%;
    pointer-events: none;
    z-index: 0;
    opacity: 0.35;
}
.od-float-orb-1 {
    width: 180px; height: 180px;
    background: radial-gradient(circle, rgba(147,51,234,0.15) 0%, transparent 70%);
    top: 60%; right: 10%;
    filter: blur(60px);
    animation: od-orb-float-1 15s ease-in-out infinite reverse;
}
.od-float-orb-2 {
    width: 220px; height: 220px;
    background: radial-gradient(circle, rgba(236,72,153,0.12) 0%, transparent 70%);
    top: 25%; left: 15%;
    filter: blur(60px);
    animation: od-orb-float-2 19s ease-in-out infinite reverse;
}
.od-float-orb-3 {
    width: 160px; height: 160px;
    background: radial-gradient(circle, rgba(192,192,192,0.10) 0%, transparent 70%);
    bottom: 30%; right: 25%;
    filter: blur(60px);
    animation: od-orb-float-3 17s ease-in-out infinite;
}

/* ════════════════════════════════════════════════════════════
   SCANLINE CRT OVERLAY
   ════════════════════════════════════════════════════════════ */
#od-scanline {
    position: fixed;
    inset: 0;
    z-index: 9998;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.4s ease;
    background: repeating-linear-gradient(
        0deg,
        transparent,
        transparent 2px,
        rgba(0,0,0,0.06) 2px,
        rgba(0,0,0,0.06) 4px
    );
}
#od-scanline.od-scanline-active {
    opacity: 1;
}

/* ════════════════════════════════════════════════════════════
   CLICK RIPPLE EFFECT
   ════════════════════════════════════════════════════════════ */
.od-ripple {
    position: absolute;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(147,51,234,0.35) 0%, transparent 70%);
    pointer-events: none;
    transform: scale(0);
    animation: od-ripple-expand 0.6s ease-out forwards;
    z-index: 100;
}
@keyframes od-ripple-expand {
    0%   { transform: scale(0); opacity: 0.7; }
    100% { transform: scale(2.5); opacity: 0; }
}

/* ════════════════════════════════════════════════════════════
   SECTION REVEAL ANIMATIONS
   ════════════════════════════════════════════════════════════ */
.od-section-reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}
.od-section-reveal.od-revealed,
.od-section-reveal.od-visible {
    opacity: 1;
    transform: translateY(0);
}
.od-stagger-child {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}
.od-stagger-child.od-visible {
    opacity: 1;
    transform: translateY(0);
}
.od-stagger-child:nth-child(1) { transition-delay: 0s; }
.od-stagger-child:nth-child(2) { transition-delay: 0.1s; }
.od-stagger-child:nth-child(3) { transition-delay: 0.2s; }
.od-stagger-child:nth-child(4) { transition-delay: 0.3s; }

/* ════════════════════════════════════════════════════════════
   BY THE NUMBERS — Animated Stats (od-stats-section)
   ════════════════════════════════════════════════════════════ */
.od-stats-section {
    padding: 80px 24px;
    position: relative;
    z-index: 1;
    background: linear-gradient(180deg, transparent 0%, rgba(147,51,234,0.04) 50%, transparent 100%);
}
.od-stats-inner {
    max-width: 1100px;
    margin: 0 auto;
    text-align: center;
}
.od-stats-inner h2 {
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    font-weight: 700;
    letter-spacing: -1.5px;
    margin-bottom: 48px;
}
.od-stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}
.od-stat-card {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: 18px;
    padding: 32px 20px;
    text-align: center;
    transition: border-color 0.3s, transform 0.3s, box-shadow 0.3s;
}
.od-stat-card:hover {
    border-color: rgba(147,51,234,0.4);
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(147,51,234,0.12);
}
.od-stat-icon-wrap {
    font-size: 2rem;
    margin-bottom: 16px;
    line-height: 1;
}
.od-stat-number {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 2.4rem;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 8px;
    background: linear-gradient(135deg, #FFFFFF 0%, var(--chrome) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.od-stat-prefix, .od-stat-suffix {
    font-size: 1rem;
    font-weight: 600;
}
.od-stat-desc {
    font-size: 0.82rem;
    color: var(--text-dim);
    line-height: 1.4;
}
.od-stat-zero-card {
    border-color: rgba(236,72,153,0.2);
}
.od-zero-fire {
    animation: od-zero-pulse 1.2s ease-in-out;
}
@keyframes od-zero-pulse {
    0%   { transform: scale(1); }
    25%  { transform: scale(1.3); text-shadow: 0 0 20px rgba(236,72,153,0.8); }
    50%  { transform: scale(0.95); }
    75%  { transform: scale(1.15); text-shadow: 0 0 15px rgba(147,51,234,0.6); }
    100% { transform: scale(1); text-shadow: none; }
}

@media (max-width: 768px) {
    .od-stats-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
    .od-stats-grid { grid-template-columns: 1fr; }
}

/* ════════════════════════════════════════════════════════════
   BY THE NUMBERS — Science section (od-numbers-section)
   ════════════════════════════════════════════════════════════ */
.od-numbers-section {
    padding: 80px 24px;
    position: relative;
    z-index: 1;
}
.od-numbers-inner {
    max-width: 1100px;
    margin: 0 auto;
    text-align: center;
}
.od-numbers-inner h2 {
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    font-weight: 700;
    letter-spacing: -1.5px;
    margin-bottom: 12px;
}
.od-numbers-inner .subtitle {
    margin-bottom: 48px;
}
.od-numbers-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}
.od-number-card {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: 18px;
    padding: 32px 20px;
    text-align: center;
    transition: border-color 0.3s, transform 0.3s;
}
.od-number-card:hover {
    border-color: rgba(147,51,234,0.35);
    transform: translateY(-4px);
}
.od-number-value {
    display: block;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 8px;
    background: linear-gradient(135deg, #FFFFFF 0%, var(--chrome) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.od-number-label {
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 4px;
}
.od-number-desc {
    font-size: 0.78rem;
    color: var(--text-dim);
    line-height: 1.4;
}
.od-zero-sugar {
    border-color: rgba(236,72,153,0.2);
}

@media (max-width: 768px) {
    .od-numbers-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
    .od-numbers-grid { grid-template-columns: 1fr; }
}

/* ── Utility ──────────────────────────────────────────────── */
.hidden { display: none !important; }

/* ── Email Capture Section ───────────────────────────────── */
.od-email-capture {
    position: relative;
    padding: 80px 20px;
    overflow: hidden;
    background: #0A0A0A;
}
.od-email-inner {
    position: relative;
    max-width: 680px;
    margin: 0 auto;
    text-align: center;
    z-index: 2;
}
.od-email-glow-left {
    position: absolute;
    top: 50%;
    left: -180px;
    transform: translateY(-50%);
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, rgba(147,51,234,0.15) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
    z-index: 1;
}
.od-email-glow-right {
    position: absolute;
    top: 50%;
    right: -180px;
    transform: translateY(-50%);
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, rgba(236,72,153,0.1) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
    z-index: 1;
}
.od-email-content {
    position: relative;
    z-index: 2;
}
.od-email-icon {
    font-size: 2.4rem;
    margin-bottom: 16px;
    display: inline-block;
    filter: drop-shadow(0 0 12px rgba(147,51,234,0.6));
    animation: od-email-icon-pulse 2.5s ease-in-out infinite;
}
@keyframes od-email-icon-pulse {
    0%, 100% { transform: scale(1); filter: drop-shadow(0 0 12px rgba(147,51,234,0.6)); }
    50% { transform: scale(1.08); filter: drop-shadow(0 0 20px rgba(236,72,153,0.8)); }
}
.od-email-headline {
    font-family: 'Space Grotesk', sans-serif;
    font-size: clamp(1.6rem, 4vw, 2.4rem);
    font-weight: 700;
    letter-spacing: -0.5px;
    color: #FFFFFF;
    margin-bottom: 12px;
    line-height: 1.2;
}
.od-email-highlight {
    background: linear-gradient(135deg, #9333EA 0%, #EC4899 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.od-email-sub {
    font-size: 1rem;
    color: #9A9A9A;
    margin-bottom: 36px;
    line-height: 1.6;
    max-width: 480px;
    margin-left: auto;
    margin-right: auto;
}
.od-email-form {
    width: 100%;
}
.od-email-input-wrap {
    display: flex;
    gap: 0;
    max-width: 520px;
    margin: 0 auto;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid rgba(147,51,234,0.3);
    background: #111111;
    transition: border-color 0.25s ease, box-shadow 0.25s ease;
}
.od-email-input-wrap:focus-within {
    border-color: rgba(147,51,234,0.7);
    box-shadow: 0 0 0 3px rgba(147,51,234,0.12), 0 0 20px rgba(147,51,234,0.15);
}
.od-email-input {
    flex: 1;
    padding: 14px 20px;
    background: transparent;
    border: none;
    outline: none;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 0.95rem;
    color: #FFFFFF;
    min-width: 0;
}
.od-email-input::placeholder {
    color: #666666;
}
.od-email-btn {
    flex-shrink: 0;
    padding: 14px 24px;
    background: linear-gradient(135deg, #9333EA 0%, #7C3AED 100%);
    border: none;
    cursor: pointer;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 0.88rem;
    font-weight: 600;
    letter-spacing: 0.3px;
    color: #FFFFFF;
    transition: background 0.2s ease, transform 0.1s ease, opacity 0.2s ease;
    position: relative;
    overflow: hidden;
}
.od-email-btn:hover {
    background: linear-gradient(135deg, #A855F7 0%, #9333EA 100%);
    transform: translateY(-1px);
}
.od-email-btn:active {
    transform: translateY(0);
}
.od-email-btn.loading {
    opacity: 0.6;
    pointer-events: none;
}
.od-email-btn-text { display: inline; }
.od-email-btn-loading { display: none; }
.od-email-btn.loading .od-email-btn-text { display: none; }
.od-email-btn.loading .od-email-btn-loading { display: inline; }
.od-email-fine-print {
    margin-top: 12px;
    font-size: 0.75rem;
    color: #666666;
}
.od-email-success {
    padding: 20px;
    background: rgba(34,204,68,0.08);
    border: 1px solid rgba(34,204,68,0.2);
    border-radius: 12px;
    margin-top: 16px;
    max-width: 520px;
    margin-left: auto;
    margin-right: auto;
}
.od-email-success-icon {
    font-size: 1.8rem;
    color: #22CC44;
    margin-bottom: 8px;
    display: block;
}
.od-email-success-msg {
    font-size: 0.95rem;
    color: #22CC44;
    font-weight: 500;
}
.od-email-error {
    margin-top: 12px;
    padding: 12px 16px;
    background: rgba(255,68,68,0.08);
    border: 1px solid rgba(255,68,68,0.2);
    border-radius: 8px;
    font-size: 0.85rem;
    color: #FF4444;
    max-width: 520px;
    margin-left: auto;
    margin-right: auto;
}

@media (max-width: 540px) {
    .od-email-input-wrap {
        flex-direction: column;
        border-radius: 12px;
        overflow: hidden;
    }
    .od-email-btn {
        width: 100%;
        padding: 14px;
        border-radius: 0;
    }
}


/* ── Trust Banner ─────────────────────────────── */
.od-trust-banner {
    position: relative;
    z-index: 1;
    background: linear-gradient(135deg, rgba(147,51,234,0.06) 0%, rgba(10,10,10,0) 50%, rgba(236,72,153,0.05) 100%);
    border-top: 1px solid rgba(147,51,234,0.25);
    border-bottom: 1px solid rgba(147,51,234,0.25);
    box-shadow:
        0 -1px 0 rgba(236,72,153,0.08),
        0 1px 0 rgba(236,72,153,0.08),
        inset 0 1px 0 rgba(147,51,234,0.06),
        inset 0 -1px 0 rgba(147,51,234,0.06);
    padding: 18px 24px;
    overflow: hidden;
}

.od-trust-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(147,51,234,0.6), rgba(236,72,153,0.6), transparent);
    pointer-events: none;
}

.od-trust-inner {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    flex-wrap: wrap;
}

.od-trust-item {
    display: flex;
    align-items: center;
    gap: 9px;
    padding: 6px 28px;
    color: var(--chrome-light);
    font-family: 'Space Grotesk', sans-serif;
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.02em;
    white-space: nowrap;
    transition: color 0.25s ease;
}

.od-trust-item:hover {
    color: #ffffff;
}

.od-trust-icon {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
    stroke: var(--primary-purple);
    transition: stroke 0.25s ease, filter 0.25s ease;
    filter: drop-shadow(0 0 4px rgba(147,51,234,0.4));
}

.od-trust-item:hover .od-trust-icon {
    stroke: var(--hot-pink);
    filter: drop-shadow(0 0 6px rgba(236,72,153,0.6));
}

.od-trust-divider {
    width: 1px;
    height: 20px;
    background: linear-gradient(180deg, transparent, rgba(147,51,234,0.35), transparent);
    flex-shrink: 0;
}

@media (max-width: 680px) {
    .od-trust-inner {
        gap: 0;
    }
    .od-trust-item {
        padding: 8px 16px;
        font-size: 0.78rem;
    }
    .od-trust-divider {
        display: none;
    }
}

@media (max-width: 480px) {
    .od-trust-inner {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 0;
    }
    .od-trust-item {
        justify-content: center;
        padding: 10px 12px;
    }
    .od-trust-divider {
        display: none;
    }
}

/* ══════════════════════════════════════════════════
   LAUNCH COUNTDOWN TIMER
   ══════════════════════════════════════════════════ */
.od-countdown-section {
    position: relative;
    overflow: hidden;
    padding: 72px 24px 80px;
    background: linear-gradient(
        170deg,
        #0d0012 0%,
        #0a0a0f 40%,
        #0d0015 100%
    );
    border-top: 1px solid rgba(147, 51, 234, 0.18);
    border-bottom: 1px solid rgba(147, 51, 234, 0.18);
    text-align: center;
    z-index: 1;
}

/* Canvas particle layer */
#od-cdt-particles {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 0;
    opacity: 0.7;
}

/* Grid overlay texture */
.od-countdown-bg-grid {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 0;
    background-image:
        linear-gradient(rgba(147, 51, 234, 0.06) 1px, transparent 1px),
        linear-gradient(90deg, rgba(147, 51, 234, 0.06) 1px, transparent 1px);
    background-size: 48px 48px;
    mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 0%, transparent 100%);
    -webkit-mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 0%, transparent 100%);
}

.od-countdown-inner {
    position: relative;
    z-index: 2;
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0;
}

.od-countdown-eyebrow {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.28em;
    color: var(--hot-pink);
    text-transform: uppercase;
    margin-bottom: 10px;
    opacity: 0.9;
}

.od-countdown-headline {
    font-family: 'Space Grotesk', sans-serif;
    font-size: clamp(2.4rem, 6vw, 4.2rem);
    font-weight: 800;
    letter-spacing: -0.02em;
    line-height: 1;
    color: #ffffff;
    text-shadow:
        0 0 28px rgba(147, 51, 234, 0.55),
        0 0 80px rgba(147, 51, 234, 0.18);
    margin-bottom: 10px;
}

.od-countdown-sub {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: clamp(0.95rem, 2vw, 1.1rem);
    color: var(--text-secondary);
    letter-spacing: 0.04em;
    margin-bottom: 44px;
}

/* Timer row */
.od-countdown-timer {
    display: flex;
    align-items: flex-start;
    gap: 0;
    justify-content: center;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.od-cdt-unit {
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 110px;
    padding: 0 8px;
}

.od-cdt-number {
    font-family: 'Space Grotesk', sans-serif;
    font-size: clamp(3.6rem, 9vw, 6.4rem);
    font-weight: 800;
    letter-spacing: -0.04em;
    line-height: 1;
    color: #ffffff;
    text-shadow:
        0 0 18px rgba(147, 51, 234, 0.8),
        0 0 50px rgba(147, 51, 234, 0.4),
        0 0 100px rgba(236, 72, 153, 0.15);
    animation: od-cdt-glow-pulse 2.8s ease-in-out infinite;
    min-width: 2ch;
    display: block;
    text-align: center;
}

@keyframes od-cdt-glow-pulse {
    0%, 100% {
        text-shadow:
            0 0 18px rgba(147, 51, 234, 0.8),
            0 0 50px rgba(147, 51, 234, 0.35),
            0 0 100px rgba(236, 72, 153, 0.12);
    }
    50% {
        text-shadow:
            0 0 30px rgba(147, 51, 234, 1),
            0 0 70px rgba(147, 51, 234, 0.55),
            0 0 140px rgba(236, 72, 153, 0.28);
    }
}

.od-cdt-label {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.22em;
    color: var(--hot-pink);
    text-transform: uppercase;
    margin-top: 6px;
    opacity: 0.85;
}

.od-cdt-sep {
    font-family: 'Space Grotesk', sans-serif;
    font-size: clamp(3rem, 7vw, 5.5rem);
    font-weight: 800;
    line-height: 1;
    color: var(--hot-pink);
    opacity: 0.65;
    padding: 0 2px;
    margin-top: 2px;
    animation: od-sep-blink 1.4s step-start infinite;
    align-self: flex-start;
}

@keyframes od-sep-blink {
    0%, 100% { opacity: 0.65; }
    50% { opacity: 0.18; }
}

/* CTA button */
.od-countdown-cta {
    margin-top: 0;
}

/* Post-launch "WE'RE LIVE" state */
.od-countdown-live {
    display: flex;
    align-items: center;
    gap: 14px;
    justify-content: center;
    margin-bottom: 36px;
}

.od-live-pulse {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: var(--hot-pink);
    box-shadow: 0 0 0 0 rgba(236, 72, 153, 0.5);
    animation: od-live-ring 1.4s infinite;
    flex-shrink: 0;
}

@keyframes od-live-ring {
    0%   { box-shadow: 0 0 0 0 rgba(236,72,153,0.65); }
    70%  { box-shadow: 0 0 0 12px rgba(236,72,153,0); }
    100% { box-shadow: 0 0 0 0 rgba(236,72,153,0); }
}

.od-live-text {
    font-family: 'Space Grotesk', sans-serif;
    font-size: clamp(1.5rem, 4vw, 2.4rem);
    font-weight: 800;
    letter-spacing: 0.06em;
    color: var(--hot-pink);
    text-shadow: 0 0 24px rgba(236, 72, 153, 0.7);
}

/* ── Mobile responsive — countdown ──────── */
@media (max-width: 768px) {
    .od-countdown-section {
        padding: 56px 20px 64px;
    }
    .od-cdt-unit {
        min-width: 70px;
        padding: 0 4px;
    }
    .od-countdown-timer {
        gap: 0;
    }
}

@media (max-width: 500px) {
    .od-countdown-timer {
        display: grid;
        grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr;
        align-items: flex-start;
        justify-items: center;
        gap: 0;
        width: 100%;
    }
    .od-cdt-unit {
        min-width: 0;
        width: 100%;
        padding: 0 2px;
    }
    .od-cdt-number {
        font-size: clamp(2.4rem, 14vw, 3.6rem);
    }
    .od-cdt-sep {
        font-size: clamp(2rem, 10vw, 3rem);
        padding: 0;
    }
    .od-countdown-headline {
        font-size: clamp(1.9rem, 9vw, 2.8rem);
    }
}
