/* ═══════════════════════════════════════════════════════════════════
   CryptoCoin — theme derived directly from the 1500x500 banner:
   pure black background, deep amber halo, gold accents, white primary.
   ══════════════════════════════════════════════════════════════════ */

:root {
  --bg:        #000000;
  --bg-2:      #0a0806;
  --bg-3:      #100c07;
  --panel:     #14100b;
  --line:      #26200e;
  --line-2:    #3a2f11;
  --gold:      #F5A623;
  --gold-2:    #FFC048;
  --gold-3:    #7a5410;
  --white:     #ffffff;
  --muted:     #b6a98e;
  --dim:       #7a6f5a;
  --amazon:    #ff9900;

  --gold-grad: linear-gradient(135deg, #FFD776 0%, #F5A623 50%, #B87A0E 100%);
  --gold-glow: 0 0 40px rgba(245, 166, 35, 0.35), 0 0 80px rgba(245, 166, 35, 0.15);

  --f-sans:    'Inter', system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  --f-mono:    'JetBrains Mono', ui-monospace, "SF Mono", Consolas, monospace;
}

*, *::before, *::after { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--white);
  font-family: var(--f-sans);
  font-size: 16px;
  line-height: 1.6;
  min-height: 100vh;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

.wrap { max-width: 1240px; margin: 0 auto; padding: 0 24px; }

/* ─── typographic bits ────────────────────────────────────────── */

.w { color: var(--white); }
.g { color: var(--gold); }

/* ═══ NAV ═══════════════════════════════════════════════════════ */

.nav {
  position: sticky; top: 0; z-index: 100;
  background: rgba(0,0,0,0.85);
  backdrop-filter: blur(14px) saturate(140%);
  -webkit-backdrop-filter: blur(14px) saturate(140%);
  border-bottom: 1px solid var(--line);
}
.nav-inner {
  max-width: 1400px; margin: 0 auto; padding: 14px 32px;
  display: flex; align-items: center; gap: 40px;
}
.nav-brand {
  display: flex; align-items: center; gap: 12px;
  text-decoration: none; color: var(--white);
  font-weight: 800; font-size: 20px; letter-spacing: -0.02em;
}
.nav-logo { width: 36px; height: 36px; border-radius: 50%; box-shadow: var(--gold-glow); }
.nav-name .w { color: var(--white); }
.nav-name .g { color: var(--gold); }

.nav-links { list-style: none; padding: 0; margin: 0; display: flex; gap: 28px; }
.nav-links a {
  color: var(--muted); text-decoration: none; font-weight: 500; font-size: 14.5px;
  transition: color .15s ease;
}
.nav-links a:hover { color: var(--gold); }

.nav-actions { margin-left: auto; display: flex; gap: 10px; align-items: center; }

/* Buttons */
.btn {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 10px 20px;
  font-family: var(--f-sans); font-size: 14px; font-weight: 700;
  text-decoration: none; border-radius: 10px;
  transition: transform .12s ease, box-shadow .2s ease, background .2s ease;
  cursor: pointer; border: 0;
}
.btn-gold {
  background: var(--gold-grad); color: #1a0f00;
  box-shadow: 0 4px 22px rgba(245,166,35,0.35);
}
.btn-gold:hover { transform: translateY(-1px); box-shadow: 0 6px 30px rgba(245,166,35,0.55); }
.btn-ghost {
  background: transparent; color: var(--white);
  border: 1px solid var(--line-2);
}
.btn-ghost:hover { border-color: var(--gold); color: var(--gold); }
.btn-outline {
  background: transparent; color: var(--gold);
  border: 1px solid var(--gold);
}
.btn-outline:hover { background: var(--gold); color: #1a0f00; }

/* ═══ HERO — recreate the 1500x500 banner as a full page hero ═══ */

.hero {
  position: relative;
  min-height: 620px;
  padding: 60px 0 90px;
  overflow: hidden;
  background: radial-gradient(ellipse at 75% 50%, rgba(245,166,35,0.35) 0%, rgba(184,122,14,0.10) 30%, transparent 55%),
              linear-gradient(180deg, #000 0%, #0a0603 100%);
}
.hero-bg { position: absolute; inset: 0; pointer-events: none; }

/* Gold globe arc at the right/bottom, like the banner */
.hero-globe {
  position: absolute; right: -18%; bottom: -55%;
  width: 1100px; height: 1100px;
  border-radius: 50%;
  background: radial-gradient(circle at 50% 50%,
    rgba(245,166,35,0) 63%,
    rgba(245,166,35,0.30) 64%,
    rgba(245,166,35,0.08) 66%,
    transparent 68%);
  filter: blur(2px);
}

/* Constellation dot mesh */
.hero-mesh {
  position: absolute; inset: 0;
  background-image:
    radial-gradient(circle at 12% 30%, rgba(245,166,35,0.55) 1px, transparent 2px),
    radial-gradient(circle at 82% 65%, rgba(245,166,35,0.55) 1px, transparent 2px),
    radial-gradient(circle at 55% 82%, rgba(245,166,35,0.40) 1px, transparent 2px),
    radial-gradient(circle at 30% 65%, rgba(245,166,35,0.30) 1px, transparent 2px),
    radial-gradient(circle at 90% 25%, rgba(245,166,35,0.45) 1px, transparent 2px),
    radial-gradient(circle at 20% 90%, rgba(245,166,35,0.35) 1px, transparent 2px),
    radial-gradient(circle at 70% 15%, rgba(245,166,35,0.35) 1px, transparent 2px),
    radial-gradient(circle at 8% 60%, rgba(245,166,35,0.28) 1px, transparent 2px);
  background-size: 100% 100%;
  opacity: 0.9;
  animation: mesh-drift 24s linear infinite;
}
@keyframes mesh-drift {
  0% { transform: translate(0,0); }
  50% { transform: translate(-6px, 4px); }
  100% { transform: translate(0,0); }
}

.hero-inner {
  position: relative; z-index: 2;
  max-width: 1400px; margin: 0 auto; padding: 0 40px;
  display: grid; grid-template-columns: 1.1fr 1fr; gap: 60px; align-items: center;
}

.hero-brand { display: flex; align-items: center; gap: 22px; margin-bottom: 6px; }
.hero-brand-coin {
  width: 76px; height: 76px; border-radius: 50%;
  box-shadow: 0 0 40px rgba(245,166,35,0.6);
}
.hero-brand-text {
  margin: 0; font-size: 68px; font-weight: 900;
  letter-spacing: -0.03em; line-height: 1;
}
.hero-brand-text .w { color: var(--white); }
.hero-brand-text .g { color: var(--gold); }

.hero-badge {
  display: flex; flex-direction: column; align-items: flex-start;
  margin: 8px 0 24px; position: relative;
}
.amazon-word {
  font-family: 'Inter', sans-serif;
  font-size: 62px; font-weight: 400; color: var(--white);
  letter-spacing: -0.02em; line-height: 0.9;
}
.amazon-arrow { width: 175px; height: 30px; margin-top: -4px; }

.hero-tag {
  margin: 8px 0 14px; font-size: 42px; font-weight: 900;
  letter-spacing: 0.01em; line-height: 1.05; text-transform: uppercase;
}
.hero-tag .w { color: var(--white); }
.hero-tag .g { color: var(--gold); }

.hero-sub {
  font-size: 20px; font-weight: 500; color: var(--white);
  margin: 0 0 40px;
}
.hero-sub .g { color: var(--gold); }

.hero-feats {
  list-style: none; padding: 0; margin: 0;
  display: flex; gap: 42px; flex-wrap: wrap;
}
.hero-feats li {
  display: flex; flex-direction: column; align-items: center; gap: 10px;
}
.feat-icon {
  width: 52px; height: 52px; border-radius: 14px;
  display: grid; place-items: center;
  background: rgba(245,166,35,0.08);
  border: 1px solid rgba(245,166,35,0.25);
  color: var(--gold);
}
.feat-icon svg { width: 24px; height: 24px; }
.feat-label {
  font-size: 12px; font-weight: 700; color: var(--white);
  letter-spacing: 0.15em; text-transform: uppercase;
}

.hero-coin {
  display: grid; place-items: center;
  filter: drop-shadow(0 20px 60px rgba(245,166,35,0.55));
}
.hero-coin img {
  width: 100%; max-width: 500px;
  animation: coin-float 6s ease-in-out infinite;
}
@keyframes coin-float {
  0%,100% { transform: translateY(0) rotate(-2deg); }
  50%     { transform: translateY(-12px) rotate(2deg); }
}

/* ═══ CONTRACT ADDRESS BANNER ═══════════════════════════════════ */

.ca-banner {
  background: linear-gradient(90deg, #0a0603 0%, #14100b 50%, #0a0603 100%);
  border-top: 1px solid var(--line-2);
  border-bottom: 1px solid var(--line-2);
  padding: 22px 0;
}
.ca-inner {
  display: flex; align-items: center; gap: 20px;
  flex-wrap: wrap; justify-content: center;
}
.ca-label {
  font-size: 11px; font-weight: 700; color: var(--gold);
  letter-spacing: 0.22em; text-transform: uppercase;
}
.ca-address-wrap {
  display: flex; align-items: center; gap: 10px;
  background: rgba(245,166,35,0.08);
  border: 1px solid var(--gold-3);
  border-radius: 999px;
  padding: 9px 8px 9px 20px;
  box-shadow: 0 0 30px rgba(245,166,35,0.08);
}
.ca-address {
  font-family: var(--f-mono); font-size: 15px; font-weight: 600;
  color: var(--gold); letter-spacing: 0.02em;
  user-select: all;
}
.ca-copy {
  display: inline-flex; align-items: center; gap: 6px;
  background: var(--gold-grad); color: #1a0f00;
  border: 0; padding: 8px 14px; border-radius: 999px;
  cursor: pointer; font-size: 12.5px; font-weight: 700;
  letter-spacing: 0.05em; font-family: var(--f-sans);
  transition: transform .1s, box-shadow .2s;
}
.ca-copy:hover { transform: translateY(-1px); box-shadow: 0 4px 18px rgba(245,166,35,0.5); }
.ca-copy.copied { background: linear-gradient(135deg, #7fd77f, #4fa04f); color: #052a05; }
.ca-copy svg { flex: none; }

.ca-links { display: flex; gap: 14px; }
.ca-link {
  color: var(--muted); text-decoration: none; font-size: 13px; font-weight: 500;
  transition: color .12s;
}
.ca-link:hover { color: var(--gold); }

@media (max-width: 720px) {
  .ca-address { font-size: 11.5px; }
  .ca-address-wrap { padding: 8px 6px 8px 14px; }
  .ca-inner { gap: 12px; }
}

/* ═══ STATS BAR ═════════════════════════════════════════════════ */

.stats-bar {
  background: linear-gradient(90deg, #100c07 0%, #1a1108 50%, #100c07 100%);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 22px 0;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 24px;
}
.stat { display: flex; flex-direction: column; gap: 4px; text-align: center; }
.stat-label { font-size: 10.5px; font-weight: 700; color: var(--dim); letter-spacing: 0.14em; text-transform: uppercase; }
.stat-value { font-size: 18px; font-weight: 800; color: var(--gold); font-family: var(--f-mono); }

/* ═══ SECTIONS ═════════════════════════════════════════════════ */

.section { padding: 90px 0; }
.section-alt { background: linear-gradient(180deg, #050403 0%, #0a0705 100%); }

.eyebrow {
  font-size: 12px; letter-spacing: 0.28em; text-transform: uppercase;
  color: var(--gold); font-weight: 700; margin: 0 0 12px;
}
.section-title {
  font-size: 40px; font-weight: 800; letter-spacing: -0.02em;
  line-height: 1.15; margin: 0 0 22px; color: var(--white);
  max-width: 780px;
}
.lead {
  font-size: 17px; color: var(--muted); line-height: 1.75;
  max-width: 800px; margin: 0 0 18px;
}
.lead .g { color: var(--gold); font-weight: 600; }

/* ═══ TOKENOMICS GRID ══════════════════════════════════════════ */

.tok-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 40px;
}
.tok-card {
  padding: 30px 26px;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 16px;
  transition: border-color .2s ease, transform .12s ease;
}
.tok-card:hover { border-color: var(--gold-3); transform: translateY(-2px); }
.tok-card.highlight {
  background: linear-gradient(135deg, rgba(245,166,35,0.14) 0%, rgba(245,166,35,0.03) 100%);
  border-color: var(--gold-3);
}
.tok-num {
  font-family: var(--f-mono); font-size: 36px; font-weight: 800;
  color: var(--gold); line-height: 1; margin-bottom: 8px;
}
.tok-sub { font-size: 18px; color: var(--muted); font-weight: 500; }
.tok-cap { font-size: 13px; font-weight: 700; color: var(--white); letter-spacing: 0.08em; text-transform: uppercase; margin-bottom: 10px; }
.tok-note { font-size: 14px; color: var(--muted); line-height: 1.6; }

/* ═══ ARCHITECTURE GRID ════════════════════════════════════════ */

.arch-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 40px;
}
.arch-card {
  padding: 26px 22px;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 14px;
}
.arch-ico { font-size: 28px; margin-bottom: 12px; filter: hue-rotate(0deg); }
.arch-title { font-size: 17px; font-weight: 700; color: var(--gold); margin-bottom: 8px; }
.arch-body { font-size: 14px; color: var(--muted); line-height: 1.65; }
.arch-body code {
  font-family: var(--f-mono); font-size: 12.5px;
  background: rgba(245,166,35,0.10); color: var(--gold);
  padding: 1px 6px; border-radius: 4px;
}

/* ═══ MINE ═════════════════════════════════════════════════════ */

.miner-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 40px;
}
.miner-card {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 24px;
}
.miner-name { font-size: 20px; font-weight: 800; color: var(--gold); margin-bottom: 4px; }
.miner-tag { font-size: 13px; color: var(--muted); margin-bottom: 14px; }
.code {
  font-family: var(--f-mono); font-size: 13px;
  background: #050403; border: 1px solid var(--line);
  padding: 14px 16px; border-radius: 10px;
  overflow-x: auto; margin: 0;
  color: #e4d4a2;
}
.code .c { color: #e4d4a2; }

.cooldown-note {
  margin-top: 34px;
  padding: 22px 26px;
  background: linear-gradient(90deg, rgba(245,166,35,0.10) 0%, rgba(245,166,35,0.02) 100%);
  border-left: 3px solid var(--gold);
  border-radius: 8px;
  color: var(--muted); font-size: 14.5px; line-height: 1.7;
}
.cooldown-note strong.g { color: var(--gold); font-weight: 800; }

/* ═══ MINING DASHBOARD ═════════════════════════════════════════ */

.dash-head {
  display: flex; align-items: flex-end; justify-content: space-between;
  gap: 20px; margin-bottom: 24px; flex-wrap: wrap;
}
.dash-status {
  display: inline-block; margin-left: 12px;
  font-size: 13px; font-weight: 500; color: var(--muted);
  letter-spacing: 0.02em;
}
.dash-status::before { content: ''; }
#dash-conn { color: #7fd77f; }
.dash-sub  { color: var(--muted); font-size: 14px; margin: 8px 0 0; }

.dash-metrics {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 14px;
  margin-bottom: 26px;
}
.metric {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 16px 18px;
  min-height: 96px;
}
.metric-label {
  font-size: 10.5px; font-weight: 700; color: var(--dim);
  letter-spacing: 0.14em; text-transform: uppercase; margin-bottom: 8px;
}
.metric-val {
  font-family: var(--f-mono); font-size: 20px; font-weight: 800;
  color: var(--gold); line-height: 1.15;
}
.metric-sub { font-size: 11.5px; color: var(--muted); margin-top: 6px; }

.dash-tabs {
  display: flex; gap: 4px; margin-bottom: 16px;
  border-bottom: 1px solid var(--line);
}
.tab-btn {
  background: transparent; color: var(--muted); cursor: pointer;
  padding: 12px 22px; font-size: 14px; font-weight: 600;
  border: 0; border-bottom: 2px solid transparent;
  transition: color .12s, border-color .12s;
  font-family: var(--f-sans);
}
.tab-btn:hover { color: var(--white); }
.tab-btn.is-active { color: var(--gold); border-bottom-color: var(--gold); }

.dash-panel { background: var(--panel); border: 1px solid var(--line); border-radius: 12px; overflow: hidden; }
.dash-panel.is-hidden { display: none; }

.dash-table {
  width: 100%; border-collapse: collapse;
  font-size: 13.5px;
}
.dash-table th {
  text-align: left; padding: 12px 16px;
  background: #0a0806;
  color: var(--muted); font-weight: 700; letter-spacing: 0.08em;
  text-transform: uppercase; font-size: 11px;
  border-bottom: 1px solid var(--line-2);
}
.dash-table td {
  padding: 12px 16px;
  border-bottom: 1px solid var(--line);
  color: var(--white);
  vertical-align: middle;
}
.dash-table tbody tr:hover { background: rgba(245,166,35,0.04); }
.dash-table tbody tr:last-child td { border-bottom: 0; }
.dash-table .mono { font-family: var(--f-mono); font-size: 12.5px; }
.dash-table a.mono { color: #7ec7ff; text-decoration: none; }
.dash-table a.mono:hover { text-decoration: underline; }
.dash-table a.addr { color: var(--gold); text-decoration: none; font-family: var(--f-mono); font-size: 12.5px; }
.dash-table a.addr:hover { text-decoration: underline; }

.pill {
  display: inline-block; padding: 3px 10px; border-radius: 4px;
  font-size: 11.5px; font-weight: 600;
}
.pill-ok { background: rgba(90,180,90,0.14); color: #7fd77f; border: 1px solid rgba(90,180,90,0.3); }

.dash-empty {
  text-align: center; padding: 44px 20px;
  color: var(--muted); font-style: italic;
}
.dash-foot {
  margin-top: 14px; padding: 12px 4px;
  font-size: 12px; color: var(--dim); text-align: right;
}
.dash-foot code {
  font-family: var(--f-mono); color: var(--gold);
  background: rgba(245,166,35,0.08); padding: 1px 6px; border-radius: 3px;
}

/* ═══ CONTRACT ═════════════════════════════════════════════════ */

.contract-box {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 8px 0;
  margin-top: 30px;
}
.contract-row {
  display: flex; align-items: center; gap: 18px;
  padding: 16px 26px;
  border-bottom: 1px solid var(--line);
  font-size: 14.5px;
}
.contract-row:last-child { border-bottom: 0; }
.contract-label {
  min-width: 110px; font-size: 12px; font-weight: 700;
  color: var(--dim); letter-spacing: 0.14em; text-transform: uppercase;
}
.contract-addr {
  font-family: var(--f-mono); color: var(--gold);
  word-break: break-all; font-size: 14px;
}
.copy-btn {
  background: rgba(245,166,35,0.10);
  color: var(--gold);
  border: 1px solid var(--gold-3);
  padding: 5px 12px; border-radius: 6px; cursor: pointer;
  font-size: 12px; font-weight: 600; letter-spacing: 0.05em;
}
.copy-btn:hover { background: var(--gold); color: #1a0f00; }
.copy-btn.copied { background: #1c3a1c; border-color: #52a352; color: #a8ffa8; }
.badge {
  display: inline-block;
  background: rgba(90,180,90,0.14);
  color: #7fd77f; padding: 3px 10px; border-radius: 4px;
  font-size: 12px; font-weight: 600; margin-right: 8px;
  border: 1px solid rgba(90,180,90,0.3);
}
.btn-row { margin-top: 24px; display: flex; gap: 12px; flex-wrap: wrap; }

/* ═══ SIMPLE DOCS PAGE ═════════════════════════════════════════ */

.docs-simple { padding: 60px 0 80px; }

.docs-simple .docs-hero { text-align: center; max-width: 780px; margin: 0 auto 60px; border: 0; padding: 0; }
.docs-simple .docs-hero h1 {
  font-size: 52px; font-weight: 900; letter-spacing: -0.03em;
  line-height: 1.05; margin: 0 0 18px;
}
.docs-simple .docs-hero p { font-size: 18px; color: var(--muted); margin: 0; line-height: 1.65; }

.docs-simple-block {
  max-width: 880px; margin: 0 auto 56px;
  scroll-margin-top: 90px;
}

.step-header { display: flex; align-items: center; gap: 16px; margin-bottom: 12px; }
.step-num {
  width: 36px; height: 36px; border-radius: 50%;
  background: var(--gold-grad); color: #1a0f00;
  display: grid; place-items: center;
  font-weight: 900; font-size: 15px;
  box-shadow: 0 3px 14px rgba(245,166,35,0.35);
}
.step-header h2 {
  margin: 0; font-size: 28px; font-weight: 800;
  letter-spacing: -0.02em; color: var(--white);
}
.step-desc { color: var(--muted); font-size: 16px; line-height: 1.65; margin: 0 0 22px; padding-left: 52px; }

.copy-big {
  background: var(--gold-grad); color: #1a0f00;
  border: 0; padding: 8px 18px; border-radius: 8px;
  font-size: 12.5px; font-weight: 700; letter-spacing: 0.05em;
  cursor: pointer;
  transition: transform .1s, box-shadow .2s;
}
.copy-big:hover { transform: translateY(-1px); box-shadow: 0 4px 14px rgba(245,166,35,0.4); }
.copy-big.copied { background: linear-gradient(135deg, #7fd77f, #4fa04f); color: #052a05; }

.clean-list {
  padding-left: 22px; color: var(--muted);
  font-size: 16px; line-height: 1.85; margin: 0;
}
.clean-list li { margin-bottom: 4px; }
.clean-list li::marker { color: var(--gold); }
.clean-list code {
  font-family: var(--f-mono); font-size: 13px;
  background: rgba(245,166,35,0.10); color: var(--gold);
  padding: 1px 6px; border-radius: 4px;
}
.clean-list b { color: var(--gold); font-weight: 700; }

.essentials {
  width: 100%; border-collapse: collapse;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 12px; overflow: hidden;
  font-size: 14px;
}
.essentials td {
  padding: 12px 20px;
  border-bottom: 1px solid var(--line);
  color: var(--white); vertical-align: middle;
}
.essentials td:first-child {
  color: var(--dim); font-weight: 700; width: 160px;
  font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase;
}
.essentials tr:last-child td { border-bottom: 0; }
.essentials code {
  font-family: var(--f-mono); font-size: 13px;
  color: var(--gold);
  background: rgba(245,166,35,0.08);
  padding: 2px 8px; border-radius: 4px;
}
.essentials a { color: var(--gold); text-decoration: none; }
.essentials a:hover { text-decoration: underline; }

.docs-simple details {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 16px 22px;
  margin-bottom: 10px;
}
.docs-simple details summary {
  cursor: pointer; font-weight: 600; color: var(--white);
  list-style: none; position: relative; padding-right: 24px;
  font-size: 15px;
}
.docs-simple details summary::after {
  content: '+'; position: absolute; right: 0; top: -2px;
  color: var(--gold); font-size: 22px; font-weight: 300;
}
.docs-simple details[open] summary::after { content: '−'; }
.docs-simple details p {
  margin: 12px 0 0; color: var(--muted); font-size: 14.5px; line-height: 1.65;
}
.docs-simple details code {
  font-family: var(--f-mono); font-size: 12.5px;
  background: rgba(245,166,35,0.10); color: var(--gold);
  padding: 1px 6px; border-radius: 4px;
}

@media (max-width: 720px) {
  .docs-simple .docs-hero h1 { font-size: 34px; }
  .step-desc { padding-left: 0; }
}

/* ═══ (OLD) DOCS PAGE ═══════════════════════════════════════════ */

.docs-layout {
  display: grid; grid-template-columns: 260px 1fr;
  max-width: 1240px; margin: 0 auto; padding: 40px 24px 80px;
  gap: 44px;
}

.docs-side { position: sticky; top: 80px; align-self: start; }
.docs-side-inner {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 12px; padding: 20px 16px;
  display: flex; flex-direction: column; gap: 4px;
}
.docs-side-title {
  font-size: 11px; font-weight: 700; color: var(--gold);
  letter-spacing: 0.16em; text-transform: uppercase;
  padding: 4px 8px 12px;
}
.docs-side a {
  padding: 8px 10px; border-radius: 8px;
  color: var(--muted); text-decoration: none;
  font-size: 13.5px; font-weight: 500;
  transition: background .12s, color .12s;
}
.docs-side a:hover { background: rgba(245,166,35,0.06); color: var(--white); }

.docs-main { min-width: 0; }

.docs-hero { margin-bottom: 48px; padding-bottom: 30px; border-bottom: 1px solid var(--line); }
.docs-hero h1 {
  margin: 0 0 12px; font-size: 44px; font-weight: 900;
  letter-spacing: -0.03em; line-height: 1.1;
}
.docs-hero p { margin: 0; color: var(--muted); font-size: 17px; line-height: 1.7; max-width: 720px; }

.docs-block { margin-bottom: 64px; scroll-margin-top: 90px; }
.docs-block h2 {
  font-size: 26px; font-weight: 800; letter-spacing: -0.02em;
  margin: 0 0 16px; color: var(--white);
  display: flex; align-items: center; gap: 12px;
}
.docs-block h3 {
  font-size: 15px; font-weight: 700; margin: 20px 0 8px;
  color: var(--gold); letter-spacing: 0.04em; text-transform: uppercase;
}
.docs-block p { color: var(--muted); font-size: 15px; line-height: 1.7; margin: 0 0 18px; }
.docs-block code {
  font-family: var(--f-mono); font-size: 12.5px;
  background: rgba(245,166,35,0.10); color: var(--gold);
  padding: 1px 6px; border-radius: 4px;
}
.docs-block a { color: var(--gold); }

.tag {
  display: inline-block;
  background: rgba(245,166,35,0.15); color: var(--gold);
  border: 1px solid var(--gold-3);
  padding: 2px 10px; border-radius: 999px;
  font-size: 11px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase;
}

/* Code block */
.docs-code {
  background: #050403;
  border: 1px solid var(--line);
  border-radius: 12px;
  overflow: hidden;
  margin: 12px 0 20px;
}
.docs-code-head {
  display: flex; justify-content: space-between; align-items: center;
  padding: 10px 14px;
  background: #0a0806;
  border-bottom: 1px solid var(--line);
  color: var(--dim); font-size: 11.5px; font-weight: 600;
  letter-spacing: 0.06em; text-transform: uppercase;
}
.docs-code pre {
  margin: 0; padding: 18px 20px;
  font-family: var(--f-mono); font-size: 13px; line-height: 1.6;
  color: #e4d4a2; overflow-x: auto; white-space: pre;
}

.docs-note {
  margin: 18px 0;
  padding: 16px 20px;
  border-left: 3px solid var(--gold);
  background: linear-gradient(90deg, rgba(245,166,35,0.10) 0%, rgba(245,166,35,0.02) 100%);
  color: var(--muted); font-size: 14px; line-height: 1.65;
  border-radius: 6px;
}
.docs-note strong { color: var(--gold); }

.docs-list { color: var(--muted); font-size: 15px; line-height: 1.8; padding-left: 20px; }
.docs-list li { margin-bottom: 6px; }
.docs-list b { color: var(--white); font-weight: 700; }

.docs-table {
  width: 100%; border-collapse: collapse;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 12px;
  overflow: hidden;
  margin-top: 12px;
}
.docs-table th, .docs-table td {
  padding: 12px 18px;
  border-bottom: 1px solid var(--line);
  text-align: left; font-size: 14px;
}
.docs-table tr:last-child th, .docs-table tr:last-child td { border-bottom: 0; }
.docs-table th {
  color: var(--dim); font-weight: 600;
  width: 200px; text-transform: uppercase;
  font-size: 11px; letter-spacing: 0.1em;
}
.docs-table td { color: var(--white); }

.docs-block details {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 14px 18px;
  margin-bottom: 10px;
}
.docs-block details summary {
  cursor: pointer; font-weight: 600; color: var(--white);
  list-style: none; position: relative; padding-right: 24px;
}
.docs-block details summary::after {
  content: '+'; position: absolute; right: 0; top: 0;
  color: var(--gold); font-size: 20px; font-weight: 300;
  transition: transform .15s;
}
.docs-block details[open] summary::after { content: '−'; }
.docs-block details p { margin: 12px 0 0; }

@media (max-width: 900px) {
  .docs-layout { grid-template-columns: 1fr; gap: 20px; }
  .docs-side { position: static; }
  .docs-side-inner { flex-direction: row; flex-wrap: wrap; gap: 4px; }
  .docs-side-title { width: 100%; padding: 4px 8px 8px; }
}

/* ═══ FOOTER ═══════════════════════════════════════════════════ */

.footer {
  padding: 44px 0;
  background: #000;
  border-top: 1px solid var(--line);
}
.footer-inner {
  display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 30px; align-items: center;
}
.foot-brand { display: flex; align-items: center; gap: 14px; }
.foot-coin { width: 46px; height: 46px; border-radius: 50%; box-shadow: var(--gold-glow); }
.foot-name { font-size: 20px; font-weight: 800; letter-spacing: -0.02em; }
.foot-tag  { font-size: 12.5px; color: var(--muted); }
.foot-links { display: flex; gap: 18px; justify-content: center; flex-wrap: wrap; }
.foot-links a {
  color: var(--muted); text-decoration: none; font-size: 14px; font-weight: 500;
}
.foot-links a:hover { color: var(--gold); }
.foot-legal {
  text-align: right; font-size: 12px; color: var(--dim); line-height: 1.55;
}

/* ═══ RESPONSIVE ════════════════════════════════════════════════ */

@media (max-width: 1100px) {
  .tok-grid, .arch-grid, .dash-metrics { grid-template-columns: repeat(2, 1fr); }
  .dash-metrics { grid-template-columns: repeat(3, 1fr); }
  .hero-inner { grid-template-columns: 1fr; gap: 30px; text-align: left; }
  .hero-coin img { max-width: 340px; margin: 0 auto; }
  .stats-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-inner { grid-template-columns: 1fr; text-align: center; }
  .foot-brand { justify-content: center; }
  .foot-legal { text-align: center; }
}
@media (max-width: 720px) {
  .nav-links { display: none; }
  .nav-inner { padding: 12px 20px; }
  .hero { padding: 40px 0 60px; }
  .hero-brand-text { font-size: 46px; }
  .amazon-word { font-size: 44px; }
  .amazon-arrow { width: 130px; }
  .hero-tag { font-size: 28px; }
  .hero-sub { font-size: 16px; }
  .hero-feats { gap: 20px; }
  .tok-grid, .arch-grid, .miner-grid, .dash-metrics { grid-template-columns: 1fr; }
  .dash-table { font-size: 12px; }
  .dash-table th, .dash-table td { padding: 8px 10px; }
  .section-title { font-size: 30px; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .contract-row { flex-direction: column; align-items: flex-start; gap: 8px; }
}
