/* ===== Reset & base ===== */
* { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg: #080b13;
  --bg-alt: #0b0f1a;
  --card: #10141f;
  --card-alt: #131826;
  --border: #1e2534;
  --text: #eceef3;
  --text-muted: #8a91a6;
  --text-dim: #5b6478;
  --gold: #e8b64c;
  --gold-soft: #f3cc72;
  --green: #3ecf8e;
  --red: #f0546a;
  --radius: 14px;
  --radius-sm: 10px;
  --container: 1160px;
}

html { scroll-behavior: smooth; }

html body {
  background: var(--bg) !important;
  color: var(--text);
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

.container-narrow { max-width: 760px; }

a { color: inherit; text-decoration: none; }
ul { list-style: none; }

h1, h2, h3, h4 { font-weight: 700; letter-spacing: -0.02em; }

.accent { color: var(--gold); }

.dot {
  display: inline-block;
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--green);
  margin-right: 6px;
  box-shadow: 0 0 8px var(--green);
}

/* ===== Buttons ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 24px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.95rem;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.15s ease, background 0.15s ease, border-color 0.15s ease;
}
.btn:hover { transform: translateY(-1px); }

.btn-primary {
  background: linear-gradient(180deg, var(--gold-soft), var(--gold));
  color: #14100a;
}
.btn-primary:hover { filter: brightness(1.05); }

.btn-ghost {
  background: transparent;
  color: var(--text);
  border-color: var(--border);
}
.btn-ghost:hover { border-color: var(--gold); color: var(--gold); }

.btn-outline {
  display: block;
  text-align: center;
  width: 100%;
  background: transparent;
  border-color: var(--border);
  color: var(--text);
  margin-top: 24px;
}
.btn-outline:hover { border-color: var(--gold); color: var(--gold); }

.btn-sm { padding: 8px 16px; font-size: 0.85rem; }
.btn-lg { padding: 16px 32px; font-size: 1.05rem; }

/* ===== Header ===== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 110;
  background: rgba(8, 11, 19, 0.85);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.logo { display: flex; align-items: center; gap: 10px; font-weight: 800; font-size: 1.15rem; }
.logo-mark {
  width: 32px; height: 32px;
  display: grid; place-items: center;
  border-radius: 8px;
  background: linear-gradient(135deg, var(--gold-soft), var(--gold));
  color: #14100a;
  font-family: "JetBrains Mono", monospace;
}

.main-nav { display: flex; gap: 32px; }
.main-nav a { color: var(--text-muted); font-size: 0.92rem; font-weight: 500; transition: color 0.15s; }
.main-nav a:hover { color: var(--text); }

.header-actions { display: flex; align-items: center; gap: 16px; }

.live-pill {
  display: flex; align-items: center;
  font-size: 0.8rem;
  color: var(--text-muted);
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 6px 14px;
}

/* ===== Mobile menu toggle (hamburger) ===== */
.menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 40px; height: 40px;
  background: transparent;
  border: 1px solid var(--border);
  border-radius: 8px;
  cursor: pointer;
  flex-shrink: 0;
}
.menu-toggle span {
  display: block;
  width: 18px; height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease, background 0.3s ease;
}
.menu-toggle.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-toggle.active span:nth-child(2) { opacity: 0; }
.menu-toggle.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
.menu-toggle.active span { background: var(--gold); }

/* ===== Mobile nav drawer ===== */
.mobile-nav-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(2px);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  z-index: 90;
}
.mobile-nav-overlay.open { opacity: 1; visibility: visible; }

.mobile-nav {
  position: fixed;
  top: 0; right: 0;
  width: min(300px, 82vw);
  height: 100vh;
  background: var(--card);
  border-left: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 90px 28px 32px;
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1);
  z-index: 95;
  overflow-y: auto;
}
.mobile-nav.open { transform: translateX(0); }

.mobile-nav-link {
  color: var(--text);
  font-size: 1.05rem;
  font-weight: 600;
  padding: 14px 4px;
  border-bottom: 1px solid var(--border);
  opacity: 0;
  transform: translateX(16px);
  transition: color 0.15s ease;
}
.mobile-nav-link:hover { color: var(--gold); }

.mobile-nav.open .mobile-nav-link,
.mobile-nav.open .mobile-nav-actions {
  animation: navItemIn 0.4s ease forwards;
  animation-delay: calc(var(--i) * 0.06s + 0.1s);
}

@keyframes navItemIn {
  to { opacity: 1; transform: translateX(0); }
}

.mobile-nav-actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 24px;
  opacity: 0;
  transform: translateX(16px);
}
.mobile-nav-actions .btn { width: 100%; justify-content: center; }

body.menu-open { overflow: hidden; }

/* ===== Eyebrow ===== */
.eyebrow {
  display: inline-flex;
  align-items: center;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--gold-soft);
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 6px 14px;
  margin-bottom: 20px;
  background: var(--card);
}
.eyebrow.center { display: flex; width: fit-content; margin-left: auto; margin-right: auto; }

.eyebrow-blue {
  color: #5b9df9;
  border-color: rgba(91,157,249,0.35);
  background: rgba(91,157,249,0.08);
}
.eyebrow-icon { width: 14px; height: 14px; margin-right: 6px; flex-shrink: 0; }

/* ===== Hero ===== */
.hero {
  padding: 80px 0 60px;
  background:
    radial-gradient(ellipse 60% 50% at 20% 0%, rgba(232,182,76,0.08), transparent),
    var(--bg);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 56px;
  align-items: start;
}

.hero h1 {
  font-size: clamp(2.1rem, 4vw, 3.2rem);
  line-height: 1.1;
  margin-bottom: 20px;
}

.hero-sub {
  color: var(--text-muted);
  font-size: 1.05rem;
  max-width: 520px;
  margin-bottom: 28px;
}

.hero-actions { display: flex; gap: 14px; margin-bottom: 28px; flex-wrap: wrap; }

.trust-row {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  color: var(--text-dim);
  font-size: 0.85rem;
}

/* ===== Stats band (full-width, standalone) ===== */
.stats-band {
  border-top: 1px solid var(--border);
  padding: 56px 0 48px;
  background: var(--bg);
}
.stats-band-row {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 32px 16px;
  text-align: center;
}
.stats-band-row .stat-item { flex: 1 1 140px; }
.stats-band-row .stat-item strong {
  display: block;
  font-size: clamp(1.5rem, 2.4vw, 1.9rem);
  font-weight: 800;
  color: var(--gold);
  margin-bottom: 6px;
}
.stats-band-row .stat-item span {
  font-size: 0.82rem;
  color: var(--text-muted);
}
.stats-footnote {
  text-align: center;
  font-size: 0.75rem;
  color: var(--text-dim);
  margin-top: 32px;
}

/* ===== Hero panel (portfolio card) ===== */
.hero-panel { position: relative; }
.panel-card, .dashboard-mock, .terminal {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
}

.panel-dots { display: flex; align-items: center; gap: 6px; margin-bottom: 18px; }
.panel-dots span {
  width: 9px; height: 9px; border-radius: 50%;
  background: var(--border);
}
.panel-dots span:nth-child(1) { background: var(--red); }
.panel-dots span:nth-child(2) { background: var(--gold); }
.panel-dots span:nth-child(3) { background: var(--green); }
.panel-title { margin-left: auto; color: var(--text-dim); font-size: 0.8rem; margin-right:50px; }

.panel-balance { font-size: 2rem; font-weight: 800; margin-bottom: 4px; }
.panel-change { font-size: 0.9rem; margin-bottom: 18px; }
.positive { color: var(--green); }
.negative { color: var(--red); }

.panel-chart { width: 100%; height: 90px; display: block; margin-bottom: 18px; }

.panel-metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  border-top: 1px solid var(--border);
  padding-top: 16px;
}
.panel-metrics span { display: block; font-size: 0.7rem; color: var(--text-dim); margin-bottom: 4px; }
.panel-metrics strong { font-size: 1rem; }

/* ===== Section shared ===== */
.section { padding: 90px 0; border-top: 1px solid var(--border); scroll-margin-top: 88px; }
.section-head { max-width: 620px; margin: 0 auto 48px; text-align: center; }
.section-head h2 { font-size: clamp(1.7rem, 3vw, 2.4rem); margin-bottom: 12px; }
.section-head p { color: var(--text-muted); }

/* ===== Market list ===== */
.table-wrap {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow-x: auto;
  overflow-y: hidden;
}

.market-list { min-width: 640px; }

.market-row {
  display: grid;
  grid-template-columns: 2.2fr 1fr 1fr 1fr 1fr;
  align-items: center;
  gap: 12px;
  padding: 18px 24px;
  border-bottom: 1px solid var(--border);
  transition: background 0.15s ease;
}
.market-row:last-child { border-bottom: none; }

.market-row:not(.market-head):hover {
  background: rgba(232, 182, 76, 0.06);
}

.market-head {
  padding-top: 14px;
  padding-bottom: 14px;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--text-dim);
  font-weight: 600;
}
.market-head span:not(.col-asset) { text-align: right; }

.col-asset { display: flex; align-items: center; gap: 12px; }
.coin-avatar {
  width: 38px; height: 38px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--gold);
  background: rgba(232,182,76,0.12);
  border: 1px solid rgba(232,182,76,0.3);
  flex-shrink: 0;
}
.coin-name {
  display: flex;
  flex-direction: column;
  font-weight: 600;
  font-size: 0.95rem;
}
.coin-name small { color: var(--text-dim); font-weight: 500; font-size: 0.75rem; }

.col-price { text-align: right; font-weight: 600; font-family: "JetBrains Mono", monospace; font-size: 0.9rem; }
.col-change { text-align: right; font-weight: 600; font-family: "JetBrains Mono", monospace; font-size: 0.88rem; }
.col-volume { text-align: right; color: var(--text-muted); font-family: "JetBrains Mono", monospace; font-size: 0.88rem; }
.col-chart { display: flex; justify-content: flex-end; }
.col-chart svg { width: 90px; height: 28px; display: block; }

/* ===== Pricing ===== */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 18px;
  margin-bottom: 16px;
  align-items: stretch;
}

.price-card {
  --accent: var(--text-muted);
  --accent-soft: rgba(255,255,255,0.06);
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 26px 14px;
  position: relative;
  display: flex;
  flex-direction: column;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

/* Hover lift animation â€" every tier moves up and gains a soft glow */
.price-card:hover {
  transform: translateY(-8px);
  border-color: var(--accent);
  box-shadow: 0 16px 32px -12px rgba(0,0,0,0.5), 0 0 0 1px var(--accent-soft);
}
.price-card.featured:hover { transform: translateY(-16px); }

.plan-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  width: fit-content;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--accent);
  background: var(--accent-soft);
  border-radius: 999px;
  padding: 5px 12px;
  margin-bottom: 14px;
}
.plan-icon { font-size: 0.85rem; }

.plan-desc { font-size: 0.85rem; color: var(--text-dim); margin-bottom: 18px; }

.price-card .rate { font-size: 1.7rem; font-weight: 800; color: var(--accent); margin-bottom: 4px; }
.price-card .rate span { font-size: 0.85rem; color: var(--text-dim); font-weight: 500; }

.term-line { font-size: 0.78rem; color: var(--text-dim); margin-bottom: 20px; }
.term-line strong { color: var(--accent); font-weight: 700; }

.range-box {
  border: 1px solid var(--accent);
  border-radius: 8px;
  padding: 12px 5px;
  text-align: center;
  margin-bottom: 24px;
  background: var(--accent-soft);
}
.range-box span {
  display: block;
  font-size: 0.65rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-dim);
  margin-bottom: 6px;
}
.range-box strong { font-size: 15px; }

.price-card ul { display: flex; flex-direction: column; gap: 11px; margin-bottom: 24px; }
.price-card li {
  font-size: 0.85rem;
  color: var(--text-muted);
  padding-left: 22px;
  position: relative;
}
.price-card li::before {
  content: "âœ"";
  position: absolute; left: 0;
  color: var(--accent);
  font-size: 0.8rem;
  font-weight: 700;
}

.price-card .btn { margin-top: auto; }

/* Tier accent themes */
.price-card--neutral { --accent: #cdd2e0; --accent-soft: rgba(205,210,224,0.08); }

.price-card--gold {
  --accent: var(--gold);
  --accent-soft: rgba(232,182,76,0.1);
  border-color: rgba(232,182,76,0.5);
  background: linear-gradient(180deg, rgba(232,182,76,0.08), var(--card));
  box-shadow: 0 0 0 1px rgba(232,182,76,0.25), 0 0 40px -12px rgba(232,182,76,0.35);
}
.price-card--gold .btn-primary { color: #14100a; }

.price-card--platinum { --accent: #a78bfa; --accent-soft: rgba(167,139,250,0.1); border-color: rgba(167,139,250,0.4); }
.price-card--platinum .btn-outline { border-color: var(--accent); color: var(--accent); }
.price-card--platinum .btn-outline:hover { background: var(--accent-soft); }

.price-card--vip { --accent: #5b9df9; --accent-soft: rgba(91,157,249,0.1); border-color: rgba(91,157,249,0.4); }
.price-card--vip .btn-outline { border-color: var(--accent); color: var(--accent); }
.price-card--vip .btn-outline:hover { background: var(--accent-soft); }

.badge {
  position: absolute;
  top: -12px; left: 50%;
  transform: translateX(-50%);
  background: var(--gold);
  color: #14100a;
  font-size: 0.68rem;
  font-weight: 700;
  padding: 5px 14px;
  border-radius: 999px;
  white-space: nowrap;
  box-shadow: 0 0 16px rgba(232,182,76,0.6);
}

.pricing-footnote {
  text-align: center;
  font-size: 0.78rem;
  color: var(--text-dim);
  margin-bottom: 48px;
}

/* ===== Estimator ===== */
.estimator {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 32px;
}
.estimator-top {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 24px;
}
.estimator-title { font-weight: 700; font-size: 1.05rem; display: flex; align-items: center; gap: 8px; }
.est-icon { color: var(--gold); }
.estimator-note { font-size: 0.78rem; color: var(--text-dim); font-style: italic; }

.estimator-body {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 24px;
}
.estimator-field label { display: block; font-size: 0.78rem; color: var(--text-muted); margin-bottom: 8px; }
.estimator-field input {
  width: 100%;
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 12px 14px;
  color: var(--text);
  font-size: 1rem;
  font-family: "JetBrains Mono", monospace;
  transition: border-color 0.15s ease;
}
.estimator-field input:focus {
  outline: none;
  border-color: var(--gold);
}
/* hide number spinners for a cleaner look */
.estimator-field input::-webkit-outer-spin-button,
.estimator-field input::-webkit-inner-spin-button { -webkit-appearance: none; margin: 0; }
.estimator-field input[type="number"] { -moz-appearance: textfield; }

.estimator-result {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 18px 22px;
}
.estimator-result .align-right { text-align: right; }
.estimator-result span { display: block; font-size: 0.75rem; color: var(--text-dim); margin-bottom: 6px; }
.estimator-result strong { font-size: 1.4rem; font-family: "JetBrains Mono", monospace; }

/* ===== Steps ===== */
.steps-grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.steps-grid::before {
  content: "";
  position: absolute;
  top: 46px;
  left: calc(12.5% + 6px);
  right: calc(12.5% + 6px);
  height: 1px;
  background: repeating-linear-gradient(90deg, var(--border) 0 8px, transparent 8px 16px);
  z-index: 0;
}
.step-card {
  position: relative;
  z-index: 1;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 26px;
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}
.step-card:hover {
  transform: translateY(-8px);
  border-color: rgba(232,182,76,0.4);
  box-shadow: 0 16px 32px -14px rgba(0,0,0,0.5);
}
.step-num {
  display: grid;
  place-items: center;
  width: 40px; height: 40px;
  border-radius: 50%;
  border: 1px solid var(--gold);
  background: var(--card);
  font-family: "JetBrains Mono", monospace;
  color: var(--gold);
  font-size: 0.85rem;
  font-weight: 700;
  margin-bottom: 16px;
}
.step-icon { font-size: 1.3rem; margin-bottom: 14px; }
.step-card h3 { font-size: 1.05rem; margin-bottom: 10px; }
.step-card p { font-size: 0.88rem; color: var(--text-muted); }

/* ===== Engine ===== */
.engine-section { background: var(--bg-alt); }

.engine-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
}

.engine-features { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.feature-item {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 20px;
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}
.feature-item:hover {
  transform: translateY(-6px);
  border-color: rgba(91,157,249,0.4);
  box-shadow: 0 14px 28px -14px rgba(0,0,0,0.5);
}
.feature-icon {
  width: 34px; height: 34px;
  display: grid;
  place-items: center;
  border-radius: 8px;
  background: rgba(91,157,249,0.12);
  color: #5b9df9;
  margin-bottom: 14px;
}
.feature-icon svg { width: 17px; height: 17px; }
.feature-item h4 { font-size: 0.95rem; margin-bottom: 8px; }
.feature-item p { font-size: 0.82rem; color: var(--text-muted); }

.terminal { padding: 0; overflow: hidden; }
.terminal-bar {
  display: flex; align-items: center; gap: 6px;
  padding: 14px 18px;
  border-bottom: 1px solid var(--border);
  background: var(--card-alt);
}
.terminal-bar span { width: 9px; height: 9px; border-radius: 50%; background: var(--border); }
.terminal-bar span:nth-child(1) { background: var(--red); }
.terminal-bar span:nth-child(2) { background: var(--gold); }
.terminal-bar span:nth-child(3) { background: var(--green); }
.terminal-bar small { margin-left: 8px; color: var(--text-dim); }

.terminal-body { padding: 18px; font-family: "JetBrains Mono", monospace; font-size: 0.74rem; max-height: 360px; overflow-y: auto; }
.tline { color: var(--text-muted); margin-bottom: 9px; line-height: 1.5; }
.tline.ok { color: var(--text-muted); }
.tts { color: var(--text-dim); margin-right: 2px; }
.ttag { font-weight: 700; margin-right: 4px; }
.ttag-sys { color: #7c8499; }
.ttag-bot { color: var(--green); }
.ttag-order { color: #5b9df9; }
.ttag-risk { color: var(--red); }
.ttag-pnl { color: var(--green); }
.ttag-signal { color: var(--gold); }
.ttag-arbi { color: #a78bfa; }
.ttag-report { color: #4dd0e1; }

.tbar {
  display: inline-block;
  width: 60px; height: 6px;
  background: var(--border);
  border-radius: 3px;
  overflow: hidden;
  vertical-align: middle;
  margin: 0 6px;
}
.tbar-fill { display: block; width: 84%; height: 100%; background: var(--gold); }

.tcursor {
  display: inline-block;
  color: var(--gold);
  animation: blink 1s step-start infinite;
}
@keyframes blink { 50% { opacity: 0; } }

.terminal-metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--border);
  padding: 16px 18px;
}
.terminal-metrics span { display: block; font-size: 0.68rem; color: var(--text-dim); margin-bottom: 4px; }
.terminal-metrics strong { font-size: 1rem; }
.accent-text { color: var(--gold); }
.metric-blue { color: #5b9df9; }

/* ===== Referral ===== */
.referral-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 24px;
  align-items: start;
}

.commission-tiers { display: flex; flex-direction: column; gap: 16px; }
.tier-card {
  --accent: var(--gold);
  --accent-soft: rgba(232,182,76,0.1);
  background: var(--card);
  border: 1px solid var(--border);
  border-left: 3px solid var(--accent);
  border-radius: var(--radius-sm);
  padding: 22px;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.tier-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 28px -16px rgba(0,0,0,0.5);
}
.tier-card.tier-blue { --accent: #5b9df9; --accent-soft: rgba(91,157,249,0.1); }
.tier-card.tier-purple { --accent: #a78bfa; --accent-soft: rgba(167,139,250,0.1); }

.tier-head { display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: 12px; gap: 12px; }
.tier-label {
  display: block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 6px;
}
.tier-rate { display: block; font-size: 1.4rem; font-weight: 800; color: var(--accent); }
.tier-badge {
  flex-shrink: 0;
  font-size: 0.72rem;
  font-weight: 700;
  color: #14100a;
  background: var(--accent);
  border-radius: 999px;
  padding: 5px 12px;
}
.tier-card p { font-size: 0.85rem; color: var(--text-muted); margin-bottom: 16px; }

.tier-chips { display: flex; flex-wrap: wrap; gap: 8px; }
.chip {
  font-family: "JetBrains Mono", monospace;
  font-size: 0.75rem;
  color: var(--text-muted);
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 5px 10px;
}

.referral-right { display: flex; flex-direction: column; gap: 24px; }

.referral-panel {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
}
.referral-panel h4 { font-size: 0.9rem; color: var(--text-muted); margin-bottom: 14px; font-weight: 600; }
.ref-code {
  display: flex; align-items: center; gap: 12px;
  margin-bottom: 20px;
}
.ref-code span {
  flex: 1;
  background: var(--bg-alt);
  border: 1px dashed var(--border);
  border-radius: 8px;
  padding: 14px 16px;
  font-family: "JetBrains Mono", monospace;
  color: var(--gold);
  font-weight: 600;
  letter-spacing: 0.02em;
}
.copy-btn {
  flex-shrink: 0;
  width: 44px; height: 44px;
  display: grid;
  place-items: center;
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: 8px;
  color: var(--text-muted);
  cursor: pointer;
  transition: border-color 0.15s ease, color 0.15s ease;
}
.copy-btn svg { width: 17px; height: 17px; }
.copy-btn:hover { border-color: var(--gold); color: var(--gold); }
.copy-btn.copied { border-color: var(--green); color: var(--green); }

.ref-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}
.ref-stat {
  text-align: center;
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 14px 8px;
}
.ref-stat strong { display: block; font-size: 1.1rem; font-family: "JetBrains Mono", monospace; margin-bottom: 4px; }
.ref-stat span { font-size: 0.68rem; color: var(--text-dim); }

.sample-head { font-size: 0.85rem; font-weight: 600; margin-bottom: 16px; }
.sample-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.83rem;
  color: var(--text-muted);
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
}
.sample-row strong { font-family: "JetBrains Mono", monospace; }
.l-tag {
  display: inline-block;
  font-style: normal;
  font-family: "JetBrains Mono", monospace;
  font-size: 0.68rem;
  font-weight: 700;
  padding: 2px 6px;
  border-radius: 4px;
  margin-right: 8px;
}
.l-tag-gold { color: var(--gold); background: rgba(232,182,76,0.12); }
.l-tag-blue { color: #5b9df9; background: rgba(91,157,249,0.12); }
.l-tag-purple { color: #a78bfa; background: rgba(167,139,250,0.12); }

.sample-total { display: flex; justify-content: space-between; padding-top: 14px; font-weight: 700; }
.sample-footnote { font-size: 0.72rem; color: var(--text-dim); margin-top: 14px; }

/* ===== Rewards ===== */
.rewards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.reward-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 22px;
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}
.reward-card:hover {
  transform: translateY(-6px);
  border-color: rgba(232,182,76,0.4);
  box-shadow: 0 14px 28px -16px rgba(0,0,0,0.5);
}
.reward-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 18px;
}
.reward-icon {
  width: 40px; height: 40px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(232,182,76,0.1);
  color: var(--gold);
}
.reward-icon svg { width: 18px; height: 18px; }
.reward-amount {
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--gold);
  border: 1px solid rgba(232,182,76,0.35);
  border-radius: 999px;
  padding: 4px 12px;
}
.reward-card h4 { font-size: 0.98rem; margin-bottom: 8px; }
.reward-card p { font-size: 0.85rem; color: var(--text-muted); }

/* ===== Dashboard mock ===== */
.dashboard-mock { padding: 24px; }
.dash-top {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 24px;
}
.dash-stat span { display: block; font-size: 0.72rem; color: var(--text-dim); margin-bottom: 6px; }
.dash-stat strong { font-size: 1.15rem; }

.dash-body { display: grid; grid-template-columns: 2.2fr 1fr; gap: 24px; align-items: center; }
.dash-chart { width: 100%; height: 160px; }
.dash-specs { display: flex; flex-direction: column; gap: 14px; }
.dash-specs div { display: flex; justify-content: space-between; font-size: 0.85rem; border-bottom: 1px solid var(--border); padding-bottom: 10px; }

/* ===== Security ===== */
.security-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.security-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 22px;
}
.sec-icon { font-size: 1.4rem; margin-bottom: 12px; }
.security-card h4 { font-size: 0.92rem; margin-bottom: 8px; }
.security-card p { font-size: 0.82rem; color: var(--text-muted); }

/* ===== Testimonials ===== */
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.testimonial-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 22px;
}
.stars { color: var(--gold); letter-spacing: 2px; margin-bottom: 12px; font-size: 0.9rem; }
.testimonial-card p { font-size: 0.85rem; color: var(--text-muted); margin-bottom: 18px; }
.person strong { display: block; font-size: 0.88rem; }
.person span { font-size: 0.78rem; color: var(--text-dim); }

/* ===== FAQ ===== */
.faq-list { display: flex; flex-direction: column; gap: 12px; }
.faq-item {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 18px 22px;
}
.faq-item summary {
  cursor: pointer;
  font-weight: 600;
  font-size: 0.95rem;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+";
  color: var(--gold);
  font-size: 1.2rem;
  margin-left: 12px;
}
.faq-item[open] summary::after { content: "âˆ'"; }
.faq-item p { margin-top: 14px; font-size: 0.88rem; color: var(--text-muted); }

/* ===== CTA ===== */
.cta-section {
  text-align: center;
  padding: 100px 0;
  border-top: 1px solid var(--border);
  background:
    radial-gradient(ellipse 50% 60% at 50% 0%, rgba(232,182,76,0.1), transparent),
    var(--bg-alt);
}
.cta-section h2 { font-size: clamp(1.8rem, 3.5vw, 2.6rem); margin: 16px 0; }
.cta-section p { color: var(--text-muted); max-width: 520px; margin: 10px auto 32px; }
.disclaimer { font-size: 0.75rem; color: var(--red); opacity: 0.85; max-width: 560px; margin: 28px auto 0; }

/* ===== Footer ===== */
.site-footer { border-top: 1px solid var(--border); padding: 64px 0 24px; background: var(--bg); }
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 40px;
}
.footer-brand p { color: var(--text-dim); font-size: 0.85rem; margin-top: 14px; max-width: 260px; }
.footer-col h5 { font-size: 0.85rem; margin-bottom: 16px; color: var(--text-muted); }
.footer-col a { display: block; font-size: 0.85rem; color: var(--text-dim); margin-bottom: 12px; }
.footer-col a:hover { color: var(--gold); }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  padding-top: 24px;
  border-top: 1px solid var(--border);
  font-size: 0.78rem;
  color: var(--text-dim);
  flex-wrap: wrap;
  gap: 10px;
}

/* ===== Responsive ===== */
@media (max-width: 980px) {
  .hero-grid { grid-template-columns: 1fr; }
  .stats-band-row { justify-content: flex-start; }
  .pricing-grid { grid-template-columns: repeat(2, 1fr); }
  .price-card.featured:hover,
  .price-card:hover { transform: translateY(-4px); }
  .steps-grid { grid-template-columns: repeat(2, 1fr); }
  .steps-grid::before { display: none; }
  .engine-grid { grid-template-columns: 1fr; }
  .engine-features { grid-template-columns: 1fr 1fr; }
  .referral-grid { grid-template-columns: 1fr; }
  .rewards-grid { grid-template-columns: repeat(2, 1fr); }
  .security-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonial-grid { grid-template-columns: repeat(2, 1fr); }
  .dash-top { grid-template-columns: repeat(2, 1fr); }
  .dash-body { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .main-nav { display: none; }
  .header-actions .btn { display: none; }
  .menu-toggle { display: flex; }
}

@media (max-width: 600px) {
  .stats-band-row .stat-item { flex: 1 1 42%; }
  .pricing-grid { grid-template-columns: 1fr; }
  .price-card.featured { transform: none; box-shadow: 0 0 0 1px rgba(232,182,76,0.25), 0 0 40px -12px rgba(232,182,76,0.35); }
  .steps-grid { grid-template-columns: 1fr; }
  .engine-features { grid-template-columns: 1fr; }
  .rewards-grid { grid-template-columns: 1fr; }
  .security-grid { grid-template-columns: 1fr; }
  .testimonial-grid { grid-template-columns: 1fr; }
  .dash-top { grid-template-columns: 1fr 1fr; }
  .estimator-body { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .live-pill { display: none; }
}
.entry-header{ display: none !important; }