:root {
    --bg: #07090b;
    --bg-2: #0c1014;
    --line: rgba(255, 255, 255, 0.08);
    --text: #eef3f1;
    --muted: #8b9691;
    --accent: #3ef0c8;
    --accent-dim: rgba(62, 240, 200, 0.12);
    --accent-2: #6366f1;
    --warn: #f5c14a;
    --bad: #ff6b7a;
    --ok: #3ef0c8;
    --font: "Plus Jakarta Sans", system-ui, sans-serif;
    --mono: "IBM Plex Mono", ui-monospace, monospace;
}

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

html { scroll-behavior: smooth; }

body {
    min-height: 100vh;
    background:
        radial-gradient(1200px 500px at 80% -10%, rgba(62, 240, 200, 0.08), transparent 50%),
        radial-gradient(800px 400px at 10% 60%, rgba(99, 102, 241, 0.06), transparent 55%),
        linear-gradient(180deg, #0b0f12 0%, var(--bg) 28%);
    color: var(--text);
    font-family: var(--font);
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

body::before {
    content: "";
    position: fixed;
    inset: 0;
    pointer-events: none;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
    background-size: 64px 64px;
    mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.45), transparent 55%);
    z-index: 0;
}

a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; }
ul { list-style: none; }

.wrap {
    width: min(1120px, calc(100% - 2rem));
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.fade-in {
    opacity: 0;
    transform: translateY(18px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}
.fade-in.visible {
    opacity: 1;
    transform: none;
}

/* Ticker */
.ticker {
    position: relative;
    z-index: 40;
    overflow: hidden;
    border-bottom: 1px solid var(--line);
    background: #050708;
    font-family: var(--mono);
    font-size: 11px;
    letter-spacing: 0.06em;
    color: var(--muted);
    height: 34px;
}
.ticker-track {
    display: flex;
    gap: 0;
    white-space: nowrap;
    width: max-content;
    animation: ticker 28s linear infinite;
    align-items: center;
}
.tick {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 0 20px;
    border-right: 1px solid var(--line);
    height: 34px;
}
.tick-sym { color: var(--muted); font-weight: 600; letter-spacing: 0.05em; }
.tick-price { color: var(--text); }
.tick-chg.up { color: var(--ok); }
.tick-chg.dn { color: var(--bad); }
@keyframes ticker {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
}

/* Header */
.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    border-bottom: 1px solid var(--line);
    background: rgba(7, 9, 11, 0.78);
    backdrop-filter: blur(18px);
}
.nav-shell {
    width: min(1120px, calc(100% - 2rem));
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
    padding: 0.85rem 0;
}
.logo {
    display: flex;
    align-items: center;
    gap: 0.65rem;
}
.logo-mark {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    background: linear-gradient(135deg, #1d4ed8, #7c3aed);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.logo-mark svg {
    width: 16px;
    height: 16px;
    stroke: #fff;
    fill: none;
    stroke-width: 2.2;
    stroke-linecap: round;
    stroke-linejoin: round;
}
.logo-word {
    font-weight: 700;
    letter-spacing: -0.05em;
    font-size: 1.05rem;
}
.logo-tag {
    font-family: var(--mono);
    font-size: 10px;
    letter-spacing: 0.1em;
    color: var(--muted);
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--line);
    border-radius: 4px;
    padding: 2px 6px;
}
.nav-links {
    display: none;
    gap: 1.5rem;
}
.nav-links a {
    font-size: 0.9rem;
    color: var(--muted);
}
.nav-links a:hover { color: var(--text); }
.nav-actions {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}
.desktop-cta { display: none; }
.desktop-only { display: none; }
.menu-btn { width: 40px; height: 40px; color: var(--muted); }
.mobile-nav {
    display: none;
    width: 100%;
    flex-direction: column;
    gap: 0.35rem;
    padding-bottom: 0.5rem;
}
.nav-shell.open .mobile-nav { display: flex; }
.mobile-nav a { padding: 0.55rem 0; color: var(--muted); }
.status-pill {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 11px;
    font-family: var(--mono);
    color: var(--muted);
}
.pulse {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--accent);
    box-shadow: 0 0 0 0 rgba(62, 240, 200, 0.7);
    animation: pulse-dot 1.8s infinite;
}
@keyframes pulse-dot {
    70% { box-shadow: 0 0 0 8px transparent; }
}
#clock { font-size: 11px; }

@media (min-width: 768px) {
    .nav-links { display: flex; }
    .desktop-only { display: flex; }
}
@media (min-width: 900px) {
    .desktop-cta { display: inline-flex; }
    .menu-btn { display: none; }
    .nav-shell.open .mobile-nav { display: none; }
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.45rem;
    height: 42px;
    padding: 0 1.1rem;
    border-radius: 8px;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: -0.02em;
    transition: 0.2s ease;
    overflow: hidden;
    position: relative;
    cursor: pointer;
    user-select: none;
}
.btn-accent {
    background: linear-gradient(135deg, #1d4ed8 0%, #6d28d9 100%);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 8px 32px rgba(29, 78, 216, 0.35), inset 0 1px 0 rgba(255, 255, 255, 0.1);
}
.btn-accent:hover {
    filter: brightness(1.1);
    box-shadow: 0 12px 40px rgba(29, 78, 216, 0.5), inset 0 1px 0 rgba(255, 255, 255, 0.1);
}
.btn-accent:active { transform: scale(0.98); }
.btn-accent::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(110deg, transparent 30%, rgba(255,255,255,0.25) 50%, transparent 70%);
    transform: translateX(-120%);
    animation: shine 3.4s ease-in-out infinite;
}
.btn-ghost {
    border: 1px solid var(--line);
    background: rgba(255, 255, 255, 0.03);
    color: var(--text);
}
.btn-ghost:hover { border-color: rgba(62, 240, 200, 0.4); }
.btn-lg {
    height: 48px;
    padding: 0 1.35rem;
    font-size: 0.95rem;
    width: 100%;
    cursor: grab;
}
.btn-lg:active { cursor: grabbing; }

/* Hero */
.hero { padding: 4.5rem 0 3rem; }
.hero-grid {
    display: grid;
    gap: 3rem;
    align-items: center;
}
.kicker {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-family: var(--mono);
    font-size: 11px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 1rem;
}
.hero h1 {
    font-size: clamp(2.4rem, 5vw, 4.2rem);
    line-height: 1.02;
    letter-spacing: -0.055em;
    font-weight: 650;
    margin-bottom: 1.1rem;
}
.lead {
    max-width: 34rem;
    color: var(--muted);
    font-size: 1.05rem;
    line-height: 1.7;
}
.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.7rem;
    margin: 1.6rem 0 1.2rem;
}
.hero-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem 1.5rem;
    color: var(--muted);
    font-size: 0.82rem;
    font-family: var(--mono);
}
.hero-meta li { display: inline-flex; align-items: center; gap: 0.4rem; }
.hero-meta .fi { color: var(--accent); }

@media (min-width: 980px) {
    .hero-grid { grid-template-columns: 1fr 1.05fr; }
}

/* Terminal */
.terminal {
    background: #0a0e11;
    border: 1px solid var(--line);
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.45), 0 0 0 1px rgba(62, 240, 200, 0.08);
}
.terminal.anim-terminal {
    animation: terminalFloat 6s ease-in-out infinite;
}
.term-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.7rem 0.9rem;
    border-bottom: 1px solid var(--line);
    font-family: var(--mono);
    font-size: 11px;
    color: var(--muted);
    letter-spacing: 0.04em;
}
.term-dots { display: flex; gap: 5px; }
.term-dots i {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #2a3230;
}
.term-dots i:first-child { background: #ff6b7a; }
.term-dots i:nth-child(2) { background: #f5c14a; }
.term-dots i:nth-child(3) { background: #3ef0c8; }
.live {
    color: var(--accent);
    font-weight: 600;
    font-size: 10px;
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
}
.term-body {
    display: grid;
    grid-template-columns: 120px 1fr;
}
.term-side {
    border-right: 1px solid var(--line);
    padding: 0.9rem 0.7rem;
}
.term-side p {
    font-family: var(--mono);
    font-size: 10px;
    letter-spacing: 0.12em;
    color: var(--muted);
    margin-bottom: 0.7rem;
}
.term-side button {
    display: block;
    width: 100%;
    text-align: left;
    padding: 0.45rem 0.5rem;
    border-radius: 6px;
    font-size: 0.78rem;
    color: var(--muted);
    margin-bottom: 0.2rem;
}
.term-side button.on {
    background: var(--accent-dim);
    color: var(--accent);
}
.term-main { padding: 0.95rem; }
.token-head {
    display: flex;
    justify-content: space-between;
    margin-bottom: 0.9rem;
}
.token-head small,
.score small {
    display: block;
    font-family: var(--mono);
    font-size: 10px;
    letter-spacing: 0.12em;
    color: var(--muted);
}
.token-head strong {
    font-size: 1.15rem;
    letter-spacing: -0.03em;
}
.token-head span { color: var(--muted); font-weight: 500; }
.score { text-align: right; }
.score b {
    font-size: 1.6rem;
    color: var(--accent);
    letter-spacing: -0.04em;
}
.checks {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.45rem;
    margin-bottom: 0.9rem;
}
.check {
    display: flex;
    justify-content: space-between;
    padding: 0.5rem 0.6rem;
    border: 1px solid var(--line);
    border-radius: 8px;
    font-size: 0.75rem;
}
.check em { font-style: normal; font-family: var(--mono); font-size: 10px; }
.check.ok em { color: var(--ok); }
.check.warn em { color: var(--warn); }
.tape {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.78rem;
}
.tape th {
    text-align: left;
    font-family: var(--mono);
    font-size: 10px;
    letter-spacing: 0.1em;
    color: var(--muted);
    font-weight: 500;
    padding: 0.35rem 0;
    border-bottom: 1px solid var(--line);
}
.tape td { padding: 0.42rem 0; border-bottom: 1px solid rgba(255,255,255,0.04); }
.tape tbody tr { transition: background 0.4s ease; }
.tape tbody tr.flash { background: rgba(62, 240, 200, 0.08); }
.up { color: var(--ok); }
.down { color: var(--bad); }
.ok { color: var(--ok); }
.warn { color: var(--warn); }

.sparkline { width: 100%; height: 48px; margin-bottom: 0.5rem; }
.sparkline path { fill: none; stroke: var(--ok); stroke-width: 1.5; }
.sparkline .area { fill: url(#spark-grad); stroke: none; }

@media (max-width: 640px) {
    .term-body { grid-template-columns: 1fr; }
    .term-side { display: none; }
}

/* Stats */
.stats {
    border-block: 1px solid var(--line);
    background: rgba(12, 16, 20, 0.65);
}
.stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.2rem;
    padding: 1.6rem 0;
}
.stats-grid > div {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}
.stats-grid b {
    display: block;
    font-size: 1.4rem;
    letter-spacing: -0.04em;
}
.stats-grid span {
    color: var(--muted);
    font-size: 0.82rem;
}
@media (min-width: 800px) {
    .stats-grid { grid-template-columns: repeat(4, 1fr); }
}

/* Sections */
.section { padding: 5.5rem 0; }
.section.dim {
    background: rgba(255, 255, 255, 0.015);
    border-block: 1px solid var(--line);
}
.section-head {
    max-width: 40rem;
    margin-bottom: 2.5rem;
}
.section-head h2 {
    font-size: clamp(1.8rem, 3vw, 2.6rem);
    letter-spacing: -0.045em;
    line-height: 1.15;
    margin-bottom: 0.7rem;
}
.section-head p:last-child { color: var(--muted); }

.module {
    display: grid;
    gap: 1.5rem;
    align-items: center;
    padding: 1.5rem 0 2.4rem;
    border-top: 1px solid var(--line);
}
.module-copy h3 {
    font-size: 1.55rem;
    letter-spacing: -0.03em;
    margin: 0.45rem 0 0.7rem;
}
.module-copy p { color: var(--muted); margin-bottom: 1rem; }
.module-copy li {
    position: relative;
    padding-left: 1rem;
    color: var(--text);
    font-size: 0.92rem;
    margin-bottom: 0.4rem;
}
.module-copy li::before {
    content: "";
    width: 6px;
    height: 1px;
    background: var(--accent);
    position: absolute;
    left: 0;
    top: 0.7em;
}
.tag {
    font-family: var(--mono);
    font-size: 11px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--accent);
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
}
.ui-card {
    background: var(--bg-2);
    border: 1px solid var(--line);
    border-radius: 12px;
    padding: 1rem;
}
.ui-card header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 0.5rem;
    font-family: var(--mono);
    font-size: 11px;
    letter-spacing: 0.12em;
    color: var(--muted);
    margin-bottom: 0.9rem;
}
.ui-card header .fi { margin-right: auto; color: var(--accent); }
.scan-row {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    padding: 0.55rem 0;
    border-top: 1px solid var(--line);
    font-size: 0.88rem;
}
@media (min-width: 900px) {
    .module { grid-template-columns: 1fr 1fr; gap: 3rem; }
    .module.reverse .module-copy { order: 2; }
}

.reason-grid {
    display: grid;
    gap: 0.8rem;
}
.reason-grid article {
    padding: 1.2rem;
    border: 1px solid var(--line);
    border-radius: 12px;
    background: rgba(12, 16, 20, 0.7);
    transition: transform 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease;
}
.reason-grid article:hover {
    transform: translateY(-4px);
    border-color: rgba(62, 240, 200, 0.35);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.28);
}
.reason-grid h3 {
    font-size: 1.05rem;
    margin-bottom: 0.4rem;
    letter-spacing: -0.02em;
}
.reason-grid p { color: var(--muted); font-size: 0.9rem; }
@media (min-width: 800px) {
    .reason-grid { grid-template-columns: repeat(3, 1fr); }
}

/* Deploy / Install */
.deploy { position: relative; }
.deploy::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background: radial-gradient(700px 280px at 70% 20%, rgba(99, 102, 241, 0.08), transparent 70%);
}
.deploy-head {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    margin-bottom: 1.75rem;
}
.deploy-head .section-head { margin-bottom: 0; max-width: 36rem; }
.deploy-panel {
    border: 1px solid var(--line);
    border-radius: 18px;
    background: linear-gradient(180deg, rgba(255,255,255,0.025), rgba(10, 14, 17, 0.92));
    padding: 1.15rem;
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.28);
}
.steps {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.75rem;
    margin-bottom: 1rem;
    position: relative;
}
.step-card {
    position: relative;
    padding: 1.2rem;
    border: 1px solid var(--line);
    border-radius: 14px;
    background: #0a0e11;
    transition: transform 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease;
}
.step-card:hover {
    transform: translateY(-4px);
    border-color: rgba(62, 240, 200, 0.35);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.28);
}
.step-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1rem;
}
.step-num {
    font-family: var(--mono);
    font-size: 0.78rem;
    letter-spacing: 0.12em;
    color: var(--accent);
    font-weight: 600;
}
.step-card h4 {
    font-size: 1.05rem;
    letter-spacing: -0.02em;
    margin-bottom: 0.45rem;
}
.step-card p {
    color: var(--muted);
    font-size: 0.9rem;
    line-height: 1.6;
}
.step-card kbd {
    display: inline-block;
    padding: 0.1rem 0.35rem;
    border: 1px solid rgba(255,255,255,0.12);
    border-bottom-width: 2px;
    border-radius: 5px;
    background: rgba(255,255,255,0.04);
    font-family: var(--mono);
    font-size: 0.72rem;
    color: var(--text);
}
.dock {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    padding: 1.35rem 1.3rem;
    border: 1px solid rgba(99, 102, 241, 0.35);
    border-radius: 14px;
    background:
        linear-gradient(135deg, rgba(99, 102, 241, 0.12), transparent 45%),
        #081018;
}
.badge {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    font-family: var(--mono);
    font-size: 11px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 0.55rem;
    padding: 0.28rem 0.55rem;
    border-radius: 999px;
    background: rgba(62, 240, 200, 0.1);
    border: 1px solid rgba(62, 240, 200, 0.2);
}
.dock h3 {
    font-size: 1.35rem;
    letter-spacing: -0.03em;
    margin-bottom: 0.4rem;
}
.dock p { color: var(--muted); line-height: 1.6; }
.dock-action {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
    width: 100%;
}
.dock-action small {
    font-family: var(--mono);
    font-size: 10px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--muted);
}
.compat-row {
    display: flex;
    flex-wrap: wrap;
    gap: 0.45rem;
    margin-top: 1rem;
}
.chip {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    padding: 0.35rem 0.65rem;
    border-radius: 999px;
    border: 1px solid var(--line);
    background: rgba(255,255,255,0.03);
    color: var(--muted);
    font-family: var(--mono);
    font-size: 11px;
    letter-spacing: 0.04em;
}
.chip .fi { color: var(--accent); font-size: 0.8rem; }

@media (min-width: 800px) {
    .deploy-head {
        flex-direction: row;
        align-items: flex-end;
        justify-content: space-between;
    }
    .steps {
        grid-template-columns: repeat(3, 1fr);
        gap: 0.9rem;
    }
    .steps::before {
        content: "";
        position: absolute;
        top: 2.15rem;
        left: 12%;
        right: 12%;
        height: 1px;
        background: linear-gradient(90deg, transparent, rgba(62, 240, 200, 0.35), transparent);
        pointer-events: none;
        z-index: 0;
    }
    .step-card { z-index: 1; }
    .dock {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        padding: 1.5rem 1.6rem;
    }
    .dock-action { align-items: flex-end; max-width: 320px; }
}

/* CTA */
.cta {
    padding: 5rem 0;
    text-align: center;
    border-top: 1px solid var(--line);
    background: radial-gradient(600px 200px at 50% 0%, rgba(99, 102, 241, 0.12), transparent 70%);
}
.cta h2 {
    font-size: clamp(1.8rem, 3vw, 2.8rem);
    letter-spacing: -0.045em;
    margin-bottom: 0.6rem;
}
.cta p { color: var(--muted); margin-bottom: 1.3rem; }

.site-footer {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: flex-start;
    width: min(1120px, calc(100% - 2rem));
    margin: 0 auto;
    padding: 2rem 0 2.5rem;
    border-top: 1px solid var(--line);
    position: relative;
    z-index: 1;
}
.footer-links { display: flex; gap: 1.2rem; }
.footer-links a { color: var(--muted); font-size: 0.88rem; }
.footer-links a:hover { color: var(--text); }
.site-footer p {
    font-family: var(--mono);
    font-size: 11px;
    color: var(--muted);
    letter-spacing: 0.04em;
}
@media (min-width: 800px) {
    .site-footer {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
    }
}

/* Icons + motion */
.fi {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
}
.icon-tile {
    width: 46px;
    height: 46px;
    border-radius: 12px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--accent-dim);
    border: 1px solid rgba(62, 240, 200, 0.22);
    color: var(--accent);
    margin-bottom: 0.85rem;
}
.icon-tile .fi { font-size: 1.15rem; color: var(--accent); }
.icon-tile.sm {
    width: 34px;
    height: 34px;
    border-radius: 9px;
    margin-bottom: 0;
}
.icon-tile.sm .fi { font-size: 0.95rem; }

.anim-float { animation: iconFloat 3.2s ease-in-out infinite; }
.anim-pulse { animation: iconPulse 2.2s ease-in-out infinite; }
.delay-2 { animation-delay: 0.35s; }
.delay-3 { animation-delay: 0.7s; }

.stagger > * { opacity: 0; transform: translateY(12px); }
.fade-in.visible .stagger > * {
    animation: riseIn 0.6s ease forwards;
}
.fade-in.visible .stagger > *:nth-child(2) { animation-delay: 0.08s; }
.fade-in.visible .stagger > *:nth-child(3) { animation-delay: 0.16s; }
.fade-in.visible .stagger > *:nth-child(4) { animation-delay: 0.24s; }

@keyframes iconFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-5px); }
}
@keyframes iconPulse {
    0%, 100% { transform: scale(1); filter: drop-shadow(0 0 0 transparent); }
    50% { transform: scale(1.08); filter: drop-shadow(0 0 8px rgba(62, 240, 200, 0.45)); }
}
@keyframes terminalFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}
@keyframes shine {
    0%, 55% { transform: translateX(-120%); }
    75%, 100% { transform: translateX(120%); }
}
@keyframes riseIn {
    to { opacity: 1; transform: none; }
}

@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation: none !important;
        transition: none !important;
    }
    .stagger > * { opacity: 1; transform: none; }
}
