/* ============================================================
   CRAZY VIDEO MAKER 2 — Showcase Landing Page
   ============================================================ */

/* ---------- VARIABLES ---------- */
:root {
    --bg-deep:      #07070d;
    --bg-primary:   #0a0a12;
    --bg-surface:   #111119;
    --bg-elevated:  #1a1a26;
    --bg-glass:     rgba(17, 17, 25, .55);

    --text-primary:   #eeeef2;
    --text-secondary: #7a7a94;
    --text-muted:     #50506a;

    --accent-cyan:    #00e5ff;
    --accent-magenta: #ff2d87;
    --accent-blue:    #3b82f6;
    --accent-violet:  #7c3aed;

    --gradient-brand: linear-gradient(135deg, var(--accent-cyan), var(--accent-blue), var(--accent-violet), var(--accent-magenta));

    --font-display: 'Syne', sans-serif;
    --font-body:    'DM Sans', sans-serif;

    --radius-sm:  8px;
    --radius-md:  14px;
    --radius-lg:  20px;
    --radius-xl:  28px;

    --ease-out: cubic-bezier(.16, 1, .3, 1);
    --ease-bounce: cubic-bezier(.34, 1.56, .64, 1);

    --container: 1200px;
    --gutter: 24px;
}

/* ---------- RESET ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
    scrollbar-color: var(--bg-elevated) var(--bg-deep);
}
body {
    font-family: var(--font-body);
    font-size: 1.0625rem;
    line-height: 1.65;
    color: var(--text-primary);
    background: var(--bg-deep);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { font: inherit; cursor: pointer; border: none; background: none; color: inherit; }

/* ---------- NOISE OVERLAY ---------- */
.noise {
    position: fixed;
    inset: 0;
    z-index: 9999;
    pointer-events: none;
    opacity: .035;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 512 512' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='1'/%3E%3C/svg%3E");
    background-size: 256px 256px;
}

/* ---------- CONTAINER ---------- */
.container {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 var(--gutter);
}

/* ---------- SECTION HEADER ---------- */
.section-header {
    text-align: center;
    max-width: 680px;
    margin: 0 auto 72px;
}
.section-tag {
    display: inline-block;
    font-family: var(--font-display);
    font-size: .8rem;
    font-weight: 600;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--accent-cyan);
    margin-bottom: 16px;
    padding: 6px 16px;
    border: 1px solid rgba(0, 229, 255, .2);
    border-radius: 100px;
    background: rgba(0, 229, 255, .06);
}
.section-header h2 {
    font-family: var(--font-display);
    font-weight: 800;
    font-size: clamp(2rem, 4.5vw, 3.2rem);
    line-height: 1.15;
    letter-spacing: -.02em;
    margin-bottom: 16px;
}
.section-desc {
    color: var(--text-secondary);
    font-size: 1.125rem;
}

/* ---------- GRADIENT TEXT ---------- */
.gradient-text {
    background: var(--gradient-brand);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* ---------- MICROSOFT STORE BADGE ---------- */
.ms-badge {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    padding: 12px 26px 12px 20px;
    background: #000;
    border: 1.5px solid rgba(255, 255, 255, .2);
    border-radius: var(--radius-md);
    color: #fff;
    transition: all .35s var(--ease-out);
    white-space: nowrap;
}
.ms-badge:hover {
    border-color: rgba(255, 255, 255, .45);
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, .4), 0 0 0 1px rgba(255,255,255,.08);
}
.ms-badge__logo { flex-shrink: 0; }
.ms-badge__text { display: flex; flex-direction: column; line-height: 1.25; }
.ms-badge__label { font-size: .7rem; opacity: .75; letter-spacing: .02em; }
.ms-badge__store { font-family: var(--font-display); font-size: 1.15rem; font-weight: 700; }
.ms-badge--large { padding: 16px 36px 16px 28px; }
.ms-badge--large .ms-badge__store { font-size: 1.35rem; }

/* ---------- GHOST BUTTON ---------- */
.btn-ghost {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    border: 1px solid rgba(255, 255, 255, .12);
    border-radius: var(--radius-md);
    font-weight: 500;
    font-size: .95rem;
    color: var(--text-primary);
    transition: all .35s var(--ease-out);
}
.btn-ghost:hover {
    border-color: rgba(255, 255, 255, .28);
    background: rgba(255, 255, 255, .04);
    transform: translateY(-2px);
}

/* ============================================================
   NAVBAR
   ============================================================ */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 18px 0;
    transition: all .4s var(--ease-out);
}
.navbar.scrolled {
    padding: 12px 0;
    background: rgba(7, 7, 13, .82);
    backdrop-filter: blur(18px) saturate(1.4);
    -webkit-backdrop-filter: blur(18px) saturate(1.4);
    border-bottom: 1px solid rgba(255, 255, 255, .05);
}
.nav-container {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 var(--gutter);
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1.15rem;
    letter-spacing: -.01em;
}
.logo-mark {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background: var(--bg-surface);
    border: 1px solid rgba(255, 255, 255, .08);
    border-radius: 10px;
}
.nav-links {
    display: flex;
    align-items: center;
    gap: 36px;
}
.nav-links a {
    font-size: .9rem;
    font-weight: 500;
    color: var(--text-secondary);
    transition: color .25s;
}
.nav-links a:hover { color: var(--text-primary); }
.nav-cta {
    padding: 8px 20px !important;
    border-radius: var(--radius-sm) !important;
    background: rgba(255, 255, 255, .08) !important;
    color: var(--text-primary) !important;
    border: 1px solid rgba(255, 255, 255, .1);
    transition: all .3s var(--ease-out) !important;
}
.nav-cta:hover {
    background: rgba(255, 255, 255, .14) !important;
    border-color: rgba(255, 255, 255, .2);
}

/* Hamburger */
.nav-toggle { display: none; flex-direction: column; gap: 5px; padding: 6px; }
.nav-toggle span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--text-primary);
    border-radius: 2px;
    transition: all .3s var(--ease-out);
    transform-origin: center;
}
.nav-toggle.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.active span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-toggle.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ============================================================
   HERO
   ============================================================ */
.hero {
    position: relative;
    min-height: 100vh;
    min-height: 100dvh;
    display: flex;
    align-items: center;
    padding: 120px 0 80px;
    overflow: hidden;
}

/* Gradient orbs */
.hero-glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    pointer-events: none;
    will-change: transform;
}
.hero-glow--cyan {
    width: 550px; height: 550px;
    background: radial-gradient(circle, rgba(0, 229, 255, .14) 0%, transparent 70%);
    top: -120px; left: -80px;
    animation: glowDrift 12s ease-in-out infinite alternate;
}
.hero-glow--magenta {
    width: 480px; height: 480px;
    background: radial-gradient(circle, rgba(255, 45, 135, .12) 0%, transparent 70%);
    bottom: -100px; right: 5%;
    animation: glowDrift 14s ease-in-out infinite alternate-reverse;
}
.hero-glow--violet {
    width: 400px; height: 400px;
    background: radial-gradient(circle, rgba(124, 58, 237, .1) 0%, transparent 70%);
    top: 40%; left: 35%;
    animation: glowDrift 16s ease-in-out infinite alternate;
}

@keyframes glowDrift {
    0% { transform: translate(0, 0) scale(1); }
    100% { transform: translate(40px, -30px) scale(1.1); }
}

/* Film grain on hero */
.hero-grain {
    position: absolute;
    inset: -50%;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 512 512' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='1'/%3E%3C/svg%3E");
    background-size: 256px 256px;
    opacity: .05;
    pointer-events: none;
    animation: grain 6s steps(8) infinite;
}
@keyframes grain {
    0%   { transform: translate(0, 0); }
    10%  { transform: translate(-5%, -8%); }
    20%  { transform: translate(-12%, 4%); }
    30%  { transform: translate(5%, -20%); }
    40%  { transform: translate(-3%, 18%); }
    50%  { transform: translate(-10%, 8%); }
    60%  { transform: translate(12%, -2%); }
    70%  { transform: translate(2%, 12%); }
    80%  { transform: translate(4%, 30%); }
    90%  { transform: translate(-8%, 6%); }
    100% { transform: translate(0, 0); }
}

.hero-container {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 var(--gutter);
    display: grid;
    grid-template-columns: 1fr 1.15fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 2;
}
.hero-content { max-width: 540px; }

/* Pill badge */
.pill {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 18px 8px 12px;
    border-radius: 100px;
    background: rgba(0, 229, 255, .08);
    border: 1px solid rgba(0, 229, 255, .18);
    font-size: .82rem;
    font-weight: 500;
    color: var(--accent-cyan);
    margin-bottom: 28px;
}
.pill-dot {
    width: 8px; height: 8px;
    border-radius: 50%;
    background: var(--accent-cyan);
    box-shadow: 0 0 8px var(--accent-cyan);
    animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: .5; transform: scale(.8); }
}

.hero-title {
    font-family: var(--font-display);
    font-weight: 800;
    font-size: clamp(2.6rem, 5.5vw, 4.2rem);
    line-height: 1.08;
    letter-spacing: -.035em;
    margin-bottom: 24px;
}
.hero-subtitle {
    font-size: 1.125rem;
    line-height: 1.7;
    color: var(--text-secondary);
    margin-bottom: 40px;
    max-width: 460px;
}
.hero-actions {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}

/* Hero entrance animation */
.animate-hero {
    opacity: 0;
    transform: translateY(28px);
    animation: heroIn .85s var(--ease-out) forwards;
    animation-delay: calc(var(--i) * .14s + .2s);
}
@keyframes heroIn {
    to { opacity: 1; transform: translateY(0); }
}

/* Hero image */
.hero-visual {
    perspective: 1200px;
}
.screen-frame--hero {
    transform: rotateY(-4deg) rotateX(2deg);
    animation: heroFloat 6s ease-in-out infinite;
    transform-style: preserve-3d;
}
@keyframes heroFloat {
    0%, 100% { transform: rotateY(-4deg) rotateX(2deg) translateY(0); }
    50%      { transform: rotateY(-4deg) rotateX(2deg) translateY(-12px); }
}

/* ============================================================
   SCREEN FRAME COMPONENT — gradient border glow + reflection
   ============================================================ */
.screen-frame {
    --glow-color: var(--accent-cyan);
    position: relative;
    border-radius: var(--radius-lg);
    padding: 3px;
    background: linear-gradient(
        135deg,
        rgba(255, 255, 255, .12),
        rgba(255, 255, 255, .03) 40%,
        var(--glow-color) 100%
    );
    transition: transform .5s var(--ease-out), box-shadow .5s var(--ease-out);
    box-shadow:
        0 4px 20px rgba(0, 0, 0, .3),
        0 20px 60px rgba(0, 0, 0, .4);
}
.screen-frame:hover {
    transform: translateY(-4px);
    box-shadow:
        0 4px 20px rgba(0, 0, 0, .3),
        0 30px 80px rgba(0, 0, 0, .45),
        0 0 40px color-mix(in srgb, var(--glow-color) 15%, transparent);
}
.screen-frame--hero:hover {
    transform: rotateY(-4deg) rotateX(2deg) translateY(-16px);
}
.screen-frame img {
    display: block;
    width: 100%;
    height: auto;
    border-radius: calc(var(--radius-lg) - 3px);
    position: relative;
    z-index: 1;
}

/* Colored light reflection beneath the screenshot */
.screen-frame__reflection {
    position: absolute;
    bottom: -40px;
    left: 10%;
    right: 10%;
    height: 80px;
    background: radial-gradient(
        ellipse at center,
        color-mix(in srgb, var(--glow-color) 20%, transparent) 0%,
        transparent 70%
    );
    filter: blur(24px);
    z-index: 0;
    pointer-events: none;
    transition: opacity .5s;
}
.screen-frame:hover .screen-frame__reflection {
    opacity: 1.3;
}

/* Compact variant for advanced section */
.screen-frame--compact {
    border-radius: var(--radius-md);
}
.screen-frame--compact img {
    border-radius: calc(var(--radius-md) - 3px);
}

/* ============================================================
   FEATURES
   ============================================================ */
.features {
    padding: clamp(80px, 10vw, 140px) 0;
    background: var(--bg-primary);
    position: relative;
}
/* Subtle dot grid background */
.features::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(rgba(255,255,255,.04) 1px, transparent 1px);
    background-size: 32px 32px;
    pointer-events: none;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    position: relative;
}

/* Feature card */
.card {
    padding: 36px 32px;
    border-radius: var(--radius-lg);
    background: var(--bg-surface);
    border: 1px solid rgba(255, 255, 255, .05);
    transition: all .45s var(--ease-out);
    position: relative;
}
.card:hover {
    border-color: rgba(0, 229, 255, .15);
    transform: translateY(-4px);
    box-shadow:
        0 0 40px rgba(0, 229, 255, .06),
        0 16px 48px rgba(0, 0, 0, .3);
}
.card__icon {
    width: 52px; height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    border-radius: var(--radius-md);
    background: rgba(0, 229, 255, .06);
    border: 1px solid rgba(0, 229, 255, .1);
}
.card h3 {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1.2rem;
    margin-bottom: 10px;
    letter-spacing: -.01em;
}
.card p {
    color: var(--text-secondary);
    font-size: .94rem;
    line-height: 1.6;
}

/* ============================================================
   SHOWCASE
   ============================================================ */
.showcase {
    padding: clamp(80px, 10vw, 140px) 0;
    background: var(--bg-deep);
}
.showcase-row {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 56px;
    align-items: center;
    margin-bottom: 100px;
}
.showcase-row:last-child { margin-bottom: 0; }
.showcase-row--reverse {
    grid-template-columns: 1fr 1.2fr;
}
.showcase-row--reverse .showcase-row__image { order: 2; }
.showcase-row--reverse .showcase-row__text  { order: 1; }

.showcase-row__text h3 {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: clamp(1.5rem, 3vw, 2rem);
    letter-spacing: -.02em;
    margin-bottom: 16px;
}
.showcase-row__text > p {
    color: var(--text-secondary);
    margin-bottom: 28px;
    line-height: 1.7;
}

/* Checklist */
.check-list {
    display: flex;
    flex-direction: column;
    gap: 14px;
}
.check-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    color: var(--text-secondary);
    font-size: .94rem;
}
.check-list li::before {
    content: '';
    flex-shrink: 0;
    width: 7px; height: 7px;
    margin-top: 9px;
    border-radius: 50%;
    background: var(--accent-cyan);
    box-shadow: 0 0 8px rgba(0, 229, 255, .4);
}

/* ============================================================
   ADVANCED
   ============================================================ */
.advanced {
    padding: clamp(80px, 10vw, 140px) 0;
    background: var(--bg-primary);
    position: relative;
}
.advanced-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
}
.glass-card {
    padding: 24px 24px 32px;
    border-radius: var(--radius-xl);
    background: var(--bg-glass);
    backdrop-filter: blur(24px) saturate(1.2);
    -webkit-backdrop-filter: blur(24px) saturate(1.2);
    border: 1px solid rgba(255, 255, 255, .06);
    transition: all .45s var(--ease-out);
}
.glass-card:hover {
    border-color: rgba(255, 255, 255, .12);
    transform: translateY(-4px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, .3);
}
.glass-card h3 {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1.25rem;
    margin: 20px 0 8px;
    letter-spacing: -.01em;
}
.glass-card p {
    color: var(--text-secondary);
    font-size: .94rem;
    line-height: 1.6;
}

/* ============================================================
   CTA
   ============================================================ */
.cta {
    padding: clamp(80px, 10vw, 140px) 0;
    position: relative;
    overflow: hidden;
    background:
        linear-gradient(135deg,
            rgba(0, 229, 255, .12) 0%,
            rgba(59, 130, 246, .1) 30%,
            rgba(124, 58, 237, .12) 60%,
            rgba(255, 45, 135, .1) 100%
        ),
        var(--bg-deep);
}
.cta::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 30% 50%, rgba(0, 229, 255, .08) 0%, transparent 60%),
        radial-gradient(ellipse at 70% 50%, rgba(255, 45, 135, .08) 0%, transparent 60%);
    pointer-events: none;
}
.cta-glow {
    position: absolute;
    width: 600px; height: 600px;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    background: radial-gradient(circle, rgba(124, 58, 237, .15) 0%, transparent 65%);
    filter: blur(80px);
    pointer-events: none;
}
.cta-inner {
    text-align: center;
    position: relative;
    z-index: 2;
}
.cta-inner h2 {
    font-family: var(--font-display);
    font-weight: 800;
    font-size: clamp(2.2rem, 5vw, 3.5rem);
    letter-spacing: -.03em;
    margin-bottom: 16px;
}
.cta-inner > p {
    color: var(--text-secondary);
    font-size: 1.125rem;
    margin-bottom: 40px;
    line-height: 1.7;
}
.cta-meta {
    display: block;
    margin-top: 20px;
    font-size: .82rem;
    color: var(--text-muted);
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
    padding: 32px 0;
    border-top: 1px solid rgba(255, 255, 255, .05);
    background: var(--bg-deep);
}
.footer-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.footer p {
    font-size: .85rem;
    color: var(--text-muted);
}
.footer a {
    font-size: .85rem;
    color: var(--text-secondary);
    transition: color .25s;
}
.footer a:hover { color: var(--accent-cyan); }

/* ============================================================
   SCROLL ANIMATIONS
   ============================================================ */
[data-animate] {
    opacity: 0;
    will-change: opacity, transform;
    transition: opacity .75s var(--ease-out), transform .75s var(--ease-out);
}
[data-animate="fade-up"]    { transform: translateY(44px); }
[data-animate="fade-left"]  { transform: translateX(44px); }
[data-animate="fade-right"] { transform: translateX(-44px); }
[data-animate="fade-in"]    { transform: none; }
[data-animate="scale-in"]   { transform: scale(.92); }

[data-animate].visible {
    opacity: 1;
    transform: translateY(0) translateX(0) scale(1);
}

/* ============================================================
   RESPONSIVE
   ============================================================ */

/* Tablet */
@media (max-width: 1024px) {
    .hero-container {
        grid-template-columns: 1fr;
        gap: 48px;
        text-align: center;
    }
    .hero-content {
        max-width: 600px;
        margin: 0 auto;
    }
    .hero-subtitle { margin-left: auto; margin-right: auto; }
    .hero-actions { justify-content: center; }
    .hero-visual { max-width: 700px; margin: 0 auto; }
    .screen-frame--hero {
        transform: none;
        animation: none;
    }
    .screen-frame--hero:hover {
        transform: translateY(-4px);
    }

    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .showcase-row,
    .showcase-row--reverse {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    .showcase-row--reverse .showcase-row__image { order: 0; }
    .showcase-row--reverse .showcase-row__text  { order: 0; }
    .showcase-row { margin-bottom: 72px; }

    .advanced-grid {
        grid-template-columns: 1fr;
        max-width: 600px;
        margin: 0 auto;
    }
}

/* Mobile */
@media (max-width: 768px) {
    :root {
        --gutter: 18px;
    }

    /* Mobile nav */
    .nav-links {
        position: fixed;
        top: 0;
        right: 0;
        bottom: 0;
        width: 280px;
        flex-direction: column;
        align-items: flex-start;
        gap: 0;
        padding: 80px 28px 28px;
        background: rgba(7, 7, 13, .96);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        border-left: 1px solid rgba(255, 255, 255, .06);
        transform: translateX(100%);
        transition: transform .4s var(--ease-out);
        z-index: 999;
    }
    .nav-links.open { transform: translateX(0); }
    .nav-links a {
        font-size: 1.1rem;
        padding: 14px 0;
        width: 100%;
        border-bottom: 1px solid rgba(255, 255, 255, .04);
    }
    .nav-cta {
        margin-top: 16px;
        text-align: center !important;
    }
    .nav-toggle { display: flex; z-index: 1001; }

    /* Mobile overlay */
    .nav-overlay {
        position: fixed;
        inset: 0;
        background: rgba(0, 0, 0, .5);
        z-index: 998;
        opacity: 0;
        pointer-events: none;
        transition: opacity .3s;
    }
    .nav-overlay.active {
        opacity: 1;
        pointer-events: auto;
    }

    .hero { padding: 100px 0 60px; min-height: auto; }
    .hero-title { font-size: clamp(2rem, 8vw, 2.8rem); }
    .hero-actions { flex-direction: column; align-items: center; width: 100%; }
    .ms-badge { width: 100%; justify-content: center; }
    .btn-ghost { width: 100%; justify-content: center; }

    .section-header { margin-bottom: 48px; }
    .features-grid { grid-template-columns: 1fr; }

    .showcase-row { margin-bottom: 56px; }

    .hero-glow { display: none; }

    .hero-grain { animation: none; opacity: .03; }

    [data-animate="fade-left"],
    [data-animate="fade-right"] {
        transform: translateY(30px);
    }
}

/* Small mobile */
@media (max-width: 420px) {
    .hero-title { font-size: 2rem; }
    .card { padding: 28px 24px; }
    .ms-badge--large { padding: 14px 24px 14px 20px; }
}

/* Reduce motion */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    html { scroll-behavior: auto; }
    [data-animate] { opacity: 1; transform: none; }
    .animate-hero { opacity: 1; transform: none; animation: none; }
}
