*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg: #0c0e14;
  --bg-secondary: #111420;
  --bg-card: #161a25;
  --fg: #e8e3d8;
  --fg-muted: #8a8578;
  --accent: #c9963e;
  --accent-bright: #e8b24a;
  --accent-dim: #7a5c22;
  --border: #252836;
  --panel-bg: #0f1218;
}

body {
  background: var(--bg);
  color: var(--fg);
  font-family: 'DM Sans', system-ui, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* ─── HERO ─── */
.hero {
  padding: 80px 60px 60px;
  background: var(--bg);
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: radial-gradient(ellipse 80% 60% at 70% 40%, rgba(201, 150, 62, 0.05) 0%, transparent 70%);
  pointer-events: none;
}

.hero-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.eyebrow {
  font-family: 'DM Sans', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  color: var(--accent);
  text-transform: uppercase;
  margin-bottom: 24px;
}

.hero-headline {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(52px, 6vw, 88px);
  line-height: 0.92;
  letter-spacing: 0.02em;
  color: var(--fg);
  margin-bottom: 28px;
}

.hero-sub {
  font-size: 16px;
  color: var(--fg-muted);
  line-height: 1.7;
  max-width: 420px;
  margin-bottom: 48px;
}

.hero-stat-row {
  display: flex;
  gap: 40px;
}

.hero-stat {
  display: flex;
  flex-direction: column;
}

.stat-value {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 36px;
  color: var(--accent-bright);
  letter-spacing: 0.04em;
  line-height: 1;
}

.stat-label {
  font-size: 11px;
  color: var(--fg-muted);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-top: 4px;
}

/* Right panel */
.data-panel {
  background: var(--panel-bg);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 28px;
  margin-bottom: 16px;
}

.panel-label {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.2em;
  color: var(--accent-dim);
  text-transform: uppercase;
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--border);
}

.signal-list { display: flex; flex-direction: column; gap: 14px; }

.signal-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 13px;
  color: var(--fg-muted);
}

.signal-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--border);
  flex-shrink: 0;
}

.signal-dot.active { background: var(--accent-bright); }

.gold-bar {
  background: linear-gradient(135deg, #1a1208 0%, #231a0c 100%);
  border: 1px solid #3a2a0f;
  border-radius: 4px;
  padding: 16px 24px;
  display: flex;
  align-items: baseline;
  gap: 12px;
}

.gold-label {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 28px;
  color: var(--accent-bright);
  letter-spacing: 0.04em;
}

.gold-unit {
  font-size: 13px;
  color: var(--fg-muted);
}

/* ─── MANIFESTO ─── */
.manifesto {
  background: var(--bg-secondary);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 64px 60px;
}

.manifesto-inner { max-width: 760px; margin: 0 auto; text-align: center; }

.gold-rule {
  width: 48px;
  height: 2px;
  background: var(--accent);
  margin: 0 auto 36px;
}

.manifesto-text {
  font-size: 20px;
  line-height: 1.7;
  color: var(--fg);
  font-weight: 300;
}

.manifesto-text.secondary {
  font-size: 16px;
  color: var(--fg-muted);
  margin-top: 20px;
}

/* ─── FEATURES ─── */
.features {
  padding: 80px 60px;
  background: var(--bg);
}

.features-header { margin-bottom: 56px; }

.section-eyebrow {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  color: var(--accent);
  text-transform: uppercase;
  margin-bottom: 16px;
}

.section-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(36px, 4vw, 52px);
  letter-spacing: 0.02em;
  color: var(--fg);
  line-height: 1.1;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2px;
  background: var(--border);
  border: 1px solid var(--border);
  max-width: 1200px;
  margin: 0 auto;
}

.feature-card {
  background: var(--bg);
  padding: 40px 36px;
}

.feature-icon {
  margin-bottom: 20px;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.feature-card h3 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 22px;
  letter-spacing: 0.04em;
  color: var(--fg);
  margin-bottom: 12px;
}

.feature-card p {
  font-size: 14px;
  color: var(--fg-muted);
  line-height: 1.65;
}

/* ─── COMPOSITION ─── */
.composition {
  background: var(--bg-secondary);
  padding: 80px 60px;
  border-top: 1px solid var(--border);
}

.composition-header { margin-bottom: 48px; }

.comp-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.jurisdiction-list { display: flex; flex-direction: column; gap: 0; }

.jur-item {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px 0;
  border-bottom: 1px solid var(--border);
}

.jur-flag {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.star-dot, .maple-dot, .eagle-dot, .cross-dot {
  width: 14px; height: 14px;
  border-radius: 50%;
  background: var(--accent-dim);
}

.star-dot { background: #c9963e; }
.maple-dot { background: #c0392b; }
.eagle-dot { background: #2c5f8a; }
.cross-dot { background: #2e7d32; }

.jur-name {
  font-weight: 600;
  font-size: 15px;
  color: var(--fg);
  margin-bottom: 2px;
}

.jur-detail {
  font-size: 13px;
  color: var(--fg-muted);
}

.market-callout {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 40px;
  text-align: center;
  margin-bottom: 20px;
}

.callout-number {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 72px;
  color: var(--accent-bright);
  letter-spacing: 0.04em;
  line-height: 1;
}

.plus {
  font-size: 48px;
  vertical-align: super;
}

.callout-text {
  font-size: 15px;
  color: var(--fg-muted);
  margin-top: 12px;
  line-height: 1.5;
}

.callout-sub {
  font-size: 13px;
  color: var(--fg-muted);
  text-align: center;
  font-style: italic;
  opacity: 0.7;
}

/* ─── CLOSING ─── */
.closing {
  background: var(--bg);
  padding: 80px 60px;
  border-top: 1px solid var(--border);
}

.closing-inner { max-width: 900px; margin: 0 auto; }

.gold-rule-wide {
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
  margin-bottom: 48px;
}

.closing-statement {
  font-size: 20px;
  line-height: 1.7;
  color: var(--fg-muted);
  font-weight: 300;
  max-width: 780px;
}

.closing-statement.accent {
  color: var(--accent-bright);
  font-weight: 400;
  margin-top: 24px;
  font-size: 18px;
}

/* ─── FOOTER ─── */
footer {
  background: var(--panel-bg);
  border-top: 1px solid var(--border);
  padding: 40px 60px;
}

.footer-inner { max-width: 1200px; margin: 0 auto; }

.footer-brand {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 20px;
  letter-spacing: 0.1em;
  color: var(--accent);
  margin-bottom: 6px;
}

.footer-tagline {
  font-size: 13px;
  color: var(--fg-muted);
  margin-bottom: 8px;
}

.footer-meta {
  font-size: 11px;
  color: var(--fg-muted);
  opacity: 0.5;
  letter-spacing: 0.05em;
}

/* ─── MOBILE ─── */
@media (max-width: 900px) {
  .hero { padding: 48px 28px 40px; }
  .hero-grid { grid-template-columns: 1fr; gap: 40px; }
  .manifesto { padding: 48px 28px; }
  .features { padding: 48px 28px; }
  .features-grid { grid-template-columns: 1fr; }
  .composition { padding: 48px 28px; }
  .comp-grid { grid-template-columns: 1fr; gap: 40px; }
  .closing { padding: 48px 28px; }
  footer { padding: 32px 28px; }
  .hero-stat-row { gap: 28px; }
  .manifesto-text { font-size: 17px; }
  .closing-statement { font-size: 16px; }
}