:root {
  --bg: #faf7f2;
  --bg-warm: #f3ede4;
  --fg: #2a2520;
  --fg-soft: #6b5e52;
  --accent: #c45d3e;
  --accent-light: #e8a48e;
  --accent-glow: rgba(196, 93, 62, 0.12);
  --green: #4a7c59;
  --green-light: #dce8d8;
  --meditation: #6b8a73;
  --meditation-deep: #4a6741;
  --meditation-light: rgba(109, 138, 115, 0.12);
  --radius: 16px;
  --font-display: 'Syne', sans-serif;
  --font-body: 'DM Sans', sans-serif;
}

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

body {
  background: var(--bg);
  color: var(--fg);
  font-family: var(--font-body);
  font-size: 18px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* ---- HERO ---- */
.hero {
  min-height: 90vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 80px 40px 60px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -20%;
  right: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, var(--accent-glow) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -15%;
  left: -5%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, var(--green-light) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.hero-inner {
  max-width: 900px;
  position: relative;
  z-index: 1;
}

.hero-tag {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--accent);
  margin-bottom: 28px;
  padding: 8px 16px;
  background: var(--accent-glow);
  border-radius: 100px;
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(48px, 7vw, 88px);
  font-weight: 800;
  line-height: 1.05;
  color: var(--fg);
  margin-bottom: 28px;
  letter-spacing: -2px;
}

.hero h1 em {
  font-style: normal;
  color: var(--accent);
}

.hero .lede {
  font-size: clamp(18px, 2.5vw, 22px);
  color: var(--fg-soft);
  max-width: 560px;
  line-height: 1.7;
}

/* ---- PROBLEM ---- */
.problem {
  padding: 100px 40px;
  background: var(--bg-warm);
}

.problem-inner {
  max-width: 1000px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.problem-text h2 {
  font-family: var(--font-display);
  font-size: clamp(32px, 4vw, 44px);
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 20px;
  letter-spacing: -1px;
}

.problem-text p {
  color: var(--fg-soft);
  font-size: 17px;
  line-height: 1.75;
}

.problem-stats {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.stat-card {
  background: var(--bg);
  border-radius: var(--radius);
  padding: 28px 32px;
  border-left: 4px solid var(--accent);
}

.stat-card .number {
  font-family: var(--font-display);
  font-size: 36px;
  font-weight: 800;
  color: var(--accent);
  display: block;
  margin-bottom: 4px;
}

.stat-card .label {
  font-size: 15px;
  color: var(--fg-soft);
}

/* ---- HOW ---- */
.how {
  padding: 100px 40px;
}

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

.how h2 {
  font-family: var(--font-display);
  font-size: clamp(32px, 4vw, 44px);
  font-weight: 700;
  text-align: center;
  margin-bottom: 60px;
  letter-spacing: -1px;
}

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

.step {
  position: relative;
  padding: 36px 28px;
  border-radius: var(--radius);
  background: var(--bg-warm);
  transition: transform 0.2s ease;
}

.step:hover {
  transform: translateY(-4px);
}

.step-num {
  font-family: var(--font-display);
  font-size: 56px;
  font-weight: 800;
  color: var(--accent-light);
  line-height: 1;
  margin-bottom: 16px;
}

.step h3 {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 10px;
}

.step p {
  font-size: 15px;
  color: var(--fg-soft);
  line-height: 1.65;
}

/* ---- WHY ---- */
.why {
  padding: 100px 40px;
  background: var(--fg);
  color: var(--bg);
}

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

.why h2 {
  font-family: var(--font-display);
  font-size: clamp(32px, 4vw, 44px);
  font-weight: 700;
  margin-bottom: 20px;
  letter-spacing: -1px;
}

.why .subtitle {
  font-size: 18px;
  color: var(--accent-light);
  margin-bottom: 50px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.7;
}

.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  text-align: left;
}

.why-card {
  padding: 32px;
  background: rgba(255,255,255,0.06);
  border-radius: var(--radius);
  border: 1px solid rgba(255,255,255,0.08);
}

.why-card h3 {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--accent-light);
}

.why-card p {
  font-size: 15px;
  color: rgba(250, 247, 242, 0.7);
  line-height: 1.65;
}

/* ---- HERO CTA ---- */
.hero-actions {
  margin-top: 40px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 14px;
}

.btn-hero-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 20px 40px;
  background: var(--accent);
  color: #fff;
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  letter-spacing: -0.3px;
  border-radius: 100px;
  text-decoration: none;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
  box-shadow: 0 6px 24px rgba(196, 93, 62, 0.4);
}

.btn-hero-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(196, 93, 62, 0.5);
}

.btn-hero-primary .arrow {
  font-size: 20px;
  transition: transform 0.2s ease;
}

.btn-hero-primary:hover .arrow {
  transform: translateX(4px);
}

.hero-sub {
  font-size: 14px !important;
  color: var(--fg-soft);
  max-width: none !important;
  margin: 0 !important;
  line-height: 1.4 !important;
  opacity: 0.7;
}

/* ---- CLOSING ---- */
.closing {
  padding: 120px 40px;
  text-align: center;
}

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

.closing h2 {
  font-family: var(--font-display);
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 20px;
  letter-spacing: -1.5px;
}

.closing h2 em {
  font-style: normal;
  color: var(--accent);
}

.closing p {
  font-size: 18px;
  color: var(--fg-soft);
  max-width: 520px;
  margin: 0 auto;
  line-height: 1.7;
}

/* ---- FOOTER ---- */
.footer {
  padding: 40px;
  text-align: center;
  border-top: 1px solid rgba(42, 37, 32, 0.08);
}

.footer p {
  font-size: 14px;
  color: var(--fg-soft);
}

.footer .brand {
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--fg);
}

/* ---- RESPONSIVE ---- */
@media (max-width: 768px) {
  .hero { padding: 60px 24px 40px; min-height: 80vh; }
  .problem { padding: 60px 24px; }
  .problem-inner { grid-template-columns: 1fr; gap: 40px; }
  .how { padding: 60px 24px; }
  .steps { grid-template-columns: 1fr; }
  .why { padding: 60px 24px; }
  .why-grid { grid-template-columns: 1fr; }
  .closing { padding: 80px 24px; }
}