:root {
  --bg: #0c0a09;
  --bg-subtle: #1a1714;
  --fg: #f5f0eb;
  --fg-muted: #a69b8f;
  --gold: #c9a84c;
  --gold-dim: rgba(201, 168, 76, 0.15);
  --espresso: #2d1f14;
  --cream: #f5e6d3;
  --font-display: 'Syne', sans-serif;
  --font-body: 'DM Sans', sans-serif;
}

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

html { scroll-behavior: smooth; }

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

/* ---- Hero ---- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 120px 40px 80px;
  overflow: hidden;
}

.hero-grain {
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.03'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 1;
}

.hero-inner {
  max-width: 720px;
  position: relative;
  z-index: 2;
}

.hero-badge {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: var(--gold);
  border: 1px solid var(--gold-dim);
  padding: 6px 16px;
  border-radius: 2px;
  margin-bottom: 40px;
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 6vw, 5.2rem);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin-bottom: 32px;
}

.gold { color: var(--gold); }

.lede {
  font-size: 1.15rem;
  color: var(--fg-muted);
  max-width: 540px;
  line-height: 1.7;
}

.hero-accent {
  position: absolute;
  right: -60px;
  top: 50%;
  transform: translateY(-50%);
  width: 500px;
  height: 500px;
  opacity: 0.6;
  z-index: 0;
}

.hero-accent svg { width: 100%; height: 100%; }

/* ---- Section Label ---- */
.section-label {
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: var(--gold);
  margin-bottom: 32px;
}

/* ---- Features ---- */
.features {
  padding: 120px 40px;
  background: var(--bg-subtle);
  border-top: 1px solid rgba(201, 168, 76, 0.08);
  border-bottom: 1px solid rgba(201, 168, 76, 0.08);
}

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

.features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 48px 64px;
}

.feature-card {
  padding: 0;
}

.feature-number {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 700;
  color: var(--gold);
  opacity: 0.5;
  margin-bottom: 16px;
}

.feature-card h3 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--fg);
}

.feature-card p {
  color: var(--fg-muted);
  font-size: 0.95rem;
  line-height: 1.7;
}

/* ---- Metrics ---- */
.metrics {
  padding: 120px 40px;
}

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

.metrics-text h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 24px;
}

.metrics-text p {
  color: var(--fg-muted);
  font-size: 1rem;
  line-height: 1.7;
}

.metrics-grid {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.metric {
  border-left: 2px solid var(--gold);
  padding-left: 24px;
}

.metric-value {
  font-family: var(--font-display);
  font-size: 2.8rem;
  font-weight: 800;
  color: var(--fg);
  line-height: 1;
  margin-bottom: 4px;
}

.metric-label {
  font-size: 0.9rem;
  color: var(--fg-muted);
}

/* ---- Closing ---- */
.closing {
  padding: 140px 40px;
  text-align: center;
  background: var(--bg-subtle);
  border-top: 1px solid rgba(201, 168, 76, 0.08);
}

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

.closing h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 24px;
}

.closing-text {
  color: var(--fg-muted);
  font-size: 1.05rem;
  line-height: 1.7;
}

.closing-line {
  width: 48px;
  height: 2px;
  background: var(--gold);
  margin: 48px auto 0;
  opacity: 0.5;
}

/* ---- Footer ---- */
.site-footer {
  padding: 48px 40px;
  border-top: 1px solid rgba(201, 168, 76, 0.08);
}

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

.footer-brand {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  color: var(--fg);
}

.footer-sub {
  font-size: 0.85rem;
  color: var(--fg-muted);
}

/* ---- Responsive ---- */
@media (max-width: 768px) {
  .hero { padding: 100px 24px 60px; min-height: auto; }
  .hero-accent { display: none; }
  .features { padding: 80px 24px; }
  .features-grid { grid-template-columns: 1fr; gap: 40px; }
  .metrics { padding: 80px 24px; }
  .metrics-inner { grid-template-columns: 1fr; gap: 48px; }
  .closing { padding: 80px 24px; }
  .site-footer { padding: 32px 24px; }
  .footer-inner { flex-direction: column; gap: 8px; text-align: center; }
}