:root {
  --bg: #0a0a0a;
  --bg-subtle: #111111;
  --bg-card: #161616;
  --fg: #e8e8e8;
  --fg-muted: #888888;
  --fg-dim: #555555;
  --gold: #c9a84c;
  --gold-light: #e8c95a;
  --gold-dim: #8a7234;
  --accent-glow: rgba(201, 168, 76, 0.15);
  --font-main: 'Space Grotesk', sans-serif;
  --font-mono: 'JetBrains Mono', monospace;
}

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

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--fg);
  font-family: var(--font-main);
  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;
  max-width: 1200px;
  margin: 0 auto;
}

.hero-glow {
  position: absolute;
  top: -200px;
  right: -300px;
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, rgba(201, 168, 76, 0.08) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}

.hero-grid {
  position: relative;
  z-index: 1;
  max-width: 800px;
}

.hero-badge {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 3px;
  color: var(--gold);
  border: 1px solid var(--gold-dim);
  padding: 6px 16px;
  margin-bottom: 40px;
  text-transform: uppercase;
}

.hero h1 {
  font-size: clamp(2.8rem, 6vw, 5rem);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.03em;
  margin-bottom: 32px;
  color: #ffffff;
}

.gold-text {
  background: linear-gradient(135deg, var(--gold-light), var(--gold), var(--gold-dim));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

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

.hero-stats {
  display: flex;
  gap: 48px;
  padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,0.06);
}

.stat-value {
  display: block;
  font-family: var(--font-mono);
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--gold);
  margin-bottom: 4px;
}

.stat-label {
  font-size: 0.8rem;
  color: var(--fg-dim);
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* SECTION TAG */
.section-tag {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 3px;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 20px;
}

/* EDGE SECTION */
.edge {
  padding: 120px 40px;
  background: var(--bg);
}

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

.edge h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: 64px;
  color: #ffffff;
}

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

.edge-card {
  background: var(--bg-card);
  border: 1px solid rgba(255,255,255,0.05);
  padding: 40px 32px;
  transition: border-color 0.3s;
}

.edge-card:hover {
  border-color: var(--gold-dim);
}

.edge-icon {
  font-size: 1.5rem;
  color: var(--gold);
  margin-bottom: 20px;
}

.edge-card h3 {
  font-size: 1.15rem;
  font-weight: 600;
  margin-bottom: 12px;
  color: #ffffff;
}

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

/* HOW SECTION */
.how {
  padding: 120px 40px;
  background: var(--bg-subtle);
}

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

.how h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 600;
  letter-spacing: -0.02em;
  margin-bottom: 64px;
  color: #ffffff;
}

.how-steps {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.step {
  display: flex;
  align-items: flex-start;
  gap: 40px;
  padding: 40px 0;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}

.step:last-child {
  border-bottom: none;
}

.step-num {
  font-family: var(--font-mono);
  font-size: 3rem;
  font-weight: 700;
  color: var(--gold-dim);
  line-height: 1;
  min-width: 80px;
}

.step-content h3 {
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 8px;
  color: #ffffff;
}

.step-content p {
  font-size: 1rem;
  line-height: 1.65;
  color: var(--fg-muted);
  max-width: 560px;
}

/* FEATURES SECTION */
.features {
  padding: 120px 40px;
  background: var(--bg);
}

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

.features h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 600;
  letter-spacing: -0.02em;
  margin-bottom: 64px;
  color: #ffffff;
}

.feature-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

.feature-item {
  padding: 36px;
  border-left: 2px solid var(--gold-dim);
  transition: border-color 0.3s;
}

.feature-item:hover {
  border-left-color: var(--gold);
}

.feature-label {
  font-family: var(--font-mono);
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--gold);
  margin-bottom: 12px;
}

.feature-desc {
  font-size: 0.95rem;
  line-height: 1.65;
  color: var(--fg-muted);
}

/* CLOSING */
.closing {
  padding: 140px 40px;
  background: var(--bg-subtle);
  text-align: center;
}

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

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

.closing h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin-bottom: 24px;
  color: #ffffff;
}

.closing-sub {
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--fg-muted);
  margin-bottom: 48px;
}

.closing-tagline {
  font-family: var(--font-mono);
  font-size: 0.85rem;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold);
}

/* FOOTER */
.site-footer {
  padding: 48px 40px;
  background: var(--bg);
  border-top: 1px solid rgba(255,255,255,0.05);
}

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

.footer-logo {
  font-family: var(--font-mono);
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--gold);
  display: block;
  margin-bottom: 6px;
}

.footer-desc {
  font-size: 0.8rem;
  color: var(--fg-dim);
}

.footer-meta p {
  font-size: 0.75rem;
  line-height: 1.6;
  color: var(--fg-dim);
  max-width: 480px;
  text-align: right;
}

/* SITE NAV */
.site-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 40px;
  height: 64px;
  background: rgba(10,10,10,0.9);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255,255,255,0.05);
}

.site-logo {
  font-family: var(--font-mono);
  font-size: 1rem;
  font-weight: 500;
  color: var(--gold);
  text-decoration: none;
  letter-spacing: 1px;
}

.site-logo:hover { color: var(--gold-light); }

.site-nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-link {
  font-size: 0.88rem;
  color: var(--fg-muted);
  text-decoration: none;
  transition: color 0.2s;
}

.nav-link:hover { color: var(--fg); }

.nav-link-cta {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold) !important;
  border: 1px solid var(--gold-dim);
  padding: 7px 16px;
  transition: border-color 0.2s, background 0.2s !important;
}

.nav-link-cta:hover {
  border-color: var(--gold);
  background: rgba(201,168,76,0.08);
  color: var(--gold-light) !important;
}

/* HERO CTAS */
.hero-ctas {
  display: flex;
  gap: 16px;
  margin-bottom: 48px;
  flex-wrap: wrap;
}

.btn-primary {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--bg);
  background: var(--gold);
  border: none;
  padding: 14px 28px;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
  transition: background 0.2s;
}

.btn-primary:hover { background: var(--gold-light); }

.btn-secondary {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--fg-muted);
  background: transparent;
  border: 1px solid rgba(255,255,255,0.12);
  padding: 13px 24px;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
  transition: border-color 0.2s, color 0.2s;
}

.btn-secondary:hover { border-color: var(--gold-dim); color: var(--fg); }

/* Add id anchors to sections */
.edge { scroll-margin-top: 64px; }
.features { scroll-margin-top: 64px; }

/* RESPONSIVE */
@media (max-width: 768px) {
  .hero {
    padding: 100px 24px 60px;
    min-height: auto;
  }

  .hero-stats {
    flex-direction: column;
    gap: 20px;
  }

  .edge { padding: 80px 24px; }

  .edge-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .how { padding: 80px 24px; }

  .step {
    flex-direction: column;
    gap: 16px;
  }

  .step-num {
    font-size: 2rem;
    min-width: auto;
  }

  .features { padding: 80px 24px; }

  .feature-list {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .closing { padding: 80px 24px; }

  .footer-inner {
    flex-direction: column;
    gap: 24px;
  }

  .footer-meta p {
    text-align: left;
  }
}