/* ============================================
   GTranslate float widget — positions itself bottom-left.
   We only ensure the wrapper doesn't disturb the layout if the
   external script fails to load (ad-blocker etc.).
============================================ */
.gtranslate_wrapper { font-family: 'Geist', sans-serif; }
.gtranslate_wrapper:empty { display: none; }

/* ============================================
   DESIGN TOKENS
============================================ */
:root {
    /* Background */
    --bg-primary: #ffffff;
    --bg-subtle: #f7f7f8;
    --bg-sand: #f7f6f2;
    --bg-sand-strong: #e1dfd6;
    --bg-reversed: #1e1e1e;
    --bg-reversed-strong: #181818;
    --bg-black: #000000;

    /* Text */
    --text-primary: #161618;
    --text-secondary: #585858;
    --text-tertiary: #898989;
    --text-muted: #6d6d6a;
    --text-reversed: #ffffff;
    --text-reversed-secondary: rgba(255, 255, 255, 0.7);
    --text-reversed-tertiary: #7d7d7d;

    /* Brand */
    --brand-orange: #fc7a4a;
    --brand-orange-clicked: #fb6026;

    /* Bar gradients */
    --bar-1: #FC784A;
    --bar-2: #FFA884;
    --bar-3: #FFD4C0;

    --warm-1: #F8A889;
    --warm-2: #F9C0A9;
    --warm-3: #F9D5C4;

    /* Lines */
    --line: rgba(14, 14, 14, 0.1);
    --line-dark: #353333;

    /* Sizing */
    --shell-max: 1320px;
    --shell-pad-mobile: 1.25rem;
    --shell-pad-tablet: 2.5rem;
    --shell-pad-desktop: 124px;

    --section-radius-mobile: 0;
    --section-radius-desktop: 22px;

    --header-h: 72px;

    /* Buttons */
    --radius-btn: 8px;

    /* Transitions */
    --ease: cubic-bezier(0.22, 1, 0.36, 1);
    --t-fast: 180ms;
    --t-med: 300ms;
    --t-slow: 700ms;
}

/* ============================================
   BASE
============================================ */
html { scroll-behavior: smooth; }

body {
    background: var(--bg-primary);
    color: var(--text-primary);
    font-family: 'Geist', -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif;
    font-size: 16px;
    font-weight: 400;
    letter-spacing: -0.005em;
    overflow-x: hidden;
}

.shell {
    width: 100%;
    max-width: var(--shell-max);
    margin-inline: auto;
    padding-inline: var(--shell-pad-mobile);
}
@media (min-width: 800px)  { .shell { padding-inline: var(--shell-pad-tablet); } }
@media (min-width: 1440px) { .shell { padding-inline: 0; } }

/* ============================================
   BUTTONS
============================================ */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.65rem 1.25rem;
    border-radius: var(--radius-btn);
    font-family: 'Geist', sans-serif;
    font-weight: 500;
    font-size: 0.875rem;
    letter-spacing: -0.005em;
    transition: background var(--t-fast) var(--ease), color var(--t-fast) var(--ease), opacity var(--t-fast) var(--ease), transform var(--t-fast) var(--ease);
    white-space: nowrap;
    cursor: pointer;
    border: 1px solid transparent;
}
.btn--lg {
    padding: 1rem 2rem;
    font-size: 1.125rem;
    height: 60px;
    min-width: 175px;
}

.btn--primary { background: #000000; color: #ffffff; }
.btn--primary:hover { opacity: 0.88; transform: translateY(-1px); }

.btn--secondary { background: #eeeff1; color: #000000; }
.btn--secondary:hover { background: #e3e5e8; }

.btn--white { background: #ffffff; color: #000000; }
.btn--white:hover { background: #eaeaea; transform: translateY(-1px); }

.btn--outline-light {
    background: transparent;
    color: #ffffff;
    border-color: rgba(255, 255, 255, 0.4);
}
.btn--outline-light:hover { background: #ffffff; color: #000000; }

/* ============================================
   HEADER
============================================ */
.header {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 100;
    height: var(--header-h);
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: saturate(180%) blur(14px);
    -webkit-backdrop-filter: saturate(180%) blur(14px);
    border-bottom: 1px solid transparent;
    transition: border-color var(--t-fast) var(--ease);
}
.header.is-scrolled { border-bottom-color: var(--line); }

.header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
    gap: 2rem;
}

.header__logo {
    display: inline-flex;
    align-items: center;
    color: var(--text-primary);
}
.header__logo-img {
    display: block;
    height: 28px;
    width: auto;
}
@media (min-width: 800px) { .header__logo-img { height: 32px; } }

.nav__list { display: flex; align-items: center; gap: 2rem; }
.nav__item { position: relative; }

.nav__link {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    padding: 0.5rem 0;
    font-size: 0.9375rem;
    font-weight: 500;
    color: var(--text-primary);
    background: none;
    border: 0;
    cursor: pointer;
    font-family: 'Geist', sans-serif;
    transition: color var(--t-fast) var(--ease);
}
.nav__link:hover { color: var(--brand-orange); }

/* Earn menu — APY pill emphasis */
.nav__apy-pill {
    display: inline-flex;
    align-items: center;
    margin-left: 0.35rem;
    padding: 0.18rem 0.5rem;
    background: rgba(252, 122, 74, 0.12);
    color: var(--brand-orange);
    border-radius: 999px;
    font-size: 0.6875rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    line-height: 1;
    font-family: 'Geist', sans-serif;
    transition: background var(--t-fast) var(--ease), transform var(--t-fast) var(--ease);
}
.nav__link--earn:hover .nav__apy-pill {
    background: rgba(252, 122, 74, 0.2);
    transform: translateY(-1px);
}

.nav__item--has-dropdown:hover .dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}
.dropdown {
    position: absolute;
    top: 100%; left: 50%;
    transform: translateX(-50%) translateY(8px);
    min-width: 280px;
    background: #ffffff;
    border: 1px solid var(--line);
    border-radius: 12px;
    padding: 0.5rem;
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.08);
    opacity: 0;
    visibility: hidden;
    transition: opacity var(--t-fast) var(--ease), transform var(--t-fast) var(--ease), visibility var(--t-fast);
}
.dropdown { min-width: 380px; }
.dropdown__item {
    display: grid;
    grid-template-columns: 32px 1fr auto;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 0.85rem;
    border-radius: 6px;
    transition: background var(--t-fast) var(--ease);
}
.dropdown__item:hover { background: var(--bg-subtle); }
.dropdown__icon {
    width: 32px; height: 32px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.dropdown__icon--orange { background: var(--brand-orange); }
.dropdown__icon--dark { background: #1E1E1E; }
.dropdown__name {
    font-family: 'Geist', sans-serif;
    font-weight: 500;
    font-size: 0.9375rem;
    color: var(--text-primary);
    line-height: 1.2;
}
.dropdown__apy {
    font-family: 'Geist', sans-serif;
    font-size: 1.0625rem;
    font-weight: 500;
    color: var(--text-primary);
    display: inline-flex;
    align-items: baseline;
    gap: 0.15rem;
    white-space: nowrap;
}
.dropdown__pct { font-size: 0.8125rem; color: var(--text-secondary); margin-right: 0.25rem; }
.dropdown__apy-label { font-size: 0.6875rem; color: var(--text-tertiary); letter-spacing: 0.05em; }

.header__cta { display: flex; align-items: center; gap: 0.5rem; }
.header__cta .btn {
    padding: 0.65rem 1.25rem;
    font-size: 0.8125rem;
    height: 40px;
    min-width: 0;
}

.header__burger {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 0.5rem;
    background: none;
    border: 0;
    cursor: pointer;
    width: 40px;
    height: 40px;
    align-items: center;
    justify-content: center;
    position: relative;
}
.header__burger span {
    display: block;
    width: 22px; height: 2px;
    background: var(--text-primary);
    border-radius: 2px;
    transition: transform var(--t-fast) var(--ease), opacity var(--t-fast) var(--ease);
    position: absolute;
}
.header__burger span:nth-child(1) { transform: translateY(-6px); }
.header__burger span:nth-child(3) { transform: translateY(6px); }
.header__burger.is-open span:nth-child(1) { transform: rotate(45deg); }
.header__burger.is-open span:nth-child(2) { opacity: 0; }
.header__burger.is-open span:nth-child(3) { transform: rotate(-45deg); }

/* ============================================
   MOBILE MENU
============================================ */
.m-menu {
    display: none;
    position: fixed;
    top: var(--header-h);
    left: 0; right: 0; bottom: 0;
    background: var(--bg-subtle);
    z-index: 110;
    overflow-y: auto;
    padding: 1rem;
}
.m-menu.is-open { display: block; }
@media (min-width: 800px) { .m-menu { display: none !important; } }
body.menu-open { overflow: hidden; }

.m-menu__inner {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    max-width: 720px;
    margin-inline: auto;
}

.m-menu__group {
    background: var(--bg-primary);
    border-radius: 14px;
    overflow: hidden;
    border: 1px solid var(--line);
    box-shadow: 0 1px 3px rgba(0,0,0,0.04);
}

.m-menu__heading {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.125rem 1.25rem;
    background: transparent;
    border: 0;
    cursor: pointer;
    font-family: 'Geist', sans-serif;
    font-size: 1.125rem;
    font-weight: 500;
    color: var(--text-primary);
}
.m-menu__heading svg {
    transition: transform var(--t-fast) var(--ease);
}
.m-menu__group.is-open .m-menu__heading svg { transform: rotate(180deg); }

.m-menu__sub {
    display: none;
    flex-direction: column;
    padding: 0 0.5rem 0.5rem;
}
.m-menu__group.is-open .m-menu__sub { display: flex; }

.m-menu__sub-item {
    display: grid;
    grid-template-columns: 36px 1fr auto;
    align-items: center;
    gap: 0.85rem;
    padding: 0.85rem 0.85rem;
    border-radius: 8px;
    transition: background var(--t-fast) var(--ease);
    color: var(--text-primary);
}
.m-menu__sub-item:hover { background: var(--bg-subtle); }
.m-menu__sub-item .dropdown__icon {
    width: 36px; height: 36px;
}
.m-menu__sub-name {
    font-family: 'Geist', sans-serif;
    font-size: 1rem;
    font-weight: 500;
    line-height: 1.2;
}
.m-menu__sub-apy {
    display: inline-flex;
    align-items: baseline;
    gap: 0.15rem;
    font-family: 'Geist', sans-serif;
    font-size: 1.0625rem;
    font-weight: 500;
    white-space: nowrap;
}
.m-menu__sub-pct { font-size: 0.8125rem; color: var(--text-secondary); margin-right: 0.25rem; }
.m-menu__sub-label { font-size: 0.6875rem; color: var(--text-tertiary); letter-spacing: 0.05em; }

.m-menu__item {
    display: block;
    background: var(--bg-primary);
    border: 1px solid var(--line);
    border-radius: 14px;
    padding: 1.25rem 1.25rem;
    color: var(--text-primary);
    font-family: 'Geist', sans-serif;
    font-size: 1.125rem;
    font-weight: 500;
    transition: background var(--t-fast) var(--ease);
}
.m-menu__item:hover { background: rgba(252, 122, 74, 0.05); }

.m-menu__cta {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-top: 1rem;
    padding: 0 0.5rem;
}
.m-menu__cta .btn {
    width: 100%;
    height: 56px;
    font-size: 1.0625rem;
    border-radius: 12px;
}
.m-menu__cta .btn--primary {
    background: var(--brand-orange);
    color: #fff;
}
.m-menu__cta .btn--primary:hover { background: var(--brand-orange-clicked); }
.m-menu__cta .btn--outline {
    background: var(--bg-primary);
    border: 1px solid var(--line);
    color: var(--text-primary);
}
.m-menu__cta .btn--outline:hover { background: var(--bg-subtle); }

/* ----- Profile + status (logged in) ----- */
.m-menu__profile {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 0.85rem;
    padding: 1rem 1.25rem;
    background: var(--bg-primary);
    border: 1px solid var(--line);
    border-radius: 14px;
    margin-bottom: 0.5rem;
}
.m-menu__avatar { display: inline-grid; place-items: center; }
.m-menu__email {
    font-family: 'Geist', sans-serif;
    font-size: 0.9375rem;
    font-weight: 500;
    color: var(--text-primary);
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
.m-menu__badge {
    font-family: 'Geist', sans-serif;
    font-size: 0.75rem;
    font-weight: 500;
    color: var(--brand-orange);
    background: rgba(252, 122, 74, 0.12);
    padding: 0.3rem 0.65rem;
    border-radius: 999px;
}
.m-menu__status {
    display: flex;
    align-items: flex-start;
    gap: 0.6rem;
    padding: 0.85rem 1rem;
    background: rgba(22, 163, 74, 0.06);
    border: 1px solid rgba(22, 163, 74, 0.2);
    border-radius: 10px;
    margin-bottom: 0.75rem;
}
.m-menu__status-icon { flex-shrink: 0; display: inline-grid; place-items: center; }
.m-menu__status-text {
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
    font-family: 'Geist', sans-serif;
    font-size: 0.85rem;
    color: var(--text-secondary);
    line-height: 1.4;
}
.m-menu__status-text strong { color: var(--text-primary); font-weight: 500; }

.m-menu__heading-label {
    font-family: 'Geist', sans-serif;
    font-size: 0.6875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--text-tertiary);
    padding: 0.5rem 0.5rem 0.25rem;
    margin-top: 0.5rem;
}

/* ----- Mobile menu items with icons ----- */
.m-menu__item {
    display: flex;
    align-items: center;
    gap: 0.85rem;
}
.m-menu__item-icon {
    flex-shrink: 0;
    width: 28px;
    height: 28px;
    display: inline-grid;
    place-items: center;
    color: var(--text-secondary);
}
.m-menu__item-name { flex: 1; }
.m-menu__item-arrow {
    color: var(--text-tertiary);
    font-size: 1.4rem;
    line-height: 1;
}
.m-menu__heading {
    gap: 0.85rem;
}
.m-menu__heading .m-menu__item-icon { color: var(--text-secondary); }
.m-menu__heading .m-menu__item-name { flex: 1; text-align: left; }

/* Earn header (mobile) — APY pill */
.m-menu__apy-pill {
    display: inline-flex;
    align-items: center;
    padding: 0.25rem 0.65rem;
    background: rgba(252, 122, 74, 0.12);
    color: var(--brand-orange);
    border-radius: 999px;
    font-size: 0.6875rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    line-height: 1;
    font-family: 'Geist', sans-serif;
    margin-right: 0.4rem;
}
.m-menu__heading--earn { position: relative; }
.m-menu__heading--earn::before {
    content: '';
    position: absolute;
    left: -1px; top: -1px; bottom: -1px;
    width: 3px;
    background: var(--brand-orange);
    border-radius: 14px 0 0 14px;
}
.m-menu__chev {
    transition: transform var(--t-fast) var(--ease);
    color: var(--text-tertiary);
}
.m-menu__group.is-open .m-menu__chev { transform: rotate(180deg); }

.m-menu__item--featured {
    background: var(--text-primary);
    color: var(--text-reversed);
    border-color: var(--text-primary);
    font-weight: 500;
}
.m-menu__item--featured .m-menu__item-icon { color: rgba(255, 255, 255, 0.85); }
.m-menu__item--featured .m-menu__item-arrow { color: rgba(255, 255, 255, 0.7); }
.m-menu__item--featured:hover { background: #000; }

.m-menu__item--logout {
    color: var(--text-secondary);
    background: transparent;
    border-color: transparent;
    box-shadow: none;
    padding-block: 1rem;
}
.m-menu__item--logout:hover { background: var(--bg-primary); }

/* ============================================
   MAIN — SECTION SHELLS (rounded panels)
============================================ */
.main {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    padding-top: var(--header-h);
}
@media (min-width: 1440px) {
    .main { gap: 2rem; }
}

.section {
    position: relative;
    width: 100%;
    max-width: 1440px;
    margin-inline: auto;
    padding: 2rem 0;
    overflow: hidden;
}
@media (min-width: 800px) {
    .section { padding: 3.75rem 1.5rem; }
}
@media (min-width: 1024px) {
    .section { padding: 5rem 2rem; }
}
@media (min-width: 1440px) {
    .section {
        padding: 5rem var(--shell-pad-desktop);
        border-radius: var(--section-radius-desktop);
    }
}

/* ============================================
   SHARED — TITLES
============================================ */
.section-title {
    font-family: 'DM Serif Display', serif;
    font-weight: 400;
    font-size: clamp(2.25rem, 5.5vw, 4.5rem);
    line-height: 1;
    letter-spacing: -0.025em;
    color: var(--text-primary);
}
.section-lead {
    font-family: 'Geist', sans-serif;
    font-size: clamp(1.125rem, 1.4vw, 1.375rem);
    color: var(--text-secondary);
    line-height: 1.4;
    margin-top: 0.75rem;
}

/* ============================================
   HERO
============================================ */
.section--hero {
    padding-top: 2rem;
    padding-bottom: 2rem;
}
@media (min-width: 800px) { .section--hero { padding: 2.5rem 1.5rem; } }
@media (min-width: 1024px) { .section--hero { padding: 3rem 2rem; } }
@media (min-width: 1440px) { .section--hero { padding: 3rem var(--shell-pad-desktop); } }

.hero__inner {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    align-items: center;
    min-height: 480px;
    position: relative;
    text-align: center;
}
.hero__inner > .hero__copy { order: 2; align-items: center; }
.hero__inner > .hero__media { order: 1; }
.hero__inner .hero__subtitle { max-width: 100%; margin-inline: auto; }
.hero__inner .hero__actions { justify-content: center; display: flex; }

@media (min-width: 800px) {
    .hero__inner {
        grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.4fr);
        min-height: 540px;
        text-align: left;
    }
    .hero__inner > .hero__copy { order: 1; align-items: flex-start; }
    .hero__inner > .hero__media { order: 2; }
    .hero__inner .hero__subtitle { max-width: 32ch; margin-inline: 0; }
    .hero__inner .hero__actions { justify-content: flex-start; }
}
@media (min-width: 1280px) {
    .hero__inner {
        grid-template-columns: minmax(0, 0.7fr) minmax(0, 1.6fr);
        min-height: 600px;
    }
}

.hero__copy {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    z-index: 2;
}

.hero__title {
    font-family: 'DM Serif Display', serif;
    font-weight: 400;
    font-size: clamp(2.75rem, 7.5vw, 5.5rem);
    line-height: 1.02;
    letter-spacing: -0.025em;
    color: var(--text-primary);
}
.hero__title .line { display: block; overflow: hidden; }
.hero__title strong { font-weight: 500; font-style: normal; }

.hero__subtitle {
    font-family: 'Geist', sans-serif;
    font-size: clamp(1.125rem, 1.5vw, 1.375rem);
    color: var(--text-primary);
    max-width: 28ch;
    line-height: 1.4;
}

.hero__actions { margin-top: 0.5rem; }

.hero__media {
    position: relative;
    width: 100%;
    height: 100%;
    min-height: 280px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.hero__video {
    width: 100%;
    height: auto;
    object-fit: contain;
    pointer-events: none;
}
@media (min-width: 800px) {
    .hero__media {
        height: 100%;
        min-height: 480px;
    }
    .hero__video {
        width: 100%;
        height: 100%;
        max-height: 600px;
        object-fit: contain;
        object-position: right center;
    }
}
@media (min-width: 1280px) {
    .hero__media { min-height: 560px; }
    .hero__video { max-height: 720px; }
}

/* ============================================
   AUM
============================================ */
.section--aum {
    background: var(--bg-subtle);
    padding-block: clamp(2.5rem, 5vw, 5rem);
}
.aum__inner {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-bottom: 2rem;
    align-items: center;
    text-align: center;
}
@media (min-width: 800px) {
    .aum__inner {
        align-items: flex-start;
        text-align: left;
    }
}
.aum__label {
    font-family: 'Geist', sans-serif;
    font-size: clamp(1rem, 1.25vw, 1.25rem);
    color: var(--text-tertiary);
    font-weight: 500;
}
.aum__value {
    font-family: 'Geist', sans-serif;
    font-weight: 700;
    font-size: clamp(3.5rem, 12vw, 9rem);
    line-height: 1;
    letter-spacing: -0.045em;
    color: var(--text-primary);
    font-variant-numeric: tabular-nums;
    display: inline-flex;
    align-items: baseline;
}
.aum__currency, .aum__unit { font-weight: 700; }

.aum__bars {
    display: flex;
    flex-direction: column;
    gap: 4px;
    width: 100%;
}
.aum__bar {
    display: block;
    height: 3px;
    width: 100%;
    transform: scaleX(0);
    transform-origin: left;
}
.aum__bar--1 { background: var(--bar-1); }
.aum__bar--2 { background: var(--bar-2); }
.aum__bar--3 { background: var(--bar-3); }

.js .aum__bar { animation: bar-grow 2s ease-in-out forwards; }
.js .aum__bar--1 { animation-delay: 0s; }
.js .aum__bar--2 { animation-delay: 0.5s; }
.js .aum__bar--3 { animation-delay: 1s; }
@keyframes bar-grow {
    0% { transform: scaleX(0); }
    100% { transform: scaleX(1); }
}

/* ============================================
   TRUSTED BY
============================================ */
.section--trusted {
    padding-block: clamp(2rem, 4vw, 3rem);
}
.trusted__label {
    text-align: center;
    color: var(--text-tertiary);
    font-size: 1rem;
    margin-bottom: 1.5rem;
}
.trusted__row {
    overflow: hidden;
    mask-image: linear-gradient(90deg, transparent 0%, black 8%, black 92%, transparent 100%);
    -webkit-mask-image: linear-gradient(90deg, transparent 0%, black 8%, black 92%, transparent 100%);
}
.trusted__track {
    display: flex;
    gap: 4rem;
    align-items: center;
    width: max-content;
    animation: marquee 30s linear infinite;
}
.trusted__track:hover { animation-play-state: paused; }
.trusted__logo {
    height: 32px;
    width: auto;
    flex-shrink: 0;
}
@media (min-width: 800px) {
    .trusted__logo { height: 40px; }
    .trusted__track { gap: 6rem; }
}
@keyframes marquee {
    0%   { transform: translate(0); }
    100% { transform: translate(-50%); }
}

/* ============================================
   SYRUP — video bg + glass card (Maple Staking)
============================================ */
.section--syrup {
    position: relative;
    background: #1a0e08;
    color: var(--text-reversed);
    min-height: 600px;
    overflow: hidden;
    padding: 0;
    isolation: isolate;
}
@media (min-width: 800px) { .section--syrup { min-height: 640px; } }
@media (min-width: 1024px) { .section--syrup { min-height: 720px; } }
@media (min-width: 1440px) {
    .section--syrup { border-radius: var(--section-radius-desktop); }
}

.syrup__media {
    position: absolute;
    inset: 0;
    z-index: 0;
    overflow: hidden;
}
.syrup__video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.syrup__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0,0,0,0.35) 0%, rgba(0,0,0,0.55) 100%);
}

.syrup__inner {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    width: 100%;
    min-height: inherit;
    padding: 2.5rem var(--shell-pad-mobile);
    align-content: space-between;
}
@media (min-width: 800px) {
    .syrup__inner {
        grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
        padding: 3.5rem 2.5rem;
        align-items: stretch;
    }
}
@media (min-width: 1440px) {
    .syrup__inner { padding: 5rem var(--shell-pad-desktop); }
}

.syrup__copy {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    color: var(--text-reversed);
}
@media (min-width: 800px) {
    .syrup__copy {
        justify-content: space-between;
        min-height: 100%;
    }
}
.syrup__title {
    font-family: 'DM Serif Display', serif;
    font-weight: 400;
    font-size: clamp(2rem, 4vw, 3.25rem);
    line-height: 1.05;
    letter-spacing: -0.02em;
}
.syrup__subtitle {
    font-family: 'DM Serif Display', serif;
    font-weight: 400;
    font-size: clamp(1.375rem, 2.2vw, 1.875rem);
    color: var(--text-reversed);
    margin-bottom: 1.5rem;
}

.syrup__bullets {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}
@media (min-width: 800px) { .syrup__bullets { margin-top: auto; } }
.syrup__bullets li {
    display: flex;
    gap: 0.75rem;
    align-items: flex-start;
    font-size: clamp(1rem, 1.4vw, 1.25rem);
    color: var(--text-reversed);
    font-weight: 400;
}
.syrup__icon {
    flex-shrink: 0;
    width: 24px; height: 24px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.syrup__card-wrap {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: flex-end;
    gap: 2rem;
}

.syrup__glass {
    width: 288px;
    max-width: 100%;
    height: 156px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 24px;
    backdrop-filter: blur(16px) saturate(140%);
    -webkit-backdrop-filter: blur(16px) saturate(140%);
    padding: 1.25rem 1.5rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    box-shadow: inset 0 0 4px 0 rgba(255, 255, 255, 0.4), 0 8px 32px rgba(0, 0, 0, 0.2);
}
.syrup__glass-top {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
}
.syrup__glass-apy {
    font-family: 'DM Serif Display', serif;
    font-weight: 400;
    font-size: 3.25rem;
    line-height: 0.95;
    color: #ffffff;
    letter-spacing: -0.02em;
    font-variant-numeric: tabular-nums;
}
.syrup__glass-pct {
    font-size: 1.5rem;
    margin-left: 0.15em;
}
.syrup__glass-label {
    font-family: 'Geist', sans-serif;
    font-size: 0.9375rem;
    color: var(--text-reversed-secondary);
    margin-top: 0.5rem;
}
.syrup__glass-tokens {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    color: var(--text-reversed);
}
.syrup__token-pair { display: inline-flex; align-items: center; }
.syrup__token { display: block; }

.syrup__cta {
    /* white pill button */
}

/* ============================================
   MAPLE INSTITUTIONAL
============================================ */
.section--institutional {
    background: #000000;
    color: var(--text-reversed);
    overflow: hidden;
    min-height: 480px;
    padding: 3rem var(--shell-pad-mobile);
    position: relative;
    isolation: isolate;
    display: flex;
    flex-direction: column;
}
@media (min-width: 800px) { .section--institutional { padding: 4rem 2.5rem; } }
@media (min-width: 1024px) {
    .section--institutional {
        padding: 6rem 3rem;
        height: 500px;
        min-height: 0;
    }
}
@media (min-width: 1440px) {
    .section--institutional {
        padding: 7.5rem var(--shell-pad-desktop);
        border-radius: var(--section-radius-desktop);
        height: 500px;
    }
}

.institutional__bg {
    position: absolute;
    inset: 0;
    background: url('../images/maple-institutional-bg.jpg') center/cover no-repeat;
    opacity: 0;
    transition: opacity var(--t-slow) ease-in-out;
    z-index: 0;
}
.section--institutional:hover .institutional__bg { opacity: 0.35; }

.institutional__bars {
    position: absolute;
    bottom: 0; right: 0;
    display: flex;
    gap: 0;
    align-items: flex-end;
    height: 100%;
    z-index: 0;
}
.institutional__bar {
    display: block;
    width: 14px;
    transition: height var(--t-slow) ease-in-out;
}
@media (min-width: 800px) { .institutional__bar { width: 28px; } }
.institutional__bar--1 { height: 30%; background: var(--warm-1); }
.institutional__bar--2 { height: 40%; background: var(--warm-2); }
.institutional__bar--3 { height: 50%; background: var(--warm-3); }
.section--institutional:hover .institutional__bar { height: 100%; }

.institutional__inner {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: clamp(3rem, 8vw, 9rem);
    flex: 1;
    min-height: 0;
}

.institutional__top {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    justify-content: space-between;
}
@media (min-width: 800px) {
    .institutional__top { flex-direction: row; align-items: flex-start; gap: 3rem; }
}

.institutional__title {
    font-family: 'DM Serif Display', serif;
    font-weight: 400;
    font-size: clamp(2rem, 4.5vw, 4rem);
    line-height: 1.05;
    letter-spacing: -0.02em;
    color: var(--text-reversed);
    margin-bottom: 1.25rem;
}
.institutional__title span {
    display: inline;
    white-space: nowrap;
}
.institutional__lead {
    font-family: 'Geist', sans-serif;
    font-size: clamp(1.125rem, 1.4vw, 1.375rem);
    color: var(--text-reversed);
    max-width: 60ch;
}

.institutional__apy {
    display: inline-flex;
    align-items: baseline;
    gap: 0.4rem;
    flex-shrink: 0;
}
.institutional__apy-num {
    font-family: 'DM Serif Display', serif;
    font-size: clamp(3rem, 6vw, 5rem);
    line-height: 0.9;
    letter-spacing: -0.02em;
    color: var(--text-reversed);
    font-variant-numeric: tabular-nums;
}
.institutional__apy-pct {
    font-family: 'DM Serif Display', serif;
    font-size: clamp(1.5rem, 3vw, 2.5rem);
    color: var(--text-reversed);
}
.institutional__apy-label {
    font-family: 'Geist', sans-serif;
    font-size: 0.9375rem;
    color: var(--text-reversed-secondary);
    margin-left: 0.3rem;
}

.institutional__bottom {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    align-items: flex-start;
}
@media (min-width: 1024px) {
    .institutional__bottom {
        flex-direction: row;
        justify-content: space-between;
        align-items: flex-end;
    }
}

.institutional__stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 2rem;
    width: 100%;
}
@media (min-width: 1024px) {
    .institutional__stats { width: auto; display: flex; gap: 3rem; }
}
.institutional__stat-label {
    font-size: 1rem;
    color: var(--text-reversed-secondary);
    margin-bottom: 0.5rem;
}
.institutional__stat-value {
    font-family: 'DM Serif Display', serif;
    font-size: clamp(1.5rem, 2.4vw, 2.25rem);
    color: var(--text-reversed);
    letter-spacing: -0.02em;
    line-height: 1;
}

.token-stack { display: inline-flex; align-items: center; gap: 0; }
.token {
    width: 28px; height: 28px;
    border-radius: 50%;
    overflow: hidden;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-left: -8px;
    background: #fff;
    border: 2px solid #000;
}
.token:first-child { margin-left: 0; }
.token--more {
    background: #2a2a2a;
    color: var(--text-reversed);
    font-family: 'Geist', sans-serif;
    font-size: 0.6875rem;
    font-weight: 600;
}

.institutional__ctas {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
}

/* ============================================
   BORROW + STATS GRID
============================================ */
.section--borrow {
    background: var(--bg-primary);
    padding-block: clamp(3rem, 6vw, 6rem);
}
.borrow__head {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: flex-start;
    gap: 1.5rem;
    margin-bottom: clamp(2rem, 4vw, 3.5rem);
}
@media (min-width: 800px) {
    .borrow__head { flex-direction: row; align-items: flex-end; }
}

.stats-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}
@media (min-width: 800px) {
    .stats-grid { grid-template-columns: repeat(2, 1fr); }
}

.stat-card {
    position: relative;
    background: var(--bg-subtle);
    border-radius: 12px;
    padding: 1.5rem;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    min-height: 180px;
    justify-content: flex-end;
}
@media (min-width: 800px) { .stat-card { padding: 2rem; min-height: 220px; } }

.stat-card__bars {
    position: absolute;
    top: 0; right: 0;
    width: 60%;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 0;
    z-index: 0;
}
.stat-card__bars span {
    display: block;
    height: 14px;
    transform: scaleX(0);
    transform-origin: right;
}
.js .stat-card__bars span { animation: bar-grow 1.5s ease-in-out forwards; }
.js .stat-card__bars span:nth-child(1) { animation-delay: 0.1s; }
.js .stat-card__bars span:nth-child(2) { animation-delay: 0.3s; }
.js .stat-card__bars span:nth-child(3) { animation-delay: 0.5s; }

.stat-card__title {
    font-family: 'Geist', sans-serif;
    font-weight: 400;
    font-size: 1.125rem;
    color: var(--text-primary);
    position: relative;
    z-index: 1;
}
.stat-card__value {
    font-family: 'DM Serif Display', serif;
    font-weight: 400;
    font-size: clamp(2.25rem, 4vw, 3.5rem);
    line-height: 1;
    letter-spacing: -0.02em;
    color: var(--text-primary);
    font-variant-numeric: tabular-nums;
    position: relative;
    z-index: 1;
}
.stat-card__pre { font-weight: 400; }

/* ============================================
   THE MAPLE ADVANTAGE
============================================ */
.section--advantage {
    background: var(--bg-sand);
    padding-block: clamp(3rem, 6vw, 6rem);
}
.advantage__head { margin-bottom: clamp(2rem, 4vw, 3.5rem); }

.advantage__grid {
    display: flex;
    flex-wrap: nowrap;
    gap: 1rem;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    margin-inline: calc(-1 * var(--shell-pad-mobile));
    padding-inline: var(--shell-pad-mobile);
    padding-bottom: 0.5rem;
}
.advantage__grid::-webkit-scrollbar { display: none; }
.advantage__grid > .advantage-card {
    flex: 0 0 78%;
    scroll-snap-align: start;
}
@media (min-width: 800px) {
    .advantage__grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        overflow: visible;
        margin-inline: 0;
        padding-inline: 0;
        gap: 1.5rem;
    }
    .advantage__grid > .advantage-card { flex: initial; }
}
@media (min-width: 1024px) { .advantage__grid { grid-template-columns: repeat(4, 1fr); } }

.advantage-card {
    position: relative;
    background: var(--bg-primary);
    border-radius: 12px;
    overflow: hidden;
    height: 322px;
    padding: 1.25rem 0;
    display: flex;
    flex-direction: column;
    cursor: default;
}
@media (min-width: 1024px) { .advantage-card { height: 360px; } }

.advantage-card__num {
    font-family: 'DM Serif Display', serif;
    font-size: 1.25rem;
    font-weight: 400;
    color: var(--text-primary);
    opacity: 0.5;
    padding-inline: 1.25rem;
    position: relative;
    z-index: 2;
}

.advantage-card__body {
    position: absolute;
    left: 0; right: 0;
    padding: 0 1.25rem;
    top: 80px;
    transition: top var(--t-med) var(--ease);
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    z-index: 2;
}
@media (min-width: 1024px) {
    .advantage-card__body { top: 222px; }
    .advantage-card:hover .advantage-card__body { top: 80px; }
}

.advantage-card__body h3 {
    font-family: 'DM Serif Display', serif;
    font-weight: 400;
    font-size: clamp(1.375rem, 2vw, 1.625rem);
    line-height: 1.15;
    letter-spacing: -0.01em;
    color: var(--text-primary);
}
.advantage-card__body p {
    font-family: 'Geist', sans-serif;
    font-size: 0.9375rem;
    color: var(--text-secondary);
    line-height: 1.5;
    transition: opacity var(--t-med) var(--ease);
    opacity: 1;
}
@media (min-width: 1024px) {
    .advantage-card__body p { opacity: 0; }
    .advantage-card:hover .advantage-card__body p { opacity: 1; }
}

.advantage-card__bar {
    position: absolute;
    left: 0; right: 0;
    background: var(--accent);
    z-index: 1;
}
.advantage-card__bar--fill {
    bottom: 26px;
    height: 13px;
    opacity: 0.1;
    transition: height var(--t-med) var(--ease);
}
@media (min-width: 1024px) {
    .advantage-card:hover .advantage-card__bar--fill {
        height: 360px;
    }
}
.advantage-card__bar--mid {
    bottom: 13px;
    height: 13px;
    opacity: 0.5;
}
.advantage-card__bar--base {
    bottom: 0;
    height: 13px;
}

/* ============================================
   GET IN TOUCH
============================================ */
.section--contact {
    background: var(--bg-primary);
    padding-block: clamp(3rem, 6vw, 6rem);
}
.contact__inner {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2.5rem;
    align-items: center;
}
@media (min-width: 1024px) {
    .contact__inner { grid-template-columns: 1fr 1fr; gap: 4rem; }
}

.contact__copy {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}
.contact__sub {
    font-family: 'Geist', sans-serif;
    font-size: 1.25rem;
    color: var(--text-tertiary);
}
.contact__email {
    align-self: flex-start;
    height: 48px;
    padding: 0 1rem;
    margin-top: 0.5rem;
    font-size: 1rem;
}

.contact__form {
    background: var(--bg-primary);
    border: 1px solid #ededed;
    border-radius: 12px;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.04);
    padding: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}
.contact__row {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.25rem;
}
@media (min-width: 800px) { .contact__row { grid-template-columns: 1fr 1fr; } }

.contact__form input,
.contact__form select,
.contact__form textarea {
    width: 100%;
    padding: 0.75rem 1rem;
    background: #f0f0f0;
    border: 1px solid #ededed;
    border-radius: 8px;
    font-family: 'Geist', sans-serif;
    font-size: 1rem;
    color: var(--text-primary);
    height: 52px;
}
.contact__form textarea {
    height: auto;
    min-height: 120px;
    resize: vertical;
    padding: 1rem;
}
.contact__form input::placeholder,
.contact__form textarea::placeholder { color: var(--text-muted); }
.contact__form input:focus,
.contact__form select:focus,
.contact__form textarea:focus {
    outline: none;
    border-color: var(--text-primary);
    background: #fff;
}
.contact__form select {
    appearance: none;
    color: var(--text-muted);
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8' fill='none'><path d='M1 1l5 5 5-5' stroke='%23898989' stroke-width='1.5' stroke-linecap='round'/></svg>");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    padding-right: 3rem;
}
.contact__submit {
    width: 100%;
    height: 60px;
    font-size: 1.125rem;
    margin-top: 0.5rem;
}

/* ============================================
   TESTIMONIALS
============================================ */
.section--testimonials {
    background: var(--bg-subtle);
    padding-block: clamp(3rem, 6vw, 6rem);
    overflow: hidden;
}
.testimonials__head {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 1.5rem;
    margin-bottom: clamp(2rem, 4vw, 3.5rem);
}
.testimonials__nav { display: flex; gap: 0.5rem; }
.testimonials__arrow {
    width: 44px; height: 44px;
    border-radius: 50%;
    border: 1px solid var(--line);
    background: var(--bg-primary);
    color: var(--text-primary);
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: background var(--t-fast) var(--ease);
}
.testimonials__arrow:hover { background: var(--bg-sand); }
.testimonials__arrow--active { background: var(--bg-primary); }
.testimonials__arrow--disabled { opacity: 0.35; pointer-events: none; }

.testimonials__viewport { overflow: hidden; }
.testimonials__track {
    display: flex;
    flex-wrap: nowrap;
    gap: 20px;
    transition: transform 0.65s var(--ease);
    will-change: transform;
}

.testimonial-card {
    background: var(--bg-primary);
    border: 1px solid var(--line);
    border-radius: 12px;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    min-height: 460px;
    flex-shrink: 0;
    /* width is set dynamically by JS based on cards-per-view */
    width: 100%;
}

.testimonial-card__brand {
    display: flex;
    align-items: center;
    gap: 0.55rem;
    line-height: 1.1;
    min-height: 32px;
}
.brand-mark { display: block; flex-shrink: 0; }
.brand-name {
    font-family: 'Geist', sans-serif;
    font-weight: 600;
    font-size: 1.25rem;
    line-height: 1.1;
    letter-spacing: -0.01em;
}
.brand-name--serif {
    font-family: 'DM Serif Display', serif;
    font-weight: 400;
    font-size: 1.5rem;
    letter-spacing: -0.02em;
}
.brand-name--small {
    font-size: 0.9375rem;
    line-height: 1.05;
    font-weight: 700;
    letter-spacing: -0.005em;
}
.brand-name--pendle {
    letter-spacing: 0.12em;
    font-size: 1rem;
    font-weight: 700;
}
.testimonial-card__quote {
    font-family: 'Geist', sans-serif;
    font-size: 1.0625rem;
    line-height: 1.5;
    color: var(--text-primary);
    flex: 1;
}
.testimonial-card__author {
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
    border-top: 1px solid var(--line);
    padding-top: 1.25rem;
}
.testimonial-card__role {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--text-primary);
}
.testimonial-card__name {
    font-size: 0.875rem;
    color: var(--text-secondary);
}

.testimonials__dots {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 2.5rem;
    min-height: 8px;
}
.testimonials__dot {
    width: 40px;
    height: 4px;
    background: rgba(0, 0, 0, 0.1);
    border-radius: 0;
    cursor: pointer;
    transition: background var(--t-fast) var(--ease);
}
.testimonials__dot--active { background: var(--text-primary); }
.testimonials__dot:hover { background: rgba(0, 0, 0, 0.3); }
.testimonials__dot--active:hover { background: var(--text-primary); }

/* ============================================
   BLOG
============================================ */
.section--blog {
    background: var(--bg-primary);
    padding-block: clamp(3rem, 6vw, 6rem);
}
.blog__head {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: space-between;
    gap: 1.5rem;
    margin-bottom: clamp(2rem, 4vw, 3.5rem);
}
@media (min-width: 800px) { .blog__head { flex-direction: row; align-items: flex-end; } }

.blog__grid {
    display: flex;
    flex-wrap: nowrap;
    gap: 1rem;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    margin-inline: calc(-1 * var(--shell-pad-mobile));
    padding-inline: var(--shell-pad-mobile);
    padding-bottom: 0.5rem;
}
.blog__grid::-webkit-scrollbar { display: none; }
.blog__grid > .blog-card {
    flex: 0 0 82%;
    scroll-snap-align: start;
}
@media (min-width: 800px) {
    .blog__grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        overflow: visible;
        margin-inline: 0;
        padding-inline: 0;
        gap: 1.5rem;
    }
    .blog__grid > .blog-card { flex: initial; }
}
@media (min-width: 1024px) { .blog__grid { grid-template-columns: repeat(3, 1fr); } }

.blog-card {
    position: relative;
    background: var(--bg-subtle);
    border-radius: 12px;
    padding: 2rem 1.5rem 4rem;
    min-height: 420px;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    overflow: hidden;
    transition: transform var(--t-med) var(--ease), background var(--t-med) var(--ease);
    color: var(--text-primary);
}
.blog-card:hover { transform: translateY(-4px); }

.blog-card__cat {
    font-family: 'Geist', sans-serif;
    font-size: 0.8125rem;
    color: var(--text-tertiary);
    font-weight: 500;
}
.blog-card h3 {
    font-family: 'Geist', sans-serif;
    font-weight: 500;
    font-size: clamp(1.25rem, 1.6vw, 1.5rem);
    line-height: 1.25;
    letter-spacing: -0.01em;
    color: var(--text-primary);
}
.blog-card__bar {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 13px;
    background: var(--brand-orange);
}

/* ============================================
   FOOTER
============================================ */
.footer {
    background: var(--bg-reversed);
    color: var(--text-reversed);
    padding: clamp(3rem, 6vw, 5rem) 0 0;
    margin-top: 0;
}

.footer .shell { padding-inline: var(--shell-pad-mobile); }
@media (min-width: 800px) { .footer .shell { padding-inline: 2.5rem; } }
@media (min-width: 1440px) { .footer .shell { padding-inline: var(--shell-pad-desktop); } }

.footer__top {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    padding-bottom: 3rem;
}
@media (min-width: 1024px) {
    .footer__top { grid-template-columns: minmax(280px, 1fr) 1.4fr; gap: 4rem; }
}

.footer__newsletter { display: flex; flex-direction: column; gap: 1.25rem; max-width: 420px; }
.footer__nl-title {
    font-family: 'Geist', sans-serif;
    font-size: 1.125rem;
    font-weight: 500;
    color: var(--text-reversed);
    line-height: 1.4;
}
.footer__nl-form {
    display: flex;
    flex-direction: column;
    gap: 0.65rem;
}
.footer__nl-bar {
    display: flex;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.06);
    border-radius: 8px;
    padding: 4px;
}
.footer__nl-bar input[type="email"] {
    flex: 1;
    background: transparent;
    border: 0;
    padding: 0.75rem 1rem;
    color: var(--text-reversed);
    font-family: 'Geist', sans-serif;
    font-size: 0.9375rem;
    height: 44px;
}
.footer__nl-bar input[type="email"]::placeholder { color: rgba(255,255,255,0.4); }
.footer__nl-bar input[type="email"]:focus { outline: none; }
.footer__nl-bar button {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0 1rem;
    background: #ffffff;
    color: #000000;
    border: 0;
    border-radius: 6px;
    font-family: 'Geist', sans-serif;
    font-size: 0.875rem;
    font-weight: 500;
    cursor: pointer;
    height: 44px;
    transition: background var(--t-fast) var(--ease);
}
.footer__nl-bar button:hover { background: #eaeaea; }

.footer__nl-consent {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    font-size: 0.8125rem;
    color: var(--text-reversed-tertiary);
    cursor: pointer;
}
.footer__nl-consent input { margin-top: 4px; }

.footer__cols {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem 1.5rem;
}
@media (min-width: 800px) { .footer__cols { grid-template-columns: repeat(5, 1fr); } }
.footer__col h5 {
    font-family: 'Geist', sans-serif;
    font-size: 0.75rem;
    font-weight: 400;
    color: var(--text-reversed-tertiary);
    margin-bottom: 0.75rem;
    letter-spacing: 0;
    text-transform: none;
}
.footer__col ul { display: flex; flex-direction: column; gap: 0.5rem; }
.footer__col a {
    color: var(--text-reversed);
    font-size: 0.875rem;
    transition: color var(--t-fast) var(--ease);
    white-space: nowrap;
}
.footer__col a:hover { color: var(--text-reversed-secondary); }

.footer__mid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2.5rem;
    padding-top: 2rem;
    padding-bottom: 3rem;
}
@media (min-width: 1024px) { .footer__mid { grid-template-columns: 1fr 1.4fr; gap: 4rem; } }

.footer__mid-left { display: flex; flex-direction: column; gap: 2rem; }
.footer__copyright { color: var(--text-reversed-tertiary); font-size: 0.875rem; }
.footer__social { display: flex; gap: 0.75rem; }
.footer__social a {
    width: 36px; height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.06);
    color: var(--text-reversed);
    transition: background var(--t-fast) var(--ease);
}
.footer__social a:hover { background: rgba(255, 255, 255, 0.12); }

.footer__disclaimer {
    color: var(--text-reversed-tertiary);
    font-size: 0.75rem;
    line-height: 1.55;
}

.footer__divider {
    position: relative;
    height: 1px;
    background: var(--line-dark);
    display: flex;
    align-items: center;
    justify-content: center;
}
.footer__divider-icon {
    background: var(--bg-reversed);
    padding: 0 0.75rem;
    display: inline-flex;
}

.footer__wordmark {
    margin-top: 3rem;
    width: 100%;
    overflow: hidden;
    line-height: 0;
}
.footer__wordmark img {
    width: 100%;
    height: auto;
    color: var(--line-dark);
    display: block;
}

/* ============================================
   ANIMATION INITIAL STATES (only when JS active)
============================================ */
.js [data-anim="fade-up"] {
    opacity: 0;
    transform: translateY(24px);
}
.js [data-anim-section] {
    opacity: 0;
    transform: translateY(40px);
}

/* ============================================
   RESPONSIVE — header burger
============================================ */
@media (max-width: 800px) {
    .nav, .header__cta { display: none; }
    .header__burger { display: flex; }
}

/* ============================================
   REDUCED MOTION
============================================ */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        transition-duration: 0.01ms !important;
    }
    .js [data-anim], .js [data-anim-section] {
        opacity: 1 !important;
        transform: none !important;
    }
    .aum__bar, .stat-card__bars span { transform: scaleX(1) !important; }
    .trusted__track { animation: none !important; }
}
