/* ===== Ember landing — faithful rebuild of Ember.dc.html ===== */
* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  font-family: 'Hanken Grotesk', system-ui, sans-serif;
  -webkit-font-smoothing: antialiased;
  background: #F3DFCB;
  color: #3a2a1a;
}

@keyframes emberShimmer { 0% { background-position: 160% 0; } 32% { background-position: -60% 0; } 100% { background-position: -60% 0; } }
@keyframes emberPulse { 0%, 100% { opacity: .55; transform: scale(1); } 50% { opacity: .9; transform: scale(1.1); } }
@keyframes emberFloat { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-5px); } }

.page {
  min-height: 100vh;
  width: 100%;
  background: #F3DFCB;
  display: flex;
  justify-content: center;
}
.column {
  width: 100%;
  max-width: 440px;
  background: #FBEADB;
  min-height: 100vh;
  position: relative;
  box-shadow: 0 0 60px -20px rgba(80, 52, 20, .25);
}

/* ===== header ===== */
.hd {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 22px 24px 0;
}
.wordmark {
  font-family: 'Newsreader', serif;
  font-size: 30px;
  font-weight: 600;
  letter-spacing: -.3px;
  background: linear-gradient(100deg, #2c1d10 0%, #2c1d10 42%, #E8A24A 50%, #F6D9BF 53%, #E8A24A 56%, #2c1d10 64%, #2c1d10 100%);
  background-size: 250% 100%;
  background-position: -60% 0;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  animation: emberShimmer 10s ease-in-out infinite;
}
.hd-right { display: flex; align-items: center; gap: 8px; }
.badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  height: 30px;
  padding: 0 13px;
  background: #fff;
  border-radius: 999px;
  font-size: 11.5px;
  font-weight: 600;
  color: #C76A2C;
  letter-spacing: .2px;
  box-shadow: 0 2px 8px -3px rgba(120, 80, 30, .3);
}
.badge-dot { width: 6px; height: 6px; border-radius: 50%; background: #E8843C; display: inline-block; }
.lang {
  display: flex;
  align-items: center;
  gap: 2px;
  height: 30px;
  padding: 0 3px;
  background: #fff;
  border-radius: 999px;
  box-shadow: 0 2px 8px -3px rgba(120, 80, 30, .3);
}
.lang-btn {
  height: 24px;
  padding: 0 11px;
  border: none;
  border-radius: 999px;
  font: 600 11.5px 'Hanken Grotesk', sans-serif;
  cursor: pointer;
  transition: all .15s;
  background: transparent;
  color: #9a8b78;
}
.lang-btn.is-active { background: #33271B; color: #FBF4E8; }

/* ===== hero ===== */
.hero { padding: 24px 24px 8px; }
.hero-media {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 260px;
  margin-bottom: 24px;
  border-radius: 26px;
  overflow: hidden;
  background: radial-gradient(120% 90% at 70% 10%, #5a2f10 0%, #2a1709 55%, #1d1006 100%);
}
.hero-media img.hero-real { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.hero-glow {
  position: absolute;
  top: -50px;
  right: -40px;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(224, 121, 31, .55) 0%, rgba(224, 121, 31, 0) 70%);
  filter: blur(6px);
  animation: emberPulse 5s ease-in-out infinite;
}
.hero-flame { position: relative; animation: emberFloat 6s ease-in-out infinite; filter: drop-shadow(0 0 18px rgba(240, 138, 42, .55)); }

.hero h1 {
  font-family: 'Newsreader', serif;
  font-weight: 500;
  font-size: 36px;
  line-height: 1.12;
  letter-spacing: -.4px;
  color: #3a2a1a;
  margin: 0 0 16px;
  text-wrap: balance;
}
.lead {
  font-size: 17px;
  line-height: 1.55;
  color: #7a6552;
  margin: 0 0 24px;
  text-wrap: pretty;
}

/* ===== buttons / forms ===== */
.btn {
  display: block;
  width: 100%;
  padding: 20px;
  border: none;
  border-radius: 999px;
  background: #D9763A;
  color: #fff;
  font: 700 18px/1 'Hanken Grotesk', sans-serif;
  letter-spacing: .2px;
  cursor: pointer;
  box-shadow: 0 12px 28px -10px rgba(217, 118, 58, .7);
  transition: background .15s;
}
.btn:hover { background: #C2652E; }
.btn:disabled { opacity: .7; cursor: default; }
.honest {
  font-size: 13.5px;
  line-height: 1.5;
  color: #a08a74;
  margin: 14px 4px 0;
  text-align: center;
  text-wrap: pretty;
}
.signup { display: flex; flex-direction: column; gap: 11px; }
.signup input {
  width: 100%;
  padding: 18px 22px;
  border: 1.5px solid #ecd6bf;
  border-radius: 999px;
  background: #fff;
  font: 400 16px 'Hanken Grotesk', sans-serif;
  color: #3a2a1a;
  outline: none;
  transition: border-color .15s;
}
.signup input:focus { border-color: #D9763A; }
.signup .btn { padding: 19px; font-size: 17px; }
.form-error {
  margin: 2px 4px 0;
  font-size: 13.5px;
  line-height: 1.45;
  color: #b3261e;
  text-align: center;
}

/* ===== confirmation ===== */
.confirm {
  display: flex;
  gap: 13px;
  align-items: flex-start;
  padding: 20px;
  background: #fff;
  border-radius: 22px;
  box-shadow: 0 6px 18px -10px rgba(120, 80, 30, .35);
}
.confirm-check {
  flex: none;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #1F8A5B;
  display: flex;
  align-items: center;
  justify-content: center;
}
.confirm-title { margin: 0 0 3px; font-weight: 700; font-size: 16.5px; color: #3a2a1a; }
.confirm-body { margin: 0; font-size: 14px; line-height: 1.5; color: #7a6552; }

/* ===== generic blocks ===== */
.block { padding: 0 24px 36px; }
.kicker {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  color: #D9763A;
  margin: 0 0 12px;
}
.kicker-deep { color: #B85A22; }
.center { text-align: center; }
.block h2 {
  font-family: 'Newsreader', serif;
  font-weight: 500;
  font-size: 27px;
  line-height: 1.2;
  color: #3a2a1a;
  margin: 0 0 14px;
}
.body { font-size: 16px; line-height: 1.6; color: #7a6552; margin: 0; text-wrap: pretty; }

/* first block (problem) needs top padding after hero */
.hero + .block { padding-top: 40px; }

/* ===== how / cards ===== */
.how h2 { font-size: 25px; line-height: 1.22; margin: 0 0 22px; }
.cards { display: flex; flex-direction: column; gap: 14px; }
.card {
  padding: 24px;
  background: #fff;
  border-radius: 24px;
  box-shadow: 0 6px 18px -12px rgba(120, 80, 30, .35);
}
.card-icon {
  display: flex;
  width: 50px;
  height: 50px;
  border-radius: 16px;
  background: #FCE7D2;
  align-items: center;
  justify-content: center;
  margin-bottom: 15px;
}
.card-title { margin: 0 0 5px; font-weight: 700; font-size: 18px; color: #3a2a1a; }
.card-body { margin: 0; font-size: 15px; line-height: 1.5; color: #7a6552; }

/* ===== why now ===== */
.whybox { padding: 32px 26px; background: #F6D9BF; border-radius: 26px; }
.whybox h2 {
  font-family: 'Newsreader', serif;
  font-weight: 500;
  font-size: 26px;
  line-height: 1.2;
  color: #3a2a1a;
  margin: 0 0 14px;
  text-wrap: balance;
}
.whybox .body { color: #7a5d44; }

/* ===== price ===== */
.pricebox {
  padding: 32px 26px;
  background: #fff;
  border-radius: 26px;
  text-align: center;
  box-shadow: 0 8px 24px -14px rgba(120, 80, 30, .4);
}
.price-amount { display: flex; align-items: baseline; justify-content: center; gap: 7px; margin-bottom: 10px; }
.price-num { font-family: 'Newsreader', serif; font-size: 56px; font-weight: 500; line-height: 1; color: #3a2a1a; }
.price-per { font-size: 16px; color: #9a8470; }
.price-line { margin: 0 0 4px; font-size: 15px; color: #6a5642; }
.price-line + .price-note { margin-top: 12px; }
.price-note { margin: 0; font-size: 13px; color: #a08a74; background: #FBEADB; border-radius: 12px; padding: 12px 14px; }

/* ===== faq ===== */
.faq-title { font-family: 'Newsreader', serif; font-weight: 500; font-size: 24px; color: #3a2a1a; margin: 0 0 16px; }
.faq { display: flex; flex-direction: column; gap: 12px; }
.faq-item { padding: 20px 22px; background: #fff; border-radius: 18px; }
.faq-q { margin: 0 0 6px; font-weight: 700; font-size: 16px; color: #3a2a1a; }
.faq-a { margin: 0; font-size: 14.5px; line-height: 1.5; color: #7a6552; }

/* ===== final CTA ===== */
.final {
  padding: 42px 24px 36px;
  background: #F6D9BF;
  border-radius: 34px 34px 0 0;
}
.final h2 {
  font-family: 'Newsreader', serif;
  font-weight: 500;
  font-size: 30px;
  line-height: 1.18;
  color: #3a2a1a;
  margin: 0 0 10px;
}
.final .body { color: #7a5d44; font-size: 15.5px; line-height: 1.55; margin: 0 0 24px; }
.final .signup .btn { padding: 20px; font-size: 18px; }
.final .confirm { background: #fff; box-shadow: none; }
.footer { margin: 22px 0 0; font-size: 12px; color: #a08a74; text-align: center; }

[hidden] { display: none !important; }

@media (prefers-reduced-motion: reduce) {
  .wordmark, .hero-glow, .hero-flame { animation: none; }
}
