/* ============================================================
   ATX Solutions — Conversion-Optimised Landing Page Styles
   Clean SaaS style · Light theme · Mobile-first
   ============================================================ */

/* ---------- CSS Variables ---------- */
:root {
    --landing-primary: #1a56db;
    --landing-primary-dark: #1442a8;
    --landing-primary-light: #e8effc;
    --landing-secondary: #0f172a;
    --landing-accent: #06b6d4;
    --landing-accent-light: #ecfeff;
    --landing-gray-50: #f8fafc;
    --landing-gray-100: #f1f5f9;
    --landing-gray-200: #e2e8f0;
    --landing-gray-300: #cbd5e1;
    --landing-gray-500: #64748b;
    --landing-gray-600: #475569;
    --landing-gray-700: #334155;
    --landing-gray-800: #1e293b;
    --landing-gray-900: #0f172a;
    --landing-success: #059669;
    --landing-radius: 12px;
    --landing-radius-lg: 16px;
    --landing-shadow-sm: 0 1px 3px rgba(0,0,0,0.06);
    --landing-shadow-md: 0 4px 12px rgba(0,0,0,0.08);
    --landing-shadow-lg: 0 8px 30px rgba(0,0,0,0.1);
    --landing-transition: 0.25s ease;
}

/* ---------- Global Overrides for Landing ---------- */
.landing-page {
    overflow-x: hidden;
    font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
    color: var(--landing-gray-800);
    line-height: 1.6;
}

.landing-page section {
    position: relative;
}

/* ---------- Section Spacing ---------- */
.landing-section {
    padding: 5rem 0;
}

.landing-section-sm {
    padding: 3.5rem 0;
}

/* ---------- Section Headers ---------- */
.landing-section-header {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 3rem;
}

.landing-section-header h2 {
    font-size: 2.1rem;
    font-weight: 700;
    color: var(--landing-secondary);
    margin-bottom: 0.75rem;
    letter-spacing: -0.02em;
}

.landing-section-header p {
    font-size: 1.1rem;
    color: var(--landing-gray-500);
    margin: 0;
}

/* ============================================================
   NAVBAR TWEAKS (landing page only)
   ============================================================ */
.landing-nav .navbar.fixed-top {
    border-bottom: 1px solid rgba(255,255,255,0.1);
    box-shadow: none;
}

.landing-nav {
    padding-top: 56px !important;
}

/* ============================================================
   SECTION 1 — HERO
   ============================================================ */
.landing-hero {
    background: linear-gradient(135deg, #0f172a 0%, #1e3a5f 50%, #1a56db 100%);
    color: #fff;
    padding: 5rem 0 4.5rem;
    position: relative;
    overflow: hidden;
}

.landing-hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 700px;
    height: 700px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(6,182,212,0.1) 0%, transparent 70%);
    pointer-events: none;
}

.landing-hero-content {
    position: relative;
    z-index: 1;
}

.landing-hero h1 {
    font-size: 2.75rem;
    font-weight: 800;
    line-height: 1.18;
    letter-spacing: -0.03em;
    margin-bottom: 1.25rem;
}

.landing-hero .hero-subtitle {
    font-size: 1.2rem;
    color: rgba(255,255,255,0.75);
    max-width: 480px;
    line-height: 1.7;
    margin-bottom: 2rem;
}

.landing-hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.85rem;
    align-items: center;
}

.landing-hero .btn-hero-primary {
    background: #fff;
    color: var(--landing-primary);
    border: none;
    padding: 0.9rem 2.25rem;
    font-size: 1.05rem;
    font-weight: 700;
    border-radius: var(--landing-radius);
    transition: var(--landing-transition);
    box-shadow: 0 4px 14px rgba(0,0,0,0.15);
}

.landing-hero .btn-hero-primary:hover {
    background: var(--landing-gray-100);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.2);
}

.landing-hero .btn-hero-secondary {
    background: transparent;
    color: #fff;
    border: 2px solid rgba(255,255,255,0.3);
    padding: 0.85rem 2rem;
    font-size: 1rem;
    font-weight: 600;
    border-radius: var(--landing-radius);
    transition: var(--landing-transition);
}

.landing-hero .btn-hero-secondary:hover {
    background: rgba(255,255,255,0.1);
    border-color: rgba(255,255,255,0.5);
    color: #fff;
}

.hero-trust-hint {
    margin-top: 1.5rem;
    font-size: 0.9rem;
    color: rgba(255,255,255,0.55);
    margin-bottom: 0;
}

.hero-trust-hint i {
    color: #34d399;
}

.landing-hero-image {
    position: relative;
    z-index: 1;
}

/* Dot patterns on parent — match wrapper extent */
.landing-hero-image::before,
.landing-hero-image::after {
    content: '';
    position: absolute;
    top: 0;
    width: 2rem;
    height: 100%;
    background-image: radial-gradient(circle, rgba(255,255,255,0.18) 1.2px, transparent 1.2px);
    background-size: 10px 10px;
    pointer-events: none;
    z-index: 0;
}

.landing-hero-image::before {
    left: -2.5rem;
}

.landing-hero-image::after {
    right: -2.5rem;
}

.landing-hero-image .hero-img-wrapper {
    position: relative;
    padding: 0.75rem;
    background: #fff;
    border-radius: var(--landing-radius-lg);
}

.landing-hero-image img {
    width: 100%;
    height: auto;
    border-radius: var(--landing-radius);
    display: block;
    position: relative;
    z-index: 1;
}

/* ============================================================
   SECTION 2 — QUICK VALUE (3 BENEFITS)
   ============================================================ */
.landing-benefits {
    background: var(--landing-gray-50);
}

.benefit-card {
    text-align: center;
    padding: 2rem 1.5rem;
}

.benefit-icon {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    background: var(--landing-primary-light);
    color: var(--landing-primary);
}

.benefit-card h5 {
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--landing-secondary);
    margin-bottom: 0.5rem;
}

.benefit-card p {
    font-size: 0.95rem;
    color: var(--landing-gray-500);
    margin: 0;
}

/* ============================================================
   SECTION 3 — HOW IT WORKS
   ============================================================ */
.landing-how-it-works {
    background: #fff;
}

.step-card {
    text-align: center;
    padding: 2rem 1.5rem;
    position: relative;
}

.step-number {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: var(--landing-primary);
    color: #fff;
    font-size: 1.4rem;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.25rem;
}

.step-card h5 {
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--landing-secondary);
    margin-bottom: 0.5rem;
}

.step-card p {
    font-size: 0.95rem;
    color: var(--landing-gray-500);
    margin: 0;
}

.step-connector {
    display: none;
}

@media (min-width: 768px) {
    .step-connector {
        display: flex;
        align-items: center;
        justify-content: center;
        position: absolute;
        top: 50%;
        right: -1.5rem;
        transform: translateY(-50%);
        color: var(--landing-gray-300);
        font-size: 1.5rem;
        z-index: 2;
    }
}

/* ============================================================
   SECTION 4 — PRODUCT PREVIEW
   ============================================================ */
.landing-preview {
    background: var(--landing-gray-50);
}

.preview-image-wrapper {
    max-width: 900px;
    margin: 0 auto;
    background: #fff;
    border: 1px solid var(--landing-gray-200);
    border-radius: var(--landing-radius-lg);
    padding: 0.75rem;
    box-shadow: var(--landing-shadow-lg);
}

.preview-image-wrapper img {
    width: 100%;
    height: auto;
    border-radius: var(--landing-radius);
    display: block;
}

/* ── Preview slideshow ── */
.preview-slideshow {
    display: grid;
    width: 100%;
    overflow: hidden;
}

.preview-slide {
    grid-area: 1 / 1;
    width: 100%;
    height: auto;
    border-radius: var(--landing-radius);
    display: block;
    opacity: 0;
    transform: scale(1.01);
    transition: opacity 1.4s ease-in-out, transform 1.4s ease-in-out;
    will-change: opacity, transform;
}

.preview-slide-active {
    opacity: 1;
    transform: scale(1);
    z-index: 1;
}

/* ============================================================
   SECTION 5 — WHO IT'S FOR (AUDIENCE)
   ============================================================ */
.landing-audience {
    background: #fff;
}

.audience-card {
    text-align: center;
    background: #fff;
    border: 1px solid var(--landing-gray-200);
    border-radius: var(--landing-radius-lg);
    padding: 2.25rem 1.75rem;
    height: 100%;
    transition: var(--landing-transition);
}

.audience-card:hover {
    border-color: var(--landing-primary);
    box-shadow: var(--landing-shadow-md);
    transform: translateY(-3px);
}

.audience-icon {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    background: var(--landing-primary-light);
    color: var(--landing-primary);
}

.audience-card h5 {
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--landing-secondary);
    margin-bottom: 0.5rem;
}

.audience-card p {
    font-size: 0.95rem;
    color: var(--landing-gray-500);
    margin: 0;
}

/* ============================================================
   SECTION 6 — PRICING PREVIEW
   ============================================================ */
.landing-pricing {
    background: var(--landing-gray-50);
}

.pricing-card {
    background: #fff;
    border: 1px solid var(--landing-gray-200);
    border-radius: var(--landing-radius-lg);
    padding: 2.25rem 1.75rem;
    text-align: center;
    height: 100%;
    display: flex;
    flex-direction: column;
    transition: var(--landing-transition);
    position: relative;
}

.pricing-card:hover {
    box-shadow: var(--landing-shadow-lg);
    transform: translateY(-3px) scale(1.02);
}

.pricing-card-highlight {
    border-color: var(--landing-primary);
    box-shadow: 0 0 0 2px var(--landing-primary), var(--landing-shadow-md);
}

.pricing-popular {
    position: absolute;
    top: -0.75rem;
    left: 50%;
    transform: translateX(-50%);
    background: var(--landing-primary);
    color: #fff;
    padding: 0.25rem 1rem;
    border-radius: 9999px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    white-space: nowrap;
}

.pricing-card h5 {
    font-weight: 700;
    font-size: 1.2rem;
    color: var(--landing-secondary);
    margin-bottom: 0.5rem;
    margin-top: 0.5rem;
}

.pricing-price {
    font-size: 2.25rem;
    font-weight: 800;
    color: var(--landing-secondary);
    margin-bottom: 0.25rem;
}

.pricing-price span {
    font-size: 1rem;
    font-weight: 400;
    color: var(--landing-gray-500);
}

.pricing-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: left;
}

.pricing-card ul li {
    font-size: 0.9rem;
    color: var(--landing-gray-600);
    padding: 0.3rem 0;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.pricing-card ul li i {
    color: var(--landing-success);
    flex-shrink: 0;
}

/* Feature groups */
.pricing-features {
    flex: 1;
    margin-bottom: 1rem;
}

.pricing-feature-group {
    margin-bottom: 1rem;
}

.pricing-feature-group:last-child {
    margin-bottom: 0;
}

.pricing-feature-group h6 {
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--landing-gray-500);
    margin-bottom: 0.4rem;
    padding-bottom: 0.25rem;
    border-bottom: 1px solid var(--landing-gray-200);
}

/* Transparency text */
.pricing-transparency {
    display: block;
    font-size: 0.8rem;
    color: var(--landing-gray-500);
    margin-bottom: 1.25rem;
    min-height: 2.4em;
}

/* Trust note at bottom of paid cards */
.pricing-trust-note {
    display: block;
    font-size: 0.78rem;
    color: var(--landing-gray-500);
    margin-bottom: 0.75rem;
    list-style: none;
    text-align: center;
}

/* Usage bars */
.usage-bar {
    width: 100%;
    height: 6px;
    background: var(--landing-gray-200);
    border-radius: 3px;
    overflow: hidden;
    margin-bottom: 0.25rem;
}

.usage-fill {
    height: 100%;
    background: var(--landing-primary);
    border-radius: 3px;
    transition: width 0.6s ease, transform 0.8s ease;
    transform: scaleX(0);
    transform-origin: left;
}

.landing-animate-visible .usage-fill {
    transform: scaleX(1);
}

.usage-fill-high {
    background: var(--landing-success);
}

/* Storage add-on section */
.storage-addon-section {
    margin-top: 3.5rem;
    padding-top: 2.5rem;
    border-top: 1px solid var(--landing-gray-200);
}

.storage-addon-section h3 {
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--landing-secondary);
}

.addon-card {
    background: #fff;
    border: 1px solid var(--landing-gray-200);
    border-radius: var(--landing-radius);
    padding: 1rem 0.75rem;
    text-align: center;
    transition: var(--landing-transition);
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.25rem;
}

.addon-card:hover {
    border-color: var(--landing-primary);
    box-shadow: var(--landing-shadow-sm);
    transform: translateY(-2px);
}

.addon-size {
    font-size: 1rem;
    font-weight: 700;
    color: var(--landing-secondary);
}

.addon-price {
    font-size: 1.1rem;
    font-weight: 800;
    color: var(--landing-primary);
}

.addon-price small {
    font-size: 0.75rem;
    font-weight: 400;
    color: var(--landing-gray-500);
}

.storage-addon-note {
    font-size: 0.85rem;
}

.btn-pricing-primary {
    background: var(--landing-primary);
    color: #fff;
    border: none;
    padding: 0.8rem 2rem;
    font-size: 1rem;
    font-weight: 600;
    border-radius: var(--landing-radius);
    transition: var(--landing-transition);
    width: 100%;
}

.btn-pricing-primary:hover {
    background: var(--landing-primary-dark);
    color: #fff;
    transform: translateY(-1px);
    box-shadow: var(--landing-shadow-md);
}

.btn-pricing-secondary {
    background: #fff;
    color: var(--landing-primary);
    border: 2px solid var(--landing-primary);
    padding: 0.75rem 2rem;
    font-size: 1rem;
    font-weight: 600;
    border-radius: var(--landing-radius);
    transition: var(--landing-transition);
    width: 100%;
}

.btn-pricing-secondary:hover {
    background: var(--landing-primary-light);
    color: var(--landing-primary-dark);
    transform: translateY(-1px);
}

/* ============================================================
   SECTION 7 — TRUST SIGNALS
   ============================================================ */
.landing-trust {
    background: #fff;
}

.trust-card {
    text-align: center;
    padding: 2rem 1.5rem;
}

.trust-icon {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.trust-icon.blue    { background: var(--landing-primary-light); color: var(--landing-primary); }
.trust-icon.teal    { background: var(--landing-accent-light); color: var(--landing-accent); }
.trust-icon.green   { background: #ecfdf5; color: var(--landing-success); }

.trust-card h5 {
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--landing-secondary);
    margin-bottom: 0.5rem;
}

.trust-card p {
    font-size: 0.95rem;
    color: var(--landing-gray-500);
    margin: 0;
}

.testimonial-placeholder p {
    font-size: 0.9rem;
}

/* ============================================================
   SECTION 8 — FINAL CTA BANNER
   ============================================================ */
.landing-cta {
    background: linear-gradient(135deg, #0f172a 0%, #1e3a5f 50%, #1a56db 100%);
    color: #fff;
    padding: 5rem 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.landing-cta::before {
    content: '';
    position: absolute;
    top: -40%;
    left: 50%;
    transform: translateX(-50%);
    width: 800px;
    height: 800px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(6,182,212,0.08) 0%, transparent 60%);
    pointer-events: none;
}

.landing-cta h2 {
    font-size: 2.25rem;
    font-weight: 800;
    letter-spacing: -0.025em;
    margin-bottom: 1rem;
    position: relative;
    z-index: 1;
}

.landing-cta p {
    font-size: 1.1rem;
    color: rgba(255,255,255,0.7);
    max-width: 520px;
    margin: 0 auto 2rem;
    position: relative;
    z-index: 1;
}

.landing-cta .btn-cta-primary {
    background: #fff;
    color: var(--landing-primary);
    border: none;
    padding: 0.95rem 2.75rem;
    font-size: 1.1rem;
    font-weight: 700;
    border-radius: var(--landing-radius);
    transition: var(--landing-transition);
    box-shadow: 0 4px 14px rgba(0,0,0,0.15);
    position: relative;
    z-index: 1;
}

.landing-cta .btn-cta-primary:hover {
    background: var(--landing-gray-100);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.2);
}

.cta-subtext {
    font-size: 0.85rem !important;
    color: rgba(255,255,255,0.45) !important;
    margin-top: 1rem !important;
    margin-bottom: 0 !important;
}

/* ============================================================
   LANDING FOOTER
   ============================================================ */
.landing-footer {
    background: var(--landing-gray-900);
    color: rgba(255,255,255,0.6);
    padding: 3rem 0 1.5rem;
}

.landing-footer a {
    color: rgba(255,255,255,0.6);
    text-decoration: none;
    transition: var(--landing-transition);
}

.landing-footer a:hover {
    color: #fff;
}

.landing-footer .footer-brand {
    font-size: 1.25rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 0.5rem;
}

.landing-footer .footer-description {
    font-size: 0.85rem;
    max-width: 300px;
}

.landing-footer h6 {
    color: #fff;
    font-weight: 600;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-bottom: 1rem;
}

.landing-footer ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.landing-footer ul li {
    margin-bottom: 0.5rem;
}

.landing-footer ul li a {
    font-size: 0.9rem;
}

.landing-footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.08);
    padding-top: 1.5rem;
    margin-top: 2rem;
    font-size: 0.8rem;
}

/* ============================================================
   RESPONSIVE — MOBILE FIRST
   ============================================================ */
@media (max-width: 991.98px) {
    .landing-hero {
        padding: 3.5rem 0 3rem;
        text-align: center;
    }

    .landing-hero h1 {
        font-size: 2.25rem;
    }

    .landing-hero .hero-subtitle {
        margin-left: auto;
        margin-right: auto;
    }

    .landing-hero-actions {
        justify-content: center;
    }

    .hero-trust-hint {
        text-align: center;
    }

    .landing-hero-image {
        margin-top: 2rem;
    }

    .landing-section-header h2 {
        font-size: 1.75rem;
    }

    .landing-cta h2 {
        font-size: 1.85rem;
    }
}

@media (max-width: 575.98px) {
    .landing-hero h1 {
        font-size: 1.85rem;
    }

    .landing-hero .hero-subtitle {
        font-size: 1.05rem;
    }

    .landing-hero-actions {
        flex-direction: column;
        gap: 0.75rem !important;
    }

    .landing-hero .btn-hero-primary,
    .landing-hero .btn-hero-secondary {
        width: 100%;
        text-align: center;
        padding: 0.85rem 1.5rem;
        font-size: 1rem;
    }

    .landing-section {
        padding: 3rem 0;
    }

    .landing-section-sm {
        padding: 2.5rem 0;
    }

    .landing-section-header h2 {
        font-size: 1.5rem;
    }

    .landing-cta h2 {
        font-size: 1.5rem;
    }

    .landing-cta .btn-cta-primary {
        display: block;
        width: 100%;
    }

    .pricing-card {
        padding: 1.75rem 1.25rem;
    }

    .pricing-price {
        font-size: 2rem;
    }

    .btn-pricing-primary,
    .btn-pricing-secondary {
        padding: 0.85rem 1.5rem;
    }

    .audience-card {
        padding: 1.75rem 1.25rem;
    }

    .growth-card {
        padding: 1.5rem 1rem;
    }
}

/* ============================================================
   VALUE BRIDGE SECTION
   ============================================================ */
.landing-value-bridge {
    background: var(--landing-gray-50);
    text-align: center;
}

.value-bridge-content {
    max-width: 680px;
    margin: 0 auto;
}

.value-bridge-content h2 {
    font-size: 2.1rem;
    font-weight: 700;
    color: var(--landing-secondary);
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
}

.value-bridge-lead {
    font-size: 1.15rem;
    color: var(--landing-gray-600);
    margin-bottom: 2rem;
    line-height: 1.7;
}

.value-bridge-highlights {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem;
}

.value-bridge-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.95rem;
    color: var(--landing-gray-700);
    font-weight: 500;
}

.value-bridge-item i {
    color: var(--landing-success);
    font-size: 1.1rem;
}

/* ============================================================
   GROWTH REASSURANCE SECTION
   ============================================================ */
.landing-growth {
    background: #fff;
}

.growth-card {
    text-align: center;
    padding: 2rem 1.5rem;
    background: var(--landing-gray-50);
    border-radius: var(--landing-radius-lg);
    height: 100%;
    transition: var(--landing-transition);
}

.growth-card:hover {
    box-shadow: var(--landing-shadow-md);
    transform: translateY(-3px);
}

.growth-icon {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.growth-icon.purple { background: #f3e8ff; color: #7c3aed; }
.growth-icon.blue   { background: var(--landing-primary-light); color: var(--landing-primary); }
.growth-icon.teal   { background: var(--landing-accent-light); color: var(--landing-accent); }

.growth-card h5 {
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--landing-secondary);
    margin-bottom: 0.5rem;
}

.growth-card p {
    font-size: 0.95rem;
    color: var(--landing-gray-500);
    margin: 0;
}

/* ============================================================
   PRICING HELPER TEXT
   ============================================================ */
.pricing-helper {
    text-align: center;
    max-width: 560px;
    margin: 2.5rem auto 0;
    padding: 1.25rem 1.5rem;
    background: var(--landing-primary-light);
    border-radius: var(--landing-radius);
    border: 1px solid rgba(26, 86, 219, 0.12);
}

.pricing-helper p {
    font-size: 0.95rem;
    color: var(--landing-gray-700);
    margin: 0;
}

.pricing-helper strong {
    color: var(--landing-primary);
}

/* ============================================================
   SCROLL ANIMATIONS
   ============================================================ */
.landing-animate {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.landing-animate-visible {
    opacity: 1;
    transform: translateY(0);
}

.landing-animate-visible .landing-stagger > * {
    opacity: 0;
    transform: translateY(16px);
    animation: landingStaggerIn 0.5s ease forwards;
}

.landing-animate-visible .landing-stagger > *:nth-child(1) { animation-delay: 0.1s; }
.landing-animate-visible .landing-stagger > *:nth-child(2) { animation-delay: 0.2s; }
.landing-animate-visible .landing-stagger > *:nth-child(3) { animation-delay: 0.3s; }
.landing-animate-visible .landing-stagger > *:nth-child(4) { animation-delay: 0.4s; }

@keyframes landingStaggerIn {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Reduce motion for accessibility */
@media (prefers-reduced-motion: reduce) {
    .landing-animate {
        opacity: 1;
        transform: none;
        transition: none;
    }

    .landing-animate-visible .landing-stagger > * {
        opacity: 1;
        transform: none;
        animation: none;
    }

    .usage-fill {
        transform: scaleX(1);
        transition: none;
    }

    .preview-slide {
        transform: none;
        transition: none;
    }
}
