:root {
    --bg-dark: #030712;
    --bg-panel: rgba(15, 23, 42, 0.6);
    --text-main: #f8fafc;
    --text-muted: #94a3b8;
    --accent-primary: #3b82f6;
    --accent-light: #60a5fa;
    --accent-glow: rgba(59, 130, 246, 0.4);
    --border-color: rgba(255, 255, 255, 0.08);
    --font-heading: 'Outfit', system-ui, sans-serif;
    --font-body: 'Inter', system-ui, sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html { scroll-behavior: smooth; }

body {
    font-family: var(--font-body);
    background-color: var(--bg-dark);
    color: var(--text-main);
    line-height: 1.6;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow-x: hidden;
}

/* ── Ambient Glows ── */
.ambient-glow {
    position: fixed;
    border-radius: 50%;
    filter: blur(120px);
    z-index: -1;
    pointer-events: none;
}
.glow-1 {
    top: -10%; left: -10%;
    width: 60vw; height: 60vh;
    background: radial-gradient(circle, rgba(37,99,235,0.15) 0%, transparent 70%);
}
.glow-2 {
    bottom: -20%; right: -10%;
    width: 70vw; height: 70vh;
    background: radial-gradient(circle, rgba(14,165,233,0.1) 0%, transparent 70%);
}
.glow-3 {
    top: 40%; left: 30%;
    width: 40vw; height: 40vh;
    background: radial-gradient(circle, rgba(59,130,246,0.06) 0%, transparent 70%);
}

/* ── Layout ── */
.container {
    width: 100%;
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 40px;
}

.header {
    width: 100%;
    padding: 24px 0;
    z-index: 100;
    flex-shrink: 0;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
}

.logo {
    font-family: var(--font-heading);
    font-size: 1.125rem;
    font-weight: 800;
    letter-spacing: 2px;
    display: flex;
    align-items: center;
    gap: 12px;
    color: #fff;
}

.status-badge {
    font-family: var(--font-heading);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    padding: 8px 16px;
    border: 1px solid var(--border-color);
    border-radius: 30px;
    color: var(--text-muted);
    font-weight: 600;
    background: rgba(255,255,255,0.03);
    display: flex;
    align-items: center;
    gap: 8px;
    backdrop-filter: blur(10px);
}

.pulse-dot {
    width: 6px; height: 6px;
    background-color: var(--accent-light);
    border-radius: 50%;
    box-shadow: 0 0 10px var(--accent-light);
}


.main-content {
    flex: 1;
    display: flex;
    align-items: center;
    padding: 48px 0;
}

.layout-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 60px;
    align-items: center;
}

/* ── Hero Text ── */
.hero-eyebrow {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
    font-family: var(--font-heading);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--accent-light);
}
.eyebrow-line {
    display: block;
    width: 32px; height: 2px;
    background: var(--accent-light);
    border-radius: 2px;
}

.hero-title {
    font-family: var(--font-heading);
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    font-weight: 800;
    line-height: 1.05;
    margin-bottom: 24px;
    letter-spacing: -0.02em;
}
.title-line { 
    display: block; 
    opacity: 0;
    transform: translateY(20px);
    animation: textFadeIn 0.8s ease-out forwards;
}

.title-line[data-delay="0"] { animation-delay: 0.1s; }
.title-line[data-delay="1"] { animation-delay: 0.3s; }
.title-line[data-delay="2"] { animation-delay: 0.5s; }

@keyframes textFadeIn {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.highlight {
    background: linear-gradient(135deg, #fff 0%, var(--accent-light) 50%, var(--accent-primary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 4px 12px rgba(59,130,246,0.2));
}

.hero-subtitle {
    font-size: 1.125rem;
    color: var(--text-muted);
    margin-bottom: 40px;
    max-width: 480px;
    line-height: 1.7;
}

.benefits-row {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}
.benefit-chip {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 18px;
    border-radius: 40px;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    font-family: var(--font-heading);
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--text-main);
    transition: background 0.25s ease, border-color 0.25s ease;
}
.benefit-chip svg { color: var(--accent-light); flex-shrink: 0; }
.benefit-chip:hover {
    background: rgba(59,130,246,0.1);
    border-color: rgba(96,165,250,0.3);
}

/* ── Story Visual ── */
.story-wrapper {
    position: relative;
    width: 100%;
}
.story-wrapper::before {
    content: '';
    position: absolute;
    inset: -20px;
    background: radial-gradient(circle at center, var(--accent-glow) 0%, transparent 70%);
    opacity: 0.15;
    z-index: -1;
    border-radius: 50%;
    pointer-events: none;
}

.story-visual { width: 100%; position: relative; }

.story-svg {
    width: 100%;
    height: auto;
    display: block;
    filter: drop-shadow(0 20px 30px rgba(0,0,0,0.5));
}

/* ── Scene Transitions ── */
/* All scenes stacked — we only adjust opacity */
.scene {
    transition: opacity 0.7s ease;
}

.scene-text {
    font-family: var(--font-heading);
    font-size: 24px;
    font-weight: 600;
    letter-spacing: 1px;
    opacity: 1;
}

/* ── Scene Indicator Dots ── */
/* ── Footer ── */
.footer {
    padding: 24px 0;
    border-top: 1px solid rgba(255,255,255,0.05);
    flex-shrink: 0;
}
.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
}
.footer-brand {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.875rem;
    letter-spacing: 1px;
    color: var(--text-muted);
}
.footer-note {
    color: rgba(255,255,255,0.3);
    font-size: 0.875rem;
}

/* ── Responsive ── */
@media (max-width: 1024px) {
    .container { padding: 0 32px; }
    .layout-grid { gap: 40px; }
}

@media (max-width: 768px) {
    .container { padding: 0 20px; }
    .main-content { padding: 32px 0; }
    .layout-grid {
        grid-template-columns: 1fr;
        gap: 36px;
        text-align: center;
    }
    .hero-eyebrow { justify-content: center; }
    .hero-subtitle { margin-left: auto; margin-right: auto; }
    .benefits-row { justify-content: center; }
    .story-wrapper { max-width: 500px; margin: 0 auto; }
}

@media (max-width: 480px) {
    .logo { font-size: 0.95rem; letter-spacing: 1px; }
    .hero-title { font-size: clamp(1.9rem, 8vw, 3rem); }
    .hero-subtitle { font-size: 1rem; }
    .status-badge { font-size: 0.65rem; padding: 6px 12px; }
}

@media (prefers-reduced-motion: reduce) {
    * { animation: none !important; transition: none !important; }
}
