/* ═══════════════════════════════════════════════════════════════
   PEEKABOO STUDIOS — AI Videos Landing Page (v2: FOMO + Globe + Pricing)
   Younger, bombarded, instant-FOMO vibe
   ═══════════════════════════════════════════════════════════════ */

:root {
    --bg: #000000;
    --bg-elevated: #060606;
    --bg-card: #080808;
    --text: #d4d4d4;
    --text-dim: rgba(212, 212, 212, 0.5);
    --accent: #b5f542;       /* Phosphor green — CRT monitor */
    --accent-red: #ff3b3b;   /* Hot red — broadcast alert */
    --accent-glow: rgba(181, 245, 66, 0.25);
    --accent-dim: rgba(181, 245, 66, 0.07);
    --secondary: #ff6600;
    --danger: #ff3b3b;
    --orange: #ff6600;
    --glass-bg: rgba(181, 245, 66, 0.025);
    --glass-border: rgba(181, 245, 66, 0.1);
    --font-mono: 'IBM Plex Mono', monospace;
    --font-display: 'Bebas Neue', sans-serif;
    --font-body: 'Space Grotesk', sans-serif;
    --radius: 4px;
    --radius-sm: 2px;
    --transition: cubic-bezier(0.22, 1, 0.36, 1);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
    background-color: var(--bg);
    /* CRT dot-matrix phosphor texture: the "sitting too close to the TV" feeling */
    background-image:
        /* Phosphor dot grid */
        radial-gradient(circle, rgba(181, 245, 66, 0.028) 1px, transparent 1px),
        /* Subtle vignette */
        radial-gradient(ellipse 120% 80% at 50% 50%, transparent 60%, rgba(0,0,0,0.7) 100%),
        /* Very faint horizontal scanlines */
        repeating-linear-gradient(
            0deg,
            transparent,
            transparent 2px,
            rgba(0, 0, 0, 0.12) 2px,
            rgba(0, 0, 0, 0.12) 3px
        );
    background-size: 4px 4px, 100% 100%, 100% 3px;
    background-attachment: fixed;
    color: var(--text);
    font-family: var(--font-mono);
    overflow-x: hidden;
    line-height: 1.6;
    cursor: none;
    -webkit-font-smoothing: antialiased;
}

::selection {
    background: var(--accent); box-shadow: 0 0 20px var(--accent-glow), 0 0 40px var(--accent-glow);
    color: #000;
}

/* ─── PAGE LOADER ──────────────────────────────────────────── */
#page-loader {
    position: fixed;
    inset: 0;
    background: var(--bg);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    transition: opacity 0.8s ease, visibility 0.8s;
}

#page-loader.hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.loader-ring {
    width: 52px;
    height: 52px;
    border: 2px solid var(--accent);
    border-top-color: transparent;
    border-radius: 50%;
    animation: spin 0.9s linear infinite;
    margin: 0 auto 18px;
}

.loader-label {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1.1rem;
    letter-spacing: 5px;
    color: var(--accent);
    display: block;
    text-align: center;
}

.loader-dot { color: var(--accent); }

@keyframes spin { to { transform: rotate(360deg); } }

/* ─── GRAIN OVERLAY ────────────────────────────────────────── */
.grain-overlay {
    position: fixed;
    inset: 0;
    z-index: 9000;
    pointer-events: none;
    opacity: 0.035;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
    background-repeat: repeat;
    mix-blend-mode: overlay;
}

/* ─── TYPOGRAPHY ───────────────────────────────────────────── */
h1, h2, h3, h4 { font-family: var(--font-heading); }
.accent { color: var(--accent); text-shadow: 0 0 30px var(--accent-glow); }

.section-tag {
    display: block;
    color: var(--accent);
    font-family: var(--font-body);
    font-weight: 700;
    margin-bottom: 20px;
    letter-spacing: 3px;
    font-size: 0.78rem;
    text-transform: uppercase;
}

.section-heading {
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    line-height: 1.05;
    font-weight: 900;
    margin-bottom: 20px;
}

.section-desc {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-dim);
    max-width: 640px;
    margin-bottom: 50px;
}

.section-desc strong { color: var(--text); }

/* ─── NAVIGATION ───────────────────────────────────────────── */
nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 24px 50px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 500;
    backdrop-filter: blur(16px) saturate(1.6);
    -webkit-backdrop-filter: blur(16px) saturate(1.6);
    background: rgba(0, 0, 0, 0.4);
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
    transition: padding 0.4s var(--transition), background 0.4s;
}

nav.scrolled {
    padding: 16px 50px;
    background: rgba(0, 0, 0, 0.75);
}

.logo-container { text-decoration: none; color: var(--text); }

.logo-text {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 800;
    letter-spacing: 2px;
}

.dot { color: var(--accent); }

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

.nav-links a {
    text-decoration: none;
    color: var(--text);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    font-weight: 500;
    transition: color 0.3s;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 1.5px;
    background: var(--accent); box-shadow: 0 0 20px var(--accent-glow), 0 0 40px var(--accent-glow);
    transition: width 0.4s var(--transition);
}

.nav-links a:hover { color: var(--accent); }
.nav-links a:hover::after { width: 100%; }

.nav-cta {
    background: var(--accent) !important;
    color: #000 !important;
    padding: 11px 24px;
    border-radius: 100px;
    font-weight: 700 !important;
    letter-spacing: 1px !important;
    transition: transform 0.3s var(--transition), box-shadow 0.3s !important;
}

.nav-cta::after { display: none !important; }

.nav-cta:hover {
    transform: translateY(-2px) !important;
    box-shadow: 0 8px 30px var(--accent-glow) !important;
    color: #000 !important;
}

/* Hamburger */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    z-index: 501;
    padding: 6px;
}

.hamburger span {
    width: 26px;
    height: 2px;
    background: var(--text);
    border-radius: 2px;
    transition: all 0.35s var(--transition);
}

.hamburger.active span:nth-child(1) { transform: rotate(45deg) translateY(7px); }
.hamburger.active span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.active span:nth-child(3) { transform: rotate(-45deg) translateY(-7px); }

/* Mobile Menu */
.mobile-menu {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(0, 0, 0, 0.97);
    backdrop-filter: blur(30px);
    z-index: 499;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 32px;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s, visibility 0.4s;
}

.mobile-menu.open { opacity: 1; visibility: visible; }

.mobile-menu a {
    text-decoration: none;
    color: var(--text);
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    transition: color 0.3s;
}

.mobile-menu a:hover { color: var(--accent); }

/* ─── MAIN / CONTENT ───────────────────────────────────────── */
main { position: relative; z-index: 10; }

.content-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
}

.content-section {
    padding: 120px 0;
    position: relative;
}

/* ─── HERO ─────────────────────────────────────────────────── */
#ai-hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    padding-top: 140px; padding-bottom: 160px;
}

.hero-bg-effects { 
    position: absolute; 
    inset: 0; 
    overflow: hidden; 
    z-index: 0; 
    background-image: linear-gradient(rgba(0,0,0,0.8), rgba(0,0,0,0.8)), linear-gradient(to right, rgba(0, 255, 204, 0.05) 1px, transparent 1px), linear-gradient(to bottom, rgba(0, 255, 204, 0.05) 1px, transparent 1px); 
    background-size: 100% 100%, 40px 40px, 40px 40px; 
    background-attachment: fixed; 
    animation: gridMove 20s linear infinite;
}

@keyframes gridMove {
    0% { background-position: center, 0 0, 0 0; }
    100% { background-position: center, 40px 40px, 40px 40px; }
}

/* ─── ENTIRE PAGE CRT SCANLINE EFFECT ─── */
body::after {
    content: " ";
    display: block;
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background: linear-gradient(rgba(18, 16, 16, 0) 50%, rgba(0, 0, 0, 0.25) 50%), linear-gradient(90deg, rgba(255, 0, 0, 0.06), rgba(0, 255, 0, 0.02), rgba(0, 0, 255, 0.06));
    z-index: 9998;
    background-size: 100% 2px, 3px 100%;
    pointer-events: none;
    opacity: 0.15;
}

.gradient-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.4;
    animation: float 12s ease-in-out infinite;
}

.orb-1 {
    width: 600px; height: 600px;
    background: radial-gradient(circle, rgba(0, 255, 204, 0.2) 0%, transparent 70%);
    top: -10%; right: -10%;
}

.orb-2 {
    width: 500px; height: 500px;
    background: radial-gradient(circle, rgba(123, 97, 255, 0.15) 0%, transparent 70%);
    bottom: -15%; left: -5%;
    animation-delay: -4s;
}

.orb-3 {
    width: 400px; height: 400px;
    background: radial-gradient(circle, rgba(255, 59, 92, 0.12) 0%, transparent 70%);
    top: 40%; left: 50%;
    animation-delay: -8s;
}

@keyframes float {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(30px, -30px) scale(1.05); }
    66% { transform: translate(-20px, 20px) scale(0.95); }
}

.scan-line {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 3px;
    background: linear-gradient(90deg, transparent, var(--accent), transparent);
    opacity: 0.6;
    animation: scanDown 4s linear infinite;
    z-index: 10;
}

@keyframes scanDown { 0% { top: -2px; } 100% { top: 100%; } }

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 900px;
    padding-bottom: 120px; /* Force space below content before scroll-indicator */
}

/* Hero Badge — LIVE */
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 59, 92, 0.1);
    border: 1px solid rgba(255, 59, 92, 0.3);
    padding: 8px 20px;
    border-radius: 100px;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 2px;
    color: var(--danger);
    margin-bottom: 40px;
    text-transform: uppercase;
    animation: badgePulse 3s ease-in-out infinite;
}

.badge-live {
    background: var(--danger);
    color: #fff;
    padding: 2px 8px;
    border-radius: 4px;
    font-size: 0.65rem;
    font-weight: 800;
    letter-spacing: 1px;
    animation: liveBlink 1.5s ease-in-out infinite;
}

@keyframes liveBlink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.6; }
}

@keyframes badgePulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(255, 59, 92, 0); }
    50% { box-shadow: 0 0 20px rgba(255, 59, 92, 0.15); }
}

.badge-pulse {
    width: 8px; height: 8px;
    background: var(--danger);
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
    box-shadow: 0 0 10px var(--danger);
}

@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(0.8); }
}

.hero-headline { margin-bottom: 80px; position: relative; z-index: 10; display: flex; flex-direction: column; gap: 10px; }

.hero-headline .line { display: block; font-size: clamp(3.2rem, 9vw, 7.5rem); font-weight: 900; line-height: 1.1; padding-bottom: 10px; letter-spacing: -2px; color: var(--text); position: relative; }

.hero-headline .accent-line {
    color: var(--accent);
    text-shadow: 0 0 60px var(--accent-glow), 0 0 120px rgba(0, 255, 204, 0.1);
}

.glitch-text { position: relative; display: inline-block; text-shadow: -3px 0 red, 3px 0 cyan; }

.glitch-text::before,
.glitch-text::after {
    content: attr(data-text);
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    opacity: 0;
}

.glitch-text::before { color: #ff006e; animation: glitch1 4s ease-in-out infinite; }
.glitch-text::after { color: #00b4d8; animation: glitch2 4s ease-in-out infinite; }

@keyframes glitch1 {
    0%, 92%, 100% { opacity: 0; transform: translate(0); }
    93% { opacity: 0.8; transform: translate(-4px, 2px); }
    94% { opacity: 0; }
    96% { opacity: 0.6; transform: translate(3px, -1px); }
    97% { opacity: 0; }
}

@keyframes glitch2 {
    0%, 93%, 100% { opacity: 0; transform: translate(0); }
    94% { opacity: 0.7; transform: translate(4px, -2px); }
    95% { opacity: 0; }
    97% { opacity: 0.5; transform: translate(-3px, 1px); }
    98% { opacity: 0; }
}

.blink-cursor { animation: blink 1s step-end infinite; color: var(--accent); font-weight: 300; }
@keyframes blink { 0%, 100% { opacity: 1; } 50% { opacity: 0; } }

.hero-sub {
    font-size: 1.15rem;
    line-height: 1.8;
    color: var(--text-dim);
    max-width: 640px;
    margin: 0 auto 40px;
}

.hero-sub strong { color: var(--text); }

.hero-ctas {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 60px;
}

.cta-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--accent); box-shadow: 0 0 20px var(--accent-glow), 0 0 40px var(--accent-glow);
    color: #000;
    padding: 14px 32px;
    border-radius: 100px;
    font-weight: 700;
    font-size: 0.9rem;
    letter-spacing: 1px;
    text-decoration: none;
    text-transform: uppercase;
    transition: transform 0.35s var(--transition), box-shadow 0.35s;
}

.cta-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 40px var(--accent-glow);
}

.cta-icon { font-size: 0.7rem; }

.cta-secondary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: transparent;
    color: var(--danger);
    padding: 14px 32px;
    border-radius: 100px;
    font-weight: 600;
    font-size: 0.9rem;
    letter-spacing: 1px;
    text-decoration: none;
    text-transform: uppercase;
    border: 1px solid rgba(255, 59, 92, 0.3);
    transition: all 0.35s var(--transition);
    animation: urgencyPulse 2s ease-in-out infinite;
}

.urgency-dot {
    width: 8px; height: 8px;
    border-radius: 50%;
    background: var(--danger);
    animation: pulse 1.5s ease-in-out infinite;
}

@keyframes urgencyPulse {
    0%, 100% { box-shadow: 0 0 0 0 transparent; }
    50% { box-shadow: 0 0 20px rgba(255, 59, 92, 0.1); }
}

.cta-secondary:hover {
    border-color: var(--danger);
    background: rgba(255, 59, 92, 0.08);
    transform: translateY(-2px);
}

/* Hero Urgency Stats */
.hero-urgency-bar {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.urgency-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
}

.urgency-number, .urgency-suffix {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 900;
    color: var(--accent);
    line-height: 1;
}

.urgency-label {
    font-size: 0.7rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--text-dim);
}

.urgency-divider {
    width: 1px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 36px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    z-index: 2;
}

.scroll-mouse {
    width: 24px; height: 38px;
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    position: relative;
}

.scroll-wheel {
    width: 3px; height: 7px;
    background: var(--accent); box-shadow: 0 0 20px var(--accent-glow), 0 0 40px var(--accent-glow);
    border-radius: 2px;
    position: absolute;
    top: 6px; left: 50%;
    transform: translateX(-50%);
    animation: scrollAnim 2s ease-in-out infinite;
}

@keyframes scrollAnim {
    0% { transform: translate(-50%, 0); opacity: 1; }
    100% { transform: translate(-50%, 14px); opacity: 0; }
}

.scroll-label {
    font-size: 0.65rem;
    letter-spacing: 3px;
    color: var(--text-dim);
    text-transform: uppercase;
}

/* ═══════════════════════════════════════════════════════════════
   FLASH DEAL BANNER — Sticky urgency bar
   ═══════════════════════════════════════════════════════════════ */
.flash-deal-bar {
    background: linear-gradient(90deg, var(--danger), #ff6600, var(--danger));
    background-size: 200% 100%;
    animation: flashGradient 3s linear infinite;
    padding: 14px 20px;
    text-align: center;
    position: relative;
    z-index: 100;
    overflow: hidden;
}

@keyframes flashGradient {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.flash-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
}

.flash-icon {
    font-size: 1.2rem;
    animation: flashBounce 0.6s ease-in-out infinite alternate;
}

@keyframes flashBounce {
    0% { transform: scale(1); }
    100% { transform: scale(1.3); }
}

.flash-text {
    font-family: var(--font-heading);
    font-size: 0.85rem;
    font-weight: 700;
    color: #000;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.flash-text strong {
    color: #fff;
    text-shadow: 0 0 6px rgba(0,0,0,0.3);
}

.flash-timer {
    background: rgba(0, 0, 0, 0.3);
    color: #fff;
    padding: 4px 12px;
    border-radius: 8px;
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1rem;
    letter-spacing: 2px;
    min-width: 100px;
    text-align: center;
}

/* ═══════════════════════════════════════════════════════════════
   VIDEO STYLE CARDS — Full-width video + pricing per style
   ═══════════════════════════════════════════════════════════════ */
.video-style-card {
    background: var(--bg-card);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    overflow: hidden;
    margin-bottom: 40px;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s var(--transition);
}

.video-style-card.revealed {
    opacity: 1;
    transform: translateY(0);
}

.video-style-card:hover {
    border-color: rgba(0, 255, 204, 0.15);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4), 0 0 40px var(--accent-dim);
}

/* Style Header */
.style-header {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 28px 32px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    position: relative;
}

.style-number {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    font-weight: 900;
    color: var(--accent);
    opacity: 0.3;
    line-height: 1;
    min-width: 50px;
}

.style-title-wrap {
    flex: 1;
}

.style-title {
    font-size: 1.6rem;
    font-weight: 900;
    letter-spacing: 2px;
    margin-bottom: 4px;
    color: var(--text);
}

.style-subtitle {
    font-size: 0.85rem;
    color: var(--text-dim);
    letter-spacing: 0.5px;
}

.style-hot-tag {
    background: rgba(255, 59, 92, 0.15);
    border: 1px solid rgba(255, 59, 92, 0.3);
    color: var(--danger);
    padding: 6px 16px;
    border-radius: 100px;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 1px;
    white-space: nowrap;
    animation: tagPulse 2s ease-in-out infinite;
}

.style-hot-tag.trending {
    background: rgba(123, 97, 255, 0.15);
    border-color: rgba(123, 97, 255, 0.3);
    color: var(--secondary);
}

.style-hot-tag.premium {
    background: rgba(255, 136, 0, 0.15);
    border-color: rgba(255, 136, 0, 0.3);
    color: var(--orange);
}

.style-hot-tag.best-value {
    background: rgba(0, 255, 204, 0.1);
    border-color: rgba(0, 255, 204, 0.3);
    color: var(--accent);
}

@keyframes tagPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

/* ═══ COMPACT VIDEO CARD LAYOUT — Phone preview + FOMO quote ═══ */
.style-content {
    display: flex;
    flex-direction: row;
    align-items: stretch;
    gap: 0;
}

/* The video+quote row */
.style-video-frame {
    flex: 1;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 24px;
    padding: 20px 24px;
    background: #050505;
    border-top: 1px solid rgba(0, 255, 65, 0.08);
    min-height: 0;
    overflow: hidden;
}

/* Phone wrapper — this is the key fix. Hard pixel constraints. */
.phone-preview-wrap {
    flex: 0 0 120px;
    width: 120px;
    height: 213px; /* 9:16 portrait */
    border-radius: 14px;
    overflow: hidden;
    position: relative;
    border: 3px solid #1c1c1c;
    box-shadow:
        0 0 0 1px rgba(0,255,65,0.3),
        0 0 20px rgba(0,255,65,0.15),
        inset 0 0 20px rgba(0,0,0,0.8);
    background: #000;
    flex-shrink: 0;
}

.phone-preview-wrap.landscape {
    flex: 0 0 260px;
    width: 260px;
    height: 146px; /* 16:9 ratio */
    border-radius: 8px; /* Less intense curve for horizontal screen */
}

/* The actual YT container sits INSIDE the phone wrap */
.yt-player-container {
    position: absolute;
    /* Crop the landscape 16:9 video down to a portrait 9:16 window
       by making it much wider than the wrapper and centering it */
    width: 378px;   /* 213px * (16/9) = full width for portrait crop */
    height: 213px;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
}

.phone-preview-wrap.landscape .yt-player-container {
    width: 100%;
    height: 100%;
    left: 0;
    transform: none;
}

.yt-player-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100% !important;
    height: 100% !important;
    border: none !important;
}

/* ═══ PHONE CONTROLS GROUP (mute + fullscreen side by side) ═══ */
.phone-controls {
    position: absolute;
    bottom: 8px;
    right: 8px;
    z-index: 12;
    display: flex;
    flex-direction: row;
    gap: 5px;
    align-items: center;
}

/* Both buttons share identical sizing inside the group */
.phone-controls .sound-toggle,
.phone-controls .fullscreen-btn {
    position: static;      /* override any inherited absolute */
    width: 28px;
    height: 28px;
    border-radius: 3px;
    border: 1px solid rgba(181, 245, 66, 0.35);
    background: rgba(0, 0, 0, 0.72);
    backdrop-filter: blur(6px);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    padding: 0;
    opacity: 0.75;
    transition: opacity 0.18s ease, border-color 0.18s ease, box-shadow 0.18s ease, transform 0.18s ease;
}

.phone-controls .sound-toggle:hover,
.phone-controls .fullscreen-btn:hover {
    opacity: 1;
    border-color: var(--accent);
    background: rgba(181, 245, 66, 0.12);
    box-shadow: 0 0 10px var(--accent-glow);
    transform: scale(1.08);
}

.phone-controls .sound-toggle svg,
.phone-controls .fullscreen-btn svg {
    width: 13px;
    height: 13px;
    color: var(--accent);
    stroke: currentColor;
}

/* Legacy standalone sound-toggle (now inside .phone-controls, which overrides position) */
.sound-toggle {
    position: absolute;
    bottom: 16px;
    right: 16px;
    z-index: 10;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.3);
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s var(--transition);
    opacity: 0.7;
}

.sound-toggle:hover {
    opacity: 1;
    border-color: var(--accent);
    background: rgba(0, 255, 204, 0.15);
    transform: scale(1.1);
}

.sound-toggle svg {
    width: 20px; height: 20px;
    color: #fff;
}

.sound-toggle.unmuted {
    border-color: var(--accent);
    background: rgba(0, 255, 204, 0.2);
    opacity: 1;
    box-shadow: 0 0 20px var(--accent-glow);
}

.video-live-badge {
    position: absolute;
    top: 6px;
    left: 6px;
    z-index: 10;
    background: rgba(255, 42, 42, 0.9);
    color: #fff;
    padding: 2px 6px;
    border-radius: 2px;
    font-family: var(--font-body);
    font-size: 0.5rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    animation: liveBlink 1.5s ease-in-out infinite;
}

/* ═══════════════════════════════════════════════════════════════
   PRICE CARD — Per-video pricing unlock
   ═══════════════════════════════════════════════════════════════ */
.price-card {
    padding: 20px 18px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    background: linear-gradient(180deg, rgba(255,255,255,0.02) 0%, rgba(0,255,204,0.03) 100%);
    border-left: 1px solid rgba(255, 255, 255, 0.05);
    text-align: center;
    position: relative;
    overflow: hidden;
    width: 220px;
    min-width: 220px;
    max-width: 220px;
    flex-shrink: 0;
}

.price-timer-row {
    display: flex;
    align-items: center;
    gap: 10px;
}

.timer-label {
    font-size: 0.72rem;
    font-weight: 600;
    color: var(--text-dim);
    letter-spacing: 0.5px;
}

.price-timer {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1.1rem;
    color: var(--danger);
    letter-spacing: 2px;
    animation: timerPulse 1s ease-in-out infinite;
}

@keyframes timerPulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.7; }
}

.price-timer.expired {
    color: var(--text-dim);
    animation: none;
    font-size: 0.8rem;
    letter-spacing: 1px;
}

.price-amounts {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    /* Hidden by default — revealed on unlock */
    filter: blur(12px);
    user-select: none;
    pointer-events: none;
    transition: filter 0.6s var(--transition);
}

.price-card.unlocked .price-amounts {
    filter: blur(0);
    user-select: auto;
    pointer-events: auto;
}

.price-original {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-dim);
    text-decoration: line-through;
    opacity: 0.6;
}

.price-current {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    font-weight: 900;
    color: var(--accent);
    text-shadow: 0 0 20px var(--accent-glow);
    line-height: 1;
}

.price-save {
    background: rgba(0, 255, 204, 0.12);
    color: var(--accent);
    padding: 3px 12px;
    border-radius: 100px;
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 1.5px;
}

/* Unlock Button & Razorpay Override */
.unlock-btn {
    width: 100% !important;
    padding: 14px 20px !important;
    background: linear-gradient(135deg, var(--accent), #00cc88) !important;
    color: #000 !important;
    border: none !important;
    border-radius: 12px !important;
    font-family: var(--font-heading) !important;
    font-size: 0.9rem !important;
    font-weight: 800 !important;
    letter-spacing: 1.5px !important;
    text-transform: uppercase !important;
    cursor: pointer !important;
    transition: transform 0.3s var(--transition), box-shadow 0.3s !important;
    position: relative !important;
    overflow: hidden !important;
}

.price-card form {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 15px;
    margin-bottom: 5px;
}



.unlock-btn::before {
    content: '';
    position: absolute;
    top: 0; left: -100%;
    width: 100%; height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    animation: btnShine 2s ease-in-out infinite;
}

@keyframes btnShine {
    0% { left: -100%; }
    50% { left: 100%; }
    100% { left: 100%; }
}

.unlock-btn:hover {
    transform: translateY(-2px) !important;
    box-shadow: 0 10px 30px var(--accent-glow) !important;
}

.unlock-btn.btn-unlocked {
    background: rgba(0, 255, 204, 0.15);
    color: var(--accent);
    cursor: default;
    border: 1px solid rgba(0, 255, 204, 0.3);
}

.unlock-btn.btn-unlocked::before { display: none; }

.price-note {
    font-size: 0.68rem;
    color: var(--text-dim);
    letter-spacing: 0.5px;
    opacity: 0.6;
}

/* ═══════════════════════════════════════════════════════════════
   3D BRAND LOGO GLOBE
   ═══════════════════════════════════════════════════════════════ */
.globe-section {
    background: linear-gradient(180deg, var(--bg) 0%, #020808 30%, #020808 70%, var(--bg) 100%);
    overflow: hidden;
}

.globe-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.globe-desc { margin-bottom: 24px; }
.globe-desc strong { color: var(--danger); }

.globe-fomo-counter {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: rgba(0, 255, 204, 0.06);
    border: 1px solid rgba(0, 255, 204, 0.15);
    padding: 12px 24px;
    border-radius: 100px;
    font-size: 0.85rem;
    color: var(--text-dim);
}

.globe-fomo-counter strong {
    color: var(--accent);
    font-weight: 800;
    font-family: var(--font-heading);
}

.fomo-pulse {
    width: 10px; height: 10px;
    background: var(--accent); box-shadow: 0 0 20px var(--accent-glow), 0 0 40px var(--accent-glow);
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
    box-shadow: 0 0 12px var(--accent);
}

.globe-container {
    position: relative;
    width: 100%;
    height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    perspective: 1000px;
}

.globe-wrapper {
    position: relative;
    width: 400px;
    height: 400px;
    transform-style: preserve-3d;
    animation: globeSpin 25s linear infinite;
}

@keyframes globeSpin {
    0% { transform: rotateY(0deg) rotateX(-15deg); }
    100% { transform: rotateY(360deg) rotateX(-15deg); }
}

.globe-logo {
    position: absolute;
    top: 50%; left: 50%;
    width: 60px; height: 60px;
    margin: -30px 0 0 -30px;
    transform-style: preserve-3d;
    backface-visibility: hidden;
}

.logo-inner {
    width: 100%; height: 100%;
    border-radius: 14px;
    background: #ffffff;
    border: 2px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s ease;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0,0,0,0.5);
}

.logo-inner img {
    width: 100%; height: 100%;
    object-fit: contain;
    padding: 8px;
    filter: grayscale(100%);
    opacity: 0.8;
    transition: all 0.4s ease;
}

.globe-logo:hover .logo-inner {
    border-color: var(--accent);
    box-shadow: 0 0 20px rgba(0, 255, 204, 0.3);
    transform: scale(1.1);
}

.globe-logo:hover .logo-inner img {
    filter: grayscale(0%);
    opacity: 1;
}

.globe-glow {
    position: absolute;
    width: 300px; height: 300px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(0, 255, 204, 0.08) 0%, transparent 70%);
    pointer-events: none;
    animation: glowPulse 4s ease-in-out infinite;
}

@keyframes glowPulse {
    0%, 100% { transform: scale(1); opacity: 0.5; }
    50% { transform: scale(1.2); opacity: 0.8; }
}

/* ─── PROOF BAR ────────────────────────────────────────────── */
.proof-bar {
    padding: 20px 0;
    background: rgba(255, 59, 92, 0.03);
    border-top: 1px solid rgba(255, 59, 92, 0.08);
    border-bottom: 1px solid rgba(255, 59, 92, 0.08);
    overflow: hidden;
}

.proof-inner {
    display: flex;
    gap: 40px;
    white-space: nowrap;
    animation: marquee 30s linear infinite;
    width: max-content;
}

.proof-item {
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--accent);
    opacity: 0.7;
}

.proof-sep { color: rgba(0, 255, 204, 0.3); font-size: 0.5rem; }

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

/* ─── MASTERCLASS SECTION ──────────────────────────────────── */
.masterclass-section {
    background: linear-gradient(180deg, var(--bg) 0%, #030808 30%, #030808 70%, var(--bg) 100%);
}

.masterclass-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
}

.mc-desc {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--text-dim);
    margin-bottom: 24px;
}

.mc-desc strong { color: var(--text); }

/* Scarcity Bar */
.mc-scarcity { margin-bottom: 36px; }

.scarcity-bar {
    width: 100%;
    height: 8px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 100px;
    margin-bottom: 10px;
    overflow: hidden;
}

.scarcity-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--accent), var(--danger));
    border-radius: 100px;
    animation: scarcityPulse 2s ease-in-out infinite;
}

@keyframes scarcityPulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.75; }
}

.scarcity-text {
    font-size: 0.8rem;
    color: var(--danger);
    letter-spacing: 0.5px;
}

.scarcity-text strong { color: var(--text); }

.mc-features { list-style: none; display: flex; flex-direction: column; gap: 24px; }

.mc-features li { display: flex; gap: 16px; align-items: flex-start; }

.mc-check { font-size: 1.2rem; flex-shrink: 0; margin-top: 2px; }

.mc-features li div { display: flex; flex-direction: column; gap: 3px; }

.mc-features li strong { font-size: 1rem; font-weight: 700; color: var(--text); }

.mc-features li span { font-size: 0.85rem; color: var(--text-dim); line-height: 1.5; }

/* ─── FORM ─────────────────────────────────────────────────── */
.mc-form-container { position: sticky; top: 100px; }

.form-glass {
    background: rgba(255, 255, 255, 0.025);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 44px 36px;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    position: relative;
    overflow: hidden;
}

.form-glass::before {
    content: '';
    position: absolute;
    top: -1px;
    left: 40px; right: 40px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--accent), transparent);
    opacity: 0.5;
}

.form-urgency-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 59, 92, 0.1);
    border: 1px solid rgba(255, 59, 92, 0.25);
    padding: 6px 16px;
    border-radius: 100px;
    font-size: 0.72rem;
    font-weight: 700;
    color: var(--danger);
    margin-bottom: 20px;
}

.urgency-pulse {
    width: 6px; height: 6px;
    background: var(--danger);
    border-radius: 50%;
    animation: pulse 1.5s ease-in-out infinite;
}

.form-header { margin-bottom: 36px; }

.form-header h3 {
    font-size: 1.8rem;
    font-weight: 900;
    line-height: 1.15;
    margin-bottom: 10px;
}

.form-header p { font-size: 0.9rem; color: var(--text-dim); line-height: 1.6; }

.form-group {
    position: relative;
    margin-bottom: 28px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    background: transparent;
    border: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
    color: var(--text);
    font-family: var(--font-body);
    font-size: 0.95rem;
    padding: 16px 0 10px;
    outline: none;
    transition: border-color 0.4s;
}

.form-group textarea { resize: vertical; min-height: 60px; }

.form-group label {
    position: absolute;
    left: 0; top: 16px;
    font-size: 0.9rem;
    color: var(--text-dim);
    pointer-events: none;
    transition: all 0.3s var(--transition);
    transform-origin: left;
}

.form-group input:focus ~ label,
.form-group input:not(:placeholder-shown) ~ label,
.form-group textarea:focus ~ label,
.form-group textarea:not(:placeholder-shown) ~ label {
    transform: translateY(-22px) scale(0.78);
    color: var(--accent);
    font-weight: 600;
    letter-spacing: 1px;
}

.form-group input:-webkit-autofill ~ label {
    transform: translateY(-22px) scale(0.78);
    color: var(--accent);
    font-weight: 600;
    letter-spacing: 1px;
}

.input-line {
    position: absolute;
    bottom: 0; left: 0;
    width: 0; height: 2px;
    background: var(--accent); box-shadow: 0 0 20px var(--accent-glow), 0 0 40px var(--accent-glow);
    box-shadow: 0 0 10px var(--accent-glow);
    transition: width 0.5s var(--transition);
}

.form-group input:focus ~ .input-line,
.form-group textarea:focus ~ .input-line {
    width: 100%;
}

.form-group input:-webkit-autofill {
    -webkit-box-shadow: 0 0 0 50px var(--bg) inset !important;
    -webkit-text-fill-color: var(--text) !important;
    caret-color: var(--text);
}

.form-submit {
    width: 100%;
    padding: 16px;
    background: var(--accent); box-shadow: 0 0 20px var(--accent-glow), 0 0 40px var(--accent-glow);
    color: #000;
    border: none;
    border-radius: 12px;
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 800;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    cursor: pointer;
    transition: transform 0.3s var(--transition), box-shadow 0.3s;
}

.form-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px var(--accent-glow);
}

.form-submit:active { transform: translateY(0); }

.form-submit .btn-loader,
.form-submit .btn-success { display: none; }

.form-submit.loading .btn-text { display: none; }
.form-submit.loading .btn-loader {
    display: inline-block;
    width: 22px; height: 22px;
    border: 2.5px solid rgba(0, 0, 0, 0.2);
    border-top-color: #000;
    border-radius: 50%;
    animation: spin 0.7s linear infinite;
}

.form-submit.success { background: #00cc88; pointer-events: none; }
.form-submit.success .btn-text { display: none; }
.form-submit.success .btn-success { display: inline-block; font-size: 1.1rem; }

.form-footnote {
    text-align: center;
    font-size: 0.75rem;
    color: var(--text-dim);
    margin-top: 16px;
}

/* ─── CTA BANNER ───────────────────────────────────────────── */
.cta-banner-section { padding: 100px 0; }

.cta-banner {
    text-align: center;
    padding: 80px 60px;
    background: linear-gradient(135deg, rgba(0, 255, 204, 0.04) 0%, rgba(123, 97, 255, 0.04) 100%);
    border: 1px solid var(--glass-border);
    border-radius: 24px;
    position: relative;
    overflow: hidden;
}

.cta-banner::before {
    content: '';
    position: absolute;
    top: -1px;
    left: 60px; right: 60px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--accent), transparent);
    opacity: 0.3;
}

.cta-fomo-line {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 59, 92, 0.1);
    border: 1px solid rgba(255, 59, 92, 0.2);
    padding: 6px 18px;
    border-radius: 100px;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--danger);
    margin-bottom: 45px; position: relative; z-index: 10;
}

.cta-fomo-dot {
    width: 6px; height: 6px;
    background: var(--danger);
    border-radius: 50%;
    animation: pulse 1.5s ease-in-out infinite;
}

.cta-banner h2 {
    font-size: clamp(2rem, 4vw, 3.5rem);
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 16px;
}

.cta-banner p {
    font-size: 1.05rem;
    color: var(--text-dim);
    margin-bottom: 36px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.cta-banner-btns {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

/* ─── FOOTER ───────────────────────────────────────────────── */
footer {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding: 50px 40px;
    text-align: center;
}

.footer-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.footer-logo {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 800;
    letter-spacing: 2px;
    text-decoration: none;
    color: var(--text);
}

.footer-copy { font-size: 0.78rem; color: var(--text-dim); letter-spacing: 1px; }
.footer-tagline { font-size: 0.72rem; color: rgba(255, 255, 255, 0.25); letter-spacing: 1.5px; }

/* ═══════════════════════════════════════════════════════════════
   RESPONSIVE — Tablet ≤ 1024px
   ═══════════════════════════════════════════════════════════════ */
@media (max-width: 1024px) {
    .style-content { flex-direction: column; }
    .price-card { border-left: none; border-top: 1px solid rgba(255,255,255,0.05); width: 100%; min-width: 100%; max-width: 100%; }
    .globe-layout { grid-template-columns: 1fr; text-align: center; }
    .globe-section .section-desc { margin-left: auto; margin-right: auto; }
    .globe-container { height: 400px; }
    .globe-wrapper { width: 320px; height: 320px; }
    .masterclass-layout { grid-template-columns: 1fr; gap: 60px; }
    .mc-form-container { position: static; }
}

/* ═══════════════════════════════════════════════════════════════
   RESPONSIVE — Mobile ≤ 768px
   ═══════════════════════════════════════════════════════════════ */
@media (max-width: 768px) {
    nav { padding: 16px 20px; }
    .nav-links { display: none; }
    .hamburger { display: flex; }
    .mobile-menu { display: flex; }

    .content-wrapper { padding: 0 20px; }
    .content-section { padding: 80px 0; }

    #ai-hero { padding-top: 60px; }

    .hero-headline .line { display: block; font-size: clamp(3.2rem, 9vw, 7.5rem); font-weight: 900; line-height: 1.1; padding-bottom: 10px; letter-spacing: -2px; color: var(--text); position: relative; }

    .hero-sub { font-size: 1rem; }
    .hero-ctas { flex-direction: column; align-items: center; }
    .cta-primary, .cta-secondary { width: 100%; max-width: 300px; justify-content: center; }

    .hero-urgency-bar { gap: 20px; }
    .urgency-number, .urgency-suffix { font-size: 1.4rem; }
    .urgency-divider { height: 30px; }

    .flash-deal-bar { padding: 10px 16px; }
    .flash-text { font-size: 0.7rem; }
    .flash-timer { font-size: 0.85rem; }

    .style-header { flex-wrap: wrap; padding: 20px; gap: 12px; }
    .style-number { font-size: 1.6rem; min-width: 36px; }
    .style-title { font-size: 1.2rem; }
    .style-hot-tag { font-size: 0.6rem; padding: 4px 10px; }
    .style-content { flex-direction: column; }
    .style-video-frame { flex-direction: column; gap: 20px; align-items: stretch; text-align: center; }
    .phone-preview-wrap { margin: 0 auto; width: 100%; aspect-ratio: 16/9; height: auto; flex: none; border-radius: 8px; overflow: hidden; }
    .phone-preview-wrap.landscape { width: 100%; aspect-ratio: 16/9; height: auto; flex: none; }
    .yt-player-container { width: 100%; height: 100%; }
    .phone-preview-wrap.landscape .yt-player-container { width: 100%; height: 100%; }
    .price-card { border-left: none; border-top: 1px solid rgba(255,255,255,0.05); width: 100%; min-width: 100%; max-width: 100%; padding: 30px 20px; }

    .globe-layout { grid-template-columns: 1fr; text-align: center; }
    .globe-container { height: 350px; }
    .globe-wrapper { width: 280px; height: 280px; }
    .globe-logo { width: 45px; height: 45px; margin: -22px 0 0 -22px; }
    .logo-inner { font-size: 0.55rem; border-radius: 10px; }

    .section-heading { font-size: clamp(2rem, 8vw, 3rem); }

    .masterclass-layout { grid-template-columns: 1fr; gap: 40px; }
    .mc-form-container { position: static; }
    .form-glass { padding: 32px 24px; }
    .form-header h3 { font-size: 1.5rem; }

    .cta-banner { padding: 50px 30px; border-radius: 16px; }
    .cta-banner h2 { font-size: clamp(1.6rem, 7vw, 2.5rem); }
    .cta-banner-btns { flex-direction: column; align-items: center; }
    .cta-banner-btns .cta-primary,
    .cta-banner-btns .cta-secondary { width: 100%; max-width: 280px; justify-content: center; }

    .phone-controls { display: none !important; }
}

/* ═══════════════════════════════════════════════════════════════
   RESPONSIVE — Small Mobile ≤ 480px
   ═══════════════════════════════════════════════════════════════ */
@media (max-width: 480px) {
    .hero-badge { font-size: 0.5rem; padding: 6px 10px; letter-spacing: 1px; gap: 6px; }
    .hero-headline .line { display: block; font-size: clamp(3.2rem, 9vw, 7.5rem); font-weight: 900; line-height: 1.1; padding-bottom: 10px; letter-spacing: -2px; color: var(--text); position: relative; }

    .hero-urgency-bar { flex-direction: column; gap: 16px; }
    .urgency-divider { width: 40px; height: 1px; }

    .scroll-indicator { display: none; }

    .flash-inner { gap: 8px; }
    .flash-text { font-size: 0.6rem; letter-spacing: 0; }

    .style-header { padding: 16px; }
    .style-number { font-size: 1.3rem; }
    .style-title { font-size: 1.05rem; letter-spacing: 1px; }

    .price-current { font-size: 1.8rem; }

    .form-glass { padding: 28px 20px; border-radius: 16px; }
    .cta-banner { padding: 40px 20px; }

    .globe-container { height: 280px; }
    .globe-wrapper { width: 220px; height: 220px; }
    .globe-logo { width: 38px; height: 38px; margin: -19px 0 0 -19px; }
    .logo-inner { font-size: 0.5rem; border-radius: 8px; }
}

/* ─── 2050 GLITCH VIBE & CRAZY CURSOR ───────────────────────── */
@media (min-width: 1025px) {
    * { cursor: none !important; }

    .custom-cursor-dot {
        position: fixed;
        top: 0; left: 0;
        width: 6px; height: 6px;
        background: var(--accent); box-shadow: 0 0 20px var(--accent-glow), 0 0 40px var(--accent-glow);
        border-radius: 50%;
        pointer-events: none;
        z-index: 10000;
        transform: translate(-50%, -50%);
        box-shadow: 0 0 10px var(--accent-glow);
    }

    .custom-cursor-trail {
        position: fixed;
        top: 0; left: 0;
        width: 30px; height: 30px;
        border: 2px solid var(--accent); box-shadow: 0 0 15px var(--accent-glow);
        border-radius: 50%;
        pointer-events: none;
        z-index: 9999;
        transform: translate(-50%, -50%);
        transition: width 0.1s, height 0.1s;
        
        animation: cursorSpin 4s linear infinite;
    }

    @keyframes cursorSpin { 100% { transform: translate(-50%, -50%) rotate(360deg); } }
}

@keyframes pageGlitch {
    0% { transform: translate(0) skew(0deg); filter: hue-rotate(0deg); opacity: 1; }
    20% { transform: translate(-2px, 2px) skew(-2deg); filter: hue-rotate(90deg); opacity: 0.8; }
    40% { transform: translate(-4px, -2px) skew(2deg); filter: invert(1); opacity: 0.9; }
    60% { transform: translate(2px, 2px) skew(0deg); filter: hue-rotate(-90deg); opacity: 1; }
    80% { transform: translate(2px, -2px) skew(0deg); filter: hue-rotate(0deg) blur(1px); opacity: 0.9; }
    100% { transform: translate(0) skew(0deg); filter: hue-rotate(0deg); opacity: 1; }
}

.glitch-active {
    animation: pageGlitch 0.25s cubic-bezier(.25,.46,.45,.94) both;
}

/* Enhancing glitch frequency on accent lines */
.hero-headline .accent-line:hover {
    animation: pageGlitch 0.2s infinite;
}

/* ═══ RETRO-FUTURISTIC FOMO PANEL ═══ */
.tech-aesthetic-panel {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background:
        repeating-linear-gradient(
            0deg,
            transparent,
            transparent 3px,
            rgba(181, 245, 66, 0.018) 4px
        );
    border: 1px solid rgba(181, 245, 66, 0.15);
    border-left: 3px solid var(--accent);
    border-radius: 2px;
    padding: 18px 20px;
    position: relative;
    color: var(--text-dim);
    min-height: 213px;
    overflow: hidden;
    font-family: var(--font-mono);
}

.tech-aesthetic-panel::before {
    content: "SYS_ACCESS: GRANTED ";
    font-family: var(--font-mono);
    font-size: 0.58rem;
    color: var(--accent);
    position: absolute;
    top: 8px; left: 12px;
    letter-spacing: 2px;
    opacity: 0.6;
    animation: pulse 3s infinite;
}

.tech-aesthetic-panel::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(181,245,66,0.03) 0%, transparent 40%);
    pointer-events: none;
}

.fomo-quote {
    font-family: var(--font-mono);
    font-size: 1.35rem;
    font-weight: 600;
    line-height: 1.2;
    color: var(--text);
    margin-bottom: 8px;
    margin-top: 22px;
    text-transform: uppercase;
    letter-spacing: 0.02em;
    /* Phosphor glow — the TV pixel look */
    text-shadow:
        0 0 4px rgba(181, 245, 66, 0.4),
        0 0 12px rgba(181, 245, 66, 0.15),
        0 0 30px rgba(181, 245, 66, 0.05);
}
.fomo-quote span {
    color: var(--accent);
    text-shadow:
        0 0 6px rgba(181, 245, 66, 0.6),
        0 0 20px rgba(181, 245, 66, 0.3);
}

.tech-aesthetic-panel p {
    font-family: var(--font-mono);
    font-size: 0.78rem;
    line-height: 1.6;
    color: rgba(212, 212, 212, 0.6);
    letter-spacing: 0.01em;
}

.tech-stats {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-top: 12px;
    font-family: var(--font-mono);
    font-size: 0.6rem;
    color: var(--accent-red);
    letter-spacing: 1.5px;
}

.tech-stats div {
    background: rgba(255, 59, 59, 0.07);
    border: 1px solid rgba(255, 59, 59, 0.25);
    padding: 3px 7px;
    border-radius: 2px;
}

/* Mobile */
@media (max-width: 768px) {
    .style-content {
        flex-direction: column;
    }
    .style-video-frame {
        flex-direction: column;
        align-items: center;
    }
    .phone-preview-wrap {
        flex: none;
        width: 100%;
        height: auto;
        aspect-ratio: 16/9;
    }
    .yt-player-container {
        width: 100%;
        height: 100%;
    }
    .price-card {
        border-left: none;
        border-top: 1px solid rgba(181, 245, 66, 0.1);
    }
}


/* ═══════════════════════════════════════════════════════════
   CLOSING CTA — NAIL IN THE COFFIN
   ═══════════════════════════════════════════════════════════ */
.cta-close-section {
    position: relative;
    padding: 100px 40px;
    overflow: hidden;
    background:
        linear-gradient(180deg, transparent 0%, rgba(181, 245, 66, 0.03) 40%, transparent 100%),
        var(--bg);
    border-top: 1px solid rgba(181, 245, 66, 0.12);
    border-bottom: 1px solid rgba(181, 245, 66, 0.12);
}

.cta-bg-grid {
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle, rgba(181, 245, 66, 0.06) 1px, transparent 1px);
    background-size: 28px 28px;
    pointer-events: none;
    opacity: 0.5;
    mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 20%, transparent 100%);
    -webkit-mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 20%, transparent 100%);
}

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

.cta-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-mono);
    font-size: 0.7rem;
    letter-spacing: 3px;
    color: var(--accent-red);
    text-transform: uppercase;
    border: 1px solid rgba(255, 59, 59, 0.3);
    background: rgba(255, 59, 59, 0.06);
    padding: 7px 18px;
    border-radius: 2px;
}

.cta-pulse-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--accent-red);
    box-shadow: 0 0 8px var(--accent-red);
    animation: pulse 1.4s infinite;
    flex-shrink: 0;
}

.cta-headline {
    font-family: var(--font-display);
    font-size: clamp(2.6rem, 6vw, 5rem);
    font-weight: 700;
    line-height: 1.05;
    color: var(--text);
    letter-spacing: -0.01em;
}

.cta-accent {
    color: var(--accent);
    text-shadow:
        0 0 20px rgba(181, 245, 66, 0.5),
        0 0 60px rgba(181, 245, 66, 0.2);
    display: block;
}

.cta-subtext {
    font-family: var(--font-mono);
    font-size: 0.95rem;
    line-height: 1.8;
    color: var(--text-dim);
    max-width: 600px;
}

.cta-proof-strip {
    display: flex;
    align-items: center;
    width: 100%;
    border: 1px solid rgba(181, 245, 66, 0.1);
    border-radius: 4px;
    overflow: hidden;
    background: rgba(181, 245, 66, 0.02);
}

.cta-proof-item {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 20px 16px;
    gap: 4px;
}

.cta-proof-num {
    font-family: var(--font-display);
    font-size: 2rem;
    color: var(--accent);
    text-shadow: 0 0 20px rgba(181, 245, 66, 0.4);
    line-height: 1;
}

.cta-proof-label {
    font-family: var(--font-mono);
    font-size: 0.62rem;
    color: var(--text-dim);
    letter-spacing: 0.5px;
    text-align: center;
}

.cta-proof-divider {
    width: 1px;
    height: 50px;
    background: rgba(181, 245, 66, 0.1);
    flex-shrink: 0;
}

.cta-checklist {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px 40px;
    text-align: left;
    width: 100%;
    max-width: 700px;
}

.cta-check-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-family: var(--font-mono);
    font-size: 0.82rem;
    color: var(--text-dim);
    line-height: 1.5;
}

.cta-check-icon {
    color: var(--accent);
    font-weight: 700;
    font-size: 0.9rem;
    flex-shrink: 0;
    margin-top: 1px;
    text-shadow: 0 0 8px rgba(181, 245, 66, 0.5);
}

.cta-urgency-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    max-width: 700px;
    background: rgba(255, 59, 59, 0.05);
    border: 1px solid rgba(255, 59, 59, 0.2);
    border-radius: 4px;
    padding: 14px 20px;
    font-family: var(--font-mono);
    font-size: 0.78rem;
    color: rgba(212, 212, 212, 0.7);
    gap: 12px;
}

.cta-urgency-left {
    display: flex;
    align-items: center;
    gap: 8px;
}

.cta-urgency-left strong {
    color: var(--accent-red);
    font-size: 1rem;
}

.cta-urgency-timer {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-shrink: 0;
}

.cta-timer-display {
    font-family: var(--font-display);
    font-size: 1.4rem;
    color: var(--accent-red);
    text-shadow: 0 0 12px rgba(255, 59, 59, 0.4);
    letter-spacing: 1px;
    min-width: 80px;
}

.cta-action-row {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
}

.cta-mega-btn {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 14px;
    padding: 20px 52px;
    background: var(--accent);
    color: #000;
    text-decoration: none;
    font-family: var(--font-display);
    font-size: 1.35rem;
    font-weight: 700;
    letter-spacing: 2px;
    border-radius: 4px;
    overflow: hidden;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    box-shadow:
        0 0 0 1px rgba(181, 245, 66, 0.5),
        0 0 40px rgba(181, 245, 66, 0.25),
        0 0 80px rgba(181, 245, 66, 0.1);
    cursor: pointer;
}

.cta-mega-btn:hover {
    transform: translateY(-3px) scale(1.025);
    box-shadow:
        0 0 0 1px rgba(181, 245, 66, 0.8),
        0 0 60px rgba(181, 245, 66, 0.45),
        0 0 120px rgba(181, 245, 66, 0.2);
}

.cta-btn-glow {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, transparent 0%, rgba(255,255,255,0.18) 50%, transparent 100%);
    animation: btn-shimmer 2.5s infinite;
    pointer-events: none;
}

@keyframes btn-shimmer {
    0%   { transform: translateX(-100%); }
    60%  { transform: translateX(100%); }
    100% { transform: translateX(100%); }
}

.cta-btn-text {
    position: relative;
    z-index: 1;
}

.cta-btn-arrow {
    position: relative;
    z-index: 1;
    font-size: 1.6rem;
    transition: transform 0.2s ease;
}

.cta-mega-btn:hover .cta-btn-arrow {
    transform: translateX(5px);
}

.cta-risk-note {
    font-family: var(--font-mono);
    font-size: 0.68rem;
    color: var(--text-dim);
    letter-spacing: 0.5px;
    opacity: 0.6;
}

@media (max-width: 768px) {
    .cta-close-section { padding: 60px 20px; }
    .cta-proof-strip { flex-wrap: wrap; }
    .cta-proof-divider { display: none; }
    .cta-proof-item { width: 50%; border-bottom: 1px solid rgba(181, 245, 66, 0.07); }
    .cta-checklist { grid-template-columns: 1fr; }
    .cta-urgency-bar { flex-direction: column; text-align: center; gap: 8px; }
    .cta-mega-btn { padding: 18px 32px; font-size: 1.1rem; }
}


/* Peekaboo Logo Loader Animation */
.loader-logo-img {
    height: 48px;
    filter: brightness(0) invert(1);
    animation: pulseLogo 1.5s cubic-bezier(0.4, 0, 0.2, 1) infinite;
}

@keyframes pulseLogo {
    0%, 100% { opacity: 1; transform: scale(1); filter: brightness(0) invert(1) drop-shadow(0 0 10px rgba(0, 255, 204, 0.8)); }
    50% { opacity: 0.5; transform: scale(0.95); filter: brightness(0) invert(1) drop-shadow(0 0 2px rgba(0, 255, 204, 0)); }
}
