/* HalcoPay landing styles — senior design pass
   Uses tokens from brand/tokens/tokens.css (--mv-* variables, kept for compat).
   Default theme: light (cream).
   System below: one spacing rhythm, one type scale, layered shadows, hairline
   borders, one radius family. Blue reserved for CTAs/links + the tx progress line;
   lime only for success/step accents; ink drives text hierarchy via alphas. */

/* ───────── Design system (landing-local) ───────── */
:root {
    --ml-max: 1140px;
    --ml-gutter: clamp(20px, 5vw, 40px);
    --ml-section: clamp(72px, 10vw, 128px);   /* section vertical rhythm */
    --ml-section-sm: clamp(56px, 7vw, 96px);

    --ml-radius: 16px;      /* cards */
    --ml-radius-sm: 10px;   /* buttons, chips */
    --ml-radius-xs: 8px;

    --blue: var(--mv-color-emerald);        /* #2390C6 — CTAs, links, progress */
    --blue-deep: var(--mv-color-emerald-deep);
    --lime: var(--mv-color-success);        /* #9EBF2C — success / step accents */
    --ink: #1F2130;
    --ink-70: rgba(31, 33, 48, 0.72);
    --ink-60: rgba(31, 33, 48, 0.68);  /* body copy — 4.97:1 on cream (AA ✓); literal 0.60 failed at 3.94:1 */
    --ink-50: rgba(31, 33, 48, 0.62);  /* secondary labels, mostly on white cards — AA on white (4.6:1) */
    --ink-40: rgba(31, 33, 48, 0.55);  /* faint uppercase eyebrows/tickers — supplementary (3.5:1, > original 3.0) */
    --ink-12: rgba(31, 33, 48, 0.12);
    --ink-10: rgba(31, 33, 48, 0.09);
    --ink-06: rgba(31, 33, 48, 0.055);

    --hair: 1px solid var(--ink-10);
    --sh-sm: 0 1px 2px rgba(31, 33, 48, 0.04);
    --sh-md: 0 1px 2px rgba(31, 33, 48, 0.04), 0 8px 24px rgba(31, 33, 48, 0.07);
    --sh-lg: 0 1px 2px rgba(31, 33, 48, 0.05), 0 18px 44px rgba(31, 33, 48, 0.11);

    --ease: cubic-bezier(0.2, 0, 0, 1);
}

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

html { scroll-behavior: smooth; }

body {
    font-family: var(--mv-font-body);
    background: var(--mv-bg);
    color: var(--ink);
    font-size: 17px;
    line-height: 1.65;
    letter-spacing: 0.01em;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; }

.skip-link {
    position: absolute;
    left: -10000px;
    top: 12px;
    background: var(--ink);
    color: #fff;
    padding: 8px 16px;
    border-radius: var(--ml-radius-sm);
    z-index: var(--mv-z-toast);
}
.skip-link:focus { left: 12px; }

/* ───────── Reveal on scroll (progressive; no-JS shows everything) ───────── */
.has-reveal .reveal {
    opacity: 0;
    transform: translateY(14px);
    transition: opacity 0.6s var(--ease), transform 0.6s var(--ease);
    will-change: opacity, transform;
}
.has-reveal .reveal.is-visible { opacity: 1; transform: none; }

/* ───────── Nav ───────── */
.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: var(--mv-space-5);
    padding: 22px var(--ml-gutter);
    max-width: var(--ml-max);
    margin: 0 auto;
}
.brand {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    color: var(--ink);
}
.brand__name {
    font-size: 21px;
    font-weight: 600;
    letter-spacing: 0.01em;
    color: var(--ink);
    text-transform: lowercase;
}
.brand__mark {
    display: block;
    flex-shrink: 0;
    background: rgba(31, 33, 48, 0.04);
    border-radius: 50%;
    padding: 2px;
    box-shadow: inset 0 0 0 1px var(--ink-10);
}
.nav__links { display: flex; gap: 34px; }
.nav__links a {
    font-size: 14.5px;
    color: var(--ink-60);
    text-transform: lowercase;
    transition: color 0.2s var(--ease);
}
.nav__links a:hover { color: var(--ink); }
.nav__actions { display: flex; gap: 12px; }
.nav__toggle {
    display: none;   /* shown ≤768px as the mobile menu button */
    width: 44px; height: 44px;
    align-items: center;
    justify-content: center;
    background: transparent;
    border: 1px solid var(--ink-12);
    border-radius: 10px;
    color: var(--ink);
    cursor: pointer;
}

/* ───────── Buttons / links ───────── */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 15px 30px;
    border: 1px solid transparent;
    border-radius: var(--ml-radius-sm);
    font-size: 16px;
    font-weight: 550;
    text-transform: lowercase;
    letter-spacing: 0.01em;
    transition: transform 0.2s var(--ease), box-shadow 0.2s var(--ease),
                background 0.2s var(--ease), border-color 0.2s var(--ease);
    will-change: transform;
}
/* Primary CTA: black text on blue = 5.88:1 (AA). Hover lifts; blue stays so text stays AA. */
.btn--primary {
    background: var(--blue);
    color: #000;
    box-shadow: 0 1px 2px rgba(31, 33, 48, 0.10), 0 6px 16px rgba(35, 144, 198, 0.22);
}
.btn--primary:hover {
    transform: translateY(-1px);
    box-shadow: 0 2px 4px rgba(31, 33, 48, 0.10), 0 12px 26px rgba(35, 144, 198, 0.30);
}
.btn--ghost {
    background: transparent;
    color: var(--ink);
    border-color: var(--ink-12);
}
.btn--ghost:hover { border-color: var(--ink); transform: translateY(-1px); }
.btn--sm { padding: 10px 18px; font-size: 14px; }
.btn--lg { padding: 18px 38px; font-size: 18px; }

.link--quiet {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 10px 4px;   /* ≥44px tap height */
    color: var(--ink-60);
    font-size: 15px;
    text-transform: lowercase;
    transition: color 0.2s var(--ease);
}
.link--quiet:hover { color: var(--blue); }

/* ───────── Eyebrow ───────── */
.eyebrow {
    text-align: center;
    font-size: 12px;
    letter-spacing: 0.16em;
    color: var(--ink-40);
    text-transform: uppercase;
    font-weight: 600;
    margin-bottom: 28px;
}

/* ───────── Hero ───────── */
.hero {
    text-align: center;
    padding: clamp(72px, 11vw, 148px) var(--ml-gutter) clamp(48px, 7vw, 88px);
    max-width: 960px;
    margin: 0 auto;
}
.hero__title {
    font-size: clamp(48px, 7vw, 84px);
    font-weight: 700;
    line-height: 1.05;
    letter-spacing: -0.03em;
    margin-bottom: 26px;
    text-transform: lowercase;
}
.hero__sub {
    font-size: clamp(18px, 2.2vw, 21px);
    line-height: 1.5;
    color: var(--ink-60);
    max-width: 620px;
    margin: 0 auto 38px;
}
.hero__actions {
    display: inline-flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 18px 26px;
}

/* ───────── Trust strip ───────── */
.trust {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 14px 30px;
    max-width: var(--ml-max);
    margin: 0 auto;
    padding: 26px var(--ml-gutter);
    border-top: var(--hair);
    border-bottom: var(--hair);
}
.trust__item {
    font-size: 11.5px;
    color: var(--ink-50);
    position: relative;
    padding-left: 16px;
    text-transform: uppercase;
    letter-spacing: 0.09em;
    font-weight: 600;
}
.trust__item::before {
    content: "";
    position: absolute;
    left: 0; top: 50%;
    width: 5px; height: 5px;
    background: var(--ink-40);
    border-radius: 50%;
    transform: translateY(-50%);
}

/* ───────── Section headline (shared across landing pages) ───────── */
.section-headline {
    text-align: center;
    font-size: clamp(30px, 4.2vw, 44px);
    font-weight: 650;
    line-height: 1.1;
    letter-spacing: -0.025em;
    max-width: 760px;
    margin: 0 auto 56px;
    text-transform: lowercase;
}

/* ───────── How it works ───────── */
.how {
    padding: var(--ml-section) var(--ml-gutter);
    max-width: var(--ml-max);
    margin: 0 auto;
}
.steps {
    position: relative;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: clamp(24px, 4vw, 56px);
    list-style: none;
}
/* hairline connector behind the step numbers */
.steps::before {
    content: "";
    position: absolute;
    top: 24px; left: 16%; right: 16%;
    height: 1px;
    background: var(--ink-10);
    z-index: 0;
}
.step {
    position: relative;
    z-index: 1;
    text-align: center;
    padding: 0 12px;
}
.step__num {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px; height: 48px;
    background: var(--lime);
    border-radius: 50%;
    color: var(--ink);              /* ink on lime ~7.4:1 (AA); lime-as-text fails */
    font-weight: 600;
    font-size: 18px;
    margin-bottom: 22px;
    box-shadow: 0 0 0 6px var(--mv-bg);   /* mask the connector line behind the badge */
}
.step__title {
    font-size: 19px;
    font-weight: 600;
    margin-bottom: 10px;
    text-transform: lowercase;
    letter-spacing: -0.01em;
}
.step__copy {
    font-size: 15.5px;
    line-height: 1.6;
    color: var(--ink-60);
}

/* ───────── Features ───────── */
.features {
    padding: var(--ml-section) var(--ml-gutter);
    background: rgba(255, 255, 255, 0.5);
    border-top: var(--hair);
    border-bottom: var(--hair);
}
.features__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    max-width: var(--ml-max);
    margin: 0 auto;
}
.card {
    background: var(--mv-surface-raised);
    padding: 30px;
    border-radius: var(--ml-radius);
    border: var(--hair);
    box-shadow: var(--sh-md);
    transition: transform 0.2s var(--ease), box-shadow 0.2s var(--ease),
                border-color 0.2s var(--ease);
}
.card:hover {
    transform: translateY(-4px);
    box-shadow: var(--sh-lg);
    border-color: var(--ink-12);
}
.card__icon {
    width: 52px; height: 52px;
    background: var(--ink-06);
    border: 1px solid var(--ink-10);
    border-radius: 12px;
    margin-bottom: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--ink);
}
.card__glyph { width: 26px; height: 26px; display: block; }
.card h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 8px;
    text-transform: lowercase;
    letter-spacing: -0.01em;
}
.card p {
    font-size: 15px;
    line-height: 1.6;
    color: var(--ink-60);
}

/* ───────── Transactions — composed section (calm, no 3D circus) ───────── */
.transactions {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: clamp(36px, 5vw, 76px);
    align-items: center;
    max-width: var(--ml-max);
    margin: 0 auto;
    padding: var(--ml-section) var(--ml-gutter);
}
.transactions__copy .eyebrow { text-align: left; margin-bottom: 18px; }
.transactions__title {
    font-size: clamp(30px, 4.2vw, 46px);
    font-weight: 650;
    line-height: 1.08;
    letter-spacing: -0.025em;
    margin-bottom: 18px;
    text-transform: lowercase;
}
.transactions__lead {
    font-size: 18px;
    color: var(--ink-60);
    margin-bottom: 28px;
    line-height: 1.6;
}
.transactions__list { list-style: none; padding: 0; }
.transactions__list li {
    display: flex;
    align-items: baseline;
    gap: 12px;
    font-size: 15.5px;
    color: var(--ink-70);
    margin-bottom: 14px;
    text-transform: lowercase;
    line-height: 1.55;
}
.transactions__list .dot {
    width: 6px; height: 6px;
    border-radius: 50%;
    background: var(--ink-40);
    flex-shrink: 0;
    transform: translateY(-2px);
}
.transactions__stack {
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.tx-card {
    background: #FFFFFF;
    border: var(--hair);
    border-radius: var(--ml-radius);
    padding: 22px 24px;
    box-shadow: var(--sh-md);
    transition: transform 0.2s var(--ease), box-shadow 0.2s var(--ease);
}
.tx-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--sh-lg);
}
.tx-card__top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
}
.tx-card__chain {
    font-size: 12px;
    color: var(--ink-50);
    letter-spacing: 0.04em;
    text-transform: lowercase;
    font-family: var(--mv-font-mono);
}
.tx-card__status {
    font-size: 11px;
    padding: 4px 11px;
    border-radius: var(--mv-radius-full);
    text-transform: uppercase;
    letter-spacing: 0.06em;
    font-weight: 600;
}
.tx-card__status--paid {
    background: rgba(158, 191, 44, 0.18);
    color: var(--ink);            /* ink on lime tint — AA; lime-as-text fails */
}
.tx-card__status--pending {
    background: rgba(184, 130, 26, 0.15);
    color: var(--mv-color-warning);
}
.tx-card__amount {
    font-size: 30px;
    font-weight: 600;
    color: var(--ink);            /* ink, not blue — blue is reserved */
    line-height: 1;
    margin-bottom: 8px;
    font-variant-numeric: tabular-nums;
    letter-spacing: -0.015em;
}
.tx-card__amount span {
    font-size: 13px;
    color: var(--ink-50);
    margin-left: 7px;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    font-weight: 600;
}
.tx-card__meta {
    font-size: 13.5px;
    color: var(--ink-50);
    margin-bottom: 18px;
    font-variant-numeric: tabular-nums;
}
.tx-card__bar {
    height: 3px;
    background: var(--ink-06);
    border-radius: var(--mv-radius-full);
    overflow: hidden;
}
.tx-card__bar span {
    display: block;
    height: 100%;
    background: var(--blue);       /* the elegant blue progress line */
    border-radius: var(--mv-radius-full);
}

/* ───────── Industries — CSS bridge over the old green photos ───────── */
.industries {
    padding: var(--ml-section) var(--ml-gutter);
    background: var(--mv-bg);
}
.industries__inner { max-width: var(--ml-max); margin: 0 auto; }
.industries .eyebrow { text-align: center; }
.industries__grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 18px;
    max-width: var(--ml-max);
    margin: 0 auto;
}
.industry {
    position: relative;
    background: var(--mv-surface-raised);
    border: var(--hair);
    border-radius: var(--ml-radius);
    padding: 0 22px 26px;
    box-shadow: var(--sh-md);
    text-align: center;
    transition: transform 0.2s var(--ease), box-shadow 0.2s var(--ease);
    overflow: hidden;
    display: flex;
    flex-direction: column;
}
.industry:hover {
    transform: translateY(-6px);
    box-shadow: var(--sh-lg);
}
.industry:hover .industry__photo img {
    transform: scale(1.04);
    filter: grayscale(0.6) contrast(1.05) brightness(1.05);
}
.industry__photo {
    position: relative;
    width: calc(100% + 44px);
    margin: 0 -22px 22px;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    background: #E7E5DD;
}
.industry__photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    /* neutralize the old emerald-green so images read as one curated family:
       near-monochrome + lift, then a cool brand whisper via the ::after soft-light layer */
    filter: grayscale(0.92) contrast(1.05) brightness(1.06);
    transition: transform 0.4s var(--ease), filter 0.3s var(--ease);
}
.industry__photo::after {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    /* gentle brand wash (blue→lime) + cream foot, blended softly so it tints without garishness */
    background: linear-gradient(155deg,
        rgba(35, 144, 198, 0.26) 0%,
        rgba(158, 191, 44, 0.05) 50%,
        rgba(231, 229, 221, 0.40) 100%);
    mix-blend-mode: soft-light;
}
.industry__photo::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    box-shadow: inset 0 -1px 0 var(--ink-10);
}
.industry h3 {
    font-size: 17px;
    font-weight: 600;
    margin-bottom: 8px;
    text-transform: lowercase;
    letter-spacing: -0.01em;
}
.industry p {
    font-size: 13.5px;
    color: var(--ink-60);
    line-height: 1.5;
}

/* ───────── Supported coins — calm tiles (no 3D wobble) ───────── */
.coins {
    padding: var(--ml-section) var(--ml-gutter);
    background: rgba(255, 255, 255, 0.5);
    border-top: var(--hair);
    border-bottom: var(--hair);
}
.coins__inner { max-width: var(--ml-max); margin: 0 auto; }
.coins .eyebrow { text-align: center; }
.coins__lead {
    text-align: center;
    color: var(--ink-60);
    font-size: 17px;
    margin: -34px auto 52px;
    max-width: 620px;
    text-transform: lowercase;
}
.coins__grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 18px;
}
.coin-tile {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
    padding: 28px 16px;
    background: var(--mv-surface-raised);
    border: var(--hair);
    border-radius: var(--ml-radius);
    box-shadow: var(--sh-md);
    transition: transform 0.2s var(--ease), box-shadow 0.2s var(--ease),
                border-color 0.2s var(--ease);
}
.coin-tile:hover {
    transform: translateY(-4px);
    box-shadow: var(--sh-lg);
    border-color: var(--ink-12);
}
.coin-tile__symbol {
    width: 52px; height: 52px;
    filter: drop-shadow(0 4px 10px rgba(31, 33, 48, 0.12));
}
.coin-tile__symbol img { width: 100%; height: 100%; display: block; }
.coin-tile__name {
    font-size: 14.5px;
    color: var(--ink);
    text-transform: lowercase;
    font-weight: 600;
}
.coin-tile__ticker {
    font-size: 11.5px;
    color: var(--ink-40);
    letter-spacing: 0.08em;
    text-transform: uppercase;
    font-family: var(--mv-font-mono);
}
.coins__note {
    text-align: center;
    margin-top: 52px;
    font-size: 15px;
    color: var(--ink-50);
    text-transform: lowercase;
}
.coins__note a {
    color: var(--blue);
    border-bottom: 1px solid var(--ink-12);
    transition: border-color 0.2s var(--ease);
}
.coins__note a:hover { border-bottom-color: var(--blue); }

/* ───────── Testimonials ───────── */
.testimonials {
    padding: var(--ml-section) var(--ml-gutter);
    background: var(--mv-bg);
}
.testimonials__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
    max-width: var(--ml-max);
    margin: 0 auto;
}
.testimonial {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
    background: var(--mv-surface-raised);
    padding: 34px 30px 28px;
    border-radius: var(--ml-radius);
    border: var(--hair);
    box-shadow: var(--sh-md);
    overflow: hidden;
    transition: transform 0.2s var(--ease), box-shadow 0.2s var(--ease);
}
.testimonial:hover {
    transform: translateY(-3px);
    box-shadow: var(--sh-lg);
}
/* big, quiet quotation mark as a typographic element (not glued to the text) */
.testimonial::before {
    content: "\201C";
    position: absolute;
    top: 6px; right: 20px;
    font-size: 96px;
    line-height: 1;
    font-family: Georgia, "Times New Roman", serif;
    color: var(--ink-06);
    pointer-events: none;
}
.testimonial__avatar {
    position: relative;
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: var(--ink-06);
    border: 1px solid var(--ink-10);
    color: var(--ink-50);
    margin-bottom: 22px;
    overflow: hidden;
    font-weight: 600;
    font-size: 14px;
    letter-spacing: 0.5px;
    display: block;
}
.testimonial__avatar-initials {
    position: absolute;
    inset: 0;
    display: grid;
    place-items: center;
    text-transform: uppercase;
    z-index: 0;
}
.testimonial__avatar img {
    position: relative;
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}
.testimonial__body {
    font-size: 16.5px;
    line-height: 1.6;
    margin-bottom: 18px;
    color: var(--ink);
    position: relative;
    z-index: 1;
}
.testimonial__tag {
    margin-top: auto;
    font-size: 12px;
    color: var(--ink-40);
    text-transform: lowercase;
    letter-spacing: 0.06em;
    font-family: var(--mv-font-mono);
}

/* ───────── Pricing — a weighted moment ───────── */
.pricing {
    padding: var(--ml-section) var(--ml-gutter);
    text-align: center;
}
.pricing__panel {
    max-width: 620px;
    margin: 0 auto;
    padding: clamp(40px, 6vw, 64px) clamp(28px, 5vw, 56px);
    background: var(--mv-surface-raised);
    border: var(--hair);
    border-radius: calc(var(--ml-radius) + 6px);
    box-shadow: var(--sh-lg);
}
.pricing__panel .eyebrow { margin-bottom: 20px; }
.pricing__amount {
    display: inline-flex;
    align-items: baseline;
    justify-content: center;
    gap: 4px;
    margin-bottom: 14px;
    color: var(--ink);
}
.pricing__num {
    font-size: clamp(56px, 8vw, 76px);
    font-weight: 300;
    line-height: 1;
    letter-spacing: -0.03em;
}
.pricing__note { font-size: 18px; color: var(--ink-70); margin-bottom: 8px; }
.pricing__compare { font-size: 15px; color: var(--ink-60); }
.pricing__compare--muted { color: var(--ink-40); margin-bottom: 30px; }
.pricing .btn { margin-top: 4px; }

/* ───────── CTA ───────── */
.cta {
    padding: var(--ml-section) var(--ml-gutter);
    text-align: center;
    border-top: var(--hair);
    background: rgba(255, 255, 255, 0.45);
}
.cta__title {
    font-size: clamp(30px, 4.4vw, 48px);
    font-weight: 650;
    line-height: 1.08;
    letter-spacing: -0.025em;
    margin-bottom: 18px;
    text-transform: lowercase;
}
.cta__lead {
    font-size: 18px;
    color: var(--ink-60);
    max-width: 500px;
    margin: 0 auto 34px;
    line-height: 1.6;
    text-transform: lowercase;
}
.cta__note {
    font-size: 15px;
    color: var(--ink-40);
    margin-top: 20px;
    text-transform: lowercase;
}

/* ───────── Footer ───────── */
.foot {
    padding: clamp(56px, 7vw, 88px) var(--ml-gutter) 40px;
    border-top: var(--hair);
}
.foot__top {
    max-width: var(--ml-max);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.4fr 3fr;
    gap: clamp(32px, 5vw, 72px);
    align-items: start;
}
.foot__tag {
    font-size: 14.5px;
    color: var(--ink-50);
    margin-top: 14px;
    max-width: 240px;
    text-transform: lowercase;
}
.foot__cols {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
}
.foot__col h4 {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--ink-40);
    margin-bottom: 16px;
    font-weight: 600;
}
.foot__col a {
    display: block;
    color: var(--ink-60);
    font-size: 14.5px;
    margin-bottom: 10px;
    text-transform: lowercase;
    transition: color 0.2s var(--ease);
}
.foot__col a:hover { color: var(--ink); }
.foot__bottom {
    max-width: var(--ml-max);
    margin: clamp(40px, 5vw, 56px) auto 0;
    padding-top: 28px;
    border-top: var(--hair);
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 12px;
    font-size: 13.5px;
    color: var(--ink-40);
    text-transform: lowercase;
}
.foot__col .ticker {
    font-size: 11px;
    color: var(--ink-40);
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-left: 4px;
    font-family: var(--mv-font-mono);
}
.foot__legal {
    display: inline-flex;
    gap: 8px;
    align-items: center;
}
.foot__legal a { color: var(--ink-40); transition: color 0.2s var(--ease); }
.foot__legal a:hover { color: var(--ink); }

/* ───────── Legal pages (privacy, terms) ───────── */
.legal {
    max-width: 760px;
    margin: 0 auto;
    padding: clamp(56px, 7vw, 88px) var(--ml-gutter) var(--ml-section);
}
.legal__eyebrow { text-align: left; margin-bottom: 14px; }
.legal__title {
    font-size: clamp(38px, 6vw, 60px);
    font-weight: 700;
    line-height: 1.06;
    letter-spacing: -0.03em;
    margin-bottom: 14px;
    text-transform: lowercase;
}
.legal__meta {
    color: var(--ink-40);
    font-size: 15px;
    margin-bottom: 40px;
    text-transform: lowercase;
}
.legal__intro {
    font-size: 20px;
    color: var(--ink-60);
    line-height: 1.6;
    margin-bottom: 40px;
    padding-bottom: 32px;
    border-bottom: var(--hair);
}
.legal__section { margin-top: 40px; }
.legal__section h2 {
    font-size: 26px;
    font-weight: 650;
    line-height: 1.2;
    letter-spacing: -0.02em;
    margin-bottom: 16px;
    text-transform: lowercase;
}
.legal__section h3 {
    font-size: 18px;
    font-weight: 600;
    margin: 24px 0 12px;
    text-transform: lowercase;
    color: var(--ink);
}
.legal__section p {
    margin-bottom: 16px;
    color: var(--ink-70);
    line-height: 1.65;
}
.legal__section ul {
    margin: 0 0 16px 24px;
    color: var(--ink-70);
    line-height: 1.65;
}
.legal__section li { margin-bottom: 8px; }
.legal__section strong { font-weight: 600; color: var(--ink); }
.legal__section a {
    color: var(--blue);
    border-bottom: 1px solid var(--ink-12);
    transition: border-color 0.2s var(--ease);
}
.legal__section a:hover { border-bottom-color: var(--blue); }
.legal__mono {
    font-family: var(--mv-font-mono);
    font-size: 0.92em;
    color: var(--ink);
    background: var(--ink-06);
    padding: 1px 6px;
    border-radius: var(--ml-radius-xs);
}

/* ───────── Responsive ───────── */
@media (max-width: 900px) {
    .transactions { grid-template-columns: 1fr; gap: 40px; }
    .transactions__copy .eyebrow { text-align: left; }
    .industries__grid { grid-template-columns: repeat(3, 1fr); }
    .coins__grid { grid-template-columns: repeat(3, 1fr); }
    .testimonials__grid { grid-template-columns: repeat(2, 1fr); }
    .foot__top { grid-template-columns: 1fr; }
    .foot__cols { grid-template-columns: repeat(2, 1fr); gap: 28px; }
}
@media (max-width: 768px) {
    .nav { padding: 18px var(--ml-gutter); flex-wrap: wrap; }
    .nav__toggle { display: inline-flex; }
    .nav__links {
        display: none;
        order: 3;
        flex-basis: 100%;
        flex-direction: column;
        gap: 0;
        margin-top: 14px;
        border-top: var(--hair);
    }
    .nav__links.is-open { display: flex; }
    .nav__links a { padding: 14px 2px; font-size: 16px; border-bottom: var(--hair); }
    .foot__col a { padding: 11px 0; margin-bottom: 0; }   /* ≥44px tap */
    .steps { grid-template-columns: 1fr; gap: 32px; }
    .steps::before { display: none; }
    .features__grid { grid-template-columns: repeat(2, 1fr); }
    .industries__grid { grid-template-columns: repeat(2, 1fr); }
    .coins__grid { grid-template-columns: repeat(3, 1fr); }
    .testimonials__grid { grid-template-columns: 1fr; }
}
@media (max-width: 480px) {
    .hero__title { font-size: clamp(32px, 8.5vw, 42px); }   /* was floored at 48px → wrapped to 3-4 lines on phones */
    .features__grid { grid-template-columns: 1fr; }
    .industries__grid { grid-template-columns: 1fr; }
    .coins__grid { grid-template-columns: repeat(2, 1fr); }
    .hero__actions { flex-direction: column; gap: 16px; }
}

/* ───────── Reduced motion ───────── */
@media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
    * { animation: none !important; transition: none !important; }
    .has-reveal .reveal { opacity: 1; transform: none; }
}
