/* =========================================================
   B-BILLION — Design System
   Aesthetic: institutional crypto / luxury fintech
   Palette: obsidian base, gold accent, electric-amber highlight
   ========================================================= */
@import url('https://fonts.googleapis.com/css2?family=Fraunces:opsz,wght@9..144,300;9..144,400;9..144,500;9..144,600;9..144,700;9..144,900&family=JetBrains+Mono:wght@300;400;500;600;700&family=Manrope:wght@300;400;500;600;700;800&display=swap');

:root {
  --bg-0: #07080a;
  --bg-1: #0c0e12;
  --bg-2: #11141a;
  --bg-3: #181c24;
  --line: rgba(255,255,255,0.08);
  --line-strong: rgba(255,255,255,0.16);
  --ink-0: #fafafa;
  --ink-1: #d6d8dc;
  --ink-2: #8a8d95;
  --ink-3: #5a5d65;
  --gold: #f5b544;
  --gold-deep: #c8881e;
  --gold-glow: rgba(245,181,68,0.35);
  --amber: #ffb547;
  --green: #4ade80;
  --red: #ff5a5a;
  --serif: 'Fraunces', 'Times New Roman', serif;
  --sans: 'Manrope', system-ui, sans-serif;
  --mono: 'JetBrains Mono', ui-monospace, monospace;
  --radius: 14px;
  --radius-lg: 22px;
}
* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--sans);
  background: var(--bg-0);
  color: var(--ink-1);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  position: relative;
}
body::before {
  content: '';
  position: fixed; inset: 0;
  pointer-events: none;
  z-index: 1000;
  opacity: 0.045;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='200' height='200'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='3'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
}
.grid-bg {
  position: fixed; inset: 0;
  pointer-events: none;
  z-index: -1;
  background-image:
    linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(ellipse at center, black 0%, transparent 75%);
}
.glow-bg {
  position: fixed;
  top: -200px; left: 50%;
  transform: translateX(-50%);
  width: 1200px; height: 800px;
  background: radial-gradient(ellipse at center, rgba(245,181,68,0.18) 0%, transparent 60%);
  filter: blur(80px);
  pointer-events: none;
  z-index: -1;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

/* ========== TOP BAR / NAV ========== */
.topbar {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 16px 40px;
  background: rgba(7,8,10,0.65);
  backdrop-filter: blur(18px) saturate(1.4);
  -webkit-backdrop-filter: blur(18px) saturate(1.4);
  border-bottom: 1px solid var(--line);
}
.brand {
  display: flex; align-items: center; gap: 12px;
  font-family: var(--serif);
  font-weight: 700;
  letter-spacing: 0.02em;
  font-size: 22px;
  color: var(--ink-0);
}
.brand-mark {
  width: 34px; height: 34px;
  display: grid; place-items: center;
  border: 1px solid var(--gold);
  border-radius: 8px;
  background: linear-gradient(135deg, rgba(245,181,68,0.18), rgba(245,181,68,0.02));
  color: var(--gold);
  font-family: var(--serif);
  font-weight: 900;
  font-size: 18px;
  position: relative;
}
.brand-mark::after{
  content:''; position:absolute; inset:-3px; border:1px solid rgba(245,181,68,0.25);
  border-radius:11px;
}
.brand-tail {
  font-family: var(--mono);
  font-weight: 400;
  font-size: 11px;
  color: var(--ink-2);
  letter-spacing: 0.18em;
  margin-left: 4px;
  border-left: 1px solid var(--line-strong);
  padding-left: 10px;
}
.nav-links {
  display: flex; gap: 28px;
  font-size: 14px;
  font-weight: 500;
  color: var(--ink-2);
}
.nav-links a {
  position: relative;
  transition: color .25s ease;
}
.nav-links a:hover { color: var(--ink-0); }
.nav-links a::after {
  content: ''; position: absolute; left:0; bottom: -6px;
  width: 0; height: 1px; background: var(--gold);
  transition: width .3s ease;
}
.nav-links a:hover::after { width: 100%; }

.top-actions { display: flex; align-items: center; gap: 12px; }
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 10px 18px;
  font-family: var(--sans);
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.04em;
  border-radius: 10px;
  border: 1px solid var(--line-strong);
  background: transparent;
  color: var(--ink-0);
  cursor: pointer;
  transition: all .2s ease;
  text-transform: uppercase;
}
.btn:hover { border-color: var(--gold); color: var(--gold); }
.btn-primary {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-deep) 100%);
  color: #1a1208;
  border-color: transparent;
  box-shadow: 0 8px 24px -8px var(--gold-glow);
}
.btn-primary:hover {
  color: #1a1208;
  filter: brightness(1.08);
  transform: translateY(-1px);
  box-shadow: 0 12px 32px -10px var(--gold-glow);
}
.btn-ghost {
  background: rgba(255,255,255,0.03);
}

/* ========== HERO ========== */
.hero {
  position: relative;
  padding: 160px 40px 80px;
  min-height: 100vh;
  display: flex; align-items: center;
  overflow: hidden;
}
.hero-grid {
  width: 100%;
  max-width: 1320px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 80px;
  align-items: center;
}
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 6px 14px;
  border: 1px solid var(--line-strong);
  border-radius: 100px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.2em;
  color: var(--ink-2);
  text-transform: uppercase;
  margin-bottom: 28px;
  background: rgba(255,255,255,0.02);
}
.hero-eyebrow .pulse {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 0 rgba(74,222,128,0.6);
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%,100% { box-shadow: 0 0 0 0 rgba(74,222,128,0.5); }
  50% { box-shadow: 0 0 0 8px rgba(74,222,128,0); }
}
.hero h1 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(48px, 6.4vw, 96px);
  line-height: 0.96;
  letter-spacing: -0.025em;
  color: var(--ink-0);
  margin-bottom: 28px;
  font-variation-settings: "opsz" 144;
}
.hero h1 em {
  font-style: italic;
  font-weight: 300;
  color: var(--gold);
  position: relative;
}
.hero h1 em::before {
  content: '';
  position: absolute;
  left: -4px; right: -4px; bottom: 0.08em;
  height: 0.08em;
  background: linear-gradient(90deg, transparent, var(--gold-glow), transparent);
}
.hero p.lead {
  font-size: 18px;
  color: var(--ink-1);
  max-width: 540px;
  line-height: 1.6;
  margin-bottom: 38px;
}
.hero-cta-row { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 56px; }
.hero-cta-row .btn { padding: 14px 24px; font-size: 13px; }

.hero-meta {
  display: grid;
  grid-template-columns: repeat(3, auto);
  gap: 32px;
  border-top: 1px solid var(--line);
  padding-top: 28px;
  max-width: 540px;
}
.hero-meta .item .k {
  font-family: var(--mono);
  font-size: 11px;
  color: var(--ink-2);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 6px;
}
.hero-meta .item .v {
  font-family: var(--serif);
  font-size: 28px;
  color: var(--ink-0);
  font-weight: 500;
  letter-spacing: -0.02em;
}

.hero-visual {
  position: relative;
  height: 580px;
}
.orb {
  position: absolute;
  top: 30px; right: 0;
  width: 420px; height: 420px;
  border-radius: 50%;
  background:
    radial-gradient(circle at 32% 28%, #ffd980 0%, #f5b544 22%, #c8881e 55%, #5a3a0d 100%);
  box-shadow:
    inset -40px -60px 120px rgba(0,0,0,0.5),
    inset 30px 30px 60px rgba(255,224,168,0.4),
    0 30px 100px -20px rgba(245,181,68,0.4),
    0 0 200px rgba(245,181,68,0.18);
  animation: float 8s ease-in-out infinite;
}
.orb::before {
  content: '₿';
  position: absolute;
  inset: 0;
  display: grid; place-items: center;
  font-family: var(--serif);
  font-weight: 700;
  font-size: 220px;
  color: rgba(255,255,255,0.12);
  text-shadow: 2px 2px 0 rgba(0,0,0,0.18);
}
.orb::after {
  content: '';
  position: absolute;
  top: 8%; left: 14%;
  width: 50%; height: 30%;
  border-radius: 50%;
  background: radial-gradient(ellipse, rgba(255,255,255,0.55), transparent 70%);
  filter: blur(8px);
}
.orb-ring {
  position: absolute;
  border: 1px dashed rgba(245,181,68,0.3);
  border-radius: 50%;
  animation: spin 30s linear infinite;
}
.orb-ring.r1 { top: -20px; right: -50px; width: 520px; height: 520px; animation-duration: 60s; }
.orb-ring.r2 { top: 60px; right: 30px; width: 360px; height: 360px; animation-direction: reverse; }
.orb-ring .dot {
  position: absolute;
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 12px var(--gold-glow);
}
.orb-ring.r1 .dot { top: -4px; left: 50%; }
.orb-ring.r2 .dot { top: 50%; left: -4px; background: var(--green); box-shadow: 0 0 12px rgba(74,222,128,0.6); }

@keyframes spin { to { transform: rotate(360deg); } }
@keyframes float {
  0%,100% { transform: translateY(0); }
  50%     { transform: translateY(-18px); }
}

.trade-card {
  position: absolute;
  bottom: 30px; left: -20px;
  width: 320px;
  padding: 18px 20px;
  border-radius: var(--radius);
  background: rgba(17,20,26,0.85);
  backdrop-filter: blur(20px);
  border: 1px solid var(--line-strong);
  box-shadow: 0 30px 80px -20px rgba(0,0,0,0.7);
}
.trade-card .tc-head {
  display: flex; justify-content: space-between; align-items: center;
  font-family: var(--mono); font-size: 11px; color: var(--ink-2);
  letter-spacing: 0.16em; text-transform: uppercase;
  margin-bottom: 14px;
  padding-bottom: 12px;
  border-bottom: 1px dashed var(--line);
}
.tc-head .live { color: var(--green); display: flex; align-items: center; gap: 6px; }
.tc-head .live::before {
  content: ''; width: 6px; height: 6px; border-radius: 50%;
  background: var(--green); box-shadow: 0 0 8px var(--green);
  animation: pulse 1.5s infinite;
}
.tc-row {
  display: grid; grid-template-columns: 1fr auto;
  gap: 6px; padding: 6px 0;
  font-family: var(--mono); font-size: 12px;
}
.tc-row .pair { color: var(--ink-1); }
.tc-row .delta.up { color: var(--green); }
.tc-row .delta.down { color: var(--red); }

.minichart {
  position: absolute;
  top: 40px; left: -10px;
  width: 230px;
  padding: 14px 16px;
  border-radius: var(--radius);
  background: rgba(17,20,26,0.85);
  backdrop-filter: blur(20px);
  border: 1px solid var(--line-strong);
  box-shadow: 0 30px 80px -20px rgba(0,0,0,0.7);
}
.minichart .label {
  font-family: var(--mono); font-size: 10px; color: var(--ink-2);
  letter-spacing: 0.18em; text-transform: uppercase;
  margin-bottom: 4px;
}
.minichart .val {
  font-family: var(--serif); font-size: 22px; color: var(--ink-0);
  font-weight: 500;
}
.minichart .pct {
  font-family: var(--mono); font-size: 11px; color: var(--green);
  margin-bottom: 8px;
}

/* MARQUEE */
.marquee {
  position: relative;
  padding: 18px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--bg-1);
  overflow: hidden;
}
.marquee-track {
  display: flex; gap: 56px;
  animation: scroll 60s linear infinite;
  white-space: nowrap;
}
.marquee-item {
  display: inline-flex; align-items: center; gap: 12px;
  font-family: var(--mono); font-size: 13px;
  color: var(--ink-1);
}
.marquee-item .sym { color: var(--gold); font-weight: 600; }
.marquee-item .up { color: var(--green); }
.marquee-item .down { color: var(--red); }
@keyframes scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ========== SECTION SCAFFOLD ========== */
section { position: relative; padding: 120px 40px; }
.container { max-width: 1320px; margin: 0 auto; }
.section-head {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 60px;
  margin-bottom: 80px;
  align-items: end;
}
.section-eyebrow {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 22px;
  display: flex; align-items: center; gap: 10px;
}
.section-eyebrow::before {
  content: ''; width: 28px; height: 1px; background: var(--gold);
}
.section-title {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(36px, 4.2vw, 64px);
  line-height: 1;
  letter-spacing: -0.02em;
  color: var(--ink-0);
}
.section-title em { font-style: italic; color: var(--gold); font-weight: 300; }
.section-sub {
  color: var(--ink-2);
  font-size: 16px;
  line-height: 1.65;
  max-width: 460px;
  justify-self: end;
}

/* ========== STATS BAND ========== */
.stats-band {
  padding: 60px 40px;
  background: linear-gradient(180deg, var(--bg-1) 0%, var(--bg-0) 100%);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.stats-grid {
  max-width: 1320px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}
.stat {
  padding: 24px 28px;
  border-right: 1px solid var(--line);
  position: relative;
}
.stat:last-child { border-right: none; }
.stat .label {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  color: var(--ink-2);
  text-transform: uppercase;
  margin-bottom: 14px;
}
.stat .value {
  font-family: var(--serif);
  font-size: 52px;
  font-weight: 500;
  color: var(--ink-0);
  letter-spacing: -0.025em;
  line-height: 1;
  margin-bottom: 10px;
}
.stat .value .accent { color: var(--gold); }
.stat .meta {
  font-size: 12px;
  color: var(--ink-2);
  font-family: var(--mono);
}

/* ========== ABOUT THE CLUB ========== */
.club { position: relative; }
.club-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 80px;
  align-items: center;
}
.club-text h3 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(32px, 3.6vw, 56px);
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--ink-0);
  margin-bottom: 28px;
}
.club-text p {
  color: var(--ink-1);
  margin-bottom: 18px;
  font-size: 16px;
  line-height: 1.7;
}
.club-text .pull {
  font-family: var(--serif);
  font-style: italic;
  font-size: 22px;
  color: var(--gold);
  border-left: 2px solid var(--gold);
  padding-left: 22px;
  margin: 30px 0;
  font-weight: 400;
}
.member-counter {
  position: relative;
  aspect-ratio: 1;
  border-radius: var(--radius-lg);
  background:
    radial-gradient(circle at 30% 25%, rgba(245,181,68,0.18), transparent 60%),
    var(--bg-2);
  border: 1px solid var(--line-strong);
  padding: 40px;
  display: flex; flex-direction: column; justify-content: space-between;
  overflow: hidden;
}
.member-counter::before {
  content: '';
  position: absolute;
  top: -50%; right: -30%;
  width: 120%; height: 200%;
  background:
    repeating-radial-gradient(circle, transparent 0, transparent 38px, rgba(245,181,68,0.08) 38px, rgba(245,181,68,0.08) 39px);
  pointer-events: none;
}
.member-counter .top {
  position: relative;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink-2);
  display: flex; justify-content: space-between;
}
.member-counter .top .filled { color: var(--gold); }
.member-counter .big {
  position: relative;
  font-family: var(--serif);
  font-size: clamp(120px, 14vw, 220px);
  font-weight: 400;
  letter-spacing: -0.04em;
  color: var(--ink-0);
  line-height: 0.9;
}
.member-counter .big sup {
  font-size: 0.3em;
  color: var(--gold);
  vertical-align: top;
  margin-left: 8px;
  font-family: var(--mono);
  font-weight: 400;
  letter-spacing: 0;
}
.member-counter .bot {
  position: relative;
  font-family: var(--sans);
  font-size: 14px;
  color: var(--ink-2);
  display: flex; justify-content: space-between;
  align-items: center;
}
.member-counter .bot .badge {
  font-family: var(--mono); font-size: 10px;
  padding: 5px 10px;
  border: 1px solid var(--gold);
  border-radius: 100px;
  color: var(--gold);
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
.member-grid-vis {
  position: relative;
  margin-top: 18px;
  display: grid;
  grid-template-columns: repeat(20, 1fr);
  gap: 4px;
}
.member-grid-vis .dot {
  aspect-ratio: 1;
  background: rgba(245,181,68,0.6);
  border-radius: 2px;
}
.member-grid-vis .dot.empty { background: rgba(255,255,255,0.06); }

/* ========== ALGO TRADING SECTION ========== */
.algo {
  background: linear-gradient(180deg, var(--bg-0) 0%, var(--bg-1) 50%, var(--bg-0) 100%);
}
.algo-features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 80px;
}
.feature-card {
  padding: 36px;
  border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(255,255,255,0.025), rgba(255,255,255,0.005));
  border: 1px solid var(--line);
  position: relative;
  overflow: hidden;
  transition: all .35s ease;
}
.feature-card:hover {
  border-color: rgba(245,181,68,0.4);
  transform: translateY(-4px);
  box-shadow: 0 30px 60px -20px rgba(0,0,0,0.5);
}
.feature-card::before {
  content: '';
  position: absolute;
  top: -50%; left: -50%;
  width: 200%; height: 200%;
  background: radial-gradient(circle at center, rgba(245,181,68,0.06), transparent 40%);
  opacity: 0;
  transition: opacity .35s ease;
  pointer-events: none;
}
.feature-card:hover::before { opacity: 1; }
.feature-num {
  font-family: var(--mono);
  font-size: 11px;
  color: var(--ink-3);
  letter-spacing: 0.2em;
  margin-bottom: 30px;
}
.feature-icon {
  width: 56px; height: 56px;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(245,181,68,0.15), rgba(245,181,68,0.04));
  border: 1px solid rgba(245,181,68,0.25);
  display: grid; place-items: center;
  margin-bottom: 24px;
}
.feature-icon svg { width: 26px; height: 26px; stroke: var(--gold); fill: none; stroke-width: 1.4; }
.feature-card h4 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 24px;
  color: var(--ink-0);
  margin-bottom: 14px;
  letter-spacing: -0.01em;
}
.feature-card p {
  font-size: 14.5px; color: var(--ink-2);
  line-height: 1.65;
}

.algo-perf {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 40px;
  padding: 48px;
  border-radius: var(--radius-lg);
  background:
    radial-gradient(circle at 90% 0%, rgba(245,181,68,0.12), transparent 50%),
    var(--bg-2);
  border: 1px solid var(--line-strong);
  align-items: center;
}
.chart-wrap { position: relative; height: 320px; }
.chart-wrap svg { width: 100%; height: 100%; }
.algo-perf-text h4 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 36px;
  letter-spacing: -0.02em;
  margin-bottom: 18px;
  color: var(--ink-0);
}
.algo-perf-text h4 em { color: var(--gold); font-style: italic; }
.algo-perf-text p {
  font-size: 15px; color: var(--ink-2); line-height: 1.65;
  margin-bottom: 28px;
}
.perf-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.perf-stat .l {
  font-family: var(--mono); font-size: 10px; color: var(--ink-2);
  letter-spacing: 0.2em; text-transform: uppercase; margin-bottom: 6px;
}
.perf-stat .v {
  font-family: var(--serif); font-size: 32px; color: var(--ink-0);
  font-weight: 500; letter-spacing: -0.02em;
}
.perf-stat .v.gold { color: var(--gold); }

/* ========== EXCHANGE SECTION ========== */
.exchange { background: var(--bg-0); }
.exchange-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.cb-card {
  position: relative;
  border-radius: var(--radius-lg);
  border: 1px solid var(--line-strong);
  background: var(--bg-2);
  padding: 40px;
  overflow: hidden;
}
.cb-card::before {
  content: '';
  position: absolute;
  top: -100px; right: -100px;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(0,82,255,0.18), transparent 60%);
  pointer-events: none;
}
.cb-logo {
  display: flex; align-items: center; gap: 14px;
  margin-bottom: 32px;
  padding-bottom: 24px;
  border-bottom: 1px dashed var(--line);
}
.cb-circle {
  width: 48px; height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, #0052ff, #003fc7);
  display: grid; place-items: center;
  font-family: var(--serif); font-weight: 700;
  font-size: 24px; color: white;
}
.cb-title { font-family: var(--serif); font-size: 24px; color: var(--ink-0); font-weight: 500; }
.cb-tag { font-family: var(--mono); font-size: 11px; color: var(--ink-2); letter-spacing: 0.18em; text-transform: uppercase; }
.cb-row {
  display: grid; grid-template-columns: 1fr auto;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
  align-items: center;
}
.cb-row:last-child { border-bottom: none; }
.cb-row .lbl { font-size: 13px; color: var(--ink-1); }
.cb-row .lbl span { display: block; font-size: 11px; color: var(--ink-3); margin-top: 4px; font-family: var(--mono); }
.cb-row .v { font-family: var(--mono); font-weight: 600; color: var(--ink-0); font-size: 14px; }
.cb-row .v.gold { color: var(--gold); }
.cb-row .v.green { color: var(--green); }
.exchange-text h3 {
  font-family: var(--serif);
  font-size: clamp(32px, 3.6vw, 52px);
  font-weight: 400;
  letter-spacing: -0.02em;
  line-height: 1.05;
  margin-bottom: 28px;
  color: var(--ink-0);
}
.exchange-text h3 em { color: var(--gold); font-style: italic; }
.exchange-text p { color: var(--ink-1); font-size: 16px; line-height: 1.7; margin-bottom: 18px; }
.checklist { margin-top: 30px; }
.checklist li {
  list-style: none;
  display: flex; align-items: flex-start; gap: 14px;
  padding: 14px 0;
  border-top: 1px solid var(--line);
  font-size: 15px;
  color: var(--ink-1);
}
.checklist li:last-child { border-bottom: 1px solid var(--line); }
.check-dot {
  flex-shrink: 0;
  width: 22px; height: 22px;
  margin-top: 2px;
  border-radius: 50%;
  background: rgba(245,181,68,0.12);
  border: 1px solid rgba(245,181,68,0.4);
  display: grid; place-items: center;
  color: var(--gold);
  font-size: 12px;
}

/* ========== FUTURE SECTION ========== */
.future {
  background:
    radial-gradient(ellipse at top, rgba(245,181,68,0.06), transparent 60%),
    var(--bg-1);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.future-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  margin-bottom: 60px;
}
.future-text .big-num {
  font-family: var(--serif);
  font-size: clamp(110px, 13vw, 200px);
  line-height: 0.85;
  letter-spacing: -0.05em;
  color: var(--ink-0);
  font-weight: 400;
  margin-bottom: 30px;
}
.future-text .big-num em { color: var(--gold); font-style: italic; font-weight: 300; }
.future-text .big-num sup { font-size: 0.25em; color: var(--ink-2); margin-left: 10px; vertical-align: top; font-family: var(--mono); letter-spacing: 0; }
.future-text .label {
  font-family: var(--mono); font-size: 11px;
  letter-spacing: 0.2em; color: var(--ink-2);
  text-transform: uppercase; margin-bottom: 10px;
}
.future-text p { color: var(--ink-1); font-size: 16px; line-height: 1.7; }
.future-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.fc {
  padding: 28px;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: rgba(255,255,255,0.02);
  position: relative;
  overflow: hidden;
}
.fc .fc-num {
  position: absolute; top: 14px; right: 18px;
  font-family: var(--mono); font-size: 11px; color: var(--ink-3); letter-spacing: 0.18em;
}
.fc h5 {
  font-family: var(--serif); font-weight: 500;
  font-size: 19px; color: var(--ink-0);
  margin-bottom: 12px; letter-spacing: -0.01em;
}
.fc p { font-size: 13.5px; color: var(--ink-2); line-height: 1.6; }
.fc-icon {
  width: 38px; height: 38px;
  border-radius: 8px;
  background: rgba(245,181,68,0.1);
  border: 1px solid rgba(245,181,68,0.2);
  display: grid; place-items: center;
  margin-bottom: 18px;
  color: var(--gold);
  font-family: var(--serif); font-weight: 700; font-size: 18px;
}
.timeline {
  margin-top: 60px;
  padding: 40px;
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  position: relative;
  overflow: hidden;
}
.timeline-rail {
  position: relative;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
}
.timeline-rail::before {
  content: '';
  position: absolute;
  left: 5%; right: 5%;
  top: 22px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}
.tl-node { position: relative; text-align: center; padding-top: 40px; }
.tl-node .marker {
  position: absolute;
  top: 14px; left: 50%; transform: translateX(-50%);
  width: 16px; height: 16px;
  border-radius: 50%;
  background: var(--bg-2);
  border: 2px solid var(--gold);
  z-index: 2;
}
.tl-node .marker::after {
  content: '';
  position: absolute; inset: 3px;
  border-radius: 50%;
  background: var(--gold);
}
.tl-node .yr {
  font-family: var(--mono);
  font-size: 11px;
  color: var(--gold);
  letter-spacing: 0.18em;
  margin-bottom: 8px;
}
.tl-node .ev {
  font-family: var(--serif);
  font-size: 15px;
  color: var(--ink-0);
  line-height: 1.3;
  font-weight: 400;
}

/* ========== FOUNDER ========== */
.founder { background: var(--bg-0); position: relative; }
.founder-head {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 60px;
  align-items: end;
  margin-bottom: 60px;
}
.founder-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 60px;
  align-items: start;
}
.bob-portrait {
  position: relative;
  aspect-ratio: 4/5;
  border-radius: var(--radius-lg);
  border: 1px solid var(--line-strong);
  background:
    radial-gradient(circle at 30% 20%, rgba(245,181,68,0.18), transparent 60%),
    linear-gradient(180deg, #1a1d24, #0c0e12);
  overflow: hidden;
}
.bob-portrait svg { width: 100%; height: 100%; display: block; }

/* Carousel */
.bob-carousel { position: relative; width: 100%; height: 100%; }
.bob-slides { width: 100%; height: 100%; }
.bob-slide { position: absolute; inset: 0; opacity: 0; transition: opacity 0.5s ease; }
.bob-slide.active { opacity: 1; position: relative; }
.bob-slide img { width: 100%; height: 100%; object-fit: cover; object-position: top; display: block; }
.bob-prev, .bob-next {
  position: absolute; top: 50%; transform: translateY(-50%);
  background: rgba(7,8,10,0.6); border: 1px solid var(--line-strong);
  color: var(--ink-0); font-size: 28px; line-height: 1;
  width: 40px; height: 40px; border-radius: 50%;
  cursor: pointer; display: flex; align-items: center; justify-content: center;
  transition: background 0.2s, border-color 0.2s; z-index: 2;
}
.bob-prev { left: 12px; }
.bob-next { right: 12px; }
.bob-prev:hover, .bob-next:hover { background: rgba(245,181,68,0.15); border-color: var(--gold); }
.bob-dots { position: absolute; bottom: 64px; left: 50%; transform: translateX(-50%); display: flex; gap: 6px; z-index: 2; }
.bob-dot { width: 6px; height: 6px; border-radius: 50%; background: rgba(255,255,255,0.3); cursor: pointer; transition: background 0.2s; }
.bob-dot.active { background: var(--gold); }
.bob-portrait .meta {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 24px;
  background: linear-gradient(180deg, transparent, rgba(7,8,10,0.85));
}
.bob-portrait .name-tag {
  font-family: var(--serif);
  font-size: 26px;
  font-weight: 500;
  color: var(--ink-0);
  letter-spacing: -0.01em;
}
.bob-portrait .role-tag {
  font-family: var(--mono);
  font-size: 11px;
  color: var(--gold);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-top: 4px;
}
.bob-thumbs {
  margin-top: 20px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}
.bob-thumb {
  aspect-ratio: 1;
  border-radius: 10px;
  border: 1px solid var(--line);
  background: var(--bg-2);
  overflow: hidden;
  position: relative;
}
.bob-thumb svg { width: 100%; height: 100%; }
.bob-bio h3 {
  font-family: var(--serif);
  font-size: clamp(32px, 3.6vw, 52px);
  font-weight: 400;
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--ink-0);
  margin-bottom: 28px;
}
.bob-bio h3 em { color: var(--gold); font-style: italic; }
.bob-bio p {
  font-size: 15.5px;
  color: var(--ink-1);
  line-height: 1.75;
  margin-bottom: 18px;
}
.bob-quote {
  margin-top: 36px;
  padding: 28px 32px;
  border-radius: var(--radius);
  background: rgba(245,181,68,0.05);
  border-left: 3px solid var(--gold);
  font-family: var(--serif);
  font-style: italic;
  font-size: 22px;
  color: var(--ink-0);
  line-height: 1.45;
  font-weight: 400;
}
.bob-quote::before { content: '"'; font-size: 60px; color: var(--gold); float: left; line-height: 0.7; margin-right: 8px; font-style: normal;}
.bob-quote .who {
  display: block; margin-top: 18px;
  font-family: var(--mono);
  font-style: normal;
  font-size: 11px;
  color: var(--ink-2);
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
.bob-credentials {
  margin-top: 40px;
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 18px;
}
.cred {
  padding: 20px;
  border-radius: 10px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,0.02);
}
.cred .v {
  font-family: var(--serif);
  font-size: 28px;
  color: var(--gold);
  font-weight: 500;
  line-height: 1;
  margin-bottom: 6px;
  letter-spacing: -0.02em;
}
.cred .l {
  font-family: var(--mono);
  font-size: 10px;
  color: var(--ink-2);
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

/* ========== CTA ========== */
.cta-section {
  padding: 140px 40px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 900px; height: 900px;
  background: radial-gradient(circle, rgba(245,181,68,0.13), transparent 60%);
  filter: blur(40px);
  pointer-events: none;
}
.cta-section .container { position: relative; }
.cta-section h2 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(48px, 6vw, 96px);
  line-height: 0.98;
  letter-spacing: -0.025em;
  color: var(--ink-0);
  margin-bottom: 30px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}
.cta-section h2 em { font-style: italic; color: var(--gold); }
.cta-section p {
  color: var(--ink-1);
  font-size: 18px;
  max-width: 560px;
  margin: 0 auto 40px;
  line-height: 1.6;
}
.cta-row { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.cta-row .btn { padding: 16px 28px; font-size: 14px; }

/* ========== FOOTER ========== */
.footer {
  border-top: 1px solid var(--line);
  padding: 60px 40px 30px;
  background: var(--bg-1);
}
.footer-grid {
  max-width: 1320px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 50px;
}
.footer h6 {
  font-family: var(--mono);
  font-size: 11px;
  color: var(--ink-2);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 18px;
}
.footer ul { list-style: none; }
.footer li { padding: 6px 0; font-size: 14px; }
.footer li a { color: var(--ink-1); transition: color .2s; }
.footer li a:hover { color: var(--gold); }
.footer-brand p {
  font-size: 14px; color: var(--ink-2); margin-top: 18px; max-width: 320px;
  line-height: 1.6;
}
.footer-bot {
  max-width: 1320px;
  margin: 0 auto;
  padding-top: 28px;
  border-top: 1px solid var(--line);
  display: flex; justify-content: space-between;
  font-family: var(--mono);
  font-size: 11px;
  color: var(--ink-3);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.footer-watermark {
  font-family: var(--serif);
  font-size: clamp(80px, 16vw, 280px);
  font-weight: 400;
  letter-spacing: -0.05em;
  color: rgba(255,255,255,0.025);
  text-align: center;
  margin: 60px 0 -30px;
  line-height: 0.8;
  user-select: none;
}

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

/* ========== LOGIN PAGE ========== */
.login-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.login-card {
  width: 100%;
  max-width: 460px;
  background: var(--bg-2);
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-lg);
  padding: 44px 40px;
  position: relative;
  box-shadow: 0 40px 100px -20px rgba(0,0,0,0.8);
}
.login-card::before {
  content: '';
  position: absolute;
  top: -80px; left: 50%;
  transform: translateX(-50%);
  width: 400px; height: 300px;
  background: radial-gradient(ellipse at center, rgba(245,181,68,0.14), transparent 70%);
  pointer-events: none;
}
.login-logo {
  display: flex; align-items: center; gap: 12px;
  margin-bottom: 6px;
}
.login-title {
  font-family: var(--serif);
  font-size: 28px;
  font-weight: 400;
  color: var(--ink-0);
  letter-spacing: -0.02em;
  margin-bottom: 6px;
  margin-top: 22px;
}
.login-sub {
  font-size: 14px;
  color: var(--ink-2);
  margin-bottom: 30px;
  line-height: 1.5;
}
.tab-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border: 1px solid var(--line-strong);
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 28px;
}
.tab-btn {
  padding: 11px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  background: transparent;
  color: var(--ink-2);
  border: none;
  cursor: pointer;
  transition: all .2s;
}
.tab-btn.active {
  background: rgba(245,181,68,0.12);
  color: var(--gold);
}
.tab-btn:hover:not(.active) { color: var(--ink-0); }
.tab-pane { display: none; }
.tab-pane.active { display: block; }
.field-label {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  color: var(--ink-2);
  text-transform: uppercase;
  margin-bottom: 6px;
  display: block;
}
.field-input {
  width: 100%;
  padding: 12px 14px;
  background: var(--bg-1);
  border: 1px solid var(--line-strong);
  border-radius: 8px;
  color: var(--ink-0);
  font-family: var(--mono);
  font-size: 13px;
  outline: none;
  transition: border-color .2s;
  margin-bottom: 18px;
}
.field-input:focus { border-color: var(--gold); }
.field-input::placeholder { color: var(--ink-3); }
.field-error {
  font-family: var(--mono);
  font-size: 11px;
  color: var(--red);
  margin-top: -14px;
  margin-bottom: 14px;
  display: none;
}
.field-error.show { display: block; }
.login-btn-full {
  width: 100%;
  justify-content: center;
  padding: 14px;
  font-size: 13px;
  margin-top: 6px;
}
.metamask-area {
  text-align: center;
  padding: 10px 0;
}
.metamask-icon {
  width: 64px; height: 64px;
  margin: 0 auto 18px;
}
.metamask-desc {
  font-size: 13px;
  color: var(--ink-2);
  margin-bottom: 24px;
  line-height: 1.6;
}
.mm-status {
  font-family: var(--mono);
  font-size: 11px;
  color: var(--ink-2);
  text-align: center;
  margin-top: 14px;
  min-height: 18px;
  letter-spacing: 0.1em;
}
.mm-status.error { color: var(--red); }
.mm-status.success { color: var(--green); }
.login-footer-note {
  font-family: var(--mono);
  font-size: 11px;
  color: var(--ink-3);
  text-align: center;
  margin-top: 22px;
  letter-spacing: 0.1em;
}
.back-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--mono);
  font-size: 11px;
  color: var(--ink-2);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 28px;
  transition: color .2s;
}
.back-link:hover { color: var(--gold); }

/* ========== DASHBOARD PAGE ========== */
.dashboard-page {
  padding-top: 80px;
  min-height: 100vh;
}
.dash-main {
  max-width: 1200px;
  margin: 0 auto;
  padding: 48px 40px;
}
.dash-eyebrow {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.2em;
  color: var(--ink-2);
  text-transform: uppercase;
  margin-bottom: 8px;
  display: flex; align-items: center; gap: 8px;
}
.dash-eyebrow .dot-live {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--green); box-shadow: 0 0 8px var(--green);
  animation: pulse 2s infinite;
}
.dash-title {
  font-family: var(--serif);
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 400;
  letter-spacing: -0.025em;
  color: var(--ink-0);
  margin-bottom: 40px;
}
.dash-title em { color: var(--gold); font-style: italic; }

/* Profile + invest row */
.dash-top {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 24px;
  margin-bottom: 24px;
}
.user-card {
  padding: 32px;
  border-radius: var(--radius-lg);
  background:
    radial-gradient(circle at 20% 20%, rgba(245,181,68,0.1), transparent 60%),
    var(--bg-2);
  border: 1px solid var(--line-strong);
}
.user-avatar {
  width: 60px; height: 60px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--gold-deep));
  display: grid; place-items: center;
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 700;
  color: #1a1208;
  margin-bottom: 18px;
}
.user-name {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 500;
  color: var(--ink-0);
  letter-spacing: -0.01em;
  margin-bottom: 4px;
}
.user-meta {
  font-family: var(--mono);
  font-size: 11px;
  color: var(--ink-2);
  letter-spacing: 0.14em;
  margin-bottom: 14px;
}
.user-status {
  display: inline-flex; align-items: center; gap: 7px;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--green);
  padding: 5px 12px;
  border: 1px solid rgba(74,222,128,0.3);
  border-radius: 100px;
  background: rgba(74,222,128,0.07);
}
.user-status::before {
  content: '';
  width: 5px; height: 5px; border-radius: 50%;
  background: var(--green);
}
.user-wallet {
  margin-top: 18px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
  font-family: var(--mono);
  font-size: 11px;
  color: var(--ink-3);
  letter-spacing: 0.08em;
}
.user-wallet span {
  display: block;
  font-size: 10px;
  color: var(--ink-3);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 5px;
}

.invest-card {
  padding: 32px;
  border-radius: var(--radius-lg);
  background:
    radial-gradient(circle at 90% 10%, rgba(245,181,68,0.1), transparent 50%),
    var(--bg-2);
  border: 1px solid var(--line-strong);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.invest-metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  margin-bottom: 24px;
}
.invest-metric {
  padding: 22px 20px;
  border-right: 1px solid var(--line);
}
.invest-metric:last-child { border-right: none; }
.invest-metric .im-label {
  font-family: var(--mono);
  font-size: 10px;
  color: var(--ink-2);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.invest-metric .im-value {
  font-family: var(--serif);
  font-size: 30px;
  font-weight: 500;
  color: var(--ink-0);
  letter-spacing: -0.025em;
  line-height: 1;
}
.invest-metric .im-value.gold { color: var(--gold); }
.invest-metric .im-value.green { color: var(--green); }

/* Algo description block */
.algo-desc {
  padding: 32px;
  border-radius: var(--radius-lg);
  background: var(--bg-2);
  border: 1px solid var(--line);
  margin-bottom: 24px;
}
.algo-desc-head {
  display: flex; align-items: center; gap: 14px;
  margin-bottom: 18px;
}
.algo-desc-icon {
  width: 44px; height: 44px;
  border-radius: 10px;
  background: linear-gradient(135deg, rgba(245,181,68,0.15), rgba(245,181,68,0.04));
  border: 1px solid rgba(245,181,68,0.25);
  display: grid; place-items: center;
}
.algo-desc-icon svg { width: 22px; height: 22px; stroke: var(--gold); fill: none; stroke-width: 1.4; }
.algo-desc-title {
  font-family: var(--serif);
  font-size: 20px;
  font-weight: 500;
  color: var(--ink-0);
}
.algo-desc p {
  font-size: 14.5px;
  color: var(--ink-2);
  line-height: 1.7;
  margin-bottom: 12px;
}
.algo-desc p:last-child { margin-bottom: 0; }

/* Returns table */
.returns-section {
  margin-bottom: 32px;
}
.returns-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 18px;
  flex-wrap: wrap;
  gap: 12px;
}
.returns-title {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 400;
  color: var(--ink-0);
  letter-spacing: -0.01em;
}
.year-filter {
  display: flex; gap: 6px; flex-wrap: wrap;
}
.yr-btn {
  padding: 6px 12px;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.14em;
  border: 1px solid var(--line-strong);
  border-radius: 6px;
  background: transparent;
  color: var(--ink-2);
  cursor: pointer;
  transition: all .2s;
}
.yr-btn:hover { border-color: var(--gold); color: var(--gold); }
.yr-btn.active { background: rgba(245,181,68,0.12); border-color: var(--gold); color: var(--gold); }
.returns-table-wrap {
  border-radius: var(--radius);
  border: 1px solid var(--line-strong);
  overflow: hidden;
}
.returns-table {
  width: 100%;
  border-collapse: collapse;
  font-family: var(--mono);
  font-size: 13px;
}
.returns-table thead tr {
  background: var(--bg-3);
  border-bottom: 1px solid var(--line-strong);
}
.returns-table th {
  padding: 12px 18px;
  text-align: left;
  font-size: 10px;
  letter-spacing: 0.18em;
  color: var(--ink-2);
  text-transform: uppercase;
  font-weight: 500;
}
.returns-table th:not(:first-child) { text-align: right; }
.returns-table tbody tr {
  border-bottom: 1px solid var(--line);
  transition: background .15s;
}
.returns-table tbody tr:last-child { border-bottom: none; }
.returns-table tbody tr:hover { background: rgba(255,255,255,0.025); }
.returns-table td {
  padding: 11px 18px;
  color: var(--ink-1);
  text-align: right;
}
.returns-table td:first-child { text-align: left; color: var(--ink-0); }
.returns-table .pos { color: var(--green); }
.returns-table .neg { color: var(--red); }
.returns-table .month-label {
  display: inline-flex; align-items: center; gap: 8px;
}
.row-pos { background: rgba(74,222,128,0.04); }
.row-neg { background: rgba(255,90,90,0.04); }
.show-all-btn {
  width: 100%;
  padding: 12px;
  background: rgba(255,255,255,0.02);
  border: 1px solid var(--line);
  border-top: none;
  color: var(--ink-2);
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all .2s;
  border-radius: 0 0 var(--radius) var(--radius);
}
.show-all-btn:hover { color: var(--gold); background: rgba(245,181,68,0.04); }

/* Support link */
.support-link-block {
  padding: 28px 32px;
  border-radius: var(--radius-lg);
  background: var(--bg-2);
  border: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}
.support-link-block p {
  font-size: 15px;
  color: var(--ink-2);
}

/* Topbar user chip */
.topbar-user {
  display: flex; align-items: center; gap: 10px;
}
.topbar-user-avatar {
  width: 30px; height: 30px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--gold-deep));
  display: grid; place-items: center;
  font-family: var(--serif);
  font-size: 12px;
  font-weight: 700;
  color: #1a1208;
}
.topbar-user-name {
  font-size: 13px;
  color: var(--ink-1);
  font-weight: 500;
}
.btn-logout {
  font-size: 11px;
  padding: 8px 14px;
  color: var(--ink-2);
}

/* ========== CHAT PAGE ========== */
.chat-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.chat-card {
  width: 100%;
  max-width: 520px;
  background: var(--bg-2);
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-lg);
  padding: 48px 44px;
  text-align: center;
  position: relative;
  box-shadow: 0 40px 100px -20px rgba(0,0,0,0.8);
}
.chat-card::before {
  content: '';
  position: absolute;
  top: -80px; left: 50%;
  transform: translateX(-50%);
  width: 400px; height: 300px;
  background: radial-gradient(ellipse at center, rgba(245,181,68,0.12), transparent 70%);
  pointer-events: none;
}
.chat-icon {
  width: 68px; height: 68px;
  border-radius: var(--radius);
  background: linear-gradient(135deg, rgba(245,181,68,0.18), rgba(245,181,68,0.04));
  border: 1px solid rgba(245,181,68,0.3);
  display: grid; place-items: center;
  margin: 0 auto 24px;
}
.chat-icon svg { width: 32px; height: 32px; stroke: var(--gold); fill: none; stroke-width: 1.4; }
.chat-title {
  font-family: var(--serif);
  font-size: 32px;
  font-weight: 400;
  color: var(--ink-0);
  letter-spacing: -0.02em;
  margin-bottom: 10px;
}
.chat-sub {
  font-size: 15px;
  color: var(--ink-2);
  margin-bottom: 36px;
  line-height: 1.6;
}
.contact-btns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-bottom: 28px;
}
.contact-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  padding: 20px 16px;
  border-radius: var(--radius);
  border: 1px solid var(--line-strong);
  background: rgba(255,255,255,0.02);
  color: var(--ink-1);
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all .25s;
  text-decoration: none;
}
.contact-btn:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: rgba(245,181,68,0.05);
  transform: translateY(-2px);
}
.contact-btn svg { width: 28px; height: 28px; }
.contact-btn-tg svg { stroke: #2AABEE; fill: none; stroke-width: 1.4; }
.contact-btn-wa svg { stroke: #25D366; fill: none; stroke-width: 1.4; }
.contact-btn:hover svg { stroke: var(--gold); }
.chat-email {
  font-family: var(--mono);
  font-size: 13px;
  color: var(--ink-2);
  padding: 14px 0;
  border-top: 1px solid var(--line);
}
.chat-email a {
  color: var(--gold);
  transition: opacity .2s;
}
.chat-email a:hover { opacity: 0.75; }
.chat-back {
  display: inline-flex; align-items: center; gap: 6px;
  margin-top: 22px;
  font-family: var(--mono);
  font-size: 11px;
  color: var(--ink-3);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  transition: color .2s;
}
.chat-back:hover { color: var(--ink-1); }

/* ========== RESPONSIVE ========== */
@media (max-width: 980px) {
  .topbar { padding: 14px 20px; }
  .nav-links { display: none; }
  .brand-tail { display: none; }
  section { padding: 80px 20px; }
  .hero { padding: 130px 20px 60px; min-height: auto; }
  .hero-grid { grid-template-columns: 1fr; gap: 40px; }
  .hero-visual { height: 380px; }
  .orb { width: 280px; height: 280px; right: 10%; top: 40px; }
  .orb::before { font-size: 150px; }
  .orb-ring.r1 { width: 360px; height: 360px; right: 0; }
  .orb-ring.r2 { width: 230px; height: 230px; right: 40px; top: 80px; }
  .trade-card { width: 260px; left: 0; bottom: 0; }
  .minichart { width: 180px; }
  .hero-meta { grid-template-columns: 1fr 1fr; gap: 18px; }
  .section-head { grid-template-columns: 1fr; gap: 20px; margin-bottom: 50px; }
  .section-sub { justify-self: start; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .stat { border-right: none; border-bottom: 1px solid var(--line); }
  .stat:nth-child(2n) { border-right: none; }
  .stat .value { font-size: 38px; }
  .club-grid, .exchange-grid, .future-grid, .founder-grid, .founder-head { grid-template-columns: 1fr; gap: 40px; }
  .algo-features { grid-template-columns: 1fr; }
  .algo-perf { grid-template-columns: 1fr; padding: 28px; }
  .future-cards { grid-template-columns: 1fr; }
  .timeline-rail { grid-template-columns: 1fr; gap: 30px; }
  .timeline-rail::before { display: none; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-bot { flex-direction: column; gap: 8px; text-align: center; }
  .dash-top { grid-template-columns: 1fr; }
  .invest-metrics { grid-template-columns: 1fr; }
  .invest-metric { border-right: none; border-bottom: 1px solid var(--line); }
  .invest-metric:last-child { border-bottom: none; }
  .dash-main { padding: 32px 20px; }
  .login-card { padding: 32px 24px; }
  .chat-card { padding: 36px 24px; }
  .contact-btns { grid-template-columns: 1fr; }
}
@media (max-width: 540px) {
  .hero-meta { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .bob-credentials { grid-template-columns: 1fr 1fr; }
  .perf-stats { grid-template-columns: 1fr; }
  .returns-table th, .returns-table td { padding: 10px 12px; font-size: 11px; }
}
