/* ============================================
   CSS Variables & Reset — Light Theme
   ============================================ */
:root {
    --bg-primary: #f8fafc;
    --bg-secondary: #f1f5f9;
    --bg-tertiary: #e2e8f0;
    --bg-card: #ffffff;
    --bg-card-hover: #ffffff;

    --text-primary: #0f172a;
    --text-secondary: #64748b;
    --text-tertiary: #94a3b8;
    --text-accent: #0f172a;

    --accent-brand: #3c96ca;
    --accent-brand-light: #7dd3fc;
    --accent-brand-dark: #2b3f67;
    --accent-teal: #0d9488;
    --accent-teal-light: #5eead4;
    --accent-green: #16a34a;
    --accent-green-light: #4ade80;
    --accent-amber: #d97706;
    --accent-amber-light: #fbbf24;
    --accent-rose: #e11d48;
    --accent-rose-light: #fb7185;

    --gradient-hero: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 40%, #e8f4f8 100%);
    --gradient-text: linear-gradient(135deg, #3c96ca, #0d9488, #06b6d4);
    --gradient-border: linear-gradient(135deg, #3c96ca, #0d9488);
    --gradient-glow: radial-gradient(ellipse at center, rgba(60,150,202,0.08) 0%, transparent 70%);
    --gradient-cta: linear-gradient(135deg, #2b3f67 0%, #3c96ca 50%, #0d9488 100%);

    --radius-sm: 6px;
    --radius-md: 10px;
    --radius-lg: 16px;
    --radius-xl: 24px;

    --shadow-sm: 0 1px 2px rgba(0,0,0,0.05);
    --shadow-md: 0 4px 6px -1px rgba(0,0,0,0.1), 0 2px 4px -2px rgba(0,0,0,0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0,0,0,0.1), 0 4px 6px -4px rgba(0,0,0,0.1);
    --shadow-xl: 0 20px 25px -5px rgba(0,0,0,0.1), 0 8px 10px -6px rgba(0,0,0,0.1);
    --shadow-glow: 0 0 40px rgba(60,150,202,0.08);
    --shadow-card: 0 1px 3px rgba(0,0,0,0.06), 0 1px 2px rgba(0,0,0,0.04);

    --font-sans: 'Inter', system-ui, -apple-system, sans-serif;
    --font-mono: 'JetBrains Mono', 'Cascadia Code', 'Fira Code', monospace;

    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

*, *::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-sans);
    background: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
}

/* ============================================
   Utility Classes
   ============================================ */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.gradient-text {
    background: var(--gradient-text);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--accent-brand);
    margin-bottom: 16px;
}

.section-label::before {
    content: '';
    width: 20px;
    height: 2px;
    background: var(--accent-brand);
    border-radius: 1px;
}

code {
    font-family: var(--font-mono);
    font-size: 0.85rem;
    padding: 2px 6px;
    background: rgba(60,150,202,0.08);
    border-radius: 4px;
    color: var(--accent-brand-dark);
}

code.accent {
    background: rgba(60,150,202,0.12);
    color: var(--accent-brand);
}

/* ============================================
   Navigation
   ============================================ */
nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(248,250,252,0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(15,23,42,0.06);
    transition: var(--transition);
}

.nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 64px;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-mono);
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--text-accent);
    text-decoration: none;
}

.nav-logo-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    background: var(--gradient-border);
    border-radius: var(--radius-sm);
    font-size: 0.85rem;
    font-weight: 700;
    color: #fff;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 32px;
    list-style: none;
}

.nav-links a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    transition: var(--transition);
}

.nav-links a:hover { color: var(--accent-brand); }

.nav-cta {
    padding: 8px 20px;
    background: var(--accent-brand);
    border-radius: var(--radius-sm);
    color: #fff !important;
    font-weight: 600 !important;
}

.nav-cta:hover { background: #3485b5; }

.nav-mobile-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--text-primary);
    font-size: 1.5rem;
    cursor: pointer;
}

/* ============================================
   Hero Section
   ============================================ */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-hero);
    overflow: hidden;
    padding: 120px 0 80px;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: var(--gradient-glow);
    pointer-events: none;
}

.hero-grid {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background-image:
        linear-gradient(rgba(60,150,202,0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(60,150,202,0.04) 1px, transparent 1px);
    background-size: 60px 60px;
    pointer-events: none;
}

.hero-content {
    position: relative;
    text-align: center;
    max-width: 900px;
    padding: 0 24px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 16px;
    background: rgba(60,150,202,0.08);
    border: 1px solid rgba(60,150,202,0.2);
    border-radius: 100px;
    font-size: 0.82rem;
    font-weight: 500;
    color: var(--accent-brand);
    margin-bottom: 32px;
}

.hero-badge-dot {
    width: 6px;
    height: 6px;
    background: var(--accent-green);
    border-radius: 50%;
    animation: pulse-dot 2s ease-in-out infinite;
}

@keyframes pulse-dot {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(1.5); }
}

.hero-title {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 24px;
    letter-spacing: -0.02em;
    color: var(--text-primary);
}

.hero-title .brand { font-family: var(--font-mono); }

.hero-subtitle {
    font-size: clamp(1rem, 2vw, 1.25rem);
    color: var(--text-secondary);
    max-width: 650px;
    margin: 0 auto 20px;
    line-height: 1.7;
}

.hero-tagline {
    font-family: var(--font-mono);
    font-size: clamp(0.85rem, 1.5vw, 1.05rem);
    color: var(--accent-teal);
    margin-bottom: 48px;
    letter-spacing: 0.05em;
}

.hero-actions {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 32px;
    border-radius: var(--radius-md);
    font-size: 0.95rem;
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition);
    cursor: pointer;
    border: none;
}

.btn-primary {
    background: var(--accent-brand);
    color: #fff;
    box-shadow: 0 4px 14px rgba(60,150,202,0.25);
}

.btn-primary:hover {
    background: #3485b5;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(60,150,202,0.3);
}

.btn-secondary {
    background: #fff;
    border: 1px solid rgba(15,23,42,0.1);
    color: var(--text-primary);
    box-shadow: var(--shadow-sm);
}

.btn-secondary:hover {
    background: #f8fafc;
    border-color: rgba(15,23,42,0.15);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

/* ============================================
   Stats Bar
   ============================================ */
.stats {
    padding: 60px 0;
    border-top: 1px solid rgba(15,23,42,0.06);
    border-bottom: 1px solid rgba(15,23,42,0.06);
    background: var(--bg-secondary);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
    text-align: center;
}

.stat-value {
    font-family: var(--font-mono);
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    font-weight: 700;
    margin-bottom: 4px;
}

.stat-label {
    font-size: 0.82rem;
    color: var(--text-tertiary);
    font-weight: 500;
}

/* ============================================
   Comparison Table
   ============================================ */
.comparison {
    padding: 100px 0;
}

.comparison .section-title {
    text-align: center;
    font-size: clamp(1.8rem, 3.5vw, 2.5rem);
    font-weight: 700;
    margin-bottom: 12px;
}

.comparison .section-desc {
    text-align: center;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto 56px;
}

.comparison-table {
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
    border-collapse: separate;
    border-spacing: 0;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    border: 1px solid rgba(15,23,42,0.06);
}

.comparison-table thead th {
    padding: 18px 24px;
    font-size: 0.9rem;
    font-weight: 700;
    text-align: left;
    background: var(--bg-tertiary);
    border-bottom: 1px solid rgba(15,23,42,0.06);
}

.comparison-table thead th:first-child { color: var(--text-tertiary); }
.comparison-table thead th:nth-child(2) { color: var(--text-tertiary); }
.comparison-table thead th:nth-child(3) { color: var(--accent-brand); }

.comparison-table tbody td {
    padding: 16px 24px;
    font-size: 0.9rem;
    border-bottom: 1px solid rgba(15,23,42,0.04);
}

.comparison-table tbody tr:last-child td { border-bottom: none; }
.comparison-table tbody tr:nth-child(odd) { background: var(--bg-card); }
.comparison-table tbody tr:nth-child(even) { background: var(--bg-secondary); }

.comparison-table tbody td:first-child { color: var(--text-secondary); font-weight: 500; }
.comparison-table tbody td:nth-child(2) { color: var(--text-tertiary); font-family: var(--font-mono); font-size: 0.82rem; }
.comparison-table tbody td:nth-child(3) { color: var(--text-primary); font-weight: 600; }

.tag-new {
    display: inline-block;
    padding: 2px 8px;
    background: rgba(16,163,74,0.1);
    color: var(--accent-green);
    border-radius: 4px;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    margin-left: 6px;
}

/* ============================================
   Features Grid
   ============================================ */
.features {
    padding: 100px 0;
    position: relative;
}

.features::before {
    content: '';
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 600px; height: 600px;
    background: radial-gradient(ellipse, rgba(60,150,202,0.06) 0%, transparent 70%);
    pointer-events: none;
}

.features-header {
    text-align: center;
    margin-bottom: 64px;
}

.features-header .section-title {
    font-size: clamp(1.8rem, 3.5vw, 2.5rem);
    font-weight: 700;
    margin-bottom: 12px;
}

.features-header .section-desc {
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    position: relative;
}

.feature-card {
    background: var(--bg-card);
    border: 1px solid rgba(15,23,42,0.06);
    border-radius: var(--radius-lg);
    padding: 32px;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-card);
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 2px;
    background: var(--gradient-border);
    opacity: 0;
    transition: var(--transition);
}

.feature-card:hover {
    border-color: rgba(60,150,202,0.2);
    transform: translateY(-4px);
    box-shadow: 0 20px 25px -5px rgba(60,150,202,0.1), 0 8px 10px -6px rgba(0,0,0,0.1);
}

.feature-card:hover::before { opacity: 1; }

.feature-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border-radius: var(--radius-md);
    margin-bottom: 20px;
    font-size: 1.3rem;
}

.feature-icon.blue { background: rgba(60,150,202,0.1); color: var(--accent-brand); }
.feature-icon.purple { background: rgba(13,148,136,0.1); color: var(--accent-teal); }
.feature-icon.cyan { background: rgba(6,182,212,0.1); color: #06b6d4; }
.feature-icon.green { background: rgba(16,163,74,0.1); color: var(--accent-green); }
.feature-icon.amber { background: rgba(217,119,6,0.1); color: var(--accent-amber); }
.feature-icon.rose { background: rgba(225,29,72,0.1); color: var(--accent-rose); }

.feature-card h3 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--text-primary);
}

.feature-card p {
    color: var(--text-secondary);
    font-size: 0.88rem;
    line-height: 1.7;
}

/* ============================================
   Pipeline Section
   ============================================ */
.pipeline {
    padding: 100px 0;
    background: var(--bg-secondary);
}

.pipeline-header {
    text-align: center;
    margin-bottom: 64px;
}

.pipeline-header .section-title {
    font-size: clamp(1.8rem, 3.5vw, 2.5rem);
    font-weight: 700;
    margin-bottom: 12px;
}

.pipeline-header .section-desc {
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
}

.pipeline-steps {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    flex-wrap: wrap;
    max-width: 1000px;
    margin: 0 auto;
}

.pipeline-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 16px 12px;
    flex: 1;
    min-width: 90px;
}

.pipeline-step-icon {
    width: 52px;
    height: 52px;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    margin-bottom: 10px;
    background: var(--bg-card);
    border: 1px solid rgba(15,23,42,0.06);
    box-shadow: var(--shadow-card);
}

.pipeline-step span {
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--text-secondary);
}

.pipeline-arrow {
    color: var(--text-tertiary);
    font-size: 1.2rem;
    padding: 0 4px;
    margin-bottom: 20px;
}

/* ============================================
   Roadmap / Progress
   ============================================ */
.roadmap {
    padding: 100px 0;
}

.roadmap-header {
    text-align: center;
    margin-bottom: 64px;
}

.roadmap-header .section-title {
    font-size: clamp(1.8rem, 3.5vw, 2.5rem);
    font-weight: 700;
    margin-bottom: 12px;
}

.roadmap-header .section-desc {
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
}

.roadmap-timeline {
    max-width: 700px;
    margin: 0 auto;
    position: relative;
}

.roadmap-timeline::before {
    content: '';
    position: absolute;
    top: 0; left: 20px; bottom: 0;
    width: 2px;
    background: rgba(15,23,42,0.06);
}

.roadmap-item {
    display: flex;
    gap: 24px;
    padding: 20px 0;
    position: relative;
}

.roadmap-dot {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 0.75rem;
    font-weight: 700;
    z-index: 1;
}

.roadmap-dot.done {
    background: rgba(16,163,74,0.1);
    color: var(--accent-green);
    border: 2px solid var(--accent-green);
}

.roadmap-dot.active {
    background: rgba(60,150,202,0.1);
    color: var(--accent-brand);
    border: 2px solid var(--accent-brand);
    animation: pulse-ring 2s ease-in-out infinite;
}

@keyframes pulse-ring {
    0%, 100% { box-shadow: 0 0 0 0 rgba(60,150,202,0.3); }
    50% { box-shadow: 0 0 0 8px rgba(60,150,202,0); }
}

.roadmap-dot.pending {
    background: var(--bg-tertiary);
    color: var(--text-tertiary);
    border: 2px solid rgba(15,23,42,0.08);
}

.roadmap-info h4 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 4px;
    color: var(--text-primary);
}

.roadmap-info p {
    font-size: 0.85rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

.roadmap-info .status {
    display: inline-block;
    padding: 2px 10px;
    border-radius: 100px;
    font-size: 0.72rem;
    font-weight: 600;
    margin-top: 8px;
}

.status.done { background: rgba(16,163,74,0.1); color: var(--accent-green); }
.status.active { background: rgba(60,150,202,0.1); color: var(--accent-brand); }
.status.pending { background: rgba(15,23,42,0.05); color: var(--text-tertiary); }

/* ============================================
   CLI Preview
   ============================================ */
.cli-preview {
    padding: 100px 0;
    background: var(--bg-secondary);
}

.cli-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
}

.cli-content .section-title {
    font-size: clamp(1.6rem, 3vw, 2.2rem);
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--text-primary);
}

.cli-content .section-desc {
    color: var(--text-secondary);
    margin-bottom: 32px;
    line-height: 1.8;
}

.cli-features {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.cli-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.cli-features li code {
    font-family: var(--font-mono);
    font-size: 0.8rem;
    padding: 2px 8px;
    background: rgba(60,150,202,0.08);
    border-radius: 4px;
    color: var(--accent-brand);
}

.cli-terminal {
    background: #2b3f67;
    border: 1px solid rgba(15,23,42,0.1);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}

.cli-terminal-header {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 18px;
    background: rgba(15,23,42,0.3);
    border-bottom: 1px solid rgba(255,255,255,0.06);
}

.term-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
}

.cli-terminal pre {
    padding: 24px;
    font-family: var(--font-mono);
    font-size: 0.78rem;
    line-height: 1.9;
    color: rgba(255,255,255,0.7);
}

.cli-terminal pre .prompt { color: var(--accent-green-light); }
.cli-terminal pre .cmd { color: var(--accent-brand-light); font-weight: 600; }
.cli-terminal pre .flag { color: var(--accent-teal-light); }
.cli-terminal pre .file { color: var(--accent-amber-light); }
.cli-terminal pre .output { color: rgba(255,255,255,0.5); }
.cli-terminal pre .ok { color: var(--accent-green-light); font-weight: 600; }

/* ============================================
   CTA Section
   ============================================ */
.cta {
    padding: 100px 0;
    text-align: center;
    background: var(--gradient-cta);
    position: relative;
    overflow: hidden;
}

.cta::before {
    content: '';
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 800px; height: 400px;
    background: radial-gradient(ellipse, rgba(60,150,202,0.15) 0%, transparent 70%);
    pointer-events: none;
}

.cta .section-title {
    font-size: clamp(1.8rem, 3.5vw, 2.5rem);
    font-weight: 700;
    margin-bottom: 16px;
    position: relative;
    color: #fff;
}

.cta .section-desc {
    color: rgba(255,255,255,0.7);
    max-width: 500px;
    margin: 0 auto 40px;
    position: relative;
}

.cta .gradient-text {
    background: linear-gradient(135deg, #7dd3fc, #5eead4, #bae6fd);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.cta .btn-primary {
    background: rgba(255,255,255,0.15);
    border: 1px solid rgba(255,255,255,0.3);
    color: #fff;
    box-shadow: 0 4px 14px rgba(0,0,0,0.2);
}

.cta .btn-primary:hover {
    background: rgba(255,255,255,0.25);
    transform: translateY(-2px);
}

.cta .btn-secondary {
    background: transparent;
    border: 1px solid rgba(255,255,255,0.2);
    color: rgba(255,255,255,0.8);
}

.cta .btn-secondary:hover {
    background: rgba(255,255,255,0.1);
    border-color: rgba(255,255,255,0.3);
    transform: translateY(-2px);
}

.cta .hero-actions { position: relative; }

/* ============================================
   Footer
   ============================================ */
footer {
    padding: 40px 0;
    border-top: 1px solid rgba(15,23,42,0.06);
}

.footer-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 16px;
}

.footer-left {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.82rem;
    color: var(--text-tertiary);
}

.footer-right {
    display: flex;
    align-items: center;
    gap: 24px;
    font-size: 0.82rem;
}

.footer-right a {
    color: var(--text-tertiary);
    text-decoration: none;
    transition: var(--transition);
}

.footer-right a:hover { color: var(--accent-brand); }

/* ============================================
   Responsive Design
   ============================================ */
@media (max-width: 1024px) {
    .features-grid { grid-template-columns: repeat(2, 1fr); }
    .cli-inner { grid-template-columns: 1fr; gap: 40px; }
}

@media (max-width: 768px) {
    .nav-links { display: none; }
    .nav-mobile-toggle { display: block; }

    .nav-links.open {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 64px; left: 0; right: 0;
        background: rgba(248,250,252,0.95);
        backdrop-filter: blur(12px);
        padding: 24px;
        gap: 20px;
        border-bottom: 1px solid rgba(15,23,42,0.06);
    }

    .features-grid { grid-template-columns: 1fr; }
    .stats-grid { grid-template-columns: repeat(2, 1fr); }

    .comparison-table thead th,
    .comparison-table tbody td {
        padding: 12px 16px;
        font-size: 0.8rem;
    }

    .pipeline-steps { gap: 0; }
    .pipeline-step { min-width: 60px; padding: 10px 6px; }
    .pipeline-step span { font-size: 0.68rem; }

    .hero-actions { flex-direction: column; align-items: center; }
    .btn { width: 100%; max-width: 320px; justify-content: center; }
}

@media (max-width: 480px) {
    .stats-grid { grid-template-columns: 1fr 1fr; gap: 20px; }
    .container { padding: 0 16px; }
}

/* ============================================
   Animations
   ============================================ */
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(24px); }
    to { opacity: 1; transform: translateY(0); }
}

.animate-in {
    opacity: 0;
    animation: fadeInUp 0.6s ease-out forwards;
}

.animate-in:nth-child(1) { animation-delay: 0.1s; }
.animate-in:nth-child(2) { animation-delay: 0.2s; }
.animate-in:nth-child(3) { animation-delay: 0.3s; }
.animate-in:nth-child(4) { animation-delay: 0.4s; }
.animate-in:nth-child(5) { animation-delay: 0.5s; }
.animate-in:nth-child(6) { animation-delay: 0.6s; }
