:root {
  --bg: #fff8f3;
  --ink: #2c2026;
  --muted: #6f6268;
  --plum: #6f214d;
  --plum-dark: #572040;
  --rose: #e97975;
  --coral: #f2a178;
  --mint: #d9efe6;
  --mint-deep: #14463c;
  --line: #ecd8cd;
  --shadow: 0 22px 70px rgba(74, 38, 50, 0.13);
  --shadow-sm: 0 12px 34px rgba(74, 38, 50, 0.09);
}

* { box-sizing: border-box; }

html {
  background: var(--bg);
  color: var(--ink);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont,
    "Segoe UI", sans-serif;
  scroll-behavior: smooth;
}

body { margin: 0; }

h1, h2, h3, p { margin: 0; }

a { color: inherit; }

.wrap {
  margin: 0 auto;
  max-width: 1140px;
  padding: 0 clamp(18px, 4vw, 40px);
  width: 100%;
}

.eyebrow {
  color: var(--plum);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

/* Buttons */
.btn {
  border: 0;
  border-radius: 8px;
  cursor: pointer;
  display: inline-block;
  font-weight: 800;
  padding: 15px 26px;
  text-align: center;
  text-decoration: none;
}

.btn-primary { background: var(--plum); color: #fff; }
.btn-primary:hover { background: var(--plum-dark); }

.btn-ghost {
  background: #fff;
  border: 1px solid var(--line);
  color: var(--ink);
}
.btn-ghost:hover { border-color: var(--plum); color: var(--plum); }

.btn-light { background: #fff; color: var(--plum); }
.btn-light:hover { background: #fff4ef; }

/* Header */
.site-header {
  align-items: center;
  display: flex;
  justify-content: space-between;
  padding: 18px 0;
}

.brand {
  align-items: center;
  display: flex;
  gap: 12px;
}

.brand img {
  height: 46px;
  object-fit: contain;
  width: auto;
}

.brand strong {
  font-size: 1.05rem;
  font-weight: 800;
  letter-spacing: -0.01em;
}

.nav-actions {
  align-items: center;
  display: flex;
  gap: 18px;
}

.nav-login {
  font-weight: 700;
  text-decoration: none;
}
.nav-login:hover { color: var(--plum); }

/* Hero */
.hero {
  align-items: center;
  display: grid;
  gap: clamp(28px, 5vw, 56px);
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  padding: clamp(30px, 6vw, 70px) 0 clamp(40px, 7vw, 80px);
}

.hero-copy h1 {
  font-size: clamp(2.6rem, 6vw, 4.4rem);
  letter-spacing: -0.02em;
  line-height: 0.98;
  margin: 16px 0 0;
}

.hero-copy .lede {
  color: var(--muted);
  font-size: clamp(1.05rem, 2vw, 1.2rem);
  line-height: 1.6;
  margin: 22px 0 0;
  max-width: 33ch;
}

.hero-cta {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 30px;
}

.hero-note {
  color: var(--muted);
  font-size: 0.9rem;
  margin-top: 16px;
}

.hero-art {
  background:
    radial-gradient(120% 120% at 70% 20%, rgba(242, 161, 120, 0.35), transparent 55%),
    linear-gradient(150deg, var(--mint), #fff);
  border: 1px solid var(--line);
  border-radius: 20px;
  box-shadow: var(--shadow);
  display: grid;
  padding: clamp(22px, 4vw, 40px);
  place-items: center;
}

.hero-art img {
  border-radius: 12px;
  max-width: min(100%, 360px);
  width: 100%;
}

/* Section shells */
.section { padding: clamp(40px, 7vw, 84px) 0; }

.section-head {
  margin: 0 auto clamp(28px, 4vw, 48px);
  max-width: 640px;
  text-align: center;
}

.section-head h2 {
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  letter-spacing: -0.01em;
  margin-top: 10px;
}

.section-head p {
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.6;
  margin-top: 14px;
}

/* Steps */
.steps {
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.step {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  box-shadow: var(--shadow-sm);
  padding: 26px;
}

.step-num {
  align-items: center;
  background: var(--plum);
  border-radius: 50%;
  color: #fff;
  display: flex;
  font-weight: 800;
  height: 38px;
  justify-content: center;
  width: 38px;
}

.step h3 { font-size: 1.2rem; margin: 16px 0 8px; }
.step p { color: var(--muted); line-height: 1.55; }

/* Benefits */
.benefits { background: linear-gradient(180deg, #fff, var(--mint)); }

.benefit-grid {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.benefit {
  align-items: flex-start;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  display: flex;
  gap: 16px;
  padding: 22px;
}

.benefit .dot {
  background: var(--coral);
  border-radius: 10px;
  flex: 0 0 auto;
  height: 14px;
  margin-top: 6px;
  width: 14px;
}

.benefit h3 { font-size: 1.1rem; margin-bottom: 6px; }
.benefit p { color: var(--muted); line-height: 1.55; }

/* Goals chips */
.goals {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}

.chip {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 999px;
  font-weight: 700;
  padding: 10px 18px;
}

/* CTA band */
.cta-band {
  background: linear-gradient(135deg, var(--plum), #8a2c63);
  border-radius: 20px;
  box-shadow: var(--shadow);
  color: #fff;
  margin: 0 auto;
  padding: clamp(34px, 5vw, 60px);
  text-align: center;
}

.cta-band h2 {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  letter-spacing: -0.01em;
}

.cta-band p {
  color: rgba(255, 255, 255, 0.86);
  font-size: 1.08rem;
  margin: 14px auto 26px;
  max-width: 44ch;
}

/* Footer */
.site-footer {
  border-top: 1px solid var(--line);
  color: var(--muted);
  margin-top: clamp(40px, 6vw, 80px);
  padding: 30px 0;
}

.footer-row {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: space-between;
}

.footer-links { display: flex; flex-wrap: wrap; gap: 20px; }
.footer-links a { font-weight: 700; text-decoration: none; }
.footer-links a:hover { color: var(--plum); }

/* Responsive */
@media (max-width: 860px) {
  .hero { grid-template-columns: 1fr; }
  .hero-art { order: -1; }
  .hero-copy .lede { max-width: none; }
  .steps { grid-template-columns: 1fr; }
  .benefit-grid { grid-template-columns: 1fr; }
}
