:root {
  --bg: #FAF7F2;
  --bg-alt: #F0EBE1;
  --dark: #111111;
  --dark-mid: #1E1E1E;
  --accent: #FF7B00;
  --accent-hover: #E66E00;
  --text: #1A1A1A;
  --text-muted: #5A5A5A;
  --text-light: #8A8A8A;
  --white: #FFFFFF;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'DM Sans', system-ui, sans-serif;
  background-color: var(--bg);
  color: var(--text);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* ─── HEADER ─── */
.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.5rem 3rem;
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--bg);
  border-bottom: 1px solid rgba(17,17,17,0.08);
}

.logo {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 1.25rem;
  letter-spacing: -0.02em;
  color: var(--dark);
}

.site-header nav {
  display: flex;
  gap: 2.5rem;
}

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

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

/* ─── HERO ─── */
.hero {
  padding: 6rem 3rem 5rem;
  background: var(--dark);
  color: var(--white);
  overflow: hidden;
  position: relative;
}

.hero::before {
  content: '';
  position: absolute;
  top: -80px;
  right: -80px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(255,123,0,0.18) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

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

.hero-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  border-right: 1px solid rgba(255,255,255,0.12);
  padding-right: 4rem;
}

.stat-number {
  font-family: 'Syne', sans-serif;
  font-size: 3.5rem;
  font-weight: 800;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 0.75rem;
}

.stat-label {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.5);
  line-height: 1.6;
}

.hero-content .eyebrow {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1.25rem;
}

.hero-content h1 {
  font-family: 'Syne', sans-serif;
  font-size: clamp(2rem, 4vw, 3.25rem);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--white);
  margin-bottom: 1.5rem;
}

.lede {
  font-size: 1.0625rem;
  line-height: 1.7;
  color: rgba(255,255,255,0.65);
  max-width: 560px;
}

/* ─── SECTION LABELS ─── */
.section-label {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1rem;
}

/* ─── VALUE PROPS ─── */
.value-props {
  padding: 5rem 3rem;
  background: var(--bg);
}

.value-grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: rgba(17,17,17,0.08);
  border: 1px solid rgba(17,17,17,0.08);
  border-radius: 16px;
  overflow: hidden;
}

.value-card {
  background: var(--white);
  padding: 2.5rem;
  transition: background 0.2s;
}

.value-card:hover {
  background: var(--bg-alt);
}

.value-icon {
  margin-bottom: 1.25rem;
}

.value-card h3 {
  font-family: 'Syne', sans-serif;
  font-size: 1.0625rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  color: var(--dark);
}

.value-card p {
  font-size: 0.9375rem;
  line-height: 1.65;
  color: var(--text-muted);
}

/* ─── NICHES ─── */
.niches {
  padding: 5rem 3rem;
  background: var(--dark);
  color: var(--white);
}

.niches-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.niches h2 {
  font-family: 'Syne', sans-serif;
  font-size: clamp(1.75rem, 3vw, 2.75rem);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: var(--white);
  margin-bottom: 3rem;
  max-width: 640px;
}

.niches h2 em {
  font-style: normal;
  color: var(--accent);
}

.niche-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}

.niche-item {
  display: flex;
  align-items: center;
  gap: 0.875rem;
  padding: 1.25rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.niche-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
  flex-shrink: 0;
}

.niche-item span {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.7);
}

/* ─── PROCESS ─── */
.process {
  padding: 5rem 3rem;
  background: var(--bg-alt);
}

.process-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.process h2 {
  font-family: 'Syne', sans-serif;
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: var(--dark);
  margin-bottom: 3.5rem;
  max-width: 560px;
}

.process-steps {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.process-step {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 2rem;
  padding: 2.5rem 0;
  border-bottom: 1px solid rgba(17,17,17,0.1);
  align-items: start;
}

.process-step:last-child {
  border-bottom: none;
}

.step-number {
  font-family: 'Syne', sans-serif;
  font-size: 2rem;
  font-weight: 800;
  color: var(--accent);
  line-height: 1;
  padding-top: 4px;
}

.step-content h3 {
  font-family: 'Syne', sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 0.75rem;
}

.step-content p {
  font-size: 0.9375rem;
  line-height: 1.7;
  color: var(--text-muted);
  max-width: 600px;
}

/* ─── CLOSING ─── */
.closing {
  padding: 6rem 3rem;
  background: var(--dark);
  color: var(--white);
}

.closing-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.closing-stats {
  display: flex;
  align-items: center;
  gap: 0;
  margin-bottom: 4rem;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 16px;
  overflow: hidden;
}

.closing-stat {
  flex: 1;
  padding: 2.5rem 2rem;
  text-align: center;
}

.closing-divider {
  width: 1px;
  background: rgba(255,255,255,0.1);
  align-self: stretch;
}

.big-number {
  display: block;
  font-family: 'Syne', sans-serif;
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 0.75rem;
}

.stat-desc {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.5);
  line-height: 1.5;
}

.closing-statement h2 {
  font-family: 'Syne', sans-serif;
  font-size: clamp(1.5rem, 2.5vw, 2.25rem);
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: -0.02em;
  color: var(--white);
  margin-bottom: 1.25rem;
}

.closing-sub {
  font-size: 1rem;
  line-height: 1.7;
  color: rgba(255,255,255,0.55);
  max-width: 560px;
}

/* ─── FOOTER ─── */
footer {
  padding: 4rem 3rem 3rem;
  background: var(--bg);
  border-top: 1px solid rgba(17,17,17,0.08);
}

.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.footer-logo {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 1.5rem;
  color: var(--dark);
  margin-bottom: 0.75rem;
}

.footer-tagline {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 2rem;
}

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

/* ─── MOBILE ─── */
@media (max-width: 768px) {
  .site-header {
    padding: 1.25rem 1.5rem;
  }

  .site-header nav {
    display: none;
  }

  .hero {
    padding: 3rem 1.5rem 3.5rem;
  }

  .hero-inner {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .hero-stat {
    border-right: none;
    border-bottom: 1px solid rgba(255,255,255,0.12);
    padding-right: 0;
    padding-bottom: 2rem;
    flex-direction: row;
    gap: 1.5rem;
    justify-content: flex-start;
    text-align: left;
  }

  .stat-number {
    font-size: 2.5rem;
    margin-bottom: 0;
  }

  .value-props {
    padding: 3rem 1.5rem;
  }

  .value-grid {
    grid-template-columns: 1fr;
    border-radius: 10px;
  }

  .niches {
    padding: 3rem 1.5rem;
  }

  .niche-list {
    grid-template-columns: repeat(2, 1fr);
  }

  .process {
    padding: 3rem 1.5rem;
  }

  .process-step {
    grid-template-columns: 60px 1fr;
    gap: 1.5rem;
    padding: 2rem 0;
  }

  .closing {
    padding: 3rem 1.5rem;
  }

  .closing-stats {
    flex-direction: column;
    gap: 0;
  }

  .closing-stat {
    padding: 2rem 1.5rem;
  }

  .closing-divider {
    width: 100%;
    height: 1px;
  }

  footer {
    padding: 3rem 1.5rem 2rem;
  }
}