/* ============================================================
   EB SOLUCIONES LOGÍSTICAS — Rediseño 2026
   Sistema: manifiesto de carga. Archivo Expanded + IBM Plex Mono.
   ============================================================ */

:root {
    --ink: #14163A;
    --indigo: #282A85;
    --electric: #3238C9;
    --deep: #1B1D66;
    --red: #E41D25;
    --paper: #F4F5F9;
    --white: #FFFFFF;
    --line: rgba(20, 22, 58, 0.14);
    --line-inv: rgba(255, 255, 255, 0.18);
    --txt-2: #565A72;
    --wrap: 1240px;
    --gutter: clamp(18px, 4vw, 48px);
    --header-h: 84px;
}

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

html.lenis { height: auto; }
.lenis.lenis-smooth { scroll-behavior: auto; }

html, body { overflow-x: clip; }
body {
    font-family: 'Archivo', system-ui, sans-serif;
    font-variation-settings: 'wdth' 100;
    color: var(--ink);
    background: var(--white);
    line-height: 1.55;
    -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { color: inherit; -webkit-tap-highlight-color: transparent; }
::selection { background: var(--indigo); color: #fff; }

.mono {
    font-family: 'IBM Plex Mono', monospace;
    font-size: 11.5px;
    font-weight: 500;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.wrap { max-width: var(--wrap); margin: 0 auto; padding-inline: var(--gutter); }
.section { padding-block: clamp(84px, 11vw, 150px); }

/* ---------- Tipografía display ---------- */
.display-xl, .display-md, .hero-title {
    font-family: 'Archivo', sans-serif;
    font-variation-settings: 'wdth' 122;
    font-weight: 830;
    text-transform: uppercase;
    line-height: 0.94;
    letter-spacing: -0.005em;
}
.display-xl { font-size: clamp(50px, 8.6vw, 122px); }
.display-md { font-size: clamp(34px, 4.6vw, 62px); margin: 14px 0 26px; }

.eyebrow {
    color: var(--red);
    display: inline-flex;
    align-items: center;
    gap: 10px;
}
.eyebrow::before {
    content: '';
    width: 26px; height: 2px;
    background: var(--red);
    display: inline-block;
}
.eyebrow.inv { color: #FF7A80; }
.eyebrow.inv::before { background: #FF7A80; }

.lead { font-size: clamp(17px, 1.6vw, 21px); line-height: 1.6; font-weight: 500; }

/* ---------- Botones ---------- */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-family: 'IBM Plex Mono', monospace;
    font-size: 12.5px;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    text-decoration: none;
    padding: 17px 28px;
    border: 1.5px solid transparent;
    cursor: pointer;
    transition: background 0.3s ease, color 0.3s ease, border-color 0.3s ease, transform 0.3s ease;
}
.btn .arr { display: inline-block; transition: transform 0.3s ease; }
.btn:hover .arr { transform: translate(3px, -3px); }
.btn-ghost:hover .arr, .cta-actions .btn:hover .arr { transform: translate(3px, -3px); }

.btn-solid { background: var(--red); color: #fff; }
.btn-solid:hover { background: var(--indigo); }
.btn-ghost { border-color: var(--line); color: var(--ink); background: transparent; }
.btn-ghost:hover { border-color: var(--ink); }
.btn-light { background: var(--red); color: #fff; }
.btn-light:hover { background: #fff; color: var(--indigo); }

/* ---------- Header ---------- */
.site-header {
    position: fixed;
    inset: 0 0 auto 0;
    z-index: 90;
    background: rgba(233, 235, 241, 0.92);
    backdrop-filter: blur(14px);
    border-bottom: 1px solid var(--line);
    transition: box-shadow 0.3s ease;
}
.site-header.scrolled { box-shadow: 0 10px 30px rgba(20, 22, 58, 0.08); }
.header-inner {
    max-width: var(--wrap);
    margin: 0 auto;
    padding-inline: var(--gutter);
    height: var(--header-h);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}
.brand img { height: 56px; width: auto; }
.nav-desktop { display: flex; gap: 34px; }
.nav-desktop a {
    font-family: 'IBM Plex Mono', monospace;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    text-decoration: none;
    position: relative;
    padding: 6px 0;
}
.nav-desktop a::after {
    content: '';
    position: absolute;
    left: 0; bottom: 0;
    width: 100%; height: 2px;
    background: var(--red);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.35s cubic-bezier(0.65, 0, 0.35, 1);
}
.nav-desktop a:hover::after { transform: scaleX(1); transform-origin: left; }
.header-right { display: flex; align-items: center; gap: 14px; }
.btn-header { padding: 12px 20px; }

.menu-btn {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 6px;
    width: 44px; height: 44px;
    background: var(--indigo);
    border: none;
    cursor: pointer;
    align-items: center;
}
.menu-btn span { width: 20px; height: 2px; background: #fff; transition: transform 0.3s ease; }
.menu-btn.open span:nth-child(1) { transform: translateY(4px) rotate(45deg); }
.menu-btn.open span:nth-child(2) { transform: translateY(-4px) rotate(-45deg); }

/* ---------- Mobile menu ---------- */
.mobile-menu {
    position: fixed;
    inset: 0;
    z-index: 80;
    background: var(--deep);
    color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 100px var(--gutter) 48px;
    clip-path: inset(0 0 100% 0);
    transition: clip-path 0.6s cubic-bezier(0.76, 0, 0.24, 1);
}
.mobile-menu.open { clip-path: inset(0 0 0% 0); }
.mobile-menu nav { display: flex; flex-direction: column; gap: 6px; }
.mobile-menu nav a {
    font-family: 'Archivo', sans-serif;
    font-variation-settings: 'wdth' 118;
    font-weight: 800;
    font-size: clamp(30px, 8vw, 44px);
    text-transform: uppercase;
    text-decoration: none;
    line-height: 1.18;
    display: flex;
    align-items: baseline;
    gap: 14px;
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.45s ease, transform 0.45s ease;
}
.mobile-menu.open nav a { opacity: 1; transform: translateY(0); }
.mobile-menu.open nav a:nth-child(1) { transition-delay: 0.12s; }
.mobile-menu.open nav a:nth-child(2) { transition-delay: 0.17s; }
.mobile-menu.open nav a:nth-child(3) { transition-delay: 0.22s; }
.mobile-menu.open nav a:nth-child(4) { transition-delay: 0.27s; }
.mobile-menu.open nav a:nth-child(5) { transition-delay: 0.32s; }
.mobile-menu.open nav a:nth-child(6) { transition-delay: 0.37s; }
.mobile-menu nav a em {
    font-family: 'IBM Plex Mono', monospace;
    font-style: normal;
    font-size: 12px;
    font-weight: 500;
    color: #FF7A80;
}
.mobile-menu-foot {
    margin-top: 48px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.mobile-menu-foot a {
    font-family: 'IBM Plex Mono', monospace;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.75);
    text-decoration: none;
}

/* ---------- Hero ---------- */
.hero {
    position: relative;
    min-height: min(100svh, 900px);
    padding-top: calc(var(--header-h) + 22px);
    display: flex;
    flex-direction: column;
    overflow: hidden;
}
.hero-meta {
    max-width: var(--wrap);
    width: 100%;
    margin: 0 auto;
    padding: 10px var(--gutter) 0;
    display: flex;
    justify-content: space-between;
    gap: 18px;
    color: var(--txt-2);
    position: relative;
    z-index: 2;
}
.hero-body {
    max-width: var(--wrap);
    width: 100%;
    margin: 0 auto;
    padding: clamp(28px, 5vh, 64px) var(--gutter) 0;
    position: relative;
    z-index: 2;
    flex: 1;
}
.hero-title {
    font-size: clamp(44px, 8.4vw, 118px);
    margin-bottom: clamp(22px, 3vh, 40px);
}
.hero-title .line { display: block; overflow: hidden; }
.hero-title .line > span { display: inline-block; will-change: transform; }
.hero-title em { font-style: normal; color: var(--indigo); }
.hero-title em.rd { color: var(--red); }

.hero-sub { max-width: 470px; }
.hero-sub p { color: var(--txt-2); font-size: 16.5px; margin-bottom: 26px; }
.hero-ctas { display: flex; flex-wrap: wrap; gap: 12px; }

.hero-figure {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    width: min(60vw, 1040px);
    z-index: 1;
    overflow: hidden;
    pointer-events: none;
    -webkit-mask-image: linear-gradient(100deg, transparent 2%, #000 36%);
    mask-image: linear-gradient(100deg, transparent 2%, #000 36%);
}
.hero-figure img {
    position: absolute;
    left: 0;
    right: 0;
    top: -7%;
    width: 100%;
    height: 114%;
    object-fit: cover;
    object-position: 64% 42%;
}

.hero-stats {
    position: relative;
    z-index: 2;
    border-top: 1px solid var(--line);
    background: rgba(255, 255, 255, 0.82);
    backdrop-filter: blur(8px);
}
.hero-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    max-width: 100%;
}
.hero-stats .stat {
    padding: 22px var(--gutter);
    border-right: 1px solid var(--line);
    display: flex;
    flex-direction: column;
    gap: 4px;
}
.hero-stats .stat:last-child { border-right: none; }
.hero-stats strong {
    font-family: 'Archivo', sans-serif;
    font-variation-settings: 'wdth' 120;
    font-weight: 820;
    font-size: clamp(26px, 3vw, 40px);
    line-height: 1;
}
.hero-stats .mono { color: var(--txt-2); font-size: 10.5px; }
.arr-inline { color: var(--red); }

/* ---------- Ticker ---------- */
.ticker {
    background: var(--indigo);
    color: #fff;
    overflow: hidden;
    padding: 16px 0;
    border-block: 1px solid var(--deep);
}
.ticker-track {
    display: flex;
    align-items: center;
    gap: 34px;
    width: max-content;
    animation: ticker 36s linear infinite;
    font-family: 'IBM Plex Mono', monospace;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    white-space: nowrap;
}
.ticker-track.slow { animation-duration: 46s; }
.ticker-track i { font-style: normal; color: #FF7A80; }
@keyframes ticker { to { transform: translateX(-50%); } }

/* ---------- Nosotros ---------- */
.grid-about {
    display: grid;
    grid-template-columns: 1fr 1.25fr;
    gap: clamp(36px, 6vw, 96px);
    align-items: start;
}
.about-left { position: sticky; top: calc(var(--header-h) + 32px); }
.about-right p { color: var(--txt-2); margin-bottom: 18px; }
.about-right .lead { color: var(--ink); margin-bottom: 22px; }

.chips { list-style: none; display: flex; flex-wrap: wrap; gap: 8px; margin: 26px 0 40px; }
.chips li {
    font-family: 'IBM Plex Mono', monospace;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 9px 14px;
    border: 1px solid var(--line);
    color: var(--txt-2);
    transition: all 0.25s ease;
}
.chips li:hover { border-color: var(--red); color: var(--red); }

.mv-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.mv-card {
    background: var(--paper);
    padding: 26px 24px;
    border-top: 2px solid var(--red);
}
.mv-card .code { color: var(--red); display: block; margin-bottom: 14px; }
.mv-card h3 {
    font-variation-settings: 'wdth' 118;
    font-weight: 800;
    text-transform: uppercase;
    font-size: 18px;
    margin-bottom: 10px;
}
.mv-card p { font-size: 14.5px; color: var(--txt-2); margin: 0; }

/* ---------- Servicios (manifiesto) ---------- */
.services {
    background:
        radial-gradient(90% 60% at 85% 0%, rgba(50, 56, 201, 0.5) 0%, transparent 55%),
        radial-gradient(55% 40% at 0% 100%, rgba(228, 29, 37, 0.22) 0%, transparent 60%),
        linear-gradient(175deg, var(--deep) 0%, #15173F 100%);
    color: #fff;
}
.services-head { margin-bottom: clamp(40px, 6vw, 72px); position: relative; }
.services-head .display-xl { color: #fff; }
.services-note { color: rgba(255, 255, 255, 0.55); margin-top: 18px; }

.manifest { border-top: 1px solid var(--line-inv); }
.m-row { border-bottom: 1px solid var(--line-inv); }
.m-head {
    width: 100%;
    display: grid;
    grid-template-columns: 90px 1fr 44px;
    align-items: center;
    gap: 18px;
    padding: 26px 8px;
    background: none;
    border: none;
    color: #fff;
    text-align: left;
    cursor: pointer;
    transition: padding 0.3s ease;
}
.m-head:hover { padding-left: 18px; }
.m-head .m-code {
    font-family: 'IBM Plex Mono', monospace;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.14em;
    color: #FF4D55;
}
.m-head .m-title {
    font-family: 'Archivo', sans-serif;
    font-variation-settings: 'wdth' 118;
    font-weight: 780;
    font-size: clamp(18px, 2.6vw, 32px);
    text-transform: uppercase;
    line-height: 1.06;
}
.m-head .m-x {
    width: 40px; height: 40px;
    border: 1px solid var(--line-inv);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 18px;
    font-weight: 300;
    transition: transform 0.4s cubic-bezier(0.65, 0, 0.35, 1), background 0.3s ease;
    flex-shrink: 0;
}
.m-row.open .m-x { transform: rotate(45deg); background: var(--red); border-color: var(--red); }
.m-body { max-height: 0; overflow: hidden; transition: max-height 0.5s cubic-bezier(0.65, 0, 0.35, 1); }
.m-body-inner {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: clamp(20px, 4vw, 48px);
    padding: 6px 8px 34px calc(90px + 18px);
}
.m-body p { color: rgba(255, 255, 255, 0.78); font-size: 15.5px; max-width: 60ch; margin-bottom: 22px; }
.m-body img { width: 100%; height: 200px; object-fit: cover; }
.m-body .btn-light { padding: 14px 22px; }

/* preview flotante (cursor) */
.service-preview {
    position: fixed;
    z-index: 60;
    width: 300px;
    height: 190px;
    pointer-events: none;
    opacity: 0;
    transform: scale(0.9);
    background-size: cover;
    background-position: center;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.45);
    transition: opacity 0.25s ease, transform 0.25s ease;
}
.service-preview.on { opacity: 1; transform: scale(1); }

/* ---------- Feature minería ---------- */
.feature {
    position: relative;
    overflow: hidden;
    padding-block: clamp(84px, 11vw, 150px);
    background: var(--white);
}
.feature-figure {
    position: absolute;
    inset: 0;
    z-index: 0;
}
.feature-figure::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, #fff 34%, rgba(255,255,255,0.72) 52%, rgba(255,255,255,0) 74%);
}
.feature-figure img {
    width: 100%; height: 110%;
    object-fit: cover;
    object-position: right center;
    will-change: transform;
}
.feature .wrap { position: relative; z-index: 1; }
.feature-body { max-width: 520px; }
.feature-body p.lead { color: var(--txt-2); margin-bottom: 26px; }
.feature-list { list-style: none; margin-bottom: 34px; }
.feature-list li {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 13px 0;
    border-bottom: 1px solid var(--line);
    font-weight: 600;
    font-size: 15.5px;
}
.feature-list .mono { color: var(--red); }

/* ---------- Política ---------- */
.policy { background: var(--paper); }
.grid-policy {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: clamp(36px, 6vw, 96px);
}
.policy-left > p { color: var(--txt-2); max-width: 54ch; }
.policy-docs { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-top: 34px; }
.doc-card {
    background: var(--white);
    border: 1px solid var(--line);
    padding: 22px 20px;
    text-decoration: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
    transition: all 0.3s ease;
}
.doc-card:hover { border-color: var(--red); transform: translateY(-4px); box-shadow: 0 16px 40px rgba(228, 29, 37, 0.12); }
.doc-card .code { color: var(--red); }
.doc-card strong { font-variation-settings: 'wdth' 116; font-weight: 780; text-transform: uppercase; font-size: 15px; line-height: 1.25; }
.doc-note { color: var(--txt-2); }

.objectives { list-style: none; counter-reset: none; border-top: 1px solid var(--line); margin-top: 8px; }
.objectives li {
    display: flex;
    gap: 20px;
    align-items: baseline;
    padding: 22px 4px;
    border-bottom: 1px solid var(--line);
    font-size: 15.5px;
    font-weight: 500;
}
.objectives .mono { color: var(--indigo); flex-shrink: 0; }

/* ---------- Clientes ---------- */
.clients { padding-bottom: 0; }
.client-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
    margin: 44px 0 clamp(60px, 8vw, 100px);
}
.client-card {
    background: var(--white);
    border: 1px solid var(--line);
    padding: 26px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}
.client-card img {
    height: 72px;
    width: 100%;
    object-fit: contain;
    filter: grayscale(1);
    opacity: 0.75;
    transition: filter 0.3s ease, opacity 0.3s ease;
}
.client-card:hover { border-color: var(--indigo); transform: translateY(-4px); box-shadow: 0 16px 40px rgba(20, 22, 58, 0.08); }
.client-card:hover img { filter: grayscale(0); opacity: 1; }

.allies-ticker {
    border-block: 1px solid var(--line);
    overflow: hidden;
    padding: 14px 0;
    color: var(--txt-2);
}
.allies-ticker i { font-style: normal; color: var(--red); }

/* ---------- Ubicación ---------- */
.grid-location {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: clamp(36px, 6vw, 80px);
    align-items: center;
}
.location-info > p { color: var(--txt-2); max-width: 50ch; }
.loc-data { margin: 30px 0 34px; border-top: 1px solid var(--line); }
.loc-data > div {
    display: grid;
    grid-template-columns: 110px 1fr;
    gap: 16px;
    padding: 14px 2px;
    border-bottom: 1px solid var(--line);
}
.loc-data dt { color: var(--red); }
.loc-data dd { color: var(--ink); letter-spacing: 0.04em; text-transform: none; font-size: 12.5px; }
.location-map {
    position: relative;
    aspect-ratio: 4 / 3.4;
    border: 1px solid var(--line);
}
.location-map iframe {
    width: 100%; height: 100%;
    border: 0;
    filter: grayscale(1) contrast(1.05);
    transition: filter 0.5s ease;
}
.location-map:hover iframe { filter: grayscale(0); }

/* ---------- CTA final ---------- */
.cta-final {
    background:
        radial-gradient(80% 90% at 15% 100%, rgba(50, 56, 201, 0.55) 0%, transparent 60%),
        radial-gradient(50% 60% at 92% 0%, rgba(228, 29, 37, 0.4) 0%, transparent 55%),
        linear-gradient(160deg, var(--indigo) 0%, var(--deep) 100%);
    color: #fff;
    padding-block: clamp(90px, 12vw, 170px);
}
.cta-final .display-xl { color: #fff; margin: 16px 0 40px; }
.cta-actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: clamp(18px, 3vw, 40px);
}
.cta-link {
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    font-size: 13px;
    position: relative;
    padding-bottom: 4px;
}
.cta-link::after {
    content: '';
    position: absolute;
    left: 0; bottom: 0;
    width: 100%; height: 1px;
    background: rgba(255, 255, 255, 0.4);
    transform: scaleX(1);
    transition: background 0.3s ease;
}
.cta-link:hover::after { background: var(--red); }

/* ---------- Footer ---------- */
.footer { background: #0F1130; color: rgba(255, 255, 255, 0.8); }
.footer-grid {
    display: grid;
    grid-template-columns: 1.4fr 0.8fr 0.9fr 1fr;
    gap: clamp(28px, 5vw, 64px);
    padding-block: clamp(56px, 7vw, 90px);
}
.f-logo { height: 44px; width: auto; margin-bottom: 18px; }
.f-brand p { font-size: 14px; color: rgba(255, 255, 255, 0.55); }
.f-col { display: flex; flex-direction: column; gap: 12px; }
.f-head { color: #FF7A80; margin-bottom: 6px; }
.f-col a {
    text-decoration: none;
    font-size: 14.5px;
    color: rgba(255, 255, 255, 0.75);
    transition: color 0.25s ease;
    width: fit-content;
}
.f-col a:hover { color: #fff; }
.f-sister {
    border: 1px solid var(--line-inv);
    padding: 18px;
    font-size: 13px !important;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.6) !important;
    transition: all 0.3s ease !important;
}
.f-sister strong { color: #fff; font-size: 16px; }
.f-sister:hover { border-color: #FF7A80; }
.footer-bottom {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    padding-block: 22px;
    border-top: 1px solid var(--line-inv);
    color: rgba(255, 255, 255, 0.45);
}

/* ---------- WhatsApp FAB ---------- */
.wa-fab {
    position: fixed;
    right: 20px; bottom: 20px;
    z-index: 70;
    width: 54px; height: 54px;
    border-radius: 50%;
    background: #25D366;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 30px rgba(37, 211, 102, 0.45);
    transition: transform 0.25s ease;
}
.wa-fab:hover { transform: scale(1.08); }

/* ---------- Reveal states (JS los anima) ---------- */
[data-reveal], [data-split] .w { will-change: transform, opacity; }
.no-js [data-reveal] { opacity: 1 !important; transform: none !important; }

/* ---------- Responsive ---------- */
@media (max-width: 1080px) {
    .hero-figure { width: 74vw; opacity: 0.9; }
}
@media (max-width: 900px) {
    .nav-desktop { display: none; }
    .menu-btn { display: flex; }
    .btn-header { display: none; }
    .grid-about, .grid-policy, .grid-location { grid-template-columns: 1fr; }
    .about-left { position: static; }
    .hero { min-height: auto; padding-bottom: 0; }
    .hero-figure {
        position: relative;
        inset: auto;
        width: 100%;
        height: 54vw;
        margin-top: 12px;
        -webkit-mask-image: linear-gradient(180deg, transparent 0%, #000 20%);
        mask-image: linear-gradient(180deg, transparent 0%, #000 20%);
    }
    .hero-stats { grid-template-columns: repeat(2, 1fr); }
    .hero-stats .stat { border-bottom: 1px solid var(--line); }
    .hero-stats .stat:nth-child(even) { border-right: none; }
    .m-body-inner { grid-template-columns: 1fr; padding-left: 8px; }
    .feature-figure img { object-position: 78% center; opacity: 0.35; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 560px) {
    .client-grid { grid-template-columns: repeat(2, 1fr); }
    .client-card { padding: 16px; }
    .client-card img { height: 54px; }
    .mv-cards, .policy-docs { grid-template-columns: 1fr; }
    .hide-sm { display: none; }
    .m-head { grid-template-columns: 56px 1fr 40px; gap: 10px; }
    .footer-grid { grid-template-columns: 1fr; }
    .footer-bottom { flex-direction: column; gap: 6px; }
    .hero-title {
        font-size: clamp(30px, 10vw, 64px);
        font-variation-settings: 'wdth' 110;
    }
    .display-xl { font-size: clamp(40px, 12vw, 64px); }
    .display-md { font-size: clamp(28px, 8.4vw, 48px); }
}

/* ---------- Reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
    .ticker-track { animation: none; }
    * { transition-duration: 0.01ms !important; }
}
