/* ============================================================
   LedgerProof — Design System
   Dark, modern, energetic. Green accent.
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@500;600;700&family=Manrope:wght@400;500;600;700;800&family=JetBrains+Mono:wght@400;500;700&display=swap');

:root {
    /* Surfaces */
    --bg: #080b0f;
    --bg-1: #0d1117;
    --bg-2: #11161d;
    --bg-3: #161c25;
    --bg-elev: #1b222c;
    --border: rgba(255, 255, 255, 0.08);
    --border-strong: rgba(255, 255, 255, 0.14);

    /* Text */
    --text: #eef2f6;
    --text-2: #aeb9c5;
    --text-3: #768091;
    --text-faint: #4d5664;

    /* Brand */
    --green: #16c784;
    --green-bright: #2ce69b;
    --green-deep: #0e9c66;
    --teal: #11c7c0;
    --red: #ef4d56;
    --red-deep: #c0303a;
    --amber: #f7a13b;
    --blue: #4d8dff;
    --violet: #9b7bff;

    /* Glows / gradients */
    --grad-green: linear-gradient(135deg, #16c784 0%, #11c7c0 100%);
    --grad-green-soft: linear-gradient(135deg, rgba(22, 199, 132, 0.16) 0%, rgba(17, 199, 192, 0.10) 100%);

    /* Type */
    --font-head: 'Space Grotesk', system-ui, sans-serif;
    --font-body: 'Manrope', system-ui, sans-serif;
    --font-mono: 'JetBrains Mono', ui-monospace, monospace;

    /* Layout */
    --maxw: 1200px;
    --radius: 16px;
    --radius-sm: 10px;
    --radius-lg: 24px;
    --nav-h: 68px;

    /* Shadows */
    --shadow-card: 0 1px 0 rgba(255, 255, 255, 0.04) inset, 0 24px 48px -24px rgba(0, 0, 0, 0.7);
    --shadow-glow: 0 0 0 1px rgba(22, 199, 132, 0.25), 0 16px 50px -12px rgba(22, 199, 132, 0.35);
}

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

html {
    scroll-behavior: smooth;
    scroll-padding-top: 90px;
}

body {
    font-family: var(--font-body);
    background: var(--bg);
    color: var(--text);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
    overflow-x: hidden;
}

::selection {
    background: rgba(22, 199, 132, 0.3);
    color: #fff;
}

a {
    color: inherit;
    text-decoration: none;
}

img,
svg {
    display: block;
    max-width: 100%;
}

button {
    font-family: inherit;
    cursor: pointer;
    border: none;
    background: none;
    color: inherit;
}

/* ---------- Layout helpers ---------- */
.wrap {
    width: 100%;
    max-width: var(--maxw);
    margin: 0 auto;
    padding: 0 24px;
}

.wrap-wide {
    max-width: 1320px;
}

.section {
    padding: 110px 0;
    position: relative;
}

.section-sm {
    padding: 72px 0;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-mono);
    font-size: 12px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--green);
    font-weight: 500;
    padding: 7px 13px;
    white-space: nowrap;
    border: 1px solid rgba(22, 199, 132, 0.25);
    border-radius: 100px;
    background: rgba(22, 199, 132, 0.07);
}

.eyebrow .dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--green);
    box-shadow: 0 0 10px var(--green);
}

h1,
h2,
h3,
h4 {
    font-family: var(--font-head);
    font-weight: 600;
    line-height: 1.08;
    letter-spacing: -0.02em;
}

.h-display {
    font-size: clamp(40px, 6vw, 76px);
    font-weight: 700;
    letter-spacing: -0.035em;
}

.h1 {
    font-size: clamp(34px, 4.6vw, 56px);
}

.h2 {
    font-size: clamp(28px, 3.4vw, 44px);
}

.h3 {
    font-size: clamp(22px, 2.2vw, 28px);
}

.lead {
    font-size: clamp(17px, 1.5vw, 20px);
    color: var(--text-2);
    line-height: 1.6;
}

.muted {
    color: var(--text-3);
}

.mono {
    font-family: var(--font-mono);
}

.green {
    color: var(--green);
}

.red {
    color: var(--red);
}

.gradient-text {
    background: var(--grad-green);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
}

.section-head {
    max-width: 640px;
}

.section-head.center {
    margin: 0 auto;
    text-align: center;
}

.section-head .h2 {
    margin: 18px 0 14px;
}

/* ---------- Buttons ---------- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 15px;
    padding: 13px 22px;
    border-radius: 12px;
    transition: transform .18s ease, box-shadow .25s ease, background .2s ease, border-color .2s;
    white-space: nowrap;
}

.btn:active {
    transform: translateY(1px);
}

.btn-primary {
    background: var(--grad-green);
    color: #04130c;
    box-shadow: 0 8px 28px -8px rgba(22, 199, 132, 0.6);
}

.btn-primary:hover {
    box-shadow: 0 12px 36px -8px rgba(22, 199, 132, 0.85);
    transform: translateY(-2px);
}

.btn-ghost {
    background: rgba(255, 255, 255, 0.05);
    color: var(--text);
    border: 1px solid var(--border-strong);
}

.btn-ghost:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.25);
}

.btn-lg {
    padding: 16px 28px;
    font-size: 16px;
}

.btn svg {
    width: 18px;
    height: 18px;
}

/* ---------- Nav ---------- */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    height: var(--nav-h);
    display: flex;
    align-items: center;
    transition: background .3s, border-color .3s, backdrop-filter .3s;
    border-bottom: 1px solid transparent;
}

.nav.scrolled {
    background: rgba(8, 11, 15, 0.8);
    backdrop-filter: blur(18px) saturate(160%);
    -webkit-backdrop-filter: blur(18px) saturate(160%);
    border-bottom: 1px solid var(--border);
}

.nav .wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    max-width: 1320px;
}

.brand {
    display: flex;
    align-items: center;
    gap: 11px;
    font-family: var(--font-head);
    font-weight: 700;
    font-size: 19px;
    letter-spacing: -0.02em;
}

.brand .logo {
    width: 34px;
    height: 34px;
    flex: none;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 4px;
}

.nav-links a {
    font-size: 14.5px;
    font-weight: 600;
    color: var(--text-2);
    padding: 9px 14px;
    border-radius: 9px;
    transition: color .2s, background .2s;
}

.nav-links a:hover {
    color: var(--text);
    background: rgba(255, 255, 255, 0.05);
}

.nav-links a.active {
    color: var(--text);
}

.nav-cta {
    display: flex;
    align-items: center;
    gap: 12px;
}

.nav-burger {
    display: none;
    width: 42px;
    height: 42px;
    border-radius: 10px;
    border: 1px solid var(--border-strong);
    align-items: center;
    justify-content: center;
}

.nav-burger svg {
    width: 20px;
    height: 20px;
}

.mobile-menu {
    position: fixed;
    inset: var(--nav-h) 0 0 0;
    z-index: 99;
    background: rgba(8, 11, 15, 0.97);
    backdrop-filter: blur(20px);
    display: flex;
    flex-direction: column;
    gap: 6px;
    padding: 24px;
    transform: translateY(-12px);
    opacity: 0;
    pointer-events: none;
    transition: .25s;
}

.mobile-menu.open {
    transform: none;
    opacity: 1;
    pointer-events: auto;
}

.mobile-menu a {
    font-family: var(--font-head);
    font-size: 22px;
    font-weight: 600;
    padding: 14px 8px;
    border-bottom: 1px solid var(--border);
}

.mobile-menu .btn {
    margin-top: 18px;
}

/* ---------- Cards ---------- */
.card {
    background: var(--bg-2);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 28px;
    position: relative;
    transition: border-color .25s, transform .25s, background .25s;
}

.card:hover {
    border-color: var(--border-strong);
}

.card-hover:hover {
    transform: translateY(-4px);
    border-color: rgba(22, 199, 132, 0.3);
}

.feature-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--grad-green-soft);
    border: 1px solid rgba(22, 199, 132, 0.22);
    color: var(--green);
    margin-bottom: 18px;
}

.feature-icon svg {
    width: 24px;
    height: 24px;
}

.card h3 {
    font-size: 19px;
    margin-bottom: 9px;
}

.card p {
    color: var(--text-3);
    font-size: 15px;
}

/* ---------- Glow blobs ---------- */
.glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(120px);
    opacity: 0.5;
    pointer-events: none;
    z-index: 0;
}

.glow-green {
    background: radial-gradient(circle, rgba(22, 199, 132, 0.5), transparent 70%);
}

.glow-teal {
    background: radial-gradient(circle, rgba(17, 199, 192, 0.4), transparent 70%);
}

/* ---------- Ticker ---------- */
.ticker {
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    background: rgba(13, 17, 23, 0.6);
    overflow: hidden;
    position: relative;
}

.ticker::before,
.ticker::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 100px;
    z-index: 2;
    pointer-events: none;
}

.ticker::before {
    left: 0;
    background: linear-gradient(90deg, var(--bg), transparent);
}

.ticker::after {
    right: 0;
    background: linear-gradient(270deg, var(--bg), transparent);
}

.ticker-track {
    display: flex;
    gap: 0;
    width: max-content;
    animation: scroll-x 48s linear infinite;
}

.ticker:hover .ticker-track {
    animation-play-state: paused;
}

.ticker-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 16px 26px;
    border-right: 1px solid var(--border);
    white-space: nowrap;
}

.ticker-item .sym {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 700;
    font-size: 14px;
}

.ticker-item .coin-dot {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
    font-weight: 700;
    font-family: var(--font-mono);
}

.ticker-item .price {
    font-family: var(--font-mono);
    font-size: 14px;
    color: var(--text-2);
}

.ticker-item .chg {
    font-family: var(--font-mono);
    font-size: 13px;
    font-weight: 500;
}

.chg.up {
    color: var(--green);
}

.chg.down {
    color: var(--red);
}

@keyframes scroll-x {
    to {
        transform: translateX(-50%);
    }
}

/* ---------- App mockup chrome ---------- */
.app-window {
    background: var(--bg-1);
    border: 1px solid var(--border-strong);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-card);
}

.app-bar {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 16px;
    border-bottom: 1px solid var(--border);
    background: var(--bg-2);
}

.app-bar .dots {
    display: flex;
    gap: 7px;
}

.app-bar .dots i {
    width: 11px;
    height: 11px;
    border-radius: 50%;
    display: block;
}

.app-bar .url {
    flex: 1;
    text-align: center;
    font-family: var(--font-mono);
    font-size: 12px;
    color: var(--text-3);
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: 7px;
    padding: 5px 12px;
    max-width: 280px;
    margin: 0 auto;
}

/* phone frame */
.phone {
    width: 290px;
    border-radius: 38px;
    padding: 11px;
    background: linear-gradient(160deg, #20272f, #0c0f14);
    box-shadow: var(--shadow-card), 0 0 0 1px rgba(255, 255, 255, 0.05);
    position: relative;
}

.phone-screen {
    border-radius: 28px;
    overflow: hidden;
    background: var(--bg-1);
    position: relative;
}

.phone-notch {
    position: absolute;
    top: 11px;
    left: 50%;
    transform: translateX(-50%);
    width: 110px;
    height: 26px;
    background: #07090c;
    border-radius: 0 0 16px 16px;
    z-index: 5;
}

/* ---------- App store badges ---------- */
.store-badges {
    display: flex;
    gap: 13px;
    flex-wrap: wrap;
}

.store-badge {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 10px 20px 10px 16px;
    border-radius: 13px;
    background: #0e141c;
    border: 1px solid var(--border-strong);
    transition: transform .18s ease, border-color .2s, background .2s;
}

.store-badge:hover {
    border-color: rgba(22, 199, 132, 0.45);
    transform: translateY(-2px);
    background: #121a23;
}

.store-badge svg {
    width: 26px;
    height: 26px;
    flex: none;
    color: #fff;
}

.store-badge .sb-txt {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
}

.store-badge .sb-sub {
    font-size: 10.5px;
    color: var(--text-3);
    letter-spacing: .02em;
}

.store-badge .sb-main {
    font-family: var(--font-head);
    font-weight: 600;
    font-size: 16px;
    color: var(--text);
    margin-top: 1px;
}

.store-rating {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text-3);
    font-size: 13.5px;
}

.store-rating .stars {
    color: var(--amber);
    letter-spacing: 1px;
    font-size: 14px;
}

/* Coming-soon tag on store badges */
.store-badge {
    position: relative;
}

.store-badge.soon {
    cursor: default;
}

.cs-tag {
    display: inline-block;
    align-self: flex-start;
    margin-top: 5px;
    font-family: var(--font-mono);
    font-size: 9px;
    letter-spacing: .08em;
    text-transform: uppercase;
    font-weight: 700;
    color: var(--green);
    background: rgba(22, 199, 132, 0.12);
    border: 1px solid rgba(22, 199, 132, 0.3);
    border-radius: 5px;
    padding: 2px 6px;
}

/* Notify-at-launch form */
.notify {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    max-width: 480px;
}

.notify.center {
    margin: 0 auto;
    justify-content: center;
}

.notify-input {
    flex: 1;
    min-width: 220px;
    background: var(--bg-2);
    border: 1px solid var(--border-strong);
    border-radius: 12px;
    padding: 14px 16px;
    color: var(--text);
    font-family: var(--font-body);
    font-size: 15px;
}

.notify-input::placeholder {
    color: var(--text-faint);
}

.notify-input:focus {
    outline: none;
    border-color: var(--green);
    box-shadow: 0 0 0 3px rgba(22, 199, 132, 0.18);
}

.notify-done {
    display: none;
    color: var(--green);
    font-weight: 700;
    font-size: 15px;
    align-items: center;
    gap: 8px;
}

.notify.sent .notify-input,
.notify.sent button {
    display: none;
}

.notify.sent .notify-done {
    display: flex;
}

/* phone stack for hero */
.phone-stack {
    position: relative;
    display: flex;
    justify-content: center;
}

.phone-stack .phone.back {
    position: absolute;
    top: 30px;
    left: 50%;
    transform: translateX(-62%) rotate(-9deg) scale(.92);
    filter: brightness(.62) saturate(.8);
    z-index: 0;
}

.phone-stack .phone.front {
    position: relative;
    z-index: 2;
    transform: rotate(2deg);
}

/* ---------- Mini data viz ---------- */
.spark {
    width: 100%;
    height: 40px;
}

.donut-legend {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.donut-legend li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13.5px;
    list-style: none;
}

.donut-legend .sw {
    width: 10px;
    height: 10px;
    border-radius: 3px;
    flex: none;
}

.donut-legend .pct {
    margin-left: auto;
    font-family: var(--font-mono);
    color: var(--text-2);
}

/* generic coin dot colors */
.coin-dot {
    position: relative;
    overflow: hidden;
}

.coin-dot img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.c-btc {
    background: #f7931a;
    color: #fff;
}

.c-eth {
    background: #627eea;
    color: #fff;
}

.c-sol {
    background: linear-gradient(135deg, #9945ff, #14f195);
    color: #fff;
}

.c-bnb {
    background: #f3ba2f;
    color: #1a1a1a;
}

.c-xrp {
    background: #23292f;
    color: #fff;
}

.c-ada {
    background: #0033ad;
    color: #fff;
}

.c-doge {
    background: #c2a633;
    color: #fff;
}

.c-avax {
    background: #e84142;
    color: #fff;
}

.c-link {
    background: #2a5ada;
    color: #fff;
}

.c-dot {
    background: #e6007a;
    color: #fff;
}

.c-usdt {
    background: #26a17b;
    color: #fff;
}

/* ---------- Stats ---------- */
.stat-num {
    font-family: var(--font-head);
    font-weight: 700;
    font-size: clamp(30px, 3.5vw, 44px);
    letter-spacing: -0.03em;
}

.stat-label {
    color: var(--text-3);
    font-size: 14px;
    margin-top: 4px;
}

/* ---------- Logos / exchanges ---------- */
.exch-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 14px;
}

.exch-chip {
    display: flex;
    align-items: center;
    gap: 11px;
    padding: 16px 18px;
    background: var(--bg-2);
    border: 1px solid var(--border);
    border-radius: 12px;
    font-weight: 700;
    font-size: 15px;
    transition: border-color .2s, transform .2s, background .2s;
}

.exch-chip:hover {
    border-color: var(--border-strong);
    transform: translateY(-2px);
    background: var(--bg-3);
}

.exch-mark {
    width: 30px;
    height: 30px;
    border-radius: 8px;
    flex: none;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-mono);
    font-weight: 700;
    font-size: 13px;
}

/* ---------- FAQ ---------- */
.faq-item {
    border-bottom: 1px solid var(--border);
}

.faq-q {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 24px 0;
    text-align: left;
    font-family: var(--font-head);
    font-weight: 600;
    font-size: 18px;
    color: var(--text);
}

.faq-q .ico {
    flex: none;
    width: 26px;
    height: 26px;
    border: 1px solid var(--border-strong);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform .3s, background .2s;
}

.faq-item.open .faq-q .ico {
    transform: rotate(45deg);
    background: var(--green);
    color: #04130c;
    border-color: var(--green);
}

.faq-a {
    max-height: 0;
    overflow: hidden;
    transition: max-height .35s ease;
}

.faq-a-inner {
    padding: 0 0 24px;
    color: var(--text-3);
    max-width: 760px;
    font-size: 15.5px;
}

/* ---------- Footer ---------- */
.footer {
    border-top: 1px solid var(--border);
    background: var(--bg-1);
    padding: 70px 0 36px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.6fr repeat(3, 1fr);
    gap: 40px;
}

.footer h4 {
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 13px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--text-3);
    margin-bottom: 18px;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 11px;
}

.footer-links a {
    color: var(--text-2);
    font-size: 15px;
    transition: color .2s;
}

.footer-links a:hover {
    color: var(--green);
}

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    margin-top: 56px;
    padding-top: 28px;
    border-top: 1px solid var(--border);
    flex-wrap: wrap;
}

.footer-bottom p {
    color: var(--text-faint);
    font-size: 13.5px;
}

.social {
    display: flex;
    gap: 10px;
}

.social a {
    width: 38px;
    height: 38px;
    border-radius: 10px;
    border: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-3);
    transition: .2s;
}

.social a:hover {
    color: var(--green);
    border-color: rgba(22, 199, 132, 0.4);
}

.social svg {
    width: 17px;
    height: 17px;
}

/* ---------- Scroll reveal (visible by default; JS adds .pre to hide below-fold) ---------- */
.reveal {
    transition: opacity .7s cubic-bezier(.2, .7, .2, 1), transform .7s cubic-bezier(.2, .7, .2, 1);
}

.reveal.pre {
    opacity: 0;
    transform: translateY(24px);
}

.reveal.d1 {
    transition-delay: .08s;
}

.reveal.d2 {
    transition-delay: .16s;
}

.reveal.d3 {
    transition-delay: .24s;
}

.reveal.d4 {
    transition-delay: .32s;
}

@media (prefers-reduced-motion: reduce) {

    .reveal,
    .reveal.pre {
        opacity: 1 !important;
        transform: none !important;
    }

    .ticker-track {
        animation: none;
    }

    html {
        scroll-behavior: auto;
    }
}

/* ---------- Legal / doc pages ---------- */
.doc {
    max-width: 820px;
    margin: 0 auto;
}

.doc h2 {
    font-size: 26px;
    margin: 48px 0 16px;
}

.doc h3 {
    font-size: 19px;
    margin: 30px 0 10px;
}

.doc p,
.doc li {
    color: var(--text-2);
    font-size: 16px;
    margin-bottom: 14px;
    line-height: 1.72;
}

.doc ul {
    padding-left: 22px;
    margin-bottom: 18px;
}

.doc li {
    margin-bottom: 8px;
}

.doc strong {
    color: var(--text);
    font-weight: 700;
}

.doc a {
    color: var(--green);
}

.doc-meta {
    color: var(--text-3);
    font-family: var(--font-mono);
    font-size: 13px;
}

.toc {
    background: var(--bg-2);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 24px 28px;
    margin: 30px 0 48px;
}

.toc h4 {
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--text-3);
    margin-bottom: 14px;
}

.toc ol {
    padding-left: 20px;
    columns: 2;
}

.toc a {
    color: var(--text-2);
    font-size: 14.5px;
    line-height: 2;
}

.toc a:hover {
    color: var(--green);
}

/* ---------- Responsive ---------- */
@media (max-width: 980px) {
    .nav-links {
        display: none;
    }

    .nav-burger {
        display: flex;
    }

    .nav-cta .btn-ghost {
        display: none;
    }

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

    .exch-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .section {
        padding: 80px 0;
    }

    .hero-grid {
        grid-template-columns: 1fr !important;
        gap: 44px !important;
    }

    .spot-grid {
        grid-template-columns: 1fr !important;
        gap: 40px !important;
    }

    .feat-grid {
        grid-template-columns: repeat(2, 1fr) !important;
    }

    .steps-grid {
        grid-template-columns: 1fr !important;
    }

    .sec-grid {
        grid-template-columns: repeat(2, 1fr) !important;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 36px 24px !important;
    }

    .app-window {
        transform: none !important;
    }

    /* On stacked spotlights, put the copy before the mockup */
    .spot-grid>.reveal:first-child {
        order: -1;
    }
}

@media (max-width: 600px) {
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .toc ol {
        columns: 1;
    }

    .wrap {
        padding: 0 18px;
    }

    .feat-grid {
        grid-template-columns: 1fr !important;
    }

    .sec-grid {
        grid-template-columns: 1fr !important;
    }

    .exch-grid {
        grid-template-columns: 1fr !important;
    }

    .stats-grid {
        grid-template-columns: 1fr !important;
    }

    .section {
        padding: 64px 0;
    }

    .h-display {
        font-size: clamp(34px, 11vw, 52px);
    }

    .float-card {
        display: none !important;
    }
}