/* =============================================================================
   ANAYASMI — EDITORIAL DESIGN SYSTEM  (ax-system.css)
   =============================================================================
   The shared, reusable design language for the whole site. Extracted from the
   approved AI Solutions page and promoted to a global system.

   Load this BEFORE any page-specific stylesheet. Page CSS then only needs to
   style its own sections, reusing these tokens and primitives.

   Principles
   ----------
   • The website is a stage; the logo is the colour. 90–95% mono, navy accent.
   • Typography is the design tool — not cards, graphics, diagrams.
   • Calm, premium, executive, content-first.
   • Reference register: Anthropic · Distyl · OpenAI Enterprise · Linear.

   Contents
   --------
   1. Geist @font-face (self-hosted)
   2. Design tokens (:root)
   3. Reading shell + reveal primitives
   4. Typographic primitives (eyebrow, h2 scale, emphasis)
   5. Buttons + text links
   6. Section shell + rhythm
   7. Editorial header (.axh)
   8. Editorial footer (.axf)
   9. Lenis smooth-scroll base
   10. Reduced motion
   ============================================================================= */


/* ── 1. GEIST (self-hosted; CSP-safe). Headings only. ───────────────────────── */
@font-face { font-family:"Geist"; font-style:normal; font-weight:400; font-display:swap; src:url(../vendor/fonts/files/geist-400.woff2) format("woff2"); }
@font-face { font-family:"Geist"; font-style:normal; font-weight:500; font-display:swap; src:url(../vendor/fonts/files/geist-500.woff2) format("woff2"); }
@font-face { font-family:"Geist"; font-style:normal; font-weight:600; font-display:swap; src:url(../vendor/fonts/files/geist-600.woff2) format("woff2"); }
@font-face { font-family:"Geist"; font-style:normal; font-weight:700; font-display:swap; src:url(../vendor/fonts/files/geist-700.woff2) format("woff2"); }


/* ── 2. DESIGN TOKENS ───────────────────────────────────────────────────────── */
:root {
    /* Type families */
    --ax-font-head: "Geist", "Inter", system-ui, sans-serif;
    --ax-font-body: "Inter", system-ui, sans-serif;

    /* Neutral scale — the 90–95%. Borders carry a faint warm cast. */
    --ax-bg:        #ffffff;
    --ax-surface:   #f6f6f4;   /* alternate section ground (#F7F7F5 family) */
    --ax-text:      #0c0c0d;   /* primary — near-black */
    --ax-text-2:    #4b4b4d;   /* secondary */
    --ax-text-3:    #7a7a7d;   /* tertiary / captions */
    --ax-border:    #e4e4e7;   /* hairline */
    --ax-border-2:  #eceae6;   /* hairline on surface */

    /* Logo colours — the 5–10%. Navy is the working accent. */
    --ax-navy:   #213164;
    --ax-yellow: #fdc816;
    --ax-green:  #37b34a;
    --ax-red:    #ec3925;
    --ax-accent: var(--ax-navy);
    --ax-accent-soft: #3a4a78;   /* muted navy for label text */

    /* Atmospheric wash — ~2% navy radial. Felt, not seen. */
    --ax-wash: radial-gradient(120% 90% at 50% 0%,
                rgba(33, 49, 100, 0.035) 0%, rgba(33, 49, 100, 0) 60%);

    /* Rhythm & measure */
    --ax-maxw:   1080px;                 /* wide shell — structural rows, grids */
    --ax-read:   680px;                  /* tight reading column — prose & leads  */
    --ax-gutter: clamp(22px, 5vw, 64px);

    /* Vertical rhythm — generous but efficient. Tightened so sections sit
       closer without feeling cramped (was 64–128 / 44–72). */
    --ax-section-y: clamp(48px, 6.5vw, 88px);
    --ax-head-gap:  clamp(32px, 4vw, 52px);

    --ax-ease: cubic-bezier(0.22, 1, 0.36, 1);

    /* Header height — referenced by anchor scroll offsets too. Tight but
       confident; gives a larger logo presence without excess whitespace. */
    --ax-header-h: 80px;
}


/* ── 3. READING SHELL + REVEAL PRIMITIVES ───────────────────────────────────── */
.ax-wrap {
    width: min(var(--ax-maxw), 100% - (var(--ax-gutter) * 2));
    margin-inline: auto;
}

/* Reveal initial state — GSAP animates these in. */
[data-ax-fade],[data-ax-row],.ax-line { opacity: 0; }


/* ── 4. TYPOGRAPHIC PRIMITIVES ──────────────────────────────────────────────── */

/* Hero kicker — small neutral label above an H1 */
.ax-kicker {
    font-family: var(--ax-font-body);
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.005em;
    color: var(--ax-text-3);
    margin: 0 0 clamp(26px, 4vw, 40px);
}

/* Section label — small, tracked, uppercase: an editorial dateline. Restrained
   navy + a short tick so the brand is felt without a coloured block. */
.ax-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 11px;
    margin: 0 0 26px;
    font-family: var(--ax-font-body);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.09em;
    text-transform: uppercase;
    color: var(--ax-accent-soft);
}
.ax-eyebrow::before {
    content: "";
    width: 18px;
    height: 1.5px;
    background: var(--ax-accent);
    border-radius: 1px;
    flex: 0 0 auto;
}

/* ── Headline scale — three clearly-separated tiers ──
   Display  (.ax-display)  — hero only, maximum authority
   Big idea (.ax-h2--lg)   — pivotal section statements
   Section  (.ax-h2)       — supporting section heads, quieter           */

.ax-display {
    font-family: var(--ax-font-head);
    font-weight: 600;
    font-size: clamp(46px, 8vw, 112px);
    line-height: 0.98;
    letter-spacing: -0.043em;
    color: var(--ax-text);
    margin: 0;
    max-width: 15ch;
}

.ax-h2 {
    font-family: var(--ax-font-head);
    font-weight: 560;
    font-size: clamp(25px, 2.8vw, 35px);
    line-height: 1.16;
    letter-spacing: -0.02em;
    color: var(--ax-text);
    margin: 0;
    text-wrap: balance;
}

.ax-h2--lg {
    font-weight: 600;
    font-size: clamp(34px, 5.2vw, 68px);
    line-height: 1.02;
    letter-spacing: -0.035em;
}

/* Headline second-line treatments */
.ax-muted  { color: var(--ax-text-3); }
.ax-accent-line { color: var(--ax-accent); }

/* Key-phrase emphasis — navy ink inside body copy / a headline. Inherits weight
   so it never reads as a link; colour alone lifts it. Use sparingly. */
.ax-em { color: var(--ax-accent); font-style: normal; }

/* Lead paragraph — the standfirst beneath a headline */
.ax-lead {
    font-family: var(--ax-font-body);
    font-size: clamp(17px, 1.5vw, 21px);
    line-height: 1.58;
    color: var(--ax-text-2);
    max-width: var(--ax-read);
    margin: 0;
}


/* ── 5. BUTTONS + TEXT LINKS ────────────────────────────────────────────────── */
.ax-btn {
    font-family: var(--ax-font-body);
    font-size: 15px;
    font-weight: 500;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: transform 0.18s var(--ax-ease),
                background-color 0.18s var(--ax-ease),
                box-shadow 0.18s var(--ax-ease);
    will-change: transform;
}

/* Primary CTA carries the brand: navy. The most deliberate use of colour. */
.ax-btn--solid {
    background: var(--ax-navy);
    color: #fff;
    padding: 12px 22px;
    border-radius: 6px;
    box-shadow: 0 1px 2px rgba(33, 49, 100, 0.18);
}
.ax-btn--solid:hover {
    background-color: #1a274f;
    transform: translateY(-1px);
    box-shadow: 0 6px 18px -6px rgba(33, 49, 100, 0.4);
}
.ax-btn--solid:active {
    transform: translateY(0);
    box-shadow: 0 1px 2px rgba(33, 49, 100, 0.18);
}

.ax-btn--text { color: var(--ax-text); padding: 12px 4px; }
.ax-btn--text span { transition: transform 0.18s var(--ax-ease); display: inline-block; }
.ax-btn--text:hover span { transform: translateX(4px); }


/* ── 6. SECTION SHELL + RHYTHM ──────────────────────────────────────────────── */
.ax-section {
    background: var(--ax-bg);
    padding-block: var(--ax-section-y);
    border-top: 1px solid var(--ax-border);
}
.ax-section--surface { background: var(--ax-surface); }
.ax-section--flush { border-top: none; }   /* opt out of the top hairline */

.ax-head {
    max-width: 720px;
    margin-bottom: var(--ax-head-gap);
}
.ax-head--center {
    margin-inline: auto;
    text-align: center;
    max-width: var(--ax-read);
}


/* ── 6b. HERO — shared full-bleed opener (words only) ───────────────────────────
   Surface ground + a ~2% navy wash. Used by every ax page's <section class="ax-hero"
   data-ax-hero>. Top padding clears the fixed header and gives the H1 air. Pages
   may override per-section, but the default lives here so all heros agree. */
.ax-hero {
    position: relative;
    background: var(--ax-surface);
    padding-top: clamp(140px, 18vw, 208px);
    padding-bottom: clamp(64px, 8.5vw, 110px);
}

.ax-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: var(--ax-wash);
    pointer-events: none;
    z-index: 0;
}

.ax-hero > .ax-wrap { position: relative; z-index: 1; }

.ax-hero__title {
    font-family: var(--ax-font-head);
    font-weight: 600;
    font-size: clamp(46px, 8vw, 112px);
    line-height: 0.98;
    letter-spacing: -0.043em;
    color: var(--ax-text);
    margin: 0;
    max-width: 15ch;
}

.ax-hero__lead {
    font-family: var(--ax-font-body);
    font-size: clamp(18px, 1.65vw, 23px);
    line-height: 1.55;
    color: var(--ax-text-2);
    max-width: 44ch;
    margin: clamp(30px, 4vw, 44px) 0 0;
}

.ax-hero__actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px 22px;
    margin-top: clamp(32px, 4vw, 44px);
}


/* ── 6c. CTA — shared restrained close ──────────────────────────────────────────
   Centered, contained, with a ~4% navy wash rising into the footer. Used by
   every ax page's <section class="ax-cta"> … <div class="ax-wrap ax-cta__inner">. */
.ax-cta {
    position: relative;
    background: var(--ax-bg);
    border-top: 1px solid var(--ax-border);
    padding-block: var(--ax-section-y);
}

.ax-cta::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(120% 90% at 50% 100%,
                rgba(33, 49, 100, 0.04) 0%, rgba(33, 49, 100, 0) 62%);
    pointer-events: none;
    z-index: 0;
}

.ax-cta > .ax-wrap { position: relative; z-index: 1; }

.ax-cta__inner { text-align: center; }

.ax-cta__title {
    font-family: var(--ax-font-head);
    font-weight: 600;
    font-size: clamp(34px, 5vw, 66px);
    line-height: 1.03;
    letter-spacing: -0.035em;
    color: var(--ax-text);
    margin: 0;
    text-wrap: balance;
}

.ax-cta__lead {
    font-family: var(--ax-font-body);
    font-size: clamp(16px, 1.4vw, 19px);
    line-height: 1.6;
    color: var(--ax-text-2);
    max-width: 48ch;
    margin: 26px auto 0;
}

.ax-cta__actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 10px 22px;
    margin-top: clamp(32px, 4vw, 44px);
}


/* ── 7. EDITORIAL HEADER (.axh) ─────────────────────────────────────────────────
   Deliberate, calm, enterprise (Anthropic / Linear / OpenAI Enterprise). A wide
   logo with breathing room, centered nav, and Contact as a typographic primary
   action. Sticky on a SOLID white ground with a hairline on scroll — no blur,
   no glass, no shadow. Body offsets for it unless the page opens with its own
   full-bleed hero (.ax-has-hero). JS toggles .is-scrolled.
   ──────────────────────────────────────────────────────────────────────────── */
.axh {
    position: fixed;
    inset: 0 0 auto 0;
    z-index: 1000;
    background: var(--ax-bg);            /* solid white — stable, never glassy */
    border-bottom: 1px solid transparent;
    transition: border-color 0.25s var(--ax-ease);
}
.axh.is-scrolled { border-bottom-color: var(--ax-border); }

.axh__inner {
    /* Centered container, generous side padding (24–32px). */
    width: 100%;
    max-width: 1280px;
    margin-inline: auto;
    padding-inline: clamp(24px, 4vw, 32px);
    height: var(--ax-header-h);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
}

/* Logo — more presence (~72px), with room to breathe on both sides. */
.axh__brand { display: inline-flex; align-items: center; flex: 0 0 auto; }
.axh__logo  { height: 72px; width: auto; display: block; }

/* Centered nav — concise, quiet until hovered/active. */
.axh__nav {
    display: flex;
    align-items: center;
    gap: clamp(24px, 2.8vw, 42px);
    margin-inline: auto;
}
.axh__nav a {
    position: relative;
    font-family: var(--ax-font-body);
    font-size: 15px;
    font-weight: 450;
    letter-spacing: -0.005em;
    color: var(--ax-text-2);
    text-decoration: none;
    padding-block: 6px;
    transition: color 0.2s var(--ax-ease);
}
.axh__nav a:hover { color: var(--ax-text); }

/* Active page — a thin bottom rule + darker text. No pill, no background. */
.axh__nav a[aria-current="page"] { color: var(--ax-text); }
.axh__nav a[aria-current="page"]::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: -2px;
    height: 1.5px;
    background: var(--ax-text);
    border-radius: 1px;
}

/* Contact — the primary action, expressed in type: a touch heavier, with a cue
   arrow that nudges on hover. No fill, no border, no colour. */
.axh__cta {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    font-family: var(--ax-font-body);
    font-size: 15px;
    font-weight: 560;
    letter-spacing: -0.005em;
    color: var(--ax-text);
    text-decoration: none;
    flex: 0 0 auto;
    transition: opacity 0.2s var(--ax-ease);
}
.axh__cta:hover { opacity: 0.62; }
.axh__cta-arrow { transition: transform 0.2s var(--ax-ease); }
.axh__cta:hover .axh__cta-arrow { transform: translateX(3px); }

/* Mobile toggle (hamburger) — hidden on desktop. Two bars that cross into an X. */
.axh__toggle {
    display: none;
    flex: 0 0 auto;
    width: 40px;
    height: 40px;
    margin-right: -8px;        /* align the bars to the visual edge */
    padding: 0;
    background: none;
    border: 0;
    cursor: pointer;
    position: relative;
}
.axh__toggle-bar {
    position: absolute;
    left: 9px;
    right: 9px;
    height: 1.5px;
    background: var(--ax-text);
    transition: transform 0.25s var(--ax-ease), opacity 0.25s var(--ax-ease);
}
.axh__toggle-bar:nth-child(1) { top: 16px; }
.axh__toggle-bar:nth-child(2) { bottom: 16px; }
.axh__toggle[aria-expanded="true"] .axh__toggle-bar:nth-child(1) { top: 19.5px; transform: rotate(45deg); }
.axh__toggle[aria-expanded="true"] .axh__toggle-bar:nth-child(2) { bottom: 19px;  transform: rotate(-45deg); }

/* Mobile slide-down menu — full width, solid white, same calm register. */
.axh__menu {
    border-top: 1px solid var(--ax-border);
    border-bottom: 1px solid var(--ax-border);
    background: var(--ax-bg);
    overflow: hidden;
}
.axh__menu[hidden] { display: none; }
.axh__menu-nav {
    display: flex;
    flex-direction: column;
    padding: 8px clamp(24px, 6vw, 32px) 20px;
}
.axh__menu-nav a {
    font-family: var(--ax-font-body);
    font-size: 19px;
    font-weight: 450;
    color: var(--ax-text-2);
    text-decoration: none;
    padding: 16px 0;                 /* large tap targets */
    border-bottom: 1px solid var(--ax-border-2);
    transition: color 0.2s var(--ax-ease);
}
.axh__menu-nav a:hover,
.axh__menu-nav a[aria-current="page"] { color: var(--ax-text); }
.axh__menu-cta {
    font-weight: 560 !important;
    color: var(--ax-text) !important;
    border-bottom: 0 !important;
    padding-top: 22px !important;
}

/* Body offset: pages that DON'T open with a full-bleed hero clear the fixed
   header. Hero pages set .ax-has-hero on <body> and handle their own top space. */
body.ax-chrome main { padding-top: var(--ax-header-h); }
body.ax-chrome.ax-has-hero main { padding-top: 0; }


/* ── 8. EDITORIAL FOOTER (.axf) ─────────────────────────────────────────────────
   Typography-first, light, structured (Anthropic / Linear / Distyl). Four
   columns over whitespace: brand + positioning, then three link columns. No
   cards, no section borders, no graphics, no icons, no giant logo. A single
   hairline above the legal row is the only rule.
   ──────────────────────────────────────────────────────────────────────────── */
.axf {
    background: var(--ax-bg);
    border-top: 1px solid var(--ax-border);
    padding-block: clamp(56px, 6vw, 88px) clamp(24px, 3vw, 32px);
}

.axf__inner {
    width: min(var(--ax-maxw), 100% - (var(--ax-gutter) * 2));
    margin-inline: auto;
    display: grid;
    /* Brand column is wider; the three link columns share the rest evenly. */
    grid-template-columns: minmax(0, 1.5fr) repeat(3, minmax(0, 1fr));
    gap: clamp(36px, 5vw, 80px) clamp(32px, 4vw, 64px);
    align-items: start;
    padding-bottom: clamp(48px, 5.5vw, 72px);
}

/* 1 · Brand — a text wordmark, never the logo image. */
.axf__wordmark {
    display: inline-block;
    font-family: var(--ax-font-head);
    font-weight: 600;
    font-size: clamp(19px, 1.8vw, 23px);
    letter-spacing: -0.02em;
    color: var(--ax-text);
    text-decoration: none;
    transition: color 0.2s var(--ax-ease);
}
.axf__wordmark:hover { color: var(--ax-accent); }

.axf__statement {
    font-family: var(--ax-font-body);
    font-size: clamp(14.5px, 1.2vw, 16px);
    line-height: 1.6;
    color: var(--ax-text-2);
    margin: 18px 0 0;
    max-width: 34ch;
    text-wrap: pretty;
}

/* 2–4 · Link columns — small quiet heading + a clean stacked list. */
.axf__col-h {
    font-family: var(--ax-font-body);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--ax-text-3);
    margin: 0 0 18px;
}

.axf__list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.axf__list--loc { margin-top: 12px; }

.axf__list a,
.axf__muted {
    font-family: var(--ax-font-body);
    font-size: 14.5px;
    font-weight: 450;
    line-height: 1.4;
}
.axf__list a {
    color: var(--ax-text-2);
    text-decoration: none;
    transition: color 0.2s var(--ax-ease);
}
.axf__list a:hover { color: var(--ax-text); }
.axf__muted { color: var(--ax-text-3); }

/* Social row — small monochrome icons under the positioning statement. Same
   text-color system, no brand colors / circles / borders. The only motion is a
   subtle opacity shift, so it reads as quiet credibility, not a feature. */
.axf__social {
    list-style: none;
    margin: 22px 0 0;
    padding: 0;
    display: flex;
    align-items: center;
    gap: 18px;
}
.axf__social-link {
    display: inline-flex;
    color: var(--ax-text-3);
    opacity: 0.85;
    transition: opacity 0.2s var(--ax-ease), color 0.2s var(--ax-ease);
}
.axf__social-link:hover { opacity: 1; color: var(--ax-text); }
.axf__social-icon { display: block; }

/* Contact column carries full addresses — give it a touch more room. */
.axf__col--contact { min-width: 0; }

/* Office blocks — the whole block is one link to Google Maps. No card, no
   border; the city is the anchor, the address is quiet supporting text. */
.axf__offices {
    list-style: none;
    margin: 22px 0 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.axf__office {
    display: block;
    text-decoration: none;
    transition: color 0.2s var(--ax-ease);
}
.axf__office-city {
    display: block;
    font-family: var(--ax-font-body);
    font-size: 14.5px;
    font-weight: 600;
    color: var(--ax-text-2);
    margin-bottom: 5px;
    transition: color 0.2s var(--ax-ease);
}
.axf__office:hover .axf__office-city { color: var(--ax-text); }
.axf__office-addr {
    display: block;
    font-family: var(--ax-font-body);
    font-size: 13px;
    line-height: 1.55;
    color: var(--ax-text-3);
}

/* 5 · Legal — one hairline, copyright left, links right. */
.axf__legal {
    width: min(var(--ax-maxw), 100% - (var(--ax-gutter) * 2));
    margin-inline: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding-top: clamp(24px, 3vw, 32px);
    border-top: 1px solid var(--ax-border);
    font-family: var(--ax-font-body);
    font-size: 13px;
    color: var(--ax-text-3);
}
.axf__legal-links { display: flex; gap: 24px; }
.axf__legal-links a { color: var(--ax-text-3); text-decoration: none; transition: color 0.2s var(--ax-ease); }
.axf__legal-links a:hover { color: var(--ax-text); }


/* ── 9. LENIS SMOOTH-SCROLL BASE ────────────────────────────────────────────────
   Engages only once JS adds the lenis classes to <html>. Without JS / on touch,
   native scroll is preserved.
   ──────────────────────────────────────────────────────────────────────────── */
html.lenis, html.lenis body { height: auto; }
html.lenis.lenis-smooth { scroll-behavior: auto !important; }
html.lenis.lenis-smooth [data-lenis-prevent] { overscroll-behavior: contain; }
html.lenis.lenis-stopped { overflow: clip; }


/* ── 10. RESPONSIVE ─────────────────────────────────────────────────────────── */

/* Footer at tablet — four columns get cramped; the brand takes the top row,
   the three link columns drop to an even 3-up below it. */
@media (max-width: 980px) and (min-width: 641px) {
    .axf__inner {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: clamp(32px, 4vw, 48px);
    }
    .axf__brand { grid-column: 1 / -1; }
    .axf__statement { max-width: 52ch; }
}

/* ── shared chrome + hero on small screens ──────────────────────────────────── */
@media (max-width: 640px) {
    :root { --ax-gutter: 22px; --ax-header-h: 68px; }

    .axh__inner { height: var(--ax-header-h); }
    /* Desktop nav + inline CTA give way to a hamburger + slide-down menu. */
    .axh__nav { display: none; }
    .axh__cta { display: none; }
    .axh__toggle { display: block; }
    .axh__logo { height: 52px; }

    /* Footer: full vertical stack — brand, then each column in turn. No
       accordions; every link stays visible. Generous gaps preserve the calm. */
    .axf__inner { grid-template-columns: 1fr; gap: 40px; }
    .axf__statement { max-width: 46ch; }
    .axf__legal { flex-direction: column; align-items: flex-start; gap: 12px; }

    /* Hero — maximum relative authority, comfortable measure */
    .ax-hero { padding-top: 110px; padding-bottom: 56px; }
    .ax-hero__title { font-size: clamp(38px, 12vw, 58px); max-width: 13ch; letter-spacing: -0.04em; }
    .ax-hero__lead { font-size: 17.5px; max-width: 38ch; }
    .ax-hero__actions { flex-direction: column; align-items: stretch; gap: 12px; }
    .ax-hero__actions .ax-btn { justify-content: center; text-align: center; }

    /* CTA — full-width stacked actions */
    .ax-cta { padding-block: 56px; }
    .ax-cta__actions { flex-direction: column; align-items: stretch; gap: 12px; }
    .ax-cta__actions .ax-btn { justify-content: center; }
}


/* ── 11. REDUCED MOTION ─────────────────────────────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
    [data-ax-fade],[data-ax-row],.ax-line { opacity: 1 !important; transform: none !important; }
    .axh { transition: none !important; }
}
