:root {
  --bg: #0c0c0e;
  --bg-2: #111116;
  --fg: #f0ebe3;
  --fg-muted: #8a857e;
  --accent: #ff6b2b;
  --accent-dim: rgba(255, 107, 43, 0.12);
  --border: rgba(240, 235, 227, 0.08);
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'DM Sans', system-ui, sans-serif;
}

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

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

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

/* HERO */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 120px 40px 80px;
}
.hero__bg { position: absolute; inset: 0; pointer-events: none; }
.hero__bg-line { position: absolute; background: var(--accent); opacity: 0.04; }
.hero__bg-line--1 { width: 1px; height: 60%; top: 20%; left: 15%; }
.hero__bg-line--2 { width: 40%; height: 1px; bottom: 35%; right: 10%; }
.hero__bg-circle { position: absolute; width: 600px; height: 600px; border-radius: 50%; background: radial-gradient(circle, rgba(255,107,43,0.06) 0%, transparent 70%); top: 50%; left: 55%; transform: translate(-50%, -50%); }
.hero__inner { position: relative; max-width: 1200px; margin: 0 auto; width: 100%; }
.hero__label { font-size: 12px; text-transform: uppercase; letter-spacing: 3px; color: var(--accent); margin-bottom: 28px; font-weight: 600; }
.hero__headline { font-family: var(--font-display); font-size: clamp(48px, 7vw, 96px); font-weight: 800; line-height: 1.05; letter-spacing: -2px; color: var(--fg); margin-bottom: 32px; }
.hero__sub { font-size: 18px; color: var(--fg-muted); max-width: 520px; line-height: 1.7; margin-bottom: 64px; }
.hero__stat-row { display: flex; align-items: center; gap: 0; }
.hero__stat { padding: 0 40px 0 0; }
.hero__stat:first-child { padding-left: 0; }
.hero__stat-num { display: block; font-family: var(--font-display); font-size: 40px; font-weight: 700; color: var(--accent); line-height: 1; margin-bottom: 6px; }
.hero__stat-label { display: block; font-size: 12px; text-transform: uppercase; letter-spacing: 1.5px; color: var(--fg-muted); }
.hero__stat-sep { width: 1px; height: 48px; background: var(--border); }

/* PROOF */
.proof { padding: 100px 40px; background: var(--bg-2); }
.proof__inner { max-width: 800px; margin: 0 auto; text-align: center; }
.proof__belt-stack { display: flex; justify-content: center; gap: 8px; margin-bottom: 48px; }
.proof__belt { width: 48px; height: 12px; border-radius: 6px; }
.proof__belt--white { background: #e8e4de; }
.proof__belt--yellow { background: #f0c929; }
.proof__belt--green { background: #2d8c3c; }
.proof__belt--blue { background: #2a5fa8; }
.proof__belt--red { background: #c0392b; }
.proof__belt--black { background: #1a1a1a; border: 1px solid rgba(255,255,255,0.1); }
.proof__quote { font-family: var(--font-display); font-size: clamp(22px, 3vw, 32px); font-weight: 600; line-height: 1.4; color: var(--fg); margin-bottom: 24px; font-style: italic; }
.proof__caption { font-size: 13px; color: var(--fg-muted); text-transform: uppercase; letter-spacing: 2px; }

/* FEATURES */
.features { padding: 100px 40px; }
.features__inner { max-width: 1200px; margin: 0 auto; }
.features__heading { font-family: var(--font-display); font-size: clamp(32px, 4vw, 52px); font-weight: 700; margin-bottom: 64px; letter-spacing: -1px; }
.features__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--border); border: 1px solid var(--border); }
.features__card { background: var(--bg); padding: 40px; display: flex; flex-direction: column; gap: 16px; transition: background 0.2s; }
.features__card:hover { background: var(--bg-2); }
.features__card-icon { width: 48px; height: 48px; background: var(--accent-dim); border-radius: 10px; display: flex; align-items: center; justify-content: center; }
.features__card-title { font-size: 18px; font-weight: 600; color: var(--fg); }
.features__card-desc { font-size: 14px; color: var(--fg-muted); line-height: 1.7; }

/* HOW */
.how { padding: 100px 40px; background: var(--bg-2); }
.how__inner { max-width: 1200px; margin: 0 auto; }
.how__heading { font-family: var(--font-display); font-size: clamp(32px, 4vw, 48px); font-weight: 700; margin-bottom: 64px; letter-spacing: -1px; }
.how__steps { display: flex; flex-direction: column; gap: 0; border-left: 1px solid var(--border); padding-left: 48px; }
.how__step { display: flex; gap: 32px; align-items: flex-start; padding: 48px 0; border-bottom: 1px solid var(--border); position: relative; }
.how__step:last-child { border-bottom: none; }
.how__step::before { content: ''; position: absolute; left: -49px; top: 60px; width: 9px; height: 9px; background: var(--accent); border-radius: 50%; }
.how__step-num { font-family: var(--font-display); font-size: 14px; font-weight: 700; color: var(--accent); letter-spacing: 2px; padding-top: 4px; min-width: 40px; }
.how__step-title { font-size: 24px; font-weight: 600; margin-bottom: 12px; }
.how__step-desc { font-size: 15px; color: var(--fg-muted); max-width: 480px; line-height: 1.7; }

/* PHILOSOPHY */
.philosophy { padding: 100px 40px; }
.philosophy__inner { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start; }
.philosophy__heading { font-family: var(--font-display); font-size: clamp(36px, 4vw, 56px); font-weight: 700; line-height: 1.1; letter-spacing: -1px; }
.philosophy__body { font-size: 16px; color: var(--fg-muted); line-height: 1.8; margin-bottom: 24px; }
.philosophy__body:last-child { margin-bottom: 0; }

/* CLOSING */
.closing { padding: 120px 40px; background: var(--bg-2); border-top: 1px solid var(--border); }
.closing__inner { max-width: 800px; margin: 0 auto; text-align: center; }
.closing__badge { font-size: 11px; text-transform: uppercase; letter-spacing: 3px; color: var(--fg-muted); border: 1px solid var(--border); display: inline-block; padding: 6px 16px; border-radius: 100px; margin-bottom: 32px; }
.closing__headline { font-family: var(--font-display); font-size: clamp(36px, 5vw, 64px); font-weight: 700; line-height: 1.1; letter-spacing: -1px; margin-bottom: 24px; }
.closing__sub { font-size: 18px; color: var(--fg-muted); }

/* FOOTER */
.footer { padding: 60px 40px; border-top: 1px solid var(--border); }
.footer__inner { max-width: 1200px; margin: 0 auto; display: flex; justify-content: space-between; align-items: center; }
.footer__logo { font-family: var(--font-display); font-size: 20px; font-weight: 700; }
.footer__logo-accent { color: var(--accent); }
.footer__desc { font-size: 13px; color: var(--fg-muted); margin-top: 8px; }
.footer__tagline { font-size: 13px; color: var(--fg-muted); letter-spacing: 0.5px; }

/* RESPONSIVE */
@media (max-width: 768px) {
  .nav { padding: 16px 24px; }
  .hero { padding: 100px 24px 60px; }
  .hero__headline { letter-spacing: -1px; }
  .hero__stat-row { flex-direction: column; gap: 24px; }
  .hero__stat { padding: 0; }
  .hero__stat-sep { display: none; }
  .features__grid { grid-template-columns: 1fr; }
  .philosophy__inner { grid-template-columns: 1fr; gap: 40px; }
  .how__steps { padding-left: 32px; }
  .footer__inner { flex-direction: column; gap: 24px; text-align: center; }
}