/* ============ SMBO CLUB — night-expedition gold theme ============ */
:root {
  --gold: #c9a96a;
  --gold-bright: #e8cf9a;
  --gold-dim: rgba(201, 169, 106, .45);
  --ink: #0a0a0c;
  --ink2: rgba(12, 12, 16, .86);
  --paper: #f2ede3;
  --paper-dim: rgba(242, 237, 227, .55);
  --serif: 'Noto Sans SC', 'Inter', 'PingFang SC', 'Microsoft YaHei', sans-serif;
  --sans: 'Inter', 'Noto Sans SC', 'PingFang SC', 'Microsoft YaHei', sans-serif;
  --mono: 'SF Mono', 'Menlo', monospace;
}
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
html, body { width: 100%; height: 100%; background: var(--ink); }
body { font-family: var(--sans); color: var(--paper); font-weight: 400;
  overflow-y: scroll; overflow-x: hidden; }
a { color: inherit; text-decoration: none; }
button { font-family: var(--sans); cursor: pointer; }
::selection { background: rgba(201, 169, 106, .35); }
::-webkit-scrollbar { width: 4px; height: 4px; }
::-webkit-scrollbar-thumb { background: rgba(201, 169, 106, .4); }

#scene { position: fixed; inset: 0; display: block; z-index: 0; transition: opacity .6s ease;
  touch-action: pan-y; }
#scene.dim { opacity: .14; }
.hidden { display: none !important; }

/* ---------- loader ---------- */
#loader {
  position: fixed; inset: 0; z-index: 100; background: var(--ink);
  display: flex; flex-direction: column; gap: 26px; align-items: center; justify-content: center;
  transition: opacity 1s ease;
}
#loader.done { opacity: 0; pointer-events: none; }
.mini-globe {
  position: relative; width: 72px; height: 72px; border-radius: 50%;
  background:
    radial-gradient(circle at 32% 30%, rgba(255, 236, 190, .95), rgba(201, 169, 106, .55) 38%, rgba(60, 45, 20, .9) 78%),
    #1a1408;
  box-shadow: inset -10px -12px 24px rgba(0,0,0,.65), inset 6px 8px 18px rgba(255,230,170,.25), 0 0 26px rgba(201,169,106,.35);
  animation: mg-spin 2.6s linear infinite;
}
.mg-shine { position: absolute; inset: 0; border-radius: 50%;
  background: conic-gradient(from 0deg, transparent 0 70%, rgba(255,224,160,.35) 82%, transparent 100%);
  mix-blend-mode: screen; animation: mg-spin 1.8s linear infinite reverse; }
.mg-orbit { position: absolute; left: 50%; top: 50%; width: 108px; height: 108px;
  transform: translate(-50%, -50%) rotateX(72deg);
  border: 1px solid rgba(201,169,106,.5); border-radius: 50%; animation: mg-orbit 2.6s linear infinite; }
.mg-orbit::after { content: ''; position: absolute; top: -3px; left: 50%; width: 6px; height: 6px;
  background: #e8cf9a; border-radius: 50%; box-shadow: 0 0 8px rgba(232,207,154,.9); }
@keyframes mg-spin { to { transform: rotateY(360deg); } }
@keyframes mg-orbit { to { transform: translate(-50%, -50%) rotateX(72deg) rotateZ(360deg); } }
#loader-status { font-size: 11px; letter-spacing: .5em; color: var(--gold-dim); }

/* ---------- overlays ---------- */
#vignette { position: fixed; inset: 0; z-index: 8; pointer-events: none;
  background: radial-gradient(ellipse at center, transparent 52%, rgba(0,0,0,.34) 100%); }
#grid-overlay { position: fixed; inset: 0; z-index: 5; pointer-events: none;
  background-image: linear-gradient(to right, rgba(201,169,106,.05) 1px, transparent 1px);
  background-size: calc(100% / 12) 100%;
  mask-image: linear-gradient(to bottom, transparent 0, #000 60px, #000 calc(100% - 60px), transparent 100%);
  -webkit-mask-image: linear-gradient(to bottom, transparent 0, #000 60px, #000 calc(100% - 60px), transparent 100%); }
#fade { position: fixed; inset: 0; z-index: 90; background: #0a0a0c; opacity: 0; pointer-events: none; }

#coord-hud { position: fixed; right: 32px; bottom: 26px; z-index: 45;
  font-family: var(--mono); font-size: 10px; letter-spacing: .12em;
  border: 1px solid rgba(201,169,106,.35); background: rgba(10,10,14,.55);
  backdrop-filter: blur(10px); padding: 10px 14px; min-width: 196px; }
.ch-row { display: flex; justify-content: space-between; gap: 18px; padding: 2px 0; }
.ch-k { color: var(--gold); font-weight: 300; }
.ch-v { color: rgba(242,237,227,.8); }
@media (max-width: 900px) { #coord-hud { display: none; } }

/* ---------- topbar ---------- */
#topbar { position: fixed; top: 0; left: 0; right: 0; z-index: 60;
  display: flex; justify-content: space-between; align-items: center; gap: 20px;
  padding: 18px 32px;
  background: linear-gradient(to bottom, rgba(10,10,12,.85), transparent);
}
.brand { font-family: var(--serif); font-size: 15px; letter-spacing: .4em; color: var(--gold-bright); font-weight: 700; }
.brand span { color: rgba(242,237,227,.5); font-weight: 400; }
#topnav { display: flex; gap: 26px; }
#topnav a { font-size: 11px; letter-spacing: .22em; text-transform: uppercase; color: var(--paper-dim); transition: color .25s; }
#topnav a:hover { color: var(--gold-bright); }
.topbar-right { display: flex; align-items: center; gap: 14px; }
#lang-switch { display: none; }
/* ---------- language dropdown ---------- */
#lang-wrap { position: relative; }
#lang-toggle { display: flex; align-items: center; gap: 9px; background: rgba(10,10,14,.55);
  backdrop-filter: blur(10px); border: 1px solid rgba(201,169,106,.45); color: var(--gold-bright);
  font-size: 11px; letter-spacing: .14em; padding: 9px 14px; transition: all .25s; }
#lang-toggle:hover { background: rgba(201,169,106,.15); border-color: var(--gold); }
#lang-toggle svg { width: 14px; height: 14px; fill: none; stroke: currentColor; stroke-width: 1.6; }
#lang-toggle .caret { width: 10px; height: 10px; transition: transform .25s; }
#lang-wrap.open #lang-toggle .caret { transform: rotate(180deg); }
#lang-menu { position: absolute; right: 0; top: calc(100% + 8px); min-width: 200px; max-height: 320px;
  overflow-y: auto; background: rgba(12,12,16,.94); backdrop-filter: blur(16px);
  border: 1px solid rgba(201,169,106,.35); padding: 6px; z-index: 70; }
#lang-menu button { display: flex; justify-content: space-between; align-items: center; width: 100%;
  background: none; border: none; text-align: left; padding: 10px 14px; font-size: 12.5px;
  letter-spacing: .06em; color: rgba(242,237,227,.75); transition: all .2s; }
#lang-menu button:hover { background: rgba(201,169,106,.12); color: var(--gold-bright); }
#lang-menu button.active { color: var(--gold-bright); }
#lang-menu button.active::after { content: ''; width: 5px; height: 5px; border-radius: 50%;
  background: var(--gold); box-shadow: 0 0 6px rgba(232,207,154,.8); }
@media (max-width: 900px) { #topnav { display: none; } }

/* ---------- gold button ---------- */
.gold-btn { position: relative; display: inline-flex; align-items: center; gap: 12px;
  background: linear-gradient(135deg, #e8cf9a, #c9a96a 60%, #a9884e);
  color: #16110a; font-weight: 700; font-size: 12px; letter-spacing: .18em; text-transform: uppercase;
  padding: 15px 30px; border: none; transition: all .3s; box-shadow: 0 0 0 rgba(232,207,154,0); }
.gold-btn i { font-style: normal; transition: transform .3s; }
.gold-btn:hover { box-shadow: 0 6px 34px rgba(232,207,154,.35); transform: translateY(-1px); }
.gold-btn:hover i { transform: translateX(4px); }
.gold-btn.small { padding: 10px 20px; font-size: 10px; }
.gold-btn.big { padding: 19px 44px; font-size: 13px; }

/* ---------- page & sections ---------- */
#page { position: relative; z-index: 10; }
.hero { min-height: 100vh; display: flex; flex-direction: column; justify-content: center; position: relative; }
.hero-inner { max-width: 1180px; width: 100%; margin: 0 auto; padding: 120px 32px 60px; pointer-events: none; }
.hero-inner a, .hero-inner button { pointer-events: auto; }
.hero-kicker { font-size: 10px; letter-spacing: .5em; color: var(--gold); margin-bottom: 26px; }
.hero h1 { font-family: var(--serif); font-weight: 700; font-size: clamp(38px, 5.6vw, 72px);
  line-height: 1.08; letter-spacing: .04em; color: var(--paper); text-shadow: 0 2px 30px rgba(0,0,0,.6); }
.hero h1 em { font-style: normal; color: var(--gold-bright); }
.hero-sub { margin-top: 24px; max-width: 520px; font-size: 15px; line-height: 1.9; color: rgba(242,237,227,.72);
  text-shadow: 0 1px 12px rgba(0,0,0,.8); }
.hero-actions { margin-top: 36px; display: flex; align-items: center; gap: 22px; flex-wrap: wrap; }
.hero-note { font-size: 11px; letter-spacing: .08em; color: var(--paper-dim); }
.hero-note::before { content: '✓'; color: var(--gold); margin-right: 8px; }
.hero-stats { margin-top: 64px; display: flex; gap: 0; border-top: 1px solid rgba(201,169,106,.2); max-width: 600px;
  background: linear-gradient(to bottom, rgba(10,10,12,.35), transparent); }
.hstat { flex: 1; padding: 20px 22px 4px; border-right: 1px solid rgba(201,169,106,.14); }
.hstat:last-child { border-right: none; }
.hstat b { display: block; font-family: var(--serif); font-size: 30px; font-weight: 700; color: var(--gold-bright); }
.hstat span { display: block; margin-top: 6px; font-size: 9px; letter-spacing: .3em; color: var(--paper-dim); line-height: 1.7; }
.scroll-cue { position: absolute; bottom: 26px; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 10px;
  font-size: 9px; letter-spacing: .4em; color: var(--gold-dim); pointer-events: none; }
.sc-line { width: 1px; height: 44px; background: linear-gradient(to bottom, var(--gold), transparent);
  animation: sc-drop 1.8s ease-in-out infinite; }
@keyframes sc-drop { 0% { transform: scaleY(0); transform-origin: top; } 55% { transform: scaleY(1); transform-origin: top; } 100% { transform: scaleY(0); transform-origin: bottom; } }

.sec { position: relative; max-width: 1180px; margin: 0 auto; padding: 110px 32px;
  border-top: 1px solid rgba(201,169,106,.16); }
.sec:nth-of-type(n+2) { background: linear-gradient(to bottom, rgba(10,10,14,.82), rgba(10,10,14,.66)); backdrop-filter: blur(3px); }
.sec-label { font-size: 10px; letter-spacing: .45em; color: var(--gold); margin-bottom: 18px; font-weight: 300; }
.sec h2 { font-family: var(--serif); font-weight: 700; font-size: clamp(28px, 3.4vw, 44px); letter-spacing: .03em; color: var(--paper); }
.sec h2.gold-accent { color: var(--gold-bright); }
.sec-sub { margin-top: 16px; max-width: 560px; font-size: 14px; line-height: 1.9; color: var(--paper-dim); }
.center { text-align: center; margin-top: 46px; }

/* cards */
.cards { display: grid; gap: 18px; margin-top: 44px; }
.cards.three { grid-template-columns: repeat(3, 1fr); }
.card { position: relative; background: var(--ink2); border: 1px solid rgba(201,169,106,.22);
  padding: 28px 26px; transition: border-color .3s, transform .3s; }
.card:hover { border-color: rgba(232,207,154,.6); transform: translateY(-3px); }
.card::before { content: ''; position: absolute; top: -1px; left: -1px; width: 12px; height: 12px;
  border-top: 1px solid var(--gold); border-left: 1px solid var(--gold); }
.card-top { display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: 20px; }
.tag { font-size: 9px; letter-spacing: .35em; color: var(--gold-bright);
  border: 1px solid rgba(201,169,106,.4); padding: 5px 12px; }
.spark { width: 110px; height: 40px; fill: none; stroke: var(--gold); stroke-width: 2; opacity: .9; }
.spark .dash { stroke: rgba(201,169,106,.35); stroke-width: 1; stroke-dasharray: 3 4; }
.card h3 { font-family: var(--serif); font-size: 20px; font-weight: 700; color: var(--paper); }
.card p { margin-top: 12px; font-size: 13px; line-height: 1.9; color: var(--paper-dim); }

/* split layout */
.split { display: grid; grid-template-columns: 1.05fr .95fr; gap: 60px; align-items: center; }
.split.reverse { grid-template-columns: 1.15fr .85fr; }
.checks { list-style: none; margin: 26px 0 32px; }
.checks li { position: relative; padding: 9px 0 9px 30px; font-size: 14px; color: rgba(242,237,227,.8); }
.checks li::before { content: '✓'; position: absolute; left: 0; color: var(--gold-bright); font-weight: 700; }

/* terminal mock */
.term-card { background: rgba(10,10,14,.9); border: 1px solid rgba(201,169,106,.3); padding: 0 0 18px;
  box-shadow: 0 30px 80px rgba(0,0,0,.5); }
.term-head { display: flex; align-items: center; gap: 8px; padding: 14px 18px; border-bottom: 1px solid rgba(201,169,106,.18); }
.term-head .dot { width: 9px; height: 9px; border-radius: 50%; }
.dot.g { background: #7fb069; } .dot.y { background: var(--gold); } .dot.r { background: #c07a5a; }
.term-pair { margin-left: 10px; font-family: var(--mono); font-size: 10px; letter-spacing: .25em; color: var(--gold-bright); }
.term-chart { width: 100%; height: auto; display: block; user-select: none; }
.term-chg { margin-left: auto; font-family: var(--mono); font-size: 10px; letter-spacing: .08em;
  padding: 3px 9px; border-radius: 3px; transition: color .3s, background .3s; }
.term-chg.up { color: var(--gold-bright); background: rgba(201,169,106,.14); }
.term-chg.dn { color: #d98f6a; background: rgba(192,90,60,.16); }
#tc-grid line { stroke: rgba(201,169,106,.1); stroke-width: 1; }
#tc-axis text { fill: rgba(242,237,227,.38); font-family: var(--mono); font-size: 8.5px; }
.candle .wick { stroke-width: 1.2; }
.candle.up .wick { stroke: rgba(224,190,126,.95); }
.candle.up .body { fill: rgba(212,181,120,.92); }
.candle.dn .wick { stroke: rgba(212,130,92,.95); }
.candle.dn .body { fill: rgba(192,90,60,.88); }
.candle.live .body { filter: brightness(1.3); }
#tc-price-line { stroke: rgba(232,207,154,.5); stroke-width: 1; stroke-dasharray: 5 4; }
#tc-price-tag rect { fill: var(--gold); transition: fill .25s; }
#tc-price-tag.dn rect { fill: #c05a3c; }
#tc-price-tag text { fill: #0a0a0c; font-family: var(--mono); font-size: 8.5px; font-weight: 700; text-anchor: middle; }
#tc-dot { fill: var(--gold-bright); animation: tcPulse 1.3s ease-in-out infinite; }
#tc-dot.dn { fill: #d98f6a; }
@keyframes tcPulse { 0%,100% { opacity: 1; } 50% { opacity: .35; } }
.term-actions { display: flex; gap: 14px; padding: 0 18px; margin-top: 6px; }
.pill { flex: 1; display: flex; flex-direction: column; align-items: center; gap: 3px; padding: 10px 0 9px;
  font-family: var(--sans); cursor: pointer; transition: all .25s; }
.pill:active { transform: scale(.97); }
.pill-label { font-size: 11px; letter-spacing: .3em; font-weight: 700; }
.pill-price { font-family: var(--mono); font-size: 10.5px; letter-spacing: .06em; opacity: .8; }
.pill.sell { background: rgba(192,90,60,.16); color: #d98f6a; border: 1px solid rgba(217,143,106,.4); }
.pill.sell:hover { background: rgba(192,90,60,.32); box-shadow: 0 0 24px rgba(192,90,60,.25); }
.pill.buy { background: rgba(201,169,106,.16); color: var(--gold-bright); border: 1px solid rgba(201,169,106,.5); }
.pill.buy:hover { background: rgba(201,169,106,.3); box-shadow: 0 0 24px rgba(201,169,106,.25); }

/* ---------- broker choice modal ---------- */
#broker-modal { position: fixed; inset: 0; z-index: 95; display: flex; align-items: center; justify-content: center;
  background: rgba(5,5,8,.7); backdrop-filter: blur(6px); opacity: 0; transition: opacity .3s; }
#broker-modal.show { opacity: 1; }
.bm-card { position: relative; width: 400px; max-width: calc(100vw - 40px);
  background: rgba(12,12,16,.96); border: 1px solid rgba(201,169,106,.45); padding: 34px 30px 26px;
  transform: translateY(16px) scale(.97); transition: transform .35s cubic-bezier(.2,.9,.3,1.1);
  box-shadow: 0 40px 120px rgba(0,0,0,.6), 0 0 60px rgba(201,169,106,.08); }
#broker-modal.show .bm-card { transform: none; }
.bm-card::before, .bm-card::after { content: ''; position: absolute; width: 12px; height: 12px;
  border-color: var(--gold); border-style: solid; }
.bm-card::before { top: -1px; left: -1px; border-width: 1px 0 0 1px; }
.bm-card::after { bottom: -1px; right: -1px; border-width: 0 1px 1px 0; }
#bm-close { position: absolute; top: 6px; right: 8px; background: none; border: none;
  color: rgba(242,237,227,.45); font-size: 22px; line-height: 1; padding: 10px 12px; cursor: pointer; }
#bm-close:hover { color: var(--gold-bright); }
.bm-kicker { font-size: 9px; letter-spacing: .45em; color: var(--gold); margin-bottom: 14px; }
.bm-card h3 { font-family: var(--serif); font-size: 26px; font-weight: 700; color: var(--paper); }
.bm-sub { margin-top: 10px; font-size: 12.5px; line-height: 1.8; color: var(--paper-dim); }
.bm-list { margin-top: 24px; display: flex; flex-direction: column; gap: 10px; }
.bm-item { display: flex; justify-content: space-between; align-items: center;
  border: 1px solid rgba(201,169,106,.28); padding: 16px 20px; font-size: 14px; font-weight: 600;
  color: var(--paper); transition: all .25s; }
.bm-item i { font-style: normal; color: var(--gold); transition: transform .25s; }
.bm-item:hover { border-color: var(--gold-bright); background: rgba(201,169,106,.1); color: var(--gold-bright); }
.bm-item:hover i { transform: translateX(4px); }
.bm-fine { margin-top: 20px; font-size: 10px; line-height: 1.7; color: rgba(242,237,227,.35); text-align: center; }

/* steps & facts */
.step-ic { width: 52px; height: 52px; border: 1px solid rgba(201,169,106,.4); display: flex;
  align-items: center; justify-content: center; margin-bottom: 20px; }
.step-ic svg { width: 24px; height: 24px; fill: none; stroke: var(--gold-bright);
  stroke-width: 1.6; stroke-linecap: round; stroke-linejoin: round; }
.fact-row { margin-top: 18px; display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.fact { background: var(--ink2); border: 1px solid rgba(201,169,106,.22); padding: 24px 26px; text-align: center; }
.fact b { font-family: var(--serif); font-size: 32px; font-weight: 700; color: var(--gold-bright); }
.fact span { display: block; margin-top: 8px; font-size: 10px; letter-spacing: .2em; color: var(--paper-dim); }
.devices { margin-top: 18px; background: var(--ink2); border: 1px solid rgba(201,169,106,.22);
  padding: 22px 26px; display: flex; align-items: center; gap: 26px; flex-wrap: wrap; }
.dev-label { font-size: 11px; letter-spacing: .25em; text-transform: uppercase; color: var(--gold); }
.dev-chips { display: flex; gap: 10px; flex-wrap: wrap; }
.chip { font-size: 11px; letter-spacing: .12em; color: rgba(242,237,227,.75);
  border: 1px solid rgba(201,169,106,.28); padding: 7px 14px; }

/* promo */
.code-row { display: flex; align-items: center; gap: 16px; margin: 6px 0 30px; flex-wrap: wrap; }
#promo-code { font-family: var(--mono); font-size: 20px; letter-spacing: .3em; color: var(--gold-bright);
  border: 1px dashed rgba(201,169,106,.55); padding: 14px 24px; background: rgba(201,169,106,.06); }
.promo-steps { list-style: none; counter-reset: ps; margin-bottom: 32px; }
.promo-steps li { counter-increment: ps; position: relative; padding: 11px 0 11px 52px;
  font-size: 13.5px; color: rgba(242,237,227,.8); border-bottom: 1px solid rgba(201,169,106,.12); }
.promo-steps li::before { content: '0' counter(ps); position: absolute; left: 0; top: 11px;
  font-family: var(--mono); font-size: 12px; color: var(--gold); }
.promo-steps b { color: var(--gold-bright); font-family: var(--mono); font-weight: 400; }
.video-frame { display: none; }
#promo .fine { margin: 0 0 30px; font-size: 11px; line-height: 1.8; letter-spacing: .06em; color: rgba(242,237,227,.35); }

/* risk */
.risk-grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: 40px; margin-top: 40px; align-items: start; }
.risk-list { list-style: none; }
.risk-list li { position: relative; padding: 18px 0 18px 34px; font-size: 14.5px; color: rgba(242,237,227,.85);
  border-bottom: 1px solid rgba(201,169,106,.12); line-height: 1.7; }
.risk-list li::before { content: '✓'; position: absolute; left: 0; top: 18px; color: #7fb069; font-weight: 700; }
.warn-card { border: 1px solid rgba(217,143,106,.45); background: rgba(40,20,14,.45); padding: 26px 28px; }
.warn-title { font-size: 10px; letter-spacing: .4em; color: #d98f6a; margin-bottom: 14px; font-weight: 700; }
.warn-card p { font-size: 13px; line-height: 1.9; color: rgba(240,210,190,.85); }

/* faq */
#faq-list { margin-top: 36px; }
.faq-item { border-top: 1px solid rgba(201,169,106,.16); }
.faq-item:last-child { border-bottom: 1px solid rgba(201,169,106,.16); }
.faq-q { width: 100%; display: flex; justify-content: space-between; align-items: center; gap: 20px;
  background: none; border: none; text-align: left; padding: 24px 4px;
  font-size: 16px; font-weight: 600; color: var(--paper); transition: color .25s; }
.faq-q:hover { color: var(--gold-bright); }
.faq-q .fx { color: var(--gold); font-size: 20px; font-weight: 300; transition: transform .3s; flex: none; }
.faq-item.open .faq-q .fx { transform: rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .45s ease; }
.faq-a p { padding: 0 4px 26px; font-size: 13.5px; line-height: 1.9; color: var(--paper-dim); max-width: 760px; }

/* telegram strip */
.tg-strip { display: flex; align-items: center; gap: 22px; max-width: 1180px; margin: 0 auto;
  padding: 30px 32px; border-top: 1px solid rgba(201,169,106,.25); border-bottom: 1px solid rgba(201,169,106,.25);
  background: linear-gradient(90deg, rgba(201,169,106,.10), rgba(201,169,106,.03)); transition: background .3s; }
.tg-strip:hover { background: linear-gradient(90deg, rgba(201,169,106,.18), rgba(201,169,106,.06)); }
.tg-ic { width: 46px; height: 46px; flex: none; border-radius: 50%; background: rgba(201,169,106,.15);
  border: 1px solid rgba(201,169,106,.5); display: flex; align-items: center; justify-content: center; }
.tg-ic svg { width: 22px; height: 22px; fill: var(--gold-bright); }
.tg-text { flex: 1; font-size: 14px; color: rgba(242,237,227,.85); }
.tg-btn { flex: none; font-size: 11px; letter-spacing: .2em; text-transform: uppercase; font-weight: 700;
  color: var(--gold-bright); border: 1px solid rgba(201,169,106,.55); padding: 12px 22px; }
@media (max-width: 700px) { .tg-strip { flex-direction: column; text-align: center; } }

/* final */
.final { text-align: center; padding-top: 130px; padding-bottom: 130px; }
.final .sec-sub { margin-left: auto; margin-right: auto; }
.final .gold-btn { margin-top: 38px; }
.final .fine { margin-top: 26px; font-size: 11px; letter-spacing: .06em; color: rgba(242,237,227,.35); }

/* footer */
footer { position: relative; z-index: 10; display: flex; justify-content: space-between; gap: 30px;
  max-width: 1180px; margin: 0 auto; padding: 44px 32px 60px;
  border-top: 1px solid rgba(201,169,106,.16); background: rgba(10,10,14,.85); flex-wrap: wrap; }
.foot-tag { margin-top: 10px; font-size: 11px; letter-spacing: .12em; color: var(--paper-dim); }
.foot-right { display: flex; flex-direction: column; gap: 12px; align-items: flex-end; }
.foot-right a { font-size: 12px; letter-spacing: .1em; color: rgba(242,237,227,.75); transition: color .25s; }
.foot-right a:hover { color: var(--gold-bright); }
.foot-fine { font-size: 10px; letter-spacing: .15em; color: rgba(242,237,227,.35); }

/* ---------- push notifications ---------- */
#push-stack { position: fixed; left: 22px; bottom: 22px; z-index: 80; display: flex;
  flex-direction: column-reverse; gap: 12px; pointer-events: none; }
.push { pointer-events: auto; width: 330px; max-width: calc(100vw - 44px);
  background: rgba(12,12,16,.9); backdrop-filter: blur(14px);
  border: 1px solid rgba(201,169,106,.4); border-left: 3px solid var(--gold);
  padding: 14px 38px 14px 16px; position: relative;
  transform: translateX(-120%); transition: transform .55s cubic-bezier(.2,.9,.3,1.05), opacity .45s; }
.push.show { transform: translateX(0); }
.push.hide { opacity: 0; transform: translateX(-30%); }
.push-tag { font-family: var(--mono); font-size: 8.5px; letter-spacing: .3em; color: var(--gold); margin-bottom: 7px; }
.push-tag b { color: rgba(242,237,227,.45); font-weight: 400; }
.push-text { font-size: 12.5px; line-height: 1.65; color: rgba(242,237,227,.88); }
.push-text b { color: var(--gold-bright); font-weight: 700; }
.push-close { position: absolute; top: 6px; right: 10px; background: none; border: none;
  color: rgba(242,237,227,.4); font-size: 16px; line-height: 1; padding: 4px; }
.push-close:hover { color: var(--gold-bright); }

/* ---------- reveal on scroll ---------- */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity .8s ease, transform .8s ease; }
.reveal.in { opacity: 1; transform: none; }

/* ---------- responsive ---------- */
@media (max-width: 980px) {
  .cards.three { grid-template-columns: 1fr; }
  .split, .split.reverse { grid-template-columns: 1fr; gap: 44px; }
  .fact-row { grid-template-columns: repeat(2, 1fr); }
  .risk-grid { grid-template-columns: 1fr; }
  .hero-stats { flex-wrap: wrap; }
  .hstat { min-width: 45%; border-bottom: 1px solid rgba(201,169,106,.14); }
  .sec { padding: 80px 22px; }
  #topbar { padding: 14px 18px; }
  .hero-inner { padding: 110px 22px 60px; }
}
