:root {
  --bg: #1a1410;
  --bg-card: #231c16;
  --fg: #f5f0e8;
  --fg-muted: #a89880;
  --accent: #d4a843;
  --accent-dim: #8a6d2e;
  --red: #c0392b;
  --yellow: #e6a817;
  --gold: #f5c842;
  --green: #27ae60;
  --font-head: 'Archivo Black', sans-serif;
  --font-body: 'Source Sans 3', sans-serif;
}

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

html {
  scroll-behavior: smooth;
}

body {
  background: var(--bg);
  color: var(--fg);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* HERO */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 60px 5% 80px;
  background: var(--bg);
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: radial-gradient(ellipse at 70% 50%, rgba(212,168,67,0.06) 0%, transparent 65%);
  pointer-events: none;
}

.hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.eyebrow {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 24px;
  padding: 6px 14px;
  border: 1px solid var(--accent-dim);
  border-radius: 3px;
}

.hero h1 {
  font-family: var(--font-head);
  font-size: clamp(40px, 5vw, 64px);
  line-height: 1.05;
  color: var(--fg);
  margin-bottom: 28px;
  letter-spacing: -0.02em;
}

.lede {
  font-size: 18px;
  color: var(--fg-muted);
  line-height: 1.65;
  margin-bottom: 36px;
  max-width: 440px;
}

.hero-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.tag {
  font-size: 12px;
  font-weight: 600;
  padding: 5px 12px;
  background: rgba(212,168,67,0.1);
  color: var(--accent);
  border-radius: 2px;
  letter-spacing: 0.03em;
}

/* MAP MOCKUP */
.hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
}

.map-mockup {
  background: #2a221a;
  border: 1px solid rgba(212,168,67,0.2);
  border-radius: 8px;
  padding: 20px;
  width: 100%;
  max-width: 380px;
  box-shadow: 0 24px 60px rgba(0,0,0,0.5), 0 0 0 1px rgba(212,168,67,0.08);
}

.map-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
}

.map-title {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  color: var(--fg-muted);
}

.live-badge {
  font-size: 10px;
  font-weight: 700;
  color: var(--green);
  border: 1px solid var(--green);
  padding: 2px 8px;
  border-radius: 2px;
  letter-spacing: 0.1em;
}

.map-grid {
  background: #1a1410;
  border-radius: 4px;
  overflow: hidden;
  margin-bottom: 16px;
}

.grid-row {
  display: flex;
}

.grid-cell {
  flex: 1;
  aspect-ratio: 1;
  border: 0.5px solid rgba(255,255,255,0.04);
  min-height: 28px;
}

.gold-hot { background: rgba(245,200,66,0.15); }
.track-red { background: rgba(192,57,43,0.3); }
.track-yellow { background: rgba(230,168,23,0.4); }
.gold-pin { background: rgba(212,168,67,0.6); position: relative; }
.gold-pin::after {
  content: '';
  position: absolute;
  inset: 30%;
  background: var(--gold);
  border-radius: 50%;
}

.map-legend {
  display: flex;
  gap: 16px;
  margin-bottom: 16px;
  flex-wrap: wrap;
}

.legend-item {
  font-size: 11px;
  color: var(--fg-muted);
  display: flex;
  align-items: center;
  gap: 5px;
}

.dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  display: inline-block;
}
.dot.red { background: var(--red); }
.dot.yellow { background: var(--yellow); }
.dot.gold { background: var(--gold); }

.spot-price-bar {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 12px;
  background: rgba(212,168,67,0.06);
  border: 1px solid rgba(212,168,67,0.15);
  border-radius: 4px;
}

.price-item {
  display: flex;
  align-items: baseline;
  gap: 3px;
}

.metal {
  font-size: 11px;
  font-weight: 700;
  color: var(--accent);
}

.price {
  font-size: 16px;
  font-weight: 700;
  color: var(--fg);
}

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

.total {
  margin-left: auto;
  text-align: right;
}

.total .label {
  display: block;
  font-size: 10px;
  color: var(--fg-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.total .value {
  font-size: 20px;
  font-weight: 700;
  color: var(--gold);
  font-family: var(--font-head);
}

/* FEATURES */
.features {
  background: var(--bg-card);
  padding: 100px 5%;
}

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

.features h2 {
  font-family: var(--font-head);
  font-size: clamp(28px, 3vw, 40px);
  color: var(--fg);
  margin-bottom: 64px;
  max-width: 600px;
  line-height: 1.15;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px;
}

.feature-card {
  padding: 32px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 6px;
  transition: border-color 0.2s;
}

.feature-card:hover {
  border-color: rgba(212,168,67,0.3);
}

.feature-icon {
  margin-bottom: 20px;
}

.feature-card h3 {
  font-family: var(--font-head);
  font-size: 18px;
  color: var(--fg);
  margin-bottom: 12px;
}

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

/* PROCESS */
.process {
  background: var(--bg);
  padding: 100px 5%;
}

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

.process h2 {
  font-family: var(--font-head);
  font-size: clamp(28px, 3vw, 40px);
  color: var(--fg);
  margin-bottom: 64px;
}

.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin-bottom: 80px;
}

.step {
  padding: 32px;
  border-left: 3px solid var(--accent-dim);
  position: relative;
}

.step::before {
  content: '';
  position: absolute;
  top: 32px;
  left: -3px;
  width: 3px;
  height: 40px;
  background: var(--accent);
  transform: translateX(-50%);
}

.step-num {
  font-family: var(--font-head);
  font-size: 48px;
  color: rgba(212,168,67,0.15);
  margin-bottom: 16px;
  line-height: 1;
}

.step h3 {
  font-family: var(--font-head);
  font-size: 18px;
  color: var(--fg);
  margin-bottom: 12px;
}

.step p {
  font-size: 15px;
  color: var(--fg-muted);
  line-height: 1.65;
}

.stat-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  padding: 40px;
  background: rgba(212,168,67,0.04);
  border: 1px solid rgba(212,168,67,0.1);
  border-radius: 6px;
}

.stat {
  text-align: center;
}

.stat-value {
  display: block;
  font-family: var(--font-head);
  font-size: 36px;
  color: var(--accent);
  margin-bottom: 6px;
}

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

/* CLOSING */
.closing {
  padding: 120px 5%;
  background: var(--bg-card);
  text-align: center;
}

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

.closing-statement {
  font-family: var(--font-head);
  font-size: clamp(24px, 3vw, 36px);
  color: var(--fg);
  line-height: 1.25;
  margin-bottom: 28px;
}

.closing-sub {
  font-size: 17px;
  color: var(--fg-muted);
  max-width: 540px;
  margin: 0 auto;
  line-height: 1.7;
}

/* FOOTER */
footer {
  background: var(--bg);
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 48px 5%;
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 24px;
}

.footer-name {
  font-family: var(--font-head);
  font-size: 20px;
  color: var(--fg);
  display: block;
}

.footer-tagline {
  font-size: 13px;
  color: var(--fg-muted);
  display: block;
  margin-top: 2px;
}

.footer-links {
  font-size: 14px;
  color: var(--accent);
}

.footer-copy {
  font-size: 12px;
  color: rgba(168,152,128,0.5);
  width: 100%;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .hero-inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .hero-text { order: 2; }
  .hero-visual { order: 1; }

  .feature-grid, .steps, .stat-row {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .step { border-left: none; border-top: 3px solid var(--accent-dim); padding-left: 0; padding-top: 32px; }
  .step::before { display: none; }

  .footer-inner { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 480px) {
  .hero { padding: 40px 5% 60px; }
  .features, .process { padding: 60px 5%; }
  .closing { padding: 80px 5%; }

  .map-mockup { max-width: 100%; }

  .stat-value { font-size: 28px; }
}