/* =====================================================
   Zuvi — Cinematic Marketing Site
   Inspired by: NYT Cooking, SideChef, Splendid Table
   ===================================================== */

/* ---------- Tokens ---------- */
:root {
    /* Brand */
    --c-brand: #C2410C;
    --c-brand-light: #FB923C;
    --c-brand-dark: #7C2D12;
    --c-cream: #FFF7ED;
    --c-warm-gray: #F5E9DA;
    --c-text: #0F0A06;
    --c-text-muted: #6B5D4F;

    /* Dark mode */
    --c-bg: #FAFAF7;
    --c-bg-alt: #F5F0E8;
    --c-bg-dark: #0F0A06;
    --c-bg-dark-alt: #1F1A14;
    --c-text-on-dark: #FAFAF7;
    --c-text-muted-on-dark: #B8A892;

    /* Type */
    --font-display: 'Fraunces', Georgia, 'Times New Roman', serif;
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;

    /* Spacing */
    --space-xs: 4px;
    --space-s: 8px;
    --space-m: 16px;
    --space-l: 24px;
    --space-xl: 48px;
    --space-2xl: 96px;
    --space-3xl: 160px;

    /* Animation */
    --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
    --ease-in-out: cubic-bezier(0.65, 0, 0.35, 1);
    --t-fast: 200ms;
    --t-base: 400ms;
    --t-slow: 800ms;
}

/* ---------- Reset & Base ---------- */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

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

body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.6;
    color: var(--c-text);
    background: var(--c-bg);
    overflow-x: hidden;
}

img, video {
    max-width: 100%;
    display: block;
}

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

::selection { background: var(--c-brand); color: white; }

/* ---------- Typography ---------- */
.display {
    font-family: var(--font-display);
    font-weight: 600;
    letter-spacing: -0.02em;
    line-height: 1.05;
    font-size: clamp(48px, 9vw, 140px);
}

.h1 { font-family: var(--font-display); font-size: clamp(36px, 5vw, 72px); line-height: 1.05; letter-spacing: -0.02em; font-weight: 600; }
.h2 { font-family: var(--font-display); font-size: clamp(28px, 4vw, 56px); line-height: 1.1; letter-spacing: -0.01em; font-weight: 600; }
.h3 { font-family: var(--font-display); font-size: clamp(22px, 2.5vw, 32px); line-height: 1.2; font-weight: 600; }
.eyebrow {
    font-family: var(--font-body);
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    font-weight: 600;
    color: var(--c-brand);
}

.lead {
    font-size: clamp(18px, 1.5vw, 22px);
    line-height: 1.55;
    color: var(--c-text-muted);
    max-width: 60ch;
}

/* ---------- Layout ---------- */
.container {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

.section {
    padding: var(--space-2xl) 0;
    position: relative;
}

/* ---------- Navigation ---------- */
.nav-bar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    padding: 20px 32px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background var(--t-base) var(--ease-out);
}

.nav-bar.scrolled {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.nav-bar.on-dark .logo,
.nav-bar.on-dark .nav-link {
    color: white;
}

.nav-bar.scrolled.on-dark {
    background: rgba(15, 10, 6, 0.85);
}

.logo {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 24px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.logo-icon {
    width: 32px;
    height: 32px;
    background: var(--c-brand);
    border-radius: 8px;
    display: grid;
    place-items: center;
    color: white;
    font-size: 18px;
}

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

.nav-link {
    font-weight: 500;
    font-size: 15px;
    transition: color var(--t-fast);
    color: var(--c-text);
}

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

.nav-cta {
    padding: 10px 20px;
    background: var(--c-brand);
    color: white !important;
    border-radius: 100px;
    font-weight: 600;
    font-size: 14px;
    transition: all var(--t-fast);
}

.nav-cta:hover {
    background: var(--c-brand-dark);
    transform: translateY(-1px);
}

@media (max-width: 768px) {
    .nav-links .nav-link:not(.nav-cta) { display: none; }
    .nav-bar { padding: 16px 20px; }
}

/* =====================================================
   CINEMATIC SCROLL SECTION — Zuvi Brand
   Canvas frame-scrub with 180/120/90 frames
   Engine-only (no sci-fi chrome)
   ===================================================== */
.cinematic {
    position: relative;
    height: 500vh;  /* 5x viewport = scroll-budget für alle Frames */
    background: var(--c-bg-dark);
}

.cinematic .sticky {
    position: sticky;
    top: 0;
    width: 100%;
    height: 100vh;
    overflow: hidden;
}

.cinematic canvas {
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.cinematic .vignette {
    position: absolute;
    inset: 0;
    z-index: 2;
    background: linear-gradient(180deg,
        rgba(15, 10, 6, 0.55) 0%,
        rgba(15, 10, 6, 0.15) 40%,
        rgba(15, 10, 6, 0.75) 100%);
    pointer-events: none;
}

/* Overlay layer with text */
.cinematic .overlay {
    position: absolute;
    inset: 0;
    z-index: 3;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 0 8vw;
    color: white;
    pointer-events: none;
}

.cinematic .overlay > * {
    pointer-events: auto;
}

/* Hero overlay has a wider container for multi-line story */
.overlay-hero {
    max-width: 1100px;
}

/* Brand mark — small, subtle, not sci-fi telemetry */
.cinematic .brand-mark {
    position: absolute;
    top: 32px;
    left: 8vw;
    font-family: var(--font-body);
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: rgba(255, 255, 255, 0.6);
    font-weight: 500;
    padding: 6px 14px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 100px;
    backdrop-filter: blur(8px);
    background: rgba(255, 255, 255, 0.05);
}

.cinematic-cook .brand-mark.cook,
.cinematic-showcase .brand-mark.showcase {
    background: rgba(251, 146, 60, 0.15);
    border-color: rgba(251, 146, 60, 0.3);
    color: var(--c-brand-light);
}

/* Reveal-lines for fade-in/out via scroll progress */
.cinematic .reveal-line {
    opacity: 0;
    transform: translateY(30px);
    transition: none; /* engine sets these directly */
    will-change: opacity, transform;
}

.cinematic .reveal-line em {
    font-style: italic;
    color: var(--c-brand-light);
    font-weight: 500;
}

/* Hero: LANDING-ZONE (immer sichtbar) */
.cinematic-hero .hero-landing {
    display: flex;
    flex-direction: column;
    gap: 32px;
    max-width: 900px;
}

.cinematic-hero .hero-title {
    font-family: var(--font-display);
    font-weight: 600;
    font-size: clamp(72px, 13vw, 180px);
    line-height: 0.9;
    letter-spacing: -0.04em;
    color: white;
    max-width: 14ch;
    margin: 0;
}

.cinematic-hero .hero-title em {
    font-style: italic;
    color: var(--c-brand-light);
    font-weight: 500;
}

.cinematic-hero .hero-subtitle {
    font-family: var(--font-body);
    font-size: clamp(18px, 1.6vw, 24px);
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.9);
    max-width: 55ch;
    margin: 0;
    font-weight: 400;
}

.cinematic-hero .hero-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-top: 16px;
}

.cinematic-hero .hero-actions .btn {
    margin: 0;
}

/* SCROLL-OVERLAYS (nur sichtbar beim Scrollen) */
.cinematic-hero .line-problem,
.cinematic-hero .line-solution {
    font-family: var(--font-display);
    font-weight: 600;
    line-height: 0.95;
    letter-spacing: -0.035em;
    color: white;
    max-width: 14ch;
}

.cinematic-hero .line-problem {
    font-size: clamp(56px, 10vw, 140px);
}

.cinematic-hero .line-solution {
    font-size: clamp(48px, 8vw, 120px);
}

.cinematic-hero .line-problem em,
.cinematic-hero .line-solution em {
    font-style: italic;
    color: var(--c-brand-light);
    font-weight: 500;
}

/* FINAL CTA beim Scroll-Ende */
.cinematic-hero .line-final {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
}

.cinematic-hero .cta-tagline {
    font-family: var(--font-display);
    font-style: italic;
    font-weight: 400;
    font-size: clamp(28px, 4vw, 56px);
    line-height: 1.1;
    color: var(--c-brand-light);
    margin: 0;
    letter-spacing: -0.02em;
}

.cinematic-hero .line-final .btn {
    margin-top: 8px;
}

/* Cook + Showcase overlays */
.overlay-cook,
.overlay-showcase {
    align-items: flex-start;
    max-width: 700px;
}

.overlay-cook .reveal-line,
.overlay-showcase .reveal-line {
    font-family: var(--font-display);
    font-weight: 600;
    font-size: clamp(40px, 6vw, 80px);
    line-height: 1.05;
    letter-spacing: -0.02em;
    color: white;
    margin-bottom: 16px;
}

.overlay-cook .reveal-line:not(:first-child),
.overlay-showcase .reveal-line:not(:first-child) {
    font-size: clamp(28px, 3.5vw, 48px);
}

.overlay-cook .reveal-line[data-in="0.30"],
.overlay-showcase .reveal-line[data-in="0.35"] {
    font-size: clamp(18px, 1.5vw, 22px);
    font-family: var(--font-body);
    font-weight: 400;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.85);
    max-width: 50ch;
}

/* Buttons (used in cinematic CTA) */
.btn {
    padding: 16px 32px;
    border-radius: 100px;
    font-weight: 600;
    font-size: 16px;
    transition: all var(--t-fast) var(--ease-out);
    cursor: pointer;
    border: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    font-family: inherit;
}

.btn-primary {
    background: var(--c-brand);
    color: white;
}

.btn-primary:hover {
    background: var(--c-brand-light);
    transform: translateY(-2px);
    box-shadow: 0 10px 40px rgba(194, 65, 12, 0.4);
}

.btn-ghost {
    background: rgba(255, 255, 255, 0.08);
    color: white;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.btn-ghost:hover {
    background: rgba(255, 255, 255, 0.15);
}

/* Brand chrome (subtle progress + scene counter) — bottom-left, not corners */
.cinematic .brand-chrome {
    position: absolute;
    bottom: 32px;
    left: 8vw;
    z-index: 4;
    display: flex;
    align-items: center;
    gap: 16px;
    color: rgba(255, 255, 255, 0.7);
    font-family: var(--font-body);
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    font-weight: 500;
}

.cinematic .chrome-step {
    font-variant-numeric: tabular-nums;
}

.cinematic .progress {
    width: 200px;
    height: 2px;
    background: rgba(255, 255, 255, 0.15);
    overflow: hidden;
    border-radius: 1px;
}

.cinematic .progress-fill {
    width: 100%;
    height: 100%;
    background: var(--c-brand);
    transform-origin: left;
    transform: scaleX(0);
    will-change: transform;
}

.cinematic .scroll-hint {
    position: absolute;
    bottom: 32px;
    right: 8vw;
    z-index: 4;
    color: rgba(255, 255, 255, 0.5);
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    transition: opacity 0.4s ease;
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
    .cinematic { height: auto; }
    .cinematic .sticky { position: relative; height: 80vh; }
    .cinematic .reveal-line { opacity: 1; transform: none; }
}

/* Mobile */
@media (max-width: 768px) {
    .cinematic { height: 400vh; }
    .cinematic .overlay { padding: 0 24px; }
    .cinematic .brand-mark { left: 24px; top: 20px; }
    .cinematic .brand-chrome { left: 24px; bottom: 20px; }
    .cinematic .progress { width: 120px; }
    .cinematic .scroll-hint { right: 24px; bottom: 20px; }
    .cinematic-hero .hero-title {
        font-size: clamp(56px, 17vw, 110px);
    }
    .cinematic-hero .hero-subtitle {
        font-size: 16px;
    }
    .cinematic-hero .line-problem {
        font-size: clamp(40px, 13vw, 80px);
    }
    .cinematic-hero .line-solution {
        font-size: clamp(36px, 11vw, 70px);
    }
    .cinematic-hero .cta-tagline {
        font-size: clamp(20px, 6vw, 32px);
    }
}

/* =====================================================
   (old hero styles below — kept for compatibility)
   ===================================================== */
.hero {
    height: 100vh;
    min-height: 600px;
    position: relative;
    overflow: hidden;
    background: var(--c-bg-dark);
    display: flex;
    align-items: flex-end;
}

/* =====================================================
   STORY SECTIONS — Scroll Storytelling
   ===================================================== */
.story-section {
    padding: var(--space-3xl) 0;
    position: relative;
}

.story-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 96px;
    align-items: center;
}

.story-grid.reverse { direction: rtl; }
.story-grid.reverse > * { direction: ltr; }

@media (max-width: 900px) {
    .story-grid { grid-template-columns: 1fr; gap: 48px; }
    .story-grid.reverse { direction: ltr; }
}

.story-content .eyebrow { margin-bottom: 16px; }
.story-content .h2 { margin-bottom: 24px; }
.story-content p { font-size: 18px; color: var(--c-text-muted); margin-bottom: 24px; max-width: 50ch; }

.story-visual {
    aspect-ratio: 4 / 5;
    border-radius: 24px;
    overflow: hidden;
    background: var(--c-warm-gray);
    position: relative;
    box-shadow: 0 30px 60px -20px rgba(0,0,0,0.15);
}

.story-visual img,
.story-visual video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.story-visual-floating {
    position: absolute;
    background: white;
    padding: 20px 24px;
    border-radius: 16px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.2);
    z-index: 5;
}

/* =====================================================
   BIG TYPE QUOTE SECTION
   ===================================================== */
.big-quote {
    padding: var(--space-3xl) 0;
    background: var(--c-bg-dark);
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.big-quote .display {
    max-width: 16ch;
    margin: 0 auto;
    color: white;
}

.big-quote .display em {
    color: var(--c-brand-light);
    font-style: italic;
}

.big-quote-attr {
    color: rgba(255,255,255,0.6);
    margin-top: 48px;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.15em;
}

/* =====================================================
   FEATURES — Bento Grid
   ===================================================== */
.bento-section {
    padding: var(--space-3xl) 0;
}

.bento-section .container > .eyebrow,
.bento-section .container > .h2 {
    text-align: center;
}

.bento-section .h2 {
    margin: 16px auto 64px;
    max-width: 18ch;
}

.bento-section .lead {
    text-align: center;
    margin: -32px auto 64px;
}

.bento-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    grid-auto-rows: 200px;
    gap: 16px;
}

.bento-card {
    background: var(--c-warm-gray);
    border-radius: 24px;
    padding: 32px;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: transform var(--t-base) var(--ease-out);
}

.bento-card:hover { transform: scale(1.01); }

.bento-card.dark {
    background: var(--c-bg-dark);
    color: white;
}

.bento-card.brand {
    background: var(--c-brand);
    color: white;
}

.bento-card .bento-icon {
    font-size: 32px;
    margin-bottom: 16px;
}

.bento-card .h3 {
    font-size: 22px;
    margin-bottom: 8px;
}

.bento-card p {
    font-size: 14px;
    line-height: 1.5;
    opacity: 0.8;
}

.bento-card .bento-visual {
    position: absolute;
    inset: 0;
    opacity: 0.4;
    pointer-events: none;
}

/* Bento grid spans */
.bento-card.span-2 { grid-column: span 2; }
.bento-card.span-3 { grid-column: span 3; }
.bento-card.span-4 { grid-column: span 4; }
.bento-card.span-6 { grid-column: span 6; }
.bento-card.tall { grid-row: span 2; }

@media (max-width: 900px) {
    .bento-grid { grid-template-columns: 1fr 1fr; }
    .bento-card.span-2, .bento-card.span-3, .bento-card.span-4 { grid-column: span 2; }
}

/* =====================================================
   RECIPE SHOWCASE
   ===================================================== */
.showcase {
    padding: var(--space-3xl) 0;
    background: var(--c-bg-alt);
}

.showcase-header {
    text-align: center;
    margin-bottom: 80px;
}

.recipe-marquee {
    display: flex;
    gap: 24px;
    overflow-x: auto;
    padding: 24px 0;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
}

.recipe-marquee::-webkit-scrollbar { display: none; }

.recipe-card-large {
    flex: 0 0 360px;
    height: 480px;
    border-radius: 24px;
    overflow: hidden;
    position: relative;
    scroll-snap-align: start;
    background: var(--c-warm-gray);
    transition: transform var(--t-base) var(--ease-out);
    cursor: pointer;
}

.recipe-card-large:hover { transform: translateY(-8px); }

.recipe-card-large img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.recipe-card-info {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 32px 24px 24px;
    background: linear-gradient(180deg, transparent, rgba(0,0,0,0.8));
    color: white;
}

.recipe-card-info h3 {
    font-family: var(--font-display);
    font-size: 28px;
    font-weight: 600;
    margin-bottom: 8px;
}

.recipe-card-meta {
    display: flex;
    gap: 16px;
    font-size: 14px;
    opacity: 0.9;
}

.recipe-rating {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 8px;
    font-size: 14px;
}

.recipe-rating .stars {
    color: #fbbf24;
    font-size: 14px;
    letter-spacing: 0.05em;
    text-shadow: 0 1px 2px rgba(0,0,0,0.3);
}

.recipe-rating .rating-count {
    color: rgba(255, 255, 255, 0.7);
    font-size: 13px;
    font-variant-numeric: tabular-nums;
}

/* =====================================================
   PREMIUM TEASER (minimal, keine Details)
   ===================================================== */
.premium-teaser {
    padding: var(--space-3xl) 0;
    background: linear-gradient(135deg, var(--c-bg-dark) 0%, #2A1B0F 100%);
    color: white;
    text-align: center;
}

.premium-teaser-content {
    max-width: 600px;
    margin: 0 auto;
}

.premium-teaser .h2 {
    color: white;
    margin: 16px 0 24px;
}

/* =====================================================
   VALUES SECTION
   ===================================================== */
.values-section {
    padding: var(--space-3xl) 0;
    background: var(--c-bg-dark);
    color: white;
}

.values-header {
    text-align: center;
    margin-bottom: 80px;
}

.values-header .h2 {
    color: white;
    margin: 16px auto 16px;
    max-width: 14ch;
}

.values-header .lead {
    color: rgba(255, 255, 255, 0.7);
    margin: 0 auto;
    max-width: 50ch;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
    max-width: 1200px;
    margin: 0 auto;
}

.value-card {
    padding: 48px 32px;
    background: var(--c-bg-dark-alt);
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all var(--t-base) var(--ease-out);
}

.value-card:hover {
    transform: translateY(-4px);
    border-color: rgba(194, 65, 12, 0.3);
}

.value-num {
    font-family: var(--font-display);
    font-size: 14px;
    color: var(--c-brand-light);
    font-weight: 600;
    letter-spacing: 0.1em;
    margin-bottom: 24px;
    opacity: 0.8;
}

.value-card .h3 {
    color: white;
    margin-bottom: 16px;
    font-size: 26px;
}

.value-card p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 16px;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .value-card { padding: 32px 24px; }
}

/* =====================================================
   FINAL CTA
   ===================================================== */
.final-cta {
    padding: var(--space-3xl) 0;
    text-align: center;
    background: var(--c-cream);
    position: relative;
    overflow: hidden;
}

.final-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--c-brand), transparent);
}

.final-cta .h2 {
    margin-bottom: 24px;
    max-width: 16ch;
    margin-left: auto;
    margin-right: auto;
}

.final-cta .lead {
    margin: 0 auto 48px;
}

.waitlist-form {
    display: flex;
    gap: 8px;
    max-width: 480px;
    margin: 0 auto;
    background: white;
    padding: 8px;
    border-radius: 100px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
}

.waitlist-form input[type="email"] {
    flex: 1;
    border: none;
    padding: 14px 20px;
    font-size: 15px;
    font-family: inherit;
    background: transparent;
    outline: none;
}

.waitlist-form button {
    border: none;
    padding: 14px 28px;
    border-radius: 100px;
    background: var(--c-brand);
    color: white;
    font-weight: 600;
    font-size: 15px;
    cursor: pointer;
    transition: all var(--t-fast);
}

.waitlist-form button:hover {
    background: var(--c-brand-dark);
}

/* =====================================================
   FOOTER
   ===================================================== */
.footer {
    padding: 80px 0 40px;
    background: var(--c-bg-dark);
    color: white;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 64px;
    margin-bottom: 64px;
}

@media (max-width: 768px) {
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
}

.footer-tagline {
    color: rgba(255,255,255,0.7);
    margin: 16px 0;
    max-width: 32ch;
}

.footer h4 {
    font-family: var(--font-body);
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 20px;
    color: var(--c-brand-light);
}

.footer a {
    display: block;
    color: rgba(255,255,255,0.7);
    padding: 6px 0;
    font-size: 14px;
    transition: color var(--t-fast);
}

.footer a:hover { color: white; }

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 24px;
    display: flex;
    justify-content: space-between;
    color: rgba(255,255,255,0.5);
    font-size: 13px;
}

/* =====================================================
   SCROLL ANIMATIONS
   ===================================================== */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
}

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

.reveal-stagger > * {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
}

.reveal-stagger.visible > * {
    opacity: 1;
    transform: translateY(0);
}

.reveal-stagger.visible > *:nth-child(1) { transition-delay: 0.1s; }
.reveal-stagger.visible > *:nth-child(2) { transition-delay: 0.2s; }
.reveal-stagger.visible > *:nth-child(3) { transition-delay: 0.3s; }
.reveal-stagger.visible > *:nth-child(4) { transition-delay: 0.4s; }
.reveal-stagger.visible > *:nth-child(5) { transition-delay: 0.5s; }
.reveal-stagger.visible > *:nth-child(6) { transition-delay: 0.6s; }

/* Parallax */
.parallax-element {
    will-change: transform;
}

/* Mobile tweaks */
@media (max-width: 768px) {
    .hero-content { padding: 0 20px 64px; }
    .bento-card.span-2 { grid-column: span 2; }
    .pricing-card-dark { padding: 32px 24px; }
}

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