/* ==========================================================================
   CardElite — landing. Light-dominant editorial monochrome with two dark bands.
   Built from research blueprint. Plain CSS, mobile-first, self-hosted fonts.
   ========================================================================== */

@font-face { font-family: 'Space Grotesk'; src: url('/fonts/space-grotesk-500.woff2') format('woff2'); font-weight: 500; font-display: swap; }
@font-face { font-family: 'Space Grotesk'; src: url('/fonts/space-grotesk-700.woff2') format('woff2'); font-weight: 700; font-display: swap; }
@font-face { font-family: 'Inter'; src: url('/fonts/inter-400.woff2') format('woff2'); font-weight: 400; font-display: swap; }
@font-face { font-family: 'Inter'; src: url('/fonts/inter-500.woff2') format('woff2'); font-weight: 500; font-display: swap; }
@font-face { font-family: 'Inter'; src: url('/fonts/inter-600.woff2') format('woff2'); font-weight: 600; font-display: swap; }

:root {
    /* warm neutral ramp — never pure black/white */
    --ink-900: #0d0d0f;
    --ink-800: #141416;
    --ink-700: #1e1e22;
    --ink-600: #2a2a2f;
    --ink-500: #6b6b70;
    --ink:     #111111;
    --paper-100: #f6f6f4;
    --paper-50:  #fcfcfb;
    --line:      #e7e7e2;
    --line-2:    #dcdcd6;
    --white:     #ffffff;

    /* money signal — the only color, used 2-3 times total */
    --money:      #34c759;   /* on dark grounds / big figures */
    --money-ink:  #24a148;   /* green text on light (WCAG AA) */

    --font-display: 'Space Grotesk', 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;

    --shadow-float: 0 2px 4px rgba(17,17,17,.04), 0 12px 24px rgba(17,17,17,.06), 0 40px 80px rgba(17,17,17,.08);
    --shadow-soft:  0 1px 2px rgba(17,17,17,.04), 0 8px 24px rgba(17,17,17,.06);
    --shadow-card-dark: inset 0 1px 0 rgba(255,255,255,.06), 0 2px 6px rgba(0,0,0,.3), 0 30px 60px rgba(0,0,0,.45);

    --r-sm: 12px; --r: 16px; --r-lg: 22px; --r-xl: 28px;
    --container: 1160px;
    --pad: clamp(1.15rem, 5vw, 2.25rem);

    --grain: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
    --ease: cubic-bezier(.2,.7,.2,1);
}

/* ---- base ------------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
    margin: 0; font-family: var(--font-sans);
    background: var(--paper-100); color: var(--ink);
    font-size: 1rem; line-height: 1.6;
    -webkit-font-smoothing: antialiased; text-rendering: optimizeLegibility;
}
img, svg { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
p { margin: 0; }
h1, h2, h3, h4 { margin: 0; }
:focus-visible { outline: 2px solid var(--ink); outline-offset: 3px; border-radius: 4px; }
::selection { background: var(--ink); color: var(--paper-50); }

.display { font-family: var(--font-display); font-weight: 700; letter-spacing: -0.03em; line-height: 1.03; text-wrap: balance; }
.tnum { font-family: var(--font-display); font-variant-numeric: tabular-nums; }

.skip-link { position: absolute; left: -999px; top: 0; background: var(--ink); color: #fff; padding: .6rem 1rem; z-index: 200; }
.skip-link:focus { left: 0; }

/* ---- layout ----------------------------------------------------------- */
.container { width: 100%; max-width: var(--container); margin-inline: auto; padding-inline: var(--pad); }
.container--narrow { max-width: 780px; }
.section { padding-block: clamp(3.5rem, 9vw, 7rem); position: relative; }
.section--tight { padding-block: clamp(2.5rem, 6vw, 4rem); }
[id] { scroll-margin-top: 88px; }

.band--light { background: linear-gradient(180deg, var(--paper-50), #f2f2ef); }
.band--dark { background: radial-gradient(120% 90% at 50% 0%, #1a1a1e 0%, var(--ink-900) 62%); color: #fff; position: relative; overflow: hidden; }
.band--dark::before {
    content: ""; position: absolute; inset: 0; background: var(--grain);
    opacity: .05; mix-blend-mode: overlay; pointer-events: none;
}
.band--dark .container { position: relative; z-index: 1; }

.eyebrow { display: inline-block; font-size: .72rem; font-weight: 600; letter-spacing: .16em; text-transform: uppercase; color: var(--ink-500); }
.band--dark .eyebrow { color: rgba(255,255,255,.55); }
.section__head { max-width: 44ch; margin-bottom: clamp(2rem, 4vw, 3rem); }
.section__head .eyebrow { margin-bottom: 1rem; }
.section__title { font-family: var(--font-display); font-weight: 700; letter-spacing: -0.03em; line-height: 1.05; font-size: clamp(1.8rem, 4.5vw, 2.9rem); }
.section__lead { color: var(--ink-500); font-size: 1.1rem; margin-top: .9rem; }
.band--dark .section__lead { color: rgba(255,255,255,.62); }

/* ---- buttons ---------------------------------------------------------- */
.btn { display: inline-flex; align-items: center; justify-content: center; gap: .5rem; font: inherit; font-weight: 600; padding: .85rem 1.5rem; border-radius: 999px; border: 1px solid transparent; cursor: pointer; transition: transform .2s var(--ease), opacity .2s var(--ease); white-space: nowrap; }
.btn--primary { background: var(--ink); color: #fff; }
.btn--primary:hover { transform: translateY(-2px); opacity: .92; }
.btn--sm { padding: .58rem 1.15rem; font-size: .92rem; }

.chip { display: inline-flex; align-items: center; gap: .5rem; font-size: .82rem; font-weight: 500; padding: .45rem .9rem; border-radius: 999px; border: 1px solid var(--line-2); color: var(--ink-500); background: var(--paper-50); }
.chip--safe { background: var(--money-bg); border-color: rgba(36,161,72,.28); color: var(--money-ink); }
.chip--safe::before { content: ""; width: 7px; height: 7px; border-radius: 50%; background: var(--money); }

/* ---- store badges (text buttons; auto-swap to official art) ----------- */
.store-badges { display: flex; flex-wrap: wrap; gap: .8rem; }
.store-btn { display: inline-flex; flex-direction: column; justify-content: center; gap: 1px; min-width: 160px; padding: .55rem 1.2rem; line-height: 1.15; background: var(--ink); color: #fff; border: 1px solid var(--ink); border-radius: 14px; transition: transform .2s var(--ease), opacity .2s var(--ease); }
.store-btn:hover { transform: translateY(-2px); opacity: .92; }
.store-btn[aria-disabled="true"] { pointer-events: none; }
.store-btn__small { font-size: .62rem; letter-spacing: .05em; text-transform: uppercase; opacity: .8; }
.store-btn__big { font-family: var(--font-display); font-size: 1.05rem; font-weight: 700; letter-spacing: -.01em; }
.store-btn--art { padding: 0; background: none; border: none; line-height: 0; display: inline-flex; align-items: center; }
.band--dark .store-btn--art, .finalcta__card .store-btn--art { padding: 4px 8px; background: #fff; border: 1px solid rgba(0, 0, 0, .06); border-radius: 10px; }
.store-btn--art:hover { transform: translateY(-2px); }
.store-btn--art .img { height: 44px; width: auto; }
.band--dark .store-btn:not(.store-btn--art) { background: #fff; color: var(--ink); border-color: #fff; }

/* ---- header (floating rounded pill) ----------------------------------- */
.site-header { position: fixed; top: 0; left: 0; right: 0; z-index: 100; padding: 14px var(--pad); }
.site-header__inner {
    max-width: 1080px; margin-inline: auto;
    display: flex; align-items: center; gap: 1rem;
    min-height: 54px; padding: .5rem .55rem .5rem 1.4rem;
    border-radius: 999px;
    background: color-mix(in srgb, var(--paper-50) 82%, transparent);
    backdrop-filter: saturate(180%) blur(16px);
    border: 1px solid var(--line);
    box-shadow: var(--shadow-soft);
    transition: background .3s var(--ease), border-color .3s var(--ease), box-shadow .3s var(--ease);
}
.site-header .brand__logo { height: 32px; width: auto; transition: filter .3s var(--ease); }
.site-nav { display: none; margin-left: auto; gap: 1.9rem; }
.site-nav a { font-weight: 500; font-size: .94rem; color: var(--ink-500); transition: color .2s var(--ease); }
.site-nav a:hover { color: var(--ink); }
.site-header .btn--primary { margin-left: auto; flex-shrink: 0; }
@media (min-width: 900px) { .site-nav { display: flex; } .site-header .btn--primary { margin-left: 0; } }

/* Dark glass while floating over the home hero, until scrolled past it. */
.has-hero .site-header:not(.is-scrolled) .site-header__inner {
    background: rgba(18, 18, 20, .5);
    border-color: rgba(255, 255, 255, .1);
    box-shadow: 0 10px 34px rgba(0, 0, 0, .34);
}
.has-hero .site-header:not(.is-scrolled) .brand__logo { filter: invert(1) brightness(2.2); }
.has-hero .site-header:not(.is-scrolled) .site-nav a { color: rgba(255, 255, 255, .75); }
.has-hero .site-header:not(.is-scrolled) .site-nav a:hover { color: #fff; }
.has-hero .site-header:not(.is-scrolled) .btn--primary { background: #fff; color: var(--ink); }

/* ---- hero ------------------------------------------------------------- */
.hero { position: relative; overflow: hidden; padding-top: clamp(6rem, 12vw, 9rem); padding-bottom: clamp(3.5rem, 8vw, 6rem); background: radial-gradient(72% 62% at 80% 4%, #e7f5ec 0%, transparent 52%), linear-gradient(180deg, var(--paper-50), var(--paper-100)); }
.hero__inner { display: grid; gap: clamp(3rem, 7vw, 4.5rem); align-items: center; }
.hero__copy, .hero__stage { min-width: 0; }
.hero__title { font-size: clamp(2.5rem, 7vw, 4.6rem); font-weight: 600; margin-top: 1.25rem; color: var(--ink); }
.hero__title em { font-style: normal; font-weight: 700; }
.hero__sub { margin-top: 1.4rem; font-size: clamp(1.05rem, 2vw, 1.25rem); color: var(--ink-500); max-width: 34ch; }
.hero__cta { margin-top: 2rem; }
.hero__micro { margin-top: 1rem; font-size: .9rem; color: var(--ink-500); }
.hero__chips { margin-top: 1.5rem; }
@media (min-width: 900px) { .hero__inner { grid-template-columns: 1.02fr .98fr; } }

/* hero visual cluster */
.hero__stage { position: relative; justify-self: center; width: 100%; max-width: min(440px, 100%); }
.hero__stage::before { content: ""; position: absolute; inset: -20% -10% -10% -10%; background: radial-gradient(55% 55% at 58% 42%, rgba(36,161,72,.12), transparent 70%); pointer-events: none; }
.hero__device { position: relative; z-index: 1; width: 100%; filter: drop-shadow(0 24px 40px rgba(17, 17, 17, .22)); }
.hero__device.img-skeleton { border-radius: var(--r-xl); filter: none; }

.wallet { position: relative; z-index: 2; border-radius: var(--r-xl); background: linear-gradient(158deg, #202024 0%, #0d0d0f 64%); border: 1px solid rgba(255,255,255,.09); box-shadow: var(--shadow-card-dark); color: #fff; overflow: hidden; }
.wallet::after { content: ""; position: absolute; inset: 0; background: var(--grain); opacity: .07; mix-blend-mode: overlay; pointer-events: none; }
.wallet--hero { padding: 1.5rem 1.5rem 1.7rem; transform: rotate(-5deg); }
.wallet__top { display: flex; align-items: center; justify-content: space-between; }
.wallet__mark { display: grid; place-items: center; width: 30px; height: 30px; border-radius: 9px; background: rgba(255,255,255,.1); font-family: var(--font-display); font-weight: 700; font-size: .78rem; }
.wallet__pill { display: inline-flex; align-items: center; gap: .45rem; font-size: .75rem; font-weight: 600; padding: .35rem .75rem; border-radius: 999px; background: rgba(255,255,255,.1); }
.wallet__pill .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--money); box-shadow: 0 0 0 4px rgba(52,199,89,.16); }
.rate { margin-top: 1.5rem; }
.rate__sel { display: inline-flex; align-items: center; gap: .5rem; font-size: .9rem; font-weight: 500; color: rgba(255,255,255,.78); padding: .5rem .85rem; border: 1px solid rgba(255,255,255,.14); border-radius: 999px; }
.rate__sel::after { content: "▾"; font-size: .7rem; opacity: .6; }
.bignum { display: flex; align-items: flex-start; gap: .1em; margin-top: 1.1rem; line-height: .9; }
.bignum__cur { font-family: var(--font-display); font-weight: 500; font-size: clamp(1.6rem, 4vw, 2.4rem); color: var(--money); margin-top: .12em; }
.bignum__val { font-family: var(--font-display); font-weight: 700; font-variant-numeric: tabular-nums; letter-spacing: -.02em; font-size: clamp(3.2rem, 9vw, 5rem); color: var(--money); }
.bignum__unit { font-family: var(--font-sans); font-size: .8rem; font-weight: 500; color: rgba(255,255,255,.5); margin-top: .35rem; letter-spacing: .02em; }
.rate__cap { margin-top: .7rem; font-size: .82rem; color: rgba(255,255,255,.5); }
.tick { display: grid; place-items: center; width: 20px; height: 20px; border-radius: 50%; background: var(--money); color: #fff; font-size: .7rem; flex-shrink: 0; }
.tick--sm { width: 17px; height: 17px; font-size: .6rem; }

.frag { position: absolute; z-index: 3; background: var(--paper-50); color: var(--ink); border-radius: 14px; box-shadow: var(--shadow-float); }
.frag--row { z-index: 4; left: 3%; bottom: -8%; width: min(70%, 270px); padding: .85rem 1rem; }
.frag--row .frag__brand { font-size: .88rem; font-weight: 600; }
.frag--row .frag__amt { display: inline-flex; align-items: center; gap: .35rem; font-family: var(--font-display); font-weight: 700; font-size: .92rem; color: var(--money-ink); white-space: nowrap; }
.frag--row .frag__meta { font-size: .78rem; color: var(--ink-500); margin-top: .15rem; }
.frag__top { display: flex; align-items: baseline; justify-content: space-between; gap: .6rem; }
.frag--toast { top: 3%; right: -5%; display: inline-flex; align-items: center; gap: .5rem; padding: .6rem .9rem; font-size: .82rem; font-weight: 600; }
.hero__thumb { position: absolute; z-index: 1; right: -10%; top: 34%; width: 42%; border-radius: 14px; transform: rotate(8deg); box-shadow: var(--shadow-float); opacity: .96; }

/* ---- marquee + transparency strip ------------------------------------ */
.marquee { overflow: hidden; border-block: 1px solid var(--line); background: var(--paper-100); padding-block: 1.6rem; -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent); mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent); }
.marquee__track { display: flex; gap: 2.5rem; width: max-content; animation: marquee 32s linear infinite; }
.marquee:hover .marquee__track { animation-play-state: paused; }
.marquee__item { display: flex; align-items: center; gap: .7rem; color: var(--ink-500); font-weight: 600; font-size: .95rem; white-space: nowrap; }
.marquee__item .img { height: 34px; width: auto; border-radius: 6px; }
@keyframes marquee { to { transform: translateX(-50%); } }
.transparency { text-align: center; padding-block: 1.4rem; color: var(--ink-500); font-size: .98rem; }
.transparency strong { color: var(--ink); font-weight: 600; }

/* ---- how it works ----------------------------------------------------- */
/* mobile: horizontal swipe carousel; desktop: 3-col grid */
.steps { display: flex; gap: 1rem; overflow-x: auto; scroll-snap-type: x mandatory; -webkit-overflow-scrolling: touch; scrollbar-width: none; padding-block: .4rem .9rem; }
.steps::-webkit-scrollbar { display: none; }
.step { position: relative; flex: 0 0 84%; scroll-snap-align: center; background: var(--paper-50); border: 1px solid var(--line); border-radius: var(--r-lg); padding: 1.6rem; box-shadow: var(--shadow-soft); display: flex; flex-direction: column; }
.steps-dots, .showcase-dots { display: flex; justify-content: center; gap: .5rem; margin-top: 1.1rem; }
.steps-dots span, .showcase-dots span { width: 7px; height: 7px; border-radius: 50%; background: var(--line-2); cursor: pointer; transition: background .25s var(--ease), width .25s var(--ease); }
.steps-dots span.is-active, .showcase-dots span.is-active { background: var(--ink); width: 20px; border-radius: 4px; }
@media (min-width: 680px) { .steps { display: grid; grid-template-columns: repeat(2, 1fr); overflow: visible; scroll-snap-type: none; padding-block: 0; } .step { flex: none; } .steps-dots { display: none; } }
@media (min-width: 1040px) { .steps { grid-template-columns: repeat(4, 1fr); } }
.step__n { font-family: var(--font-display); font-size: .8rem; font-weight: 700; letter-spacing: .1em; color: var(--ink-500); }
.step__media { margin: 1rem 0 1.2rem; aspect-ratio: 87 / 128; border-radius: var(--r); overflow: hidden; background: linear-gradient(160deg, #f0f0ec, #e9e9e4); display: grid; place-items: center; }
.step__media .img { width: 100%; height: 100%; object-fit: cover; }
.step__media .img[src$=".png"] { object-fit: contain; padding: .6rem; }
.step__title { font-family: var(--font-display); font-weight: 700; font-size: 1.2rem; letter-spacing: -.02em; }
.step p { color: var(--ink-500); margin-top: .4rem; font-size: .96rem; }

/* ---- live rates ------------------------------------------------------- */
.rates { display: grid; gap: 1.1rem; grid-template-columns: 1fr; }
@media (min-width: 680px) { .rates { grid-template-columns: repeat(3, 1fr); } }
.ratecard { background: var(--paper-50); border: 1px solid var(--line); border-radius: var(--r-lg); padding: 1.5rem; box-shadow: var(--shadow-soft); }
.ratecard__brand { font-weight: 600; color: var(--ink-500); font-size: .95rem; }
.ratecard__big { display: flex; align-items: flex-start; gap: .08em; margin-top: .6rem; line-height: .9; }
.ratecard__cur { font-family: var(--font-display); font-weight: 500; font-size: 1.3rem; color: var(--money-ink); margin-top: .15em; }
.ratecard__val { font-family: var(--font-display); font-weight: 700; font-variant-numeric: tabular-nums; letter-spacing: -.02em; font-size: clamp(2.2rem, 6vw, 3rem); color: var(--money-ink); }
.ratecard__meta { color: var(--ink-500); font-size: .85rem; margin-top: .4rem; }
.rates__cap { text-align: center; color: var(--ink-500); margin-top: 1.75rem; font-size: .95rem; }

/* ---- feature showcase (real screenshots, exploded) -------------------- */
/* mobile: swipe carousel; desktop: overlapping 3-col */
.showcase { display: flex; gap: 1rem; overflow-x: auto; scroll-snap-type: x mandatory; -webkit-overflow-scrolling: touch; scrollbar-width: none; padding-block: .4rem .9rem; }
.showcase::-webkit-scrollbar { display: none; }
.shot { flex: 0 0 84%; scroll-snap-align: center; }
@media (min-width: 820px) { .showcase { display: grid; grid-template-columns: repeat(3, 1fr); align-items: start; overflow: visible; scroll-snap-type: none; padding-block: 0; } .shot { flex: none; } .showcase-dots { display: none; } }
.shot .img { border-radius: var(--r); width: 100%; aspect-ratio: 590 / 1280; object-fit: cover; box-shadow: var(--shadow-float); }
.shot .img-skeleton { border-radius: var(--r); width: 100%; }
.shot__cap { padding: .9rem .4rem .3rem; }
.shot__cap h3 { font-family: var(--font-display); font-weight: 700; font-size: 1.05rem; letter-spacing: -.01em; }
.shot__cap p { color: var(--ink-500); font-size: .9rem; margin-top: .25rem; }
@media (min-width: 820px) {
    .shot:nth-child(1) { transform: rotate(-2deg) translateY(10px); }
    .shot:nth-child(3) { transform: rotate(2deg) translateY(10px); }
    .shot:nth-child(2) { z-index: 2; }
}

/* ---- security ("protection flow", light) ----------------------------- */
.band--soft { background: radial-gradient(100% 74% at 50% -8%, #e7f5ec 0%, var(--paper-100) 55%); }
.secure__head { text-align: center; margin-inline: auto; }
.flow { position: relative; margin-top: 3rem; }
.flow__rail { position: absolute; top: 34px; left: 16%; right: 16%; height: 2px; background: var(--line-2); border-radius: 2px; overflow: hidden; }
.flow__pulse { position: absolute; inset: 0 auto 0 0; width: 30%; background: linear-gradient(90deg, transparent, var(--money), transparent); animation: flowpulse 3.2s cubic-bezier(.4,0,.2,1) infinite; }
@keyframes flowpulse { 0% { transform: translateX(-130%); } 100% { transform: translateX(460%); } }
.flow__nodes { list-style: none; margin: 0; padding: 0; display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.75rem; position: relative; }
.flow__node { display: flex; flex-direction: column; align-items: center; text-align: center; }
.flow__dot { width: 68px; height: 68px; border-radius: 50%; background: #fff; border: 1px solid var(--line); box-shadow: var(--shadow-sm); display: grid; place-items: center; color: var(--money-ink); margin-bottom: 1.2rem; position: relative; z-index: 1; }
.flow__dot::after { content: ""; position: absolute; inset: -7px; border-radius: 50%; border: 1px solid var(--money-bg); }
.flow__dot svg { width: 26px; height: 26px; fill: none; stroke: currentColor; stroke-width: 1.6; stroke-linecap: round; stroke-linejoin: round; }
.flow__title { font-family: var(--font-display); font-weight: 700; font-size: 1.15rem; margin: 0 0 .4rem; }
.flow__node p { color: var(--ink-500); font-size: .94rem; line-height: 1.55; max-width: 30ch; }
.flow__outcome { display: flex; justify-content: center; margin-top: 2.5rem; }
.flow__badge { display: inline-flex; align-items: center; gap: .5rem; background: var(--money-bg); color: var(--money-ink); border: 1px solid rgba(36,161,72,.28); border-radius: 999px; padding: .65rem 1.2rem; font-weight: 600; font-size: .95rem; }
.flow__badge svg { width: 18px; height: 18px; fill: none; stroke: currentColor; stroke-width: 2.2; stroke-linecap: round; stroke-linejoin: round; }
.secure__foot { display: flex; flex-wrap: wrap; gap: 1rem 1.5rem; align-items: center; justify-content: center; margin-top: 2.75rem; color: var(--ink-500); font-size: .92rem; }
.wa-chip { display: inline-flex; align-items: center; gap: .55rem; padding: .6rem 1rem; border-radius: 999px; background: var(--money-bg); border: 1px solid rgba(36,161,72,.28); color: var(--money-ink); font-weight: 600; font-size: .9rem; }
.wa-chip .img, .wa-chip svg { width: 18px; height: 18px; }
@media (max-width: 700px) {
    .flow__rail { top: 6%; bottom: 12%; left: 28px; right: auto; width: 2px; height: auto; }
    .flow__pulse { inset: 0 0 auto 0; width: 100%; height: 26%; background: linear-gradient(180deg, transparent, var(--money), transparent); animation: flowpulseV 3.2s cubic-bezier(.4,0,.2,1) infinite; }
    .flow__nodes { grid-template-columns: 1fr; gap: 1.9rem; }
    .flow__node { flex-direction: row; align-items: flex-start; text-align: left; gap: 1.15rem; }
    .flow__dot { margin-bottom: 0; flex-shrink: 0; width: 56px; height: 56px; }
    .flow__dot svg { width: 22px; height: 22px; }
    .flow__node p { max-width: none; }
    .flow__outcome { justify-content: flex-start; padding-left: 6px; }
}
@keyframes flowpulseV { 0% { transform: translateY(-130%); } 100% { transform: translateY(460%); } }

/* ---- proof band ------------------------------------------------------- */
.proof { display: grid; gap: clamp(1.5rem, 4vw, 3rem); align-items: center; }
@media (min-width: 820px) { .proof { grid-template-columns: .9fr 1.1fr; } }
.proof__copy .section__title { margin-bottom: .75rem; }
.proof__copy p { color: var(--ink-500); font-size: 1.05rem; }
.alert { max-width: 420px; margin-inline: auto; background: var(--paper-50); border: 1px solid var(--line); border-radius: var(--r-lg); padding: 1.2rem 1.3rem; box-shadow: var(--shadow-float); }
.alert__head { display: flex; align-items: center; gap: .7rem; }
.alert__bank { width: 34px; height: 34px; border-radius: 9px; background: var(--ink); color: #fff; display: grid; place-items: center; font-family: var(--font-display); font-weight: 700; font-size: .8rem; }
.alert__meta { font-size: .8rem; color: var(--ink-500); }
.alert__name { font-weight: 600; font-size: .92rem; }
.alert__amt { font-family: var(--font-display); font-weight: 700; font-variant-numeric: tabular-nums; font-size: clamp(1.8rem, 5vw, 2.4rem); color: var(--money-ink); margin-top: .9rem; letter-spacing: -.02em; }
.alert__amt--ok { display: inline-flex; align-items: center; gap: .5rem; font-size: 1.5rem; }
.alert__line { font-size: .88rem; color: var(--ink-500); margin-top: .3rem; }
.alert__tag { display: inline-block; margin-top: .3rem; font-size: .7rem; letter-spacing: .1em; text-transform: uppercase; color: var(--ink-500); }

/* ---- FAQ -------------------------------------------------------------- */
.faq { border-top: 1px solid var(--line); }
.faq__item { border-bottom: 1px solid var(--line); }
.faq__q { list-style: none; cursor: pointer; font-family: var(--font-display); font-weight: 700; font-size: 1.05rem; letter-spacing: -.01em; padding: 1.3rem 2.5rem 1.3rem 0; position: relative; }
.faq__q::-webkit-details-marker { display: none; }
.faq__q::after { content: "+"; position: absolute; right: .25rem; top: 50%; transform: translateY(-50%); font-family: var(--font-sans); font-size: 1.6rem; font-weight: 300; color: var(--ink-500); transition: transform .2s var(--ease); }
.faq__item[open] .faq__q::after { content: "−"; }
.faq__a { color: var(--ink-500); padding-bottom: 1.35rem; max-width: 68ch; line-height: 1.65; }

/* ---- final CTA (dark wallet motif) ----------------------------------- */
.finalcta { text-align: center; }
.finalcta__card { position: relative; max-width: 900px; margin-inline: auto; border-radius: var(--r-xl); background: linear-gradient(158deg, #202024, #0d0d0f 70%); border: 1px solid rgba(255,255,255,.09); box-shadow: var(--shadow-card-dark); padding: clamp(2.5rem, 6vw, 4.5rem) clamp(1.5rem, 5vw, 3rem); overflow: hidden; }
.finalcta__card::after { content: ""; position: absolute; inset: 0; background: var(--grain); opacity: .06; mix-blend-mode: overlay; pointer-events: none; }
.finalcta__mark { width: 52px; height: 52px; margin: 0 auto 1.25rem; position: relative; z-index: 1; }
.finalcta__title { position: relative; z-index: 1; font-family: var(--font-display); font-weight: 700; letter-spacing: -.03em; color: #fff; font-size: clamp(1.9rem, 5vw, 3rem); max-width: 18ch; margin-inline: auto; }
.finalcta__sub { position: relative; z-index: 1; color: rgba(255,255,255,.6); margin-top: .9rem; }
.finalcta .store-badges { position: relative; z-index: 1; justify-content: center; margin-top: 1.75rem; }
.finalcta__micro { position: relative; z-index: 1; margin-top: 1.1rem; color: rgba(255,255,255,.5); font-size: .88rem; }

/* ---- footer ----------------------------------------------------------- */
.site-footer { background: var(--ink-900); color: rgba(255,255,255,.55); padding-block: clamp(3rem, 6vw, 4rem) 1.75rem; }
.site-footer__inner { display: grid; gap: 2.25rem; grid-template-columns: 1fr; }
@media (min-width: 780px) { .site-footer__inner { grid-template-columns: 2fr 1fr 1fr 1fr; gap: 2.5rem; } }
.site-footer .site-footer__logo { height: 22px; width: auto; filter: invert(1) brightness(2.2); }
.site-footer__tagline { margin-top: 1rem; max-width: 32ch; color: rgba(255,255,255,.5); font-size: .95rem; }
.site-footer__legit { margin-top: 1rem; font-size: .82rem; color: rgba(255,255,255,.4); line-height: 1.7; }
.site-footer__col { display: flex; flex-direction: column; gap: .65rem; }
.site-footer__heading { font-size: .72rem; text-transform: uppercase; letter-spacing: .12em; color: rgba(255,255,255,.4); font-weight: 700; margin-bottom: .35rem; }
.site-footer__col a { color: rgba(255,255,255,.68); font-size: .94rem; transition: color .2s var(--ease); }
.site-footer__col a:hover { color: #fff; }
.site-footer__legal { margin-top: 2.5rem; padding-top: 1.5rem; border-top: 1px solid rgba(255,255,255,.1); color: rgba(255,255,255,.4); font-size: .86rem; }
.site-footer__disclaimer { max-width: 70ch; margin-bottom: 1rem; color: rgba(255,255,255,.34); line-height: 1.6; }
.site-footer__powered { margin-top: .5rem; color: rgba(255,255,255,.3); font-size: .8rem; letter-spacing: .02em; }

/* ---- legal pages ------------------------------------------------------ */
.legal { padding-block: clamp(6rem, 12vw, 8rem) clamp(3rem, 7vw, 4.5rem); }
.legal h1 { font-family: var(--font-display); font-weight: 700; letter-spacing: -.03em; font-size: clamp(2rem, 5vw, 2.8rem); }
.legal h2 { font-family: var(--font-display); font-weight: 700; font-size: 1.25rem; margin-top: 2.4rem; margin-bottom: .5rem; }
.legal p { color: #333; margin-top: .5rem; }
.legal__updated { color: var(--ink-500); font-size: .95rem; margin-top: .6rem; }
.legal__note { background: var(--paper-50); border: 1px solid var(--line); color: var(--ink-500); border-radius: var(--r-sm); padding: .85rem 1.05rem; font-size: .9rem; margin-top: 1.25rem; }
.legal__back { margin-top: 2.5rem; padding-top: 1.5rem; border-top: 1px solid var(--line); }
.legal a[href^="mailto"], .legal__back a { color: var(--ink); font-weight: 600; }

/* ---- image + skeleton ------------------------------------------------- */
.img { display: block; height: auto; }
.img-skeleton { display: block; position: relative; overflow: hidden; width: 100%; background: #ecebe6; border-radius: var(--r-sm); min-height: 44px; }
.img-skeleton::after { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, transparent, #f6f4ef, transparent); transform: translateX(-100%); animation: shimmer 1.6s infinite; }
.img-skeleton__label { position: absolute; inset: 0; display: grid; place-items: center; padding: .5rem; text-align: center; font-size: .8rem; font-weight: 600; color: var(--ink-500); z-index: 1; }
@keyframes shimmer { 100% { transform: translateX(100%); } }

/* ---- scroll reveal (progressive: only hides when JS is present) ------- */
.js .reveal { opacity: 0; transform: translateY(26px); transition: opacity .8s var(--ease), transform .8s var(--ease); will-change: opacity, transform; }
.js .reveal.is-in { opacity: 1; transform: none; }
/* group children fade via opacity only, so tilt transforms are preserved */
.js .reveal-group > * { opacity: 0; transition: opacity .75s var(--ease); }
.js .reveal-group.is-in > * { opacity: 1; }
.js .reveal-group.is-in > *:nth-child(2) { transition-delay: .08s; }
.js .reveal-group.is-in > *:nth-child(3) { transition-delay: .16s; }
.js .reveal-group.is-in > *:nth-child(4) { transition-delay: .24s; }
.js .reveal-group.is-in > *:nth-child(5) { transition-delay: .32s; }
.js .reveal-group.is-in > *:nth-child(6) { transition-delay: .40s; }
/* parallax + scroll-progress */
[data-parallax] { transform: translate3d(0, var(--py, 0px), 0); }
.scroll-progress { position: fixed; top: 0; left: 0; right: 0; height: 3px; background: var(--money); transform: scaleX(0); transform-origin: 0 50%; z-index: 200; pointer-events: none; }

@media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
    .marquee__track { animation: none; }
    .flow__pulse { animation: none; opacity: .5; }
    .img-skeleton::after { animation: none; }
    .js .reveal, .js .reveal.is-in,
    .js .reveal-group > *, .js .reveal-group.is-in > * { opacity: 1 !important; transform: none !important; transition: none !important; }
    .wallet--hero { transform: none; }
    [data-parallax] { transform: none !important; }
    .scroll-progress { display: none; }
    .btn, .store-btn, .step, .shot { transition: none; }
}
