/* ============================================
   VIBE CODING — GRUPO GARCIA
   Premium Landing Page Styles
   Palette: Deep Navy · Neon Blue · Gold
   ============================================ */

:root {
    --bg-0: #010b18;
    --bg-1: #030f20;
    --bg-2: #061526;
    --bg-card: rgba(6, 20, 40, 0.75);
    --bg-glass: rgba(8, 28, 58, 0.60);

    --accent-blue: #00c8ff;
    --accent-blue-dim: rgba(0, 200, 255, 0.15);
    --accent-blue-glow: rgba(0, 200, 255, 0.35);
    --accent-gold: #f0b429;
    --accent-gold-dim: rgba(240, 180, 41, 0.15);
    --accent-gold-glow: rgba(240, 180, 41, 0.35);
    --accent-green: #00e676;

    --text-primary: #f0f4ff;
    --text-secondary: #7a92b5;
    --text-muted: #3d5170;
    --border: rgba(0, 200, 255, 0.12);
    --border-gold: rgba(240, 180, 41, 0.20);

    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-xl: 36px;

    --shadow-blue: 0 0 40px rgba(0, 200, 255, 0.18);
    --shadow-gold: 0 0 40px rgba(240, 180, 41, 0.18);
    --shadow-card: 0 8px 40px rgba(0, 0, 0, 0.5);

    --timing: cubic-bezier(0.4, 0, 0.2, 1);
    --spring: cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* ============================================
   RESET & BASE
   ============================================ */

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

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background: var(--bg-0);
    color: var(--text-primary);
    line-height: 1.65;
    font-size: 17px;
    overflow-x: hidden;
}

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

a {
    color: var(--accent-blue);
    text-decoration: none;
    transition: opacity 0.2s;
}
a:hover { opacity: 0.8; }

button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* ============================================
   SCROLL PROGRESS BAR
   ============================================ */

.scroll-progress {
    position: fixed;
    top: 0; left: 0;
    height: 3px;
    width: 0%;
    background: linear-gradient(90deg, var(--accent-blue), var(--accent-gold));
    z-index: 10000;
    transition: width 0.1s linear;
    box-shadow: 0 0 10px var(--accent-blue-glow);
}

/* ============================================
   CURSOR GLOW
   ============================================ */

.cursor-glow {
    position: fixed;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(0, 200, 255, 0.07) 0%, transparent 70%);
    pointer-events: none;
    transform: translate(-50%, -50%);
    z-index: 9998;
    transition: opacity 0.3s;
    opacity: 0;
}

@media (hover: hover) and (pointer: fine) {
    .cursor-glow { opacity: 1; }
}

/* ============================================
   STICKY NAV
   ============================================ */

.sticky-nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 9000;
    padding: 14px 0;
    transform: translateY(-100%);
    transition: transform 0.4s var(--timing), background 0.4s;
    background: rgba(1, 11, 24, 0.9);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border);
}

.sticky-nav.visible {
    transform: translateY(0);
}

.nav-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 18px;
    font-weight: 700;
    letter-spacing: 0.08em;
}
.logo-grupo { color: var(--text-primary); }
.logo-garcia { color: var(--accent-blue); }

.nav-cta {
    padding: 10px 24px;
    border-radius: 50px;
    background: linear-gradient(135deg, var(--accent-blue), #0080ff);
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.03em;
    transition: transform 0.2s var(--spring), box-shadow 0.2s;
}
.nav-cta:hover {
    box-shadow: var(--shadow-blue);
}

/* ============================================
   HELPERS
   ============================================ */

.container {
    max-width: 1160px;
    margin: 0 auto;
    padding: 0 24px;
}

.section-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--accent-blue);
    border: 1px solid var(--accent-blue-dim);
    background: var(--accent-blue-dim);
    border-radius: 50px;
    padding: 6px 16px;
    margin-bottom: 20px;
}

.section-tag.tag-gold {
    color: var(--accent-gold);
    border-color: var(--border-gold);
    background: var(--accent-gold-dim);
}

.section-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: clamp(28px, 4vw, 48px);
    font-weight: 700;
    line-height: 1.2;
    color: var(--text-primary);
    margin-bottom: 16px;
    letter-spacing: -0.02em;
}

.section-subtitle {
    font-size: 17px;
    color: var(--text-secondary);
    max-width: 600px;
    margin-bottom: 56px;
}

.accent-text {
    background: linear-gradient(90deg, var(--accent-blue), #80d8ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.accent-gold {
    background: linear-gradient(90deg, var(--accent-gold), #ffd060);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ============================================
   FADE IN / REVEAL ANIMATIONS
   ============================================ */

.fade-in {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s var(--timing) forwards;
}

.fade-in:nth-child(1) { animation-delay: 0.1s; }
.fade-in:nth-child(2) { animation-delay: 0.25s; }
.fade-in:nth-child(3) { animation-delay: 0.4s; }
.fade-in:nth-child(4) { animation-delay: 0.55s; }
.fade-in:nth-child(5) { animation-delay: 0.7s; }
.fade-in:nth-child(6) { animation-delay: 0.85s; }

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

.reveal-element {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.7s var(--timing), transform 0.7s var(--timing);
}

.reveal-element.revealed {
    opacity: 1;
    transform: translateY(0);
}

/* ============================================
   HOLOGRAM IMAGE EFFECT
   ============================================ */

.hologram-image {
    position: relative;
}

.hologram-image::after {
    content: '';
    position: absolute;
    inset: -2px;
    border-radius: inherit;
    background: linear-gradient(135deg, var(--accent-blue-glow), transparent 50%, var(--accent-gold-glow));
    opacity: 0;
    transition: opacity 0.4s;
    pointer-events: none;
    border-radius: var(--radius-lg);
}

.hologram-image:hover::after { opacity: 0.6; }

.image-reveal {
    border-radius: var(--radius-lg);
    transition: transform 0.6s var(--timing);
}

/* ============================================
   FLOATING ANIMATION
   ============================================ */

.floating {
    animation: floatY 6s ease-in-out infinite;
}

@keyframes floatY {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-16px); }
}

/* ============================================
   MAGNETIC BUTTON EFFECT
   ============================================ */

.magnetic-button { transition: transform 0.2s var(--spring); }

/* ============================================
   CTA BUTTON
   ============================================ */

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 18px 36px;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 0.02em;
    cursor: pointer;
    border: none;
    transition: transform 0.2s var(--spring), box-shadow 0.3s, background 0.3s;
}

.primary-cta {
    background: linear-gradient(135deg, #0099dd 0%, #00c8ff 50%, #0080ff 100%);
    color: #fff;
    box-shadow: 0 4px 24px rgba(0, 200, 255, 0.30);
}

.primary-cta:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 8px 40px rgba(0, 200, 255, 0.45);
}

.cta-button .cta-arrow {
    font-size: 18px;
    transition: transform 0.2s;
}

.primary-cta:hover .cta-arrow { transform: translateX(4px); }

.cta-xl {
    padding: 22px 52px;
    font-size: 18px;
}

/* ============================================
   HERO SECTION
   ============================================ */

.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: radial-gradient(ellipse 100% 80% at 50% -10%, rgba(0, 80, 160, 0.25) 0%, transparent 60%),
                var(--bg-0);
    padding: 120px 0 80px;
}

.neural-network {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    opacity: 0.6;
}

.hero-grid-overlay {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(0, 200, 255, 0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 200, 255, 0.04) 1px, transparent 1px);
    background-size: 60px 60px;
    pointer-events: none;
}

.aurora-bg {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 60% 50% at 15% 60%, rgba(0, 80, 200, 0.12) 0%, transparent 60%),
        radial-gradient(ellipse 50% 40% at 85% 30%, rgba(0, 200, 255, 0.08) 0%, transparent 55%),
        radial-gradient(ellipse 40% 30% at 70% 80%, rgba(240, 180, 41, 0.06) 0%, transparent 50%);
    animation: auroraShift 12s ease-in-out infinite alternate;
    pointer-events: none;
}

@keyframes auroraShift {
    0%   { opacity: 0.7; transform: scale(1); }
    100% { opacity: 1;   transform: scale(1.05); }
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-content {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 18px;
    border-radius: 50px;
    border: 1px solid var(--border);
    background: rgba(0, 200, 255, 0.06);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--accent-blue);
    width: fit-content;
}

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

@keyframes blink {
    0%, 100% { opacity: 1; }
    50%       { opacity: 0.3; }
}

/* AI Orb */
.ai-orb {
    position: relative;
    width: 80px;
    height: 80px;
}

.orb-core {
    position: absolute;
    inset: 20px;
    border-radius: 50%;
    background: radial-gradient(circle at 35% 35%, #80e8ff, var(--accent-blue), #0060cc);
    box-shadow: 0 0 30px var(--accent-blue-glow), 0 0 60px rgba(0, 200, 255, 0.2);
    animation: orbPulse 3s ease-in-out infinite;
}

@keyframes orbPulse {
    0%, 100% { transform: scale(1); box-shadow: 0 0 30px var(--accent-blue-glow); }
    50%       { transform: scale(1.1); box-shadow: 0 0 50px var(--accent-blue-glow), 0 0 80px rgba(0, 200, 255, 0.25); }
}

.orb-ring {
    position: absolute;
    border-radius: 50%;
    border: 1px solid rgba(0, 200, 255, 0.25);
    animation: orbRing 4s linear infinite;
}

.ring-1 { inset: 12px; animation-duration: 4s; }
.ring-2 { inset: 5px; animation-duration: 6s; animation-direction: reverse; }
.ring-3 { inset: -2px; animation-duration: 9s; opacity: 0.4; }

@keyframes orbRing {
    0%   { transform: rotate(0deg) scale(1); opacity: 0.5; }
    50%  { opacity: 1; }
    100% { transform: rotate(360deg) scale(1); opacity: 0.5; }
}

.orb-particles {
    position: absolute;
    inset: 0;
    border-radius: 50%;
    animation: orbRing 8s linear infinite;
}

.orb-particles span {
    position: absolute;
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: var(--accent-blue);
    box-shadow: 0 0 6px var(--accent-blue);
}

.orb-particles span:nth-child(1) { top: 0; left: 50%; transform: translateX(-50%); }
.orb-particles span:nth-child(2) { top: 50%; right: 0; transform: translateY(-50%); }
.orb-particles span:nth-child(3) { bottom: 0; left: 50%; transform: translateX(-50%); }
.orb-particles span:nth-child(4) { top: 50%; left: 0; transform: translateY(-50%); }
.orb-particles span:nth-child(5) { top: 14%; left: 14%; }

/* Course Label */
.course-label {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.22em;
    color: var(--accent-gold);
    text-transform: uppercase;
}

/* Hero Headline */
.hero-headline {
    font-family: 'Space Grotesk', sans-serif;
    font-size: clamp(30px, 4.5vw, 58px);
    font-weight: 800;
    line-height: 1.12;
    letter-spacing: -0.025em;
    color: var(--text-primary);
}

.headline-accent {
    background: linear-gradient(135deg, var(--accent-blue) 0%, #80d8ff 50%, var(--accent-gold) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subheadline {
    font-size: 18px;
    color: var(--text-secondary);
    line-height: 1.7;
    max-width: 480px;
}

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

/* Hero CTA group */
.hero-cta-group {
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: flex-start;
}

.cta-disclaimer {
    font-size: 12px;
    color: var(--text-muted);
    padding-left: 4px;
}

/* Social proof row */
.hero-social-proof {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
    font-size: 13px;
    color: var(--text-secondary);
}

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

.proof-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    animation: blink 2s infinite;
}

.pulse-green {
    background: var(--accent-green);
    box-shadow: 0 0 6px var(--accent-green);
}

.pulse-gold {
    background: var(--accent-gold);
    box-shadow: 0 0 6px var(--accent-gold);
}

.proof-separator { color: var(--text-muted); }

/* Hero Visual */
.hero-visual {
    display: flex;
    flex-direction: column;
    gap: 20px;
    position: relative;
}

/* AI Terminal */
.ai-terminal {
    background: rgba(4, 16, 36, 0.9);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-card);
    backdrop-filter: blur(16px);
}

.terminal-header {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 16px;
    background: rgba(0, 0, 0, 0.3);
    border-bottom: 1px solid var(--border);
}

.terminal-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.terminal-dot.red    { background: #ff5f57; }
.terminal-dot.yellow { background: #ffbd2e; }
.terminal-dot.green  { background: #28ca41; }

.terminal-title-text {
    margin-left: 8px;
    font-size: 11px;
    color: var(--text-muted);
    font-family: 'Space Grotesk', monospace;
    letter-spacing: 0.06em;
}

.terminal-body {
    padding: 16px 20px;
    min-height: 70px;
    font-family: 'Courier New', Courier, monospace;
    font-size: 14px;
    color: var(--accent-green);
}

.terminal-line { display: flex; align-items: center; gap: 8px; }

.t-prompt { color: var(--accent-blue); font-weight: 700; }

.terminal-cursor {
    animation: cursorBlink 1s step-end infinite;
    color: var(--accent-green);
    font-weight: 300;
}

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

/* Hero image */
.hero-image-wrap {
    border-radius: var(--radius-lg);
    overflow: hidden;
    position: relative;
    box-shadow: var(--shadow-card), 0 0 60px rgba(0, 200, 255, 0.1);
    border: 1px solid var(--border);
}

.hero-img {
    width: 100%;
    display: block;
    transform: translateY(var(--hero-parallax-offset, 0px));
    transition: transform 0.6s var(--timing);
}

.hero-image-wrap:hover .hero-img {
    transform: translateY(var(--hero-parallax-offset, 0px)) scale(1.03);
}

.img-glow-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 60%, rgba(1, 11, 24, 0.8) 100%);
    pointer-events: none;
}

/* ============================================
   TRUST BAR
   ============================================ */

.trust-bar {
    background: var(--bg-1);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    padding: 20px 0;
    overflow: hidden;
}

.trust-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    justify-content: space-around;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
    font-weight: 600;
    color: var(--text-secondary);
    white-space: nowrap;
}

.trust-icon { font-size: 16px; }

/* ============================================
   PROBLEM SECTION
   ============================================ */

.problem-section {
    padding: 100px 0;
    background: var(--bg-1);
}

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

.split-grid {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 24px;
    align-items: center;
    margin: 52px 0;
}

.split-vs {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 22px;
    font-weight: 800;
    color: var(--text-muted);
    letter-spacing: 0.1em;
    padding: 0 8px;
}

.split-card {
    padding: 36px 32px;
    border-radius: var(--radius-lg);
    border: 1px solid;
    background: var(--bg-glass);
    backdrop-filter: blur(20px);
    text-align: left;
}

.card-bad {
    border-color: rgba(255, 80, 80, 0.25);
    background: rgba(255, 40, 40, 0.05);
}

.card-good {
    border-color: var(--border);
    background: rgba(0, 200, 255, 0.04);
    box-shadow: var(--shadow-blue);
}

.split-icon {
    font-size: 32px;
    margin-bottom: 14px;
}

.split-card h3 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--text-primary);
}

.split-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.split-list li {
    font-size: 14px;
    color: var(--text-secondary);
    padding-left: 20px;
    position: relative;
}

.card-bad .split-list li::before {
    content: '✗';
    position: absolute;
    left: 0;
    color: rgba(255, 80, 80, 0.7);
    font-weight: 700;
}

.card-good .split-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--accent-green);
    font-weight: 700;
}

.problem-cta {
    text-align: center;
    margin-top: 20px;
}

.problem-question {
    font-size: 20px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 28px;
    font-family: 'Space Grotesk', sans-serif;
}

/* ============================================
   BENEFITS SECTION
   ============================================ */

.benefits-section {
    padding: 100px 0;
    background: var(--bg-0);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 52px;
}

.benefit-card {
    padding: 32px 28px;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
    background: var(--bg-glass);
    backdrop-filter: blur(16px);
    transition: transform 0.3s var(--timing), box-shadow 0.3s, border-color 0.3s;
    position: relative;
    overflow: hidden;
}

.benefit-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--accent-blue), var(--accent-gold));
    opacity: 0;
    transition: opacity 0.3s;
}

.benefit-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-blue);
    border-color: var(--accent-blue-dim);
}

.benefit-card:hover::before { opacity: 1; }

.benefit-icon-wrap {
    width: 54px;
    height: 54px;
    border-radius: var(--radius-sm);
    background: var(--accent-blue-dim);
    border: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
}

.benefit-icon { font-size: 24px; }

.benefit-card h3 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 16px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 10px;
}

.benefit-card p {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 16px;
}

.benefit-tag {
    display: inline-block;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--accent-blue);
    background: var(--accent-blue-dim);
    border: 1px solid var(--border);
    padding: 4px 10px;
    border-radius: 50px;
}

/* ============================================
   AI DEMO SECTION
   ============================================ */

.ai-demo-section {
    padding: 100px 0;
    background: var(--bg-1);
    position: relative;
    overflow: hidden;
}

.ai-grid-hologram {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(0, 200, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 200, 255, 0.03) 1px, transparent 1px);
    background-size: 40px 40px;
    pointer-events: none;
}

.neural-stream-canvas {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    opacity: 0.5;
}

.ai-demo-section .container { position: relative; z-index: 1; }

.demo-subtitle {
    font-size: 17px;
    color: var(--text-secondary);
    margin-bottom: 44px;
}

.demo-container {
    max-width: 760px;
    margin: 0 auto;
}

.demo-input-wrapper {
    display: flex;
    gap: 12px;
    margin-bottom: 16px;
}

.demo-input {
    flex: 1;
    padding: 16px 20px;
    border-radius: var(--radius-md);
    border: 1px solid var(--border);
    background: rgba(4, 16, 36, 0.85);
    color: var(--text-primary);
    font-size: 15px;
    font-family: inherit;
    outline: none;
    transition: border-color 0.3s, box-shadow 0.3s;
    backdrop-filter: blur(8px);
}

.demo-input::placeholder { color: var(--text-muted); }
.demo-input:focus {
    border-color: var(--accent-blue);
    box-shadow: 0 0 0 3px var(--accent-blue-dim);
}

.demo-button {
    padding: 16px 28px;
    border-radius: var(--radius-md);
    background: linear-gradient(135deg, var(--accent-blue), #0080ff);
    color: #fff;
    font-size: 14px;
    font-weight: 700;
    white-space: nowrap;
    transition: transform 0.2s var(--spring), box-shadow 0.2s;
}

.demo-button:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-blue);
}

.prompt-suggestions {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 28px;
}

.suggestion-label {
    font-size: 12px;
    color: var(--text-muted);
    font-weight: 600;
}

.suggestion-pill {
    padding: 6px 16px;
    border-radius: 50px;
    border: 1px solid var(--border);
    background: rgba(0, 200, 255, 0.05);
    color: var(--text-secondary);
    font-size: 12px;
    cursor: pointer;
    transition: all 0.2s;
    font-family: inherit;
}

.suggestion-pill:hover {
    border-color: var(--accent-blue);
    color: var(--accent-blue);
    background: var(--accent-blue-dim);
}

/* AI Thinking */
.ai-thinking {
    display: none;
    align-items: center;
    gap: 16px;
    padding: 20px;
    border-radius: var(--radius-md);
    border: 1px solid var(--border);
    background: var(--bg-glass);
    backdrop-filter: blur(16px);
    margin-bottom: 20px;
}

.ai-thinking.active { display: flex; }

.thinking-spinner {
    width: 28px;
    height: 28px;
    border: 2px solid var(--border);
    border-top-color: var(--accent-blue);
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
    flex-shrink: 0;
}

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

.thinking-text {
    font-size: 14px;
    color: var(--text-secondary);
}

.loading-dots::after {
    content: '';
    animation: loadingDots 1.5s infinite;
}

@keyframes loadingDots {
    0%   { content: ''; }
    25%  { content: '.'; }
    50%  { content: '..'; }
    75%  { content: '...'; }
}

/* Code Generation */
.code-generation {
    display: none;
    border-radius: var(--radius-md);
    border: 1px solid var(--border);
    background: rgba(2, 10, 22, 0.95);
    overflow: hidden;
    margin-bottom: 20px;
    box-shadow: var(--shadow-card);
}

.code-generation.active { display: block; }

.code-header {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 16px;
    background: rgba(0, 0, 0, 0.3);
    border-bottom: 1px solid var(--border);
}

.code-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--border);
}

.code-dot:nth-child(1) { background: #ff5f57; }
.code-dot:nth-child(2) { background: #ffbd2e; }
.code-dot:nth-child(3) { background: #28ca41; }

.code-title {
    margin-left: 8px;
    font-size: 11px;
    color: var(--text-muted);
    letter-spacing: 0.06em;
}

.code-body { padding: 20px; }

.code-content {
    font-family: 'Courier New', Courier, monospace;
    font-size: 13px;
    line-height: 1.7;
    color: var(--text-secondary);
    white-space: pre-wrap;
    word-break: break-word;
}

.code-content .keyword  { color: #c792ea; }
.code-content .function { color: #82aaff; }
.code-content .string   { color: #c3e88d; }

/* Demo Terminal */
.demo-terminal {
    display: none;
    border-radius: var(--radius-md);
    border: 1px solid var(--border);
    background: rgba(2, 10, 22, 0.95);
    overflow: hidden;
    margin-bottom: 20px;
    box-shadow: var(--shadow-card);
}

.demo-terminal.active { display: block; }

.terminal-title {
    margin-left: 8px;
    font-size: 11px;
    color: var(--text-muted);
    letter-spacing: 0.06em;
}

.demo-terminal .terminal-body {
    padding: 16px 20px;
    display: flex;
    flex-direction: column;
    gap: 6px;
    min-height: 130px;
}

.demo-terminal .terminal-line {
    font-family: 'Courier New', monospace;
    font-size: 13px;
    color: var(--accent-green);
    opacity: 0;
    transform: translateX(-10px);
    transition: opacity 0.3s, transform 0.3s;
}

.demo-terminal .terminal-line.show {
    opacity: 1;
    transform: translateX(0);
}

/* App Wireframe */
.app-wireframe {
    display: none;
    padding: 24px;
    border-radius: var(--radius-md);
    border: 1px solid var(--border);
    background: var(--bg-glass);
    backdrop-filter: blur(16px);
    margin-bottom: 20px;
    text-align: center;
}

.app-wireframe.active { display: block; }

.wireframe-container {
    display: flex;
    flex-direction: column;
    gap: 10px;
    max-width: 360px;
    margin: 0 auto 16px;
}

.wireframe-block {
    border-radius: var(--radius-sm);
    background: var(--accent-blue-dim);
    border: 1px solid var(--border);
    opacity: 0;
    transform: scaleX(0.8);
    transition: opacity 0.4s, transform 0.4s;
}

.wireframe-block.show {
    opacity: 1;
    transform: scaleX(1);
}

.wireframe-block.header  { height: 40px; }
.wireframe-block.sidebar { height: 80px; width: 60%; }
.wireframe-block.content { height: 50px; }
.wireframe-block.button  { height: 36px; width: 40%; border-radius: 50px; background: linear-gradient(90deg, var(--accent-blue-dim), var(--accent-gold-dim)); }

.wireframe-label {
    font-size: 13px;
    color: var(--text-muted);
    text-align: center;
    font-style: italic;
}

/* App Mockup Result */
.app-mockup-result {
    display: none;
    flex-direction: column;
    align-items: center;
    gap: 24px;
    padding: 32px;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(0, 200, 255, 0.2);
    background: linear-gradient(135deg, rgba(0, 200, 255, 0.05) 0%, rgba(0, 128, 255, 0.03) 100%);
    backdrop-filter: blur(16px);
    animation: fadeInUp 0.5s var(--timing) forwards;
}

.app-mockup-result.show { display: flex; }

.mockup-phone {
    width: 220px;
    height: 420px;
    border-radius: 36px;
    border: 6px solid #1a2a40;
    background: #0d1b2e;
    overflow: hidden;
    box-shadow:
        0 0 0 1px rgba(0, 200, 255, 0.3),
        0 0 50px rgba(0, 200, 255, 0.2),
        0 24px 60px rgba(0, 0, 0, 0.6);
    cursor: pointer;
    transition: transform 0.3s var(--timing);
    transform-style: preserve-3d;
    position: relative;
}

/* Phone notch */
.mockup-phone::before {
    content: '';
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 10px;
    background: #0d1b2e;
    border-radius: 6px;
    z-index: 20;
    box-shadow: 0 0 0 1px #1a2a40;
}

.mockup-screen {
    height: 100%;
    padding: 26px 10px 10px;
    position: relative;
    overflow: hidden;
    background: linear-gradient(160deg, #0d1f36 0%, #071428 100%);
}

.app-layer {
    position: absolute;
    inset: 0;
    animation: layerBuild 0.5s var(--timing) both;
}

.wireframe-layer {
    background: repeating-linear-gradient(
        0deg,
        rgba(0, 200, 255, 0.03) 0px,
        rgba(0, 200, 255, 0.03) 1px,
        transparent 1px,
        transparent 22px
    );
    animation-delay: 0s;
}
.colors-layer {
    background: radial-gradient(ellipse 80% 40% at 50% 0%, rgba(0, 200, 255, 0.12), transparent);
    animation-delay: 0.2s;
}
.icons-layer     { background: none; animation-delay: 0.4s; }
.buttons-layer   { background: none; animation-delay: 0.6s; }
.charts-layer    { background: none; animation-delay: 0.8s; }

@keyframes layerBuild {
    from { opacity: 0; transform: translateY(10px); }
    to   { opacity: 1; transform: translateY(0); }
}

.mockup-content {
    position: relative;
    z-index: 10;
    height: 100%;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.mock-app-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 8px;
    padding: 4px 4px 0;
}

.mock-app-title {
    font-size: 13px;
    font-weight: 700;
    color: #e7f3ff;
    letter-spacing: 0.01em;
}

.mock-app-badge {
    font-size: 9px;
    font-weight: 700;
    padding: 4px 8px;
    border-radius: 999px;
    border: 1px solid currentColor;
    letter-spacing: 0.08em;
}

.mock-app-kpis {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 6px;
    padding: 2px 4px 0;
}

.mock-app-kpi {
    border: 1px solid;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.05);
    color: #c6deff;
    font-size: 8px;
    font-weight: 600;
    text-align: center;
    padding: 6px 4px;
    line-height: 1.2;
}

.mock-app-list {
    display: flex;
    flex-direction: column;
    gap: 7px;
    flex: 1;
    padding: 2px 4px 0;
}

.mock-app-card {
    border-left: 3px solid;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.08);
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    border-right: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding: 9px 9px 8px;
    animation: fadeInUp 0.35s var(--timing) both;
}

.mock-app-card:nth-child(1) { animation-delay: 0.1s; }
.mock-app-card:nth-child(2) { animation-delay: 0.2s; }
.mock-app-card:nth-child(3) { animation-delay: 0.3s; }

.mock-app-card-title {
    color: #f5fbff;
    font-size: 10px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 4px;
}

.mock-app-card-subtitle {
    color: #9fc0e6;
    font-size: 8px;
    line-height: 1.3;
}

.mock-app-cta {
    margin: 2px 4px 0;
    height: 32px;
    border-radius: 16px;
    border: none;
    color: #ffffff;
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 0.03em;
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.28);
    animation: fadeInUp 0.45s var(--timing) both;
    animation-delay: 0.35s;
}

.mock-app-tabs {
    margin-top: 4px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 8px;
    padding: 0 10px 2px;
}

.mock-tab {
    height: 4px;
    flex: 1;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.2);
}

.mock-tab.active {
    box-shadow: 0 0 10px rgba(0, 200, 255, 0.5);
}

/* App status bar */
.mockup-header {
    display: flex;
    flex-direction: column;
    gap: 7px;
    margin-bottom: 10px;
    padding: 6px 4px 0;
}

/* Title bar */
.mock-bar {
    height: 14px;
    border-radius: 7px;
    background: linear-gradient(90deg, var(--accent-blue), #0080ff);
    box-shadow: 0 2px 10px rgba(0, 200, 255, 0.4);
    animation: fadeInUp 0.4s var(--timing) both;
}

.mock-bar.short { width: 55%; }

.mockup-body {
    display: flex;
    flex-direction: column;
    gap: 8px;
    flex: 1;
    padding: 0 4px;
}

/* Cards now have a visible background */
.mock-card {
    height: 52px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-left-width: 3px;
    animation: fadeInUp 0.4s var(--timing) both;
    position: relative;
    overflow: hidden;
}

/* Shimmer effect on cards */
.mock-card::after {
    content: '';
    position: absolute;
    top: 8px; left: 10px; right: 30px;
    height: 7px;
    border-radius: 4px;
    background: rgba(255, 255, 255, 0.12);
}

.mock-card:nth-child(1) { animation-delay: 0.1s; }
.mock-card:nth-child(2) { animation-delay: 0.2s; }
.mock-card:nth-child(3) { animation-delay: 0.3s; }

.mockup-footer {
    margin-top: auto;
    padding: 0 4px 4px;
}

.mock-button {
    height: 36px;
    border-radius: 20px;
    background: linear-gradient(135deg, var(--accent-blue), #0080ff);
    box-shadow: 0 4px 16px rgba(0, 200, 255, 0.4);
    animation: fadeInUp 0.4s var(--timing) both;
    animation-delay: 0.4s;
}

.mockup-success {
    font-size: 15px;
    color: var(--accent-green);
    font-weight: 600;
    text-align: center;
}

.demo-cta {
    text-align: center;
    padding: 24px 32px;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
    background: var(--bg-glass);
    backdrop-filter: blur(16px);
    width: 100%;
    max-width: 480px;
}

.demo-cta-text {
    font-size: 16px;
    color: var(--text-secondary);
    margin-bottom: 18px;
}

/* ============================================
   WHO SECTION
   ============================================ */

.who-section {
    padding: 100px 0;
    background: var(--bg-0);
}

.who-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 52px;
}

.who-card {
    padding: 28px 24px;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
    background: var(--bg-glass);
    backdrop-filter: blur(16px);
    text-align: center;
    transition: transform 0.3s var(--timing), box-shadow 0.3s;
}

.who-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-blue);
    border-color: var(--accent-blue-dim);
}

.who-icon {
    font-size: 36px;
    margin-bottom: 14px;
    display: block;
}

.who-card h3 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 15px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 8px;
}

.who-card p {
    font-size: 13px;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* ============================================
   CREATOR SECTION
   ============================================ */

.creator-section {
    padding: 100px 0;
    background: var(--bg-1);
}

.creator-layout {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0;
    align-items: center;
}

.creator-content {
    max-width: 920px;
    margin: 0 auto;
}

.creator-image-wrap {
    border-radius: var(--radius-xl);
    overflow: hidden;
    position: relative;
    box-shadow: var(--shadow-card), 0 0 60px rgba(0, 200, 255, 0.12);
    border: 1px solid var(--border);
}

.creator-img { width: 100%; display: block; }

.creator-img-badge {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    padding: 8px 20px;
    background: rgba(1, 11, 24, 0.9);
    border: 1px solid var(--border);
    border-radius: 50px;
    font-size: 12px;
    font-weight: 600;
    color: var(--accent-blue);
    white-space: nowrap;
    backdrop-filter: blur(12px);
}

.creator-bio {
    font-size: 16px;
    color: var(--text-secondary);
    line-height: 1.75;
    margin-bottom: 16px;
}

.creator-quote {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 18px;
    font-weight: 600;
    color: var(--text-primary);
    border-left: 3px solid var(--accent-gold);
    padding-left: 20px;
    margin: 24px 0;
    line-height: 1.5;
    font-style: italic;
}

.creator-stats {
    display: flex;
    gap: 32px;
    margin-top: 28px;
    padding-top: 28px;
    border-top: 1px solid var(--border);
}

.stat-item {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.stat-number {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 28px;
    font-weight: 800;
    color: var(--accent-blue);
    line-height: 1;
}

.stat-label {
    font-size: 12px;
    color: var(--text-muted);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

/* ============================================
   TESTIMONIALS
   ============================================ */

.testimonials-section {
    padding: 100px 0;
    background: var(--bg-0);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 52px;
}

.testimonial-card {
    padding: 32px 28px;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
    background: var(--bg-glass);
    backdrop-filter: blur(16px);
    transition: transform 0.3s var(--timing), box-shadow 0.3s;
}

.testimonial-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-blue);
}

.stars {
    color: var(--accent-gold);
    font-size: 16px;
    margin-bottom: 16px;
    letter-spacing: 2px;
}

.testimonial-text {
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.75;
    margin-bottom: 24px;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 14px;
}

.author-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--accent-blue), #0060cc);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 13px;
    color: #fff;
    flex-shrink: 0;
}

.author-info {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.author-info strong {
    font-size: 14px;
    font-weight: 700;
    color: var(--text-primary);
}

.author-info span {
    font-size: 12px;
    color: var(--text-muted);
}

/* ============================================
   WAITLIST SECTION
   ============================================ */

.waitlist-section {
    padding: 100px 0;
    background: var(--bg-1);
    position: relative;
    overflow: hidden;
}

.waitlist-canvas {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    opacity: 0.3;
}

.waitlist-section .container {
    position: relative;
    z-index: 1;
    text-align: center;
}

.waitlist-subtitle {
    font-size: 17px;
    color: var(--text-secondary);
    max-width: 560px;
    margin: 0 auto 44px;
}

/* Progress bar */
.waitlist-progress {
    max-width: 560px;
    margin: 0 auto 36px;
    text-align: left;
}

.progress-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}

.progress-label-text {
    font-size: 13px;
    color: var(--text-secondary);
    font-weight: 600;
}

.progress-pct {
    font-size: 13px;
    color: var(--accent-blue);
    font-weight: 700;
}

.progress-track {
    height: 8px;
    border-radius: 50px;
    background: rgba(0, 200, 255, 0.1);
    overflow: hidden;
    position: relative;
}

.progress-fill {
    height: 100%;
    border-radius: 50px;
    background: linear-gradient(90deg, var(--accent-blue), var(--accent-gold));
    width: 0%;
    transition: width 2s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.progress-fill::after {
    content: '';
    position: absolute;
    right: 0; top: 0; bottom: 0;
    width: 40px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4));
    border-radius: 50px;
    animation: shimmer 2s infinite;
}

@keyframes shimmer {
    0%   { opacity: 0; }
    50%  { opacity: 1; }
    100% { opacity: 0; }
}

.progress-glow { display: none; }

.progress-warning {
    font-size: 12px;
    color: var(--accent-gold);
    margin-top: 10px;
    font-weight: 600;
}

/* Countdown */
.scarcity-countdown {
    max-width: 400px;
    margin: 0 auto 44px;
}

.countdown-label {
    font-size: 13px;
    color: var(--text-secondary);
    margin-bottom: 14px;
    font-weight: 600;
}

.countdown-timer {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 16px 28px;
    border-radius: var(--radius-md);
    border: 1px solid var(--border);
    background: var(--bg-glass);
    backdrop-filter: blur(16px);
}

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

.countdown-num {
    font-family: 'Space Grotesk', monospace;
    font-size: 36px;
    font-weight: 800;
    color: var(--accent-blue);
    line-height: 1;
    min-width: 52px;
    text-align: center;
    text-shadow: 0 0 20px var(--accent-blue-glow);
    transition: transform 0.15s var(--spring);
}

.countdown-num.flip { transform: scale(1.1); }

.countdown-unit-label {
    font-size: 10px;
    color: var(--text-muted);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.countdown-sep {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 28px;
    font-weight: 800;
    color: var(--text-muted);
    align-self: flex-start;
    padding-top: 4px;
    animation: blink 1s step-end infinite;
}

/* Form Card */
.form-card {
    max-width: 520px;
    margin: 0 auto;
    padding: 44px 40px;
    border-radius: var(--radius-xl);
    border: 1px solid var(--border);
    background: var(--bg-glass);
    backdrop-filter: blur(24px);
    box-shadow: var(--shadow-card);
    text-align: left;
    position: relative;
    overflow: hidden;
}

.form-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--accent-blue), var(--accent-gold));
}

.form-card-header {
    text-align: center;
    margin-bottom: 32px;
}

.form-card-header h3 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 20px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 6px;
}

.form-card-header p {
    font-size: 14px;
    color: var(--text-muted);
}

/* Waitlist Form */
.waitlist-form {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.form-label {
    font-size: 13px;
    font-weight: 600;
    color: var(--text-secondary);
    letter-spacing: 0.03em;
}

.waitlist-form input[type="text"],
.waitlist-form input[type="email"],
.waitlist-form input[type="tel"] {
    width: 100%;
    padding: 14px 18px;
    border-radius: var(--radius-md);
    border: 1px solid var(--border);
    background: rgba(4, 16, 36, 0.9);
    color: var(--text-primary);
    font-size: 15px;
    font-family: inherit;
    outline: none;
    transition: border-color 0.3s, box-shadow 0.3s;
}

.waitlist-form input::placeholder { color: var(--text-muted); }

.waitlist-form input:focus {
    border-color: var(--accent-blue);
    box-shadow: 0 0 0 3px var(--accent-blue-dim);
}

/* Checkbox */
.form-checkbox {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-top: 4px;
}

.form-checkbox input[type="checkbox"] {
    width: 18px;
    height: 18px;
    border-radius: 4px;
    border: 1px solid var(--border);
    background: rgba(4, 16, 36, 0.9);
    cursor: pointer;
    flex-shrink: 0;
    margin-top: 2px;
    accent-color: var(--accent-blue);
}

.form-checkbox label {
    font-size: 13px;
    color: var(--text-muted);
    line-height: 1.5;
    cursor: pointer;
}

.terms-link {
    color: var(--accent-blue);
    text-decoration: underline;
    text-underline-offset: 2px;
}

/* Form Submit */
.form-submit {
    width: 100%;
    justify-content: center;
    padding: 18px;
    margin-top: 8px;
    font-size: 15px;
    letter-spacing: 0.02em;
    background: linear-gradient(135deg, #0090cc 0%, #00c8ff 50%, #0060cc 100%);
    box-shadow: 0 4px 24px rgba(0, 200, 255, 0.30);
}

.form-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 40px rgba(0, 200, 255, 0.45);
}

/* Success Message */
.success-message {
    display: none;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    text-align: center;
    padding: 32px;
    animation: fadeInUp 0.5s var(--timing) forwards;
}

.success-message.show { display: flex; }

.success-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--accent-green), #00b300);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: #fff;
    font-weight: 700;
    box-shadow: 0 0 30px rgba(0, 230, 118, 0.35);
}

.success-message h3 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 22px;
    font-weight: 700;
    color: var(--text-primary);
}

.success-message p {
    font-size: 15px;
    color: var(--text-secondary);
    max-width: 340px;
}

/* Guarantee Seal */
.guarantee-seal {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-top: 28px;
    padding: 16px 20px;
    border-radius: var(--radius-md);
    border: 1px solid var(--border-gold);
    background: var(--accent-gold-dim);
}

.seal-icon { font-size: 28px; flex-shrink: 0; }

.seal-text {
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.seal-text strong {
    font-size: 14px;
    font-weight: 700;
    color: var(--accent-gold);
}

.seal-text span {
    font-size: 12px;
    color: var(--text-secondary);
}

/* ============================================
   FAQ SECTION
   ============================================ */

.faq-section {
    padding: 100px 0;
    background: var(--bg-0);
}

.faq-list {
    max-width: 760px;
    margin: 52px auto 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.faq-item {
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    background: var(--bg-glass);
    backdrop-filter: blur(16px);
    overflow: hidden;
    transition: border-color 0.3s;
}

.faq-item:hover,
.faq-item.active {
    border-color: var(--accent-blue-dim);
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    padding: 20px 24px;
    cursor: pointer;
    transition: background 0.2s;
}

.faq-question:hover { background: rgba(0, 200, 255, 0.04); }

.faq-question h3 {
    font-size: 16px;
    font-weight: 600;
    color: var(--text-primary);
    line-height: 1.4;
}

.faq-toggle {
    font-size: 22px;
    color: var(--accent-blue);
    font-weight: 300;
    flex-shrink: 0;
    transition: transform 0.3s var(--timing);
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    border: 1px solid var(--border);
}

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

.faq-answer-wrap {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s var(--timing);
}

.faq-item.active .faq-answer-wrap { max-height: 200px; }

.faq-answer {
    padding: 0 24px 20px;
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.7;
}

/* ============================================
   FINAL CTA SECTION
   ============================================ */

.final-cta-section {
    padding: 120px 0;
    background: var(--bg-1);
    position: relative;
    overflow: hidden;
}

.final-cta-bg {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 70% 60% at 50% 50%, rgba(0, 80, 160, 0.25) 0%, transparent 70%),
        radial-gradient(ellipse 40% 30% at 80% 80%, rgba(240, 180, 41, 0.08) 0%, transparent 60%);
    pointer-events: none;
}

.final-cta-content {
    text-align: center;
    position: relative;
    z-index: 1;
}

.final-cta-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: clamp(30px, 4vw, 52px);
    font-weight: 800;
    line-height: 1.2;
    letter-spacing: -0.025em;
    color: var(--text-primary);
    margin-bottom: 20px;
}

.final-cta-sub {
    font-size: 17px;
    color: var(--text-secondary);
    margin-bottom: 36px;
}

.final-benefits-row {
    display: flex;
    justify-content: center;
    gap: 28px;
    flex-wrap: wrap;
    margin-bottom: 40px;
    font-size: 14px;
    font-weight: 600;
    color: var(--text-secondary);
}

.final-benefits-row span { display: flex; align-items: center; gap: 6px; }

.final-disclaimer {
    margin-top: 16px;
    font-size: 13px;
    color: var(--text-muted);
}

/* ============================================
   FOOTER
   ============================================ */

.footer {
    padding: 52px 0;
    background: var(--bg-0);
    border-top: 1px solid var(--border);
    text-align: center;
}

.footer-logo {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 22px;
    font-weight: 700;
    letter-spacing: 0.08em;
    margin-bottom: 8px;
}

.footer-tagline {
    font-size: 13px;
    color: var(--text-muted);
    margin-bottom: 24px;
    letter-spacing: 0.08em;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 28px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.footer-links a {
    font-size: 13px;
    color: var(--text-muted);
}

.footer-links a:hover { color: var(--accent-blue); }

.footer-copy {
    font-size: 12px;
    color: var(--text-muted);
}

.whatsapp-float {
    position: fixed;
    right: 20px;
    bottom: 20px;
    z-index: 9500;
    background: #25d366;
    color: #fff;
    text-decoration: none;
    font-weight: 700;
    font-size: 14px;
    padding: 14px 18px;
    border-radius: 999px;
    box-shadow: 0 10px 28px rgba(37, 211, 102, 0.35);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.whatsapp-float:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 34px rgba(37, 211, 102, 0.45);
}

/* ============================================
   REGISTRATION POPUP
   ============================================ */

.registration-popup {
    position: fixed;
    bottom: 24px;
    left: 24px;
    z-index: 9000;
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 16px 22px;
    border-radius: var(--radius-md);
    border: 1px solid var(--border);
    background: rgba(4, 16, 36, 0.95);
    backdrop-filter: blur(20px);
    box-shadow: var(--shadow-card);
    transform: translateX(-120%);
    transition: transform 0.5s var(--spring);
    max-width: 290px;
}

.registration-popup.show  { transform: translateX(0); }
.registration-popup.hide  { transform: translateX(-120%); }

.popup-icon {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--accent-green), #00b300);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    color: #fff;
    font-weight: 700;
    flex-shrink: 0;
}

.popup-text {
    font-size: 13px;
    color: var(--text-secondary);
    line-height: 1.5;
}

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

.popup-sub {
    font-size: 12px;
    color: var(--text-muted);
}

/* ============================================
   CINEMATIC SECTION REVEAL
   ============================================ */

.reveal-section {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s var(--timing), transform 0.8s var(--timing);
}

.reveal-section.in-view {
    opacity: 1;
    transform: translateY(0);
}

/* ============================================
   RESPONSIVE — TABLET
   ============================================ */

@media (max-width: 1024px) {
    .hero-container {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .hero-content { order: 1; }
    .hero-visual  { order: 2; }

    .hero-headline { font-size: 40px; }

    .benefits-grid      { grid-template-columns: repeat(2, 1fr); }
    .who-grid           { grid-template-columns: repeat(2, 1fr); }
    .creator-layout     { grid-template-columns: 1fr; }
    .testimonials-grid  { grid-template-columns: repeat(2, 1fr); }

    .split-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .split-vs {
        text-align: center;
        padding: 8px 0;
    }
}

@media (max-width: 768px) {
    body { font-size: 16px; }

    .hero {
        padding: 100px 0 60px;
        min-height: auto;
    }

    .hero-headline { font-size: 32px; }
    .hero-subheadline { font-size: 16px; }

    .section-title { font-size: 26px; }

    .benefits-grid     { grid-template-columns: 1fr; }
    .who-grid          { grid-template-columns: 1fr 1fr; }
    .testimonials-grid { grid-template-columns: 1fr; }

    .trust-inner {
        gap: 12px;
        justify-content: flex-start;
        overflow-x: auto;
        flex-wrap: nowrap;
        padding: 0 24px;
    }

    .trust-item { flex-shrink: 0; }

    .form-card { padding: 32px 24px; }

    .countdown-num { font-size: 28px; min-width: 40px; }

    .demo-input-wrapper { flex-direction: column; }
    .demo-button { width: 100%; }

    .final-benefits-row { gap: 16px; font-size: 13px; }

    .creator-stats { gap: 20px; }

    .registration-popup {
        left: 12px;
        bottom: 12px;
        max-width: calc(100vw - 24px);
    }

    .hero-social-proof {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }

    .proof-separator { display: none; }

    .whatsapp-float {
        left: 16px;
        right: 16px;
        bottom: 14px;
        text-align: center;
        border-radius: 14px;
    }
}

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

    .hero-headline { font-size: 28px; }

    .cta-button { padding: 16px 28px; font-size: 15px; }
    .cta-xl     { padding: 18px 32px; font-size: 16px; }

    .who-grid { grid-template-columns: 1fr; }

    .section-title { font-size: 24px; }

    .faq-question h3 { font-size: 14px; }

    .form-card { padding: 28px 20px; }
}

/* ============================================
   NAV ACTIONS + THEME TOGGLE BUTTON
   ============================================ */

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

.theme-toggle {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    border: 1px solid var(--border);
    background: var(--accent-blue-dim);
    color: var(--accent-blue);
    font-size: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s, transform 0.3s var(--spring), box-shadow 0.2s;
    flex-shrink: 0;
    line-height: 1;
    cursor: pointer;
}

.theme-toggle:hover {
    box-shadow: var(--shadow-blue);
    transform: rotate(20deg) scale(1.08);
}

/* ============================================
   LIGHT THEME — VARIABLE OVERRIDES
   ============================================ */

[data-theme="light"] {
    --bg-0: #f0f4ff;
    --bg-1: #e4ecfb;
    --bg-2: #d6e4f7;
    --bg-card: rgba(255, 255, 255, 0.92);
    --bg-glass: rgba(245, 249, 255, 0.92);
    --accent-blue: #0062cc;
    --accent-blue-dim: rgba(0, 98, 204, 0.12);
    --accent-blue-glow: rgba(0, 98, 204, 0.28);
    --accent-gold: #b8860b;
    --accent-gold-dim: rgba(184, 134, 11, 0.14);
    --accent-gold-glow: rgba(184, 134, 11, 0.28);
    --accent-green: #14803c;
    --text-primary: #0a1628;
    --text-secondary: #2a4070;
    --text-muted: #5a7ab5;
    --border: rgba(0, 80, 200, 0.16);
    --border-gold: rgba(180, 120, 0, 0.22);
    --shadow-blue: 0 0 40px rgba(0, 98, 204, 0.15);
    --shadow-gold: 0 0 40px rgba(180, 120, 0, 0.15);
    --shadow-card: 0 8px 40px rgba(0, 30, 100, 0.12);
}

/* ============================================
   LIGHT THEME — HARDCODED COLOR OVERRIDES
   ============================================ */

/* Sticky nav */
[data-theme="light"] .sticky-nav {
    background: rgba(240, 244, 255, 0.95);
}

/* Hero image gradient fade at bottom */
[data-theme="light"] .img-glow-overlay {
    background: linear-gradient(180deg, transparent 60%, rgba(240, 244, 255, 0.88) 100%);
}

/* Neural canvas — adapt for visibility on light background */
[data-theme="light"] .neural-network,
[data-theme="light"] .neural-stream-canvas {
    filter: invert(1) hue-rotate(180deg) opacity(0.35);
}

/* Hero grid overlay lines */
[data-theme="light"] .hero-grid-overlay {
    background-image:
        linear-gradient(rgba(0, 80, 200, 0.06) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 80, 200, 0.06) 1px, transparent 1px);
}

/* AI terminal in hero */
[data-theme="light"] .ai-terminal {
    background: rgba(220, 235, 255, 0.92);
    border-color: rgba(0, 80, 200, 0.20);
}
[data-theme="light"] .terminal-body { color: #14803c; }
[data-theme="light"] .terminal-cursor { color: #14803c; }
[data-theme="light"] .t-prompt { color: #0062cc; }

/* Demo section input */
[data-theme="light"] .demo-input {
    background: rgba(240, 244, 255, 0.97);
    color: #0a1628;
}

/* Code generation block */
[data-theme="light"] .code-generation {
    background: rgba(225, 235, 255, 0.98);
}
[data-theme="light"] .code-content { color: #2a4070; }
[data-theme="light"] .code-content .keyword  { color: #7c3aed; }
[data-theme="light"] .code-content .function { color: #1d5fcc; }
[data-theme="light"] .code-content .string   { color: #15803d; }

/* Demo terminal */
[data-theme="light"] .demo-terminal {
    background: rgba(225, 235, 255, 0.98);
}
[data-theme="light"] .demo-terminal .terminal-line { color: #14803c; }

/* Mockup phone */
[data-theme="light"] .mockup-phone {
    border-color: #b8ccf0;
    background: #dde8ff;
    box-shadow:
        0 0 0 1px rgba(0, 80, 200, 0.25),
        0 0 50px rgba(0, 98, 204, 0.18),
        0 24px 60px rgba(0, 30, 100, 0.18);
}
[data-theme="light"] .mockup-phone::before {
    background: #dde8ff;
    box-shadow: 0 0 0 1px #b8ccf0;
}
[data-theme="light"] .mockup-screen {
    background: linear-gradient(160deg, #eaf3ff 0%, #d8eeff 100%);
}

/* Mock app UI components */
[data-theme="light"] .mock-app-top    { background: linear-gradient(135deg, #0062cc, #0080ee) !important; }
[data-theme="light"] .mock-app-body   { background: #f0f4ff !important; }
[data-theme="light"] .mock-app-card   { background: rgba(255,255,255,0.92) !important; border-color: rgba(0,80,200,0.14) !important; }
[data-theme="light"] .mock-app-card-title { color: #0a1628 !important; }
[data-theme="light"] .mock-app-card-sub   { color: #2a4070 !important; }
[data-theme="light"] .mock-app-kpi         { background: rgba(255,255,255,0.88) !important; border-color: rgba(0,80,200,0.14) !important; }
[data-theme="light"] .mock-app-kpi-label   { color: #5a7ab5 !important; }
[data-theme="light"] .mock-app-kpi-value   { color: #0062cc !important; }
[data-theme="light"] .mock-app-cta   { background: linear-gradient(135deg, #0062cc, #0052a0) !important; }
[data-theme="light"] .mock-app-nav   { background: rgba(255,255,255,0.95) !important; border-color: rgba(0,80,200,0.12) !important; }
[data-theme="light"] .mock-app-nav-item { color: #5a7ab5 !important; }
[data-theme="light"] .mock-app-nav-item.active { color: #0062cc !important; }

/* Primary CTA buttons (hardcoded gradients) */
[data-theme="light"] .primary-cta {
    background: linear-gradient(135deg, #0052b5 0%, #0072e0 50%, #0044a0 100%);
    box-shadow: 0 4px 24px rgba(0, 80, 200, 0.35);
    color: #fff;
}
[data-theme="light"] .primary-cta:hover {
    box-shadow: 0 8px 40px rgba(0, 80, 200, 0.48);
}
[data-theme="light"] .form-submit {
    background: linear-gradient(135deg, #0052b5 0%, #0072e0 50%, #0044a0 100%);
    box-shadow: 0 4px 24px rgba(0, 80, 200, 0.35);
}
[data-theme="light"] .demo-button {
    background: linear-gradient(135deg, #0062cc, #0052b0);
}

/* Creator badge */
[data-theme="light"] .creator-img-badge {
    background: rgba(240, 244, 255, 0.95);
}

/* Waitlist form inputs */
[data-theme="light"] .waitlist-form input[type="text"],
[data-theme="light"] .waitlist-form input[type="email"],
[data-theme="light"] .waitlist-form input[type="tel"] {
    background: rgba(240, 244, 255, 0.97);
    color: #0a1628;
}
[data-theme="light"] .waitlist-form input::placeholder { color: #8ba8d5; }
[data-theme="light"] .form-checkbox input[type="checkbox"] {
    background: rgba(240, 244, 255, 0.97);
}

/* Registration popup */
[data-theme="light"] .registration-popup {
    background: rgba(240, 244, 255, 0.97);
    border-color: rgba(0, 80, 200, 0.20);
}

/* Wireframe section blocks */
[data-theme="light"] .wireframe-block {
    background: rgba(0, 98, 204, 0.12);
}

/* Mobile responsive: hide toggle label on very small screens */
@media (max-width: 480px) {
    .theme-toggle { width: 34px; height: 34px; font-size: 16px; }
}
