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

:root {
  --bg: #0c0c12;
  --bg-alt: #13131a;
  --fg: #f0ebe3;
  --fg-muted: #8a8480;
  --accent: #e8a838;
  --accent-dim: rgba(232, 168, 56, 0.12);
  --border: rgba(240, 235, 227, 0.08);
}

html { font-size: 16px; scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--fg);
  font-family: 'DM Sans', system-ui, sans-serif;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* NAV */
nav { position: fixed; top: 0; left: 0; right: 0; z-index: 100; padding: 1.5rem 2rem; }
.nav-inner { max-width: 1120px; margin: 0 auto; }
.nav-logo { font-family: 'Syne', sans-serif; font-weight: 800; font-size: 1.25rem; color: var(--fg); letter-spacing: -0.03em; }

/* HERO */
.hero { min-height: 100vh; display: flex; flex-direction: column; justify-content: center; padding: 6rem 2rem 5rem; max-width: 1120px; margin: 0 auto; }
.hero-eyebrow { margin-bottom: 2.5rem; }
.badge { display: inline-block; background: var(--accent-dim); border: 1px solid rgba(232, 168, 56, 0.2); color: var(--accent); font-size: 0.8rem; font-weight: 500; letter-spacing: 0.08em; text-transform: uppercase; padding: 0.35rem 0.85rem; border-radius: 100px; }
.hero-headline { font-family: 'Syne', sans-serif; font-weight: 800; font-size: clamp(3rem, 7vw, 5.5rem); line-height: 1.05; letter-spacing: -0.03em; margin-bottom: 2rem; color: var(--fg); }
.hero-headline em { font-style: normal; color: var(--accent); }
.hero-sub { font-size: clamp(1rem, 1.8vw, 1.25rem); color: var(--fg-muted); line-height: 1.65; max-width: 560px; margin-bottom: 3.5rem; }
.hero-trio { display: flex; gap: 3rem; flex-wrap: wrap; }
.trio-item { display: flex; flex-direction: column; gap: 0.2rem; }
.trio-number { font-family: 'Syne', sans-serif; font-weight: 800; font-size: 2rem; color: var(--accent); letter-spacing: -0.04em; }
.trio-label { font-size: 0.8rem; color: var(--fg-muted); text-transform: uppercase; letter-spacing: 0.06em; font-weight: 500; }

/* FEATURES */
.features { padding: 5rem 2rem; max-width: 1120px; margin: 0 auto; }
.features-label { font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.1em; color: var(--fg-muted); font-weight: 500; margin-bottom: 2.5rem; display: block; }
.features-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
.feature-card { background: var(--bg-alt); border: 1px solid var(--border); border-radius: 16px; padding: 2rem; }
.feature-icon { width: 48px; height: 48px; background: var(--accent-dim); border: 1px solid rgba(232, 168, 56, 0.15); border-radius: 12px; display: flex; align-items: center; justify-content: center; margin-bottom: 1.25rem; color: var(--accent); }
.feature-card h3 { font-family: 'Syne', sans-serif; font-weight: 700; font-size: 1.05rem; margin-bottom: 0.65rem; letter-spacing: -0.01em; }
.feature-card p { font-size: 0.9rem; color: var(--fg-muted); line-height: 1.6; }

/* CLOSING */
.closing { padding: 4rem 2rem 6rem; max-width: 1120px; margin: 0 auto; }
.closing-statement { font-family: 'Syne', sans-serif; font-weight: 700; font-size: clamp(1.5rem, 3.5vw, 2.75rem); line-height: 1.25; letter-spacing: -0.02em; color: var(--fg); text-align: center; }
.closing-statement strong { color: var(--accent); }

/* FOOTER */
footer { border-top: 1px solid var(--border); padding: 2.5rem 2rem; }
.footer-inner { max-width: 1120px; margin: 0 auto; display: flex; flex-direction: column; align-items: center; gap: 0.5rem; text-align: center; }
.footer-logo { font-family: 'Syne', sans-serif; font-weight: 800; font-size: 1.1rem; letter-spacing: -0.02em; }
.footer-tagline { font-size: 0.85rem; color: var(--fg-muted); }
.footer-copy { font-size: 0.75rem; color: #444; margin-top: 0.5rem; }

/* MOBILE */
@media (max-width: 640px) {
  .hero { padding: 5rem 1.5rem 3rem; }
  .hero-trio { gap: 1.5rem; }
  .features-grid { grid-template-columns: 1fr; }
  .features { padding: 3rem 1.5rem; }
  .closing { padding: 3rem 1.5rem 4rem; }
}