:root {
    --font: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-display: 'Syne', sans-serif;
    --bg: #030306;
    --bg-elevated: #0a0a12;
    --bg-card: #0e0e18;
    --bg-card-hover: #12121e;
    --text: #f4f4fa;
    --text-muted: #8b8fa8;
    --primary: #a855f7;
    --primary-light: #c084fc;
    --secondary: #6366f1;
    --accent: #22d3a5;
    --accent-hot: #f472b6;
    --gold: #fbbf24;
    --border: rgba(255,255,255,0.06);
    --border-glow: rgba(168,85,247,0.35);
    --glow: rgba(168,85,247,0.25);
    --ease: cubic-bezier(0.22,1,0.36,1);
    --spring: cubic-bezier(0.34,1.56,0.64,1);
    --r-sm: 10px;
    --r-md: 14px;
    --r-lg: 20px;
    --r-xl: 28px;
    --r-full: 999px;
}

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

body {
    font-family: var(--font);
    background: var(--bg);
    color: var(--text);
    line-height: 1.65;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body.devtools-detected {
    user-select: none;
}

body.devtools-detected::after {
    content: "Developer tools allowed nahi — page band karo aur normal browser use karo.";
    position: fixed;
    inset: 0;
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
    text-align: center;
    font-weight: 700;
    color: #fff;
    background: rgba(3, 3, 6, 0.92);
    backdrop-filter: blur(8px);
}

a, button, .btn { -webkit-tap-highlight-color: transparent; touch-action: manipulation; }

/* ══════════════════════════════════════════════
   PREMIUM BACKGROUND SYSTEM
   ══════════════════════════════════════════════ */
.background-effects {
    position: fixed;
    inset: 0;
    z-index: -1;
    overflow: hidden;
    pointer-events: none;
}

.bg-base-gradient {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 120% 80% at 50% -30%, rgba(124, 58, 237, 0.18) 0%, transparent 50%),
        radial-gradient(ellipse 80% 60% at 100% 20%, rgba(99, 102, 241, 0.12) 0%, transparent 45%),
        radial-gradient(ellipse 70% 50% at 0% 60%, rgba(168, 85, 247, 0.1) 0%, transparent 45%),
        radial-gradient(ellipse 50% 40% at 80% 100%, rgba(34, 211, 165, 0.06) 0%, transparent 40%),
        linear-gradient(180deg, #050508 0%, var(--bg) 100%);
}

.bg-spotlight {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    filter: blur(80px);
    will-change: transform, opacity;
}

.bg-spotlight-hero {
    width: 800px;
    height: 600px;
    top: -5%;
    right: -5%;
    background: radial-gradient(circle, rgba(168, 85, 247, 0.28) 0%, transparent 65%);
    animation: spotlightPulse 10s ease-in-out infinite alternate;
}

.bg-spotlight-left {
    width: 500px;
    height: 500px;
    top: 30%;
    left: -8%;
    background: radial-gradient(circle, rgba(99, 102, 241, 0.18) 0%, transparent 65%);
    animation: spotlightPulse 12s ease-in-out infinite alternate-reverse;
}

.bg-spotlight-right {
    width: 400px;
    height: 400px;
    bottom: 10%;
    right: 15%;
    background: radial-gradient(circle, rgba(244, 114, 182, 0.1) 0%, transparent 65%);
    animation: spotlightPulse 14s ease-in-out infinite alternate;
}

@keyframes spotlightPulse {
    0% { opacity: 0.5; transform: scale(1) translate(0, 0); }
    100% { opacity: 0.8; transform: scale(1.15) translate(20px, 10px); }
}

.aurora {
    position: absolute;
    width: 100vw;
    height: 50vh;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.25;
    animation: auroraDrift 20s ease-in-out infinite alternate;
}

.aurora-1 { top: -20%; left: 0; background: var(--primary); }
.aurora-2 { top: 40%; right: -20%; background: var(--secondary); animation-delay: -7s; }
.aurora-3 { bottom: -10%; left: 20%; background: var(--accent); opacity: 0.15; animation-delay: -14s; }

@keyframes auroraDrift {
    0% { transform: translate(0, 0) scale(1) rotate(0deg); }
    100% { transform: translate(50px, 30px) scale(1.1) rotate(3deg); }
}

.mesh-gradient {
    position: absolute;
    border-radius: 50%;
    opacity: 0.35;
    animation: meshFloat 25s ease-in-out infinite alternate;
}

.mesh-1 {
    width: 60vw; height: 60vw; max-width: 700px; max-height: 700px;
    top: -20%; left: -15%;
    background: radial-gradient(circle, var(--glow) 0%, transparent 65%);
}

.mesh-2 {
    width: 50vw; height: 50vw; max-width: 550px; max-height: 550px;
    bottom: -15%; right: -10%;
    background: radial-gradient(circle, rgba(99,102,241,0.18) 0%, transparent 65%);
    animation-delay: -10s;
}

.mesh-3 {
    width: 40vw; height: 40vw; max-width: 450px; max-height: 450px;
    top: 50%; left: 40%;
    background: radial-gradient(circle, rgba(244, 114, 182, 0.08) 0%, transparent 65%);
    animation-delay: -15s;
}

@keyframes meshFloat {
    0% { transform: translate(0, 0) scale(1); }
    100% { transform: translate(30px, 20px) scale(1.08); }
}

.grid-overlay {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.018) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.018) 1px, transparent 1px);
    background-size: 80px 80px;
    mask-image: radial-gradient(ellipse 80% 60% at 50% 30%, black 0%, transparent 70%);
    opacity: 0.6;
}

.noise-overlay {
    position: absolute;
    inset: 0;
    opacity: 0.025;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* ══════════════════════════════════════════════
   SCROLL PROGRESS
   ══════════════════════════════════════════════ */
.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    height: 3px;
    width: 100%;
    background: linear-gradient(90deg, var(--primary), var(--accent-hot), var(--accent));
    transform-origin: left;
    transform: scaleX(0);
    z-index: 9999;
    pointer-events: none;
}

/* ══════════════════════════════════════════════
   CURSOR GLOW (Desktop)
   ══════════════════════════════════════════════ */
.cursor-glow {
    position: fixed;
    width: 450px;
    height: 450px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(168,85,247,0.07) 0%, transparent 65%);
    pointer-events: none;
    z-index: 0;
    transform: translate(-50%, -50%);
    transition: opacity 0.4s ease;
    opacity: 0;
}

body.cursor-ready .cursor-glow { opacity: 1; }

/* ══════════════════════════════════════════════
   MARQUEE BAR
   ══════════════════════════════════════════════ */
.marquee-bar {
    overflow: hidden;
    background: linear-gradient(90deg, rgba(168, 85, 247, 0.08) 0%, rgba(99, 102, 241, 0.08) 100%);
    border-bottom: 1px solid rgba(168, 85, 247, 0.12);
    padding: 10px 0;
    position: relative;
    z-index: 10;
}

.marquee-bar::before,
.marquee-bar::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 80px;
    z-index: 2;
    pointer-events: none;
}

.marquee-bar::before {
    left: 0;
    background: linear-gradient(to right, var(--bg), transparent);
}

.marquee-bar::after {
    right: 0;
    background: linear-gradient(to left, var(--bg), transparent);
}

.marquee-track {
    display: flex;
    align-items: center;
    gap: 56px;
    animation: marqueeScroll 40s linear infinite;
    white-space: nowrap;
    width: max-content;
    padding: 0 28px;
}

.marquee-track span {
    font-size: 0.78rem;
    font-weight: 700;
    color: var(--text-muted);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    letter-spacing: 0.3px;
}

.marquee-track i {
    color: var(--primary-light);
    font-size: 0.72rem;
}

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

/* ══════════════════════════════════════════════
   LAYOUT
   ══════════════════════════════════════════════ */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    width: 100%;
}

.section {
    padding: 100px 0;
    position: relative;
}

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

.section-header {
    margin-bottom: 56px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.section-tag {
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 800;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--primary-light);
    background: rgba(168, 85, 247, 0.1);
    border: 1px solid rgba(168, 85, 247, 0.2);
    padding: 6px 16px;
    border-radius: var(--r-full);
    margin-bottom: 16px;
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(1.8rem, 5vw, 2.8rem);
    font-weight: 800;
    letter-spacing: -0.03em;
    line-height: 1.15;
}

.section-sub {
    color: var(--text-muted);
    font-size: 1rem;
    margin-top: 12px;
    max-width: 500px;
}

/* ══════════════════════════════════════════════
   NAVBAR
   ══════════════════════════════════════════════ */
.navbar {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(3, 3, 6, 0.8);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border);
    transition: background 0.3s, box-shadow 0.3s, border-color 0.3s;
}

.navbar.scrolled {
    background: rgba(3, 3, 6, 0.95);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
    border-color: var(--border-glow);
}

.navbar-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 14px 0;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: var(--text);
    flex-shrink: 0;
}

.brand-logo {
    width: 38px;
    height: 38px;
    border-radius: 12px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: 900;
    color: #fff;
    box-shadow: 0 4px 20px var(--glow);
    transition: transform 0.3s var(--spring), box-shadow 0.3s;
}

.brand:hover .brand-logo {
    transform: scale(1.08) rotate(-3deg);
    box-shadow: 0 8px 32px var(--glow);
}

.brand-logo.sm { width: 30px; height: 30px; font-size: 0.62rem; }

/* Viral Video brand (shared with demo nav) */
.site-brand {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: inherit;
    flex-shrink: 0;
}

.site-brand-icon {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    background: linear-gradient(145deg, #e879f9 0%, #a855f7 45%, #6366f1 100%);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 0.82rem;
    box-shadow: 0 4px 18px rgba(168, 85, 247, 0.45);
    flex-shrink: 0;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.site-brand:hover .site-brand-icon {
    transform: scale(1.06);
    box-shadow: 0 6px 22px rgba(168, 85, 247, 0.55);
}

.site-brand-wordmark {
    display: flex;
    align-items: baseline;
    gap: 5px;
    font-weight: 800;
    font-size: 1.05rem;
    letter-spacing: -0.03em;
    line-height: 1;
    white-space: nowrap;
}

.site-brand-name {
    color: var(--text);
}

.site-brand-accent {
    color: var(--primary-light);
}

.site-brand--footer .site-brand-icon {
    width: 32px;
    height: 32px;
    font-size: 0.75rem;
}

.brand-logo-img {
    height: 32px;
    width: auto;
    display: block;
    transition: transform 0.3s var(--spring), filter 0.3s;
}
.brand:hover .brand-logo-img {
    transform: scale(1.04);
    filter: drop-shadow(0 4px 14px rgba(168, 85, 247, 0.45));
}
.footer-logo {
    height: 28px;
    width: auto;
    display: block;
    opacity: 0.95;
}
.brand-text { font-weight: 800; font-size: 1.05rem; letter-spacing: -0.02em; }
.brand-accent { color: var(--primary-light); }

.nav-actions {
    display: flex;
    align-items: center;
    gap: 10px;
}

.nav-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.88rem;
    padding: 10px 16px;
    border-radius: var(--r-full);
    border: 1px solid transparent;
    transition: all 0.25s var(--ease);
}

.nav-link:hover {
    color: var(--text);
    background: rgba(255, 255, 255, 0.04);
    border-color: var(--border);
}

.nav-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-weight: 700;
    font-size: 0.88rem;
    text-decoration: none;
    padding: 10px 20px;
    border-radius: var(--r-full);
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    box-shadow: 0 4px 20px var(--glow);
    transition: all 0.3s var(--ease);
}

.nav-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 32px var(--glow);
}

/* ══════════════════════════════════════════════
   HERO SECTION
   ══════════════════════════════════════════════ */
.hero {
    padding: 48px 0 40px;
    position: relative;
    min-height: calc(100vh - 120px);
    display: flex;
    align-items: center;
}

.hero .container {
    max-width: 1280px;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1.15fr;
    gap: 48px 72px;
    align-items: center;
}

.hero-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
    gap: 24px;
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 18px;
    background: rgba(168, 85, 247, 0.1);
    border: 1px solid rgba(168, 85, 247, 0.25);
    border-radius: var(--r-full);
    color: var(--primary-light);
    font-weight: 700;
    font-size: 0.82rem;
}

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

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

.main-title {
    font-family: var(--font-display);
    font-size: clamp(2.2rem, 5.5vw, 3.5rem);
    font-weight: 800;
    line-height: 1.08;
    letter-spacing: -0.04em;
}

.title-line { display: block; }

.title-sub-line {
    display: block;
    font-size: 0.5em;
    font-weight: 600;
    color: var(--text-muted);
    letter-spacing: 0.02em;
    margin-top: 10px;
    font-family: var(--font);
}

.gradient-text {
    background: linear-gradient(135deg, var(--primary-light) 0%, var(--accent-hot) 50%, var(--accent) 100%);
    background-size: 200% auto;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: gradientFlow 6s linear infinite;
}

@keyframes gradientFlow {
    0% { background-position: 0% center; }
    100% { background-position: 200% center; }
}

.sub-title {
    font-size: clamp(1rem, 2vw, 1.15rem);
    color: var(--text-muted);
    line-height: 1.7;
    max-width: 440px;
}

.hero-cta-block {
    display: flex;
    flex-direction: column;
    gap: 8px;
    width: 100%;
}

.hero-cta-row {
    display: flex;
    flex-wrap: nowrap;
    align-items: stretch;
    gap: 10px;
    width: 100%;
    margin-top: 4px;
}

.hero-cta-row .btn-primary.btn-lg {
    flex: 1 1 220px;
    min-width: 220px;
}

.btn-hero-cta {
    flex: 1 1 auto;
    min-width: 0;
    padding: 14px 18px;
    font-size: 0.95rem;
    font-weight: 800;
    border-radius: var(--r-md);
    white-space: nowrap;
}

.hero-price-note {
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--text-muted);
    text-align: left;
}

.hero-price-note s {
    opacity: 0.55;
}

.btn-hero-demo {
    flex: 0 0 auto;
    min-width: 0;
    padding: 14px 16px;
    border-radius: var(--r-md);
    gap: 6px;
}

.btn-hero-demo-text {
    font-weight: 700;
}

.hero-cta-row .btn-ghost {
    flex: 0 0 auto;
    min-width: 150px;
}

.trust-strip {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px;
    width: 100%;
}

.trust-pill {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 14px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border);
    border-radius: var(--r-full);
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--text-muted);
    transition: all 0.25s var(--ease);
}

.trust-pill:hover {
    background: rgba(255, 255, 255, 0.06);
    border-color: var(--border-glow);
    color: var(--text);
}

.trust-pill i {
    color: var(--accent);
    font-size: 0.72rem;
}

/* ══════════════════════════════════════════════
   HERO MEDIA (Video Area)
   ══════════════════════════════════════════════ */
.hero-media {
    position: relative;
    width: 100%;
}

.hero-video-stack {
    display: flex;
    flex-direction: column;
    gap: 20px;
    width: 100%;
}

.video-container {
    position: relative;
    padding: 4px;
    border-radius: var(--r-xl);
    background: linear-gradient(135deg, var(--primary), var(--secondary), var(--accent));
    background-size: 300% 300%;
    animation: borderGlow 5s ease infinite;
    box-shadow:
        0 32px 80px rgba(0, 0, 0, 0.5),
        0 0 60px rgba(168, 85, 247, 0.2);
}

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

.video-container-inner {
    background: var(--bg-card);
    border-radius: calc(var(--r-xl) - 4px);
    padding: 14px;
    overflow: hidden;
}

.video-wrapper {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 10;
    border-radius: var(--r-lg);
    overflow: hidden;
    background: #000;
}

.video-wrapper video {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
    background: #000;
}

.video-play-overlay {
    position: absolute;
    inset: 0;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 16px;
    border: none;
    cursor: pointer;
    background: linear-gradient(180deg, rgba(3, 3, 6, 0.75) 0%, rgba(3, 3, 6, 0.9) 100%);
    color: #fff;
    transition: background 0.3s;
}

.video-play-overlay:hover {
    background: linear-gradient(180deg, rgba(3, 3, 6, 0.6) 0%, rgba(3, 3, 6, 0.8) 100%);
}

.video-play-icon {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    padding-left: 6px;
    box-shadow:
        0 0 0 10px rgba(168, 85, 247, 0.15),
        0 0 0 20px rgba(168, 85, 247, 0.08),
        0 16px 48px rgba(168, 85, 247, 0.4);
    transition: all 0.35s var(--spring);
}

.video-play-overlay:hover .video-play-icon {
    transform: scale(1.1);
    box-shadow:
        0 0 0 14px rgba(168, 85, 247, 0.2),
        0 0 0 28px rgba(168, 85, 247, 0.1),
        0 20px 56px rgba(168, 85, 247, 0.5);
}

.video-play-text {
    font-size: 0.85rem;
    font-weight: 800;
    letter-spacing: 3px;
    text-transform: uppercase;
    opacity: 0.9;
}

.video-wrapper.is-playing .video-play-overlay { display: none; }

/* Hero Social Proof Bar */
.hero-social-proof {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    width: 100%;
    padding: 16px 24px;
    background: rgba(14, 14, 24, 0.8);
    border: 1px solid rgba(168, 85, 247, 0.18);
    border-radius: var(--r-lg);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.3);
}

.hero-social-proof-icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(34, 211, 165, 0.12);
    border: 1px solid rgba(34, 211, 165, 0.3);
    color: var(--accent);
    font-size: 1.15rem;
    flex-shrink: 0;
}

.hero-social-proof-text {
    text-align: left;
    line-height: 1.25;
}

.hero-social-proof-text strong {
    display: block;
    font-size: 1.25rem;
    font-weight: 800;
    color: #fff;
    letter-spacing: -0.02em;
}

.hero-social-proof-text span {
    display: block;
    margin-top: 2px;
    font-size: 0.82rem;
    color: var(--text-muted);
    font-weight: 600;
}

.hero-social-proof-stars {
    display: flex;
    align-items: center;
    gap: 4px;
    margin-left: auto;
    color: var(--gold);
    font-size: 0.82rem;
}

/* ══════════════════════════════════════════════
   HERO BOTTOM CTA
   ══════════════════════════════════════════════ */
.hero-bottom-wrap {
    margin-top: 56px;
    padding-top: 48px;
    border-top: 1px solid rgba(168, 85, 247, 0.12);
    width: 100%;
    display: flex;
    justify-content: center;
}

.hero-bottom-cta {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    width: 100%;
    max-width: 480px;
    text-align: center;
}

.hero-bottom-cta .timer-container,
.hero-bottom-cta .btn,
.hero-bottom-cta .guarantee {
    width: 100%;
    max-width: 440px;
}

/* ══════════════════════════════════════════════
   BUTTONS
   ══════════════════════════════════════════════ */
.btn {
    display: inline-flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 16px 32px;
    font-size: 1rem;
    font-weight: 700;
    text-decoration: none;
    text-align: center;
    border-radius: var(--r-full);
    border: none;
    cursor: pointer;
    transition: all 0.3s var(--ease);
    position: relative;
    overflow: hidden;
}

.btn-lg {
    flex-direction: column;
    gap: 4px;
    padding: 18px 36px;
    font-size: 1.08rem;
}

.btn-lg small {
    font-size: 0.75rem;
    font-weight: 600;
    opacity: 0.85;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: #fff;
    box-shadow: 0 8px 32px var(--glow);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 16px 48px rgba(168, 85, 247, 0.4);
}

.btn-primary s { opacity: 0.6; }

.btn-secondary {
    background: var(--bg-card);
    color: var(--text);
    border: 1px solid var(--border);
}

.btn-secondary:hover {
    background: var(--bg-card-hover);
    border-color: var(--border-glow);
    transform: translateY(-2px);
}

.btn-ghost {
    background: transparent;
    color: var(--text);
    border: 1px solid var(--border);
    flex-direction: row;
    gap: 10px;
    width: auto;
}

.btn-ghost:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: var(--border-glow);
    transform: translateY(-2px);
}

.shimmer::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 60%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.15), transparent);
    animation: shimmerSweep 3.5s ease-in-out infinite;
}

@keyframes shimmerSweep {
    0% { left: -100%; }
    50%, 100% { left: 150%; }
}

.pulse-glow {
    animation: pulseGlow 3s ease-in-out infinite;
}

@keyframes pulseGlow {
    0%, 100% { box-shadow: 0 8px 32px var(--glow); }
    50% { box-shadow: 0 8px 48px rgba(168, 85, 247, 0.45), 0 0 80px rgba(168, 85, 247, 0.15); }
}

.guarantee {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    color: var(--text-muted);
    font-size: 0.85rem;
    font-weight: 600;
    text-align: center;
}

.guarantee i { color: var(--accent); }

/* ══════════════════════════════════════════════
   TIMER
   ══════════════════════════════════════════════ */
.timer-container {
    background: var(--bg-card);
    border: 1px solid var(--border);
    padding: 20px 32px;
    border-radius: var(--r-lg);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.3);
}

.timer-premium {
    border-color: rgba(244, 114, 182, 0.3);
    background: rgba(14, 14, 24, 0.9);
    box-shadow:
        0 12px 40px rgba(0, 0, 0, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.03);
}

.timer-label {
    font-size: 0.78rem;
    color: var(--accent-hot);
    font-weight: 800;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.countdown {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.time-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
}

.time-box span:first-child {
    display: block;
    background: var(--bg-elevated);
    border: 1px solid var(--border);
    padding: 12px 14px;
    border-radius: var(--r-md);
    min-width: 60px;
    font-size: 1.7rem;
    font-weight: 800;
    font-variant-numeric: tabular-nums;
    transition: transform 0.25s var(--spring), color 0.25s;
}

.time-box span.tick {
    transform: scale(1.1);
    color: var(--primary-light);
}

.time-box .label {
    font-size: 0.65rem;
    color: var(--text-muted);
    font-weight: 700;
    letter-spacing: 1.5px;
}

.colon {
    color: var(--text-muted);
    font-size: 1.5rem;
    font-weight: 800;
    padding-bottom: 20px;
}

/* ══════════════════════════════════════════════
   STATS
   ══════════════════════════════════════════════ */
.stats-section {
    padding: 0 0 80px;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
    width: 100%;
}

.stat-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--r-lg);
    padding: 28px 20px;
    text-align: center;
    transition: all 0.35s var(--ease);
    min-width: 0;
    box-sizing: border-box;
}

.stat-card:hover {
    transform: translateY(-6px);
    border-color: var(--border-glow);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.35), 0 0 24px var(--glow);
}

.stat-num {
    display: block;
    font-family: var(--font-display);
    font-size: clamp(1.8rem, 4vw, 2.4rem);
    font-weight: 800;
    background: linear-gradient(135deg, var(--primary-light), var(--accent));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1.1;
}

.stat-label {
    font-size: 0.82rem;
    color: var(--text-muted);
    font-weight: 600;
    margin-top: 6px;
    display: block;
    line-height: 1.35;
    word-break: break-word;
}

/* ══════════════════════════════════════════════
   STEPS
   ══════════════════════════════════════════════ */
.steps-grid {
    display: grid;
    grid-template-columns: 1fr auto 1fr auto 1fr;
    gap: 16px;
    align-items: center;
    max-width: 1000px;
    margin: 0 auto;
}

.step-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--r-lg);
    padding: 32px 24px;
    text-align: center;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: all 0.35s var(--ease);
}

.step-card:hover {
    transform: translateY(-6px);
    border-color: var(--border-glow);
    box-shadow: 0 20px 48px rgba(0, 0, 0, 0.35), 0 0 24px var(--glow);
}

.step-connector {
    width: 40px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    opacity: 0.35;
    border-radius: 3px;
}

.step-num {
    font-family: var(--font-display);
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 2px;
    color: var(--primary-light);
    margin-bottom: 14px;
}

.step-icon {
    width: 56px;
    height: 56px;
    margin: 0 auto 16px;
    border-radius: 16px;
    background: linear-gradient(135deg, rgba(168, 85, 247, 0.15), rgba(99, 102, 241, 0.15));
    border: 1px solid rgba(168, 85, 247, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    color: var(--primary-light);
}

.step-card h3 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.step-card p {
    font-size: 0.85rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin: 0;
}

/* ══════════════════════════════════════════════
   FEATURES
   ══════════════════════════════════════════════ */
.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

.feature-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--r-lg);
    padding: 30px 22px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    height: 100%;
    transition: all 0.35s var(--ease);
}

.feature-card:hover {
    transform: translateY(-6px);
    border-color: var(--border-glow);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.35), 0 0 24px var(--glow);
}

.feature-icon-wrap {
    width: 54px;
    height: 54px;
    margin: 0 auto 16px;
    border-radius: 14px;
    background: linear-gradient(135deg, rgba(168, 85, 247, 0.12), rgba(99, 102, 241, 0.12));
    border: 1px solid rgba(168, 85, 247, 0.18);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    color: var(--primary-light);
}

.feature-card h3 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.feature-card p {
    font-size: 0.85rem;
    color: var(--text-muted);
    line-height: 1.6;
}

/* ══════════════════════════════════════════════
   PRICING
   ══════════════════════════════════════════════ */
.pricing-section { padding: 100px 0; }

.pricing-card {
    max-width: 440px;
    margin: 0 auto;
    background: var(--bg-card);
    border: 1px solid var(--border-glow);
    border-radius: var(--r-xl);
    padding: 40px 32px;
    position: relative;
    overflow: hidden;
    box-shadow:
        0 28px 72px rgba(0, 0, 0, 0.45),
        0 0 60px var(--glow);
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.pricing-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(168, 85, 247, 0.06), transparent 60%);
    pointer-events: none;
}

.pricing-ribbon {
    position: absolute;
    top: 20px;
    right: -30px;
    background: linear-gradient(135deg, var(--accent-hot), var(--primary));
    color: #fff;
    font-size: 0.68rem;
    font-weight: 800;
    letter-spacing: 1px;
    padding: 6px 40px;
    transform: rotate(35deg);
}

.pricing-header {
    width: 100%;
    text-align: center;
}

.pricing-header h3 {
    font-family: var(--font-display);
    font-size: 1.4rem;
    font-weight: 800;
    margin-bottom: 8px;
}

.pricing-header p {
    font-size: 0.88rem;
    color: var(--text-muted);
    margin-bottom: 28px;
}

.pricing-price {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 10px 12px;
    margin-bottom: 28px;
    width: 100%;
}

.price-old {
    font-size: 1.15rem;
    color: var(--text-muted);
    text-decoration: line-through;
}

.price-new {
    font-family: var(--font-display);
    font-size: 3.2rem;
    font-weight: 800;
    line-height: 1;
    background: linear-gradient(135deg, var(--primary-light), var(--accent));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.price-save {
    display: inline-flex;
    align-items: center;
    background: rgba(34, 211, 165, 0.15);
    color: var(--accent);
    font-size: 0.78rem;
    font-weight: 800;
    padding: 5px 12px;
    border-radius: var(--r-full);
}

.pricing-features {
    list-style: none;
    text-align: left;
    margin-bottom: 32px;
    width: 100%;
}

.pricing-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 0;
    font-size: 0.92rem;
    color: var(--text-muted);
    border-bottom: 1px solid var(--border);
}

.pricing-features li:last-child { border-bottom: none; }
.pricing-features i { color: var(--accent); font-size: 0.85rem; flex-shrink: 0; }

.pricing-card .btn {
    width: 100%;
    max-width: 100%;
}

.pricing-note {
    margin-top: 16px;
    font-size: 0.82rem;
    color: var(--text-muted);
}

.pricing-note i { color: var(--accent); margin-right: 6px; }

/* ══════════════════════════════════════════════
   TESTIMONIALS
   ══════════════════════════════════════════════ */
.testimonials-section {
    padding: 80px 0;
    overflow: hidden;
}

.testimonials-marquee {
    overflow: hidden;
    mask-image: linear-gradient(90deg, transparent, black 10%, black 90%, transparent);
}

.testimonials-track {
    display: flex;
    gap: 20px;
    animation: testimonialScroll 40s linear infinite;
    width: max-content;
}

.testimonials-track:hover { animation-play-state: paused; }

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

.testimonial-card {
    flex-shrink: 0;
    width: 300px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--r-lg);
    padding: 24px;
    text-align: left;
    transition: all 0.3s var(--ease);
}

.testimonial-card:hover {
    border-color: var(--border-glow);
}

.testimonial-card .stars {
    color: var(--gold);
    font-size: 0.9rem;
    margin-bottom: 12px;
}

.testimonial-card p {
    font-size: 0.88rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 14px;
    font-style: italic;
}

.testimonial-card span {
    font-size: 0.78rem;
    font-weight: 700;
    color: var(--text);
}

/* ══════════════════════════════════════════════
   FAQ
   ══════════════════════════════════════════════ */
.faq-section { padding: 100px 0; }

.faq-list {
    max-width: 680px;
    margin: 0 auto;
    text-align: left;
}

.faq-item {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--r-lg);
    margin-bottom: 12px;
    overflow: hidden;
    transition: border-color 0.3s;
}

.faq-item[open] { border-color: var(--border-glow); }

.faq-item summary {
    padding: 18px 24px;
    font-weight: 700;
    font-size: 0.95rem;
    cursor: pointer;
    list-style: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: color 0.25s;
}

.faq-item summary::-webkit-details-marker { display: none; }

.faq-item summary::after {
    content: '+';
    font-size: 1.3rem;
    color: var(--primary-light);
    transition: transform 0.25s;
}

.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item summary:hover { color: var(--primary-light); }

.faq-item p {
    padding: 0 24px 18px;
    font-size: 0.88rem;
    color: var(--text-muted);
    line-height: 1.7;
}

/* ══════════════════════════════════════════════
   BOTTOM CTA
   ══════════════════════════════════════════════ */
.bottom-cta {
    padding: 100px 0;
    border-top: 1px solid var(--border);
    background: linear-gradient(180deg, transparent 0%, rgba(168, 85, 247, 0.06) 100%);
}

.bottom-cta-inner {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--r-xl);
    padding: 56px 40px;
    box-shadow: 0 24px 64px rgba(0, 0, 0, 0.4);
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 680px;
    margin: 0 auto;
}

.bottom-cta h2 {
    font-family: var(--font-display);
    font-size: clamp(1.6rem, 4vw, 2.2rem);
    font-weight: 800;
    margin-bottom: 12px;
}

.bottom-cta p {
    color: var(--text-muted);
    font-size: 1rem;
    margin-bottom: 24px;
}

.bottom-cta-inner .btn {
    width: 100%;
    max-width: 440px;
}

/* ══════════════════════════════════════════════
   DEMO PAGE
   ══════════════════════════════════════════════ */
.demo-page {
    padding: 48px 0 80px;
}

.demo-page .container {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.demo-page .main-title,
.demo-page .sub-title {
    max-width: 680px;
    margin-left: auto;
    margin-right: auto;
}

.demo-page .sub-title { text-align: center; }

.demo-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
    width: 100%;
}

.demo-cta {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    margin: 12px auto 40px;
    width: 100%;
    max-width: 480px;
}

.demo-cta .btn,
.demo-cta .timer-container {
    width: 100%;
    max-width: 440px;
}

.btn-demo-buy {
    flex-direction: row;
    flex-wrap: nowrap;
    gap: 8px;
    padding: 14px 20px;
    font-size: 0.95rem;
    border-radius: var(--r-md);
}

.btn-demo-off {
    font-size: 0.78rem;
    font-weight: 600;
    opacity: 0.85;
}

.demo-cta-bottom { margin-top: 48px; }

.demo-unlock-text {
    font-size: 1.05rem;
    color: var(--text-muted);
    max-width: 500px;
    text-align: center;
    line-height: 1.6;
}

.section-title-sm {
    font-size: clamp(1.3rem, 3.5vw, 1.6rem);
}

.demo-gallery-header {
    margin-bottom: 32px;
    width: 100%;
}

.demo-card {
    position: relative;
    padding: 4px;
    border-radius: var(--r-lg);
    background: linear-gradient(135deg, rgba(168, 85, 247, 0.3), rgba(99, 102, 241, 0.1));
    transition: all 0.35s var(--ease);
}

.demo-card:hover {
    transform: translateY(-6px) scale(1.02);
    box-shadow: 0 20px 48px rgba(0, 0, 0, 0.4), 0 0 24px var(--glow);
}

.demo-card-inner {
    background: var(--bg-card);
    border-radius: calc(var(--r-lg) - 4px);
    padding: 8px;
    overflow: hidden;
}

.demo-tag {
    position: absolute;
    top: 14px;
    left: 14px;
    z-index: 3;
    padding: 4px 10px;
    font-size: 0.65rem;
    font-weight: 800;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #fff;
    border-radius: var(--r-full);
    background: linear-gradient(135deg, var(--primary), var(--secondary));
}

.demo-media-wrapper {
    position: relative;
    padding-bottom: 177.77%;
    height: 0;
    overflow: hidden;
    border-radius: var(--r-md);
    background: #000;
}

.demo-media-wrapper img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s var(--ease);
}

.demo-card:hover .demo-media-wrapper img { transform: scale(1.05); }

/* ══════════════════════════════════════════════
   CONTENT CARDS (Checkout/Success)
   ══════════════════════════════════════════════ */
.page-center {
    padding: 120px 0 80px;
    min-height: 100vh;
    min-height: 100dvh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.page-center .container {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
}

.content-card {
    margin: 36px auto;
    padding: 40px 28px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--r-xl);
    box-shadow: 0 20px 56px rgba(0, 0, 0, 0.4);
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
}

.content-card .btn {
    width: 100%;
    max-width: 440px;
}

/* ══════════════════════════════════════════════
   STICKY BAR
   ══════════════════════════════════════════════ */
.sticky-buy-bar {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 90;
    background: rgba(3, 3, 6, 0.97);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-top: 1px solid var(--border-glow);
    display: none;
    box-shadow: 0 -8px 32px rgba(0, 0, 0, 0.5);
    padding: 0 0 env(safe-area-inset-bottom, 0px);
}

.sticky-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    padding: 12px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.sticky-info {
    text-align: left;
    line-height: 1.25;
}

.sticky-info strong {
    font-size: 1.1rem;
}

.sticky-info span {
    font-size: 0.82rem;
    color: var(--text-muted);
}

.sticky-buy-bar .btn {
    max-width: 180px;
    min-width: 130px;
    padding: 12px 24px;
    font-size: 0.92rem;
    border-radius: var(--r-lg);
    width: auto;
}

/* ══════════════════════════════════════════════
   FOOTER
   ══════════════════════════════════════════════ */
footer {
    padding: 48px 0;
    text-align: center;
    border-top: 1px solid var(--border);
    background: var(--bg-elevated);
}

.footer-brand {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-weight: 800;
    margin-bottom: 14px;
    color: var(--text);
}

footer p {
    color: var(--text-muted);
    font-size: 0.85rem;
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px 24px;
    margin-top: 14px;
}

.footer-links a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.85rem;
    transition: color 0.25s;
}

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

/* ══════════════════════════════════════════════
   UTILITIES
   ══════════════════════════════════════════════ */
.max-w-500 { max-width: 500px; }
.max-w-700 { max-width: 700px; }
.mt-20 { margin-top: 20px; }
.mb-20 { margin-bottom: 20px; }
.mb-30 { margin-bottom: 30px; }
.mx-auto { margin-left: auto; margin-right: auto; }
.text-muted { color: var(--text-muted); }
.hide-mobile { display: inline-flex; }

.ghost-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 20px;
    border-radius: var(--r-full);
    background: var(--bg-card);
    border: 1px solid var(--border);
    color: var(--text-muted);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.25s var(--ease);
}

.ghost-link:hover {
    color: var(--text);
    border-color: var(--border-glow);
    transform: translateY(-2px);
}

/* ══════════════════════════════════════════════
   ANIMATIONS
   ══════════════════════════════════════════════ */
.reveal {
    opacity: 0;
    transform: translateY(32px);
    transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

.hero-load {
    opacity: 0;
    transform: translateY(26px);
    animation: heroIn 0.8s var(--ease) forwards;
}

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

.hero-content > .hero-load:nth-child(1) { animation-delay: 0.05s; }
.hero-content > .hero-load:nth-child(2) { animation-delay: 0.12s; }
.hero-content > .hero-load:nth-child(3) { animation-delay: 0.2s; }
.hero-content > .hero-load:nth-child(4) { animation-delay: 0.28s; }
.hero-content > .hero-load:nth-child(5) { animation-delay: 0.36s; }
.hero-media.hero-load { animation-delay: 0.2s; }
.hero-bottom-wrap.hero-load { animation-delay: 0.5s; }

/* ══════════════════════════════════════════════
   REDUCED MOTION
   ══════════════════════════════════════════════ */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    .reveal, .hero-load { opacity: 1; transform: none; animation: none; }
    .marquee-track, .testimonials-track { animation: none; }
    .aurora, .mesh-gradient, .bg-spotlight { animation: none; }
}

/* ══════════════════════════════════════════════
   RESPONSIVE - Tablets
   ══════════════════════════════════════════════ */
@media (max-width: 1024px) {
    .hero-grid {
        grid-template-columns: 1fr;
        gap: 28px;
        text-align: center;
    }

    .hero-media {
        order: -1;
        max-width: 520px;
        margin: 0 auto;
    }

    .hero-content {
        align-items: center;
        text-align: center;
        max-width: 560px;
        margin: 0 auto;
        gap: 16px;
    }

    .hero-cta-block,
    .hero-price-note {
        align-items: center;
        text-align: center;
    }

    .hero-cta-row {
        justify-content: center;
        max-width: 420px;
        margin-left: auto;
        margin-right: auto;
    }

    .trust-strip {
        justify-content: center;
        max-width: 420px;
        margin: 0 auto;
    }

    .hero-social-proof-stars {
        margin-left: 0;
    }
}

@media (max-width: 900px) {
    .bg-spotlight,
    .bg-spotlight-hero,
    .bg-spotlight-left,
    .bg-spotlight-right {
        animation: none;
        opacity: 0.3;
    }

    .steps-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .step-connector { display: none; }

    .stats-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 12px;
    }
    .features-grid { grid-template-columns: repeat(2, 1fr); }
    .demo-grid { grid-template-columns: repeat(2, 1fr); }

    .hide-mobile { display: none; }
}

/* ══════════════════════════════════════════════
   RESPONSIVE - Mobile
   ══════════════════════════════════════════════ */
@media (max-width: 600px) {
    html, body {
        overflow-x: hidden;
        max-width: 100%;
    }

    .container {
        padding: 0 14px;
        width: min(100%, 100vw);
        box-sizing: border-box;
    }

    .section {
        padding: 44px 0;
    }

    .section-header {
        margin-bottom: 24px;
        padding: 0 4px;
    }

    .section-title {
        font-size: clamp(1.32rem, 5.8vw, 1.72rem);
    }

    .section-sub {
        font-size: 0.84rem;
    }

    .stats-section {
        padding: 0 0 36px;
    }

    .stats-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 8px;
    }

    .stat-card {
        padding: 14px 8px;
        border-radius: var(--r-md);
    }

    .stat-card:hover {
        transform: none;
    }

    .stat-num {
        font-size: clamp(1.15rem, 4.8vw, 1.45rem);
    }

    .stat-label {
        font-size: 0.65rem;
        margin-top: 4px;
    }

    .steps-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 8px;
        width: 100%;
    }

    .step-card {
        padding: 12px 6px;
        border-radius: var(--r-md);
        min-width: 0;
    }

    .step-card:hover {
        transform: none;
    }

    .step-num {
        display: none;
    }

    .step-icon {
        width: 34px;
        height: 34px;
        margin: 0 auto 6px;
        font-size: 0.9rem;
        border-radius: 10px;
    }

    .step-card h3 {
        font-size: 0.72rem;
        margin-bottom: 4px;
        line-height: 1.25;
    }

    .step-card p {
        font-size: 0.62rem;
        line-height: 1.35;
        display: -webkit-box;
        -webkit-line-clamp: 3;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }

    .features-grid {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .feature-card {
        padding: 18px 14px;
        text-align: left;
    }

    .feature-card:hover {
        transform: none;
    }

    .feature-icon-wrap {
        width: 42px;
        height: 42px;
        font-size: 1rem;
    }

    .hero-grid {
        gap: 18px;
    }

    .hero-media {
        order: -1;
    }

    .background-effects .aurora {
        opacity: 0.35;
        animation-duration: 18s;
    }

    .mesh-gradient,
    .noise-overlay {
        opacity: 0.5;
    }

    .marquee-bar {
        font-size: 0.72rem;
    }

    .navbar-inner {
        padding: 10px 0;
        gap: 8px;
    }

    .brand-logo {
        width: 34px;
        height: 34px;
        font-size: 0.68rem;
    }

    .brand-text {
        font-size: 0.95rem;
    }

    .nav-actions {
        gap: 6px;
    }

    .nav-link {
        padding: 8px 10px;
        font-size: 0.8rem;
    }

    .nav-cta {
        padding: 8px 12px;
        font-size: 0.78rem;
        white-space: nowrap;
    }

    .hero {
        padding: 20px 0 28px;
        min-height: auto;
    }

    .hero-content {
        gap: 12px;
        width: 100%;
    }

    .badge {
        font-size: 0.68rem;
        padding: 5px 10px;
        max-width: 100%;
        text-align: center;
        justify-content: center;
    }

    .section { padding: 56px 0; }

    .main-title {
        font-size: clamp(1.42rem, 6.5vw, 1.85rem);
        line-height: 1.1;
    }

    .title-sub-line {
        margin-top: 4px;
        font-size: 0.46em;
    }

    .sub-title {
        font-size: 0.84rem;
        line-height: 1.5;
        max-width: none;
        display: -webkit-box;
        -webkit-line-clamp: 3;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }

    .gradient-text {
        animation: none;
        background-size: 100% auto;
    }

    .hero-cta-block {
        gap: 6px;
        width: 100%;
    }

    .hero-cta-row {
        flex-direction: row;
        align-items: stretch;
        gap: 8px;
        width: 100%;
        max-width: none;
        margin-top: 0;
    }

    .hero-cta-row .btn,
    .hero-cta-row .btn-ghost,
    .btn-hero-cta,
    .btn-hero-demo {
        width: auto;
        max-width: none;
        flex: none;
        min-width: 0;
    }

    .btn-hero-cta {
        flex: 1 1 auto;
        padding: 11px 12px;
        font-size: 0.82rem;
        border-radius: 12px;
    }

    .btn-hero-demo {
        flex: 0 0 auto;
        padding: 11px 12px;
        font-size: 0.8rem;
        border-radius: 12px;
    }

    .hero-price-note {
        font-size: 0.72rem;
        text-align: center;
    }

    .trust-strip {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 6px;
        width: 100%;
        max-width: none;
    }

    .trust-pill {
        justify-content: center;
        padding: 6px 8px;
        font-size: 0.68rem;
        width: 100%;
        box-sizing: border-box;
    }

    .hero-media {
        max-width: 100%;
        margin-top: 0;
    }

    .hero-video-stack {
        gap: 10px;
    }

    .video-container-inner {
        padding: 8px;
    }

    .video-container {
        animation: none;
        box-shadow: 0 16px 40px rgba(0, 0, 0, 0.45);
    }

    .hero-bottom-wrap {
        display: none;
    }

    .pulse-glow {
        animation: none;
    }

    .shimmer::after {
        display: none;
    }

    .hero-bottom-cta,
    .demo-cta {
        max-width: 100%;
    }

    .hero-bottom-cta .btn,
    .demo-cta .btn {
        max-width: 100%;
        padding: 12px 16px;
        font-size: 0.88rem;
        border-radius: 12px;
    }

    .btn-demo-buy {
        font-size: 0.86rem;
        padding: 11px 14px;
    }

    .btn-demo-off {
        font-size: 0.72rem;
    }

    .btn {
        padding: 13px 18px;
        font-size: 0.9rem;
    }

    .btn-lg {
        flex-direction: row;
        padding: 13px 18px;
        font-size: 0.92rem;
        gap: 8px;
    }

    .video-wrapper {
        aspect-ratio: 16 / 9;
    }

    .video-play-icon {
        width: 56px;
        height: 56px;
        font-size: 1.2rem;
    }

    .hero-social-proof {
        flex-wrap: nowrap;
        gap: 8px;
        padding: 10px 12px;
        border-radius: var(--r-md);
    }

    .hero-social-proof-icon {
        width: 34px;
        height: 34px;
        font-size: 0.85rem;
        flex-shrink: 0;
    }

    .hero-social-proof-text {
        min-width: 0;
        text-align: left;
    }

    .hero-social-proof-text strong {
        font-size: 0.92rem;
    }

    .hero-social-proof-text span {
        font-size: 0.68rem;
        display: block;
        line-height: 1.3;
    }

    .hero-social-proof-stars {
        display: none;
    }

    .video-play-icon {
        width: 52px;
        height: 52px;
        font-size: 1.05rem;
        padding-left: 4px;
        box-shadow:
            0 0 0 6px rgba(168, 85, 247, 0.12),
            0 10px 28px rgba(168, 85, 247, 0.35);
    }

    .video-play-text {
        font-size: 0.68rem;
        letter-spacing: 1.5px;
    }

    .stats-grid { gap: 8px; }
    .stat-card { padding: 14px 8px; }

    .features-grid { gap: 10px; }
    .feature-card { padding: 18px 14px; }

    .pricing-card { padding: 28px 18px; }
    .price-new { font-size: 2.2rem; }

    .testimonial-card {
        padding: 20px 16px;
    }

    .faq-item {
        padding: 16px 14px;
    }

    .bottom-cta-inner {
        padding: 28px 18px;
    }

    .bottom-cta h2 {
        font-size: 1.35rem;
    }

    .demo-page { padding: 28px 0 120px; }
    .demo-grid { gap: 12px; }
    .demo-card { content-visibility: auto; contain-intrinsic-size: 260px; }

    .timer-container {
        padding: 14px 18px;
    }

    .time-box span:first-child {
        min-width: 44px;
        font-size: 1.2rem;
        padding: 8px;
    }

    .sticky-buy-bar { display: block; }
    footer { padding-bottom: 80px; }

    .page-center { padding: 80px 0 50px; }

    body:not(.checkout-page) .page-center {
        align-items: flex-start;
        padding-top: 72px;
    }
    .content-card { padding: 28px 18px; }

    .cursor-glow { display: none; }

    .aurora { filter: blur(70px); opacity: 0.15; }

    .bottom-cta-inner { padding: 36px 22px; }

    .marquee-track span { font-size: 0.72rem; }

    .guarantee { font-size: 0.78rem; }
}

@media (max-width: 420px) {
    .container { padding: 0 12px; }

    .steps-grid {
        gap: 6px;
    }

    .step-card {
        padding: 10px 4px;
    }

    .step-card p {
        -webkit-line-clamp: 2;
    }

    .stat-num {
        font-size: 1.1rem;
    }

    .stat-label {
        font-size: 0.6rem;
    }

    .nav-link-text {
        display: none;
    }

    .nav-link-icon {
        padding: 8px 10px;
    }

    .nav-link i {
        margin: 0;
    }

    .nav-cta {
        padding: 8px 10px;
        font-size: 0.74rem;
    }

    .brand-text {
        font-size: 0.88rem;
    }

    .main-title {
        font-size: 1.38rem;
    }

    .btn-hero-demo-text {
        display: none;
    }

    .btn-hero-demo {
        padding: 11px 13px;
    }

    .features-grid { grid-template-columns: 1fr; }
    .demo-grid { gap: 10px; }
    .stats-grid { gap: 10px; }
}

/* ══════════════════════════════════════════════
   MOBILE — light background + working animations
   ══════════════════════════════════════════════ */
@media (max-width: 768px) {
    .aurora,
    .mesh-gradient,
    .bg-spotlight,
    .bg-spotlight-hero,
    .bg-spotlight-left,
    .bg-spotlight-right,
    .noise-overlay,
    .cursor-glow {
        display: none !important;
    }

    .background-effects {
        background: linear-gradient(180deg, #08080f 0%, var(--bg) 100%);
    }

    .gradient-text {
        animation: gradientFlow 10s linear infinite;
    }

    .badge-pulse {
        animation: badgePulse 2.5s ease-in-out infinite;
    }

    .video-container {
        animation: none;
        box-shadow: 0 12px 32px rgba(0, 0, 0, 0.35);
    }

    .marquee-track {
        animation: marqueeScroll 45s linear infinite;
    }

    .testimonials-track {
        animation: testimonialScroll 55s linear infinite;
    }

    .hero-load {
        animation-duration: 0.55s;
    }

    .reveal {
        opacity: 0;
        transform: translateY(18px);
        transition: opacity 0.45s var(--ease), transform 0.45s var(--ease);
    }

    .reveal.visible {
        opacity: 1;
        transform: translateY(0);
    }

    .stat-card:hover,
    .step-card:hover,
    .feature-card:hover,
    .testimonial-card:hover {
        transform: none;
    }

    .shimmer::after {
        animation-duration: 4s;
    }
}
