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

:root {
  --bg: #0C0E12;
  --bg-alt: #131620;
  --fg: #E8E9ED;
  --fg-muted: #8A8FA3;
  --gold: #F5A623;
  --gold-dim: rgba(245, 166, 35, 0.15);
  --border: rgba(255,255,255,0.08);
}

html { scroll-behavior: smooth; }

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

/* NAV */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(12, 14, 18, 0.85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  padding: 0 40px;
}
.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  font-family: 'Fraunces', serif;
  font-weight: 700;
  font-size: 20px;
  color: var(--gold);
  letter-spacing: -0.5px;
}
.nav-tagline {
  font-size: 13px;
  color: var(--fg-muted);
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

/* HERO */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: var(--bg);
  padding: 120px 40px 80px;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: -200px; right: -100px;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(245,166,35,0.06) 0%, transparent 70%);
  pointer-events: none;
}
.hero::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border), transparent);
}
.hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
}
.hero-badge {
  display: inline-block;
  font-size: 11px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid var(--gold-dim);
  padding: 5px 12px;
  border-radius: 3px;
  margin-bottom: 36px;
  background: var(--gold-dim);
}
.hero-headline {
  font-family: 'Fraunces', serif;
  font-weight: 700;
  font-size: clamp(52px, 7vw, 88px);
  line-height: 1.05;
  letter-spacing: -2px;
  color: var(--fg);
  margin-bottom: 28px;
  max-width: 800px;
}
.hero-sub {
  font-size: 20px;
  color: var(--fg-muted);
  max-width: 600px;
  margin-bottom: 64px;
  font-weight: 300;
  line-height: 1.65;
}
.hero-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: 8px;
  overflow: hidden;
  max-width: 780px;
}
.stat {
  background: var(--bg-alt);
  padding: 24px 28px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.stat-number {
  font-family: 'Fraunces', serif;
  font-weight: 600;
  font-size: 24px;
  color: var(--gold);
}
.stat-label {
  font-size: 13px;
  color: var(--fg-muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* PROCESS */
.process {
  background: var(--bg-alt);
  padding: 100px 40px;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.process-inner {
  max-width: 1200px;
  margin: 0 auto;
}
.section-label {
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 48px;
}
.process-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 60px;
}
.step-num {
  font-family: 'Fraunces', serif;
  font-weight: 700;
  font-size: 48px;
  color: var(--gold-dim);
  margin-bottom: 20px;
  line-height: 1;
}
.step h3 {
  font-family: 'Fraunces', serif;
  font-weight: 600;
  font-size: 22px;
  margin-bottom: 12px;
  color: var(--fg);
}
.step p {
  font-size: 16px;
  color: var(--fg-muted);
  line-height: 1.65;
  font-weight: 300;
}

/* FEATURES */
.features {
  background: var(--bg);
  padding: 100px 40px;
}
.features-inner {
  max-width: 1200px;
  margin: 0 auto;
}
.features-headline {
  font-family: 'Fraunces', serif;
  font-weight: 700;
  font-size: clamp(36px, 4vw, 52px);
  line-height: 1.15;
  letter-spacing: -1px;
  margin-bottom: 64px;
  max-width: 600px;
}
.features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: 8px;
  overflow: hidden;
}
.feature-card {
  background: var(--bg);
  padding: 40px 44px;
}
.feature-icon {
  font-size: 28px;
  color: var(--gold);
  margin-bottom: 20px;
  font-weight: 400;
}
.feature-card h3 {
  font-family: 'Fraunces', serif;
  font-weight: 600;
  font-size: 20px;
  margin-bottom: 12px;
}
.feature-card p {
  font-size: 16px;
  color: var(--fg-muted);
  line-height: 1.65;
  font-weight: 300;
}

/* CLOSING */
.closing {
  background: var(--bg);
  padding: 120px 40px;
  border-top: 1px solid var(--border);
  text-align: center;
}
.closing-inner {
  max-width: 800px;
  margin: 0 auto;
}
.closing h2 {
  font-family: 'Fraunces', serif;
  font-weight: 700;
  font-size: clamp(36px, 4.5vw, 56px);
  line-height: 1.15;
  letter-spacing: -1.5px;
  margin-bottom: 28px;
}
.closing p {
  font-size: 20px;
  color: var(--fg-muted);
  max-width: 560px;
  margin: 0 auto;
  font-weight: 300;
  line-height: 1.65;
}

/* FOOTER */
.footer {
  background: var(--bg-alt);
  border-top: 1px solid var(--border);
  padding: 32px 40px;
}
.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.footer-brand {
  font-family: 'Fraunces', serif;
  font-weight: 700;
  font-size: 16px;
  color: var(--gold);
}
.footer-copy {
  font-size: 13px;
  color: var(--fg-muted);
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .process-steps { grid-template-columns: 1fr; gap: 40px; }
  .features-grid { grid-template-columns: 1fr; }
  .hero-stats { grid-template-columns: repeat(2, 1fr); }
  .hero { padding: 100px 28px 60px; }
  .process, .features, .closing { padding: 72px 28px; }
  .nav { padding: 0 28px; }
  .footer { padding: 24px 28px; }
  .footer-inner { flex-direction: column; gap: 8px; align-items: flex-start; }
}

@media (max-width: 480px) {
  .hero-stats { grid-template-columns: 1fr 1fr; }
  .hero-headline { letter-spacing: -1px; }
}