:root {
  --bg: #0A0A0A;
  --bg-card: #141414;
  --bg-card-hover: #1a1a1a;
  --fg: #F0EDE6;
  --fg-muted: #8A8680;
  --accent: #FF6B35;
  --accent-dim: rgba(255, 107, 53, 0.12);
  --border: rgba(240, 237, 230, 0.08);
  --border-strong: rgba(240, 237, 230, 0.15);
}

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

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

body {
  background: var(--bg);
  color: var(--fg);
  font-family: 'DM Sans', sans-serif;
  font-weight: 400;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* HERO */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 6rem 5rem 4rem;
  border-bottom: 1px solid var(--border);
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: 0; right: 0;
  width: 55%;
  height: 100%;
  background: radial-gradient(ellipse at 80% 50%, rgba(255,107,53,0.06) 0%, transparent 65%);
  pointer-events: none;
}
.hero-accent-bar {
  position: absolute;
  top: 0; left: 0;
  width: 4px;
  height: 100%;
  background: var(--accent);
}
.hero-content {
  max-width: 820px;
}
.hero-headline {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(3.5rem, 9vw, 7.5rem);
  line-height: 0.95;
  letter-spacing: 0.01em;
  color: var(--fg);
  margin-bottom: 1.75rem;
}
.hero-sub {
  font-size: 1.1rem;
  color: var(--fg-muted);
  max-width: 560px;
  line-height: 1.7;
  font-weight: 300;
}
.hero-stats-row {
  display: flex;
  align-items: center;
  gap: 2.5rem;
  margin-top: 4rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
}
.hero-stat {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}
.hero-stat-number {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2.5rem;
  color: var(--accent);
  line-height: 1;
}
.hero-stat-label {
  font-size: 0.8rem;
  color: var(--fg-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.hero-stat-divider {
  width: 1px;
  height: 2.5rem;
  background: var(--border-strong);
}

/* SHARED SECTION STYLES */
.section-label {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1.25rem;
}
.section-headline {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  line-height: 1;
  color: var(--fg);
}

/* PROBLEM */
.problem { padding: 6rem 5rem; border-bottom: 1px solid var(--border); }
.problem-inner { max-width: 1100px; }
.problem .section-headline { margin-bottom: 4rem; max-width: 600px; }
.problem-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.problem-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 2rem;
}
.problem-icon { color: var(--accent); margin-bottom: 1rem; }
.problem-card h3 {
  font-size: 1rem;
  font-weight: 600;
  color: var(--fg);
  margin-bottom: 0.75rem;
}
.problem-card p { font-size: 0.9rem; color: var(--fg-muted); line-height: 1.7; }

/* SOLUTION */
.solution { padding: 6rem 5rem; border-bottom: 1px solid var(--border); background: var(--bg-card); }
.solution-inner { max-width: 1100px; display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: start; }
.solution-headline { font-family: 'Bebas Neue', sans-serif; font-size: clamp(2.2rem, 5vw, 3.2rem); line-height: 1; color: var(--fg); margin-bottom: 1.5rem; }
.solution-body { color: var(--fg-muted); line-height: 1.8; font-weight: 300; }
.solution-services { display: flex; flex-direction: column; gap: 0; }
.service-item {
  display: flex;
  gap: 1.5rem;
  padding: 1.75rem 0;
  border-bottom: 1px solid var(--border);
}
.service-item:last-child { border-bottom: none; }
.service-number {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.2rem;
  color: var(--accent);
  min-width: 2rem;
  padding-top: 0.1rem;
}
.service-content h3 { font-size: 1rem; font-weight: 600; color: var(--fg); margin-bottom: 0.4rem; }
.service-content p { font-size: 0.875rem; color: var(--fg-muted); line-height: 1.7; }

/* PROCESS */
.process { padding: 6rem 5rem; border-bottom: 1px solid var(--border); }
.process-inner { max-width: 1100px; }
.process .section-headline { margin-bottom: 3.5rem; }
.process-steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.process-step { background: var(--bg-card); border: 1px solid var(--border); border-radius: 4px; padding: 2rem; }
.step-marker { font-size: 0.7rem; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: var(--accent); margin-bottom: 1rem; display: block; }
.process-step h3 { font-size: 1.05rem; font-weight: 600; color: var(--fg); margin-bottom: 0.75rem; }
.process-step p { font-size: 0.875rem; color: var(--fg-muted); line-height: 1.7; }

/* MANIFESTO */
.manifesto { padding: 6rem 5rem; border-bottom: 1px solid var(--border); background: var(--accent-dim); }
.manifesto-inner { max-width: 900px; }
.manifesto-quote {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  line-height: 1.15;
  color: var(--fg);
  margin-bottom: 2rem;
  font-style: normal;
  border: none;
  padding: 0;
}
.manifesto-body { font-size: 1rem; color: var(--fg-muted); line-height: 1.8; max-width: 700px; font-weight: 300; }

/* OUTCOMES */
.outcomes { padding: 6rem 5rem; border-bottom: 1px solid var(--border); }
.outcomes-inner { max-width: 1100px; }
.outcomes .section-label { margin-bottom: 3rem; }
.outcomes-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 2rem; }
.outcome-item { display: flex; gap: 1.25rem; }
.outcome-icon { color: var(--accent); flex-shrink: 0; padding-top: 0.1rem; }
.outcome-item h3 { font-size: 1rem; font-weight: 600; color: var(--fg); margin-bottom: 0.4rem; }
.outcome-item p { font-size: 0.875rem; color: var(--fg-muted); line-height: 1.7; }

/* CLOSING */
.closing { padding: 8rem 5rem; border-bottom: 1px solid var(--border); background: var(--bg); text-align: center; }
.closing-inner { max-width: 800px; margin: 0 auto; }
.closing-headline {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(2.4rem, 5.5vw, 4.5rem);
  line-height: 1.05;
  color: var(--fg);
  margin-bottom: 1.75rem;
}
.closing-sub { font-size: 1.05rem; color: var(--fg-muted); line-height: 1.8; font-weight: 300; max-width: 600px; margin: 0 auto; }

/* FOOTER */
.site-footer { padding: 3rem 5rem; }
.footer-inner { max-width: 1100px; display: flex; justify-content: space-between; align-items: center; }
.footer-logo { font-family: 'Bebas Neue', sans-serif; font-size: 1.5rem; color: var(--fg); }
.footer-tagline { font-size: 0.8rem; color: var(--fg-muted); margin-top: 0.25rem; }
.footer-links { font-size: 0.75rem; color: var(--fg-muted); }

/* RESPONSIVE */
@media (max-width: 768px) {
  .hero, .problem, .solution, .process, .manifesto, .outcomes, .closing, .site-footer {
    padding: 3.5rem 1.75rem;
  }
  .hero { min-height: auto; padding-top: 5rem; }
  .hero-stats-row { flex-wrap: wrap; gap: 1.5rem; }
  .problem-grid, .process-steps, .outcomes-grid { grid-template-columns: 1fr; }
  .solution-inner { grid-template-columns: 1fr; gap: 2.5rem; }
  .footer-inner { flex-direction: column; gap: 1rem; text-align: center; }
}
@media (max-width: 480px) {
  .hero-headline { font-size: 3rem; }
  .section-headline, .closing-headline { font-size: 2.2rem; }
}