/* =========================================================================
   Public marketing pages
   ========================================================================= */

.hero {
  position: relative; overflow: hidden;
  padding-block: clamp(56px, 9vw, 120px) clamp(56px, 8vw, 104px);
  background:
    radial-gradient(1100px 460px at 88% -8%, var(--red-050), transparent 62%),
    radial-gradient(700px 420px at 4% 108%, #FFF8F8, transparent 60%),
    var(--surface);
}
.hero__grid { display: grid; gap: clamp(32px, 5vw, 72px); grid-template-columns: 1.08fr .92fr; align-items: center; }
@media (max-width: 940px) { .hero__grid { grid-template-columns: 1fr; } }

.hero h1 { font-size: var(--step-5); letter-spacing: -0.04em; line-height: 1.03; margin-bottom: var(--sp-5); max-width: 15ch; }
.hero h1 em { font-style: normal; color: var(--red-600); }
.hero__sub { font-size: var(--step-1); color: var(--ink-3); max-width: 46ch; line-height: 1.5; margin-bottom: var(--sp-7); }
.hero__cta { display: flex; gap: var(--sp-3); flex-wrap: wrap; }
.hero__trust { margin-top: var(--sp-7); display: flex; gap: var(--sp-6); flex-wrap: wrap; font-size: var(--step--1); color: var(--ink-3); }
.hero__trust span { display: inline-flex; align-items: center; gap: 7px; }
.hero__trust .luv-icon { color: var(--red-500); }

/* Phone mock — pure CSS, no external asset to break */
.phone {
  position: relative; margin-inline: auto; width: min(320px, 82vw);
  border-radius: 42px; background: #111; padding: 11px;
  box-shadow: 0 40px 90px -30px rgba(23,23,23,.5), 0 0 0 1px rgba(23,23,23,.08);
}
.phone__screen { background: var(--canvas); border-radius: 32px; overflow: hidden; padding: 22px 16px 16px; min-height: 500px; }
.phone__notch { position: absolute; top: 11px; left: 50%; transform: translateX(-50%); width: 108px; height: 24px; background: #111; border-radius: 0 0 16px 16px; z-index: 2; }
.phone .bubble { max-width: 88%; font-size: .84rem; padding: 11px 14px; }
.phone .bubble__meta { font-size: .62rem; }

.chip-row { display: flex; gap: 8px; flex-wrap: wrap; }
.chip {
  font-size: .74rem; font-weight: 640; padding: 6px 12px; border-radius: var(--r-pill);
  background: var(--red-050); color: var(--red-700); font-family: var(--font-display);
}

/* Numbered workflow */
.flow { display: grid; gap: var(--sp-5); grid-template-columns: repeat(auto-fit, minmax(190px, 1fr)); counter-reset: flow; }
.flow__step { position: relative; background: #fff; border: 1px solid var(--line); border-radius: var(--r-xl); padding: var(--sp-6); box-shadow: var(--sh-1); }
.flow__step::before {
  counter-increment: flow; content: counter(flow);
  position: absolute; top: -14px; left: var(--sp-6);
  width: 30px; height: 30px; border-radius: 50%; display: grid; place-items: center;
  background: var(--red-500); color: #fff; font-family: var(--font-display); font-weight: 730; font-size: .82rem;
  box-shadow: var(--sh-red);
}
.flow__step h3 { font-size: var(--step-1); margin-top: var(--sp-2); margin-bottom: 6px; }
.flow__step p { font-size: var(--step--1); margin: 0; }

.feature { display: flex; gap: var(--sp-4); }
.feature__icon {
  width: 46px; height: 46px; flex: none; border-radius: 14px; display: grid; place-items: center;
  background: var(--red-050); color: var(--red-600);
}
.feature h3 { font-size: var(--step-1); margin-bottom: 6px; }
.feature p { font-size: var(--step-0); margin: 0; }

/* Pricing */
.price-card { position: relative; background: #fff; border: 1.5px solid var(--line); border-radius: var(--r-2xl); padding: var(--sp-8); box-shadow: var(--sh-2); }
.price-card--featured { border-color: var(--red-500); box-shadow: 0 24px 60px -24px rgba(225,38,47,.4); }
.price-card__flag { position: absolute; top: -13px; left: var(--sp-8); background: var(--red-500); color: #fff; font-size: .7rem; font-weight: 700; letter-spacing: .07em; text-transform: uppercase; padding: 5px 13px; border-radius: var(--r-pill); box-shadow: var(--sh-red); }
.price-card__amount { font-family: var(--font-display); font-size: var(--step-4); font-weight: 760; letter-spacing: -0.04em; line-height: 1; }
.price-card__period { color: var(--ink-3); font-size: var(--step-0); font-weight: 500; }
.benefit-list { list-style: none; padding: 0; margin: var(--sp-6) 0; display: grid; gap: var(--sp-3); }
.benefit-list li { display: flex; gap: var(--sp-3); align-items: flex-start; font-size: var(--step-0); }
.benefit-list .luv-icon { color: var(--green-500); margin-top: 3px; flex: none; }

/* FAQ */
.faq details { background: #fff; border: 1px solid var(--line); border-radius: var(--r-lg); padding: var(--sp-5); margin-bottom: var(--sp-3); }
.faq summary { font-family: var(--font-display); font-weight: 650; font-size: var(--step-1); cursor: pointer; list-style: none; display: flex; justify-content: space-between; gap: var(--sp-4); align-items: center; letter-spacing: -0.02em; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; font-size: 1.5rem; color: var(--red-500); font-weight: 400; line-height: 1; }
.faq details[open] summary::after { content: "–"; }
.faq details[open] summary { margin-bottom: var(--sp-4); }
.faq p:last-child { margin-bottom: 0; }

/* CTA band */
.cta-band {
  background: linear-gradient(140deg, var(--red-600), var(--red-900));
  color: #fff; border-radius: var(--r-2xl); padding: clamp(36px, 6vw, 72px);
  text-align: center; box-shadow: 0 30px 70px -28px rgba(111,7,16,.55);
}
.cta-band h2 {
  color: #fff; font-size: var(--step-3); max-width: 16em; margin-inline: auto;
}
.cta-band p { color: rgba(255,255,255,.86); max-width: 42rem; margin-inline: auto; }
.cta-band .btn { --btn-bg: #fff; --btn-fg: var(--red-700); box-shadow: 0 10px 30px -10px rgba(0,0,0,.4); }
.cta-band .btn--outline { --btn-bg: transparent; --btn-fg: #fff; --btn-bd: rgba(255,255,255,.55); box-shadow: none; }

.prose { max-width: 40rem; }
.prose h2 { margin-top: var(--sp-8); font-size: var(--step-2); }
.prose h3 { margin-top: var(--sp-6); font-size: var(--step-1); }
.prose ul, .prose ol { padding-left: 1.3em; color: var(--ink-2); }
.prose li { margin-bottom: var(--sp-2); }
.prose table { width: 100%; border-collapse: collapse; margin-block: var(--sp-5); }
.prose th, .prose td { text-align: left; padding: 10px 12px; border-bottom: 1px solid var(--line); font-size: var(--step--1); }
