:root {
  --bg: #0a0a0a;
  --bg-alt: #111111;
  --fg: #f2ede6;
  --accent: #e8a838;
  --accent-dim: rgba(232, 168, 56, 0.12);
  --accent-border: rgba(232, 168, 56, 0.3);
  --muted: #7a7269;
  --surface: #161616;
  --border: #222222;
  --border-light: #1e1e1e;
}

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

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--fg);
  font-family: 'DM Sans', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* Navbar */
.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 48px;
  border-bottom: 1px solid var(--border);
}
.nav-brand {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 20px;
  color: var(--accent);
  letter-spacing: -0.5px;
}
.nav-tagline {
  font-size: 13px;
  color: var(--muted);
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

/* Hero */
.hero {
  position: relative;
  min-height: 88vh;
  display: flex;
  align-items: center;
  padding: 80px 48px 60px;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(ellipse 80% 70% at 50% 40%, black 40%, transparent 100%);
}
.hero-glow {
  position: absolute;
  top: -20%;
  left: -10%;
  width: 60%;
  height: 80%;
  background: radial-gradient(ellipse, rgba(232, 168, 56, 0.07) 0%, transparent 70%);
  pointer-events: none;
}
.hero-content {
  position: relative;
  max-width: 820px;
}
.hero-label {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--accent);
  border: 1px solid var(--accent-border);
  padding: 6px 14px;
  border-radius: 2px;
  margin-bottom: 32px;
  background: var(--accent-dim);
}
.hero-headline {
  font-family: 'Syne', sans-serif;
  font-size: clamp(40px, 5.5vw, 72px);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -2px;
  margin-bottom: 28px;
  color: var(--fg);
}
.hero-sub {
  font-size: 18px;
  line-height: 1.7;
  color: var(--muted);
  max-width: 580px;
}

/* Stats Row */
.stats-row {
  display: flex;
  align-items: center;
  padding: 48px 48px;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--bg-alt);
  overflow-x: auto;
  gap: 0;
}
.stat {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 0 40px;
  min-width: 160px;
}
.stat:first-child { padding-left: 0; }
.stat-number {
  font-family: 'Syne', sans-serif;
  font-size: 36px;
  font-weight: 800;
  color: var(--accent);
  letter-spacing: -1px;
}
.stat-label {
  font-size: 12px;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  line-height: 1.4;
}
.stat-divider {
  width: 1px;
  height: 48px;
  background: var(--border);
  flex-shrink: 0;
}

/* Section Headers */
.section-header {
  margin-bottom: 56px;
}
.section-label {
  display: block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
}
.section-title {
  font-family: 'Syne', sans-serif;
  font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -1px;
  color: var(--fg);
}

/* Features */
.features {
  padding: 96px 48px;
  background: var(--bg);
}
.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: 4px;
  overflow: hidden;
}
.feature-card {
  background: var(--bg);
  padding: 40px 36px;
  transition: background 0.2s ease;
  position: relative;
}
.feature-card:hover {
  background: var(--surface);
}
.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--accent-border), transparent);
  opacity: 0;
  transition: opacity 0.2s;
}
.feature-card:hover::before { opacity: 1; }
.feature-icon {
  width: 48px;
  height: 48px;
  background: var(--accent-dim);
  border: 1px solid var(--accent-border);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  color: var(--accent);
}
.feature-card h3 {
  font-family: 'Syne', sans-serif;
  font-size: 17px;
  font-weight: 700;
  color: var(--fg);
  margin-bottom: 10px;
}
.feature-card p {
  font-size: 14px;
  line-height: 1.6;
  color: var(--muted);
}

/* Process */
.process {
  padding: 96px 48px;
  background: var(--bg-alt);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.process-steps {
  display: flex;
  align-items: stretch;
  gap: 0;
}
.step {
  flex: 1;
  padding: 32px 32px 32px 0;
}
.step-number {
  font-family: 'Syne', sans-serif;
  font-size: 48px;
  font-weight: 800;
  color: var(--accent);
  opacity: 0.3;
  letter-spacing: -2px;
  line-height: 1;
  margin-bottom: 16px;
}
.step h3 {
  font-family: 'Syne', sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: var(--fg);
  margin-bottom: 10px;
}
.step p {
  font-size: 14px;
  line-height: 1.65;
  color: var(--muted);
}
.step-connector {
  width: 40px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.step-connector::after {
  content: '';
  display: block;
  width: 100%;
  height: 1px;
  background: var(--border);
  position: absolute;
}
.step-connector::before {
  content: '';
  width: 8px;
  height: 8px;
  border: 1px solid var(--accent-border);
  background: var(--bg-alt);
  border-radius: 50%;
  z-index: 1;
  position: relative;
}

/* Philosophy */
.philosophy {
  position: relative;
  padding: 96px 48px;
  overflow: hidden;
  border-top: 1px solid var(--border);
}
.philosophy-bg { position: absolute; inset: 0; }
.philosophy-glow {
  position: absolute;
  bottom: -30%;
  right: -10%;
  width: 50%;
  height: 80%;
  background: radial-gradient(ellipse, rgba(232, 168, 56, 0.06) 0%, transparent 70%);
}
.philosophy-content {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}
.philosophy blockquote {
  font-family: 'Syne', sans-serif;
  font-size: clamp(20px, 2.5vw, 30px);
  font-weight: 500;
  line-height: 1.45;
  color: var(--fg);
  font-style: italic;
  margin-bottom: 24px;
  position: relative;
}
.philosophy blockquote::before {
  content: '"';
  font-size: 80px;
  color: var(--accent);
  opacity: 0.3;
  position: absolute;
  top: -30px;
  left: -30px;
  font-style: normal;
  font-family: 'Syne', sans-serif;
  line-height: 1;
}
.philosophy-attribution {
  font-size: 13px;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 2px;
}

/* Closing */
.closing {
  padding: 120px 48px;
  text-align: center;
  border-top: 1px solid var(--border);
}
.closing h2 {
  font-family: 'Syne', sans-serif;
  font-size: clamp(24px, 3vw, 40px);
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -1px;
  color: var(--fg);
  margin-bottom: 28px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}
.closing p {
  font-size: 17px;
  color: var(--muted);
  line-height: 1.7;
  max-width: 540px;
  margin: 0 auto;
}

/* Footer */
.footer {
  padding: 48px;
  border-top: 1px solid var(--border);
  background: var(--bg-alt);
}
.footer-brand {
  font-family: 'Syne', sans-serif;
  font-size: 22px;
  font-weight: 800;
  color: var(--accent);
  margin-bottom: 10px;
  letter-spacing: -0.5px;
}
.footer-sub {
  font-size: 14px;
  color: var(--muted);
  margin-bottom: 24px;
}
.footer-tagline {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: #3a3530;
}

/* Mobile */
@media (max-width: 768px) {
  .navbar { padding: 16px 24px; }
  .nav-tagline { display: none; }
  .hero { padding: 60px 24px 48px; min-height: auto; }
  .stats-row { flex-direction: column; gap: 32px; padding: 40px 24px; }
  .stat { padding: 0; min-width: auto; }
  .stat-divider { width: 48px; height: 1px; }
  .features { padding: 64px 24px; }
  .feature-grid { grid-template-columns: 1fr; }
  .process { padding: 64px 24px; }
  .process-steps { flex-direction: column; gap: 0; }
  .step-connector { width: 20px; transform: rotate(90deg); }
  .philosophy { padding: 64px 24px; }
  .closing { padding: 80px 24px; }
  .footer { padding: 40px 24px; }
}

@media (max-width: 1024px) and (min-width: 769px) {
  .feature-grid { grid-template-columns: repeat(2, 1fr); }
  .process-steps { flex-wrap: wrap; gap: 16px; }
  .step-connector { display: none; }
}