/* ============================================
   VitalsMC — Blue Liquid Glass Theme v2
   Stronger glass, deeper blues, real glass feel
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800;900&display=swap');

:root {
    --sidebar-width: 260px;

    /* Deep blue palette */
    --bg-base: #020617;
    --bg-body: linear-gradient(160deg, #020617 0%, #0a1628 30%, #071232 60%, #020617 100%);
    --bg-glass: rgba(15, 30, 80, 0.35);
    --bg-glass-strong: rgba(20, 40, 100, 0.45);
    --bg-glass-hover: rgba(30, 60, 140, 0.5);

    /* Borders */
    --border-glass: rgba(100, 160, 255, 0.15);
    --border-glow: rgba(59, 130, 246, 0.45);
    --border-glow-strong: rgba(59, 130, 246, 0.7);

    /* Accents */
    --accent: #3b82f6;
    --accent-light: #60a5fa;
    --accent-lighter: #93c5fd;
    --accent-glow: rgba(59, 130, 246, 0.15);
    --accent-glow-strong: rgba(59, 130, 246, 0.35);

    /* Text */
    --text-primary: #e8edf5;
    --text-secondary: #8494b2;
    --text-muted: #4a5a78;

    /* Glass */
    --glass-blur: 20px;
    --glass-border: 1px solid var(--border-glass);
    --glass-shadow: 0 8px 32px rgba(0, 10, 60, 0.5), inset 0 1px 0 rgba(255, 255, 255, 0.04);
    --glass-shadow-hover: 0 16px 48px rgba(0, 20, 100, 0.5), inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

/* ---- Base ---- */
* { box-sizing: border-box; }

body {
    background: var(--bg-base);
    background-image: var(--bg-body);
    background-attachment: fixed;
    color: var(--text-primary);
    font-family: 'Inter', 'Segoe UI', system-ui, -apple-system, sans-serif;
    min-height: 100vh;
    overflow-x: hidden;
    position: relative;
}

/* Multiple animated orbs for depth */
body::before {
    content: '';
    position: fixed;
    width: 800px; height: 800px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.18), transparent 65%);
    top: -300px; left: -200px;
    filter: blur(100px);
    z-index: 0;
    pointer-events: none;
    animation: orb1 22s ease-in-out infinite;
}
body::after {
    content: '';
    position: fixed;
    width: 700px; height: 700px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(99, 102, 241, 0.15), transparent 65%);
    bottom: -300px; right: -200px;
    filter: blur(100px);
    z-index: 0;
    pointer-events: none;
    animation: orb2 28s ease-in-out infinite;
}

@keyframes orb1 {
    0%, 100% { transform: translate(0, 0) scale(1); }
    30% { transform: translate(80px, 50px) scale(1.1); }
    60% { transform: translate(-40px, -30px) scale(0.95); }
}
@keyframes orb2 {
    0%, 100% { transform: translate(0, 0) scale(1); }
    40% { transform: translate(-60px, -40px) scale(1.08); }
    70% { transform: translate(30px, 60px) scale(0.92); }
}

/* ---- Glass Mixin ---- */
.glass,
.stat-card,
.chart-container,
.server-card,
.auth-card,
.api-key-display {
    background: var(--bg-glass);
    backdrop-filter: blur(var(--glass-blur)) saturate(1.4);
    -webkit-backdrop-filter: blur(var(--glass-blur)) saturate(1.4);
    border: 1px solid var(--border-glass);
    border-radius: 16px;
    box-shadow: var(--glass-shadow);
}

/* ---- Sidebar ---- */
.sidebar {
    width: var(--sidebar-width);
    min-height: 100vh;
    background: rgba(5, 12, 35, 0.92);
    backdrop-filter: blur(24px) saturate(1.5);
    -webkit-backdrop-filter: blur(24px) saturate(1.5);
    border-right: 1px solid var(--border-glass);
    box-shadow: 4px 0 30px rgba(0, 10, 60, 0.4);
    position: fixed;
    top: 0; left: 0;
    z-index: 1040;
    overflow-y: auto;
}

.sidebar-link {
    color: var(--text-secondary) !important;
    border-radius: 10px;
    transition: all 0.25s ease;
    margin-bottom: 2px;
    padding: 0.55rem 1rem;
    border: 1px solid transparent;
}

.sidebar-link:hover {
    color: var(--text-primary) !important;
    background: var(--accent-glow-strong);
    border-color: var(--border-glass);
    box-shadow: 0 0 12px rgba(59, 130, 246, 0.08);
}

.sidebar-link.active {
    color: #fff !important;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.3), rgba(99, 102, 241, 0.2));
    border-color: var(--border-glow);
    border-left: 3px solid var(--accent);
    box-shadow: 0 0 20px rgba(59, 130, 246, 0.12);
}

.main-content {
    margin-left: var(--sidebar-width);
    position: relative;
    z-index: 1;
    min-height: 100vh;
}

/* ---- Top Navbar ---- */
.navbar {
    background: rgba(5, 12, 35, 0.8) !important;
    backdrop-filter: blur(20px) saturate(1.5);
    -webkit-backdrop-filter: blur(20px) saturate(1.5);
    border-bottom: 1px solid var(--border-glass) !important;
}

/* ---- Stat Cards ---- */
.stat-card {
    border-radius: 18px;
    padding: 1.5rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

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

.stat-card::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.05) 0%, transparent 60%);
    pointer-events: none;
}

.stat-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--glass-shadow-hover);
    border-color: var(--border-glow);
}
.stat-card:hover::before { opacity: 1; }

.stat-card .stat-icon {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    background: var(--accent-glow-strong);
    border: 1px solid var(--border-glass);
    box-shadow: 0 0 15px rgba(59, 130, 246, 0.1);
}

.stat-card .stat-value {
    font-size: 1.8rem;
    font-weight: 800;
    letter-spacing: -0.5px;
}

.stat-card .stat-label {
    color: var(--text-secondary);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
}

/* ---- Chart Containers ---- */
.chart-container {
    border-radius: 18px;
    padding: 1.5rem;
    transition: border-color 0.3s;
}
.chart-container:hover { border-color: var(--border-glow); }

/* ---- Tables ---- */
.table-dark-custom {
    --bs-table-bg: transparent;
    --bs-table-border-color: var(--border-glass);
    --bs-table-hover-bg: rgba(59, 130, 246, 0.06);
    --bs-table-color: var(--text-primary);
}

.table-dark-custom thead th {
    background: rgba(10, 20, 55, 0.5);
    border-bottom: 1px solid var(--border-glow);
    color: var(--text-secondary);
    font-weight: 600;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.6px;
}

/* ---- Status Badges ---- */
.status-online { color: #22c55e; text-shadow: 0 0 10px rgba(34, 197, 94, 0.4); }
.status-offline { color: #ef4444; text-shadow: 0 0 10px rgba(239, 68, 68, 0.4); }
.status-degraded { color: #f59e0b; text-shadow: 0 0 10px rgba(245, 158, 11, 0.4); }

.badge-plan-premium {
    background: linear-gradient(135deg, #f59e0b, #d97706);
    color: #000;
    font-weight: 700;
}

.badge-plan-free {
    background: rgba(80, 140, 255, 0.12);
    color: var(--text-secondary);
    border: 1px solid var(--border-glass);
}

/* ---- Auth Pages ---- */
.auth-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    padding: 2rem;
    position: relative;
    z-index: 1;
}

.auth-card {
    border-radius: 24px;
    padding: 2.5rem;
    width: 100%;
    max-width: 440px;
    position: relative;
    overflow: hidden;
    background: var(--bg-glass-strong);
}

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

.auth-card::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(160deg, rgba(59, 130, 246, 0.06) 0%, transparent 40%);
    pointer-events: none;
    border-radius: 24px;
}

.auth-card .brand {
    font-size: 1.5rem;
    font-weight: 800;
}

/* ---- Server Card ---- */
.server-card {
    border-radius: 16px;
    padding: 1.25rem;
    transition: all 0.3s ease;
}
.server-card:hover {
    border-color: var(--border-glow);
    box-shadow: 0 0 25px rgba(59, 130, 246, 0.12);
    transform: translateY(-2px);
}

/* ---- API Key Display ---- */
.api-key-display {
    border-radius: 10px;
    padding: 0.75rem 1rem;
    font-family: 'JetBrains Mono', 'Courier New', monospace;
    font-size: 0.8rem;
    word-break: break-all;
}

/* ---- Buttons ---- */
.btn-primary {
    background: linear-gradient(135deg, #3b82f6, #2563eb);
    border: 1px solid rgba(59, 130, 246, 0.6);
    box-shadow: 0 4px 15px rgba(59, 130, 246, 0.25), inset 0 1px 0 rgba(255,255,255,0.1);
    transition: all 0.3s ease;
    font-weight: 600;
}

.btn-primary:hover {
    background: linear-gradient(135deg, #60a5fa, #3b82f6);
    box-shadow: 0 8px 30px rgba(59, 130, 246, 0.4), inset 0 1px 0 rgba(255,255,255,0.15);
    border-color: rgba(96, 165, 250, 0.7);
    transform: translateY(-2px);
}

.btn-outline-primary {
    border-color: var(--border-glow);
    color: var(--accent-light);
    font-weight: 600;
    background: transparent;
}

.btn-outline-primary:hover {
    background: var(--accent-glow-strong);
    border-color: var(--accent);
    color: #fff;
    box-shadow: 0 0 20px rgba(59, 130, 246, 0.2);
}

.btn-outline-secondary {
    border-color: var(--border-glass);
    color: var(--text-secondary);
}

.btn-outline-secondary:hover {
    background: rgba(80, 140, 255, 0.1);
    border-color: var(--border-glow);
    color: var(--text-primary);
}

/* ---- Form Controls ---- */
.form-control,
.form-select {
    background: rgba(5, 15, 40, 0.7);
    border: 1px solid var(--border-glass);
    color: var(--text-primary);
    border-radius: 12px;
    transition: border-color 0.25s, box-shadow 0.25s;
    padding: 0.6rem 1rem;
}

.form-control:focus,
.form-select:focus {
    background: rgba(5, 15, 40, 0.9);
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.15), 0 0 15px rgba(59, 130, 246, 0.1);
    color: var(--text-primary);
}

.form-control::placeholder { color: var(--text-muted); }
.form-label { color: var(--text-secondary); font-size: 0.85rem; font-weight: 500; }

/* ---- Alerts ---- */
.alert {
    border-radius: 14px;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}
.alert-success { background: rgba(34, 197, 94, 0.1); border: 1px solid rgba(34, 197, 94, 0.25); color: #4ade80; }
.alert-danger { background: rgba(239, 68, 68, 0.1); border: 1px solid rgba(239, 68, 68, 0.25); color: #f87171; }
.alert-warning { background: rgba(245, 158, 11, 0.1); border: 1px solid rgba(245, 158, 11, 0.25); color: #fbbf24; }

/* ---- Pagination ---- */
.page-link { background: var(--bg-glass); border-color: var(--border-glass); color: var(--text-secondary); }
.page-item.active .page-link { background: linear-gradient(135deg, #3b82f6, #2563eb); border-color: var(--accent); box-shadow: 0 0 15px rgba(59, 130, 246, 0.35); }
.page-link:hover { background: var(--accent-glow); border-color: var(--border-glow); color: var(--text-primary); }

/* ---- Dropdown ---- */
.dropdown-menu-dark {
    background: rgba(5, 12, 35, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--border-glass);
    border-radius: 14px;
    box-shadow: 0 15px 40px rgba(0, 10, 60, 0.5);
}
.dropdown-item:hover { background: var(--accent-glow-strong); }

/* ---- Responsive ---- */
@media (max-width: 768px) {
    .sidebar { transform: translateX(-100%); transition: transform 0.3s ease; }
    .sidebar.show { transform: translateX(0); }
    .main-content { margin-left: 0; }
    .hero-stats { gap: 1.5rem; flex-wrap: wrap; }
    .hero-title { font-size: 2rem !important; }
    .section-title { font-size: 1.8rem; }
    .landing-nav .d-flex.gap-4 { display: none !important; }
}

/* ---- Scrollbar ---- */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg-base); }
::-webkit-scrollbar-thumb { background: rgba(59, 130, 246, 0.3); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: rgba(59, 130, 246, 0.5); }

/* ============================================
   LANDING PAGE
   ============================================ */

/* Landing Navbar */
.landing-nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 1050;
    background: rgba(2, 6, 23, 0.6);
    backdrop-filter: blur(24px) saturate(1.6);
    -webkit-backdrop-filter: blur(24px) saturate(1.6);
    border-bottom: 1px solid var(--border-glass);
    padding: 0.85rem 0;
    transition: all 0.4s ease;
}

.landing-nav.scrolled {
    background: rgba(2, 6, 23, 0.92);
    box-shadow: 0 4px 30px rgba(0, 10, 60, 0.3);
}

/* Hero Section */
.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    padding: 8rem 0 5rem;
}

/* Big blue glow behind hero */
.hero-section::before {
    content: '';
    position: absolute;
    top: 40%; left: 50%;
    width: 1000px; height: 1000px;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.12), rgba(99, 102, 241, 0.06) 40%, transparent 65%);
    transform: translate(-50%, -50%);
    filter: blur(60px);
    pointer-events: none;
}

/* Second glow - bottom right purple */
.hero-section::after {
    content: '';
    position: absolute;
    bottom: -10%; right: -5%;
    width: 600px; height: 600px;
    background: radial-gradient(circle, rgba(139, 92, 246, 0.1), transparent 60%);
    filter: blur(80px);
    pointer-events: none;
}

.hero-title {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 900;
    line-height: 1.08;
    letter-spacing: -2px;
    color: #fff;
}

.gradient-text {
    background: linear-gradient(135deg, #60a5fa 0%, #3b82f6 30%, #818cf8 70%, #60a5fa 100%);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradient-shift 6s ease infinite;
}

@keyframes gradient-shift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.hero-subtitle {
    font-size: 1.15rem;
    color: var(--text-secondary);
    max-width: 540px;
    line-height: 1.75;
    margin-top: 1.5rem;
    margin-bottom: 2rem;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.45rem 1.1rem;
    background: rgba(59, 130, 246, 0.12);
    border: 1px solid rgba(59, 130, 246, 0.3);
    border-radius: 100px;
    font-size: 0.85rem;
    color: var(--accent-light);
    font-weight: 600;
    margin-bottom: 1.5rem;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.hero-stats {
    display: flex;
    gap: 3rem;
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid var(--border-glass);
}
.hero-stat-value { font-size: 2.2rem; font-weight: 800; color: #fff; }
.hero-stat-label { font-size: 0.85rem; color: var(--text-secondary); font-weight: 500; }

/* Feature Cards */
.feature-card {
    background: var(--bg-glass);
    backdrop-filter: blur(var(--glass-blur)) saturate(1.4);
    -webkit-backdrop-filter: blur(var(--glass-blur)) saturate(1.4);
    border: 1px solid var(--border-glass);
    border-radius: 22px;
    padding: 2rem;
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    height: 100%;
    position: relative;
    overflow: hidden;
}

.feature-card::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(160deg, rgba(59, 130, 246, 0.05) 0%, transparent 50%);
    pointer-events: none;
    border-radius: 22px;
}

.feature-card:hover {
    transform: translateY(-6px);
    border-color: var(--border-glow);
    box-shadow: 0 20px 50px rgba(0, 20, 100, 0.35), inset 0 1px 0 rgba(255,255,255,0.05);
}

.feature-icon {
    width: 56px;
    height: 56px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    background: var(--accent-glow-strong);
    border: 1px solid var(--border-glass);
    margin-bottom: 1.25rem;
    box-shadow: 0 0 20px rgba(59, 130, 246, 0.1);
}

/* Pricing Cards */
.pricing-card {
    background: var(--bg-glass);
    backdrop-filter: blur(var(--glass-blur)) saturate(1.4);
    -webkit-backdrop-filter: blur(var(--glass-blur)) saturate(1.4);
    border: 1px solid var(--border-glass);
    border-radius: 24px;
    padding: 2.5rem;
    transition: all 0.35s ease;
    position: relative;
    overflow: hidden;
}

.pricing-card::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(160deg, rgba(59, 130, 246, 0.04) 0%, transparent 50%);
    pointer-events: none;
    border-radius: 24px;
}

.pricing-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 50px rgba(0, 20, 100, 0.35);
}

.pricing-card.featured {
    border-color: var(--accent);
    box-shadow: 0 0 50px rgba(59, 130, 246, 0.15), 0 8px 32px rgba(0, 10, 60, 0.4);
}

.pricing-card.featured::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--accent), var(--accent-light), #818cf8);
}

.pricing-amount { font-size: 3.5rem; font-weight: 900; letter-spacing: -2px; color: #fff; }
.pricing-period { color: var(--text-secondary); font-size: 1rem; font-weight: 500; }

.pricing-feature {
    padding: 0.55rem 0;
    color: var(--text-secondary);
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-weight: 500;
}
.pricing-feature i { color: var(--accent-light); font-size: 1.1rem; }

/* Founder Section */
.founder-section { position: relative; }

.founder-card {
    background: var(--bg-glass-strong);
    backdrop-filter: blur(var(--glass-blur)) saturate(1.4);
    -webkit-backdrop-filter: blur(var(--glass-blur)) saturate(1.4);
    border: 1px solid var(--border-glass);
    border-radius: 24px;
    padding: 3rem;
    position: relative;
    overflow: hidden;
}

.founder-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--accent), var(--accent-light), transparent);
}

.founder-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--accent), #818cf8, var(--accent-light));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: 800;
    color: #fff;
    border: 3px solid var(--border-glow);
    box-shadow: 0 0 30px rgba(59, 130, 246, 0.35);
}

.founder-quote {
    font-size: 1.15rem;
    font-style: italic;
    color: var(--text-secondary);
    line-height: 1.8;
    padding-left: 1.5rem;
    border-left: 3px solid var(--accent);
}

/* Section Titles */
.section-title { font-size: 2.8rem; font-weight: 900; letter-spacing: -1.5px; color: #fff; }
.section-subtitle { color: var(--text-secondary); font-size: 1.1rem; max-width: 600px; margin: 0 auto; line-height: 1.7; }

/* Footer */
.landing-footer {
    background: rgba(2, 6, 23, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-top: 1px solid var(--border-glass);
    padding: 3rem 0;
}
.footer-link { color: var(--text-secondary); text-decoration: none; transition: color 0.25s; font-weight: 500; }
.footer-link:hover { color: var(--accent-light); }

/* Glass Mockup */
.glass-mockup {
    background: var(--bg-glass-strong);
    backdrop-filter: blur(var(--glass-blur)) saturate(1.4);
    -webkit-backdrop-filter: blur(var(--glass-blur)) saturate(1.4);
    border: 1px solid var(--border-glass);
    border-radius: 20px;
    padding: 1.5rem;
    box-shadow: 0 30px 70px rgba(0, 10, 80, 0.45), inset 0 1px 0 rgba(255,255,255,0.04);
    position: relative;
    overflow: hidden;
    animation: float-mockup 6s ease-in-out infinite;
}

.glass-mockup::after {
    content: '';
    position: absolute;
    top: -50%; left: -50%;
    width: 200%; height: 200%;
    background: linear-gradient(160deg, rgba(59, 130, 246, 0.06) 0%, transparent 30%);
    pointer-events: none;
}

@keyframes float-mockup {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.glass-mockup .mockup-bar {
    height: 8px;
    background: linear-gradient(90deg, rgba(59,130,246,0.5), rgba(99,102,241,0.35), rgba(59,130,246,0.2));
    border-radius: 4px;
    margin-bottom: 0.75rem;
}
.glass-mockup .mockup-bar-short { width: 60%; }
.glass-mockup .mockup-line {
    height: 6px;
    background: rgba(80, 140, 255, 0.1);
    border-radius: 3px;
    margin-bottom: 0.5rem;
}

/* Glow divider */
.glow-divider {
    height: 1px;
    background: linear-gradient(90deg, transparent 10%, rgba(59, 130, 246, 0.4) 50%, transparent 90%);
    border: none;
    opacity: 0.6;
    margin: 0;
}

/* CTA glow background */
.cta-section {
    position: relative;
}
.cta-section::before {
    content: '';
    position: absolute;
    top: 50%; left: 50%;
    width: 800px; height: 400px;
    background: radial-gradient(ellipse, rgba(59, 130, 246, 0.1), transparent 60%);
    transform: translate(-50%, -50%);
    filter: blur(60px);
    pointer-events: none;
}

/* Animations */
@keyframes fade-in-up {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

.animate-in { animation: fade-in-up 0.7s ease forwards; }
.delay-1 { animation-delay: 0.1s; opacity: 0; }
.delay-2 { animation-delay: 0.25s; opacity: 0; }
.delay-3 { animation-delay: 0.4s; opacity: 0; }
.delay-4 { animation-delay: 0.55s; opacity: 0; }
.delay-5 { animation-delay: 0.7s; opacity: 0; }

/* Scroll reveal helper */
.reveal { opacity: 0; transform: translateY(40px); transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1); }
.reveal.visible { opacity: 1; transform: translateY(0); }
