/* ==========================================================================
   BIA Marketing Website — "The Editorial Ledger"
   Spec: BIA-WEBSITE-DESIGN.md (marketing layer only; product UI unaffected)
   Three voices: Public Sans (system) · DM Serif Display (argument) · Caveat (annotation)
   No glassmorphism. No gradients. No glow. No count-up stats.
   ========================================================================== */

:root {
    /* Color — inherited product palette */
    --bg-base: #171717;        /* Void */
    --bg-surface: #222222;     /* Iron */
    --bg-elevated: #2C2C2C;    /* Forged */
    --border-subtle: #333333;  /* Seam */
    --border-default: #3A3A3A; /* Edge */
    --text-primary: #F2F0EC;   /* Chalk */
    --text-secondary: #A8A8A4; /* Ash */
    --text-disabled: #666660;  /* Fade */
    --gold: #D9A02A;           /* Gold Forge */
    --gold-hover: #C4911F;
    --text-on-gold: #0F0F0D;
    --ink: #080808;            /* decorative paths on Void */
    --paper: #E7D7C1;          /* Ledger Paper */
    --paper-line: #CFC8BC;

    /* Legacy aliases (secondary pages reference these) */
    --bg-primary: var(--bg-base);
    --bg-secondary: var(--bg-base);
    --surface: var(--bg-surface);
    --surface-light: var(--bg-surface);
    --surface-secondary: var(--bg-elevated);
    --accent: var(--gold);
    --accent-secondary: var(--gold-hover);
    --accent-hover: var(--gold-hover);
    --success: var(--gold);
    --warning: #FF9800;
    --error: #F44336;
    --text-muted: var(--text-disabled);
    --border-light: var(--border-default);
    --glow-accent: transparent;

    /* Type */
    --font-sans: 'Public Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --font-serif: 'DM Serif Display', Georgia, serif;
    --font-hand: 'Caveat', 'Segoe Print', cursive;

    /* Spacing */
    --sp-xs: 4px; --sp-sm: 8px; --sp-md: 16px; --sp-lg: 24px;
    --sp-xl: 32px; --sp-2xl: 48px; --sp-3xl: 72px; --sp-4xl: 112px;

    /* Radius */
    --r-sm: 4px; --r-md: 6px; --r-lg: 8px; --r-xl: 12px;

    /* Layout */
    --max-w: 1280px;
    --max-w-wide: 1480px;
    --gutter: clamp(24px, 3vw, 48px);
    --section-pad: clamp(80px, 11vw, 160px);
}

/* --------------------------------------------------------------------------
   Reset / base
   -------------------------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; scroll-padding-top: calc(72px + var(--sp-lg)); }

body {
    margin: 0;
    background: var(--bg-base);
    color: var(--text-primary);
    font-family: var(--font-sans);
    font-size: clamp(1rem, 1.25vw, 1.125rem);
    font-weight: 400;
    line-height: 1.55;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}

img { max-width: 100%; height: auto; }

a { color: var(--text-primary); }
a:hover { color: var(--gold); }

::selection { background: var(--gold); color: var(--text-on-gold); }

:focus-visible {
    outline: 2px solid var(--gold);
    outline-offset: 3px;
    border-radius: 2px;
}

.skip-to-main {
    position: absolute;
    left: -9999px;
    top: 0;
    background: var(--gold);
    color: var(--text-on-gold);
    padding: 12px 20px;
    font-weight: 700;
    z-index: 100;
}
.skip-to-main:focus { left: 0; }

.container {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 0 var(--gutter);
}
.container--wide { max-width: var(--max-w-wide); }

.hidden { display: none !important; }

/* --------------------------------------------------------------------------
   Type voices
   -------------------------------------------------------------------------- */

/* The argument — serif, oversized, quotable */
.display-serif {
    font-family: var(--font-serif);
    font-weight: 400;
    font-size: clamp(4rem, 10vw, 9rem);
    line-height: 0.9;
    letter-spacing: -0.035em;
    margin: 0;
    overflow-wrap: break-word;
}

/* Narrow phones: shrink the display serif just enough to keep long words
   from reaching the gutter and forcing horizontal scroll (§11). */
@media (max-width: 360px) {
    .display-serif { font-size: 3.4rem; }
}

.display-sans {
    font-family: var(--font-sans);
    font-weight: 800;
    font-size: clamp(3rem, 7vw, 6.5rem);
    line-height: 0.95;
    letter-spacing: -0.035em;
    margin: 0;
}

.headline {
    font-family: var(--font-sans);
    font-weight: 800;
    font-size: clamp(2.25rem, 5vw, 4.5rem);
    line-height: 1.02;
    letter-spacing: -0.025em;
    margin: 0;
}

.title {
    font-family: var(--font-sans);
    font-weight: 700;
    font-size: clamp(1.5rem, 3vw, 2.25rem);
    line-height: 1.15;
    margin: 0;
}

/* Short setup line above a serif statement */
.eyebrow {
    font-family: var(--font-sans);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.07em;
    text-transform: uppercase;
    color: var(--text-secondary);
    margin: 0 0 var(--sp-md);
}

/* The athlete's internal monologue — supplemental only */
.annotation {
    font-family: var(--font-hand);
    font-weight: 500;
    font-size: clamp(1.5rem, 3vw, 2.75rem);
    line-height: 1.05;
    color: var(--gold);
    margin: 0;
}

.gold { color: var(--gold); }

.lead {
    font-size: clamp(1.05rem, 1.4vw, 1.25rem);
    color: var(--text-secondary);
    line-height: 1.55;
}

.muted { color: var(--text-secondary); }

/* --------------------------------------------------------------------------
   Header
   -------------------------------------------------------------------------- */
.nav {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(23, 23, 23, 0.94);
    border-bottom: 1px solid var(--border-subtle);
}

.nav .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--sp-lg);
    min-height: 72px;
}

.logo-wrapper {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

.logo-image { width: 36px; height: 36px; display: block; }

/* Brand wordmark (flame + "Bia") — wider than tall, height-constrained */
.logo-mark { height: 34px; width: auto; display: block; }

.logo {
    font-family: var(--font-sans);
    font-size: 1.25rem;
    font-weight: 800;
    letter-spacing: 0.06em;
    color: var(--gold);
    margin: 0;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: var(--sp-lg);
}

.nav-links a {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-secondary);
    text-decoration: none;
    transition: color 150ms ease;
}
.nav-links a:hover { color: var(--text-primary); }

/* Waitlist CTA in the nav: keep dark-on-gold — .nav-links a would otherwise
   win specificity and render the label in low-contrast gray. */
.nav-links a.btn { color: var(--text-on-gold); }
.nav-links a.btn:hover { color: var(--text-on-gold); }

/* legacy header link */
.follow-us {
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    color: var(--text-secondary);
    text-decoration: none;
    border: 1px solid var(--border-default);
    border-radius: var(--r-md);
    padding: 10px 18px;
    transition: background 150ms ease, color 150ms ease;
}
.follow-us:hover { background: var(--bg-elevated); color: var(--text-primary); }

/* --------------------------------------------------------------------------
   Buttons  (§9.2 — flat, no shine, no shadow, no scale)
   -------------------------------------------------------------------------- */
.btn,
.cta-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 48px;
    padding: 12px 28px;
    border-radius: var(--r-md);
    font-family: var(--font-sans);
    font-size: 1rem;
    font-weight: 700;
    text-decoration: none;
    cursor: pointer;
    border: none;
    background: var(--gold);
    color: var(--text-on-gold);
    transition: background 150ms ease;
}
.btn:hover, .cta-button:hover { background: var(--gold-hover); color: var(--text-on-gold); }
.btn:disabled, .cta-button:disabled { cursor: default; }

.btn--secondary {
    background: transparent;
    border: 1px solid var(--border-default);
    color: var(--text-primary);
}
.btn--secondary:hover { background: var(--bg-elevated); color: var(--text-primary); }

.btn--done {
    background: transparent;
    border: 1px solid var(--gold);
    color: var(--gold);
    cursor: default;
}
.btn--done:hover { background: transparent; color: var(--gold); }

.text-link {
    color: var(--text-primary);
    font-weight: 500;
    text-decoration: underline;
    text-decoration-color: var(--border-default);
    text-underline-offset: 4px;
    transition: text-decoration-color 150ms ease;
}
.text-link:hover { text-decoration-color: var(--gold); color: var(--text-primary); }

/* --------------------------------------------------------------------------
   Sections & grid
   -------------------------------------------------------------------------- */
.section { padding: var(--section-pad) 0; }
.section--tight { padding: calc(var(--section-pad) * 0.55) 0; }
.section--band { background: var(--bg-surface); border-top: 1px solid var(--border-subtle); border-bottom: 1px solid var(--border-subtle); }

.grid-12 {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: var(--gutter);
    align-items: start;
}
.col-4 { grid-column: span 4; }
.col-5 { grid-column: span 5; }
.col-6 { grid-column: span 6; }
.col-7 { grid-column: span 7; }
.col-8 { grid-column: span 8; }
.col-12 { grid-column: span 12; }

@media (max-width: 900px) {
    .col-4, .col-5, .col-6, .col-7, .col-8 { grid-column: span 12; }
}

/* --------------------------------------------------------------------------
   Hero
   -------------------------------------------------------------------------- */
.hero {
    position: relative;
    padding: clamp(72px, 10vw, 140px) 0 clamp(56px, 7vw, 96px);
    overflow: hidden;
}

.hero-statement { max-width: 15ch; }

.hero .lead { max-width: 46ch; margin: var(--sp-lg) 0 0; }

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: var(--sp-md);
    margin-top: var(--sp-xl);
}

/* Static evidence line — numbers are set in type, never animated */
.evidence-line {
    display: flex;
    flex-wrap: wrap;
    gap: var(--sp-xl) var(--sp-2xl);
    margin-top: var(--sp-3xl);
    padding-top: var(--sp-lg);
    border-top: 1px solid var(--border-subtle);
}
.evidence-line .stat { display: flex; flex-direction: column; gap: 2px; }
.evidence-line .stat-number {
    font-family: var(--font-sans);
    font-weight: 800;
    font-size: clamp(1.5rem, 2.6vw, 2.25rem);
    letter-spacing: -0.02em;
    color: var(--text-primary);
}
.evidence-line .stat-label {
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.07em;
    text-transform: uppercase;
    color: var(--text-secondary);
}
.evidence-line .stat-caption {
    align-self: flex-end;
    margin-left: auto;
    font-size: 0.75rem;
    color: var(--text-secondary);
}

/* --------------------------------------------------------------------------
   Waitlist capture (kept mechanics, retokenized)
   -------------------------------------------------------------------------- */
.waitlist-container { position: relative; }

.waitlist-form { margin: 0; }

.form-group {
    display: flex;
    gap: var(--sp-sm);
    max-width: 420px;
}

.form-group input[type="email"] {
    flex: 1;
    min-height: 48px;
    padding: 12px 16px;
    background: var(--bg-elevated);
    border: 1px solid var(--border-default);
    border-radius: var(--r-md);
    color: var(--text-primary);
    font-family: var(--font-sans);
    font-size: 1rem;
    transition: border-color 150ms ease;
}
.form-group input[type="email"]::placeholder { color: var(--text-disabled); }
.form-group input[type="email"]:focus {
    outline: none;
    border-color: var(--gold);
}

.submit-button {
    flex: 0 0 auto;
    min-height: 48px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 22px;
    background: var(--gold);
    color: var(--text-on-gold);
    border: none;
    border-radius: var(--r-md);
    font-family: var(--font-sans);
    font-size: 1rem;
    font-weight: 700;
    white-space: nowrap;
    cursor: pointer;
    transition: background 150ms ease;
}
.submit-button:hover { background: var(--gold-hover); }
.submit-button.loading { opacity: 0.6; cursor: wait; }
.submit-label { line-height: 1; }

@media (max-width: 480px) {
    .form-group { flex-wrap: wrap; }
    .form-group input[type="email"] { flex: 1 1 100%; }
    .submit-button { flex: 1 1 100%; }
}

/* Screen-reader-only utility */
.visually-hidden {
    position: absolute;
    width: 1px; height: 1px;
    padding: 0; margin: -1px;
    overflow: hidden;
    clip: rect(0 0 0 0);
    white-space: nowrap;
    border: 0;
}

.form-message {
    min-height: 1.4em;
    margin-top: var(--sp-sm);
    font-size: 0.9rem;
    opacity: 0;
    transition: opacity 150ms ease;
}
.form-message.show { opacity: 1; }
.form-message.success { color: var(--gold); }
.form-message.info { color: var(--text-secondary); }
.form-message.error { color: var(--error); }

.reveal { animation: reveal-in 200ms ease both; }
@keyframes reveal-in {
    from { opacity: 0; transform: translateY(8px); }
    to { opacity: 1; transform: none; }
}

/* --------------------------------------------------------------------------
   Editorial statement block  (§9.3)
   -------------------------------------------------------------------------- */
/* max-width must sit on the serif headline itself, not this wrapper — "ch" resolves
   against the font-size of the element it's declared on, and the wrapper inherits the
   small body font-size (not the headline's), which was collapsing every heading to a
   ~160px column and shattering words onto single-letter lines. */
.statement .display-serif { display: block; max-width: 20ch; }

/* --------------------------------------------------------------------------
   Problem sequence  (§9.4)
   -------------------------------------------------------------------------- */
.step-seq {
    position: relative;
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: var(--sp-2xl) var(--gutter);
    margin-top: var(--sp-3xl);
}

.step {
    grid-column: span 5;
    display: flex;
    gap: var(--sp-md);
    align-items: baseline;
}
/* nth-of-type: the decorative svg is also a child of .step-seq */
.step:nth-of-type(odd) { grid-column: 1 / span 5; }
.step:nth-of-type(even) { grid-column: 7 / span 5; transform: translateY(var(--sp-2xl)); }

.step-num {
    font-family: var(--font-serif);
    font-size: clamp(2rem, 3.5vw, 3rem);
    line-height: 1;
    color: var(--gold);
    flex: 0 0 auto;
}

.step-body h4 {
    font-size: clamp(1.05rem, 1.5vw, 1.25rem);
    font-weight: 700;
    margin: 0 0 4px;
}
.step-body p { margin: 0; font-size: 0.95rem; color: var(--text-secondary); }

.step-annotation {
    grid-column: 7 / span 5;
    transform: rotate(-1.5deg);
}

@media (max-width: 900px) {
    .step, .step:nth-of-type(odd), .step:nth-of-type(even) {
        grid-column: span 12;
        transform: none;
    }
    .step-annotation { grid-column: span 12; }
}

/* Decorative search path behind the sequence */
.search-path {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: -1;
}
.search-path path {
    stroke: var(--ink);
    stroke-width: 24;
    stroke-linecap: round;
    fill: none;
    stroke-dasharray: 40 28 8 28;
}
@media (max-width: 900px) {
    .search-path path { stroke-width: 12; }
}

/* --------------------------------------------------------------------------
   Proof list  (§9.5 — typographic, not icon cards)
   -------------------------------------------------------------------------- */
.proof-list {
    list-style: none;
    margin: 0;
    padding: 0;
}
.proof-list li {
    padding: var(--sp-lg) 0;
    border-bottom: 1px solid var(--border-subtle);
}
.proof-list li:first-child { border-top: 1px solid var(--border-subtle); }
.proof-list .proof-term {
    display: block;
    font-family: var(--font-sans);
    font-weight: 800;
    font-size: clamp(1.5rem, 3vw, 2.25rem);
    letter-spacing: -0.02em;
    line-height: 1.15;
}
.proof-list .proof-note {
    display: block;
    margin-top: 4px;
    font-size: 0.95rem;
    color: var(--text-secondary);
    max-width: 44ch;
}

/* Interactive variant: each item is a button that highlights a region on the profile. */
.proof-item {
    position: relative;
    display: block;
    width: 100%;
    background: none;
    border: none;
    margin: 0;
    padding-left: var(--sp-md);
    margin-left: calc(-1 * var(--sp-md));
    font: inherit;
    color: inherit;
    text-align: left;
    cursor: pointer;
    appearance: none;
}
.proof-item::before {
    content: '';
    position: absolute;
    left: 0; top: 0; bottom: 0;
    width: 3px;
    background: transparent;
    transition: background 150ms ease;
}
.proof-item:hover .proof-term { color: var(--gold); }
.proof-item.is-active::before { background: var(--gold); }
.proof-item.is-active .proof-term { color: var(--gold); }

/* The BIA-answer heading is a longer sentence than the other section serifs,
   so it's set a step smaller to land in 2–3 lines instead of four. */
.section--band .statement .display-serif {
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    max-width: 30ch;
}

/* --------------------------------------------------------------------------
   Proof layout: heading + subcopy sit on their own full-width line above; the
   signal list (left) and the coach-profile capture (right) sit side by side
   below it (§6.1 7/5 split). The list stretches to the phone's height and
   spreads its four labels down beside it. Selecting a signal highlights where
   it lives on the profile; two-way linked.
   -------------------------------------------------------------------------- */
.proof-layout {
    display: flex;
    flex-direction: column;
    gap: var(--sp-2xl);
    margin-top: var(--sp-3xl);
}
.proof-copy { min-width: 0; }
.proof-visual { order: -1; }

@media (min-width: 901px) {
    .proof-layout { flex-direction: row; gap: var(--gutter); }
    .proof-copy { flex: 7 1 0; display: flex; }
    .proof-copy .proof-list { flex: 1; display: flex; flex-direction: column; justify-content: space-between; }
    .proof-visual { flex: 5 1 0; order: 0; }
}

/* --------------------------------------------------------------------------
   Coach-profile preview: one capture, five highlightable regions (§9.8)
   -------------------------------------------------------------------------- */
.profile-preview { position: relative; line-height: 0; }
.profile-preview img { display: block; width: 100%; height: auto; }

.hotspot {
    position: absolute;
    padding: 0;
    background: transparent;
    border: 2px solid transparent;
    border-radius: var(--r-md);
    cursor: pointer;
    appearance: none;
    transition: border-color 150ms ease, background 150ms ease;
}
.hotspot:hover { border-color: rgba(217, 160, 42, 0.45); }
.hotspot.is-active {
    border-color: var(--gold);
    background: rgba(217, 160, 42, 0.14);
}
.hotspot:focus-visible { outline: 2px solid var(--gold); outline-offset: 2px; }

/* --------------------------------------------------------------------------
   Review dimensions  (§9.6)
   -------------------------------------------------------------------------- */
.trait-list {
    list-style: none;
    margin: var(--sp-2xl) 0 0;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--sp-xl) var(--gutter);
}
.trait-list li { display: flex; flex-direction: column; gap: 4px; }
.trait-name {
    font-family: var(--font-serif);
    font-size: clamp(1.75rem, 3.2vw, 2.75rem);
    line-height: 1.05;
    color: var(--text-primary);
}
.trait-note { font-size: 0.95rem; color: var(--text-secondary); max-width: 38ch; }

@media (max-width: 700px) {
    .trait-list { grid-template-columns: 1fr; }
}

.star-row { display: inline-flex; gap: 6px; color: var(--text-secondary); }
.star-row svg { width: 22px; height: 22px; }
.star-row .filled { color: var(--gold); }

/* --------------------------------------------------------------------------
   Screenshot slot (real product capture goes here — never decorative filler)
   -------------------------------------------------------------------------- */
.shot-slot {
    background: var(--bg-surface);
    border: 1px solid var(--border-subtle);
    border-radius: var(--r-xl);
    max-width: 320px;
    margin-left: auto;
    overflow: hidden;
}
.shot-slot img { display: block; width: 100%; height: auto; }

@media (max-width: 900px) {
    .shot-slot { max-width: 220px; margin-left: auto; margin-right: auto; }
    .detail-toggle { margin-left: auto; margin-right: auto; }
}

/* --------------------------------------------------------------------------
   Paper artifact  (§7.4 — max one per viewport)
   -------------------------------------------------------------------------- */
.paper-note {
    background: var(--paper);
    color: #2A2418;
    border-radius: var(--r-sm);
    padding: var(--sp-lg) var(--sp-xl);
    max-width: 420px;
    transform: rotate(-1.2deg);
    font-family: var(--font-hand);
    font-weight: 500;
    font-size: clamp(1.35rem, 2.4vw, 1.9rem);
    line-height: 1.25;
    border-bottom: 2px solid var(--paper-line);
}
.paper-note .paper-attr {
    display: block;
    margin-top: var(--sp-sm);
    font-family: var(--font-sans);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.07em;
    text-transform: uppercase;
    color: #6B5E45;
}

/* --------------------------------------------------------------------------
   Role CTA  (§10.8 — separate athlete and coach paths)
   -------------------------------------------------------------------------- */
.role-cta {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--gutter);
}
.role-path {
    border: 1px solid var(--border-subtle);
    border-radius: var(--r-xl);
    padding: var(--sp-2xl) var(--sp-xl);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: var(--sp-md);
    background: var(--bg-surface);
}
.role-path .display-serif { font-size: clamp(2.25rem, 4.5vw, 3.75rem); }
.role-path p { margin: 0; color: var(--text-secondary); max-width: 40ch; }
.role-path .btn { margin-top: var(--sp-md); }

@media (max-width: 800px) {
    .role-cta { grid-template-columns: 1fr; }
}

/* --------------------------------------------------------------------------
   Legacy card (secondary pages) — flat surface, no glass
   -------------------------------------------------------------------------- */
.glass-card {
    background: var(--bg-surface);
    border: 1px solid var(--border-subtle);
    border-radius: var(--r-xl);
    padding: clamp(24px, 4vw, 48px);
}

.divider, .hero-divider {
    height: 1px;
    background: var(--border-subtle);
    border: none;
    margin: var(--sp-xl) 0;
}

/* Old decorative layers — intentionally inert */
.hero-background, .hero-gradient, .hero-grid, .hero-lines { display: none; }

/* --------------------------------------------------------------------------
   Footer  (§9.9)
   -------------------------------------------------------------------------- */
footer {
    background: var(--bg-surface);
    border-top: 1px solid var(--border-subtle);
    padding: var(--sp-3xl) 0;
    margin-top: var(--section-pad);
}

.footer-content {
    display: flex;
    flex-wrap: wrap;
    align-items: baseline;
    justify-content: space-between;
    gap: var(--sp-lg);
}

.footer-statement {
    flex-basis: 100%;
    margin: 0 0 var(--sp-sm);
    color: var(--text-secondary);
    font-size: 0.95rem;
    max-width: 44ch;
}

.footer-nav {
    display: flex;
    flex-wrap: wrap;
    gap: var(--sp-lg);
}
.footer-nav a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 150ms ease;
}
.footer-nav a:hover { color: var(--text-primary); }

/* --------------------------------------------------------------------------
   Entrance motion (§8) — opacity + small translate, once, reduced-motion safe
   -------------------------------------------------------------------------- */
.fx { opacity: 0; transform: translateY(12px); transition: opacity 400ms ease, transform 400ms ease; }
.fx.in { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
    .fx { opacity: 1; transform: none; transition: none; }
    .reveal { animation: none; }
    * { transition-duration: 0.01ms !important; animation-duration: 0.01ms !important; }
}
