/* ===== VARIABLES ===== */
:root {
  --bg: #0D0D12;
  --surface: #14141B;
  --surface-2: #1C1C25;
  --border: #272730;
  --fg: #F2F2F0;
  --fg-muted: #8A8A96;
  --accent: #F59E0B;
  --accent-dim: rgba(245, 158, 11, 0.12);
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'DM Sans', system-ui, sans-serif;
}

/* ===== RESET ===== */
*, *::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: var(--font-body); font-weight: 400; line-height: 1.6; -webkit-font-smoothing: antialiased; }
a { color: inherit; text-decoration: none; }
img, svg { display: block; }

/* ===== LAYOUT ===== */
.container { max-width: 1120px; margin: 0 auto; padding: 0 24px; }

/* ===== NAV ===== */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  padding: 20px 0;
  background: rgba(13, 13, 18, 0.85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}
.nav-inner { max-width: 1120px; margin: 0 auto; padding: 0 24px; display: flex; align-items: center; justify-content: space-between; }
.nav-logo { font-family: var(--font-display); font-size: 1.25rem; font-weight: 600; display: flex; align-items: center; gap: 8px; letter-spacing: -0.02em; }
.nav-logo-mark { color: var(--accent); font-size: 0.75rem; }
.nav-links { display: flex; gap: 32px; }
.nav-links a { font-size: 0.875rem; color: var(--fg-muted); transition: color 0.2s; }
.nav-links a:hover { color: var(--fg); }

/* ===== HERO ===== */
.hero {
  min-height: 100vh; display: flex; align-items: center;
  position: relative; overflow: hidden;
  padding-top: 80px;
}
.hero-bg-grid {
  position: absolute; inset: 0;
  background-image: linear-gradient(var(--border) 1px, transparent 1px), linear-gradient(90deg, var(--border) 1px, transparent 1px);
  background-size: 64px 64px;
  opacity: 0.3;
}
.hero-bg-glow {
  position: absolute; bottom: -20%; left: 50%; transform: translateX(-50%);
  width: 800px; height: 500px;
  background: radial-gradient(ellipse at center, rgba(245, 158, 11, 0.08) 0%, transparent 70%);
  pointer-events: none;
}
.hero-content { position: relative; z-index: 1; padding: 80px 0 100px; max-width: 900px; }
.hero-eyebrow { font-size: 0.75rem; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: var(--accent); margin-bottom: 24px; }
.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 400; line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: 28px;
}
.hero-headline em { font-style: italic; color: var(--accent); }
.hero-sub {
  font-size: 1.125rem; color: var(--fg-muted); max-width: 580px; line-height: 1.7;
  margin-bottom: 40px;
}
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }
.btn-primary {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--accent); color: #0D0D12;
  font-family: var(--font-body); font-weight: 600; font-size: 0.9rem;
  padding: 12px 24px; border-radius: 4px;
  transition: opacity 0.2s;
}
.btn-primary:hover { opacity: 0.85; }
.btn-ghost {
  display: inline-flex; align-items: center;
  border: 1px solid var(--border); color: var(--fg-muted);
  font-family: var(--font-body); font-weight: 500; font-size: 0.9rem;
  padding: 12px 24px; border-radius: 4px;
  transition: border-color 0.2s, color 0.2s;
}
.btn-ghost:hover { border-color: var(--fg-muted); color: var(--fg); }

/* ===== PROBLEM ===== */
.problem { padding: 100px 0; border-top: 1px solid var(--border); }
.problem-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--border); border: 1px solid var(--border); border-radius: 8px; overflow: hidden; margin-bottom: 48px; }
.problem-stat { background: var(--surface); padding: 40px 32px; display: flex; flex-direction: column; gap: 12px; }
.stat-num { font-family: var(--font-display); font-size: 3.5rem; font-weight: 700; color: var(--accent); line-height: 1; }
.stat-label { font-size: 0.9rem; color: var(--fg-muted); line-height: 1.5; }
.problem-conclusion { max-width: 600px; }
.problem-conclusion p { font-size: 1.125rem; color: var(--fg-muted); line-height: 1.7; }
.problem-conclusion p strong { color: var(--fg); }

/* ===== SECTION HEADER ===== */
.section-header { margin-bottom: 56px; }
.section-label { display: block; font-size: 0.75rem; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: var(--accent); margin-bottom: 16px; }
.section-header h2 { font-family: var(--font-display); font-size: clamp(2rem, 3.5vw, 2.75rem); font-weight: 400; line-height: 1.2; letter-spacing: -0.02em; }

/* ===== SERVICES ===== */
.services { padding: 100px 0; background: var(--surface); }
.services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 2px; background: var(--border); border: 1px solid var(--border); border-radius: 8px; overflow: hidden; }
.service-card { background: var(--bg); padding: 40px 32px; display: flex; flex-direction: column; gap: 16px; transition: background 0.2s; }
.service-card:hover { background: var(--surface-2); }
.service-icon { width: 40px; height: 40px; }
.service-card h3 { font-family: var(--font-display); font-size: 1.25rem; font-weight: 600; }
.service-card p { font-size: 0.9rem; color: var(--fg-muted); line-height: 1.6; }

/* ===== OUTCOMES ===== */
.outcomes { padding: 100px 0; }
.outcomes-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: var(--border); border: 1px solid var(--border); border-radius: 8px; overflow: hidden; }
.outcome-card { background: var(--surface); padding: 36px 28px; display: flex; flex-direction: column; gap: 12px; }
.outcome-metric { font-family: var(--font-display); font-size: 2.5rem; font-weight: 700; color: var(--accent); line-height: 1; }
.outcome-desc { font-size: 0.85rem; color: var(--fg-muted); line-height: 1.5; }

/* ===== PRICING ===== */
.pricing { padding: 100px 0; background: var(--surface); }
.pricing-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; margin-bottom: 48px; }
.pricing-card { background: var(--bg); border: 1px solid var(--border); border-radius: 8px; padding: 40px; display: flex; flex-direction: column; gap: 28px; }
.pricing-card--featured { border-color: var(--accent); position: relative; }
.pricing-card--featured::before { content: 'Most popular'; position: absolute; top: -1px; right: 32px; background: var(--accent); color: #0D0D12; font-size: 0.7rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; padding: 4px 12px; border-radius: 0 0 4px 4px; }
.pricing-header { display: flex; flex-direction: column; gap: 8px; }
.pricing-header h3 { font-family: var(--font-display); font-size: 1.5rem; font-weight: 600; }
.pricing-tagline { font-size: 0.875rem; color: var(--fg-muted); }
.pricing-amount { display: flex; align-items: baseline; gap: 8px; }
.pricing-from { font-size: 0.8rem; color: var(--fg-muted); }
.pricing-value { font-family: var(--font-display); font-size: 2.5rem; font-weight: 700; color: var(--fg); }
.pricing-per { font-size: 0.875rem; color: var(--fg-muted); }
.pricing-features { list-style: none; display: flex; flex-direction: column; gap: 12px; flex: 1; }
.pricing-features li { font-size: 0.9rem; color: var(--fg-muted); padding-left: 20px; position: relative; }
.pricing-features li::before { content: '\2014'; position: absolute; left: 0; color: var(--accent); }
.pricing-note { font-size: 0.8rem; color: var(--fg-muted); border-top: 1px solid var(--border); padding-top: 20px; line-height: 1.5; }
.pricing-model-note { max-width: 500px; }
.pricing-model-note p { font-size: 0.95rem; color: var(--fg-muted); }
.pricing-model-note strong { color: var(--accent); }

/* ===== PROCESS ===== */
.process { padding: 100px 0; }
.process-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.process-step { display: flex; flex-direction: column; gap: 16px; }
.step-num { font-family: var(--font-display); font-size: 2.5rem; font-weight: 400; color: var(--accent); opacity: 0.4; line-height: 1; }
.process-step h3 { font-family: var(--font-display); font-size: 1.25rem; font-weight: 600; }
.process-step p { font-size: 0.875rem; color: var(--fg-muted); line-height: 1.6; }

/* ===== MANIFESTO ===== */
.manifesto { padding: 100px 0; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.manifesto-content { max-width: 760px; }
blockquote { font-family: var(--font-display); font-size: clamp(1.25rem, 2vw, 1.75rem); font-weight: 400; font-style: italic; line-height: 1.5; color: var(--fg); margin-bottom: 28px; }
.manifesto-content > p { font-size: 1rem; color: var(--fg-muted); line-height: 1.7; }

/* ===== CLOSING ===== */
.closing { padding: 100px 0; background: var(--surface); }
.closing h2 { font-family: var(--font-display); font-size: clamp(1.75rem, 3vw, 2.5rem); font-weight: 400; line-height: 1.3; letter-spacing: -0.02em; margin-bottom: 20px; }
.closing p { font-size: 1.125rem; color: var(--fg-muted); }

/* ===== FOOTER ===== */
.footer { padding: 40px 0; border-top: 1px solid var(--border); }
.footer-inner { display: flex; align-items: center; justify-content: space-between; }
.footer-brand { display: flex; align-items: center; gap: 8px; }
.footer-logo-mark { color: var(--accent); font-size: 0.75rem; }
.footer-name { font-family: var(--font-display); font-size: 1rem; font-weight: 600; }
.footer-copy { font-size: 0.8rem; color: var(--fg-muted); }

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .nav-links { display: none; }
  .problem-grid { grid-template-columns: 1fr; }
  .outcomes-grid { grid-template-columns: 1fr 1fr; }
  .pricing-grid { grid-template-columns: 1fr; }
  .process-grid { grid-template-columns: 1fr 1fr; }
  .footer-inner { flex-direction: column; gap: 12px; text-align: center; }
}
@media (max-width: 480px) {
  .outcomes-grid { grid-template-columns: 1fr; }
  .process-grid { grid-template-columns: 1fr; }
  .hero-actions { flex-direction: column; }
  .btn-primary, .btn-ghost { width: 100%; justify-content: center; }
}