/* Helio — site styles
   Dark and orange, matching the Helio app. Change the colors here and the whole site follows. */

:root {
  --orange: #F28C28;
  --orange-hover: #FF9F45;
  --orange-soft: rgba(242, 140, 40, .14);
  --green: #3DD68C;
  --red: #FF6B5E;

  --bg: #0A0D10;
  --bg-raised: #0F1318;
  --surface: #141A20;
  --surface-2: #1B222A;
  --border: rgba(255, 255, 255, .08);
  --border-strong: rgba(255, 255, 255, .16);
  --text: #F2F4F6;
  --text-muted: #9AA3AD;

  --radius: 16px;
  --radius-sm: 10px;
  --container: 1200px;
  --font: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  --font-display: "Poppins", var(--font);
}

*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; scroll-padding-top: 88px; }
body { margin: 0; font-family: var(--font); font-size: 17px; line-height: 1.65; color: var(--text); background: var(--bg); -webkit-font-smoothing: antialiased; }
img, svg { display: block; max-width: 100%; height: auto; }
a { color: inherit; }
h1, h2, h3 { font-family: var(--font-display); line-height: 1.12; margin: 0 0 .5em; letter-spacing: -.02em; font-weight: 700; }
h1 { font-size: clamp(2.4rem, 5.4vw, 4.1rem); }
h2 { font-size: clamp(1.8rem, 3.4vw, 2.7rem); }
h3 { font-size: 1.2rem; font-weight: 600; letter-spacing: -.01em; }
p { margin: 0 0 1em; }
strong { color: var(--text); }

.container { width: 100%; max-width: var(--container); margin: 0 auto; padding: 0 24px; }
.container.narrow { max-width: 860px; }
.sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; }
.skip-link { position: absolute; left: -999px; top: 8px; background: var(--orange); color: #111; padding: 8px 14px; border-radius: var(--radius-sm); z-index: 100; font-weight: 700; }
.skip-link:focus { left: 8px; }
:focus-visible { outline: 3px solid var(--orange); outline-offset: 2px; }

.eyebrow { display: inline-block; text-transform: uppercase; letter-spacing: .14em; font-size: .76rem; font-weight: 700; color: var(--orange); margin-bottom: 1em; }
.accent { color: var(--orange); }
.tbd { background: rgba(242, 140, 40, .18); color: #FFC58A; padding: 1px 6px; border-radius: 4px; font-weight: 600; font-size: .9em; }
.muted { color: var(--text-muted); }
.center { text-align: center; }
.fine { font-size: .8rem; color: var(--text-muted); margin: 14px 0 0; }

/* Buttons */
.btn { display: inline-flex; align-items: center; justify-content: center; gap: 10px; padding: 11px 22px; border-radius: 999px; font-weight: 700; font-size: .95rem; text-decoration: none; border: 1px solid transparent; transition: background .15s, border-color .15s, transform .15s; white-space: nowrap; cursor: pointer; }
.btn:hover { transform: translateY(-1px); }
.btn-lg { padding: 15px 30px; font-size: 1.02rem; }
.btn-primary { background: var(--orange); color: #111; }
.btn-primary:hover { background: var(--orange-hover); }
.btn-outline { color: var(--text); border-color: var(--border-strong); }
.btn-outline:hover { border-color: var(--text); }
.btn-ghost { color: var(--text); }
.btn-ghost:hover { border-color: var(--border-strong); }

/* App store buttons */
.store-buttons { display: flex; gap: 12px; flex-wrap: wrap; }
.store-btn { display: inline-flex; align-items: center; gap: 12px; padding: 10px 20px 10px 16px; border-radius: 14px; background: #fff; color: #111; text-decoration: none; line-height: 1.15; transition: transform .15s; }
.store-btn:hover { transform: translateY(-1px); }
.store-btn svg { width: 26px; height: 26px; fill: currentColor; flex: none; }
.store-btn small { display: block; font-size: .68rem; font-weight: 500; }
.store-btn-soon { position: relative; border: 0; font: inherit; text-align: left; cursor: pointer; }
.store-btn-soon > svg { opacity: .55; }
.soon-pop { position: absolute; left: 50%; bottom: calc(100% + 12px); transform: translate(-50%, 6px); width: max-content; max-width: 220px; background: var(--orange); color: #111; font-size: .84rem; font-weight: 700; line-height: 1.35; text-align: center; padding: 9px 13px; border-radius: 10px; box-shadow: 0 12px 28px rgba(0,0,0,.4); opacity: 0; pointer-events: none; transition: opacity .2s, transform .2s; z-index: 5; }
.soon-pop::after { content: ""; position: absolute; top: 100%; left: 50%; margin-left: -7px; border: 7px solid transparent; border-top-color: var(--orange); }
.store-btn-soon:focus-visible .soon-pop, .store-btn-soon.show .soon-pop { opacity: 1; transform: translate(-50%, 0); }
@media (hover: hover) { .store-btn-soon:hover .soon-pop { opacity: 1; transform: translate(-50%, 0); } }
.store-btn strong { display: block; font-size: 1.05rem; color: #111; font-weight: 700; white-space: nowrap; }

/* Notice bar */
.notice-bar { background: var(--orange); color: #111; font-size: .88rem; font-weight: 600; text-align: center; padding: 8px 0; }

/* Header */
.site-header { position: sticky; top: 0; z-index: 50; background: rgba(10, 13, 16, .82); backdrop-filter: saturate(160%) blur(14px); -webkit-backdrop-filter: saturate(160%) blur(14px); border-bottom: 1px solid var(--border); }
.header-inner { display: flex; align-items: center; justify-content: space-between; height: 72px; gap: 24px; }
.brand { display: inline-flex; align-items: center; gap: 14px; text-decoration: none; color: var(--text); }
.wordmark { font-family: var(--font-display); font-weight: 600; letter-spacing: .32em; font-size: 1.4rem; }
.site-nav { display: flex; align-items: center; gap: 28px; flex: 1; justify-content: space-between; margin-left: 40px; }
.nav-list { list-style: none; display: flex; gap: 4px; margin: 0; padding: 0; }
.wordmark sup { font-size: .45em; letter-spacing: 0; margin-left: -.2em; vertical-align: super; font-weight: 500; }
.nav-link { color: #D5DAE0; font-size: .95rem; font-weight: 600; padding: 10px 14px; border-radius: var(--radius-sm); text-decoration: none; }
.nav-link:hover, .nav-link[aria-current="page"] { color: var(--orange); }
.nav-actions { display: flex; gap: 10px; align-items: center; }
.nav-toggle { display: none; background: none; border: 0; width: 44px; height: 44px; cursor: pointer; position: relative; }
.nav-toggle-bar, .nav-toggle-bar::before, .nav-toggle-bar::after { position: absolute; left: 10px; width: 24px; height: 2px; background: var(--text); content: ""; transition: transform .2s, top .2s; }
.nav-toggle-bar { top: 21px; }
.nav-toggle-bar::before { left: 0; top: -7px; }
.nav-toggle-bar::after { left: 0; top: 7px; }
.nav-toggle[aria-expanded="true"] .nav-toggle-bar { background: transparent; }
.nav-toggle[aria-expanded="true"] .nav-toggle-bar::before { top: 0; transform: rotate(45deg); }
.nav-toggle[aria-expanded="true"] .nav-toggle-bar::after { top: 0; transform: rotate(-45deg); }

/* Glow backgrounds */
.hero-glow { position: absolute; inset: 0; pointer-events: none;
  background:
    radial-gradient(40% 55% at 78% 30%, rgba(242,140,40,.22), transparent 70%),
    radial-gradient(30% 40% at 10% 100%, rgba(242,140,40,.08), transparent 70%); }

/* Hero */
.hero { position: relative; overflow: hidden; padding: 72px 0 40px; }
.hero-inner { position: relative; display: grid; grid-template-columns: 1.05fr .95fr; gap: 48px; align-items: center; }
.lede { font-size: 1.2rem; color: #BCC4CC; max-width: 34em; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 32px; }
.hero-proof { list-style: none; display: flex; flex-wrap: wrap; gap: 10px 22px; padding: 0; margin: 30px 0 0; font-size: .9rem; color: var(--text-muted); font-weight: 600; }
.hero-proof li { display: flex; align-items: center; gap: 8px; }
.hero-proof li::before { content: ""; width: 8px; height: 8px; border-radius: 50%; background: var(--green); box-shadow: 0 0 0 4px rgba(61,214,140,.18); }
.hero-visual { position: relative; }
.hero-visual img { width: 100%; max-width: 560px; margin: 0 auto; filter: drop-shadow(0 40px 60px rgba(0,0,0,.6)); }

/* SALT partner band */
.partner-band { background: var(--bg-raised); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); padding: 28px 0; }
.partner-inner { display: flex; align-items: center; gap: 24px; }
.partner-badge { flex: none; font-family: var(--font-display); font-weight: 700; font-size: .95rem; color: #111; background: var(--orange); padding: 10px 18px; border-radius: 999px; white-space: nowrap; }
.partner-inner p { margin: 0; color: #D5DAE0; }
.partner-logo { flex: none; height: 40px; width: auto; }
.partner-id { flex: none; display: inline-flex; align-items: center; gap: 14px; }

/* Where we lend */
.region { margin-bottom: 40px; }
.region h2 { font-size: 1.3rem; margin-bottom: 16px; }
.place-list { list-style: none; margin: 0; padding: 0; columns: 4; column-gap: 24px; }
.place-list li { break-inside: avoid; padding: 7px 0 7px 22px; position: relative; color: #D5DAE0; }
.place-list li::before { content: ""; position: absolute; left: 0; top: 15px; width: 8px; height: 8px; border-radius: 50%; background: var(--orange); }
.place-list-1 { columns: 1; }
.region-note { margin: 14px 0 0; color: var(--text-muted); font-size: .92rem; }
.regions { margin-top: 8px; }
.regions .region { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); padding: 26px; margin: 0; }
.notlisted { margin-top: 40px; }
@media (max-width: 900px) { .place-list { columns: 2; } .place-list-1 { columns: 1; } }
@media (max-width: 900px) { .partner-inner { flex-direction: column; align-items: flex-start; gap: 14px; } }

/* Icons */
.icon-box { width: 46px; height: 46px; border-radius: 12px; background: var(--orange-soft); display: grid; place-items: center; flex: none; }
.icon-box svg { width: 22px; height: 22px; fill: none; stroke: var(--orange); stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }

/* Sections */
.section { padding: 104px 0; }
.section-alt { background: var(--bg-raised); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.section-head { max-width: 720px; margin-bottom: 56px; }
.section-head.center { margin-left: auto; margin-right: auto; }
.section-head p:not(.eyebrow) { color: var(--text-muted); font-size: 1.08rem; }
.section-note { margin-top: 32px; color: var(--text-muted); font-size: .95rem; }
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }

.feature { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); padding: 30px; }
.feature p { color: var(--text-muted); margin: 0; }
.feature .icon-box { margin-bottom: 20px; }
.feature a:not(.btn) { color: var(--orange); font-weight: 700; overflow-wrap: anywhere; }
.feature .btn { margin-top: 24px; }
.link-arrow { font-weight: 700; color: var(--orange); text-decoration: none; white-space: nowrap; }
.link-arrow::after { content: " →"; }

.checks { list-style: none; padding: 0; margin: 22px 0 0; }
.checks li { position: relative; padding-left: 32px; margin-bottom: 12px; font-weight: 500; color: #D5DAE0; }
.checks li::before { content: ""; position: absolute; left: 0; top: 4px; width: 20px; height: 20px; border-radius: 50%; background: var(--orange-soft) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23F28C28' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M6 12l4 4 8-8'/%3E%3C/svg%3E") center / 12px no-repeat; }

/* Product rows */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: center; padding: 48px 0; }
.split + .split { border-top: 1px solid var(--border); }
.split-reverse .split-copy { order: 2; }
.split-copy > p:not(.eyebrow) { color: var(--text-muted); }
.split-visual { display: flex; justify-content: center; padding: 40px 28px; border-radius: 28px; border: 1px solid var(--border); background: radial-gradient(70% 70% at 70% 20%, rgba(242,140,40,.16), transparent 70%), var(--bg-raised); }
.h-lg { font-size: clamp(1.6rem, 2.8vw, 2.2rem); }

/* App-style mock panels (drawn in HTML so they stay sharp and editable) */
.mock-panel { position: relative; width: 100%; max-width: 380px; background: #0B0F12; border: 1px solid var(--border); border-radius: 22px; padding: 22px; box-shadow: 0 30px 60px rgba(0,0,0,.45); }
.mock-panel > .sample-chip { position: absolute; top: 20px; right: 20px; }
.mock-title { display: flex; justify-content: space-between; align-items: center; font-size: .95rem; font-weight: 600; margin-bottom: 10px; }
.mock-hero { background: linear-gradient(160deg, #F39A3A, #E97F16); color: #fff; border-radius: 16px; padding: 18px; text-align: center; margin-bottom: 16px; }
.mock-hero small { display: block; font-size: .8rem; opacity: .9; }
.mock-hero strong { display: block; font-family: var(--font-display); font-size: 1.9rem; color: #fff; letter-spacing: -.02em; }
.asset-row { display: flex; align-items: center; gap: 12px; padding: 11px 0; border-top: 1px solid var(--border); font-size: .92rem; }
.asset-row:first-of-type { border-top: 0; }
.asset-row .name small { display: block; color: var(--text-muted); font-size: .76rem; }
.asset-row .amount { margin-left: auto; text-align: right; color: var(--orange); font-weight: 600; }
.asset-row .amount small { display: block; color: var(--text-muted); font-weight: 500; font-size: .76rem; }
.swap-box { background: var(--surface); border: 1px solid var(--border); border-radius: 14px; padding: 14px 16px; }
.swap-box small { color: var(--text-muted); font-size: .76rem; }
.swap-line { display: flex; align-items: center; gap: 10px; font-weight: 700; font-size: 1.2rem; margin-top: 4px; }
.swap-line .coin { width: 28px; height: 28px; font-size: .85rem; }
.swap-line span:last-child { margin-left: auto; font-size: .9rem; color: var(--text-muted); font-weight: 600; }
.swap-arrow { width: 36px; height: 36px; margin: -8px auto; position: relative; z-index: 1; border-radius: 50%; background: var(--orange); color: #111; display: grid; place-items: center; font-weight: 800; }
.mock-button { margin-top: 16px; background: var(--orange); color: #111; text-align: center; font-weight: 700; padding: 12px; border-radius: 12px; font-size: .92rem; }
.gauge { position: relative; max-width: 240px; margin: 4px auto 12px; }
.gauge svg { width: 100%; }
.gauge-track, .gauge-fill { fill: none; stroke-width: 16; stroke-linecap: round; }
.gauge-track { stroke: var(--surface-2); }
.gauge-fill { stroke: var(--orange); }
.gauge-value { position: absolute; left: 0; right: 0; bottom: 0; text-align: center; font-family: var(--font-display); font-size: 2rem; font-weight: 700; line-height: 1; }
.gauge-value small { display: block; font-family: var(--font); font-size: .75rem; color: var(--text-muted); font-weight: 600; margin-top: 4px; }
.lock-row { display: flex; align-items: center; gap: 10px; font-size: .86rem; background: var(--surface); padding: 10px 14px; border-radius: 12px; color: #D5DAE0; }
.lock-row + .lock-row { margin-top: 8px; }
.sample-chip { display: inline-block; font-size: .62rem; text-transform: uppercase; letter-spacing: .12em; font-weight: 800; color: var(--orange); background: var(--orange-soft); padding: 3px 8px; border-radius: 999px; }

/* Coins */
.coin { width: 34px; height: 34px; border-radius: 50%; display: inline-grid; place-items: center; font-weight: 800; color: #fff; font-size: .95rem; flex: none; }
.coin-lg { width: 60px; height: 60px; font-size: 1.6rem; }
.coin-btc { background: #F7931A; }
.coin-eth { background: #627EEA; }
.coin-usdt { background: #26A17B; }
.coin-bnb { background: #F3BA2F; color: #111; }
.coin-sol { background: linear-gradient(135deg, #00FFA3, #9945FF); }
.coin-ltc { background: #345D9D; }
.coin-trx { background: #EB0029; }
.coin-doge { background: #C2A633; }
.coin-xrp { background: #23292F; border: 1px solid var(--border-strong); }
.dot { width: 10px; height: 10px; border-radius: 50%; flex: none; }
.dot-ok { background: var(--green); box-shadow: 0 0 0 4px rgba(61,214,140,.18); }
.dot-warn { background: var(--orange); box-shadow: 0 0 0 4px rgba(242,140,40,.2); }

/* Steps */
.steps { list-style: none; counter-reset: step; margin: 0; padding: 0; display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.steps li { counter-increment: step; background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); padding: 30px 28px; }
.steps li::before { content: counter(step, decimal-leading-zero); display: block; font-family: var(--font-display); font-weight: 700; font-size: .95rem; color: var(--orange); margin-bottom: 14px; letter-spacing: .08em; }
.steps p { color: var(--text-muted); margin: 0; font-size: .96rem; }

/* Calculator */
.calc-split { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.formula { display: inline-block; font-weight: 700; background: var(--orange-soft); color: #FFC58A; padding: 10px 16px; border-radius: var(--radius-sm); }
.calc-card { background: var(--surface); border: 1px solid var(--border); border-radius: 22px; padding: 28px; box-shadow: 0 30px 60px rgba(0,0,0,.35); }
.card-head { display: flex; justify-content: space-between; align-items: center; font-weight: 700; margin-bottom: 18px; }
.tag { font-size: .7rem; text-transform: uppercase; letter-spacing: .1em; background: var(--orange-soft); color: var(--orange); padding: 4px 10px; border-radius: 999px; }
.field { margin-bottom: 16px; }
.field label { display: flex; justify-content: space-between; font-size: .88rem; color: var(--text-muted); margin-bottom: 6px; font-weight: 600; }
.field output { color: var(--orange); font-weight: 800; }
.input-prefix { display: flex; align-items: center; background: var(--bg); border: 1px solid var(--border-strong); border-radius: var(--radius-sm); padding: 0 12px; }
.input-prefix span { color: var(--text-muted); }
.input-prefix input { flex: 1; min-width: 0; background: transparent; border: 0; color: var(--text); font: inherit; font-weight: 700; padding: 11px 8px; }
.input-prefix input:focus { outline: none; }
.input-prefix:focus-within { border-color: var(--orange); }
input[type="range"] { width: 100%; accent-color: var(--orange); }
.calc-result { display: flex; justify-content: space-between; align-items: baseline; padding: 14px 0; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); margin: 6px 0 14px; }
.calc-result .label { color: var(--text-muted); font-size: .9rem; }
.calc-result strong { font-family: var(--font-display); font-size: 1.9rem; }
.calc-table { width: 100%; border-collapse: collapse; font-size: .88rem; }
.calc-table caption { text-align: left; color: var(--text-muted); font-size: .82rem; margin-bottom: 6px; }
.calc-table th { text-align: left; color: var(--text-muted); font-weight: 600; padding: 4px 0; }
.calc-table td { padding: 6px 0; border-top: 1px solid var(--border); font-variant-numeric: tabular-nums; }
.calc-table .warn { color: var(--orange); font-weight: 700; }
.calc-table .danger { color: var(--red); font-weight: 700; }

/* Coin strip */
.asset-list { list-style: none; padding: 0; margin: 40px 0 0; display: flex; justify-content: center; flex-wrap: wrap; gap: 28px 36px; }
.asset-list li { display: flex; flex-direction: column; align-items: center; gap: 10px; font-weight: 600; font-size: .92rem; color: #D5DAE0; }

/* FAQ */
.faq details { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); margin-bottom: 12px; }
.faq summary { cursor: pointer; list-style: none; padding: 20px 56px 20px 24px; font-weight: 600; position: relative; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; position: absolute; right: 24px; top: 50%; transform: translateY(-50%); font-size: 1.5rem; font-weight: 400; color: var(--orange); }
.faq details[open] summary::after { content: "–"; }
.faq details p { padding: 0 24px 22px; margin: 0; color: var(--text-muted); }

/* Download band */
.cta-band { position: relative; overflow: hidden; padding: 96px 0; border-top: 1px solid var(--border); }
.cta-band::before { content: ""; position: absolute; inset: 0; background: radial-gradient(50% 80% at 50% 110%, rgba(242,140,40,.28), transparent 70%); pointer-events: none; }
.cta-inner { position: relative; display: flex; flex-direction: column; align-items: center; text-align: center; gap: 12px; }
.cta-inner p { color: var(--text-muted); max-width: 36em; }
.cta-inner a:not(.btn):not(.store-btn) { color: var(--orange); }
.cta-inner .store-buttons { justify-content: center; margin-top: 12px; }

/* Inner pages */
.page-hero { position: relative; overflow: hidden; padding: 80px 0 64px; border-bottom: 1px solid var(--border); }
.page-hero .container { position: relative; }
.page-hero h1 { font-size: clamp(2rem, 4vw, 3rem); max-width: 18em; }
.page-hero .lede { margin: 0; }
.status-box { background: var(--orange-soft); border: 1px solid rgba(242,140,40,.3); color: #FFD9B0; border-radius: var(--radius); padding: 18px 22px; margin-bottom: 40px; }
.status-box p { margin: 0; }
.prose { max-width: 720px; }
.prose h2 { font-size: 1.45rem; margin-top: 1.8em; }
.prose h2:first-child { margin-top: 0; }
.prose p, .prose li { color: var(--text-muted); }
.prose ul { padding-left: 1.2em; }
.prose li { margin-bottom: 8px; }
.prose a { color: var(--orange); }
.table-wrap { overflow-x: auto; border: 1px solid var(--border); border-radius: var(--radius); background: var(--surface); }
.terms-table { width: 100%; min-width: 600px; border-collapse: collapse; }
.terms-table th, .terms-table td { text-align: left; vertical-align: top; padding: 16px 20px; border-top: 1px solid var(--border); }
.terms-table thead th { border-top: 0; background: var(--surface-2); font-size: .74rem; text-transform: uppercase; letter-spacing: .1em; color: var(--text-muted); }
.terms-table tbody th { font-weight: 600; white-space: nowrap; }
.terms-table td:last-child { color: var(--text-muted); font-size: .94rem; }

/* Footer */
.site-footer { background: #07090B; color: var(--text-muted); font-size: .92rem; padding: 72px 0 32px; border-top: 1px solid var(--border); }
.site-footer a { color: #D5DAE0; text-decoration: none; }
.site-footer a:hover { color: var(--orange); }
.footer-top { display: grid; grid-template-columns: 1.3fr 2fr 1.1fr; gap: 48px; padding-bottom: 48px; border-bottom: 1px solid var(--border); }
.footer-tagline { margin: 16px 0; color: #D5DAE0; }
.site-footer address { font-style: normal; line-height: 1.7; }
.social { list-style: none; display: flex; gap: 10px; padding: 0; margin: 20px 0 0; }
.social a { width: 36px; height: 36px; border-radius: 50%; background: var(--surface-2); display: grid; place-items: center; }
.social svg { width: 17px; height: 17px; fill: currentColor; }
.footer-cols { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.footer-heading { font-family: var(--font); font-size: .76rem; text-transform: uppercase; letter-spacing: .14em; color: var(--orange); font-weight: 700; margin: 0 0 16px; }
.footer-cols ul { list-style: none; padding: 0; margin: 0; }
.footer-cols li { margin-bottom: 10px; }
.footer-contact p { margin-bottom: 14px; }
.footer-contact .label { display: block; font-size: .8rem; color: #6F7882; }
.footer-legal { padding: 36px 0; border-bottom: 1px solid var(--border); font-size: .84rem; line-height: 1.7; }
.footer-legal .footer-heading { margin-top: 24px; margin-bottom: 8px; }
.footer-legal .footer-heading:first-child { margin-top: 0; }
.footer-bottom { display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; padding-top: 24px; font-size: .84rem; }
.footer-bottom p { margin: 0; }

/* Why holders love us */
.love-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.love-card { position: relative; background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); padding: 26px; transition: transform .25s, border-color .25s, box-shadow .25s; }
.love-card .icon-box { margin-bottom: 18px; }
.love-card h3 { font-size: 1.06rem; margin-bottom: .35em; }
.love-card p { color: var(--text-muted); font-size: .93rem; margin: 0; }
.love-card:hover, .feature:hover { transform: translateY(-4px); border-color: rgba(242,140,40,.45); box-shadow: 0 18px 40px rgba(0,0,0,.35), 0 0 0 1px rgba(242,140,40,.12); }
.feature { transition: transform .25s, border-color .25s, box-shadow .25s; }

/* Loan calculator results */
.calc-lines { margin: 0 0 14px; }
.calc-lines div { display: flex; justify-content: space-between; gap: 12px; padding: 7px 0; font-size: .92rem; }
.calc-lines dt { color: var(--text-muted); }
.calc-lines dd { margin: 0; font-weight: 700; font-variant-numeric: tabular-nums; }
.calc-walk { background: rgba(61,214,140,.08); border: 1px solid rgba(61,214,140,.25); color: #CFF5E1; border-radius: var(--radius-sm); padding: 12px 14px; font-size: .88rem; }
.calc-walk strong { color: #fff; }

/* Motion: scroll reveal, floating hero, drifting glow */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity .7s ease, transform .7s cubic-bezier(.2,.7,.2,1); }
.reveal.is-visible { opacity: 1; transform: none; }
.love-card.reveal.is-visible:hover, .feature.reveal.is-visible:hover { transform: translateY(-4px); }
@keyframes float { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-14px); } }
@keyframes drift { 0%, 100% { transform: translate3d(0,0,0) scale(1); } 50% { transform: translate3d(-3%,2%,0) scale(1.06); } }
.hero-visual img { animation: float 7s ease-in-out infinite; }
.hero-glow { animation: drift 14s ease-in-out infinite; }
.btn-primary, .partner-badge { background-image: linear-gradient(110deg, transparent 35%, rgba(255,255,255,.35) 50%, transparent 65%); background-size: 250% 100%; background-position: 150% 0; transition: background-position .8s ease, background-color .15s, transform .15s; }
.btn-primary:hover { background-position: -50% 0; }
.asset-list li .coin { transition: transform .3s cubic-bezier(.2,.7,.2,1.4); }
.asset-list li:hover .coin { transform: translateY(-6px) rotate(-8deg); }

/* Learn: article cards and article pages */
.article-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.article-card { display: flex; flex-direction: column; text-decoration: none; background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; transition: transform .25s, border-color .25s, box-shadow .25s; }
.article-card:hover { transform: translateY(-4px); border-color: rgba(242,140,40,.45); box-shadow: 0 18px 40px rgba(0,0,0,.35); }
.article-card img { width: 100%; aspect-ratio: 1200 / 630; object-fit: cover; border-bottom: 1px solid var(--border); }
.article-card .article-meta, .article-card h3, .article-card p, .article-card .link-arrow { margin-left: 24px; margin-right: 24px; }
.article-card .article-meta { margin-top: 20px; }
.article-card h3 { margin-top: 6px; font-size: 1.12rem; }
.article-card p { color: var(--text-muted); font-size: .94rem; flex: 1; }
.article-card .link-arrow { margin-bottom: 22px; font-size: .92rem; }
.article-meta { color: var(--text-muted); font-size: .85rem; font-weight: 600; margin: 0; }
.page-hero .eyebrow a { color: inherit; text-decoration: none; }
.article-body .article-intro { font-size: 1.15rem; color: #D5DAE0; }
.article-body ol { padding-left: 1.3em; }
.article-body ol li, .article-body ul li { color: var(--text-muted); margin-bottom: 10px; }
.article-body .table-wrap { margin: 8px 0 24px; }
.article-body .terms-table { min-width: 520px; }
.article-body .terms-table td:last-child { color: var(--text-muted); }
.article-cta { background: var(--surface); border: 1px solid rgba(242,140,40,.3); border-radius: var(--radius); padding: 24px 28px; margin: 40px 0 24px; }
.article-cta h2 { margin-top: 0 !important; font-size: 1.25rem; }
.article-cta p { margin: 0; }
.legal-doc h2 { font-size: 1.2rem; }
.legal-doc > p:first-child { font-size: 1.05rem; color: #D5DAE0; }

/* Responsive */
@media (max-width: 1080px) {
  .hero-inner, .calc-split { grid-template-columns: 1fr; gap: 40px; }
  .hero { padding-top: 56px; text-align: center; }
  .hero .lede { margin-left: auto; margin-right: auto; }
  .hero-actions, .hero .store-buttons, .hero-proof { justify-content: center; }
  .grid-4, .steps, .love-grid { grid-template-columns: repeat(2, 1fr); }
  .article-grid { grid-template-columns: 1fr 1fr; }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .footer-cols { grid-column: 1 / -1; order: 3; }
}

@media (max-width: 900px) {
  .nav-toggle { display: block; }
  .site-nav { display: none; position: absolute; top: 100%; left: 0; right: 0; margin: 0; flex-direction: column; align-items: stretch; gap: 16px; background: var(--bg); padding: 12px 16px 24px; border-bottom: 1px solid var(--border); max-height: calc(100vh - 72px); overflow-y: auto; }
  .site-nav.open { display: flex; }
  .nav-list { flex-direction: column; }
  .nav-link { display: block; padding: 14px 8px; }
  .nav-actions { flex-direction: column; align-items: stretch; }
  .grid-3, .grid-2, .steps { grid-template-columns: 1fr; }
  .split { grid-template-columns: 1fr; gap: 32px; }
  .split-reverse .split-copy { order: 0; }
}

@media (max-width: 600px) {
  body { font-size: 16px; }
  .container { padding: 0 16px; }
  .section { padding: 72px 0; }
  .grid-4, .love-grid, .article-grid { grid-template-columns: 1fr; }
  .footer-top, .footer-cols { grid-template-columns: 1fr 1fr; }
  .footer-brand, .footer-contact { grid-column: 1 / -1; }
  .split-visual { padding: 24px 14px; }
  .mock-panel { padding: 18px; }
  .store-btn { flex: 1; justify-content: center; padding: 10px 14px; gap: 10px; }
  .soon-pop { left: 0; transform: translate(0, 6px); }
  .store-btn-soon:hover .soon-pop, .store-btn-soon:focus-visible .soon-pop, .store-btn-soon.show .soon-pop { transform: translate(0, 0); }
  .soon-pop::after { left: 44px; }
  .wordmark { font-size: 1.2rem; }
  .brand img { width: 36px; height: 36px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { transition: none !important; animation: none !important; scroll-behavior: auto !important; }
  .reveal { opacity: 1; transform: none; }
}
