/* ============================================
   ORPHEO LANDING PAGE - DARK CINEMATIC THEME
   Late-night satire meets theatrical noir
   ============================================ */

:root {
    /* Core Colors - Deep navy with paper-cut teal layers */
    --void: #0d1526;
    --night: #19243E;
    --dark: #152036;
    --surface: #18656F;
    --surface-light: #1f7a84;
    --border: #255561;

    /* Text */
    --text: #FFFFFF;
    --text-muted: #A2D2D7;
    --text-dim: #5a8e96;

    /* Accent - Golden Sun */
    --accent: #EFCC58;
    --accent-bright: #f5d978;
    --accent-dim: #c4a540;
    --accent-glow: rgba(239, 204, 88, 0.4);

    /* Secondary accent - Coral Clay */
    --electric: #E77A75;
    --electric-glow: rgba(231, 122, 117, 0.3);

    /* Tertiary accent - Mint Leaf */
    --mint: #3C9C98;

    /* Typography */
    --font-display: 'Syne', sans-serif;
    --font-body: 'Libre Baskerville', Georgia, serif;
    --font-mono: 'JetBrains Mono', monospace;

    /* Spacing */
    --space-xs: 0.5rem;
    --space-sm: 1rem;
    --space-md: 2rem;
    --space-lg: 4rem;
    --space-xl: 8rem;

    /* Animation */
    --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
    --ease-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;
    font-size: 16px;
    scroll-padding-top: 100px;
}

body {
    font-family: var(--font-body);
    background: var(--void);
    color: var(--text);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    cursor: none;
}

@media (pointer: coarse) {
    body { cursor: auto; }
    .cursor-glow { display: none; }
}

::selection {
    background: var(--accent);
    color: var(--void);
}

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

/* ============================================
   BACKGROUND EFFECTS
   ============================================ */
.bg-grid {
    position: fixed;
    inset: 0;
    background-image:
        linear-gradient(rgba(255,255,255,0.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.02) 1px, transparent 1px);
    background-size: 60px 60px;
    pointer-events: none;
    z-index: 0;
}

.bg-glow {
    position: fixed;
    width: 800px;
    height: 800px;
    border-radius: 50%;
    filter: blur(150px);
    pointer-events: none;
    z-index: 0;
    opacity: 0.5;
}

.bg-glow-1 {
    top: -400px;
    right: -200px;
    background: radial-gradient(circle, var(--accent-glow), transparent 70%);
    animation: glowFloat 20s ease-in-out infinite;
}

.bg-glow-2 {
    bottom: -400px;
    left: -200px;
    background: radial-gradient(circle, var(--electric-glow), transparent 70%);
    animation: glowFloat 25s ease-in-out infinite reverse;
}

@keyframes glowFloat {
    0%, 100% { transform: translate(0, 0); }
    50% { transform: translate(50px, 30px); }
}

.noise-overlay {
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 9998;
    opacity: 0.03;
    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'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* Custom Cursor */
.cursor-glow {
    position: fixed;
    width: 20px;
    height: 20px;
    background: var(--accent);
    border-radius: 50%;
    pointer-events: none;
    z-index: 9999;
    mix-blend-mode: difference;
    transform: translate(-50%, -50%);
    transition: transform 0.15s var(--ease-out), width 0.3s, height 0.3s;
}

.cursor-glow.hover {
    width: 50px;
    height: 50px;
    background: var(--accent-bright);
}

/* ============================================
   NAVIGATION
   ============================================ */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: var(--space-sm) var(--space-md);
    background: rgba(13, 21, 38, 0.85);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border);
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
}

.logo-icon {
    color: var(--accent);
    font-size: 1.5rem;
}

.logo-text {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 700;
    letter-spacing: 0.1em;
}

.nav-links {
    display: flex;
    gap: var(--space-md);
}

.nav-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-family: var(--font-display);
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--text-muted);
    transition: color 0.3s var(--ease-out);
    cursor: pointer;
}

.nav-link-num {
    font-family: var(--font-mono);
    font-size: 0.7rem;
    color: var(--text-dim);
}

.nav-link:hover {
    color: var(--accent);
}

.nav-cta {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-family: var(--font-display);
    font-size: 0.85rem;
    font-weight: 600;
    padding: 0.75em 1.5em;
    background: var(--accent);
    color: var(--void);
    border-radius: 4px;
    transition: all 0.3s var(--ease-out);
    cursor: pointer;
}

.nav-cta:hover {
    background: var(--accent-bright);
    transform: translateY(-2px);
    box-shadow: 0 10px 40px var(--accent-glow);
}

/* Mobile Toggle */
.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.mobile-toggle span {
    width: 24px;
    height: 2px;
    background: var(--text);
    transition: all 0.3s var(--ease-out);
}

.mobile-toggle.active span:first-child {
    transform: rotate(45deg) translate(6px, 6px);
}

.mobile-toggle.active span:last-child {
    transform: rotate(-45deg) translate(6px, -6px);
}

/* Mobile Menu */
.mobile-menu {
    display: none;
    position: fixed;
    top: 65px;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--night);
    z-index: 999;
    padding: var(--space-lg) var(--space-md);
    transform: translateY(-100%);
    opacity: 0;
    transition: all 0.5s var(--ease-out);
}

.mobile-menu.active {
    transform: translateY(0);
    opacity: 1;
}

.mobile-menu-inner {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
}

.mobile-link {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 700;
    color: var(--text);
    transition: color 0.3s;
}

.mobile-link:hover, .mobile-link.cta {
    color: var(--accent);
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
    min-height: 100vh;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: var(--space-lg);
    padding: calc(80px + var(--space-lg)) var(--space-md) var(--space-lg);
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
}

.hero-content {
    position: relative;
    z-index: 10;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.5em 1em;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 100px;
    font-family: var(--font-mono);
    font-size: 0.7rem;
    letter-spacing: 0.1em;
    color: var(--text-muted);
    margin-bottom: var(--space-md);
    opacity: 0;
    animation: fadeUp 0.8s var(--ease-out) 0.2s forwards;
}

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

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

.hero-title {
    font-family: var(--font-display);
    font-size: clamp(3.5rem, 10vw, 7rem);
    font-weight: 800;
    line-height: 0.95;
    letter-spacing: -0.03em;
    margin-bottom: var(--space-md);
}

.title-line {
    display: block;
    overflow: hidden;
}

.title-word {
    display: inline-block;
    opacity: 0;
    transform: translateY(100%);
    animation: wordSlide 0.8s var(--ease-out) forwards;
}

.title-word[data-delay="0"] { animation-delay: 0.3s; }
.title-word[data-delay="1"] { animation-delay: 0.4s; }
.title-word[data-delay="2"] { animation-delay: 0.5s; }

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

.title-accent {
    color: var(--accent);
    font-style: italic;
}

.hero-desc {
    font-size: 1.125rem;
    line-height: 1.8;
    color: var(--text-muted);
    max-width: 480px;
    margin-bottom: var(--space-md);
    opacity: 0;
    animation: fadeUp 0.8s var(--ease-out) 0.7s forwards;
}

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

.hero-actions {
    display: flex;
    gap: var(--space-sm);
    margin-bottom: var(--space-lg);
    opacity: 0;
    transform: translateY(20px);
    animation: fadeUp 0.8s var(--ease-out) 0.9s forwards;
}

.btn-primary {
    position: relative;
    display: inline-flex;
    align-items: center;
    padding: 1em 2em;
    background: var(--accent);
    color: var(--void);
    font-family: var(--font-display);
    font-size: 0.9rem;
    font-weight: 600;
    border-radius: 4px;
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.3s var(--ease-out), box-shadow 0.3s;
}

.btn-bg {
    position: absolute;
    inset: 0;
    background: var(--accent-bright);
    transform: translateY(100%);
    transition: transform 0.4s var(--ease-out);
}

.btn-primary:hover .btn-bg {
    transform: translateY(0);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 50px var(--accent-glow);
}

.btn-content {
    position: relative;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    z-index: 1;
}

.btn-ghost {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1em 1.5em;
    font-family: var(--font-display);
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text);
    border: 1px solid var(--border);
    border-radius: 4px;
    transition: all 0.3s var(--ease-out);
    cursor: pointer;
}

.btn-ghost:hover {
    border-color: var(--accent);
    color: var(--accent);
}

.btn-arrow {
    transition: transform 0.3s var(--ease-out);
}

.btn-ghost:hover .btn-arrow {
    transform: translateX(4px);
}

/* Hero Stats */
.hero-stats {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    opacity: 0;
    animation: fadeUp 0.8s var(--ease-out) 1.1s forwards;
}

.stat {
    text-align: left;
}

.stat-value {
    display: block;
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 800;
    color: var(--text);
    line-height: 1;
}

.stat-label {
    font-family: var(--font-mono);
    font-size: 0.7rem;
    color: var(--text-dim);
    letter-spacing: 0.05em;
}

.stat-divider {
    width: 1px;
    height: 40px;
    background: var(--border);
}

/* Hero Visual */
.hero-visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 600px;
}

.phone-container {
    position: relative;
}

.phone-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, var(--accent-glow), transparent 70%);
    filter: blur(60px);
    animation: phoneGlow 4s ease-in-out infinite;
}

@keyframes phoneGlow {
    0%, 100% { opacity: 0.6; transform: translate(-50%, -50%) scale(1); }
    50% { opacity: 1; transform: translate(-50%, -50%) scale(1.1); }
}

.phone {
    position: relative;
    width: 280px;
    height: 580px;
    background: linear-gradient(145deg, var(--surface-light), var(--dark));
    border-radius: 44px;
    padding: 12px;
    box-shadow:
        0 0 0 1px var(--border),
        0 50px 100px rgba(0,0,0,0.5),
        inset 0 1px 0 rgba(255,255,255,0.05);
    opacity: 0;
    transform: translateY(40px) rotate(5deg);
    animation: phoneReveal 1s var(--ease-out) 0.6s forwards;
}

@keyframes phoneReveal {
    to {
        opacity: 1;
        transform: translateY(0) rotate(5deg);
    }
}

.phone-screen {
    width: 100%;
    height: 100%;
    background: var(--night);
    border-radius: 36px;
    overflow: hidden;
}

.app-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 50px 20px 15px;
    border-bottom: 1px solid var(--border);
}

.app-logo {
    font-family: var(--font-display);
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--accent);
}

.app-time {
    font-family: var(--font-mono);
    font-size: 0.75rem;
    color: var(--text-muted);
}

.app-content {
    padding: 15px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.story-card {
    background: var(--surface);
    border-radius: 12px;
    padding: 15px;
    border: 1px solid var(--border);
    transition: transform 0.3s var(--ease-out);
}

.story-card.story-featured {
    background: linear-gradient(135deg, var(--surface-light), var(--surface));
    border-color: var(--accent-dim);
}

.story-badge {
    display: inline-block;
    font-family: var(--font-mono);
    font-size: 0.55rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    padding: 0.3em 0.6em;
    background: var(--accent);
    color: var(--void);
    border-radius: 3px;
    margin-bottom: 8px;
}

.story-cat {
    font-family: var(--font-mono);
    font-size: 0.6rem;
    letter-spacing: 0.1em;
    color: var(--accent);
    margin-bottom: 6px;
}

.story-title {
    font-family: var(--font-display);
    font-size: 0.85rem;
    font-weight: 600;
    line-height: 1.3;
    color: var(--text);
}

.story-meta {
    display: flex;
    gap: 0.5rem;
    margin-top: 10px;
    font-family: var(--font-mono);
    font-size: 0.6rem;
    color: var(--text-dim);
}

/* Floating Cards */
.floating-cards {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.float-card {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75em 1em;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 8px;
    font-family: var(--font-mono);
    font-size: 0.75rem;
    color: var(--text-muted);
    opacity: 0;
    animation: floatIn 0.8s var(--ease-out) forwards;
    box-shadow: 0 10px 40px rgba(0,0,0,0.3);
}

.fc-1 {
    top: 5%;
    right: -30px;
    animation-delay: 1.2s;
}

.fc-2 {
    bottom: 35%;
    left: -50px;
    animation-delay: 1.4s;
}

.fc-3 {
    bottom: 10%;
    right: -20px;
    animation-delay: 1.6s;
}

@keyframes floatIn {
    to { opacity: 1; }
}

.fc-icon {
    font-size: 1.25rem;
}

/* Scroll Hint */
.scroll-hint {
    position: absolute;
    bottom: var(--space-md);
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    font-family: var(--font-mono);
    font-size: 0.7rem;
    letter-spacing: 0.1em;
    color: var(--text-dim);
    opacity: 0;
    animation: fadeUp 0.8s var(--ease-out) 1.5s forwards;
}

.scroll-line {
    width: 1px;
    height: 50px;
    background: var(--border);
    position: relative;
    overflow: hidden;
}

.scroll-dot {
    position: absolute;
    top: 0;
    width: 100%;
    height: 10px;
    background: var(--accent);
    animation: scrollDot 2s ease-in-out infinite;
}

@keyframes scrollDot {
    0% { top: 0; }
    50% { top: 100%; }
    100% { top: 0; }
}

/* ============================================
   TICKER
   ============================================ */
.ticker {
    background: var(--accent);
    padding: 0.75rem 0;
    overflow: hidden;
}

.ticker-track {
    display: flex;
}

.ticker-content {
    display: flex;
    gap: var(--space-md);
    animation: ticker 25s linear infinite;
    white-space: nowrap;
    font-family: var(--font-display);
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    color: var(--void);
}

.ticker-dot {
    opacity: 0.5;
}

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

/* ============================================
   SECTION INTRO
   ============================================ */
.section-intro {
    text-align: center;
    margin-bottom: var(--space-lg);
    padding: 0 var(--space-md);
}

.section-num {
    display: inline-block;
    font-family: var(--font-mono);
    font-size: 0.75rem;
    letter-spacing: 0.2em;
    color: var(--accent);
    margin-bottom: var(--space-sm);
    padding: 0.5em 1em;
    border: 1px solid var(--accent-dim);
    border-radius: 100px;
}

.section-title {
    margin-bottom: var(--space-sm);
}

.title-small {
    display: block;
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 400;
    font-style: italic;
    color: var(--text-muted);
}

.title-big {
    display: block;
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 800;
    color: var(--text);
}

.section-desc {
    font-size: 1rem;
    color: var(--text-muted);
    max-width: 500px;
    margin: 0 auto;
}

/* ============================================
   FEATURES
   ============================================ */
.features {
    padding: var(--space-xl) var(--space-md);
    max-width: 1200px;
    margin: 0 auto;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-md);
}

.feature-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: var(--space-md);
    position: relative;
    overflow: hidden;
    transition: all 0.4s var(--ease-out);
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--accent), var(--electric));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s var(--ease-out);
}

.feature-card:hover {
    border-color: var(--accent-dim);
    transform: translateY(-5px);
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}

.feature-card:hover::before {
    transform: scaleX(1);
}

.feature-card.feature-hero {
    grid-column: span 3;
    display: grid;
    grid-template-columns: auto 1fr;
    gap: var(--space-md);
    align-items: center;
}

.feature-visual {
    position: relative;
    width: 150px;
    height: 150px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.visual-orb {
    position: absolute;
    width: 120px;
    height: 120px;
    background: radial-gradient(circle, var(--accent-glow), transparent 70%);
    border-radius: 50%;
    animation: orbPulse 3s ease-in-out infinite;
}

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

.visual-icon {
    font-size: 3rem;
    position: relative;
    z-index: 1;
}

.feature-content h3 {
    font-family: var(--font-display);
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.feature-content p {
    color: var(--text-muted);
    max-width: 500px;
}

.feature-tag {
    display: inline-block;
    margin-top: var(--space-sm);
    font-family: var(--font-mono);
    font-size: 0.65rem;
    letter-spacing: 0.1em;
    padding: 0.4em 0.8em;
    background: var(--accent-dim);
    color: var(--accent-bright);
    border-radius: 4px;
}

.feature-icon-small {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--surface-light);
    border-radius: 8px;
    margin-bottom: var(--space-sm);
    color: var(--accent);
    transition: all 0.3s var(--ease-out);
}

.feature-card:hover .feature-icon-small {
    background: var(--accent);
    color: var(--void);
}

.feature-card h3 {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

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

/* ============================================
   HOW IT WORKS
   ============================================ */
.how-section {
    padding: var(--space-xl) var(--space-md);
    background: linear-gradient(180deg, var(--void) 0%, var(--night) 50%, var(--void) 100%);
}

.how-steps {
    max-width: 900px;
    margin: 0 auto;
}

.how-step {
    display: flex;
    gap: var(--space-md);
    margin-bottom: var(--space-lg);
}

.step-num {
    display: flex;
    flex-direction: column;
    align-items: center;
    flex-shrink: 0;
}

.step-num span {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--accent);
    border: 2px solid var(--accent);
    border-radius: 50%;
    background: var(--void);
    transition: all 0.4s var(--ease-out);
}

.how-step:hover .step-num span {
    background: var(--accent);
    color: var(--void);
    transform: scale(1.1);
}

.step-line {
    flex: 1;
    width: 2px;
    background: linear-gradient(to bottom, var(--accent), transparent);
    margin-top: 10px;
}

.step-num.last .step-line {
    display: none;
}

.step-card {
    flex: 1;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: var(--space-md);
    transition: all 0.4s var(--ease-out);
}

.step-card:hover {
    border-color: var(--accent-dim);
}

.step-visual {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    margin-bottom: var(--space-sm);
    height: 60px;
}

.sv-newspaper {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.sv-line {
    height: 4px;
    background: var(--text-muted);
    border-radius: 2px;
    width: 60px;
}

.sv-line.short {
    width: 40px;
}

.sv-arrow {
    color: var(--accent);
    animation: arrowBounce 1.5s ease-in-out infinite;
}

@keyframes arrowBounce {
    0%, 100% { transform: translateX(0); }
    50% { transform: translateX(5px); }
}

.sv-brain {
    position: relative;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.sv-pulse {
    position: absolute;
    inset: 0;
    border: 2px solid var(--accent);
    border-radius: 50%;
    animation: brainPulse 2s ease-out infinite;
}

.sv-pulse.delay {
    animation-delay: 1s;
}

@keyframes brainPulse {
    0% { transform: scale(1); opacity: 1; }
    100% { transform: scale(1.5); opacity: 0; }
}

.sv-brain span {
    font-size: 2rem;
}

.sv-phone {
    width: 40px;
    height: 60px;
    background: var(--surface-light);
    border: 2px solid var(--border);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.sv-screen span {
    font-size: 1.5rem;
    animation: phoneBounce 2s ease-in-out infinite;
}

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

.step-card h3 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.step-card p {
    color: var(--text-muted);
}

/* Quote */
.how-quote {
    max-width: 700px;
    margin: var(--space-xl) auto 0;
    text-align: center;
    padding: var(--space-lg);
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 16px;
    position: relative;
}

.how-quote blockquote {
    position: relative;
}

.quote-mark {
    font-family: var(--font-display);
    font-size: 4rem;
    color: var(--accent);
    line-height: 0;
    opacity: 0.5;
}

.how-quote p {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 500;
    font-style: italic;
    line-height: 1.5;
    margin: var(--space-sm) 0;
}

.how-quote cite {
    display: block;
    margin-top: var(--space-sm);
    font-family: var(--font-mono);
    font-size: 0.8rem;
    font-style: normal;
    color: var(--text-dim);
}

/* ============================================
   CATEGORIES
   ============================================ */
.categories {
    padding: var(--space-xl) var(--space-md);
    max-width: 1200px;
    margin: 0 auto;
}

.cat-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-md);
}

.cat-card {
    position: relative;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: var(--space-md);
    overflow: hidden;
    cursor: pointer;
    transition: all 0.4s var(--ease-out);
}

.cat-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--accent-glow), transparent);
    opacity: 0;
    transition: opacity 0.4s;
}

.cat-card:hover .cat-bg {
    opacity: 0.1;
}

.cat-card:hover {
    border-color: var(--accent);
    transform: translateY(-5px) scale(1.02);
}

.cat-content {
    position: relative;
    z-index: 1;
}

.cat-emoji {
    font-size: 2.5rem;
    display: block;
    margin-bottom: var(--space-sm);
    transition: transform 0.4s var(--ease-spring);
}

.cat-card:hover .cat-emoji {
    transform: scale(1.2) rotate(-5deg);
}

.cat-card h3 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.cat-sample {
    font-size: 0.9rem;
    font-style: italic;
    color: var(--text-muted);
    line-height: 1.5;
}

.cat-hover-line {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--accent);
    transform: scaleX(0);
    transition: transform 0.4s var(--ease-out);
}

.cat-card:hover .cat-hover-line {
    transform: scaleX(1);
}

/* ============================================
   TRUST
   ============================================ */
.trust {
    padding: var(--space-xl) var(--space-md);
    background: var(--surface);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.trust-content {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
}

.trust-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    background: var(--surface-light);
    border-radius: 50%;
    margin-bottom: var(--space-md);
    color: var(--accent);
}

.trust h2 {
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: var(--space-sm);
}

.trust p {
    font-size: 1.1rem;
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: var(--space-md);
}

.trust-badges {
    display: flex;
    justify-content: center;
    gap: var(--space-md);
    flex-wrap: wrap;
}

.trust-badge {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-family: var(--font-mono);
    font-size: 0.85rem;
    color: var(--text);
}

.trust-badge span:first-child {
    color: var(--accent);
    font-weight: bold;
}

/* ============================================
   DOWNLOAD
   ============================================ */
.download {
    position: relative;
    padding: var(--space-xl) var(--space-md);
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: var(--space-lg);
    max-width: 1200px;
    margin: 0 auto;
    overflow: hidden;
}

.download-bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
}

.download-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
}

.orb-1 {
    width: 500px;
    height: 500px;
    top: -200px;
    left: -100px;
    background: var(--accent-glow);
    opacity: 0.3;
}

.orb-2 {
    width: 400px;
    height: 400px;
    bottom: -200px;
    right: -100px;
    background: var(--electric-glow);
    opacity: 0.2;
}

.download-content {
    position: relative;
    z-index: 1;
}

.download-badge {
    display: inline-block;
    font-family: var(--font-mono);
    font-size: 0.7rem;
    letter-spacing: 0.15em;
    padding: 0.5em 1em;
    background: var(--accent);
    color: var(--void);
    border-radius: 100px;
    margin-bottom: var(--space-md);
}

.download h2 {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: var(--space-sm);
}

.download h2 span {
    display: block;
}

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

.download > .download-content > p {
    font-size: 1.1rem;
    color: var(--text-muted);
    max-width: 400px;
    margin-bottom: var(--space-md);
}

.download-btn {
    display: inline-flex;
    align-items: center;
    gap: var(--space-sm);
    padding: 1em 2em;
    background: var(--text);
    color: var(--void);
    border-radius: 12px;
    transition: all 0.4s var(--ease-out);
}

.download-btn:hover {
    background: var(--accent);
    transform: translateY(-3px);
    box-shadow: 0 20px 60px var(--accent-glow);
}

.download-btn-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.download-btn-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.dbt-small {
    font-size: 0.7rem;
    opacity: 0.7;
}

.dbt-large {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 700;
}

.download-meta {
    display: flex;
    gap: 0.75rem;
    margin-top: var(--space-sm);
    font-family: var(--font-mono);
    font-size: 0.8rem;
    color: var(--text-dim);
}

/* Waitlist Form */
.waitlist-toggle {
    display: inline-flex;
    gap: 0;
    margin-bottom: var(--space-md);
    border: 1px solid var(--border);
    border-radius: 6px;
    overflow: hidden;
}

.toggle-btn {
    padding: 0.6em 1.5em;
    font-family: var(--font-display);
    font-size: 0.85rem;
    font-weight: 500;
    background: transparent;
    color: var(--text-muted);
    border: none;
    cursor: pointer;
    transition: all 0.3s var(--ease-out);
    letter-spacing: 0.02em;
}

.toggle-btn.active {
    background: var(--accent);
    color: var(--void);
}

.toggle-btn:hover:not(.active) {
    color: var(--text);
    background: var(--surface-light);
}

.waitlist-form {
    margin-bottom: var(--space-sm);
}

.hp-field {
    position: absolute;
    left: -9999px;
    opacity: 0;
    height: 0;
    width: 0;
    overflow: hidden;
}

.waitlist-input-group {
    display: flex;
    gap: 0;
    max-width: 480px;
}

.waitlist-input {
    flex: 1;
    padding: 1em 1.25em;
    background: var(--surface);
    border: 1px solid var(--border);
    border-right: none;
    border-radius: 6px 0 0 6px;
    color: var(--text);
    font-family: var(--font-body);
    font-size: 0.95rem;
    outline: none;
    transition: border-color 0.3s var(--ease-out);
}

.waitlist-input:focus {
    border-color: var(--accent);
}

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

.waitlist-submit {
    padding: 1em 2em;
    background: var(--accent);
    color: var(--void);
    font-family: var(--font-display);
    font-size: 0.9rem;
    font-weight: 600;
    border: none;
    border-radius: 0 6px 6px 0;
    cursor: pointer;
    transition: all 0.3s var(--ease-out);
    white-space: nowrap;
    letter-spacing: 0.02em;
}

.waitlist-submit:hover {
    background: var(--accent-bright);
    box-shadow: 0 10px 40px var(--accent-glow);
}

.waitlist-submit:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.submit-loading {
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.spinner {
    display: inline-block;
    width: 18px;
    height: 18px;
    border: 2px solid var(--void);
    border-top-color: transparent;
    border-radius: 50%;
    animation: spin 0.6s linear infinite;
}

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

.waitlist-message {
    margin-top: var(--space-sm);
    font-family: var(--font-mono);
    font-size: 0.8rem;
    padding: 0.75em 1em;
    border-radius: 6px;
    max-width: 480px;
}

.waitlist-message.success {
    background: rgba(34, 197, 94, 0.1);
    color: #22c55e;
    border: 1px solid rgba(34, 197, 94, 0.2);
}

.waitlist-message.error {
    background: rgba(239, 68, 68, 0.1);
    color: #ef4444;
    border: 1px solid rgba(239, 68, 68, 0.2);
}

.waitlist-message.info {
    background: rgba(245, 158, 11, 0.1);
    color: var(--accent);
    border: 1px solid rgba(245, 158, 11, 0.2);
}

/* Download Visual */
.download-visual {
    position: relative;
    z-index: 1;
    display: flex;
    justify-content: center;
}

.dv-phone {
    width: 200px;
    height: 400px;
    background: linear-gradient(145deg, var(--surface-light), var(--dark));
    border-radius: 36px;
    padding: 10px;
    box-shadow:
        0 0 0 1px var(--border),
        0 40px 100px rgba(0,0,0,0.5);
}

.dv-screen {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--accent) 0%, var(--accent-dim) 100%);
    border-radius: 28px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.dv-logo {
    font-size: 4rem;
    color: var(--void);
}

.dv-text {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 800;
    letter-spacing: 0.15em;
    color: var(--void);
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
    background: var(--night);
    border-top: 1px solid var(--border);
    padding: var(--space-xl) var(--space-md) var(--space-md);
}

.footer-top {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    gap: var(--space-lg);
    padding-bottom: var(--space-lg);
    border-bottom: 1px solid var(--border);
    margin-bottom: var(--space-md);
}

.footer-logo {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--accent);
    display: block;
    margin-bottom: var(--space-sm);
}

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

.footer-links {
    display: flex;
    gap: var(--space-xl);
}

.footer-col {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-col-title {
    font-family: var(--font-mono);
    font-size: 0.7rem;
    letter-spacing: 0.15em;
    color: var(--text-muted);
    margin-bottom: 0.5rem;
}

.footer-col a {
    font-size: 0.9rem;
    color: var(--text-dim);
    transition: color 0.3s;
}

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

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: var(--space-sm);
    font-size: 0.8rem;
    color: var(--text-dim);
}

.footer-joke {
    font-style: italic;
    max-width: 500px;
    text-align: right;
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
    .hero {
        grid-template-columns: 1fr;
        text-align: center;
        gap: var(--space-md);
    }

    .hero-desc {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-actions {
        justify-content: center;
    }

    .hero-stats {
        justify-content: center;
    }

    .hero-visual {
        height: 450px;
    }

    .floating-cards {
        display: none;
    }

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

    .feature-card.feature-hero {
        grid-column: span 2;
        grid-template-columns: 1fr;
        text-align: center;
    }

    .feature-visual {
        margin: 0 auto;
    }

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

    .download {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .download-content p {
        margin-left: auto;
        margin-right: auto;
    }

    .waitlist-input-group {
        max-width: 100%;
        margin: 0 auto;
    }

    .waitlist-message {
        max-width: 100%;
    }

    .download-visual {
        order: -1;
    }
}

@media (max-width: 768px) {
    .nav-links, .nav-cta {
        display: none;
    }

    .mobile-toggle {
        display: flex;
    }

    .mobile-menu {
        display: block;
    }

    .hero {
        padding-top: calc(60px + var(--space-lg));
        min-height: auto;
        padding-bottom: var(--space-xl);
    }

    .hero-actions {
        flex-direction: column;
    }

    .features-grid,
    .cat-grid {
        grid-template-columns: 1fr;
    }

    .feature-card.feature-hero {
        grid-column: span 1;
    }

    .how-step {
        flex-direction: column;
    }

    .step-num {
        flex-direction: row;
        gap: var(--space-sm);
    }

    .step-line {
        height: 2px;
        width: 100%;
        margin-top: 0;
        margin-left: 10px;
    }

    .footer-top {
        flex-direction: column;
    }

    .footer-links {
        flex-wrap: wrap;
        gap: var(--space-md);
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

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

    .scroll-hint {
        display: none;
    }
}

@media (max-width: 480px) {
    :root {
        --space-md: 1.5rem;
        --space-lg: 3rem;
        --space-xl: 5rem;
    }

    .hero-visual {
        height: 380px;
    }

    .phone {
        width: 240px;
        height: 500px;
    }

    .dv-phone {
        width: 160px;
        height: 320px;
    }

    .dv-logo {
        font-size: 3rem;
    }

    .hero-stats {
        flex-direction: column;
        gap: var(--space-sm);
    }

    .stat-divider {
        width: 40px;
        height: 1px;
    }

    .waitlist-input-group {
        flex-direction: column;
    }

    .waitlist-input {
        border-right: 1px solid var(--border);
        border-radius: 6px 6px 0 0;
        border-bottom: none;
    }

    .waitlist-input:focus {
        border-bottom: none;
    }

    .waitlist-submit {
        border-radius: 0 0 6px 6px;
    }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }

    .ticker-content {
        animation: none;
    }
}
