:root {
  --bg: #0d0d10;
  --surface: #141418;
  --surface-2: #1c1c22;
  --fg: #f0ede8;
  --fg-muted: #8a8790;
  --accent: #ff3d5a;
  --accent-dim: rgba(255,61,90,0.12);
  --gold: #ffb800;
  --gold-dim: rgba(255,184,0,0.12);
  --border: rgba(255,255,255,0.06);
  --font-display: 'Syne', sans-serif;
  --font-body: 'DM Sans', sans-serif;
}

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

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

/* HEADER */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 0 48px;
  border-bottom: 1px solid var(--border);
  background: rgba(13,13,16,0.92);
  backdrop-filter: blur(12px);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  height: 64px;
}

.wordmark {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.25rem;
  letter-spacing: -0.03em;
  color: var(--fg);
}

.site-header nav {
  display: flex;
  gap: 32px;
}

.site-header nav a {
  color: var(--fg-muted);
  text-decoration: none;
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.01em;
  transition: color 0.2s;
}

.site-header nav a:hover { color: var(--fg); }

/* HERO */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 120px 48px 80px;
  border-bottom: 1px solid var(--border);
}

.hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.eyebrow {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 20px;
}

.hero-content h1 {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.04em;
  color: var(--fg);
  margin-bottom: 24px;
}

.lede {
  font-size: 1.1rem;
  color: var(--fg-muted);
  max-width: 480px;
  line-height: 1.7;
}

.hero-stats {
  display: flex;
  flex-direction: column;
  gap: 32px;
  padding: 40px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
}

.stat {}

.stat-value {
  display: block;
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 800;
  letter-spacing: -0.04em;
  color: var(--fg);
  line-height: 1;
  margin-bottom: 6px;
}

.stat-unit {
  font-size: 1.5rem;
  color: var(--accent);
}

.stat-label {
  font-size: 0.8rem;
  color: var(--fg-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 500;
}

/* SECTION COMMON */
.section-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 96px 48px;
}

.section-eyebrow {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
}

.section-inner h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1.1;
  color: var(--fg);
  margin-bottom: 64px;
}

/* THE MODEL */
.model { border-bottom: 1px solid var(--border); }

.model-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
}

.model-card {
  padding: 40px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
}

.model-icon {
  margin-bottom: 24px;
  display: inline-flex;
}

.model-card h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--fg);
  margin-bottom: 12px;
}

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

/* SERVICES */
.services { border-bottom: 1px solid var(--border); }

.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
}

.service-item {
  display: flex;
  gap: 24px;
  padding: 36px;
  border: 1px solid var(--border);
  margin: -1px 0 0 -1px;
  transition: background 0.2s;
}

.service-item:hover { background: var(--surface); }

.service-num {
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: 0.05em;
  flex-shrink: 0;
  margin-top: 2px;
}

.service-item h4 {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  color: var(--fg);
  margin-bottom: 8px;
  letter-spacing: -0.01em;
}

.service-item p {
  font-size: 0.875rem;
  color: var(--fg-muted);
  line-height: 1.6;
}

/* RESULTS */
.results { border-bottom: 1px solid var(--border); }

.results .section-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 96px;
  align-items: start;
}

.results-body {
  font-size: 1rem;
  color: var(--fg-muted);
  line-height: 1.8;
  margin-bottom: 40px;
}

.results-features {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.result-feature {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.9rem;
  color: var(--fg);
  font-weight: 500;
}

.results-right {
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding-top: 8px;
}

.testimonial-block {
  padding: 32px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
}

.quote {
  font-size: 0.95rem;
  color: var(--fg);
  line-height: 1.7;
  font-style: italic;
  margin-bottom: 20px;
}

.testimonial-attr {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.attr-name {
  font-size: 0.8rem;
  color: var(--fg-muted);
  font-weight: 500;
}

.attr-stat {
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: -0.01em;
}

/* CLOSING */
.closing { border-bottom: 1px solid var(--border); }

.closing h2 {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  font-weight: 800;
  letter-spacing: -0.05em;
  line-height: 1.05;
  color: var(--fg);
  margin-bottom: 24px;
}

.closing-sub {
  font-size: 1.1rem;
  color: var(--fg-muted);
  max-width: 560px;
  line-height: 1.7;
}

/* FOOTER */
.site-footer { padding: 48px; }

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footer-brand .wordmark {
  font-size: 1rem;
  display: block;
  margin-bottom: 8px;
}

.footer-brand p {
  font-size: 0.8rem;
  color: var(--fg-muted);
}

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

/* MOBILE */
@media (max-width: 768px) {
  .site-header { padding: 0 24px; }
  .site-header nav { display: none; }

  .hero { padding: 100px 24px 64px; }
  .hero-inner { grid-template-columns: 1fr; gap: 48px; }
  .hero-stats { padding: 28px; }

  .section-inner { padding: 64px 24px; }
  .section-inner h2 { margin-bottom: 40px; }

  .model-grid { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: 1fr; }

  .results .section-inner { grid-template-columns: 1fr; gap: 48px; }

  .closing h2 { font-size: 2.25rem; }

  .footer-inner { flex-direction: column; gap: 24px; text-align: center; }
}