:root {
    /* Colors - Tech + Childlike */
    --color-bg-navy: #0F172A;
    --color-bg-darker: #020617;
    --color-primary-cyan: #06b6d4;
    --color-primary-cyan-glow: rgba(6, 182, 212, 0.4);
    --color-accent-orange: #fbbf24;
    --color-accent-red: #ef4444;
    --color-text-white: #f8fafc;
    --color-text-gray: #cbd5e1;
    --color-card-bg: rgba(255, 255, 255, 0.95);
    --color-card-bg-dark: rgba(30, 41, 59, 0.8);

    /* Fonts */
    --font-heading: 'Poppins', sans-serif;
    --font-body: 'Inter', sans-serif;

    /* Spacing */
    --container-padding: 20px;
    --section-spacing: 60px;
    --radius-card: 20px;
    --radius-btn: 50px;
}

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

body {
    background-color: var(--color-bg-navy);
    color: var(--color-text-white);
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.6;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    line-height: 1.2;
    margin-bottom: 1rem;
}

img {
    max-width: 100%;
    display: block;
}

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

ul {
    list-style: none;
}

/* Utilities */
.container {
    max-width: 1024px;
    margin: 0 auto;
    padding: 0 var(--container-padding);
}

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

.hidden {
    display: none;
}

.desktop-only {
    display: none;
}

@media (min-width: 1024px) {
    .desktop-only {
        display: block;
    }

    .mobile-only {
        display: none;
    }
}

/* Backgrounds & Textures */
.bg-navy {
    background: linear-gradient(180deg, var(--color-bg-navy) 0%, #1e1b4b 100%);
    position: relative;
    overflow: hidden;
}

.bg-light {
    background-color: #f1f5f9;
    color: #1e293b;
}

.bg-grid {
    background-image: linear-gradient(rgba(6, 182, 212, 0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(6, 182, 212, 0.05) 1px, transparent 1px);
    background-size: 40px 40px;
}

/* Components */
.btn-cta {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    padding: 16px 24px;
    background: linear-gradient(135deg, #f59e0b 0%, #ef4444 100%);
    color: white;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.1rem;
    text-transform: uppercase;
    border-radius: var(--radius-btn);
    box-shadow: 0 4px 15px rgba(239, 68, 68, 0.4);
    transition: transform 0.2s, box-shadow 0.2s;
    animation: pulse 3s infinite;
    cursor: pointer;
    border: none;
}

.btn-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(239, 68, 68, 0.6);
}

@keyframes pulse {
    0% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(239, 68, 68, 0.7);
    }

    70% {
        transform: scale(1.02);
        box-shadow: 0 0 0 10px rgba(239, 68, 68, 0);
    }

    100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(239, 68, 68, 0);
    }
}

.card {
    background: var(--color-card-bg);
    color: #0f172a;
    border-radius: var(--radius-card);
    padding: 20px;
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.5);
    transition: transform 0.3s ease;
}

.card-tech {
    background: rgba(15, 23, 42, 0.6);
    backdrop-filter: blur(12px);
    border: 1px solid var(--color-primary-cyan);
    color: white;
    box-shadow: 0 0 20px var(--color-primary-cyan-glow);
}

/* Sections */
.section-spacing {
    padding-top: var(--section-spacing);
    padding-bottom: var(--section-spacing);
}

/* Hero */
.hero {
    padding-top: 40px;
    padding-bottom: 60px;
}

.hero h1 {
    font-size: 1.8rem;
    background: linear-gradient(to right, #67e8f9, #c084fc);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 16px;
}

.hero h2 {
    font-size: 1.1rem;
    font-weight: 400;
    color: var(--color-text-gray);
    margin-bottom: 24px;
}

.hero-badge {
    display: inline-block;
    background: rgba(239, 68, 68, 0.1);
    color: #fca5a5;
    padding: 6px 12px;
    border-radius: 8px;
    font-size: 0.9rem;
    margin-bottom: 20px;
    border: 1px solid rgba(239, 68, 68, 0.3);
}

.hero-bullets {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
    margin-top: 20px;
    font-size: 0.9rem;
}

.hero-bullet-item {
    display: flex;
    align-items: center;
    gap: 6px;
}

/* VSL */
.vsl-section {
    margin-top: -30px;
    position: relative;
    z-index: 10;
    padding-bottom: 40px;
}

.vsl-container {
    background: #000;
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    border: 2px solid var(--color-primary-cyan);
    box-shadow: 0 0 30px var(--color-primary-cyan-glow);
}

.vsl-wrapper {
    position: relative;
    padding-bottom: 56.25%;
    /* 16:9 */
    height: 0;
}

.vsl-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/* Gallery Grid */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    margin-top: 24px;
}

.gallery-item {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.gallery-label {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.7);
    color: white;
    padding: 4px 8px;
    font-size: 0.75rem;
    text-align: center;
}

/* App List */
.checklist-container {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
    text-align: left;
}

.check-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1rem;
}

.check-icon {
    color: #16a34a;
    flex-shrink: 0;
}

/* Offer Box */
.offer-box {
    background: radial-gradient(circle at center, #1e293b 0%, #0f172a 100%);
    border: 2px solid var(--color-accent-orange);
    text-align: center;
    position: relative;
}

.price-strike {
    text-decoration: line-through;
    color: #94a3b8;
    font-size: 1rem;
}

.price-main {
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--color-accent-orange);
    margin: 8px 0;
}

.price-sub {
    font-size: 1.1rem;
    color: white;
}

/* Social Proof */
.social-scroller {
    display: flex;
    overflow-x: auto;
    gap: 16px;
    padding-bottom: 20px;
    -webkit-overflow-scrolling: touch;
    scroll-snap-type: x mandatory;
}

.social-item {
    min-width: 80%;
    scroll-snap-align: center;
    border-radius: 16px;
    overflow: hidden;
}

/* Benefits */
.benefit-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

.benefit-card {
    display: flex;
    align-items: center;
    gap: 16px;
    background: white;
    padding: 16px;
    border-radius: 16px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

.benefit-icon {
    width: 48px;
    height: 48px;
    background: #e0f2fe;
    color: var(--color-primary-cyan);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

/* Bonus */
.bonus-card {
    border: 1px dashed var(--color-primary-cyan);
    background: rgba(255, 255, 255, 0.03);
    margin-bottom: 20px;
}

.bonus-img {
    border-radius: 12px;
    margin-bottom: 12px;
}

/* Value Stack */
.value-stack-list {
    margin: 20px 0;
    text-align: left;
}

.value-item {
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.value-price {
    text-decoration: line-through;
    color: #94a3b8;
}

/* FAQ */
.faq-item {
    border-bottom: 1px solid #e2e8f0;
    margin-bottom: 10px;
}

.faq-question {
    padding: 16px 0;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-answer {
    padding-bottom: 16px;
    color: #475569;
    display: none;
}

.faq-item.active .faq-answer {
    display: block;
}

.faq-toggle {
    transition: transform 0.3s;
}

.faq-item.active .faq-toggle {
    transform: rotate(180deg);
}

/* Floating Elements (Decoration) */
.float-icon {
    position: absolute;
    opacity: 0.2;
    z-index: 0;
}

.float-1 {
    top: 10%;
    left: 5%;
    animation: float 6s ease-in-out infinite;
    font-size: 3rem;
}

.float-2 {
    top: 15%;
    right: -5%;
    animation: float 7s ease-in-out infinite 1s;
    font-size: 4rem;
}

.float-3 {
    bottom: 10%;
    left: -5%;
    animation: float 8s ease-in-out infinite 2s;
    font-size: 2.5rem;
}

@keyframes float {
    0% {
        transform: translateY(0px) rotate(0deg);
    }

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

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

/* Sticky Mobile Bar */
.sticky-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: white;
    padding: 12px 20px;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.1);
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-bottom: max(12px, env(safe-area-inset-bottom));
}

/* Spacer for Sticky Bar */
.sticky-spacer {
    height: 90px;
}

/* Desktop Overrides */
@media (min-width: 1024px) {
    .hero h1 {
        font-size: 3rem;
    }

    .hero h2 {
        font-size: 1.5rem;
    }

    .gallery-grid {
        grid-template-columns: repeat(4, 1fr);
    }

    .checklist-container {
        grid-template-columns: repeat(3, 1fr);
    }

    .social-scroller {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        overflow: visible;
        gap: 20px;
    }

    .social-item {
        min-width: auto;
    }

    .benefit-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .about-container {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 40px;
        align-items: center;
    }

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

    .sticky-bar,
    .sticky-spacer {
        display: none;
    }

    .btn-cta {
        max-width: 400px;
    }

    /* Reveal floating icons only on desktop to avoid mobile clutter */
    .float-icon {
        display: block;
    }
}

/* Mobile Adjustments */
@media (max-width: 1023px) {
    .container {
        overflow: hidden;
        /* Prevent inner elements from overflowing */
    }

    .float-icon {
        display: none;
        /* Hide floating icons on mobile to prevent overflow/clutter */
    }

    .social-scroller {
        justify-content: flex-start;
        /* Align items to start */
    }

    .hero h1 {
        font-size: 1.5rem;
        /* Reduced size */
    }

    .hero h2 {
        font-size: 1rem;
    }

    .offer-box {
        margin: 0 -10px;
        /* Expand box slightly on mobile */
        border-radius: 12px;
    }
}