:root {
  --bg: #0e0e0e;
  --bg-card: #161616;
  --bg-card-hover: #1c1c1c;
  --fg: #f0ebe4;
  --fg-muted: #8c877f;
  --fg-dim: #4a4843;
  --accent: #d4620a;
  --accent-light: #f07d2e;
  --border: #2a2a2a;
  --border-light: #333;
  --serif: 'Instrument Serif', Georgia, serif;
  --sans: 'DM Sans', system-ui, sans-serif;
}

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

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

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

/* NAV */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  border-bottom: 1px solid var(--border);
  background: rgba(14,14,14,0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}
.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 16px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.18em;
  color: var(--fg);
}
.nav-logo-accent { color: var(--accent); }
.nav-tagline {
  font-size: 12px;
  color: var(--fg-muted);
  letter-spacing: 0.06em;
}

/* HERO */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 120px 32px 80px;
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
}
.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  margin-bottom: 60px;
}
.hero-eyebrow {
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 24px;
  font-weight: 500;
}
.hero-headline {
  font-family: var(--serif);
  font-size: clamp(42px, 5.5vw, 80px);
  line-height: 1.05;
  font-weight: 400;
  color: var(--fg);
  margin-bottom: 28px;
}
.hero-headline em {
  font-style: italic;
  color: var(--accent);
}
.hero-sub {
  font-size: 18px;
  color: var(--fg-muted);
  line-height: 1.65;
  max-width: 440px;
  font-weight: 300;
}

.hero-stat-block {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 40px;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.hero-stat {
  padding: 20px 0;
}
.hero-stat:first-child { padding-top: 0; }
.hero-stat:last-child { padding-bottom: 0; }
.hero-stat-num {
  display: block;
  font-family: var(--serif);
  font-size: 42px;
  font-style: italic;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 8px;
}
.hero-stat-label {
  font-size: 13px;
  color: var(--fg-muted);
  line-height: 1.4;
  display: block;
}
.hero-stat-divider {
  height: 1px;
  background: var(--border);
}

.hero-bottom-bar {
  display: flex;
  gap: 40px;
  padding: 24px 32px;
  border: 1px solid var(--border);
  border-radius: 4px;
  background: var(--bg-card);
  align-items: center;
}
.hero-bar-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  color: var(--fg-muted);
}
.hero-bar-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  flex-shrink: 0;
}

/* PROBLEM */
.problem {
  background: var(--bg-card);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 100px 32px;
}
.problem-inner {
  max-width: 1200px;
  margin: 0 auto;
}
.problem-label, .offer-label, .how-label, .pricing-label, .manifesto-label {
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 20px;
  font-weight: 500;
}
.problem-headline {
  font-family: var(--serif);
  font-size: clamp(28px, 3.5vw, 52px);
  font-weight: 400;
  line-height: 1.2;
  margin-bottom: 64px;
  max-width: 760px;
}
.problem-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  margin-bottom: 48px;
}
.problem-card {
  background: var(--bg-card);
  padding: 40px 36px;
}
.problem-card-icon {
  color: var(--accent);
  margin-bottom: 20px;
}
.problem-card h3 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 12px;
  color: var(--fg);
}
.problem-card p {
  font-size: 14px;
  color: var(--fg-muted);
  line-height: 1.6;
  font-weight: 300;
}
.problem-quote {
  max-width: 640px;
}
.problem-quote blockquote {
  font-family: var(--serif);
  font-size: clamp(20px, 2.5vw, 28px);
  font-style: italic;
  color: var(--fg-muted);
  line-height: 1.4;
  border-left: 2px solid var(--accent);
  padding-left: 24px;
  margin-bottom: 16px;
}
.problem-quote cite {
  font-size: 13px;
  color: var(--fg-dim);
  padding-left: 24px;
  font-style: normal;
}

/* OFFER */
.offer {
  padding: 100px 32px;
}
.offer-inner {
  max-width: 1200px;
  margin: 0 auto;
}
.offer-headline {
  font-family: var(--serif);
  font-size: clamp(28px, 3.5vw, 52px);
  font-weight: 400;
  line-height: 1.2;
  margin-bottom: 32px;
  max-width: 820px;
}
.offer-body {
  max-width: 720px;
  margin-bottom: 56px;
}
.offer-body p {
  font-size: 17px;
  color: var(--fg-muted);
  line-height: 1.7;
  font-weight: 300;
}
.offer-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border: 1px solid var(--border);
}
.offer-feature {
  display: flex;
  gap: 20px;
  padding: 32px 28px;
  border-bottom: 1px solid var(--border);
}
.offer-feature:nth-child(odd) { border-right: 1px solid var(--border); }
.offer-feature:nth-last-child(-n+2) { border-bottom: none; }
.offer-feature-icon {
  width: 36px;
  height: 36px;
  border: 1px solid var(--accent);
  border-radius: 2px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  flex-shrink: 0;
}
.offer-feature h4 {
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--fg);
}
.offer-feature p {
  font-size: 13px;
  color: var(--fg-muted);
  line-height: 1.55;
  font-weight: 300;
}

/* HOW */
.how {
  background: var(--bg-card);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 100px 32px;
}
.how-inner {
  max-width: 1200px;
  margin: 0 auto;
}
.how-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border: 1px solid var(--border);
  margin-top: 48px;
}
.how-step {
  padding: 40px 32px;
  border-right: 1px solid var(--border);
}
.how-step:last-child { border-right: none; }
.how-step-num {
  display: block;
  font-family: var(--serif);
  font-size: 48px;
  font-style: italic;
  color: var(--accent);
  opacity: 0.4;
  margin-bottom: 20px;
  line-height: 1;
}
.how-step h3 {
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 12px;
  color: var(--fg);
}
.how-step p {
  font-size: 13px;
  color: var(--fg-muted);
  line-height: 1.6;
  font-weight: 300;
}

/* PRICING */
.pricing {
  padding: 100px 32px;
}
.pricing-inner {
  max-width: 1200px;
  margin: 0 auto;
}
.pricing-headline {
  font-family: var(--serif);
  font-size: clamp(28px, 3.5vw, 52px);
  font-weight: 400;
  line-height: 1.2;
  margin-bottom: 56px;
  max-width: 700px;
}
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  margin-bottom: 28px;
}
.pricing-card {
  background: var(--bg-card);
  padding: 40px 36px;
  position: relative;
  display: flex;
  flex-direction: column;
}
.pricing-card-featured {
  background: #1a1208;
  border: 1px solid var(--accent);
}
.pricing-badge {
  position: absolute;
  top: -1px;
  right: 28px;
  background: var(--accent);
  color: var(--bg);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 5px 12px;
}
.pricing-card-header {
  margin-bottom: 32px;
}
.pricing-card h3 {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--fg-muted);
  margin-bottom: 16px;
}
.pricing-price {
  display: flex;
  align-items: baseline;
  gap: 6px;
  margin-bottom: 12px;
}
.pricing-amount {
  font-family: var(--serif);
  font-size: 52px;
  font-style: italic;
  color: var(--fg);
  line-height: 1;
}
.pricing-period {
  font-size: 15px;
  color: var(--fg-muted);
}
.pricing-tagline {
  font-size: 13px;
  color: var(--fg-dim);
  font-weight: 300;
}
.pricing-features {
  list-style: none;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 32px;
}
.pricing-features li {
  font-size: 14px;
  color: var(--fg-muted);
  line-height: 1.4;
  padding-left: 20px;
  position: relative;
  font-weight: 300;
}
.pricing-features li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 8px;
  width: 6px;
  height: 1px;
  background: var(--accent);
}
.pricing-features li strong {
  color: var(--fg);
  font-weight: 500;
}
.pricing-card-footer {
  border-top: 1px solid var(--border);
  padding-top: 20px;
  margin-top: auto;
}
.pricing-card-footer p {
  font-size: 12px;
  color: var(--fg-dim);
  font-weight: 300;
  font-style: italic;
}
.pricing-note {
  font-size: 13px;
  color: var(--fg-dim);
  font-weight: 300;
  max-width: 600px;
}

/* MANIFESTO */
.manifesto {
  background: var(--accent);
  padding: 80px 32px;
}
.manifesto-inner {
  max-width: 1200px;
  margin: 0 auto;
}
.manifesto-text {
  max-width: 860px;
}
.manifesto-quote {
  font-family: var(--serif);
  font-size: clamp(24px, 3vw, 44px);
  font-style: italic;
  color: var(--bg);
  line-height: 1.35;
  font-weight: 400;
}

/* FOOTER */
.footer {
  background: var(--bg);
  border-top: 1px solid var(--border);
  padding: 64px 32px 32px;
}
.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 48px;
  margin-bottom: 48px;
}
.footer-logo {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.18em;
  display: block;
  margin-bottom: 12px;
}
.footer-logo-accent { color: var(--accent); }
.footer-brand p {
  font-size: 13px;
  color: var(--fg-dim);
  font-weight: 300;
  max-width: 260px;
}
.footer-info p {
  font-size: 13px;
  color: var(--fg-muted);
  font-weight: 300;
  text-align: right;
  line-height: 1.6;
}
.footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
  border-top: 1px solid var(--border);
  padding-top: 24px;
}
.footer-bottom p {
  font-size: 12px;
  color: var(--fg-dim);
  font-weight: 300;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; gap: 48px; }
  .hero-stat-block { padding: 28px; }
  .hero-bottom-bar { gap: 20px; flex-wrap: wrap; }
  .problem-grid { grid-template-columns: 1fr; }
  .offer-features { grid-template-columns: 1fr; }
  .offer-feature:nth-child(odd) { border-right: none; }
  .offer-feature:nth-last-child(-n+2) { border-bottom: 1px solid var(--border); }
  .how-steps { grid-template-columns: 1fr 1fr; }
  .how-step:nth-child(2) { border-right: none; }
  .how-step:nth-child(3) { border-top: 1px solid var(--border); }
  .pricing-grid { grid-template-columns: 1fr; }
  .footer-inner { flex-direction: column; }
  .footer-info p { text-align: left; }
}

@media (max-width: 600px) {
  .hero { padding: 100px 20px 60px; }
  .problem, .offer, .how, .pricing { padding: 64px 20px; }
  .how-steps { grid-template-columns: 1fr; }
  .how-step { border-right: none; border-bottom: 1px solid var(--border); }
  .how-step:last-child { border-bottom: none; }
  .hero-bottom-bar { padding: 20px; }
  .pricing-card-featured { border-left: none; border-right: none; }
  .nav-inner { padding: 14px 20px; }
  .nav-tagline { display: none; }
}