/* ═══════════════════════════════════════════════════════════
   ASSETVENTO — EDITORIAL FINTECH
   Designed for clarity, sophistication, and quiet confidence.
═══════════════════════════════════════════════════════════ */

/* ───── DESIGN TOKENS ───── */
:root {
    /* Foundation */
    --ink:        #0a0a0a;
    --charcoal:   #1c1c1c;
    --slate:      #2c2c2c;
    --cream:      #f5f0e6;
    --paper:      #faf6ed;
    --warm:       #fdfaf3;

    /* Accents (used sparingly) */
    --crimson:    #f97316;
    --crimson-dk: #bd4e12;
    --gold:       #b8860b;
    --forest:     #14543d;

    /* Semantic */
    --pos:        #15803d;
    --neg:        #b91c1c;

    /* Text on cream */
    --tx-ink:     #0a0a0a;
    --tx-mut:     #525252;
    --tx-soft:    #737373;
    --tx-faint:   #a3a3a3;

    /* Text on ink */
    --tx-cream:   #f5f0e6;
    --tx-cream-m: #a3a3a3;
    --tx-cream-s: #737373;

    /* Borders */
    --br-ink:     rgba(10,10,10,0.10);
    --br-ink-2:   rgba(10,10,10,0.18);
    --br-cm:      rgba(245,240,230,0.12);
    --br-cm-2:    rgba(245,240,230,0.22);

    /* Type */
    --f-disp:  'Fraunces', 'Times New Roman', Georgia, serif;
    --f-sans:  'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --f-mono:  'JetBrains Mono', 'SF Mono', Consolas, monospace;

    /* Spacing */
    --s-1: 4px;   --s-2: 8px;   --s-3: 12px;  --s-4: 16px;
    --s-5: 24px;  --s-6: 32px;  --s-7: 48px;  --s-8: 64px;
    --s-9: 96px;  --s-10: 128px; --s-11: 160px;

    /* Easing */
    --ease:   cubic-bezier(0.16, 1, 0.3, 1);
    --ease-2: cubic-bezier(0.7, 0, 0.3, 1);

    /* Z */
    --z-nav: 200;
    --z-modal: 400;
}

/* ───── CURSOR (custom) ───── */
.av-cursor, .av-cursor-follow {
    position: fixed;
    top: 0; left: 0;
    pointer-events: none;
    z-index: 9999;
    border-radius: 50%;
    will-change: transform;
    mix-blend-mode: difference;
}
.av-cursor {
    width: 6px; height: 6px;
    background: #faf6ed;
    margin: -3px 0 0 -3px;
    transition: transform 0.15s var(--ease), opacity 0.3s var(--ease);
}
.av-cursor-follow {
    width: 36px; height: 36px;
    border: 1px solid rgba(250,246,237,0.5);
    margin: -18px 0 0 -18px;
    transition: width 0.4s var(--ease), height 0.4s var(--ease), margin 0.4s var(--ease), border-color 0.4s var(--ease);
}
.av-cursor.hover { transform: translate3d(var(--mx,0px), var(--my,0px), 0) scale(0); }
.av-cursor-follow.hover {
    width: 64px; height: 64px;
    margin: -32px 0 0 -32px;
    border-color: rgba(250,246,237,0.95);
}
.av-cursor-follow.cta {
    width: 84px; height: 84px;
    margin: -42px 0 0 -42px;
    border-width: 1.5px;
}
@media (hover: none), (pointer: coarse) {
    .av-cursor, .av-cursor-follow { display: none !important; }
}

/* Hide default cursor on interactive elements when custom cursor active */
body.av-cursor-on { cursor: none; }
body.av-cursor-on a, body.av-cursor-on button { cursor: none; }

/* ───── LINE-MASK reveal (proper, HTML-safe) ───── */
.line-mask {
    display: block;
    overflow: hidden;
    padding-bottom: 0.08em;
}
.line-inner {
    display: block;
    will-change: transform;
}
/* When JS is present, hide line-inner before GSAP animates them in.
   GSAP's gsap.set() then takes over with inline styles. */
.js-ready .line-inner {
    transform: translateY(110%);
}

/* ───── MAGNETIC ───── */
[data-magnetic] {
    will-change: transform;
}

/* ───── PINNED WEALTH GROWTH SCENE ───── */
.pin-scene {
    background: var(--ink);
    color: var(--cream);
    position: relative;
    overflow: hidden;
}
.pin-stage {
    position: relative;
    height: 100vh;
    min-height: 720px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto 1fr auto;
    padding: 100px 64px 80px;
    gap: 0;
}
.pin-grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(245,240,230,0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(245,240,230,0.04) 1px, transparent 1px);
    background-size: 80px 80px;
    mask-image: radial-gradient(ellipse at 70% 50%, black 20%, transparent 75%);
    -webkit-mask-image: radial-gradient(ellipse at 70% 50%, black 20%, transparent 75%);
    pointer-events: none;
}
.pin-eyebrow {
    grid-column: 1 / 2;
    grid-row: 1 / 2;
    position: relative;
    z-index: 2;
}
.pin-headline {
    grid-column: 1 / 2;
    grid-row: 2 / 3;
    align-self: end;
    position: relative;
    z-index: 2;
    max-width: 580px;
}
.pin-headline h2 {
    font-size: clamp(2.5rem, 6vw, 5.5rem);
    line-height: 0.98;
    margin-bottom: 24px;
    color: var(--cream);
}
.pin-headline h2 em {
    font-style: italic;
    font-weight: 300;
    color: var(--crimson);
}
.pin-headline p {
    font-size: 1.0625rem;
    color: var(--tx-cream-m);
    line-height: 1.55;
    max-width: 420px;
}

.pin-counter-wrap {
    grid-column: 2 / 3;
    grid-row: 1 / 3;
    align-self: center;
    justify-self: end;
    text-align: right;
    position: relative;
    z-index: 2;
    padding-right: 0;
}
.pin-counter-label {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    color: var(--tx-cream-m);
    margin-bottom: 24px;
}
.pin-counter {
    font-family: var(--f-disp);
    font-size: clamp(4rem, 11vw, 11rem);
    font-weight: 300;
    line-height: 1;
    letter-spacing: -0.05em;
    color: var(--cream);
    font-variant-numeric: tabular-nums;
    margin-bottom: 16px;
}
.pin-counter-meta {
    font-size: 0.9375rem;
    color: var(--tx-cream-m);
}
.pin-counter-pct {
    color: var(--pos);
    font-weight: 600;
    font-family: var(--f-mono);
    margin-right: 8px;
}

.pin-curve {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 320px;
    pointer-events: none;
    z-index: 1;
}
.pin-curve svg {
    width: 100%;
    height: 100%;
}

.pin-slides {
    grid-column: 1 / 3;
    grid-row: 3 / 4;
    position: relative;
    z-index: 2;
    height: 120px;
}
.pin-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transform: translateY(20px);
    display: flex;
    align-items: center;
    gap: 32px;
    padding-top: 32px;
    border-top: 1px solid var(--br-cm);
    transition: opacity 0.6s var(--ease), transform 0.6s var(--ease);
}
.pin-slide.active { opacity: 1; transform: translateY(0); }
.pin-slide-mark {
    font-family: var(--f-disp);
    font-style: italic;
    font-size: 1.5rem;
    color: var(--crimson);
    flex-shrink: 0;
}
.pin-slide-yr {
    font-family: var(--f-disp);
    font-size: 1.25rem;
    font-weight: 400;
    color: var(--cream);
    flex-shrink: 0;
    min-width: 130px;
}
.pin-slide p {
    font-size: 1rem;
    color: var(--tx-cream-m);
    line-height: 1.5;
    max-width: 600px;
}
.pin-slide p em {
    font-family: var(--f-disp);
    font-style: italic;
    color: var(--cream);
    font-weight: 300;
}

@media (max-width: 1024px) {
    .pin-stage {
        grid-template-columns: 1fr;
        grid-template-rows: auto auto auto auto;
        align-content: center;
        gap: 24px 0;
        padding: 40px 24px 48px;
    }
    .pin-eyebrow { grid-row: 1; }
    .pin-headline { grid-row: 2; align-self: start; }
    .pin-headline h2 { margin-bottom: 12px; }
    .pin-counter-wrap { grid-column: 1; grid-row: 3; text-align: left; justify-self: start; padding-top: 0; }
    .pin-counter-label { margin-bottom: 10px; }
    .pin-slides { grid-row: 4; grid-column: 1; height: 140px; }
    .pin-curve { height: 180px; opacity: 0.4; }
}
@media (max-width: 720px) {
    .pin-stage { padding: 32px 20px 40px; gap: 20px 0; min-height: auto; align-content: center; }
    .pin-counter { font-size: clamp(2.8rem, 13vw, 4.5rem); }
    .pin-headline h2 { font-size: clamp(2rem, 9vw, 3.2rem); }
    .pin-slide { gap: 12px; flex-wrap: wrap; padding-top: 16px; }
    .pin-slide-yr { font-size: 1rem; min-width: auto; }
    .pin-slide p { font-size: 0.875rem; flex-basis: 100%; }
}

/* ───── SECURITY ORBIT CANVAS ───── */
.security { position: relative; }
.security-orbit {
    position: absolute;
    top: 0; right: 0;
    width: 50%;
    height: 100%;
    z-index: 1;
    opacity: 0.85;
    pointer-events: none;
}
.security .container { position: relative; z-index: 3; }
@media (max-width: 1024px) {
    .security-orbit { display: none; }
}

/* ───── RESET ───── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html {
    font-size: 16px;
    -webkit-text-size-adjust: 100%;
    background: var(--cream);
    /* Lenis sets scroll-behavior */
}
body {
    font-family: var(--f-sans);
    background: var(--cream);
    color: var(--tx-ink);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    font-feature-settings: "ss01", "cv11";
}
::selection { background: var(--ink); color: var(--cream); }
img, video { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: none; background: none; color: inherit; }
ul, ol { list-style: none; }

/* Lenis smooth scroll */
html.lenis { height: auto; }
.lenis.lenis-smooth { scroll-behavior: auto !important; }
.lenis.lenis-smooth [data-lenis-prevent] { overscroll-behavior: contain; }
.lenis.lenis-stopped { overflow: hidden; }

/* ───── TYPOGRAPHY ───── */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--f-disp);
    font-weight: 400;
    line-height: 1.05;
    letter-spacing: -0.025em;
    color: inherit;
    font-variation-settings: "SOFT" 50, "WONK" 0, "opsz" 144;
}
h1 { font-size: clamp(2.75rem, 8vw, 7rem); }
h2 { font-size: clamp(2rem, 5vw, 4.5rem); }
h3 { font-size: clamp(1.5rem, 3vw, 2.5rem); }
h4 { font-size: clamp(1.25rem, 2vw, 1.75rem); font-weight: 500; }

p { font-family: var(--f-sans); }

.italic-serif { font-family: var(--f-disp); font-style: italic; font-weight: 400; }

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: var(--f-sans);
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--tx-mut);
}
.eyebrow::before {
    content: '';
    width: 28px; height: 1px;
    background: currentColor;
    opacity: 0.5;
}
.eyebrow.no-line::before { display: none; }
.eyebrow.on-ink { color: var(--tx-cream-m); }

/* ───── LAYOUT ───── */
.container {
    width: 100%;
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 32px;
}
.container-narrow { max-width: 1100px; margin: 0 auto; padding: 0 32px; }
.container-wide   { max-width: 1680px; margin: 0 auto; padding: 0 32px; }

.section { padding: var(--s-11) 0; position: relative; }
.section-tight { padding: var(--s-9) 0; position: relative; }

.bg-ink   { background: var(--ink);   color: var(--tx-cream); }
.bg-paper { background: var(--paper); color: var(--tx-ink); }
.bg-cream { background: var(--cream); color: var(--tx-ink); }

.divider {
    height: 1px;
    background: var(--br-ink);
}
.bg-ink .divider { background: var(--br-cm); }

/* ───── BUTTONS ───── */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 16px 28px;
    font-family: var(--f-sans);
    font-size: 0.9375rem;
    font-weight: 500;
    letter-spacing: -0.005em;
    border-radius: 100px;
    transition: transform 0.6s var(--ease), background 0.4s var(--ease), color 0.4s var(--ease), border-color 0.4s var(--ease);
    position: relative;
    overflow: hidden;
    cursor: pointer;
    white-space: nowrap;
    border: 1px solid transparent;
}
.btn-lg { padding: 20px 36px; font-size: 1rem; }
.btn-sm { padding: 10px 18px; font-size: 0.875rem; }

.btn-ink {
    background: var(--ink);
    color: var(--cream);
}
.btn-ink:hover { background: var(--charcoal); transform: translateY(-2px); }

.btn-cream {
    background: var(--cream);
    color: var(--ink);
}
.btn-cream:hover { background: var(--warm); transform: translateY(-2px); }

.btn-outline-ink {
    background: transparent;
    color: var(--ink);
    border-color: var(--br-ink-2);
}
.btn-outline-ink:hover {
    background: var(--ink);
    color: var(--cream);
    border-color: var(--ink);
}

.btn-outline-cream {
    background: transparent;
    color: var(--cream);
    border-color: var(--br-cm-2);
}
.btn-outline-cream:hover {
    background: var(--cream);
    color: var(--ink);
    border-color: var(--cream);
}

.btn-arrow svg {
    width: 16px; height: 16px;
    transition: transform 0.4s var(--ease);
}
.btn-arrow:hover svg { transform: translateX(4px); }

/* Magnetic CTA - oversized */
.btn-magnet {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    padding: 24px 40px;
    border-radius: 100px;
    font-size: 1.0625rem;
    font-weight: 500;
}

/* ───── REVEAL UTILITIES ───── */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 1s var(--ease), transform 1s var(--ease);
}
.reveal.in { opacity: 1; transform: translateY(0); }

.split-line { overflow: hidden; display: block; }
.split-word { display: inline-block; overflow: hidden; }
.split-word > span { display: inline-block; transform: translateY(110%); transition: transform 0.9s var(--ease); }
.in .split-word > span,
.split-word.in > span { transform: translateY(0); }

/* ═══════════════════════════════════════════════
   NAVIGATION
═══════════════════════════════════════════════ */
.nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: var(--z-nav);
    padding: 22px 0;
    transition: background 0.5s var(--ease), backdrop-filter 0.5s var(--ease), padding 0.4s var(--ease);
}
.nav .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.nav.dark { color: var(--cream); }
.nav.light { color: var(--ink); }
.nav.scrolled {
    padding: 14px 0;
    background: rgba(245,240,230,0.92);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    color: var(--ink);
    border-bottom: 1px solid var(--br-ink);
}
/* Flip button styles when nav is on cream (scrolled) background */
.nav.scrolled .btn-outline-cream {
    border-color: var(--ink);
    color: var(--ink);
}
.nav.scrolled .btn-outline-cream:hover {
    background: var(--ink);
    color: var(--cream);
}
.nav.scrolled .btn-cream {
    background: var(--ink);
    color: var(--cream);
}
.nav.scrolled .btn-cream:hover {
    background: var(--charcoal);
}

.nav-logo {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: var(--f-disp);
    font-size: 1.5rem;
    font-weight: 500;
    letter-spacing: -0.03em;
    color: inherit;
}
.nav-logo svg {
    width: 30px; height: 30px;
}
.nav-logo .dot {
    color: var(--crimson);
    font-family: var(--f-disp);
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 36px;
}
.nav-menu a {
    font-size: 0.9375rem;
    font-weight: 500;
    color: inherit;
    opacity: 0.85;
    position: relative;
    transition: opacity 0.3s var(--ease);
}
.nav-menu a:hover { opacity: 1; }
.nav-menu a::after {
    content: '';
    position: absolute;
    left: 0; bottom: -6px;
    width: 100%; height: 1px;
    background: currentColor;
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.4s var(--ease);
}
.nav-menu a:hover::after {
    transform: scaleX(1);
    transform-origin: left;
}

.nav-actions { display: flex; align-items: center; gap: 14px; }

.nav-toggle {
    display: none;
    width: 44px; height: 44px;
    align-items: center; justify-content: center;
    border: 1px solid currentColor;
    border-radius: 100px;
    color: inherit;
    transition: all 0.3s var(--ease);
}

/* Mobile menu */
.mobile-menu {
    display: none;
    position: fixed;
    inset: 0;
    background: var(--ink);
    color: var(--cream);
    z-index: var(--z-modal);
    padding: 20px 24px 28px;
    flex-direction: column;
    overflow-y: auto;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s var(--ease), visibility 0.4s var(--ease);
}
.mobile-menu.open { opacity: 1; visibility: visible; }
.mobile-menu-head {
    display: flex; align-items: center; justify-content: space-between;
    margin-bottom: 24px;
    flex-shrink: 0;
}
.mobile-menu-close {
    width: 38px; height: 38px;
    border-radius: 100px; border: 1px solid var(--br-cm-2);
    display: flex; align-items: center; justify-content: center;
}
.mobile-nav-links { display: flex; flex-direction: column; gap: 0; }
.mobile-nav-links a {
    font-family: var(--f-disp);
    font-size: 1rem;
    font-weight: 400;
    color: var(--cream);
    padding: 10px 0;
    border-bottom: 1px solid var(--br-cm);
    letter-spacing: -0.01em;
}
.mobile-nav-actions { margin-top: 20px; display: flex; flex-direction: column; gap: 10px; flex-shrink: 0; }

/* ═══════════════════════════════════════════════
   HERO
═══════════════════════════════════════════════ */
.hero {
    position: relative;
    min-height: 100vh;
    background: var(--ink);
    color: var(--cream);
    overflow: hidden;
    display: flex;
    align-items: flex-end;
    padding: 200px 0 80px;
}
.hero-bg {
    position: absolute;
    inset: 0;
    overflow: hidden;
    z-index: 0;
}
.hero-bg img {
    width: 100%; height: 100%;
    object-fit: cover;
    object-position: center;
    transform: scale(1.05);
}
.hero-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg,
        rgba(10,10,10,0.45) 0%,
        rgba(10,10,10,0.55) 40%,
        rgba(10,10,10,0.85) 100%
    );
}
.hero .container {
    position: relative;
    z-index: 2;
    width: 100%;
}

.hero-meta {
    position: absolute;
    top: 140px; left: 32px; right: 32px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 2;
}
.hero-meta-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--tx-cream-m);
}
.hero-live-dot {
    width: 8px; height: 8px;
    background: var(--pos);
    border-radius: 50%;
    box-shadow: 0 0 0 0 rgba(21,128,61,0.6);
    animation: live-pulse 2s ease-out infinite;
}
@keyframes live-pulse {
    0%   { box-shadow: 0 0 0 0 rgba(21,128,61,0.6); }
    100% { box-shadow: 0 0 0 12px rgba(21,128,61,0); }
}

.hero-headline {
    font-family: var(--f-disp);
    font-size: clamp(3rem, 9vw, 8rem);
    line-height: 0.95;
    letter-spacing: -0.035em;
    font-weight: 400;
    margin-bottom: 40px;
    max-width: 1100px;
    color: var(--cream);
}
.hero-headline em {
    font-style: italic;
    font-weight: 300;
    color: var(--cream);
    opacity: 0.85;
}

.hero-bottom {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 80px;
    align-items: end;
    border-top: 1px solid var(--br-cm);
    padding-top: 36px;
}
.hero-lede {
    font-size: 1.125rem;
    line-height: 1.55;
    color: var(--tx-cream-m);
    max-width: 480px;
    font-weight: 400;
}
.hero-actions {
    display: flex;
    gap: 12px;
}

.hero-scroll {
    position: absolute;
    left: 32px;
    bottom: 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
    color: var(--tx-cream-m);
    font-size: 0.6875rem;
    font-weight: 500;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    z-index: 2;
}
.hero-scroll-line {
    width: 1px;
    height: 60px;
    background: var(--br-cm-2);
    position: relative;
    overflow: hidden;
}
.hero-scroll-line::after {
    content: '';
    position: absolute;
    top: -30px;
    left: 0;
    width: 100%;
    height: 30px;
    background: var(--cream);
    animation: scroll-fall 2.5s ease-in-out infinite;
}
@keyframes scroll-fall {
    0%   { top: -30px; }
    100% { top: 100%; }
}

/* Hero floating ticker */
.hero-ticker {
    position: absolute;
    right: 32px;
    bottom: 40px;
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px 20px;
    background: rgba(245,240,230,0.06);
    backdrop-filter: blur(12px);
    border: 1px solid var(--br-cm);
    border-radius: 100px;
}
.hero-ticker-coin {
    display: flex; align-items: center; gap: 8px;
    font-size: 0.875rem; font-weight: 500;
}
.hero-ticker-coin img { width: 20px; height: 20px; border-radius: 50%; }
.hero-ticker-price { color: var(--cream); }
.hero-ticker-change.pos { color: var(--pos); }
.hero-ticker-change.neg { color: var(--neg); }
.hero-ticker-divider { width: 1px; height: 18px; background: var(--br-cm); }

/* ═══════════════════════════════════════════════
   MARQUEE TRUST STRIP
═══════════════════════════════════════════════ */
.marquee-strip {
    background: var(--ink);
    color: var(--cream);
    padding: 28px 0;
    border-top: 1px solid var(--br-cm);
    border-bottom: 1px solid var(--br-cm);
    overflow: hidden;
    position: relative;
}
.marquee-track {
    display: flex;
    gap: 80px;
    align-items: center;
    white-space: nowrap;
    animation: marquee 40s linear infinite;
}
@keyframes marquee {
    0%   { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}
.marquee-item {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    font-family: var(--f-disp);
    font-size: 1.5rem;
    font-weight: 400;
    color: var(--tx-cream-m);
    letter-spacing: -0.02em;
}
.marquee-item span.italic-serif { color: var(--tx-cream); font-style: italic; }
.marquee-dot {
    width: 6px; height: 6px;
    background: var(--crimson);
    border-radius: 50%;
}

/* ═══════════════════════════════════════════════
   STATS — EDITORIAL SPREAD
═══════════════════════════════════════════════ */
.stats-spread {
    background: var(--paper);
    padding: var(--s-10) 0;
}
.stats-header {
    max-width: 720px;
    margin-bottom: 80px;
}
.stats-header h2 {
    font-size: clamp(2rem, 4.5vw, 3.75rem);
    margin: 16px 0 24px;
}
.stats-header p {
    font-size: 1.125rem;
    color: var(--tx-mut);
    max-width: 520px;
    line-height: 1.6;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 32px;
    border-top: 1px solid var(--br-ink);
    padding-top: 60px;
}
.stat-block {
    grid-column: span 3;
    border-right: 1px solid var(--br-ink);
    padding-right: 24px;
}
.stat-block:last-child { border-right: none; }
.stat-block-num {
    font-family: var(--f-disp);
    font-size: clamp(3rem, 5.5vw, 5rem);
    font-weight: 300;
    line-height: 1;
    letter-spacing: -0.04em;
    margin-bottom: 16px;
    display: flex;
    align-items: baseline;
    gap: 6px;
}
.stat-block-num em {
    font-style: italic;
    font-weight: 300;
    color: var(--crimson);
    font-size: 0.5em;
}
.stat-block-suffix {
    font-size: 0.5em;
    color: var(--tx-mut);
    font-weight: 400;
    font-style: normal;
}
.stat-block-label {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--tx-ink);
    margin-bottom: 6px;
}
.stat-block-meta {
    font-size: 0.8125rem;
    color: var(--tx-soft);
}

/* ═══════════════════════════════════════════════
   PRODUCT SHOWCASE — DARK
═══════════════════════════════════════════════ */
.showcase {
    background: var(--ink);
    color: var(--tx-cream);
    padding: var(--s-10) 0 var(--s-9);
    overflow: hidden;
    position: relative;
}
.showcase-head {
    text-align: center;
    max-width: 880px;
    margin: 0 auto 100px;
}
.showcase-head h2 {
    font-size: clamp(2.5rem, 5.5vw, 5rem);
    margin: 24px 0;
}
.showcase-head p {
    font-size: 1.125rem;
    color: var(--tx-cream-m);
    line-height: 1.6;
    max-width: 560px;
    margin: 0 auto;
}

.showcase-stage {
    position: relative;
    height: 720px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.showcase-phone {
    position: relative;
    width: 320px;
    z-index: 5;
    filter: drop-shadow(0 60px 80px rgba(0,0,0,0.55));
}
.showcase-phone-img {
    width: 100%;
    height: auto;
    display: block;
}
.showcase-phone-screen {
    width: 100%; height: 100%;
    border-radius: 36px;
    overflow: hidden;
    background: #f5f0e6;
    position: relative;
    padding: 28px 22px;
    color: #0a0a0a;
}
.showcase-phone-status {
    display: flex; justify-content: space-between;
    font-size: 0.7rem; font-weight: 600;
    margin-bottom: 18px;
    color: #0a0a0a;
}
.showcase-phone-greet {
    font-size: 0.7rem;
    color: #737373;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    margin-bottom: 4px;
}
.showcase-phone-name {
    font-family: var(--f-disp);
    font-size: 1.5rem;
    font-weight: 400;
    margin-bottom: 22px;
    letter-spacing: -0.02em;
}
.showcase-phone-balance {
    background: #0a0a0a;
    color: var(--cream);
    border-radius: 22px;
    padding: 22px;
    margin-bottom: 16px;
}
.showcase-phone-balance-label {
    font-size: 0.7rem; opacity: 0.7;
    text-transform: uppercase; letter-spacing: 0.12em;
    margin-bottom: 8px;
}
.showcase-phone-balance-value {
    font-family: var(--f-disp);
    font-size: 1.85rem;
    font-weight: 400;
    letter-spacing: -0.03em;
    margin-bottom: 4px;
}
.showcase-phone-balance-change {
    font-size: 0.75rem;
    color: #4ade80;
    font-weight: 500;
}
.showcase-phone-chart {
    background: #faf6ed;
    border: 1px solid rgba(0,0,0,0.06);
    border-radius: 18px;
    padding: 14px;
    height: 110px;
    margin-bottom: 16px;
}
.showcase-phone-chart svg { width: 100%; height: 100%; }
.showcase-phone-list {
    display: flex; flex-direction: column; gap: 10px;
}
.showcase-phone-coin {
    display: flex; align-items: center; gap: 12px;
    padding: 8px 4px;
}
.showcase-phone-coin-icon {
    width: 32px; height: 32px;
    border-radius: 50%;
    background: #ea580c;
    color: white;
    display: flex; align-items: center; justify-content: center;
    font-weight: 700;
    font-size: 0.75rem;
}
.showcase-phone-coin-info { flex: 1; }
.showcase-phone-coin-name { font-size: 0.8rem; font-weight: 600; }
.showcase-phone-coin-price { font-size: 0.7rem; color: #737373; margin-top: 1px; }
.showcase-phone-coin-pct { font-size: 0.75rem; font-weight: 600; color: #15803d; }
.showcase-phone-coin-pct.neg { color: #b91c1c; }

/* Floating cards behind phone */
.showcase-card {
    position: absolute;
    background: rgba(245,240,230,0.04);
    border: 1px solid var(--br-cm);
    border-radius: 20px;
    padding: 20px 24px;
    backdrop-filter: blur(12px);
    color: var(--cream);
    z-index: 2;
}
.showcase-card-1 {
    top: 60px; left: calc(50% - 470px);
    width: 240px;
}
.showcase-card-2 {
    bottom: 80px; left: calc(50% - 360px);
    width: 220px;
}
.showcase-card-3 {
    top: 100px; right: calc(50% - 470px);
    width: 250px;
}
.showcase-card-4 {
    bottom: 60px; right: calc(50% - 380px);
    width: 230px;
}
.showcase-card-label {
    font-size: 0.6875rem;
    color: var(--tx-cream-m);
    text-transform: uppercase;
    letter-spacing: 0.14em;
    margin-bottom: 8px;
}
.showcase-card-value {
    font-family: var(--f-disp);
    font-size: 1.6rem;
    font-weight: 400;
    letter-spacing: -0.02em;
    line-height: 1;
}
.showcase-card-meta {
    margin-top: 8px;
    font-size: 0.75rem;
    color: var(--pos);
}

/* ═══════════════════════════════════════════════
   FEATURE STORIES (alternating editorial sections)
═══════════════════════════════════════════════ */
.story {
    padding: var(--s-10) 0;
}
.story-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}
.story-grid.reverse .story-text { order: 2; }
.story-grid.reverse .story-visual { order: 1; }

.story-text { max-width: 540px; }
.story-text .eyebrow { margin-bottom: 28px; }
.story-text h2 {
    font-size: clamp(2.25rem, 4.5vw, 3.75rem);
    margin-bottom: 24px;
}
.story-text > p {
    font-size: 1.125rem;
    line-height: 1.65;
    color: var(--tx-mut);
    margin-bottom: 28px;
}
.bg-ink .story-text > p { color: var(--tx-cream-m); }

.story-list {
    display: flex; flex-direction: column;
    margin: 36px 0;
    border-top: 1px solid var(--br-ink);
}
.bg-ink .story-list { border-color: var(--br-cm); }
.story-list li {
    display: flex;
    align-items: flex-start;
    gap: 24px;
    padding: 22px 0;
    border-bottom: 1px solid var(--br-ink);
}
.bg-ink .story-list li { border-color: var(--br-cm); }
.story-list-num {
    font-family: var(--f-disp);
    font-style: italic;
    font-size: 1.1rem;
    color: var(--crimson);
    flex-shrink: 0;
    min-width: 32px;
}
.story-list-text { flex: 1; }
.story-list-text strong {
    display: block;
    font-weight: 600;
    font-size: 1rem;
    margin-bottom: 4px;
}
.story-list-text span {
    font-size: 0.9375rem;
    color: var(--tx-soft);
}
.bg-ink .story-list-text span { color: var(--tx-cream-m); }

.story-visual {
    position: relative;
    aspect-ratio: 4/5;
    overflow: hidden;
    border-radius: 4px;
}
.story-visual img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform 1.4s var(--ease);
}
.story-visual:hover img { transform: scale(1.04); }
.story-visual-tag {
    position: absolute;
    bottom: 24px; left: 24px; right: 24px;
    background: rgba(245,240,230,0.95);
    backdrop-filter: blur(20px);
    color: var(--ink);
    padding: 18px 22px;
    border-radius: 4px;
    font-family: var(--f-disp);
    font-style: italic;
    font-size: 1rem;
    line-height: 1.4;
}
.story-visual-tag span {
    display: block;
    font-family: var(--f-sans);
    font-style: normal;
    font-size: 0.75rem;
    color: var(--tx-mut);
    margin-top: 8px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

/* ═══════════════════════════════════════════════
   LIVE MARKETS
═══════════════════════════════════════════════ */
.markets {
    padding: var(--s-10) 0;
    background: var(--paper);
}
.markets-head {
    display: flex;
    justify-content: space-between;
    align-items: end;
    margin-bottom: 60px;
    gap: 40px;
}
.markets-head-text { max-width: 600px; }
.markets-head-text h2 { margin: 16px 0 0; }
.markets-meta {
    text-align: right;
    font-size: 0.8125rem;
    color: var(--tx-soft);
    line-height: 1.7;
}
.markets-meta strong { color: var(--ink); display: block; font-weight: 600; }

.markets-table {
    border-top: 1px solid var(--br-ink);
}
.markets-row {
    display: grid;
    grid-template-columns: 50px 2.5fr 1.5fr 1fr 1fr 1.5fr 1.2fr;
    gap: 24px;
    align-items: center;
    padding: 24px 16px;
    border-bottom: 1px solid var(--br-ink);
    transition: background 0.3s var(--ease), padding 0.3s var(--ease);
    cursor: pointer;
}
.markets-row:hover { background: rgba(10,10,10,0.025); padding-left: 24px; }
.markets-head-row {
    font-size: 0.6875rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    color: var(--tx-soft);
    padding: 16px;
    cursor: default;
}
.markets-head-row:hover { background: transparent; padding-left: 16px; }

.markets-rank {
    font-family: var(--f-disp);
    font-size: 1.25rem;
    color: var(--tx-soft);
    font-weight: 400;
}
.markets-coin {
    display: flex; align-items: center; gap: 14px;
}
.markets-coin img { width: 32px; height: 32px; border-radius: 50%; }
.markets-coin-name {
    font-family: var(--f-disp);
    font-size: 1.25rem;
    font-weight: 400;
    letter-spacing: -0.02em;
}
.markets-coin-sym {
    font-size: 0.75rem;
    color: var(--tx-soft);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-top: 2px;
}
.markets-price { font-weight: 500; font-size: 1rem; }
.markets-change { font-weight: 600; font-size: 0.9375rem; }
.markets-change.pos { color: var(--pos); }
.markets-change.neg { color: var(--neg); }
.markets-cap { font-size: 0.9375rem; color: var(--tx-mut); }
.markets-spark { width: 100%; height: 36px; }
.markets-spark svg { width: 100%; height: 100%; }
.markets-action {
    display: flex; justify-content: flex-end;
}
.markets-action .btn { padding: 10px 18px; font-size: 0.8125rem; }

/* ═══════════════════════════════════════════════
   HOW IT WORKS — DARK SECTION
═══════════════════════════════════════════════ */
.howit {
    background: var(--ink);
    color: var(--tx-cream);
    padding: var(--s-10) 0;
}
.howit-head {
    max-width: 880px;
    margin-bottom: 100px;
}
.howit-head h2 {
    margin: 24px 0;
    font-size: clamp(2.5rem, 5vw, 4.5rem);
}
.howit-head p {
    font-size: 1.125rem;
    color: var(--tx-cream-m);
    max-width: 540px;
}

.howit-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 60px;
}
.howit-step {
    border-top: 1px solid var(--br-cm-2);
    padding-top: 40px;
    position: relative;
}
.howit-step-num {
    font-family: var(--f-disp);
    font-size: 0.875rem;
    color: var(--crimson);
    margin-bottom: 30px;
    letter-spacing: 0.08em;
    font-style: italic;
}
.howit-step h3 {
    font-size: 2rem;
    font-weight: 400;
    margin-bottom: 20px;
    line-height: 1.1;
}
.howit-step p {
    font-size: 1rem;
    color: var(--tx-cream-m);
    line-height: 1.65;
    margin-bottom: 28px;
}
.howit-step-img {
    aspect-ratio: 4/3;
    border-radius: 4px;
    overflow: hidden;
    margin-top: 20px;
}
.howit-step-img img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform 1.2s var(--ease);
}
.howit-step:hover .howit-step-img img { transform: scale(1.05); }

/* ═══════════════════════════════════════════════
   PLANS — EDITORIAL PRICING
═══════════════════════════════════════════════ */
.plans {
    background: var(--paper);
    padding: var(--s-10) 0;
}
.plans-head {
    text-align: center;
    max-width: 720px;
    margin: 0 auto 80px;
}
.plans-head h2 { margin: 24px 0 16px; }
.plans-head p {
    font-size: 1.125rem;
    color: var(--tx-mut);
    max-width: 480px;
    margin: 0 auto;
}

.plans-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.plan {
    background: var(--warm);
    border: 1px solid var(--br-ink);
    border-radius: 8px;
    padding: 40px 36px;
    transition: transform 0.5s var(--ease), border-color 0.4s var(--ease);
    position: relative;
}
.plan:hover { transform: translateY(-4px); border-color: var(--br-ink-2); }
.plan.featured {
    background: var(--ink);
    color: var(--cream);
    border-color: var(--ink);
}
.plan-tag {
    display: inline-block;
    font-size: 0.6875rem;
    font-weight: 500;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--crimson);
    margin-bottom: 24px;
}
.plan.featured .plan-tag { color: var(--cream); opacity: 0.7; }
.plan-name {
    font-family: var(--f-disp);
    font-size: 2.25rem;
    font-weight: 400;
    line-height: 1;
    letter-spacing: -0.02em;
    margin-bottom: 14px;
}
.plan-desc {
    font-size: 0.9375rem;
    color: var(--tx-mut);
    margin-bottom: 32px;
    min-height: 48px;
    line-height: 1.5;
}
.plan.featured .plan-desc { color: var(--tx-cream-m); }
.plan-roi {
    display: flex; align-items: baseline; gap: 8px;
    padding: 24px 0;
    border-top: 1px solid var(--br-ink);
    border-bottom: 1px solid var(--br-ink);
    margin-bottom: 28px;
}
.plan.featured .plan-roi { border-color: var(--br-cm); }
.plan-roi-val {
    font-family: var(--f-disp);
    font-size: 4rem;
    font-weight: 300;
    line-height: 1;
    letter-spacing: -0.04em;
}
.plan-roi-pct { font-size: 1.25rem; opacity: 0.6; }
.plan-roi-lab { font-size: 0.875rem; color: var(--tx-soft); margin-left: auto; }
.plan.featured .plan-roi-lab { color: var(--tx-cream-m); }

.plan-feats { list-style: none; margin-bottom: 32px; }
.plan-feats li {
    display: flex; align-items: center;
    gap: 12px;
    padding: 10px 0;
    font-size: 0.9375rem;
}
.plan-feats li::before {
    content: '';
    width: 14px; height: 14px;
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'><polyline points='20 6 9 17 4 12'/></svg>");
    background-size: contain;
    background-repeat: no-repeat;
    flex-shrink: 0;
}
.plan-cta { width: 100%; }

/* ═══════════════════════════════════════════════
   TESTIMONIALS — EDITORIAL QUOTES
═══════════════════════════════════════════════ */
.testimonials {
    padding: var(--s-10) 0;
    background: var(--cream);
}
.testimonials-head {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: end;
    margin-bottom: 100px;
}
.testimonials-head h2 {
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    margin-top: 24px;
}
.testimonials-head-meta {
    font-size: 1rem;
    color: var(--tx-mut);
    line-height: 1.6;
    max-width: 460px;
    justify-self: end;
}
.testimonials-rate {
    display: flex; align-items: center; gap: 14px;
    margin-bottom: 16px;
}
.testimonials-rate-stars { display: flex; gap: 3px; color: var(--gold); }
.testimonials-rate-stars svg { width: 18px; height: 18px; fill: currentColor; }
.testimonials-rate-text { font-weight: 600; font-size: 0.9375rem; }
.testimonials-rate-text span { color: var(--tx-soft); font-weight: 400; }

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 32px;
}
.testimonial {
    background: var(--warm);
    border: 1px solid var(--br-ink);
    border-radius: 4px;
    padding: 40px;
    display: flex;
    flex-direction: column;
    transition: transform 0.6s var(--ease);
}
.testimonial:hover { transform: translateY(-6px); }
.testimonial-1, .testimonial-4 { grid-column: span 4; }
.testimonial-2 { grid-column: span 5; background: var(--ink); color: var(--cream); }
.testimonial-3 { grid-column: span 3; }
.testimonial-2 { border-color: var(--ink); }

.testimonial-stars {
    display: flex; gap: 4px;
    color: var(--gold);
    margin-bottom: 24px;
}
.testimonial-2 .testimonial-stars { color: var(--gold); }
.testimonial-stars svg { width: 16px; height: 16px; fill: currentColor; }

.testimonial-quote {
    font-family: var(--f-disp);
    font-size: 1.5rem;
    line-height: 1.35;
    letter-spacing: -0.015em;
    margin-bottom: 32px;
    flex: 1;
    font-weight: 400;
}
.testimonial-2 .testimonial-quote {
    font-size: 2rem;
    font-style: italic;
    font-weight: 300;
}
.testimonial-3 .testimonial-quote { font-size: 1.25rem; }
.testimonial-quote::before {
    content: '"';
    font-family: var(--f-disp);
    color: var(--crimson);
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 14px;
    border-top: 1px solid var(--br-ink);
    padding-top: 20px;
}
.testimonial-2 .testimonial-author { border-color: var(--br-cm); }
.testimonial-author img {
    width: 48px; height: 48px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--cream);
}
.testimonial-name { font-weight: 600; font-size: 0.9375rem; }
.testimonial-role { font-size: 0.8125rem; color: var(--tx-soft); margin-top: 2px; }
.testimonial-2 .testimonial-role { color: var(--tx-cream-m); }
.testimonial-profit {
    margin-left: auto;
    font-family: var(--f-disp);
    font-style: italic;
    color: var(--pos);
    font-size: 1.1rem;
}

/* ═══════════════════════════════════════════════
   SECURITY — IMAGE BACKGROUND
═══════════════════════════════════════════════ */
.security {
    position: relative;
    background: var(--ink);
    color: var(--tx-cream);
    padding: var(--s-11) 0;
    overflow: hidden;
}
.security-bg {
    position: absolute; inset: 0;
    z-index: 0;
    opacity: 0.18;
}
.security-bg img {
    width: 100%; height: 100%;
    object-fit: cover;
}
.security-bg::after {
    content: '';
    position: absolute; inset: 0;
    background: linear-gradient(180deg,
        rgba(10,10,10,0.6) 0%,
        rgba(10,10,10,0.92) 100%);
}
.security .container { position: relative; z-index: 2; }

.security-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 100px;
    align-items: center;
}
.security-text h2 {
    margin: 24px 0;
    font-size: clamp(2.5rem, 5vw, 4.5rem);
}
.security-text > p {
    font-size: 1.125rem;
    color: var(--tx-cream-m);
    line-height: 1.65;
    margin-bottom: 36px;
    max-width: 520px;
}

.security-points {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
}
.security-point {
    border-top: 1px solid var(--br-cm);
    padding-top: 20px;
}
.security-point-name {
    font-family: var(--f-disp);
    font-size: 1.25rem;
    font-weight: 400;
    margin-bottom: 8px;
    letter-spacing: -0.01em;
}
.security-point-desc {
    font-size: 0.9375rem;
    color: var(--tx-cream-m);
    line-height: 1.55;
}

/* ═══════════════════════════════════════════════
   CTA — CLOSING
═══════════════════════════════════════════════ */
.cta-final {
    padding: var(--s-11) 0;
    background: var(--paper);
    text-align: center;
    position: relative;
    overflow: hidden;
}
.cta-final-eyebrow {
    margin-bottom: 36px;
}
.cta-final-eyebrow .eyebrow {
    color: var(--tx-mut);
}
.cta-final h2 {
    font-size: clamp(3rem, 8vw, 7rem);
    line-height: 0.95;
    letter-spacing: -0.04em;
    margin: 0 auto 40px;
    max-width: 1100px;
}
.cta-final h2 em {
    font-style: italic;
    font-weight: 300;
    color: var(--crimson);
}
.cta-final p {
    font-size: 1.1875rem;
    color: var(--tx-mut);
    max-width: 560px;
    margin: 0 auto 60px;
    line-height: 1.55;
}
.cta-final-actions {
    display: flex;
    gap: 14px;
    justify-content: center;
    margin-bottom: 60px;
}
.cta-final-trust {
    display: inline-flex;
    align-items: center;
    gap: 28px;
    padding: 16px 28px;
    border-top: 1px solid var(--br-ink);
    border-bottom: 1px solid var(--br-ink);
    font-size: 0.8125rem;
    color: var(--tx-soft);
    letter-spacing: 0.06em;
    text-transform: uppercase;
}
.cta-final-trust strong {
    color: var(--ink);
    font-weight: 600;
}
.cta-final-trust span:not(:last-child)::after {
    content: '·';
    margin-left: 28px;
    opacity: 0.4;
}

/* ═══════════════════════════════════════════════
   FOOTER
═══════════════════════════════════════════════ */
.footer {
    background: var(--ink);
    color: var(--tx-cream);
    padding: var(--s-9) 0 var(--s-6);
}
.footer-top {
    display: grid;
    grid-template-columns: 1.5fr 2fr;
    gap: 80px;
    padding-bottom: 80px;
    border-bottom: 1px solid var(--br-cm);
    margin-bottom: 40px;
}
.footer-brand-block {
    max-width: 360px;
}
.footer-brand-block .nav-logo {
    color: var(--cream);
    font-size: 1.75rem;
    margin-bottom: 24px;
}
.footer-brand-block p {
    font-size: 1rem;
    color: var(--tx-cream-m);
    line-height: 1.6;
    margin-bottom: 28px;
}
.footer-social {
    display: flex; gap: 10px;
}
.footer-social a {
    width: 42px; height: 42px;
    border-radius: 100px;
    border: 1px solid var(--br-cm-2);
    display: flex; align-items: center; justify-content: center;
    color: var(--tx-cream);
    transition: all 0.3s var(--ease);
}
.footer-social a:hover {
    background: var(--cream);
    color: var(--ink);
    border-color: var(--cream);
}
.footer-social a svg { width: 16px; height: 16px; }

.footer-cols {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}
.footer-col h4 {
    font-family: var(--f-sans);
    font-size: 0.75rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    color: var(--tx-cream-m);
    margin-bottom: 24px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 12px; }
.footer-col a {
    font-size: 0.9375rem;
    color: var(--tx-cream);
    transition: color 0.3s var(--ease);
}
.footer-col a:hover { color: var(--crimson); }

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 24px;
    font-size: 0.8125rem;
    color: var(--tx-cream-m);
}
.footer-legal { display: flex; gap: 24px; }
.footer-legal a:hover { color: var(--cream); }

/* ═══════════════════════════════════════════════
   RESPONSIVE
═══════════════════════════════════════════════ */
@media (max-width: 1280px) {
    .stats-grid .stat-block { grid-column: span 6; }
    .stats-grid .stat-block:nth-child(2) { border-right: none; }
    .stats-grid .stat-block:nth-child(3),
    .stats-grid .stat-block:nth-child(4) { padding-top: 60px; border-top: 1px solid var(--br-ink); }
    .showcase-card { display: none; }
    .testimonial { grid-column: span 6 !important; }
}

@media (max-width: 1024px) {
    .container { padding: 0 24px; }
    .nav-menu { display: none; }
    .nav-actions { display: none; }
    .nav-toggle { display: flex; }
    .mobile-menu { display: flex; }

    .hero { padding: 160px 0 110px; align-items: flex-end; }
    .hero-bottom { grid-template-columns: 1fr; gap: 40px; align-items: start; }
    .hero-meta { top: 100px; flex-wrap: wrap; gap: 16px; }
    .hero-ticker { left: 24px; right: 24px; bottom: 20px; border-radius: 14px; justify-content: center; }
    .hero-scroll { display: none; }

    .stats-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
    .stats-grid .stat-block { grid-column: auto; border-right: none; padding-right: 0; padding-top: 0; border-top: none; }

    .story-grid { grid-template-columns: 1fr; gap: 60px; }
    .story-grid.reverse .story-text { order: 1; }
    .story-grid.reverse .story-visual { order: 2; }

    .markets-row {
        grid-template-columns: 30px 2fr 1fr 1fr 1fr;
        gap: 16px;
    }
    .markets-cap, .markets-spark { display: none; }

    .plans-grid { grid-template-columns: 1fr; }

    .testimonials-head { grid-template-columns: 1fr; gap: 40px; }
    .testimonials-head-meta { justify-self: start; }
    .testimonial { grid-column: span 12 !important; }

    .security-grid { grid-template-columns: 1fr; gap: 60px; }

    .footer-top { grid-template-columns: 1fr; gap: 60px; }

    .howit-grid { grid-template-columns: 1fr; gap: 48px; }

    .showcase-stage { height: auto; padding: 40px 0; }
}

@media (max-width: 720px) {
    .container { padding: 0 20px; }
    .section, .section-tight { padding: 80px 0; }
    .hero { padding: 120px 0 100px; }

    .hero-headline { font-size: clamp(2.4rem, 11vw, 4rem); }
    .hero-ticker { left: 16px; right: 16px; bottom: 16px; padding: 10px 14px; gap: 10px; }
    .hero-ticker-coin { font-size: 0.78rem; }
    .hero-actions { flex-direction: column; align-items: stretch; }
    .hero-actions .btn { width: 100%; }

    .stats-grid { grid-template-columns: 1fr; }
    .stats-spread, .markets, .plans { padding: 80px 0; }

    .markets-row { grid-template-columns: 24px 2fr 1fr 1fr; gap: 12px; padding: 18px 0; }
    .markets-action { display: none; }
    .markets-coin-name { font-size: 1rem; }
    .markets-rank { font-size: 0.875rem; }

    .footer-cols { grid-template-columns: 1fr 1fr; }
    .footer-bottom { flex-direction: column; gap: 16px; text-align: center; }

    .testimonials-grid { gap: 16px; }
    .testimonial { padding: 28px; }
    .testimonial-quote { font-size: 1.25rem; }
    .testimonial-2 .testimonial-quote { font-size: 1.5rem; }

    .cta-final-trust { flex-direction: column; gap: 12px; padding: 20px 24px; }
    .cta-final-trust span:not(:last-child)::after { display: none; }

    .showcase-phone { width: 260px; }

    .security-points { grid-template-columns: 1fr; }
}

/* ───── COOKIE CONSENT BANNER ───── */
.cookie-banner {
    position: fixed;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%) translateY(calc(100% + 60px));
    width: calc(100% - 48px);
    max-width: 820px;
    z-index: 9998;
    opacity: 0;
    pointer-events: none;
    transition: transform 0.7s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.5s ease;
}
.cookie-banner.cb-visible {
    transform: translateX(-50%) translateY(0);
    opacity: 1;
    pointer-events: all;
}
.cookie-banner.cb-dismissed {
    transform: translateX(-50%) translateY(calc(100% + 60px));
    opacity: 0;
    pointer-events: none;
    transition: transform 0.55s cubic-bezier(0.7, 0, 0.3, 1), opacity 0.4s ease;
}

.cookie-inner {
    display: flex;
    align-items: center;
    gap: 28px;
    padding: 28px 32px;
    background: var(--warm);
    border-radius: 28px;
    border: 1px solid rgba(184, 134, 11, 0.1);
    box-shadow:
        0 4px 6px rgba(0,0,0,0.04),
        0 12px 40px rgba(0,0,0,0.09),
        0 32px 80px rgba(0,0,0,0.10),
        inset 0 1px 0 rgba(255,255,255,0.9);
    position: relative;
    overflow: hidden;
}

/* Soft warm aurora glow — top-right decoration */
.cookie-inner::before {
    content: '';
    position: absolute;
    top: -60px; right: -60px;
    width: 220px; height: 220px;
    background: radial-gradient(circle at center,
        rgba(212, 175, 55, 0.18) 0%,
        rgba(251, 191, 36, 0.08) 40%,
        transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}
/* Soft blush glow — bottom-left */
.cookie-inner::after {
    content: '';
    position: absolute;
    bottom: -40px; left: -40px;
    width: 160px; height: 160px;
    background: radial-gradient(circle at center,
        rgba(249, 115, 22, 0.07) 0%,
        transparent 65%);
    border-radius: 50%;
    pointer-events: none;
}

.cookie-icon {
    flex-shrink: 0;
    width: 58px; height: 58px;
    border-radius: 18px;
    background: linear-gradient(145deg, #fff8e1 0%, #fdeab0 100%);
    border: 1px solid rgba(184, 134, 11, 0.15);
    box-shadow: 0 2px 8px rgba(184, 134, 11, 0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #a0720a;
    position: relative;
    z-index: 1;
}
.cookie-icon svg { width: 26px; height: 26px; }

.cookie-body {
    flex: 1;
    min-width: 0;
    position: relative;
    z-index: 1;
}

.cookie-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.62rem;
    font-weight: 700;
    letter-spacing: 0.11em;
    text-transform: uppercase;
    color: #7a5c0a;
    margin-bottom: 6px;
}
.cookie-eyebrow-dot {
    width: 5px; height: 5px;
    background: var(--pos);
    border-radius: 50%;
    animation: cb-blink 2.4s ease infinite;
}
@keyframes cb-blink {
    0%, 100% { opacity: 1; }
    50%       { opacity: 0.3; }
}

.cookie-title {
    font-family: var(--f-disp);
    font-size: 1.15rem;
    font-weight: 500;
    color: var(--ink);
    margin: 0 0 6px;
    line-height: 1.25;
}

.cookie-desc {
    font-size: 0.8rem;
    color: var(--tx-mut);
    line-height: 1.65;
    margin: 0 0 12px;
}

.cookie-links {
    display: flex;
    align-items: center;
    gap: 4px;
    flex-wrap: wrap;
}
.cookie-links a {
    font-size: 0.72rem;
    color: var(--tx-soft);
    text-decoration: underline;
    text-underline-offset: 2px;
    text-decoration-color: rgba(10,10,10,0.18);
    transition: color 0.2s, text-decoration-color 0.2s;
}
.cookie-links a:hover {
    color: var(--ink);
    text-decoration-color: rgba(10,10,10,0.5);
}
.cookie-links-sep {
    color: var(--tx-faint);
    font-size: 0.72rem;
    user-select: none;
}

.cookie-actions {
    display: flex;
    flex-direction: column;
    gap: 10px;
    flex-shrink: 0;
    min-width: 190px;
    position: relative;
    z-index: 1;
}

.cookie-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    white-space: nowrap;
    font-family: var(--f-sans);
    font-size: 0.82rem;
    font-weight: 600;
    border-radius: 100px;
    padding: 13px 24px;
    cursor: pointer;
    border: none;
    transition: all 0.24s var(--ease);
    line-height: 1;
    position: relative;
}

.cookie-btn-accept {
    background: var(--ink);
    color: var(--cream);
    box-shadow: 0 2px 8px rgba(10,10,10,0.18), 0 6px 20px rgba(10,10,10,0.14);
}
.cookie-btn-accept:hover {
    background: #1a1a1a;
    box-shadow: 0 4px 16px rgba(10,10,10,0.25), 0 10px 32px rgba(10,10,10,0.18);
    transform: translateY(-2px);
}
.cookie-btn-accept svg { width: 14px; height: 14px; opacity: 0.7; }

.cookie-btn-decline {
    background: transparent;
    color: var(--tx-soft);
    border: 1.5px solid rgba(10,10,10,0.13);
}
.cookie-btn-decline:hover {
    background: rgba(10,10,10,0.04);
    color: var(--ink);
    border-color: rgba(10,10,10,0.28);
}

.cookie-trust {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    font-size: 0.67rem;
    color: var(--tx-faint);
    padding-top: 2px;
}
.cookie-trust svg { width: 10px; height: 10px; flex-shrink: 0; color: var(--pos); }

@media (max-width: 780px) {
    .cookie-inner { gap: 20px; padding: 24px 24px; }
    .cookie-icon { width: 50px; height: 50px; border-radius: 15px; }
    .cookie-icon svg { width: 22px; height: 22px; }
}
@media (max-width: 580px) {
    .cookie-banner { bottom: 16px; width: calc(100% - 28px); }
    .cookie-inner { flex-direction: column; align-items: flex-start; padding: 22px 20px; gap: 16px; }
    .cookie-inner::before { top: -80px; right: -40px; }
    .cookie-icon { display: none; }
    .cookie-actions { flex-direction: row; width: 100%; }
    .cookie-btn { flex: 1; padding: 14px 12px; font-size: 0.8rem; }
    .cookie-trust { display: none; }
}

/* ───── PREVENT MOBILE INPUT AUTO-ZOOM ───── */
input, select, textarea {
    font-size: max(1rem, 16px) !important;
}
