/* ── Base ── */
body.landing {
  font-family: 'Outfit', sans-serif;
  color: #1c1816;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  background: #faf7f2;
}

/* ── Animations ── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(18px); }
  to { opacity: 1; transform: translateY(0); }
}

.hero__content { animation: fadeUp 0.55s ease-out both; }
.hero__aside   { animation: fadeUp 0.55s ease-out 0.12s both; }

/* ── Flash ── */
.flash {
  max-width: 600px;
  margin: 12px auto 0;
  padding: 10px 18px;
  border-radius: 6px;
  font-size: 0.9rem;
  text-align: center;
}

.flash--notice {
  background: #ecfdf5;
  color: #065f46;
  border: 1px solid #a7f3d0;
}

.flash--alert {
  background: #fef2f2;
  color: #991b1b;
  border: 1px solid #fecaca;
}

/* ── Shared label ── */
.label {
  font-family: 'Outfit', sans-serif;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 600;
  color: #1a6b3c;
  margin-bottom: 28px;
  padding-left: 20px;
  position: relative;
}

.label::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 10px;
  height: 2px;
  background: #1a6b3c;
}

/* ── Divider ── */
.rule {
  border: none;
  border-top: 1px solid #ddd5ca;
  max-width: 1060px;
  margin: 0 auto;
}

/* ── Nav ── */
.nav {
  max-width: 1060px;
  margin: 0 auto;
  padding: 20px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav__wordmark {
  font-family: 'Fraunces', serif;
  font-size: 1.2rem;
  font-weight: 600;
  color: #1c1816;
  text-decoration: none;
}

.nav__wordmark span {
  color: #1a6b3c;
}

.nav__link {
  font-size: 0.85rem;
  color: #7a6e63;
  text-decoration: none;
  transition: color 0.15s;
}

.nav__link:hover {
  color: #1c1816;
}

/* ── Hero ── */
.hero {
  max-width: 1060px;
  margin: 0 auto;
  padding: 72px 24px 80px;
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 56px;
  align-items: start;
}

.hero__title {
  font-family: 'Fraunces', serif;
  font-size: clamp(2rem, 4.2vw, 2.85rem);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.025em;
  color: #1c1816;
  margin-bottom: 20px;
}

.hero__title em {
  font-style: italic;
  font-weight: 700;
  color: #1a6b3c;
}

.hero__body {
  font-size: 1.05rem;
  color: #6b5e53;
  line-height: 1.75;
  max-width: 480px;
}

.hero__aside {
  background: #fff;
  border: 1px solid #ddd5ca;
  border-radius: 14px;
  padding: 36px;
  box-shadow: 0 2px 24px rgba(28, 24, 22, 0.03);
  transition: box-shadow 0.25s ease;
}

.hero__aside:hover {
  box-shadow: 0 4px 40px rgba(28, 24, 22, 0.06);
}

.hero__aside-title {
  font-family: 'Fraunces', serif;
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 4px;
}

.hero__aside-sub {
  font-size: 0.9rem;
  color: #7a6e63;
  margin-bottom: 20px;
}

/* ── Form (shared) ── */
.form {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.form__row {
  display: flex;
  gap: 10px;
}

.form__input {
  width: 100%;
  padding: 12px 14px;
  border: 1.5px solid #ddd5ca;
  border-radius: 8px;
  font-size: 0.95rem;
  font-family: 'Outfit', sans-serif;
  background: #faf7f2;
  color: #1c1816;
  outline: none;
  transition: border-color 0.15s, box-shadow 0.15s;
}

.form__input::placeholder {
  color: #a8a098;
}

.form__input:focus {
  border-color: #1a6b3c;
  box-shadow: 0 0 0 3px rgba(26, 107, 60, 0.08);
}

.form__btn {
  padding: 12px 24px;
  background: #1a6b3c;
  color: #fff;
  border: none;
  border-radius: 8px;
  font-family: 'Outfit', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  white-space: nowrap;
  transition: background 0.15s, transform 0.1s;
}

.form__btn:hover {
  background: #155a30;
}

.form__btn:active {
  transform: scale(0.985);
}

.form__hint {
  font-size: 0.78rem;
  color: #a8a098;
  margin-top: 4px;
}

/* Dark variant (bottom CTA) */
.form--dark .form__input {
  background: rgba(255, 255, 255, 0.07);
  border-color: rgba(255, 255, 255, 0.12);
  color: #faf7f2;
}

.form--dark .form__input::placeholder {
  color: rgba(255, 255, 255, 0.3);
}

.form--dark .form__input:focus {
  border-color: rgba(255, 255, 255, 0.35);
  box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.05);
}

.form__btn--light {
  background: #faf7f2;
  color: #1c1816;
}

.form__btn--light:hover {
  background: #fff;
}

.form__hint--light {
  color: rgba(255, 255, 255, 0.35);
}

/* ── Pain ── */
.pain {
  max-width: 1060px;
  margin: 0 auto;
  padding: 72px 24px;
}

.pain__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.pain__item {
  border-left: 3px solid #d4cfca;
  padding: 4px 0 4px 24px;
  transition: border-color 0.2s;
}

.pain__item:hover {
  border-color: #1a6b3c;
}

.pain__quote {
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-size: 1.2rem;
  color: #1c1816;
  line-height: 1.4;
  margin-bottom: 8px;
}

.pain__context {
  font-size: 0.88rem;
  color: #7a6e63;
  line-height: 1.65;
}

/* ── How it works ── */
.how {
  max-width: 1060px;
  margin: 0 auto;
  padding: 72px 24px;
}

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

.step__num {
  font-family: 'Fraunces', serif;
  font-weight: 300;
  font-size: 3rem;
  line-height: 1;
  color: #ddd5ca;
  margin-bottom: 14px;
  letter-spacing: -0.02em;
}

.step__title {
  font-size: 1rem;
  font-weight: 600;
  color: #1c1816;
  margin-bottom: 6px;
}

.step__text {
  font-size: 0.9rem;
  color: #7a6e63;
  line-height: 1.65;
}

/* ── Features ── */
.features {
  max-width: 1060px;
  margin: 0 auto;
  padding: 72px 24px 96px;
}

.features__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}

.feat {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 16px 18px;
  border-radius: 8px;
  transition: background 0.15s;
}

.feat:hover {
  background: rgba(28, 24, 22, 0.025);
}

.feat__dot {
  flex-shrink: 0;
  width: 7px;
  height: 7px;
  background: #1a6b3c;
  border-radius: 50%;
  margin-top: 9px;
}

.feat p {
  font-size: 0.93rem;
  color: #57534e;
  line-height: 1.55;
}

.feat strong {
  color: #1c1816;
  font-weight: 600;
}

/* ── Bottom CTA ── */
.cta {
  background: #1c1816;
}

.cta__inner {
  max-width: 580px;
  margin: 0 auto;
  padding: 88px 24px;
  text-align: center;
}

.cta__title {
  font-family: 'Fraunces', serif;
  font-size: 1.65rem;
  font-weight: 700;
  color: #faf7f2;
  letter-spacing: -0.02em;
  margin-bottom: 8px;
}

.cta__text {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.45);
  margin-bottom: 28px;
}

.cta .form__row {
  justify-content: center;
}

/* ── Footer ── */
.landing-footer {
  padding: 28px 24px;
  text-align: center;
  font-size: 0.78rem;
  color: #a8a098;
  border-top: 1px solid #e7e2db;
}

/* ── Responsive ── */
@media (max-width: 840px) {
  .hero {
    grid-template-columns: 1fr;
    gap: 40px;
    padding-top: 56px;
    padding-bottom: 64px;
  }

  .hero__aside {
    max-width: 420px;
  }

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

  .how__steps {
    grid-template-columns: 1fr;
    gap: 36px;
  }

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

@media (max-width: 520px) {
  .hero__title {
    font-size: 1.8rem;
  }

  .form__row {
    flex-direction: column;
  }

  .form__btn--light {
    width: 100%;
  }

  .step__num {
    font-size: 2.2rem;
  }

  .pain__quote {
    font-size: 1.05rem;
  }
}
