/* ============ StrykerGOLDfx — premium dark + gold ============ */
:root {
  --bg: #07080c;
  --bg-2: #0c0e15;
  --bg-3: #12141d;
  --line: rgba(255, 255, 255, 0.08);
  --gold: #f5c542;
  --gold-2: #d4972a;
  --gold-grad: linear-gradient(135deg, #ffe28a 0%, #f5c542 40%, #c98e1b 100%);
  --green: #2fd47f;
  --text: #eef0f6;
  --muted: #9aa1b5;
  --radius: 18px;
  --font-head: "Sora", sans-serif;
  --font-body: "Inter", sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: var(--gold); text-decoration: none; }

.container { width: min(1180px, 92%); margin: 0 auto; }
.container.narrow { width: min(820px, 92%); }

h1, h2, h3, h4 { font-family: var(--font-head); line-height: 1.15; }
h1 { font-size: clamp(2.4rem, 5vw, 3.9rem); font-weight: 800; letter-spacing: -0.02em; }
h2 { font-size: clamp(1.8rem, 3.6vw, 2.7rem); font-weight: 800; letter-spacing: -0.01em; }
em {
  font-style: normal;
  background: var(--gold-grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.gold-text {
  background: var(--gold-grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-weight: 700;
}

/* ---------- buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--font-head); font-weight: 700; font-size: 1rem;
  padding: 15px 30px; border-radius: 999px; cursor: pointer;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
  white-space: nowrap;
}
.btn-gold {
  background: var(--gold-grad); color: #1a1304;
  box-shadow: 0 8px 28px rgba(245, 197, 66, 0.35);
}
.btn-gold:hover { transform: translateY(-3px); box-shadow: 0 14px 40px rgba(245, 197, 66, 0.5); }
.btn-ghost {
  border: 1px solid var(--line); color: var(--text);
  background: rgba(255, 255, 255, 0.03);
}
.btn-ghost:hover { border-color: var(--gold); color: var(--gold); transform: translateY(-3px); }
.btn-sm { padding: 11px 22px; font-size: 0.9rem; }
.btn-lg { padding: 19px 42px; font-size: 1.15rem; }

/* ---------- nav ---------- */
.nav {
  position: fixed; inset: 0 0 auto 0; z-index: 100;
  backdrop-filter: blur(14px);
  background: rgba(7, 8, 12, 0.72);
  border-bottom: 1px solid var(--line);
}
.nav-inner { display: flex; align-items: center; justify-content: space-between; height: 72px; }
.logo {
  font-family: var(--font-head); font-weight: 800; font-size: 1.25rem;
  color: var(--text); letter-spacing: 0.04em;
}
.logo span {
  background: var(--gold-grad);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.nav-links { display: flex; gap: 32px; }
.nav-links a { color: var(--muted); font-weight: 500; font-size: 0.95rem; transition: color 0.2s; }
.nav-links a:hover { color: var(--gold); }

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  padding: 10px;
  background: transparent;
  border: 1px solid var(--line);
  border-radius: 8px;
  cursor: pointer;
  flex-shrink: 0;
}
.nav-toggle span {
  display: block;
  height: 2px;
  width: 100%;
  background: var(--text);
  transition: transform 0.2s, opacity 0.2s;
}
.nav.is-open .nav-toggle span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav.is-open .nav-toggle span:nth-child(2) { opacity: 0; }
.nav.is-open .nav-toggle span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---------- hero ---------- */
.hero { position: relative; padding: 170px 0 110px; overflow: hidden; }
.hero-glow {
  position: absolute; top: -300px; left: 50%; transform: translateX(-50%);
  width: 1100px; height: 700px; pointer-events: none;
  background: radial-gradient(ellipse at center, rgba(245, 197, 66, 0.16) 0%, transparent 65%);
}
.grid-bg {
  position: absolute; inset: 0; pointer-events: none;
  background-image:
    linear-gradient(rgba(255,255,255,0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.035) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(ellipse 80% 60% at 50% 30%, black 35%, transparent 75%);
}
.hero-inner {
  position: relative; display: grid; grid-template-columns: 1.05fr 0.95fr;
  gap: 60px; align-items: center;
}
.badge {
  display: inline-flex; align-items: center; gap: 9px;
  border: 1px solid rgba(47, 212, 127, 0.35); color: var(--green);
  background: rgba(47, 212, 127, 0.08);
  font-size: 0.82rem; font-weight: 600; letter-spacing: 0.03em;
  padding: 7px 16px; border-radius: 999px; margin-bottom: 26px;
}
.dot {
  width: 8px; height: 8px; border-radius: 50%; background: var(--green);
  animation: pulse 1.8s infinite;
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(47, 212, 127, 0.55); }
  60% { box-shadow: 0 0 0 9px rgba(47, 212, 127, 0); }
}
.lead { color: var(--muted); font-size: 1.15rem; max-width: 520px; margin: 22px 0 34px; }
.hero-cta { display: flex; gap: 16px; flex-wrap: wrap; }
.hero-stats { display: flex; gap: 48px; margin-top: 52px; }
.stat .num {
  display: block; font-family: var(--font-head); font-weight: 800;
  font-size: 2.1rem;
  background: var(--gold-grad);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.stat .lbl { color: var(--muted); font-size: 0.82rem; letter-spacing: 0.08em; text-transform: uppercase; }

/* hero visual */
.hero-visual { position: relative; }
.chart-card {
  background: linear-gradient(160deg, var(--bg-3), var(--bg-2));
  border: 1px solid var(--line); border-radius: var(--radius);
  padding: 22px; box-shadow: 0 30px 80px rgba(0, 0, 0, 0.55);
}
.chart-head, .chart-foot { display: flex; justify-content: space-between; align-items: center; }
.chart-title { font-family: var(--font-head); font-weight: 700; }
.chart-foot { margin-top: 14px; color: var(--muted); font-size: 0.85rem; }
.pill {
  font-size: 0.72rem; font-weight: 700; letter-spacing: 0.08em;
  padding: 5px 12px; border-radius: 999px;
}
.pill-green { color: var(--green); background: rgba(47, 212, 127, 0.1); border: 1px solid rgba(47, 212, 127, 0.3); }
#equityCurve { width: 100%; height: 220px; margin-top: 16px; }

.float-card {
  position: absolute; display: flex; align-items: center; gap: 12px;
  background: rgba(18, 20, 29, 0.92); border: 1px solid var(--line);
  border-radius: 14px; padding: 13px 18px;
  box-shadow: 0 16px 44px rgba(0, 0, 0, 0.5);
  animation: floaty 5s ease-in-out infinite;
}
.float-card small { display: block; color: var(--muted); font-size: 0.75rem; }
.fc-icon { font-size: 1.5rem; }
.fc-1 { top: -52px; right: -14px; }
.fc-2 { bottom: -24px; left: -14px; animation-delay: 2.5s; }
@keyframes floaty { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-12px); } }

/* ---------- trust bar ---------- */
.trustbar { border-block: 1px solid var(--line); background: var(--bg-2); padding: 20px 0; }
.trust-inner {
  display: flex; justify-content: center; align-items: center; gap: 26px; flex-wrap: wrap;
  color: var(--muted); font-family: var(--font-head); font-size: 0.78rem;
  font-weight: 600; letter-spacing: 0.14em;
}
.trust-inner i { width: 5px; height: 5px; border-radius: 50%; background: var(--gold); opacity: 0.6; }

/* ---------- sections ---------- */
.section { padding: 110px 0; }
.section-head { text-align: center; max-width: 720px; margin: 0 auto 70px; }
.section-head p { color: var(--muted); margin-top: 18px; font-size: 1.05rem; }
.eyebrow {
  display: inline-block; font-family: var(--font-head); font-size: 0.78rem;
  font-weight: 700; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 16px;
}

/* ---------- EA cards ---------- */
.ea-card {
  display: grid; grid-template-columns: 1fr 1.1fr; gap: 50px; align-items: center;
  background: linear-gradient(160deg, var(--bg-3), var(--bg-2));
  border: 1px solid var(--line); border-radius: calc(var(--radius) + 6px);
  padding: 44px; margin-bottom: 36px;
  transition: border-color 0.3s ease, transform 0.3s ease;
}
.ea-card:hover { border-color: rgba(245, 197, 66, 0.4); transform: translateY(-4px); }
.ea-card.flip .ea-media { order: 2; }
.ea-tag {
  display: inline-block; font-family: var(--font-head); font-size: 0.72rem;
  font-weight: 700; letter-spacing: 0.18em;
  color: var(--muted); border: 1px solid var(--line);
  padding: 6px 14px; border-radius: 999px; margin-bottom: 18px;
}
.ea-tag.gold { color: #1a1304; background: var(--gold-grad); border: none; }
.ea-body h3 { font-size: 1.65rem; margin-bottom: 14px; }
.ea-body > p { color: var(--muted); margin-bottom: 26px; }
.placeholder-note { font-size: 0.7rem; color: var(--muted); font-weight: 400; vertical-align: middle; opacity: 0.7; }

.spec-grid {
  list-style: none; display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 14px; margin-bottom: 28px;
}
.spec-grid li {
  background: rgba(255, 255, 255, 0.03); border: 1px solid var(--line);
  border-radius: 12px; padding: 12px 14px;
}
.spec-grid b {
  display: block; font-size: 0.68rem; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--muted); margin-bottom: 4px; font-weight: 600;
}
.spec-grid span { font-family: var(--font-head); font-weight: 600; font-size: 0.92rem; }
.ea-actions { display: flex; align-items: center; gap: 22px; flex-wrap: wrap; }
.proof-link { color: var(--muted); font-size: 0.88rem; }
.proof-link b { color: var(--green); }

/* screenshot gallery */
.gallery-main {
  display: block; width: 100%; padding: 0; cursor: zoom-in;
  border: 1px solid var(--line); border-radius: var(--radius);
  background: var(--bg-2); overflow: hidden;
  transition: border-color 0.3s;
}
.gallery-main:hover { border-color: rgba(245, 197, 66, 0.5); }
.gallery-main img { width: 100%; height: auto; display: block; }
.gallery-thumbs { display: flex; gap: 10px; margin-top: 12px; overflow-x: auto; padding-bottom: 4px; scrollbar-width: thin; }
.gallery-thumbs button {
  flex: 0 0 72px; min-width: 72px; padding: 0; cursor: pointer; overflow: hidden;
  border: 1px solid var(--line); border-radius: 10px;
  background: var(--bg-2); opacity: 0.55;
  transition: opacity 0.25s, border-color 0.25s;
}
.gallery-thumbs button img { width: 100%; height: 52px; object-fit: cover; display: block; }
.gallery-thumbs button:hover { opacity: 0.85; }
.gallery-thumbs button.active { opacity: 1; border-color: var(--gold); }
.gallery-note {
  display: block; margin-top: 10px; text-align: center;
  color: var(--muted); font-size: 0.78rem; letter-spacing: 0.05em;
}

/* trade proof wall */
.trades { background: var(--bg); border-block: 1px solid var(--line); }
.trade-groups { display: grid; gap: 36px; }
.trade-group-head {
  display: flex; align-items: center; justify-content: space-between;
  gap: 16px; flex-wrap: wrap; margin-bottom: 18px;
}
.trade-group-head h3 { font-family: var(--font-head); font-size: 1.15rem; }
.trade-count { color: var(--muted); font-size: 0.82rem; letter-spacing: 0.06em; text-transform: uppercase; }
.trade-wall {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px;
}
.trade-tile {
  padding: 0; cursor: zoom-in; overflow: hidden;
  border: 1px solid var(--line); border-radius: 14px;
  background: var(--bg-2); aspect-ratio: 16 / 10;
  transition: border-color 0.25s, transform 0.25s;
}
.trade-tile:hover { border-color: rgba(245, 197, 66, 0.55); transform: translateY(-2px); }
.trade-tile img { width: 100%; height: 100%; object-fit: cover; object-position: top; display: block; }

/* verified results panel */
.verified-panel {
  background:
    radial-gradient(ellipse 70% 90% at 50% 0%, rgba(245, 197, 66, 0.1), transparent 70%),
    var(--bg-2);
  border: 1px solid rgba(245, 197, 66, 0.25);
  border-radius: 14px; padding: 30px; flex: 1;
}
.verified-head {
  display: flex; justify-content: space-between; align-items: center;
  gap: 14px; flex-wrap: wrap; margin-bottom: 30px;
}
.verified-name { font-family: var(--font-head); font-weight: 700; font-size: 1.1rem; }
.verified-stats {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px;
  text-align: center; margin-bottom: 26px;
}
.vstat .num { font-family: var(--font-head); font-size: 2.4rem; font-weight: 800; display: block; }
.vstat .num-sub { font-size: 1.3rem; }
.vstat .lbl { color: var(--muted); font-size: 0.8rem; letter-spacing: 0.06em; text-transform: uppercase; }
.verified-note { color: var(--muted); font-size: 0.88rem; text-align: center; }
.vip-note { margin-top: 12px; color: var(--gold); }
.official-tag {
  display: inline-block; margin-left: 10px; vertical-align: middle;
  font-family: var(--font-head); font-size: 0.62rem; font-weight: 700;
  letter-spacing: 0.14em; color: var(--gold);
  border: 1px solid rgba(245, 197, 66, 0.4); border-radius: 999px;
  padding: 3px 10px;
}
.proof-btns { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* verified checklist */
.check-list h4 { font-size: 1.05rem; margin-bottom: 16px; }
.check-list ul { list-style: none; }
.check-list li { color: var(--muted); font-size: 0.92rem; padding: 7px 0; }

/* lightbox */
.lightbox[hidden] { display: none; }
.lightbox {
  position: fixed; inset: 0; z-index: 200;
  background: rgba(4, 5, 8, 0.93); backdrop-filter: blur(6px);
  display: flex; align-items: center; justify-content: center; padding: 4vmin;
}
.lightbox img {
  max-width: 96vw; max-height: 92vh; border-radius: 10px;
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.8);
}
.lightbox-close {
  position: absolute; top: 22px; right: 28px;
  background: none; border: none; color: var(--text);
  font-size: 1.6rem; cursor: pointer; opacity: 0.8;
}
.lightbox-close:hover { opacity: 1; }

/* screenshot placeholders */
.shot {
  position: relative; aspect-ratio: 4 / 3; border-radius: var(--radius);
  border: 1px dashed rgba(245, 197, 66, 0.4);
  background:
    repeating-linear-gradient(45deg, rgba(245,197,66,0.03) 0 14px, transparent 14px 28px),
    var(--bg-2);
  overflow: hidden;
}
.shot.tall { aspect-ratio: 16 / 10; }
.shot::after {
  content: attr(data-label);
  position: absolute; top: 14px; left: 14px;
  font-family: var(--font-head); font-size: 0.7rem; font-weight: 700;
  letter-spacing: 0.12em; color: var(--gold);
  background: rgba(7, 8, 12, 0.8); padding: 6px 12px; border-radius: 8px;
}
.shot-overlay {
  position: absolute; inset: 0; display: flex; align-items: center; justify-content: center;
  text-align: center; color: var(--muted); font-family: var(--font-head);
  font-size: 0.85rem; font-weight: 600; letter-spacing: 0.08em; padding: 20px;
}

/* ---------- proof ---------- */
.proof { background: var(--bg-2); border-block: 1px solid var(--line); }
.proof-grid { display: grid; grid-template-columns: 1.5fr 1fr; gap: 28px; }
.proof-card {
  background: var(--bg-3); border: 1px solid var(--line);
  border-radius: var(--radius); padding: 26px;
}
.proof-card.big { display: flex; flex-direction: column; gap: 20px; }
.proof-card.big .btn { align-self: center; }
.proof-side { display: flex; flex-direction: column; gap: 28px; }
.stat-card { text-align: center; padding: 34px 26px; }
.stat-card .num { font-family: var(--font-head); font-size: 2.6rem; font-weight: 800; display: block; }
.stat-card .lbl { color: var(--muted); font-size: 0.85rem; }
.quote p { font-style: italic; color: var(--text); margin-bottom: 14px; }
.quote span { color: var(--gold); font-size: 0.85rem; font-weight: 600; }

/* ---------- steps ---------- */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.step {
  background: linear-gradient(160deg, var(--bg-3), var(--bg-2));
  border: 1px solid var(--line); border-radius: var(--radius); padding: 30px 26px;
  transition: border-color 0.3s, transform 0.3s;
}
.step:hover { border-color: rgba(245, 197, 66, 0.4); transform: translateY(-5px); }
.step-num {
  font-family: var(--font-head); font-weight: 800; font-size: 1rem;
  background: var(--gold-grad);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.step h4 { margin: 14px 0 10px; font-size: 1.08rem; }
.step p { color: var(--muted); font-size: 0.92rem; }

.cta-band {
  margin-top: 70px; text-align: center;
  background: linear-gradient(135deg, rgba(245,197,66,0.12), rgba(245,197,66,0.04));
  border: 1px solid rgba(245, 197, 66, 0.3); border-radius: calc(var(--radius) + 6px);
  padding: 54px 30px;
}
.cta-band h3 { font-size: 1.5rem; margin-bottom: 14px; }
.cta-band .cta-sub { color: var(--muted); max-width: 560px; margin: 0 auto 26px; font-size: 0.95rem; }

/* ---------- FAQ ---------- */
.faq details {
  background: var(--bg-3); border: 1px solid var(--line);
  border-radius: 14px; margin-bottom: 14px; overflow: hidden;
}
.faq summary {
  cursor: pointer; list-style: none; padding: 20px 24px;
  font-family: var(--font-head); font-weight: 600; font-size: 1rem;
  display: flex; justify-content: space-between; align-items: center;
  transition: color 0.2s;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "+"; font-size: 1.4rem; color: var(--gold);
  transition: transform 0.3s;
}
.faq details[open] summary::after { transform: rotate(45deg); }
.faq details[open] summary { color: var(--gold); }
.faq details p { padding: 0 24px 20px; color: var(--muted); }

/* ---------- final CTA ---------- */
.final-cta {
  text-align: center; padding: 130px 0;
  background:
    radial-gradient(ellipse 60% 70% at 50% 100%, rgba(245, 197, 66, 0.14), transparent 70%),
    var(--bg);
}
.final-cta p { color: var(--muted); margin: 18px 0 36px; font-size: 1.1rem; }

/* ---------- footer ---------- */
.footer { border-top: 1px solid var(--line); background: var(--bg-2); padding: 60px 0 0; }
.footer-inner { display: flex; justify-content: space-between; gap: 50px; }
.disclaimer { color: var(--muted); font-size: 0.78rem; max-width: 560px; margin-top: 18px; line-height: 1.7; }
.footer-links { display: flex; flex-direction: column; gap: 12px; }
.footer-links a { color: var(--muted); font-size: 0.92rem; }
.footer-links a:hover { color: var(--gold); }
.copyright {
  border-top: 1px solid var(--line); margin-top: 44px; padding: 22px 0;
  color: var(--muted); font-size: 0.8rem; text-align: center;
}

/* ---------- telegram fab ---------- */
.tg-fab {
  position: fixed; right: 26px; bottom: 26px; z-index: 90;
  width: 60px; height: 60px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  background: var(--gold-grad); color: #1a1304;
  box-shadow: 0 10px 34px rgba(245, 197, 66, 0.45);
  transition: transform 0.25s;
}
.tg-fab:hover { transform: scale(1.1) translateY(-3px); }

/* ---------- reveal animation ---------- */
.reveal { opacity: 0; transform: translateY(34px); transition: opacity 0.8s ease, transform 0.8s ease; }
.reveal.visible { opacity: 1; transform: none; }

/* ---------- recommended brokers (affiliate) ---------- */
.brokers { background: var(--bg-2); border-block: 1px solid var(--line); }
.brokers-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.broker-card {
  display: flex; flex-direction: column;
  background: linear-gradient(160deg, var(--bg-3), var(--bg-2));
  border: 1px solid var(--line); border-radius: var(--radius); padding: 30px;
  transition: border-color 0.3s, transform 0.3s;
}
.broker-card:hover { border-color: rgba(245, 197, 66, 0.4); transform: translateY(-5px); }
.broker-logo {
  font-family: var(--font-head); font-weight: 800; font-size: 1.35rem;
  letter-spacing: -0.01em; margin-bottom: 4px;
}
.broker-logo span { background: var(--gold-grad); -webkit-background-clip: text; background-clip: text; color: transparent; }
.broker-tier { font-size: 0.72rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--gold); font-weight: 700; margin-bottom: 16px; font-family: var(--font-head); }
.broker-why { color: var(--muted); font-size: 0.92rem; margin-bottom: 20px; flex: 1; }
.broker-feats { list-style: none; margin-bottom: 24px; }
.broker-feats li { color: var(--text); font-size: 0.88rem; padding: 5px 0; }
.broker-feats li::before { content: "✓ "; color: var(--gold); font-weight: 700; }
.broker-disclaim { color: var(--muted); font-size: 0.78rem; text-align: center; margin-top: 30px; max-width: 720px; margin-inline: auto; line-height: 1.6; }

/* ---------- ecosystem services ---------- */
.eco-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.eco-card {
  position: relative; display: flex; flex-direction: column;
  background: linear-gradient(160deg, var(--bg-3), var(--bg-2));
  border: 1px solid var(--line); border-radius: var(--radius); padding: 32px;
  text-decoration: none; color: var(--text);
  transition: border-color 0.3s, transform 0.3s;
}
.eco-card:hover { border-color: rgba(245, 197, 66, 0.45); transform: translateY(-5px); }
.eco-icon { font-size: 2rem; margin-bottom: 16px; }
.eco-card h3 { font-size: 1.2rem; margin-bottom: 10px; }
.eco-card p { color: var(--muted); font-size: 0.92rem; flex: 1; margin-bottom: 18px; }
.eco-link { color: var(--gold); font-family: var(--font-head); font-weight: 600; font-size: 0.9rem; }
.eco-status {
  position: absolute; top: 20px; right: 20px;
  font-family: var(--font-head); font-size: 0.62rem; font-weight: 700;
  letter-spacing: 0.12em; padding: 4px 10px; border-radius: 999px;
}
.eco-status.live { color: var(--green); background: rgba(47, 212, 127, 0.1); border: 1px solid rgba(47, 212, 127, 0.3); }
.eco-status.soon { color: var(--gold); background: rgba(245, 197, 66, 0.1); border: 1px solid rgba(245, 197, 66, 0.3); }

/* ---------- subpage layouts ---------- */
.page-hero {
  position: relative; padding: 160px 0 70px; overflow: hidden; text-align: center;
}
.page-hero .container { position: relative; }
.page-hero h1 { font-size: clamp(2.2rem, 4.5vw, 3.4rem); margin-bottom: 20px; }
.page-hero .lead { color: var(--muted); font-size: 1.15rem; max-width: 680px; margin: 0 auto 32px; }
.page-hero .hero-cta { justify-content: center; }
.back-link { display: inline-block; color: var(--muted); font-size: 0.88rem; margin-bottom: 26px; }
.back-link:hover { color: var(--gold); }

.value-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.value-card {
  background: linear-gradient(160deg, var(--bg-3), var(--bg-2));
  border: 1px solid var(--line); border-radius: var(--radius); padding: 30px;
  transition: border-color 0.3s, transform 0.3s;
}
.value-card:hover { border-color: rgba(245, 197, 66, 0.4); transform: translateY(-4px); }
.value-card .eco-icon { font-size: 1.7rem; }
.value-card h3 { font-size: 1.1rem; margin-bottom: 10px; }
.value-card p { color: var(--muted); font-size: 0.92rem; }

.tier-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; align-items: stretch; }
.tier-card {
  display: flex; flex-direction: column;
  background: linear-gradient(160deg, var(--bg-3), var(--bg-2));
  border: 1px solid var(--line); border-radius: calc(var(--radius) + 4px); padding: 36px 30px;
}
.tier-card.featured { border-color: rgba(245, 197, 66, 0.5); box-shadow: 0 20px 60px rgba(245,197,66,0.08); }
.tier-name { font-family: var(--font-head); font-weight: 700; font-size: 1.25rem; margin-bottom: 8px; }
.tier-tagline { color: var(--muted); font-size: 0.9rem; margin-bottom: 22px; min-height: 40px; }
.tier-feats { list-style: none; margin-bottom: 28px; flex: 1; }
.tier-feats li { color: var(--text); font-size: 0.9rem; padding: 7px 0; border-bottom: 1px solid var(--line); }
.tier-feats li::before { content: "✓ "; color: var(--gold); font-weight: 700; }

.waitlist-band {
  text-align: center;
  background: linear-gradient(135deg, rgba(245,197,66,0.12), rgba(245,197,66,0.04));
  border: 1px solid rgba(245, 197, 66, 0.3); border-radius: calc(var(--radius) + 6px);
  padding: 54px 30px;
}
.waitlist-band h3 { font-size: 1.6rem; margin-bottom: 14px; }
.waitlist-band p { color: var(--muted); max-width: 560px; margin: 0 auto 26px; }

/* ---------- risk metrics bar ---------- */
.risk-metrics-bar {
  display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 12px 18px;
  padding: 16px 20px; margin-bottom: 22px;
  background: rgba(245, 197, 66, 0.06); border: 1px solid rgba(245, 197, 66, 0.22);
  border-radius: calc(var(--radius) - 2px);
  font-family: var(--font-head); font-size: 0.92rem;
}
.risk-metric { display: flex; align-items: baseline; gap: 8px; }
.risk-label { color: var(--muted); font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.06em; font-weight: 600; }
.risk-value { color: var(--gold); font-weight: 700; font-size: 1.05rem; }
.risk-divider { color: rgba(245, 197, 66, 0.35); font-weight: 300; }

/* ---------- monthly returns ---------- */
.returns-section { background: var(--bg-2); border-block: 1px solid var(--line); }
.returns-panel {
  background: var(--bg-3); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 28px 24px;
}
.returns-table-wrap { overflow-x: auto; }
.returns-table { width: 100%; border-collapse: collapse; font-size: 0.92rem; }
.returns-table th {
  text-align: left; padding: 12px 14px; color: var(--muted);
  font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.07em;
  border-bottom: 1px solid var(--line);
}
.returns-table td { padding: 14px; border-bottom: 1px solid var(--line); }
.returns-table tr:last-child td { border-bottom: none; }
.returns-table .num-cell { font-family: var(--font-head); font-weight: 600; white-space: nowrap; }
.bar-cell { width: 38%; min-width: 140px; }
.bar-track {
  height: 8px; background: rgba(255,255,255,0.06); border-radius: 99px; overflow: hidden;
}
.bar-fill {
  height: 100%; border-radius: 99px;
  background: linear-gradient(90deg, #c9a227, var(--gold));
}
.returns-footnote { color: var(--muted); font-size: 0.82rem; margin-top: 18px; text-align: center; }

/* ---------- strategy section ---------- */
.strategy-section { border-bottom: 1px solid var(--line); }
.strategy-sub { color: var(--gold); font-weight: 600; margin-top: 12px; }
.strategy-pillars {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; margin: 36px 0;
}
.pillar-card {
  background: var(--bg-3); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 26px; transition: border-color 0.3s;
}
.pillar-card:hover { border-color: rgba(245, 197, 66, 0.35); }
.pillar-card h4 { font-size: 1rem; margin-bottom: 10px; color: var(--gold); }
.pillar-card p { color: var(--muted); font-size: 0.9rem; line-height: 1.6; }
.arch-flow { margin-top: 10px; }
.arch-intro { color: var(--muted); margin-bottom: 20px; max-width: 820px; }
.arch-diagram {
  display: block; overflow-x: auto;
  background: #0a0b10; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 24px 20px; margin: 0;
  font-family: "Consolas", "Courier New", monospace; font-size: 0.72rem; line-height: 1.45;
  color: #c8d0e0; white-space: pre;
}
.strategy-closing { color: var(--muted); max-width: 900px; margin-top: 28px; line-height: 1.7; }

/* ---------- why gold ---------- */
.why-gold-section { background: linear-gradient(180deg, var(--bg-2), var(--bg-1)); }
.why-gold-grid { display: grid; grid-template-columns: 1.4fr 1fr; gap: 40px; align-items: start; }
.why-gold-copy p { color: var(--muted); margin-bottom: 16px; line-height: 1.7; }
.why-gold-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.gold-stat-card {
  background: var(--bg-3); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 28px 20px; text-align: center;
}
.gold-stat-num {
  display: block; font-family: var(--font-head); font-weight: 800; font-size: 1.5rem;
  color: var(--gold); margin-bottom: 6px;
}
.gold-stat-lbl { color: var(--muted); font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.06em; }

/* ---------- about developer ---------- */
.about-section { border-top: 1px solid var(--line); }
.about-grid { display: grid; grid-template-columns: 1.2fr 1fr; gap: 48px; align-items: start; }
.about-quote {
  border-left: 3px solid var(--gold); padding-left: 20px; margin: 22px 0;
  font-size: 1.05rem; font-style: italic; color: var(--text); line-height: 1.6;
}
.about-bio { color: var(--muted); line-height: 1.7; margin-bottom: 24px; }
.about-signature span { display: block; font-family: var(--font-head); font-weight: 700; color: var(--gold); }
.about-signature small { color: var(--muted); font-size: 0.85rem; }
.about-mandate {
  background: linear-gradient(160deg, var(--bg-3), var(--bg-2));
  border: 1px solid rgba(245, 197, 66, 0.25); border-radius: calc(var(--radius) + 4px);
  padding: 32px 28px;
}
.about-mandate h3 { margin-bottom: 22px; font-size: 1.2rem; }
.mandate-list { list-style: none; }
.mandate-list li {
  padding: 16px 0; border-bottom: 1px solid var(--line);
}
.mandate-list li:last-child { border-bottom: none; }
.mandate-list strong { display: block; margin-bottom: 6px; color: var(--text); }
.mandate-list span { color: var(--muted); font-size: 0.9rem; line-height: 1.55; }
.mandate-teaser .mandate-quote {
  font-style: italic; color: var(--muted); font-size: 0.92rem; line-height: 1.6;
  margin-bottom: 18px; border-left: 2px solid var(--gold); padding-left: 14px;
}

/* ---------- FAQ bullets ---------- */
.faq-bullets { margin: 12px 0 8px 18px; color: var(--muted); }
.faq-bullets li { margin-bottom: 10px; line-height: 1.6; }
.faq-footer { font-weight: 600; color: var(--text); margin-top: 12px; }

/* ---------- waitlist form ---------- */
.waitlist-social-proof { margin-top: 20px; color: var(--muted); font-size: 0.95rem; }
.waitlist-social-proof strong { color: var(--gold); font-size: 1.1rem; }
.waitlist-form { max-width: 640px; margin: 0 auto; text-align: left; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 16px; }
.waitlist-form label span {
  display: block; font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.06em;
  color: var(--muted); margin-bottom: 8px; font-weight: 600;
}
.waitlist-form input,
.waitlist-form select {
  width: 100%; padding: 12px 14px; border-radius: 8px;
  border: 1px solid var(--line); background: var(--bg-1); color: var(--text);
  font-family: var(--font-body); font-size: 0.95rem;
}
.waitlist-form input:focus,
.waitlist-form select:focus {
  outline: none; border-color: rgba(245, 197, 66, 0.5);
}
.waitlist-form .btn { width: 100%; margin-top: 8px; }
.form-status { margin-top: 14px; font-size: 0.9rem; text-align: center; color: var(--muted); }
.form-status.success { color: #6dd4a0; }
.form-status.error { color: #f08080; }

/* ---------- responsive ---------- */
@media (max-width: 980px) {
  .hero-inner { grid-template-columns: 1fr; gap: 80px; }
  .ea-card { grid-template-columns: 1fr; padding: 30px; }
  .ea-card.flip .ea-media { order: 0; }
  .proof-grid { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr 1fr; }
  .nav-toggle { display: flex; }
  .nav-links {
    display: none;
    position: fixed;
    top: 72px;
    left: 0;
    right: 0;
    flex-direction: column;
    gap: 0;
    padding: 8px 0 16px;
    background: rgba(7, 8, 12, 0.98);
    border-bottom: 1px solid var(--line);
    backdrop-filter: blur(14px);
    z-index: 99;
    max-height: calc(100vh - 72px);
    overflow-y: auto;
  }
  .nav-links a {
    padding: 14px 24px;
    border-bottom: 1px solid var(--line);
    font-size: 1rem;
  }
  .nav.is-open .nav-links { display: flex; }
  .nav-inner .btn-sm { padding: 10px 14px; font-size: 0.82rem; }
  .brokers-grid, .eco-grid, .value-grid, .tier-grid { grid-template-columns: 1fr; }
  .trade-wall { grid-template-columns: repeat(2, 1fr); }
  .strategy-pillars, .why-gold-grid, .about-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .risk-metrics-bar { flex-direction: column; gap: 10px; }
  .risk-divider { display: none; }
}
@media (max-width: 580px) {
  .steps { grid-template-columns: 1fr; }
  .spec-grid { grid-template-columns: 1fr 1fr; }
  .hero-stats { gap: 28px; }
  .footer-inner { flex-direction: column; }
  .hero { padding-top: 130px; }
  .trade-wall { grid-template-columns: 1fr; }
}
