/* === RESET & BASE === */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg: #141416;
  --bg-2: #1c1c20;
  --bg-card: #212126;
  --fg: #f0ede8;
  --fg-muted: #8a8690;
  --accent: #F59E0B;
  --accent-dim: rgba(245, 158, 11, 0.12);
  --border: rgba(240, 237, 232, 0.08);
}

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

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

/* === TYPOGRAPHY === */
h1, h2, h3 { font-family: 'Fraunces', Georgia, serif; line-height: 1.15; }
h1 { font-size: clamp(2.4rem, 5vw, 4rem); font-weight: 700; }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); font-weight: 600; }
h3 { font-size: 1.1rem; font-family: 'DM Sans', sans-serif; font-weight: 600; letter-spacing: -0.01em; }
p { font-size: 1.0625rem; color: var(--fg-muted); max-width: 60ch; }

/* === LAYOUT UTILITIES === */
.container { max-width: 1100px; margin: 0 auto; padding: 0 2rem; }

/* === NAV === */
.nav { padding: 1.25rem 2rem; border-bottom: 1px solid var(--border); }
.nav-inner { max-width: 1100px; margin: 0 auto; }
.nav-logo { font-family: 'Fraunces', serif; font-size: 1.2rem; font-weight: 600; color: var(--fg); text-decoration: none; letter-spacing: -0.02em; }

/* === HERO === */
.hero { padding: 6rem 2rem 5rem; max-width: 1100px; margin: 0 auto; }
.hero-inner { max-width: 800px; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 0.5rem;
  font-size: 0.8125rem; color: var(--accent); letter-spacing: 0.06em; text-transform: uppercase;
  margin-bottom: 1.75rem;
}
.hero-badge-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--accent); }
.hero-headline { margin-bottom: 1.5rem; }
.hero-accent { font-style: italic; color: var(--accent); }
.hero-sub { font-size: 1.125rem; margin-bottom: 3.5rem; max-width: 58ch; }
.hero-stats { display: flex; align-items: center; gap: 0; border: 1px solid var(--border); border-radius: 8px; overflow: hidden; width: fit-content; }
.hero-stat { padding: 1.25rem 2rem; }
.hero-stat-value { display: block; font-family: 'Fraunces', serif; font-size: 1.5rem; font-weight: 600; color: var(--accent); }
.hero-stat-label { display: block; font-size: 0.8rem; color: var(--fg-muted); margin-top: 0.2rem; max-width: 18ch; }
.hero-stat-sep { width: 1px; background: var(--border); height: 100%; }

/* === PROBLEM === */
.problem { padding: 6rem 2rem; background: var(--bg-2); }
.problem-inner { max-width: 1100px; margin: 0 auto; }
.problem-label, .services-label, .pricing-label, .manifesto-label { font-size: 0.75rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--accent); margin-bottom: 1.25rem; }
.problem-headline { margin-bottom: 1.25rem; }
.problem-body { margin-bottom: 3.5rem; max-width: 56ch; }
.problem-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; margin-bottom: 2.5rem; }
.problem-card { padding: 2rem; background: var(--bg-card); border-radius: 8px; border: 1px solid var(--border); }
.problem-card-icon { width: 40px; height: 40px; border-radius: 8px; background: var(--accent-dim); display: flex; align-items: center; justify-content: center; color: var(--accent); margin-bottom: 1.25rem; }
.problem-card h3 { color: var(--fg); margin-bottom: 0.75rem; }
.problem-card p { font-size: 0.9375rem; max-width: none; }
.problem-gap { border-left: 3px solid var(--accent); padding: 1.5rem 2rem; background: var(--accent-dim); border-radius: 0 8px 8px 0; }
.problem-gap-label { font-size: 0.75rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--accent); margin-bottom: 0.5rem; }
.problem-gap p { color: var(--fg); max-width: none; }

/* === SERVICES === */
.services { padding: 6rem 2rem; }
.services-inner { max-width: 1100px; margin: 0 auto; }
.services-headline { margin-bottom: 3.5rem; }
.services-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.25rem; }
.service-card { padding: 1.75rem; background: var(--bg-2); border: 1px solid var(--border); border-radius: 8px; }
.service-icon { width: 40px; height: 40px; border-radius: 8px; background: var(--accent-dim); display: flex; align-items: center; justify-content: center; color: var(--accent); margin-bottom: 1.25rem; }
.service-card h3 { color: var(--fg); margin-bottom: 0.6rem; font-size: 0.9375rem; }
.service-card p { font-size: 0.875rem; max-width: none; line-height: 1.5; }

/* === MANIFESTO === */
.manifesto { padding: 6rem 2rem; background: var(--bg-2); }
.manifesto-inner { max-width: 1100px; margin: 0 auto; }
.manifesto-rule { width: 48px; height: 3px; background: var(--accent); border-radius: 2px; margin-bottom: 2rem; }
.manifesto-headline { margin-bottom: 1.5rem; }
.manifesto-body { font-size: 1.0625rem; max-width: 56ch; }
.manifesto-body + .manifesto-body { margin-top: 1rem; }

/* === PRICING === */
.pricing { padding: 6rem 2rem; }
.pricing-inner { max-width: 1100px; margin: 0 auto; }
.pricing-headline { margin-bottom: 3rem; }
.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.pricing-card { padding: 2.25rem; background: var(--bg-2); border: 1px solid var(--border); border-radius: 10px; display: flex; flex-direction: column; }
.pricing-card-featured { border-color: var(--accent); background: var(--accent-dim); }
.pricing-tier { font-size: 0.875rem; letter-spacing: 0.06em; text-transform: uppercase; color: var(--accent); margin-bottom: 0.75rem; }
.pricing-amount { font-family: 'Fraunces', serif; font-size: 2.5rem; font-weight: 700; color: var(--fg); margin-bottom: 2rem; }
.pricing-per { font-size: 1.25rem; font-weight: 400; color: var(--fg-muted); }
.pricing-features { list-style: none; display: flex; flex-direction: column; gap: 0.75rem; flex: 1; }
.pricing-features li { font-size: 0.9375rem; color: var(--fg-muted); padding-left: 1.5rem; position: relative; }
.pricing-features li::before { content: ''; position: absolute; left: 0; top: 0.55em; width: 5px; height: 5px; border-radius: 50%; background: var(--accent); }

/* === CLOSING === */
.closing { padding: 6rem 2rem; background: var(--bg-2); }
.closing-inner { max-width: 1100px; margin: 0 auto; }
.closing-headline { margin-bottom: 1.5rem; }
.closing-body { font-size: 1.0625rem; max-width: 56ch; }
.closing-body-last { margin-top: 1.25rem; }

/* === FOOTER === */
.footer { padding: 3rem 2rem; border-top: 1px solid var(--border); }
.footer-inner { max-width: 1100px; margin: 0 auto; display: flex; flex-direction: column; gap: 0.5rem; }
.footer-logo { font-family: 'Fraunces', serif; font-size: 1.1rem; font-weight: 600; color: var(--fg); }
.footer-tagline { font-size: 0.875rem; color: var(--fg-muted); }
.footer-copy { font-size: 0.8125rem; color: var(--fg-muted); margin-top: 0.5rem; }

/* === RESPONSIVE === */
@media (max-width: 900px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .pricing-grid { grid-template-columns: 1fr; max-width: 460px; }
  .hero-stats { flex-direction: column; }
  .hero-stat-sep { width: 100%; height: 1px; }
}

@media (max-width: 640px) {
  .problem-grid { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: 1fr; }
  .hero { padding: 4rem 1.5rem 3rem; }
  h1 { font-size: 2.25rem; }
  h2 { font-size: 1.75rem; }
  .pricing-grid { grid-template-columns: 1fr; }
}