:root {
  --bg: #0C0F0E;
  --bg-subtle: #131716;
  --surface: #1A1F1D;
  --surface-raised: #222826;
  --border: #2A302E;
  --fg: #E8EBE9;
  --fg-muted: #8A9490;
  --fg-subtle: #5C6662;
  --accent: #4ADE80;
  --accent-muted: #22C55E;
  --accent-subtle: rgba(74, 222, 128, 0.1);
  --warm: #FDE68A;
  --serif: 'Instrument Serif', Georgia, serif;
  --sans: 'Plus Jakarta Sans', -apple-system, sans-serif;
}

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

body {
  background: var(--bg);
  color: var(--fg);
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

/* Hero */
.hero {
  min-height: 90vh;
  display: flex;
  align-items: center;
  padding: 120px 24px 80px;
  position: relative;
  overflow: hidden;
  background: radial-gradient(ellipse at 50% 0%, rgba(74, 222, 128, 0.06) 0%, transparent 60%);
}

.hero-inner {
  max-width: 820px;
  margin: 0 auto;
  text-align: center;
}

.rx-badge {
  display: inline-block;
  font-family: var(--serif);
  font-size: 20px;
  font-style: italic;
  color: var(--accent);
  border: 1.5px solid var(--accent);
  border-radius: 8px;
  padding: 4px 14px;
  margin-bottom: 32px;
  letter-spacing: 1px;
}

.hero h1 {
  font-family: var(--sans);
  font-size: clamp(2.4rem, 5.5vw, 4rem);
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: -0.03em;
  margin-bottom: 24px;
}

.hero h1 em {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  color: var(--accent);
}

.lede {
  font-size: 1.15rem;
  color: var(--fg-muted);
  max-width: 620px;
  margin: 0 auto 48px;
  line-height: 1.7;
}

.hero-stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  padding: 32px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
}

.stat { text-align: center; }

.stat-number {
  display: block;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 4px;
}

.stat-label {
  font-size: 0.8rem;
  color: var(--fg-subtle);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.stat-divider {
  width: 1px;
  height: 40px;
  background: var(--border);
}

/* Problem */
.problem {
  padding: 100px 24px;
}

.problem-inner {
  max-width: 1000px;
  margin: 0 auto;
}

.section-label {
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--accent);
  margin-bottom: 16px;
}

.problem h2, .how h2, .deliverables h2 {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin-bottom: 48px;
}

.problem h2 em, .how h2 em, .deliverables h2 em {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  color: var(--accent);
}

.problem-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.problem-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 32px;
}

.problem-icon {
  font-family: var(--serif);
  font-size: 2rem;
  font-style: italic;
  color: var(--accent-muted);
  margin-bottom: 16px;
}

.problem-card h3 {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.problem-card p {
  color: var(--fg-muted);
  font-size: 0.95rem;
  line-height: 1.6;
}

/* How */
.how {
  padding: 100px 24px;
  background: var(--bg-subtle);
}

.how-inner {
  max-width: 700px;
  margin: 0 auto;
}

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

.step {
  display: flex;
  gap: 24px;
  align-items: flex-start;
}

.step-number {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--accent-subtle);
  border: 1.5px solid var(--accent-muted);
  color: var(--accent);
  font-weight: 700;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.step-content h3 {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 6px;
}

.step-content p {
  color: var(--fg-muted);
  font-size: 0.95rem;
}

.step-line {
  width: 1.5px;
  height: 32px;
  background: var(--border);
  margin-left: 24px;
}

/* Deliverables */
.deliverables {
  padding: 100px 24px;
}

.deliverables-inner {
  max-width: 1000px;
  margin: 0 auto;
}

.deliverables-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.deliverable {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 32px;
  transition: border-color 0.2s;
}

.deliverable:hover {
  border-color: var(--accent-muted);
}

.deliverable-tag {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--accent);
  background: var(--accent-subtle);
  padding: 4px 10px;
  border-radius: 6px;
  margin-bottom: 16px;
}

.deliverable h3 {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.deliverable p {
  color: var(--fg-muted);
  font-size: 0.95rem;
  line-height: 1.6;
}

/* Closing */
.closing {
  padding: 120px 24px;
  text-align: center;
  background: radial-gradient(ellipse at 50% 100%, rgba(74, 222, 128, 0.05) 0%, transparent 60%);
}

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

.closing-rx {
  font-family: var(--serif);
  font-size: 3rem;
  font-style: italic;
  color: var(--accent);
  margin-bottom: 24px;
  opacity: 0.6;
}

.closing h2 {
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin-bottom: 20px;
}

.closing-text {
  color: var(--fg-muted);
  font-size: 1.05rem;
  line-height: 1.7;
  margin-bottom: 40px;
}

.closing-price {
  display: inline-flex;
  align-items: baseline;
  gap: 8px;
  padding: 20px 32px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
}

.price-from {
  font-size: 0.85rem;
  color: var(--fg-subtle);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.price-amount {
  font-size: 2rem;
  font-weight: 800;
  color: var(--accent);
}

.price-period {
  font-size: 0.9rem;
  color: var(--fg-muted);
}

/* Footer */
.site-footer {
  padding: 48px 24px;
  border-top: 1px solid var(--border);
}

.footer-inner {
  max-width: 1000px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-logo {
  font-weight: 700;
  font-size: 1.1rem;
  margin-bottom: 6px;
  display: block;
}

.footer-brand p {
  color: var(--fg-subtle);
  font-size: 0.85rem;
}

.footer-meta {
  text-align: right;
}

.footer-meta p {
  color: var(--fg-subtle);
  font-size: 0.85rem;
}

/* Mobile */
@media (max-width: 768px) {
  .hero { padding: 80px 20px 60px; min-height: auto; }
  .hero-stats { flex-direction: column; gap: 20px; }
  .stat-divider { width: 40px; height: 1px; }
  .problem-grid { grid-template-columns: 1fr; }
  .deliverables-grid { grid-template-columns: 1fr; }
  .footer-inner { flex-direction: column; text-align: center; gap: 24px; }
  .footer-meta { text-align: center; }
  .problem, .how, .deliverables { padding: 64px 20px; }
  .closing { padding: 80px 20px; }
}