:root {
  --bg-deep: #05080f;
  --bg-base: #080c16;
  --bg-surface: #0e1420;
  --bg-card: #111a2b;
  --bg-card-hover: #162035;
  --border: rgba(40, 55, 80, 0.5);
  --border-glow: rgba(245, 158, 11, 0.15);
  --text: #e8ecf2;
  --text-muted: #8a97ab;
  --text-dim: #556278;
  --gold: #f0a830;
  --gold-soft: rgba(240, 168, 48, 0.12);
  --gold-glow: rgba(240, 168, 48, 0.25);
  --teal: #2dd4bf;
  --teal-soft: rgba(45, 212, 191, 0.1);
  --blue: #3b82f6;
  --cyan: #06b6d4;
  --emerald: #10b981;
  --rose: #ef4444;
  --purple: #a855f7;
  --font: 'Space Grotesk', 'Inter', sans-serif;
  --font-body: 'Inter', sans-serif;
  --radius: 10px;
  --radius-lg: 14px;
  --max-w: 1120px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html {
  scroll-behavior: smooth;
  overflow-x: hidden;
  overflow-y: auto;
  -webkit-text-size-adjust: 100%;
}
body {
  font-family: var(--font-body);
  background: var(--bg-deep);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  overflow-y: auto;
  touch-action: pan-y;
  -webkit-overflow-scrolling: touch;
  overscroll-behavior-y: auto;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
.container { max-width: var(--max-w); margin: 0 auto; padding: 0 20px; }
section { padding: 100px 20px; }

/* ===== AMBIENT GRID ===== */
body::before {
  content: '';
  position: fixed; inset: 0; z-index: 0; pointer-events: none;
  background-image:
    linear-gradient(rgba(40,55,80,0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(40,55,80,0.08) 1px, transparent 1px);
  background-size: 60px 60px;
}

/* ===== HEADER ===== */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: rgba(5, 8, 15, 0.8);
  backdrop-filter: blur(20px) saturate(1.2);
  border-bottom: 1px solid var(--border);
}
.header-inner {
  max-width: var(--max-w); margin: 0 auto; padding: 0 20px;
  display: flex; align-items: center; justify-content: space-between;
  height: 68px;
}
.logo-link {
  display: grid;
  grid-template-columns: auto auto;
  grid-template-rows: auto auto;
  column-gap: 12px;
  align-items: center;
}
.logo-mark {
  height: 36px;
  width: calc(36px * 86.6 / 75.77);
  min-width: calc(36px * 86.6 / 75.77);
  aspect-ratio: 86.6 / 75.77;
  position: relative;
  grid-row: 1 / 3;
}
.logo-mark svg { display: block; width: 100%; height: 100%; }
.logo-text {
  grid-column: 2;
  grid-row: 1;
  font-family: var(--font); font-size: 1.32rem; font-weight: 700;
  letter-spacing: -0.03em; color: var(--text);
}
.logo-text span { color: var(--gold); }
.logo-slogan {
  grid-column: 2;
  grid-row: 2;
  font-family: var(--font);
  font-size: 0.52rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-weight: 600;
  color: rgba(240, 168, 48, 0.82);
  line-height: 1;
}

.nav-links { display: flex; align-items: center; gap: 24px; }
.nav-links a {
  font-size: 0.82rem; font-weight: 500; color: var(--text-dim);
  transition: color 0.25s var(--ease);
  letter-spacing: 0.01em;
}
.nav-links a:hover { color: var(--text); }

.lang-toggle {
  background: transparent; border: 1px solid var(--border);
  color: var(--text-dim); padding: 3px 10px; border-radius: 5px;
  font-size: 0.72rem; cursor: pointer; font-family: var(--font);
  font-weight: 600; letter-spacing: 0.05em;
  transition: all 0.25s var(--ease);
}
.lang-toggle:hover { border-color: var(--gold); color: var(--gold); }

.cta-header {
  background: var(--gold); color: var(--bg-deep);
  font-weight: 700; font-size: 0.78rem; font-family: var(--font);
  padding: 7px 16px; border-radius: 7px;
  letter-spacing: 0.02em;
  transition: all 0.25s var(--ease);
}
.cta-header:hover {
  box-shadow: 0 0 20px var(--gold-glow);
  transform: translateY(-1px);
}

.mobile-menu-btn { display: none; background: none; border: none; color: var(--text); cursor: pointer; padding: 4px; }

/* ===== HERO ===== */
.hero {
  padding: 150px 20px 100px;
  text-align: left;
  position: relative;
  overflow: hidden;
}
.hero-crypto-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
  opacity: 0.72;
}
.hero-crypto-vignette {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 78% 18%, rgba(45, 212, 191, 0.1) 0%, transparent 35%),
    radial-gradient(circle at 20% 84%, rgba(59, 130, 246, 0.1) 0%, transparent 36%),
    radial-gradient(circle at 50% 52%, rgba(240, 168, 48, 0.08) 0%, transparent 45%);
}
.hero::after {
  content: '';
  position: absolute; top: 60px; right: -200px;
  width: 600px; height: 600px;
  background: radial-gradient(circle, var(--gold-soft) 0%, transparent 65%);
  pointer-events: none; filter: blur(40px);
}
.hero .container { position: relative; z-index: 1; }
.hero-top {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--gold-soft); border: 1px solid rgba(240,168,48,0.15);
  padding: 5px 14px; border-radius: 100px;
  font-size: 0.72rem; color: var(--gold); font-weight: 600;
  letter-spacing: 0.04em; text-transform: uppercase;
  margin-bottom: 28px;
}
.hero-top .dot {
  width: 6px; height: 6px; border-radius: 50%; background: var(--gold);
  animation: pulse-dot 2s ease infinite;
}
@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.4; transform: scale(0.7); }
}
.hero h1 {
  font-family: var(--font);
  font-size: clamp(2.4rem, 5.5vw, 3.8rem);
  font-weight: 700; letter-spacing: -0.04em;
  line-height: 1.1; margin-bottom: 24px;
  max-width: 700px;
}
.hero h1 em {
  font-style: normal; color: var(--gold);
  position: relative;
}
.hero h1 em::after {
  content: '';
  position: absolute; bottom: 2px; left: 0; right: 0;
  height: 3px; background: var(--gold); opacity: 0.3; border-radius: 2px;
}
.hero-sub {
  font-size: 1.02rem; color: var(--text-muted);
  max-width: 520px; line-height: 1.75;
  margin-bottom: 40px;
}
.hero-ctas { display: flex; gap: 12px; flex-wrap: wrap; }

.btn-primary {
  background: var(--gold); color: var(--bg-deep);
  font-family: var(--font); font-weight: 700; font-size: 0.88rem;
  padding: 13px 28px; border-radius: 8px; border: none; cursor: pointer;
  transition: all 0.25s var(--ease);
  letter-spacing: 0.01em;
}
.btn-primary:hover {
  box-shadow: 0 4px 24px var(--gold-glow);
  transform: translateY(-2px);
}
.btn-ghost {
  background: transparent; border: 1px solid var(--border);
  color: var(--text-muted); font-family: var(--font);
  font-weight: 600; font-size: 0.88rem;
  padding: 13px 28px; border-radius: 8px; cursor: pointer;
  transition: all 0.25s var(--ease);
}
.btn-ghost:hover { border-color: var(--text-dim); color: var(--text); }

/* ===== LIVE TICKER ===== */
.live-ticker {
  overflow: hidden; position: relative;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 14px 0;
  background: rgba(8, 12, 22, 0.6);
}
.ticker-track {
  display: flex; gap: 48px;
  animation: scroll-ticker 30s linear infinite;
  width: max-content;
}
@keyframes scroll-ticker {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
.ticker-item {
  display: flex; align-items: center; gap: 8px;
  white-space: nowrap;
  font-size: 0.78rem; color: var(--text-dim); font-weight: 500;
  font-family: var(--font);
}
.ticker-item .val { color: var(--gold); font-weight: 700; }
.ticker-item .sep { color: var(--border); }

/* ===== LIVE DATA ===== */
.live-section {
  padding: 48px 20px 0;
}
.live-header {
  margin-bottom: 18px;
}
.live-header-top {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 10px;
}
.live-tag {
  margin-bottom: 0;
}
.live-badge {
  display: inline-flex;
  align-items: center;
  padding: 5px 10px;
  border-radius: 999px;
  border: 1px solid rgba(45, 212, 191, 0.35);
  background: linear-gradient(90deg, rgba(45, 212, 191, 0.16), rgba(240, 168, 48, 0.12));
  color: var(--text);
  font-size: 0.63rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 700;
  font-family: var(--font);
}
.live-title {
  font-family: var(--font);
  font-size: clamp(1.2rem, 2.1vw, 1.7rem);
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin: 0 0 8px;
}
.live-sub {
  margin: 0;
  max-width: 720px;
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.65;
}
.live-dot {
  width: 8px; height: 8px; border-radius: 50%; background: var(--emerald);
  animation: pulse-dot 2s ease infinite;
}
.live-grid {
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
.live-item {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(120% 80% at 8% 0%, rgba(240, 168, 48, 0.09) 0%, rgba(240, 168, 48, 0) 62%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.02), rgba(255, 255, 255, 0)),
    var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 16px 18px;
  min-height: 98px;
  transition: border-color 0.3s var(--ease), transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.live-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), transparent 65%);
  opacity: 0.55;
}
.live-item::after {
  content: '';
  position: absolute;
  inset: auto -20% -46% auto;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(45, 212, 191, 0.2), rgba(45, 212, 191, 0));
  pointer-events: none;
}
.live-item:hover {
  border-color: rgba(255,255,255,0.14);
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.34);
}
.live-label {
  font-size: 0.68rem; color: var(--text-dim); font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.08em;
  font-family: var(--font); margin-bottom: 8px;
}
.live-val {
  font-family: var(--font); font-size: 1.3rem; font-weight: 800;
  letter-spacing: -0.02em;
}
.live-hint {
  margin-top: 8px;
  font-size: 0.74rem;
  color: var(--text-muted);
}
.live-meta {
  margin-top: 12px;
  font-size: 0.72rem;
  color: var(--text-dim);
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

/* ===== SECTION HEADERS ===== */
.section-tag {
  font-family: var(--font);
  font-size: 0.68rem; text-transform: uppercase; letter-spacing: 0.15em;
  color: var(--gold); font-weight: 700; margin-bottom: 12px;
}
.section-title {
  font-family: var(--font);
  font-size: clamp(1.5rem, 3vw, 2.2rem); font-weight: 700;
  letter-spacing: -0.03em; margin-bottom: 14px; line-height: 1.2;
}
.section-desc {
  font-size: 0.92rem; color: var(--text-muted); max-width: 520px; line-height: 1.7;
}

/* ===== PANELS ===== */
.panels-section { padding-bottom: 60px; }
.panels-featured {
  display: grid; grid-template-columns: 1fr 1fr; gap: 16px;
  margin-bottom: 16px;
}
.panels-grid-sm {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px;
}
.p-card {
  position: relative;
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 28px 24px;
  transition: all 0.35s var(--ease);
  overflow: hidden; cursor: pointer;
  display: flex; flex-direction: column;
}
.p-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: var(--accent, var(--gold));
  opacity: 0; transition: opacity 0.35s var(--ease);
}
.p-card:hover {
  border-color: var(--accent, var(--gold-glow));
  transform: translateY(-3px);
  box-shadow: 0 8px 32px rgba(0,0,0,0.5), 0 0 0 1px var(--accent, var(--gold-glow));
}
.p-card:hover::before { opacity: 1; }
.p-card .p-icon {
  width: 40px; height: 40px; border-radius: 9px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 16px;
  background: var(--icon-bg, var(--gold-soft));
}
.p-card .p-icon svg {
  width: 20px; height: 20px;
  stroke: var(--accent, var(--gold));
  stroke-width: 1.8; fill: none;
}
.p-card .p-label {
  font-family: var(--font);
  font-size: 0.62rem; color: var(--text-dim); font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase;
  margin-bottom: 6px;
}
.p-card h3 {
  font-family: var(--font);
  font-size: 1.05rem; font-weight: 700; margin-bottom: 8px;
  letter-spacing: -0.02em; color: var(--text);
}
.p-card p {
  font-size: 0.82rem; color: var(--text-muted); line-height: 1.6;
  flex: 1;
}
.p-card .p-tags { display: flex; gap: 5px; flex-wrap: wrap; margin-top: 14px; }
.p-card .p-tag {
  font-size: 0.65rem; padding: 2px 7px; border-radius: 3px;
  background: rgba(255,255,255,0.04); color: var(--text-dim);
  font-weight: 600; font-family: var(--font); letter-spacing: 0.02em;
}

/* featured cards */
.p-card.featured { padding: 32px 28px; }
.p-card.featured h3 { font-size: 1.2rem; }
.p-card.featured p { font-size: 0.88rem; }

/* accent variants */
.p-card[data-c="gold"] { --accent: var(--gold); --icon-bg: var(--gold-soft); }
.p-card[data-c="teal"] { --accent: var(--teal); --icon-bg: var(--teal-soft); }
.p-card[data-c="blue"] { --accent: var(--blue); --icon-bg: rgba(59,130,246,0.1); }
.p-card[data-c="cyan"] { --accent: var(--cyan); --icon-bg: rgba(6,182,212,0.1); }
.p-card[data-c="emerald"] { --accent: var(--emerald); --icon-bg: rgba(16,185,129,0.1); }
.p-card[data-c="rose"] { --accent: var(--rose); --icon-bg: rgba(239,68,68,0.1); }
.p-card[data-c="purple"] { --accent: var(--purple); --icon-bg: rgba(168,85,247,0.1); }

/* ===== NUMBERS ROW ===== */
.numbers-row {
  display: flex; justify-content: space-between;
  max-width: 800px; margin: 0 auto;
  padding: 48px 0;
}
.num-item { text-align: center; }
.num-val {
  font-family: var(--font);
  font-size: 2rem; font-weight: 800; letter-spacing: -0.03em;
  color: var(--gold);
}
.num-label {
  font-size: 0.75rem; color: var(--text-dim); margin-top: 4px;
  letter-spacing: 0.02em;
}

/* ===== WHY SECTION ===== */
.why-grid {
  display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 20px;
  margin-top: 48px;
}
.why-card {
  padding: 28px 24px;
  border-left: 2px solid var(--border);
  transition: border-color 0.3s var(--ease);
}
.why-card:hover { border-color: var(--gold); }
.why-card h4 {
  font-family: var(--font);
  font-size: 0.95rem; font-weight: 700; margin-bottom: 8px;
  letter-spacing: -0.01em;
}
.why-card p { font-size: 0.84rem; color: var(--text-muted); line-height: 1.65; }

/* ===== DATA FLOW VISUAL ===== */
.flow-section { text-align: center; }
.flow-visual {
  display: flex; align-items: center; justify-content: center;
  gap: 16px; margin-top: 48px; flex-wrap: wrap;
}
.flow-node {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 16px 20px;
  text-align: center; min-width: 140px;
}
.flow-node .fn-label {
  font-family: var(--font); font-size: 0.72rem; color: var(--text-dim);
  text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 4px;
  font-weight: 600;
}
.flow-node .fn-value {
  font-family: var(--font); font-size: 0.95rem; font-weight: 700;
  color: var(--text);
}
.flow-arrow {
  color: var(--gold); font-size: 1.2rem; opacity: 0.5;
}

/* ===== CTA SECTION ===== */
.cta-section {
  text-align: center;
  position: relative;
}
.cta-section::before {
  content: '';
  position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
  width: 500px; height: 500px;
  background: radial-gradient(circle, var(--gold-soft) 0%, transparent 60%);
  pointer-events: none; filter: blur(60px);
}
.cta-section .container { position: relative; z-index: 1; }
.cta-section .section-title { max-width: 500px; margin: 0 auto 24px; }

/* ===== FOOTER ===== */
.site-footer {
  border-top: 1px solid var(--border);
  padding: 48px 20px 28px;
  margin-top: 40px;
}
.footer-inner {
  max-width: var(--max-w); margin: 0 auto;
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px;
}
.footer-brand p { font-size: 0.8rem; color: var(--text-dim); line-height: 1.7; margin-top: 10px; max-width: 260px; }
.footer-col h4 {
  font-family: var(--font); font-size: 0.7rem;
  text-transform: uppercase; letter-spacing: 0.1em;
  color: var(--text-muted); margin-bottom: 14px; font-weight: 700;
}
.footer-col a {
  display: block; font-size: 0.82rem; color: var(--text-dim);
  padding: 3px 0; transition: color 0.25s var(--ease);
}
.footer-col a:hover { color: var(--text); }
.footer-bottom {
  max-width: var(--max-w); margin: 28px auto 0;
  padding-top: 20px; border-top: 1px solid var(--border);
  display: flex; justify-content: space-between; align-items: center;
  font-size: 0.72rem; color: var(--text-dim);
}

/* ===== DISCLAIMER ===== */
.disclaimer-overlay {
  position: fixed; inset: 0; z-index: 9999;
  background: rgba(0,0,0,0.92);
  display: flex; align-items: center; justify-content: center;
  padding: 20px;
}
.disclaimer-overlay.hidden { display: none; }
.disclaimer-box {
  background: var(--bg-surface); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 36px;
  max-width: 500px; width: 100%; text-align: center;
}
.disclaimer-box .warn-icon {
  width: 48px; height: 48px; margin: 0 auto 16px;
  border-radius: 50%; background: rgba(239, 68, 68, 0.1);
  display: flex; align-items: center; justify-content: center;
}
.disclaimer-box .warn-icon svg { width: 24px; height: 24px; stroke: var(--rose); fill: none; stroke-width: 2; }
.disclaimer-box h2 { font-family: var(--font); font-size: 1.2rem; margin-bottom: 16px; letter-spacing: -0.02em; }
.disclaimer-box p { font-size: 0.85rem; color: var(--text-muted); line-height: 1.7; margin-bottom: 20px; }
.disclaimer-box .btn-accept {
  background: var(--gold); color: var(--bg-deep);
  font-family: var(--font); font-weight: 700; font-size: 0.88rem;
  padding: 12px 0; border-radius: 8px; border: none; cursor: pointer;
  width: 100%; transition: all 0.25s var(--ease);
}
.disclaimer-box .btn-accept:hover { box-shadow: 0 4px 20px var(--gold-glow); }

/* ===== ANIMATIONS ===== */
.reveal {
  opacity: 0; transform: translateY(20px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.d1 { transition-delay: 0.05s; }
.d2 { transition-delay: 0.1s; }
.d3 { transition-delay: 0.15s; }
.d4 { transition-delay: 0.2s; }
.d5 { transition-delay: 0.25s; }
.d6 { transition-delay: 0.3s; }
.d7 { transition-delay: 0.35s; }
.d8 { transition-delay: 0.4s; }

/* subtle glow on featured cards */
@keyframes border-glow {
  0%, 100% { box-shadow: 0 0 0 rgba(240,168,48,0); }
  50% { box-shadow: 0 0 20px rgba(240,168,48,0.06); }
}
.p-card.featured { animation: border-glow 4s ease infinite; }

/* ===== PANEL DETAIL PAGE ===== */
.panel-hero { padding: 130px 20px 60px; }
.panel-hero .panel-badge {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 5px 14px; border-radius: 100px;
  font-family: var(--font); font-size: 0.68rem; font-weight: 700;
  letter-spacing: 0.08em; text-transform: uppercase;
  margin-bottom: 16px;
}
.panel-hero h1 {
  font-family: var(--font);
  font-size: clamp(1.7rem, 4vw, 2.6rem);
  font-weight: 700; letter-spacing: -0.03em;
  margin-bottom: 12px; line-height: 1.15;
}
.panel-hero .hero-sub { max-width: 600px; }
.panel-content {
  max-width: 720px; margin: 0 auto;
}
.panel-content .intro-block {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 28px;
  margin-bottom: 40px;
}
.panel-content .intro-block p {
  font-size: 0.95rem; line-height: 1.8; color: var(--text-muted);
}
.feature-block {
  padding: 20px 0;
  border-bottom: 1px solid var(--border);
}
.feature-block:last-child { border-bottom: none; }
.feature-block h4 {
  font-family: var(--font); font-size: 0.92rem; font-weight: 700;
  margin-bottom: 6px; display: flex; align-items: center; gap: 8px;
}
.feature-block h4 .f-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--accent, var(--gold));
  flex-shrink: 0;
}
.feature-block p { font-size: 0.84rem; color: var(--text-muted); line-height: 1.65; }

/* ===== ABOUT ===== */
.about-story {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 32px;
  margin-bottom: 40px;
  border-left: 3px solid var(--gold);
}
.about-story p { font-size: 1rem; line-height: 1.85; color: var(--text-muted); }
.tech-stats {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px;
  margin-top: 20px;
}
.tech-stat {
  text-align: center; padding: 18px;
  background: rgba(255,255,255,0.02); border-radius: 8px;
}
.tech-stat .ts-val { font-family: var(--font); font-size: 1.6rem; font-weight: 800; }
.tech-stat .ts-label { font-size: 0.72rem; color: var(--text-dim); margin-top: 2px; }
.team-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; margin-top: 28px; }
.team-card {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 22px;
  display: flex; gap: 14px; align-items: flex-start;
}
.team-card .t-icon {
  width: 40px; height: 40px; border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.team-card .t-icon svg { width: 20px; height: 20px; stroke-width: 1.8; fill: none; }
.team-card h4 { font-family: var(--font); font-size: 0.9rem; font-weight: 700; margin-bottom: 2px; }
.team-card p { font-size: 0.8rem; color: var(--text-muted); line-height: 1.55; }

/* ===== FAQ ===== */
.faq-list { max-width: 640px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-q {
  font-family: var(--font); font-size: 0.9rem; font-weight: 600;
  cursor: pointer; padding: 18px 0;
  display: flex; justify-content: space-between; align-items: center;
  letter-spacing: -0.01em;
}
.faq-q::after {
  content: '+'; font-size: 1.1rem; color: var(--text-dim);
  transition: transform 0.3s var(--ease), color 0.3s var(--ease);
  flex-shrink: 0; margin-left: 12px;
}
.faq-item.open .faq-q::after { transform: rotate(45deg); color: var(--gold); }
.faq-a {
  max-height: 0; overflow: hidden;
  transition: max-height 0.4s var(--ease), padding 0.3s var(--ease);
  font-size: 0.85rem; color: var(--text-muted); line-height: 1.7;
}
.faq-item.open .faq-a { max-height: 300px; padding-bottom: 18px; }

/* ===== RESPONSIVE ===== */
@media (max-width: 860px) {
  .panels-featured { grid-template-columns: 1fr; }
  .panels-grid-sm { grid-template-columns: 1fr 1fr; }
  .why-grid { grid-template-columns: 1fr; gap: 0; }
  .numbers-row { flex-wrap: wrap; gap: 24px; justify-content: center; }
  .num-item { min-width: 120px; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .flow-visual { gap: 10px; }
  .flow-node { min-width: 100px; padding: 12px 14px; }
  .team-grid { grid-template-columns: 1fr; }
  .live-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 640px) {
  .logo-link { gap: 8px; }
  .logo-mark {
    height: 30px;
    width: calc(30px * 86.6 / 75.77);
    min-width: calc(30px * 86.6 / 75.77);
  }
  .logo-text { font-size: 1.12rem; }
  .logo-slogan { font-size: 0.5rem; letter-spacing: 0.1em; }
  .nav-links { display: none; }
  .mobile-menu-btn { display: block; }
  .nav-links.open {
    display: flex; flex-direction: column;
    position: absolute; top: 68px; left: 0; right: 0;
    background: var(--bg-deep); border-bottom: 1px solid var(--border);
    padding: 16px 20px; gap: 14px;
  }
  .hero { padding: 120px 20px 70px; }
  .hero-crypto-bg { opacity: 0.56; }
  .hero h1 { font-size: 2rem; }
  .panels-featured { grid-template-columns: 1fr; }
  .panels-grid-sm { grid-template-columns: 1fr; }
  .numbers-row { flex-direction: column; gap: 20px; }
  .footer-inner { grid-template-columns: 1fr; gap: 24px; }
  .footer-bottom { flex-direction: column; gap: 6px; text-align: center; }
  .tech-stats { grid-template-columns: 1fr; }
  section { padding: 60px 16px; }
  .live-grid { grid-template-columns: 1fr; }
  .live-title { font-size: 1.2rem; }
  .live-sub { font-size: 0.84rem; }
  .live-item { min-height: 0; }
}

@media (max-width: 1024px), (pointer: coarse), (hover: none), (prefers-reduced-motion: reduce) {
  html, body {
    overflow-y: auto !important;
  }
  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
  .d1, .d2, .d3, .d4, .d5, .d6, .d7, .d8 {
    transition-delay: 0s;
  }
  .ticker-track {
    animation: none;
  }
  .hero-crypto-bg {
    opacity: 0.45;
  }
}
