/* PainAway — Warm amber on deep black. DM Serif Display + DM Sans. */

:root {
  --bg: #0F0F0F;
  --surface: #1A1A1A;
  --surface2: #242424;
  --amber: #F59E0B;
  --amber-dim: #B4730A;
  --cream: #F5F0E8;
  --cream-dim: #C8C1B4;
  --text-muted: #8A8480;
  --border: #2E2E2E;
}

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

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

h1, h2, h3 {
  font-family: 'DM Serif Display', Georgia, serif;
  font-weight: 400;
  line-height: 1.15;
}

/* ── HERO ── */
.hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  padding: 6rem 5% 5rem;
  min-height: 85vh;
  max-width: 1300px;
  margin: 0 auto;
  border-bottom: 1px solid var(--border);
}

.hero-label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--amber);
  font-weight: 600;
  margin-bottom: 1.5rem;
}

.hero h1 {
  font-size: clamp(3rem, 6vw, 5.5rem);
  color: var(--cream);
  margin-bottom: 1.5rem;
}

.hero h1 em {
  color: var(--amber);
  font-style: italic;
}

.hero-sub {
  font-size: 1.1rem;
  color: var(--cream-dim);
  max-width: 520px;
  margin-bottom: 2.5rem;
  line-height: 1.7;
}

.hero-targets {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.hero-targets span {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 100px;
  padding: 0.4rem 1rem;
  font-size: 0.8rem;
  color: var(--cream-dim);
}

.hero-visual {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}

.pain-meter {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 2rem;
}

.pain-label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  margin-bottom: 1rem;
}

.pain-bar {
  height: 8px;
  background: var(--surface2);
  border-radius: 100px;
  overflow: hidden;
  margin-bottom: 1rem;
}

.pain-fill {
  height: 100%;
  width: 85%;
  background: linear-gradient(90deg, var(--amber-dim), var(--amber));
  border-radius: 100px;
}

.pain-caption {
  font-size: 0.8rem;
  color: var(--text-muted);
  font-style: italic;
}

.solution-block {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 1.75rem 2rem;
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.solution-icon { font-size: 2rem; }

.solution-text {
  font-family: 'DM Serif Display', serif;
  font-size: 1.2rem;
  color: var(--cream);
  line-height: 1.4;
}

/* ── MANIFESTO ── */
.manifesto {
  padding: 5rem 5%;
  background: var(--surface);
  border-bottom: 1px solid var(--border);
}

.manifesto-inner {
  max-width: 1300px;
  margin: 0 auto;
}

.manifesto blockquote {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(1.4rem, 3vw, 2.2rem);
  color: var(--cream);
  margin-bottom: 1.5rem;
  font-style: italic;
  line-height: 1.4;
}

.manifesto-body {
  color: var(--cream-dim);
  font-size: 1.05rem;
  max-width: 680px;
  line-height: 1.75;
}

/* ── SERVICES ── */
.services {
  padding: 6rem 5%;
  max-width: 1300px;
  margin: 0 auto;
  border-bottom: 1px solid var(--border);
}

.services-header {
  margin-bottom: 3.5rem;
}

.services-header h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--cream);
  margin-bottom: 0.75rem;
}

.services-header p {
  color: var(--text-muted);
  font-size: 1rem;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 1.5rem;
}

.service-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 1.75rem;
}

.service-icon {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  display: block;
}

.service-card h3 {
  font-size: 1.05rem;
  color: var(--cream);
  margin-bottom: 0.6rem;
  font-family: 'DM Serif Display', serif;
}

.service-card p {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ── WHY NOW ── */
.why-now {
  padding: 6rem 5%;
  background: var(--surface);
  border-bottom: 1px solid var(--border);
}

.why-now-inner { max-width: 1300px; margin: 0 auto; }

.stat-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-bottom: 4rem;
}

.stat-value {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(2.5rem, 4vw, 3.5rem);
  color: var(--amber);
  line-height: 1;
  margin-bottom: 0.5rem;
}

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

.why-now-body h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--cream);
  margin-bottom: 1.25rem;
}

.why-now-body p {
  color: var(--cream-dim);
  font-size: 1rem;
  line-height: 1.8;
  max-width: 680px;
  margin-bottom: 1rem;
}

/* ── PRICING ── */
.pricing {
  padding: 6rem 5%;
  max-width: 1300px;
  margin: 0 auto;
  border-bottom: 1px solid var(--border);
}

.pricing h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--cream);
  margin-bottom: 0.75rem;
}

.pricing-intro {
  color: var(--text-muted);
  font-size: 1rem;
  margin-bottom: 3rem;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}

.pricing-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 2rem;
}

.pricing-card.featured {
  border-color: var(--amber);
  position: relative;
}

.pricing-tier {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--amber);
  font-weight: 600;
  margin-bottom: 0.75rem;
}

.pricing-amount {
  font-family: 'DM Serif Display', serif;
  font-size: 2.2rem;
  color: var(--cream);
  margin-bottom: 1.25rem;
}

.pricing-amount span { font-size: 1rem; color: var(--text-muted); }

.pricing-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.pricing-features li {
  font-size: 0.88rem;
  color: var(--cream-dim);
  padding-left: 1.2rem;
  position: relative;
}

.pricing-features li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--amber);
}

.pricing-setup-note {
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.6;
}

.pricing-closing {
  font-family: 'DM Serif Display', serif;
  font-size: 1.3rem;
  color: var(--cream-dim);
  font-style: italic;
  text-align: center;
}

/* ── CLOSING ── */
.closing {
  padding: 6rem 5%;
  max-width: 1300px;
  margin: 0 auto;
  text-align: center;
}

.closing h2 {
  font-size: clamp(2.2rem, 4.5vw, 3.5rem);
  color: var(--cream);
  margin-bottom: 1.5rem;
}

.closing p {
  color: var(--cream-dim);
  font-size: 1.05rem;
  max-width: 640px;
  margin: 0 auto 3rem;
  line-height: 1.8;
}

.closing-statement {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(1.2rem, 2.5vw, 1.8rem);
  color: var(--amber);
  font-style: italic;
  line-height: 1.6;
}

/* ── FOOTER ── */
footer {
  border-top: 1px solid var(--border);
  padding: 3rem 5%;
}

.footer-inner { max-width: 1300px; margin: 0 auto; }

.footer-brand {
  font-family: 'DM Serif Display', serif;
  font-size: 1.5rem;
  color: var(--cream);
  margin-bottom: 0.4rem;
}

.footer-tagline {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 1rem;
}

.footer-meta {
  font-size: 0.75rem;
  color: var(--border);
}

/* ── RESPONSIVE ── */
@media (max-width: 768px) {
  .hero {
    grid-template-columns: 1fr;
    gap: 3rem;
    padding: 4rem 5% 3rem;
    min-height: auto;
  }

  .hero-visual { order: -1; }

  .stat-row { grid-template-columns: 1fr; gap: 2rem; }

  .pricing-grid { grid-template-columns: 1fr; }

  .services-grid { grid-template-columns: 1fr; }

  .hero-targets { gap: 0.5rem; }
  .hero-targets span { font-size: 0.72rem; }
}

@media (max-width: 480px) {
  body { font-size: 15px; }
  .manifesto blockquote { font-size: 1.3rem; }
  .stat-value { font-size: 2.2rem; }
}