/* --- Variables & Reset --- */
:root {
    /* Colors derived from original script configuration */
    --gov-blue: #0F172A;
    --gov-light-blue: #3B82F6;
    --gov-accent: #0EA5E9;
    --gov-success: #10B981;
    --gov-warning: #F59E0B;
    --gov-danger: #EF4444;

    /* Slate Scale */
    --slate-50: #f8fafc;
    --slate-100: #f1f5f9;
    --slate-200: #e2e8f0;
    --slate-300: #cbd5e1;
    --slate-400: #94a3b8;
    --slate-500: #64748b;
    --slate-600: #475569;
    --slate-700: #334155;
    --slate-800: #1e293b;
    --slate-900: #0f172a;

    --white: #ffffff;
    --bg-light: #f8fafc;

    /* Spacing */
    --container-max: 1280px;
    --header-height: 80px;

    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-medium: 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--slate-800);
    background-color: var(--slate-50);
    line-height: 1.5;
    overflow-x: hidden;
}

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

ul {
    list-style: none;
}

/* --- Utilities --- */
.container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 1.5rem;
}

.section-padding {
    padding: 5rem 0;
}

.text-accent { color: var(--gov-accent); }
.text-green { color: var(--gov-success); }
.text-red { color: var(--gov-danger); }
.text-blue { color: var(--gov-blue); }
.text-slate-400 { color: var(--slate-400); }

/* --- Navbar --- */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: var(--header-height);
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--slate-200);
    z-index: 50;
    transition: all var(--transition-medium);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
}

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

.logo-wrapper:hover .logo-icon {
    background-color: var(--gov-accent);
}

.logo-icon {
    background-color: var(--gov-blue);
    color: var(--white);
    padding: 0.5rem;
    border-radius: 0.5rem;
    transition: background-color var(--transition-medium);
    box-shadow: 0 4px 6px -1px rgba(15, 23, 42, 0.1);
}

.logo-text h1 {
    font-size: 1.25rem;
    font-weight: 700;
    line-height: 1;
    color: var(--slate-900);
}

.logo-text p {
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    color: var(--slate-500);
    letter-spacing: 0.05em;
}

.logo-wrapper:hover .logo-text h1 { color: var(--gov-blue); }
.logo-wrapper:hover .logo-text p { color: var(--gov-accent); }

.nav-links {
    display: none; /* Mobile first */
}

@media(min-width: 768px) {
    .nav-links {
        display: flex;
        gap: 2rem;
    }
}

.nav-link {
    position: relative;
    font-weight: 500;
    color: var(--slate-600);
    transition: color var(--transition-fast);
}

.nav-link:hover {
    color: var(--gov-accent);
    transform: translateY(-2px);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--gov-accent);
    transition: width var(--transition-medium);
}

.nav-link:hover::after {
    width: 100%;
}

.mobile-menu-btn {
    display: block;
    cursor: pointer;
    font-size: 1.25rem;
}
@media(min-width: 768px) {
    .mobile-menu-btn { display: none; }
}

/* --- Hero Section --- */
.hero-section {
    position: relative;
    padding-top: calc(var(--header-height) + 4rem);
    padding-bottom: 5rem;
    background-color: var(--gov-blue);
    /* Radial Gradients Simulation */
    background-image:
            radial-gradient(circle at 15% 50%, rgba(56, 189, 248, 0.08) 0%, transparent 25%),
            radial-gradient(circle at 85% 30%, rgba(16, 185, 129, 0.05) 0%, transparent 25%);
    overflow: hidden;
}

.grid-overlay {
    position: absolute;
    inset: 0;
    background-size: 40px 40px;
    background-image:
            linear-gradient(to right, rgba(255, 255, 255, 0.03) 1px, transparent 1px),
            linear-gradient(to bottom, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
    mask-image: linear-gradient(to bottom, black 40%, transparent 100%);
    -webkit-mask-image: linear-gradient(to bottom, black 40%, transparent 100%);
    z-index: 0;
}

.hero-content {
    position: relative;
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 3rem;
}

@media(min-width: 1024px) {
    .hero-content {
        flex-direction: row;
        align-items: center;
    }
    .hero-text {
        width: 50%;
        text-align: left;
    }
    .hero-visual {
        width: 50%;
    }
}

.hero-text {
    text-align: center;
    color: var(--white);
}

.hero-title {
    font-size: 2.5rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

@media(min-width: 1024px) {
    .hero-title { font-size: 3.75rem; }
}

.gradient-text {
    background: linear-gradient(to right, #38bdf8, #2dd4bf);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.hero-desc {
    font-size: 1.125rem;
    color: var(--slate-300);
    max-width: 600px;
    margin: 0 auto;
    border-left: 4px solid var(--gov-accent);
    padding-left: 1rem;
    line-height: 1.6;
}

@media(min-width: 1024px) {
    .hero-desc { margin: 0; }
}

/* Floating Orbs */
.float-orb {
    position: absolute;
    border-radius: 50%;
    opacity: 0.2;
    animation: float infinite ease-in-out;
}
.orb-1 { top: 5rem; left: 2.5rem; width: 0.75rem; height: 0.75rem; background: skyblue; animation-duration: 4s; }
.orb-2 { bottom: 10rem; right: 5rem; width: 1rem; height: 1rem; background: #34d399; animation-duration: 7s; animation-delay: 1s; }
.orb-3 { top: 33%; right: 25%; width: 0.25rem; height: 0.25rem; background: white; animation-duration: 5s; animation-delay: 2s; opacity: 0.3; }

/* 3D Mockup */
.tilt-container {
    perspective: 1000px;
    transform-style: preserve-3d;
}

.tilt-card {
    background-color: var(--white);
    border-radius: 1rem;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(51, 65, 85, 0.5);
    overflow: hidden;
    position: relative;
    transition: transform 0.1s ease-out;
    transform-style: preserve-3d;
}

.card-glare {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top right, rgba(255,255,255,0.1), transparent);
    z-index: 20;
    pointer-events: none;
}

.browser-header {
    background-color: var(--slate-900);
    padding: 0.75rem 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid var(--slate-700);
    position: relative;
    z-index: 10;
}

.browser-dots {
    display: flex;
    gap: 0.5rem;
}
.dot { width: 0.75rem; height: 0.75rem; border-radius: 50%; }
.dot.red { background: #ef4444; box-shadow: 0 0 8px rgba(239,68,68,0.6); }
.dot.yellow { background: #f59e0b; box-shadow: 0 0 8px rgba(245,158,11,0.6); }
.dot.green { background: #10b981; box-shadow: 0 0 8px rgba(16,185,129,0.6); }

.browser-address {
    font-family: monospace;
    font-size: 0.75rem;
    color: var(--slate-400);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.tilt-content {
    background-color: var(--slate-50);
    padding: 1.5rem;
    transform: translateZ(20px);
}

.dash-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
}

.dash-header h3 { font-size: 1.125rem; font-weight: 700; }

.badge {
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--slate-500);
    background: var(--slate-200);
    padding: 0.25rem 0.5rem;
    border-radius: 0.25rem;
    border: 1px solid var(--slate-300);
}

.stats-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.stat-card {
    background: var(--white);
    padding: 1rem;
    border-radius: 0.75rem;
    box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    border: 1px solid var(--slate-200);
    transition: all var(--transition-medium);
}
.stat-card:hover {
    border-color: var(--gov-light-blue);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.stat-label { font-size: 0.75rem; font-weight: 600; color: var(--slate-500); text-transform: uppercase; margin-bottom: 0.25rem; }
.stat-value { font-size: 1.875rem; font-weight: 700; line-height: 1; }
.unit { font-size: 0.875rem; color: var(--slate-400); font-weight: 400; }
.stat-trend { margin-top: 0.5rem; font-size: 0.75rem; font-weight: 700; display: flex; align-items: center; gap: 0.25rem; }
.stat-trend.positive { color: #16a34a; }
.stat-trend i { animation: bounce 1s infinite; }

.stat-sub { margin-top: 0.5rem; font-size: 0.75rem; color: var(--slate-400); }

/* Bar Chart Mockup */
.chart-card {
    background: var(--white);
    padding: 1rem;
    border-radius: 0.75rem;
    border: 1px solid var(--slate-200);
}

.chart-header { display: flex; justify-content: space-between; margin-bottom: 1rem; }
.chart-header p { font-size: 0.875rem; font-weight: 700; color: var(--slate-700); }

.status-badge {
    background: #dcfce7;
    color: #15803d;
    font-size: 0.75rem;
    padding: 0.125rem 0.5rem;
    border-radius: 9999px;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.pulse-dot { width: 0.375rem; height: 0.375rem; background: #22c55e; border-radius: 50%; animation: pulse 2s infinite; }

.bar-chart {
    display: flex;
    align-items: flex-end;
    gap: 0.5rem;
    height: 6rem;
    padding: 0 0.5rem;
}

.bar {
    width: 100%;
    background-color: #dbeafe;
    border-radius: 2px 2px 0 0;
    height: 0; /* Animated via JS/Keyframes */
    animation: growBar 1.5s ease-out forwards;
    position: relative;
}

.bar-1 { background-color: #dbeafe; animation-delay: 0.3s; }
.bar-2 { background-color: #bfdbfe; animation-delay: 0.1s; }
.bar-3 { background-color: #93c5fd; animation-delay: 0.2s; }
.bar-accent { background-color: var(--gov-accent); animation-delay: 0.4s; }

.bar-tooltip {
    position: absolute;
    top: -2rem;
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    background: var(--slate-800);
    color: white;
    font-size: 0.625rem;
    padding: 0.25rem 0.5rem;
    border-radius: 0.25rem;
    opacity: 0;
    white-space: nowrap;
    transition: all 0.2s;
    pointer-events: none;
}

.bar-accent:hover .bar-tooltip {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
}

.hero-fade-bottom {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 6rem;
    background: linear-gradient(to top, var(--slate-50), transparent);
    pointer-events: none;
}

/* --- Layout Grids & Common Sections --- */
.section-header { text-align: center; margin-bottom: 4rem; }
.section-header h2 { font-size: 1.875rem; font-weight: 700; color: var(--slate-900); }
.section-header p { margin-top: 1rem; color: var(--slate-600); max-width: 40rem; margin-left: auto; margin-right: auto; }

.grid-2-col {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}
@media(min-width: 768px) { .grid-2-col { grid-template-columns: 1fr 1fr; } }

.grid-3-col {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}
@media(min-width: 768px) { .grid-3-col { grid-template-columns: repeat(2, 1fr); } }
@media(min-width: 1024px) { .grid-3-col { grid-template-columns: repeat(3, 1fr); } }

/* --- Challenge Section Cards --- */
.feature-box {
    background: var(--white);
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    position: relative;
    overflow: hidden;
    transition: all 0.5s;
    border: 1px solid var(--slate-100);
}

.feature-box:hover {
    transform: translateY(-0.5rem);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

.box-edge {
    position: absolute;
    top: 0;
    left: 0;
    width: 0.5rem;
    height: 100%;
    transition: all 0.5s;
}

.feature-box:hover .box-edge { width: 100%; opacity: 0.05; }
.red-theme .box-edge { background-color: var(--gov-danger); }
.green-theme .box-edge { background-color: var(--gov-success); }
.feature-box.red-theme:hover { border-color: rgba(239, 68, 68, 0.2); }
.feature-box.green-theme:hover { border-color: rgba(16, 185, 129, 0.2); }

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

.box-header { display: flex; align-items: center; gap: 1rem; margin-bottom: 1.5rem; }
.box-header h3 { font-size: 1.25rem; font-weight: 700; }

.icon-circle {
    width: 3rem;
    height: 3rem;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.25rem;
    transition: transform 0.3s;
}
.feature-box:hover .icon-circle { transform: scale(1.1) rotate(12deg); }

.icon-circle.red { background: #fef2f2; color: var(--gov-danger); }
.icon-circle.green { background: #ecfdf5; color: var(--gov-success); }

.check-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    color: var(--slate-600);
    margin-bottom: 1rem;
    transition: transform 0.3s;
}

.feature-box:hover .check-list li { transform: translateX(0.5rem); }
.check-list li:nth-child(1) { transition-delay: 0.1s; }
.check-list li:nth-child(2) { transition-delay: 0.2s; }
.check-list li:nth-child(3) { transition-delay: 0.3s; }
.check-list i { margin-top: 0.25rem; }

/* --- Features Dark Section --- */
.dark-section {
    background-color: var(--slate-900);
    color: var(--white);
    position: relative;
    overflow: hidden;
}
.dark-section .section-header h2 {
    color: var(--white);
}

.bg-glow {
    position: absolute;
    width: 16rem;
    height: 16rem;
    border-radius: 50%;
    filter: blur(60px);
    opacity: 0.05;
    animation: pulse 4s infinite;
}
.glow-1 { top: -2.5rem; right: -2.5rem; background: var(--gov-accent); }
.glow-2 { bottom: -2.5rem; left: -2.5rem; background: var(--gov-success); animation-delay: 0.7s; }

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

.grid-4-col {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}
@media(min-width: 768px) { .grid-4-col { grid-template-columns: 1fr 1fr; } }
@media(min-width: 1024px) { .grid-4-col { grid-template-columns: repeat(4, 1fr); } }

.dark-card {
    background-color: var(--slate-800);
    padding: 1.5rem;
    border-radius: 0.75rem;
    border: 1px solid var(--slate-700);
    transition: all 0.3s;
}

.dark-card:hover {
    background-color: #263346; /* slight lighten */
    border-color: var(--gov-accent);
    transform: translateY(-0.5rem);
    box-shadow: 0 10px 15px -3px rgba(14, 165, 233, 0.2);
}

.icon-box {
    width: 3rem;
    height: 3rem;
    background: var(--slate-700);
    border-radius: 0.5rem;
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--gov-accent);
    font-size: 1.25rem;
    margin-bottom: 1rem;
    transition: all 0.3s;
}

.dark-card:hover .icon-box {
    background: var(--gov-accent);
    color: white;
    transform: rotate(360deg);
}

.dark-card h3 { font-size: 1.125rem; font-weight: 700; margin-bottom: 0.5rem; transition: color 0.3s; }
.dark-card:hover h3 { color: var(--gov-accent); }
.dark-card p { font-size: 0.875rem; color: var(--slate-400); }

/* --- Workflow / Timeline --- */
/* --- Workflow / Timeline --- */
.narrow-container { max-width: 1150px; }
.overflow-hidden { overflow: hidden; }

.timeline { position: relative; padding: 2rem 0; }

/* The central vertical line */
.timeline-line {
    position: absolute;
    left: 2rem; /* Mobile: Line on the far left */
    top: 0;
    bottom: 0;
    width: 2px;
    background: var(--slate-200);
    z-index: 0;
    transition: all 0.3s ease;
}

/* The scrolling fill animation for the line */
.timeline-fill {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 0; /* JS animates this height */
    background: var(--gov-accent);
    transition: height 2s ease-out;
}

/* Flex container for a single row */
.timeline-item {
    position: relative;
    display: flex;
    align-items: center; /* Vertically center content with icon */
    margin-bottom: 5rem; /* Space between rows */
    z-index: 10;
    flex-wrap: nowrap; /* Ensure they don't wrap on desktop */
}

/* The Icon Circle */
.timeline-icon {
    position: absolute;
    left: 2rem; /* Mobile: Aligned with the left line */
    transform: translateX(-50%);
    width: 4rem;
    height: 4rem;
    background: var(--white);
    border: 4px solid var(--gov-accent);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.25rem;
    color: var(--gov-accent);
    box-shadow: 0 10px 15px -3px rgba(14, 165, 233, 0.2);
    z-index: 20;
    transition: all 0.3s ease;
}

/* Content Box - General Styles */
.timeline-content {
    position: relative;
    width: 100%;
    padding-left: 5rem; /* Mobile: Push text to the right of the left-aligned icon */
    text-align: left;
    box-sizing: border-box;
}

/* Spacers (Used for desktop structure) */
.timeline-empty {
    display: none; /* Mobile: Hide spacers so content stacks naturally */
    box-sizing: border-box;
}


/* --- DESKTOP Layout (The Zig-Zag) --- */
@media(min-width: 768px) {

    /* Move line and icons to center */
    .timeline-line { left: 50%; transform: translateX(-50%); }
    .timeline-icon { left: 50%; }

    /* Show spacers */
    .timeline-empty {
        display: block;
    }

    /* Define strict widths for side-by-side layout */
    /* Using flex-basis 50% ensures they split the space evenly without wrapping */
    .timeline-content, .timeline-empty {
        flex: 1 0 50%; /* Grow: 1, Shrink: 0, Basis: 50% */
        max-width: 50%;
        padding-left: 0; /* Reset mobile padding */
    }

    /* Left-aligned items (Steps 1 & 3) */
    /* Text is on the left, Empty space is on the right */
    .timeline-content.left-align {
        text-align: right;
        padding-right: 3.5rem; /* Add space between text and center icon */
    }

    /* Right-aligned items (Steps 2 & 4) */
    /* Empty space is on the left, Text is on the right */
    .timeline-content.right-align {
        text-align: left;
        padding-left: 3.5rem; /* Add space between center icon and text ("take it right a bit") */
    }
}

/* Animation extras */
.pulse-icon { animation: pulse 2s infinite; }

/* --- Stats Strip --- */
.stats-strip {
    background-color: var(--gov-accent);
    padding: 3rem 0;
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.shimmer-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 33%;
    height: 100%;
    background: rgba(255,255,255,0.05);
    transform: skewX(-20deg) translateX(-150%);
    animation: shimmer 2.5s infinite linear;
    pointer-events: none;
}

.flex-row-center {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}
@media(min-width: 768px) {
    .flex-row-center { flex-direction: row; justify-content: space-around; }
}

.stat-item {
    transition: transform 0.3s;
    cursor: default;
    padding: 1rem;
}
.stat-item:hover { transform: scale(1.1); }
.stat-item i { font-size: 2.25rem; opacity: 0.8; margin-bottom: 0.5rem; display: block; }
.bounce-icon { animation: bounce 3s infinite; }

.stat-label-sm { font-size: 0.875rem; font-weight: 700; opacity: 0.8; text-transform: uppercase; letter-spacing: 0.05em; }
.stat-big { font-size: 1.5rem; font-weight: 700; }

.divider {
    width: 100%;
    height: 1px;
    background: rgba(255,255,255,0.3);
    margin: 1.5rem 0;
}
@media(min-width: 768px) {
    .divider { width: 1px; height: 3rem; margin: 0; }
}

/* --- Team Section --- */
.team-card {
    background: var(--white);
    border-radius: 1rem;
    padding: 2rem;
    text-align: center;
    border: 1px solid var(--slate-100);
    box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    transition: all 0.3s;
}
.team-card:hover {
    transform: translateY(-0.5rem);
    box-shadow: 0 20px 25px -5px rgba(14, 165, 233, 0.1);
}

.img-wrapper {
    position: relative;
    width: 7rem;
    height: 7rem;
    margin: 0 auto 1.5rem;
}

.img-bg {
    position: absolute;
    inset: 0;
    background: var(--gov-accent);
    border-radius: 50%;
    opacity: 0;
    transition: opacity 0.3s;
}
.team-card:hover .img-bg { opacity: 0.2; animation: pulse 2s infinite; }

.img-wrapper img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid var(--white);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    position: relative;
    z-index: 2;
}

.team-card h4 { font-size: 1.25rem; font-weight: 700; color: var(--slate-900); margin-bottom: 0.25rem; }
.team-card .role { font-size: 0.875rem; color: var(--slate-500); }

.social-links {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 1.5rem;
}

.social-links a {
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 50%;
    background: var(--slate-50);
    border: 1px solid var(--slate-200);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--slate-500);
    transition: all 0.3s;
}

.social-links a:hover {
    background: var(--gov-blue);
    color: white;
    border-color: var(--gov-blue);
}

/* --- Footer --- */
.footer {
    background: var(--slate-900);
    border-top: 1px solid var(--slate-800);
    padding: 3rem 0;
    color: var(--white);
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    text-align: center;
}
@media(min-width: 768px) {
    .footer-content { flex-direction: row; justify-content: space-between; text-align: left; }
    .footer-left { align-items: flex-start; }
}

.footer-left { display: flex; flex-direction: column; align-items: center; }
@media(min-width: 768px) { .footer-left { align-items: flex-start; } }

.footer-brand { display: flex; align-items: center; gap: 0.5rem; margin-bottom: 0.5rem; font-weight: 700; font-size: 1.125rem; }
.footer-text { font-size: 0.875rem; color: var(--slate-500); }
.copyright { font-size: 0.75rem; color: var(--slate-600); margin-top: 0.25rem; }

.footer-links { display: flex; gap: 1.5rem; }
.footer-links a { font-size: 0.875rem; color: var(--slate-400); transition: color 0.2s; }
.footer-links a:hover { color: var(--white); text-decoration: underline; }

/* --- Animations & Keyframes --- */
.fade-up { opacity: 0; transform: translateY(20px); animation: fadeUp 0.8s ease-out forwards; }
.delay-1 { animation-delay: 0.2s; }
.delay-2 { animation-delay: 0.4s; }
.delay-3 { animation-delay: 0.6s; }

.mt-small { display: block; margin-top: 0.5rem; }

/* Scroll Reveal Classes */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.5, 0, 0, 1);
}
.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* Delay Helpers */
.delay-100 { transition-delay: 100ms; animation-delay: 100ms; }
.delay-200 { transition-delay: 200ms; animation-delay: 200ms; }
.delay-300 { transition-delay: 300ms; animation-delay: 300ms; }
.delay-400 { transition-delay: 400ms; animation-delay: 400ms; }
.delay-500 { transition-delay: 500ms; animation-delay: 500ms; }
.delay-600 { transition-delay: 600ms; animation-delay: 600ms; }

/* Keyframe Definitions */
@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-15px); }
}

@keyframes growBar {
    0% { height: 0%; }
    100% { height: var(--target-height); }
}

@keyframes shimmer {
    0% { transform: translateX(-100%) skewX(-20deg); }
    100% { transform: translateX(100%) skewX(-20deg); }
}

@keyframes fadeUp {
    0% { opacity: 0; transform: translateY(20px); }
    100% { opacity: 1; transform: translateY(0); }
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: .5; }
}

@keyframes bounce {
    0%, 100% { transform: translateY(-5%); animation-timing-function: cubic-bezier(0.8,0,1,1); }
    50% { transform: none; animation-timing-function: cubic-bezier(0,0,0.2,1); }
}