:root {
  --bg: #fff8ea;
  --paper: #fffdf7;
  --ink: #111111;
  --muted: #4a3d35;
  --red: #b90f0f;
  --red-dark: #8c0707;
  --orange: #ff7a00;
  --gold: #ffcf3d;
  --line: #ead8bd;
  --green: #218b38;
  --blue: #155d94;
  --shadow: 0 12px 30px rgba(81, 38, 7, .12);
  --radius: 18px;
  --sticky-h: 76px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  color: var(--ink);
  background: #111;
  line-height: 1.45;
}
button, input { font: inherit; }
button { cursor: pointer; }

.page-shell {
  width: min(100%, 540px);
  margin: 0 auto;
  background: radial-gradient(circle at top right, rgba(255, 216, 128, .45), transparent 34rem), var(--bg);
  min-height: 100vh;
  padding-bottom: calc(var(--sticky-h) + 24px + env(safe-area-inset-bottom));
  position: relative;
  overflow: hidden;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 14px 18px;
  background: rgba(255, 248, 234, .92);
  border-bottom: 1px solid rgba(234, 216, 189, .85);
  backdrop-filter: blur(12px);
}
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--ink);
}
.brand-shield {
  width: 42px;
  height: 42px;
  border-radius: 10px 10px 14px 14px;
  background: linear-gradient(145deg, var(--red), #e23818);
  color: white;
  display: grid;
  place-items: center;
  font-size: 24px;
  font-weight: 900;
  box-shadow: 0 8px 18px rgba(185, 15, 15, .25);
}
.brand strong {
  display: block;
  font-size: 23px;
  letter-spacing: .4px;
  line-height: 1;
  font-weight: 950;
}
.brand small { display: block; font-size: 11px; color: #33241f; margin-top: 2px; }
.menu-btn {
  background: transparent;
  border: 0;
  font-size: 32px;
  line-height: 1;
  color: #1d1512;
  padding: 3px;
}

.section-pad { padding: 18px 18px 14px; }
.section-card {
  margin: 14px 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 253, 247, .94);
  box-shadow: var(--shadow);
}

.hero { padding-top: 18px; }
.eyebrow {
  margin: 0 0 8px;
  color: var(--red);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .08em;
}
.hero h1 {
  margin: 0;
  font-size: clamp(39px, 10.5vw, 58px);
  line-height: .93;
  letter-spacing: -1.4px;
  text-transform: uppercase;
  font-weight: 1000;
}
.hero h1 span { color: var(--red); }
.hero-sub {
  margin: 12px 0 10px;
  font-size: 20px;
  line-height: 1.18;
  font-weight: 900;
}
.black-badge {
  display: inline-block;
  background: #111;
  color: white;
  padding: 10px 12px;
  border-radius: 9px;
  font-size: 21px;
  line-height: 1.08;
  text-transform: uppercase;
  font-weight: 950;
  box-shadow: inset 0 -4px 0 rgba(255,255,255,.08);
}
.hero-body {
  font-size: 17px;
  margin: 14px 0 16px;
  color: #241b17;
  max-width: 24rem;
}

.hero-visual {
  position: relative;
  min-height: 282px;
  margin: 10px 0 8px;
  border-radius: 22px;
  background: linear-gradient(145deg, rgba(255, 224, 173, .52), rgba(255,255,255,.26));
  overflow: hidden;
}
.couple-img {
  width: 100%;
  height: 290px;
  object-fit: cover;
  display: block;
}
.phone-card {
  position: absolute;
  right: 10px;
  bottom: 12px;
  width: min(50%, 214px);
  background: #181818;
  border: 6px solid #191919;
  border-radius: 25px;
  box-shadow: 0 18px 28px rgba(0,0,0,.35);
  transform: rotate(-5deg);
  overflow: hidden;
  color: #111;
}
.phone-top {
  background: #222;
  color: white;
  padding: 8px 9px 7px;
  font-size: 11px;
  line-height: 1;
  display: grid;
  grid-template-columns: 12px 1fr;
  gap: 3px 6px;
  align-items: center;
}
.phone-top b { font-size: 13px; }
.phone-top em { grid-column: 2; color: #b4f5c6; font-size: 9px; font-style: normal; }
.chat {
  margin: 9px;
  padding: 9px 10px 15px;
  border-radius: 13px;
  font-size: 12.5px;
  line-height: 1.24;
  position: relative;
}
.chat.white { background: #fff; }
.chat.green { background: #d8f5c8; }
.chat small { position: absolute; right: 8px; bottom: 3px; font-size: 8px; color: #6b6b6b; }
.phone-input {
  background: white;
  margin: 8px;
  border-radius: 18px;
  color: #999;
  font-size: 10px;
  padding: 7px 7px 7px 10px;
}
.phone-input span { float: right; background: var(--green); color: white; border-radius: 50%; width: 21px; height: 21px; display: inline-grid; place-items: center; }

.trust-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin-top: 16px;
  margin-bottom: 14px;
}
.trust-row div {
  background: rgba(255,255,255,.7);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 10px 6px;
  text-align: center;
  min-width: 0;
}
.trust-icon { display: block; font-size: 25px; line-height: 1; margin-bottom: 5px; }
.trust-row b { display: block; font-size: 13px; line-height: 1.05; }
.trust-row small { display: block; font-size: 12px; color: var(--muted); }

.cta-primary, .cta-secondary {
  width: 100%;
  border: 0;
  border-radius: 12px;
  background: linear-gradient(180deg, #ff8524, #d31310 76%, #aa0909);
  color: white;
  padding: 16px 16px;
  font-size: 20px;
  line-height: 1.1;
  text-transform: uppercase;
  font-weight: 1000;
  letter-spacing: .2px;
  box-shadow: 0 9px 0 #7d0404, 0 16px 22px rgba(185,15,15,.27);
}
.cta-primary span { margin-right: 6px; }
.cta-secondary { font-size: 17px; box-shadow: 0 7px 0 #7d0404, 0 12px 18px rgba(185,15,15,.22); }
.microcopy { margin: 12px 0 0; text-align: center; color: #3d312b; font-size: 13px; }

.pain {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 10px;
  padding: 18px 14px 16px;
  position: relative;
  overflow: hidden;
}
.pain-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--red);
  color: white;
  display: grid;
  place-items: center;
  font-size: 24px;
}
h2 {
  margin: 0 0 8px;
  font-size: 26px;
  line-height: 1.04;
  text-transform: uppercase;
  letter-spacing: -.5px;
  font-weight: 1000;
}
.pain h2, .reframe h2 { color: var(--red); }
.pain p, .safe p, .steps p, .mini-card p, .faq p, .final-close p { margin: 0 0 10px; color: #2b211d; }
.check-list, .icon-list {
  list-style: none;
  padding: 0;
  margin: 12px 0 0;
  display: grid;
  gap: 8px;
}
.check-list li, .icon-list li {
  position: relative;
  padding-left: 29px;
  font-weight: 720;
  font-size: 15px;
}
.check-list li::before, .icon-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--red);
  color: white;
  display: grid;
  place-items: center;
  font-size: 13px;
  font-weight: 1000;
}
.sad-img {
  grid-column: 1 / -1;
  justify-self: end;
  width: 155px;
  margin-top: -96px;
  margin-right: -4px;
  opacity: .9;
}

.dark-card {
  background: linear-gradient(180deg, #11191d, #050607);
  color: white;
  padding: 19px 14px 16px;
}
.dark-card h2 { color: var(--gold); text-align: center; font-size: 25px; }
.dark-card > p { color: #fff8e5; text-align: center; max-width: 30rem; margin-inline: auto; }
.feature-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
  margin-top: 16px;
}
.feature-grid article {
  display: grid;
  grid-template-columns: 54px 1fr;
  gap: 11px;
  background: white;
  color: #17110e;
  border-radius: 14px;
  padding: 12px;
  align-items: center;
}
.feature-icon {
  grid-row: span 2;
  width: 48px;
  height: 48px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  font-size: 26px;
  background: #e8f6e8;
}
.feature-icon.orange { background: #fff0de; }
.feature-icon.blue { background: #eaf3ff; }
.feature-grid h3 { margin: 0; font-size: 17px; }
.feature-grid p { margin: 2px 0 0; font-size: 13px; color: #352a25; }

.steps { padding: 18px 12px 16px; }
.steps h2 { text-align: center; font-size: 25px; }
.steps-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
}
.steps-grid article {
  border: 1px solid var(--line);
  border-radius: 15px;
  padding: 12px 12px 12px 74px;
  background: white;
  position: relative;
  min-height: 88px;
}
.steps-grid b {
  position: absolute;
  left: 13px;
  top: 13px;
  width: 27px;
  height: 27px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: white;
  background: var(--green);
}
.steps-grid article:nth-child(2) b { background: var(--orange); }
.steps-grid article:nth-child(3) b { background: var(--blue); }
.steps-grid span {
  position: absolute;
  left: 37px;
  top: 34px;
  font-size: 29px;
}
.steps-grid h3 { margin: 0 0 4px; font-size: 16px; }
.steps-grid p { margin: 0; font-size: 13.5px; }

.split-section {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  background: transparent;
  border: 0;
  box-shadow: none;
  margin-top: 0;
}
.mini-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 253, 247, .97);
  box-shadow: var(--shadow);
  padding: 18px 14px;
}
.reframe h2, .offer h2 { font-size: 24px; }
.offer {
  background: linear-gradient(135deg, #fff2cc, #fffdf7);
  text-align: center;
}
.gift { font-size: 42px; line-height: 1; }
.offer h2 { color: #111; }
.offer p { text-align: left; }
.offer .microcopy { text-align: center; }

.faq { padding: 16px 12px; }
.faq h2 { text-align: center; font-size: 23px; }
details {
  background: white;
  border: 1px solid var(--line);
  border-radius: 13px;
  padding: 0;
  margin: 8px 0;
  overflow: hidden;
}
summary {
  list-style: none;
  cursor: pointer;
  padding: 13px 40px 13px 14px;
  font-weight: 850;
  position: relative;
}
summary::-webkit-details-marker { display: none; }
summary::after {
  content: "⌄";
  position: absolute;
  right: 14px;
  top: 11px;
  font-size: 20px;
}
details[open] summary::after { transform: rotate(180deg); }
details p { padding: 0 14px 14px; font-size: 14px; }

.final-close {
  padding: 18px 14px calc(18px + 8px);
  background: linear-gradient(135deg, #fff0cd, #fffdf7);
}
.heart { font-size: 48px; color: var(--red); line-height: 1; }
.final-close h2 { font-size: 27px; }

.sticky-cta {
  position: fixed;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: min(100%, 540px);
  z-index: 80;
  border: 0;
  padding: 13px 16px calc(13px + env(safe-area-inset-bottom));
  color: white;
  background: linear-gradient(180deg, #ef270e, #ae0808);
  display: grid;
  grid-template-columns: 56px 1fr 44px;
  gap: 10px;
  align-items: center;
  text-align: left;
  box-shadow: 0 -10px 24px rgba(0,0,0,.25);
}
.sticky-icon, .sticky-arrow {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: white;
  color: var(--red);
  display: grid;
  place-items: center;
  font-size: 28px;
}
.sticky-cta b {
  display: block;
  font-size: 24px;
  line-height: 1;
  text-transform: uppercase;
  font-weight: 1000;
}
.sticky-cta small { display: block; font-size: 13px; opacity: .95; margin-top: 2px; }
.sticky-arrow { font-size: 42px; font-weight: 900; }

.modal {
  position: fixed;
  inset: 0;
  z-index: 100;
  pointer-events: none;
  opacity: 0;
  transition: opacity .2s ease;
}
.modal.is-open { pointer-events: auto; opacity: 1; }
.modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,.58);
}
.bottom-sheet {
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translate(-50%, 110%);
  width: min(100%, 540px);
  background: var(--paper);
  border-radius: 24px 24px 0 0;
  padding: 22px 18px calc(20px + env(safe-area-inset-bottom));
  box-shadow: 0 -24px 40px rgba(0,0,0,.3);
  transition: transform .25s ease;
}
.modal.is-open .bottom-sheet { transform: translate(-50%, 0); }
.close-btn {
  position: absolute;
  top: 12px;
  right: 14px;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid var(--line);
  background: white;
  color: #111;
  font-size: 25px;
}
.bottom-sheet h2 { padding-right: 45px; color: var(--red); }
.bottom-sheet p { color: #2e241f; margin-top: 0; }
form { display: grid; gap: 10px; }
label { font-weight: 850; font-size: 14px; }
input[type="text"], input[type="tel"] {
  width: 100%;
  border: 1px solid #d1b99b;
  border-radius: 13px;
  padding: 14px 13px;
  font-size: 17px;
  background: white;
  outline: none;
}
input:focus { border-color: var(--orange); box-shadow: 0 0 0 4px rgba(255, 122, 0, .14); }
.consent { display: grid; grid-template-columns: 22px 1fr; gap: 8px; align-items: start; font-weight: 600; font-size: 13px; color: #3d312b; margin: 2px 0 4px; }
.consent input { width: 19px; height: 19px; margin: 0; }
.honeypot { display: none !important; }
.form-status { min-height: 20px; font-size: 13px; color: var(--red); font-weight: 700; }
.form-submit { margin-top: 2px; }
body.modal-open { overflow: hidden; }

@media (min-width: 500px) {
  .feature-grid { grid-template-columns: repeat(3, 1fr); }
  .feature-grid article { grid-template-columns: 1fr; text-align: center; }
  .feature-icon { margin: auto; }
  .steps-grid { grid-template-columns: repeat(3, 1fr); }
  .steps-grid article { padding: 54px 10px 11px; text-align: center; }
  .steps-grid b { left: 10px; top: 10px; }
  .steps-grid span { left: 50%; transform: translateX(-50%); top: 20px; }
  .split-section { grid-template-columns: 1fr 1.25fr; }
  .sad-img { grid-column: 2; width: 160px; margin-top: -102px; }
}
