:root {
  --bg: #0a0a0a;
  --surface: #141414;
  --surface-2: #1a1a1a;
  --fg: #f5f5f0;
  --fg-muted: #8a8a80;
  --gold: #c9a84c;
  --gold-light: #e8d48b;
  --accent: #c9a84c;
  --radius: 12px;
}

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

body {
  background: var(--bg);
  color: var(--fg);
  font-family: 'DM Sans', sans-serif;
  font-weight: 300;
  line-height: 1.6;
  overflow-x: hidden;
}

/* Hero */
.hero {
  min-height: 90vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 80px 10vw;
  position: relative;
  background: linear-gradient(160deg, #0a0a0a 0%, #12100e 50%, #0a0a0a 100%);
}

.hero::before {
  content: '';
  position: absolute;
  top: -20%;
  right: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(201, 168, 76, 0.06) 0%, transparent 70%);
  pointer-events: none;
}

.hero-badge {
  display: inline-block;
  padding: 8px 20px;
  border: 1px solid var(--gold);
  color: var(--gold);
  font-size: 0.75rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 40px;
  border-radius: 100px;
  width: fit-content;
}

.hero h1 {
  font-family: 'Syne', sans-serif;
  font-size: clamp(3rem, 7vw, 5.5rem);
  font-weight: 800;
  line-height: 1.05;
  margin-bottom: 32px;
  letter-spacing: -2px;
}

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

.lede {
  font-size: clamp(1.1rem, 2vw, 1.35rem);
  color: var(--fg-muted);
  max-width: 600px;
  margin-bottom: 48px;
  line-height: 1.7;
}

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

.tag {
  padding: 10px 20px;
  background: var(--surface);
  border: 1px solid #2a2a2a;
  border-radius: 100px;
  font-size: 0.85rem;
  color: var(--fg-muted);
  text-decoration: none;
  transition: border-color 0.2s;
}

.tag:hover {
  border-color: var(--gold);
  color: var(--fg);
}

/* Value Section */
.value {
  padding: 120px 10vw;
  background: var(--surface);
}

.value-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 40px;
}

.value-card {
  padding: 48px 36px;
  background: var(--bg);
  border: 1px solid #222;
  border-radius: var(--radius);
  transition: border-color 0.3s, transform 0.3s;
}

.value-card:hover {
  border-color: var(--gold);
  transform: translateY(-4px);
}

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

.value-card h3 {
  font-family: 'Syne', sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 16px;
}

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

/* How Section */
.how {
  padding: 120px 10vw;
}

.how h2 {
  font-family: 'Syne', sans-serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  margin-bottom: 64px;
  letter-spacing: -1px;
}

.steps {
  display: flex;
  flex-direction: column;
  gap: 48px;
}

.step {
  display: flex;
  align-items: flex-start;
  gap: 32px;
  padding-bottom: 48px;
  border-bottom: 1px solid #1a1a1a;
}

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

.step-num {
  font-family: 'Syne', sans-serif;
  font-size: 3rem;
  font-weight: 800;
  color: var(--gold);
  opacity: 0.4;
  min-width: 80px;
}

.step-content h4 {
  font-family: 'Syne', sans-serif;
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 8px;
}

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

/* Numbers Section */
.numbers {
  padding: 100px 10vw;
  background: linear-gradient(180deg, var(--bg) 0%, #0f0d0a 100%);
}

.numbers-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 48px;
  text-align: center;
}

.stat-value {
  font-family: 'Syne', sans-serif;
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 800;
  color: var(--gold);
  margin-bottom: 8px;
}

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

/* Closing */
.closing {
  padding: 140px 10vw;
  text-align: center;
  background: var(--surface);
}

.closing h2 {
  font-family: 'Syne', sans-serif;
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 32px;
  letter-spacing: -1px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.closing-text {
  color: var(--fg-muted);
  font-size: 1.15rem;
  max-width: 620px;
  margin: 0 auto 24px;
  line-height: 1.8;
}

.closing-vision {
  color: var(--gold-light);
  font-family: 'Syne', sans-serif;
  font-size: 1.1rem;
  font-weight: 600;
}

/* Footer */
footer {
  padding: 60px 10vw;
  border-top: 1px solid #1a1a1a;
}

.footer-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  text-align: center;
}

.footer-brand {
  font-family: 'Syne', sans-serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--gold);
}

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

.footer-location {
  color: var(--fg-muted);
  font-size: 0.8rem;
  opacity: 0.6;
  margin-top: 4px;
}

/* Hero CTAs */
.hero-ctas {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}
.hero-btn-primary {
  padding: 14px 36px;
  background: var(--gold);
  color: #0a0a0a;
  border-radius: 100px;
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 0.95rem;
  text-decoration: none;
  transition: background 0.2s;
}
.hero-btn-primary:hover {
  background: var(--gold-light);
}
.hero-btn-ghost {
  padding: 14px 36px;
  background: transparent;
  color: var(--fg-muted);
  border: 1px solid #333;
  border-radius: 100px;
  font-family: 'Syne', sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  transition: border-color 0.2s, color 0.2s;
}
.hero-btn-ghost:hover {
  border-color: var(--gold);
  color: var(--fg);
}

/* Landing nav */
.landing-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 20px 10vw;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(10,10,10,0.0);
  transition: background 0.3s;
}
.landing-nav.scrolled {
  background: rgba(10,10,10,0.9);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid #1e1e1e;
  padding: 14px 10vw;
}
.landing-nav-brand {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  color: var(--gold);
  font-size: 1.1rem;
  text-decoration: none;
  letter-spacing: -0.5px;
}
.landing-nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
}
.landing-nav-links a {
  color: var(--fg-muted);
  text-decoration: none;
  font-size: 0.875rem;
  transition: color 0.2s;
}
.landing-nav-links a:hover { color: var(--fg); }
.landing-nav-cta {
  padding: 9px 24px;
  background: var(--gold);
  color: #0a0a0a !important;
  border-radius: 100px;
  font-weight: 600 !important;
  font-size: 0.85rem !important;
}
.landing-nav-cta:hover { background: var(--gold-light) !important; }

/* Mobile */
@media (max-width: 768px) {
  .hero {
    padding: 60px 6vw;
    min-height: 80vh;
  }

  .value, .how, .numbers, .closing {
    padding: 80px 6vw;
  }

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

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

  .hero-tags {
    gap: 8px;
  }

  .tag {
    padding: 8px 14px;
    font-size: 0.8rem;
  }
}