/* ============================================================
   100 WAYS TO SAY ＿ · /sorry stylesheet
   ============================================================
   Inspiration cue: TestimonialCollect.com — bright color blocks,
   real photography, big italic display headlines, marker
   highlights, photo cards with floating stickers, comparison
   columns, testimonials with avatars.
   ============================================================ */

:root {
  /* ink */
  --ink:        #18181b;
  --ink-soft:   #3f3f46;
  --ink-mute:   #71717a;
  --hair:       #e5e7eb;

  /* neutrals */
  --bg:         #ffffff;
  --bg-alt:     #fafaf7;
  --bg-cream:   #fff8ec;

  /* brand accents (bright) */
  --red:        #d92842;
  --red-deep:   #b51e34;
  --red-soft:   #ffe5e9;

  --yellow:     #ffc857;
  --yellow-deep:#ffb020;
  --yellow-soft:#fff1c9;
  --yellow-hl:  #fde68a;

  --peach:      #ffb191;
  --peach-soft: #ffe6d6;

  --mint:       #9ae0c1;
  --mint-soft:  #d6f5e8;

  --pink:       #f9a8d4;
  --pink-soft:  #fde7f3;

  --indigo:     #5e60ce;
  --indigo-soft:#e8e8ff;

  /* type */
  --serif: "Fraunces", Georgia, "Times New Roman", serif;
  --sans:  "Inter Tight", -apple-system, BlinkMacSystemFont, "Segoe UI", system-ui, sans-serif;

  --radius:    16px;
  --radius-sm: 10px;
  --radius-lg: 24px;

  --easing: cubic-bezier(.2,.7,.2,1);

  --shadow-sm: 0 1px 0 var(--hair), 0 6px 14px -10px rgba(0,0,0,.12);
  --shadow:    0 1px 0 var(--hair), 0 20px 40px -20px rgba(0,0,0,.18);
  --shadow-lg: 0 2px 0 rgba(0,0,0,.04), 0 30px 60px -20px rgba(0,0,0,.25);
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  font-family: var(--sans);
  color: var(--ink);
  background: var(--bg);
  font-size: 17px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}
img, svg { max-width: 100%; display: block; }
button { font: inherit; cursor: pointer; border: none; }
a { color: inherit; }
.hidden { display: none !important; }

/* ============== TYPOGRAPHY UTILITIES ============== */
.h2 {
  font-family: var(--serif);
  font-weight: 600;
  font-size: clamp(34px, 5vw, 60px);
  line-height: 1.02;
  letter-spacing: -.025em;
  margin: 6px 0 18px;
  max-width: 22ch;
}
.h2-white { color: #fff; }
.lede {
  font-size: clamp(17px, 1.5vw, 20px);
  line-height: 1.55;
  color: var(--ink-soft);
  max-width: 56ch;
  margin: 0 0 26px;
}
.lede-white { color: rgba(255,255,255,.85); }
.ital-red    { font-style: italic; color: var(--red);     font-weight: 600; }
.ital-yellow { font-style: italic; color: var(--yellow);  font-weight: 600; }
.hl-yellow {
  background: linear-gradient(180deg, transparent 60%, var(--yellow-hl) 60%);
  padding: 0 .06em;
  border-radius: 2px;
}

.section-eyebrow {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .16em;
  color: var(--red);
  background: var(--red-soft);
  padding: 6px 12px;
  border-radius: 999px;
  margin-bottom: 14px;
}

/* ============== NAV ============== */
.nav {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255,255,255,.92);
  backdrop-filter: saturate(160%) blur(10px);
  -webkit-backdrop-filter: saturate(160%) blur(10px);
  border-bottom: 1px solid var(--hair);
}
.nav-row {
  max-width: 1280px;
  margin: 0 auto;
  display: flex; align-items: center; gap: 28px;
  padding: 14px 28px;
}
.brand {
  display: inline-flex; align-items: center; gap: 10px;
  text-decoration: none;
  color: var(--ink);
}
.brand-mark {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 800;
  font-size: 26px;
  color: #fff;
  background: var(--red);
  width: 44px; height: 44px;
  border-radius: 12px;
  display: inline-flex; align-items: center; justify-content: center;
  line-height: 1;
  letter-spacing: -.02em;
  box-shadow: 0 6px 16px -6px rgba(217,40,66,.5);
}
.brand-text {
  font-family: var(--serif);
  font-weight: 600;
  font-size: 18px;
  letter-spacing: -.01em;
}
.brand-text em {
  font-style: normal;
  color: var(--ink-mute);
  margin-left: 2px;
}
.nav-links {
  display: flex; align-items: center; gap: 24px;
  margin-left: auto;
  font-size: 14.5px;
  font-weight: 500;
}
.nav-links a {
  text-decoration: none;
  color: var(--ink-soft);
  transition: color .2s var(--easing);
}
.nav-links a:hover { color: var(--red); }
.nav-cta { display: flex; gap: 10px; }
.btn-pill {
  display: inline-flex; align-items: center;
  padding: 11px 18px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 14.5px;
  text-decoration: none;
  transition: all .2s var(--easing);
}
.btn-pill-dark { background: var(--ink); color: #fff; }
.btn-pill-dark:hover { background: var(--red); transform: translateY(-1px); }
.btn-pill-red { background: var(--red); color: #fff; }
.btn-pill-red:hover { background: var(--red-deep); }
.btn-pill-light { background: #fff; color: var(--ink); border: 1px solid var(--ink); }
.btn-pill-light:hover { background: var(--ink); color: #fff; }

@media (max-width: 880px) {
  .nav-links { display: none; }
  .nav-row { gap: 12px; padding: 12px 18px; }
}

/* ============== HERO ============== */
.hero {
  padding: 60px 28px 70px;
  background: linear-gradient(180deg, #fff 0%, var(--bg-cream) 100%);
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  top: -120px; right: -120px;
  width: 460px; height: 460px;
  background: radial-gradient(closest-side, var(--yellow-soft), transparent 70%);
  pointer-events: none;
}
.hero::after {
  content: "";
  position: absolute;
  bottom: -100px; left: -120px;
  width: 360px; height: 360px;
  background: radial-gradient(closest-side, var(--peach-soft), transparent 70%);
  pointer-events: none;
}
.hero-grid {
  position: relative;
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: 56px;
  align-items: center;
}
.eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 13.5px; font-weight: 500;
  color: var(--ink-soft);
  background: #fff;
  padding: 8px 14px 8px 12px;
  border-radius: 999px;
  border: 1px solid var(--hair);
  margin-bottom: 24px;
  box-shadow: var(--shadow-sm);
}
.eyebrow-dot {
  width: 8px; height: 8px;
  background: var(--red);
  border-radius: 50%;
  display: inline-block;
  animation: pulse 1.8s infinite;
}
@keyframes pulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.4); opacity: .5; }
}

.hero-h1 {
  font-family: var(--serif);
  font-weight: 700;
  font-size: clamp(44px, 7vw, 88px);
  line-height: .98;
  letter-spacing: -.03em;
  margin: 0 0 24px;
  color: var(--ink);
}
.hero-sub {
  font-size: clamp(17px, 1.6vw, 21px);
  color: var(--ink-soft);
  line-height: 1.55;
  margin: 0 0 32px;
  max-width: 56ch;
}

.hero-cta-row {
  display: flex; align-items: center; gap: 22px;
  margin-bottom: 32px;
  flex-wrap: wrap;
}
.btn-big {
  display: inline-flex; align-items: center;
  padding: 18px 28px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 17px;
  text-decoration: none;
  transition: all .2s var(--easing);
}
.btn-big-dark {
  background: var(--ink); color: #fff;
  box-shadow: 0 14px 28px -10px rgba(0,0,0,.4);
}
.btn-big-dark:hover { background: var(--red); transform: translateY(-2px); }
.btn-big-light {
  background: #fff; color: var(--ink);
  box-shadow: 0 14px 28px -10px rgba(0,0,0,.3);
}
.btn-big-light:hover { background: var(--yellow); transform: translateY(-2px); }
.btn-text {
  text-decoration: none;
  color: var(--ink-soft);
  font-weight: 500;
  font-size: 15px;
  border-bottom: 2px solid var(--ink-soft);
  padding-bottom: 2px;
}
.btn-text:hover { color: var(--red); border-color: var(--red); }

.hero-trust {
  display: flex; align-items: flex-start; gap: 14px;
  padding-top: 22px;
  border-top: 1px dashed var(--hair);
}
.trust-stars {
  font-size: 18px;
  color: var(--yellow-deep);
  letter-spacing: 2px;
  line-height: 1;
}
.trust-text {
  font-size: 14px;
  color: var(--ink-soft);
  line-height: 1.45;
}
.trust-text strong { color: var(--ink); }

/* HERO VISUAL */
.hero-visual { position: relative; }
.hero-img-wrap {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: visible;
}
.hero-img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  transform: rotate(-1.5deg);
}
.hero-sticker {
  position: absolute;
  background: #fff;
  border-radius: var(--radius);
  padding: 14px 16px;
  box-shadow: var(--shadow);
  max-width: 240px;
  font-size: 14px;
  line-height: 1.4;
}
.hero-sticker-1 {
  top: 22px; left: -28px;
  transform: rotate(-4deg);
  border-top: 4px solid var(--yellow);
}
.hero-sticker-2 {
  bottom: 30px; right: -30px;
  transform: rotate(3deg);
  border-top: 4px solid var(--red);
  background: var(--red-soft);
}
.sticker-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .16em;
  color: var(--red);
  margin-bottom: 4px;
}
.sticker-body {
  font-family: var(--serif);
  font-size: 15.5px;
  color: var(--ink);
}
.hero-badge {
  position: absolute;
  top: -12px; right: 24px;
  background: var(--yellow);
  color: var(--ink);
  padding: 10px 16px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .1em;
  transform: rotate(8deg);
  box-shadow: var(--shadow);
  display: inline-flex; align-items: baseline; gap: 6px;
}
.hero-badge-num {
  font-family: var(--serif);
  font-style: italic;
  font-size: 20px;
  font-weight: 800;
}

@media (max-width: 980px) {
  .hero-grid { grid-template-columns: 1fr; gap: 50px; }
  .hero-img { aspect-ratio: 16 / 11; transform: rotate(-1deg); }
  .hero-sticker-1 { top: 12px; left: 12px; }
  .hero-sticker-2 { bottom: 12px; right: 12px; }
}
@media (max-width: 600px) {
  .hero { padding: 40px 18px 50px; }
  .hero-sticker { max-width: 200px; padding: 10px 12px; font-size: 13px; }
}

/* ============== STAT STRIP ============== */
.stats {
  background: var(--ink);
  color: #fff;
  padding: 36px 28px;
}
.stats-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.stat {
  background: #2a2a2e;
  border-radius: var(--radius);
  padding: 22px 22px 20px;
  position: relative;
  overflow: hidden;
}
.stat-y { background: var(--yellow); color: var(--ink); }
.stat-p { background: var(--peach); color: var(--ink); }
.stat-m { background: var(--mint); color: var(--ink); }
.stat-num {
  font-family: var(--serif);
  font-weight: 700;
  font-size: 48px;
  line-height: 1;
  letter-spacing: -.03em;
  margin-bottom: 8px;
}
.stat-num span {
  font-size: 26px;
  font-weight: 600;
  opacity: .7;
  margin-left: 2px;
}
.stat-label {
  font-size: 13.5px;
  font-weight: 500;
  opacity: .85;
}
@media (max-width: 800px) {
  .stats-inner { grid-template-columns: repeat(2, 1fr); }
}

/* ============== MOMENT PILLS (marquee) ============== */
.pills {
  background: var(--bg-cream);
  padding: 22px 0;
  overflow: hidden;
  border-bottom: 1px solid var(--hair);
}
.pills-track {
  display: flex; gap: 14px;
  white-space: nowrap;
  animation: marquee 40s linear infinite;
  width: max-content;
}
.pills-track span {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 500;
  font-size: 22px;
  color: var(--ink);
  padding: 8px 22px;
  background: #fff;
  border-radius: 999px;
  border: 1px solid var(--hair);
  letter-spacing: -.005em;
}
.pills-track span:nth-child(3n)   { background: var(--yellow-soft); }
.pills-track span:nth-child(3n+1) { background: var(--mint-soft); }
.pills-track span:nth-child(3n+2) { background: var(--peach-soft); }
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
@media (prefers-reduced-motion: reduce) {
  .pills-track { animation: none; }
}

/* ============== PROBLEM SECTION ============== */
.problem {
  padding: 90px 28px;
  background: #fff;
}
.problem-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 60px;
  align-items: center;
}
.prob-img {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.prob-img img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: var(--radius-lg);
}
.prob-img-tag {
  position: absolute;
  bottom: 18px; left: 18px; right: 18px;
  background: #fff;
  padding: 14px 18px;
  border-radius: var(--radius);
  font-size: 14px;
  color: var(--ink-soft);
  box-shadow: var(--shadow);
}
.prob-img-tag strong { color: var(--red); }

.prob-list {
  list-style: none; padding: 0;
  margin: 0;
  display: flex; flex-direction: column; gap: 14px;
}
.prob-list li {
  display: flex; gap: 14px;
  font-size: 16px;
  color: var(--ink-soft);
  line-height: 1.5;
  padding: 12px 0;
  border-bottom: 1px solid var(--hair);
}
.prob-list li:last-child { border-bottom: none; }
.prob-list .check {
  flex: 0 0 28px;
  width: 28px; height: 28px;
  background: var(--red-soft);
  color: var(--red);
  border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  font-weight: 700;
  font-size: 13px;
}
.prob-list strong { color: var(--ink); font-weight: 600; }

@media (max-width: 900px) {
  .problem-inner { grid-template-columns: 1fr; gap: 40px; }
  .problem { padding: 60px 18px; }
}

/* ============== HOW IT WORKS ============== */
.how {
  padding: 90px 28px;
  background: var(--bg-alt);
}
.how-inner { max-width: 1280px; margin: 0 auto; }
.how-head { text-align: center; margin: 0 auto 50px; max-width: 720px; }
.how-head .h2 { margin-inline: auto; }
.how-head .lede { margin-inline: auto; }

.how-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.step-card {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 0 0 22px;
  overflow: hidden;
  display: flex; flex-direction: column;
  position: relative;
  box-shadow: var(--shadow-sm);
  transition: transform .25s var(--easing), box-shadow .25s var(--easing);
}
.step-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}
.step-img {
  aspect-ratio: 4 / 3;
  overflow: hidden;
}
.step-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .5s var(--easing);
}
.step-card:hover .step-img img { transform: scale(1.06); }
.step-no {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 600;
  font-size: 14px;
  color: var(--red);
  letter-spacing: .04em;
  margin: 18px 22px 6px;
}
.step-card h3 {
  font-family: var(--serif);
  font-weight: 600;
  font-size: 22px;
  letter-spacing: -.01em;
  margin: 0 22px 8px;
  line-height: 1.15;
}
.step-card h3 em { color: var(--red); font-style: italic; }
.step-card p {
  margin: 0 22px;
  font-size: 15px;
  color: var(--ink-soft);
  line-height: 1.5;
}
.step-card p em { color: var(--red); font-style: italic; font-weight: 500; }

.step-yellow { background: var(--yellow-soft); }
.step-peach  { background: var(--peach-soft); }
.step-mint   { background: var(--mint-soft); }
.step-red    { background: var(--red-soft); }
.step-tag {
  position: absolute;
  top: 14px; right: 14px;
  background: var(--red);
  color: #fff;
  padding: 5px 11px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  z-index: 2;
}

@media (max-width: 1000px) {
  .how-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 540px) {
  .how-grid { grid-template-columns: 1fr; }
  .how { padding: 60px 18px; }
}

/* ============== PRODUCT FLOW (the app) ============== */
.flow-sec { background: var(--bg); padding: 0; }

.flow-band {
  background: var(--ink);
  color: #fff;
  text-align: center;
  padding: 70px 28px 80px;
  border-bottom: 6px solid var(--red);
  background-image:
    radial-gradient(700px 240px at 80% 20%, rgba(255,200,87,.15), transparent 60%),
    radial-gradient(700px 240px at 20% 80%, rgba(217,40,66,.20), transparent 60%);
}
.flow-band-eyebrow {
  display: inline-block;
  color: var(--yellow);
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.flow-band .h2 { margin-inline: auto; max-width: 18ch; }
.flow-band .lede { margin-inline: auto; }

.flow-wrap {
  max-width: 820px;
  margin: -50px auto 0;
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 40px 36px;
  box-shadow: var(--shadow-lg);
  position: relative;
  z-index: 2;
}

.flow-progress {
  display: flex; gap: 6px; flex-wrap: wrap;
  margin-bottom: 32px;
}
.prog-step {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 6px 12px 6px 6px;
  border-radius: 999px;
  background: var(--bg-alt);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: var(--ink-mute);
  transition: all .25s var(--easing);
}
.prog-step span {
  width: 22px; height: 22px;
  background: #fff; color: var(--ink-mute);
  border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 11px;
  font-weight: 700;
}
.prog-step.active { background: var(--ink); color: #fff; }
.prog-step.active span { background: var(--yellow); color: var(--ink); }
.prog-step.done   { background: var(--mint-soft); color: var(--ink); }
.prog-step.done span { background: var(--mint); color: var(--ink); }

.step {
  border: none; padding: 0; margin: 0;
  display: none;
  animation: stepIn .35s var(--easing);
}
.step.active { display: block; }
@keyframes stepIn {
  from { opacity: 0; transform: translateY(8px); }
  to   { opacity: 1; transform: translateY(0); }
}
.step legend { display: block; margin-bottom: 8px; }
.step-num {
  display: inline-block;
  font-family: var(--serif);
  font-style: italic;
  font-size: 13px;
  color: var(--red);
  letter-spacing: .04em;
  margin-bottom: 4px;
}
.step-q {
  display: block;
  font-family: var(--serif);
  font-weight: 600;
  font-size: clamp(26px, 3.4vw, 36px);
  letter-spacing: -.015em;
  color: var(--ink);
  line-height: 1.15;
}
.step-q em { font-style: italic; color: var(--red); }
.step-help {
  color: var(--ink-mute);
  font-size: 15px;
  margin: 6px 0 22px;
  max-width: 56ch;
}

.chip-grid {
  display: grid;
  gap: 10px;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  margin-bottom: 26px;
}
.chip-grid.grid-3 { grid-template-columns: repeat(3, 1fr); }
.chip-grid.grid-big { gap: 12px; }
@media (max-width: 720px) {
  .chip-grid.grid-3 { grid-template-columns: 1fr; }
}

.chip { position: relative; display: block; cursor: pointer; user-select: none; }
.chip input { position: absolute; opacity: 0; pointer-events: none; }
.chip span {
  display: block;
  text-align: center;
  padding: 14px 14px;
  border: 1.5px solid var(--hair);
  border-radius: var(--radius-sm);
  background: #fff;
  font-size: 15px;
  color: var(--ink);
  transition: all .2s var(--easing);
  font-weight: 500;
}
.chip-big span {
  text-align: left;
  padding: 18px 18px 16px;
  border-radius: var(--radius);
  line-height: 1.4;
  min-height: 108px;
}
.chip-big strong {
  display: block;
  font-family: var(--serif);
  font-weight: 700;
  font-size: 22px;
  color: var(--ink);
  margin-bottom: 4px;
  letter-spacing: -.01em;
}
.chip:hover span {
  border-color: var(--ink);
  transform: translateY(-1px);
  box-shadow: var(--shadow-sm);
}
.chip input:checked + span {
  border-color: var(--red);
  background: var(--red-soft);
  box-shadow: inset 0 0 0 2px var(--red);
}
.chip-warn input:checked + span {
  background: #fff4e6;
  border-color: var(--red);
}
.chip-mint input:checked + span { background: var(--mint-soft); border-color: var(--ink); box-shadow: inset 0 0 0 2px var(--mint); }
.chip-peach input:checked + span { background: var(--peach-soft); border-color: var(--ink); box-shadow: inset 0 0 0 2px var(--peach); }
.chip-red input:checked + span { background: var(--red-soft); border-color: var(--red); box-shadow: inset 0 0 0 2px var(--red); }
.chip:focus-within span {
  outline: 3px solid rgba(217,40,66,.25);
  outline-offset: 2px;
}

.step-hard {
  background: linear-gradient(180deg, var(--yellow-soft), #fff 80%);
  margin: 0 -20px;
  padding: 24px 20px 12px;
  border-radius: var(--radius);
  border: 1px dashed var(--yellow-deep);
}
.hard-foot {
  font-family: var(--serif);
  font-style: italic;
  font-size: 16px;
  color: var(--ink-soft);
  margin: 0 0 18px;
  min-height: 24px;
  padding: 8px 14px;
  background: #fff;
  border-radius: var(--radius-sm);
  border-left: 4px solid var(--yellow);
}

textarea {
  width: 100%;
  font-family: var(--sans);
  font-size: 17px;
  padding: 16px 18px;
  border: 1.5px solid var(--hair);
  border-radius: var(--radius);
  background: #fff;
  color: var(--ink);
  resize: vertical;
  line-height: 1.45;
  transition: border-color .2s var(--easing), box-shadow .2s var(--easing);
}
textarea::placeholder { color: var(--ink-mute); }
textarea:focus {
  outline: none;
  border-color: var(--red);
  box-shadow: 0 0 0 4px rgba(217,40,66,.12);
}
.char-count {
  font-size: 12px;
  color: var(--ink-mute);
  text-align: right;
  margin: 6px 2px 22px;
  letter-spacing: .04em;
}

.step-nav {
  display: flex; justify-content: space-between; align-items: center;
  margin-top: 12px;
  gap: 12px;
}
.btn-back, .btn-next, .btn-generate {
  font-family: var(--sans);
  font-weight: 600;
  font-size: 15px;
  padding: 14px 22px;
  border-radius: 999px;
  transition: all .2s var(--easing);
}
.btn-back { background: transparent; color: var(--ink-mute); padding: 14px 4px; }
.btn-back:hover { color: var(--ink); }
.btn-next { background: var(--ink); color: #fff; }
.btn-next:hover { background: var(--red); transform: translateY(-1px); }
.btn-next:disabled { background: var(--hair); color: var(--ink-mute); cursor: not-allowed; }
.btn-generate {
  background: var(--red); color: #fff;
  padding: 16px 28px; font-size: 16px;
  display: inline-flex; align-items: center; gap: 10px;
  box-shadow: 0 12px 24px -10px rgba(217,40,66,.6);
}
.btn-generate:hover { background: var(--red-deep); transform: translateY(-1px); }
.btn-generate:disabled { background: var(--hair); color: var(--ink-mute); cursor: not-allowed; box-shadow: none; }
.btn-spinner {
  display: none;
  width: 14px; height: 14px;
  border: 2px solid rgba(255,255,255,.4);
  border-top-color: #fff;
  border-radius: 50%;
  animation: spin .7s linear infinite;
}
.btn-generate.loading .btn-spinner { display: inline-block; }
@keyframes spin { to { transform: rotate(360deg); } }

@media (max-width: 640px) {
  .flow-wrap { padding: 28px 22px; margin-top: -40px; }
}

/* ============== OUTPUT ============== */
.output { padding: 80px 28px; background: var(--bg-cream); }
.out-inner { max-width: 1200px; margin: 0 auto; }
.out-head { text-align: center; margin: 0 auto 40px; max-width: 680px; }
.out-head .h2 { margin-inline: auto; }
.out-head .lede { margin-inline: auto; }

.out-grid {
  display: grid; gap: 20px;
  grid-template-columns: repeat(3, 1fr);
}
@media (max-width: 900px) { .out-grid { grid-template-columns: 1fr; } }

.option {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 32px 28px 24px;
  display: flex; flex-direction: column;
  position: relative;
  box-shadow: var(--shadow);
  transition: transform .25s var(--easing), box-shadow .25s var(--easing);
  animation: stepIn .4s var(--easing);
  border-top: 6px solid var(--yellow);
}
.option:nth-child(2) { border-top-color: var(--red); }
.option:nth-child(3) { border-top-color: var(--mint); }
.option:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.opt-num {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 600;
  font-size: 14px;
  color: var(--red);
  letter-spacing: .04em;
  margin-bottom: 12px;
}
.opt-body {
  font-family: var(--serif);
  font-size: 19px;
  line-height: 1.45;
  color: var(--ink);
  letter-spacing: -.005em;
  white-space: pre-wrap;
  flex: 1;
  margin-bottom: 18px;
}
.opt-meta {
  font-size: 11px; letter-spacing: .14em; text-transform: uppercase;
  color: var(--ink-mute);
  margin-bottom: 14px;
  display: flex; gap: 8px; align-items: center;
  font-weight: 600;
}
.opt-meta .dot { color: var(--red); font-size: 7px; }
.opt-copy {
  background: var(--ink); color: #fff;
  border-radius: 999px;
  padding: 11px 18px; font-size: 13.5px; font-weight: 600;
  align-self: flex-start;
  transition: all .2s var(--easing);
}
.opt-copy:hover { background: var(--red); }
.opt-copy.copied { background: var(--mint); color: var(--ink); }

.out-actions {
  display: flex; gap: 14px; flex-wrap: wrap; align-items: center;
  margin-top: 36px;
  justify-content: center;
}
.out-counter {
  margin-left: 14px;
  font-size: 14px;
  color: var(--ink-soft);
  letter-spacing: .02em;
  font-weight: 500;
}
.out-counter em { color: var(--red); font-style: italic; font-weight: 700; }

/* ============== PAYWALL ============== */
.paywall {
  background: linear-gradient(180deg, var(--red-soft) 0%, #fff 100%);
  padding: 100px 28px;
}
.pay-inner { max-width: 1100px; margin: 0 auto; text-align: center; }
.paywall .h2, .paywall .lede { margin-inline: auto; }

.plans {
  display: grid; gap: 20px;
  grid-template-columns: repeat(2, 1fr);
  margin: 40px 0 24px;
  text-align: left;
}
.plans-two { margin-bottom: 0; }
@media (max-width: 760px) { .plans { grid-template-columns: 1fr; } }

.plan {
  background: #fff;
  border: 1.5px solid var(--hair);
  border-radius: var(--radius-lg);
  padding: 36px 32px 32px;
  display: flex; flex-direction: column;
  position: relative;
  box-shadow: var(--shadow-sm);
  transition: transform .25s var(--easing);
}
.plan:hover { transform: translateY(-3px); }
.plan-feature {
  border: 2.5px solid var(--ink);
  box-shadow: var(--shadow);
  background: var(--bg-cream);
}
.plan-tag-feature {
  position: absolute;
  top: -14px; left: 28px;
  background: var(--red); color: #fff;
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 11px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase;
}
.plan-light { background: #fff; }
.plan-tag {
  display: inline-block;
  font-size: 11px; letter-spacing: .18em; text-transform: uppercase;
  font-weight: 700;
  color: var(--ink-mute);
  margin-bottom: 16px;
}
.plan-price {
  font-family: var(--serif); font-weight: 700;
  font-size: 72px; line-height: 1;
  color: var(--ink);
  letter-spacing: -.04em;
  margin-bottom: 6px;
}
.plan-price .dollar {
  font-size: 32px; vertical-align: top;
  color: var(--ink-mute); font-weight: 600;
  margin-right: 4px;
}
.plan-name {
  font-family: var(--serif); font-size: 22px; font-weight: 600;
  color: var(--ink); margin-bottom: 24px;
}
.plan-name em { color: var(--red); font-style: italic; }
.plan-bullets {
  list-style: none; padding: 0; margin: 0 0 28px;
  display: flex; flex-direction: column; gap: 12px;
  color: var(--ink-soft); font-size: 15px;
}
.plan-bullets li::first-letter { color: var(--mint); font-weight: 700; }
.plan-bullets em { color: var(--red); font-style: italic; }
.btn-buy {
  background: var(--ink); color: #fff;
  padding: 16px 22px; font-size: 15px;
  font-weight: 600;
  width: 100%;
  border-radius: 999px;
  transition: all .2s var(--easing);
  text-decoration: none;
  display: inline-block;
  text-align: center;
}
.btn-buy:hover { background: var(--red); transform: translateY(-1px); }
.btn-buy-feature { background: var(--red); }
.btn-buy-feature:hover { background: var(--red-deep); }

.pay-fine {
  font-size: 13px; color: var(--ink-mute);
  max-width: 56ch; margin: 0 auto;
  text-align: center;
}

/* ============== PROOF / TESTIMONIALS ============== */
.proof { padding: 100px 28px; background: var(--bg); }
.proof-inner { max-width: 1280px; margin: 0 auto; }
.proof-head { text-align: center; margin: 0 auto 50px; max-width: 700px; }
.proof-head .h2 { margin-inline: auto; }
.proof-head .lede { margin-inline: auto; }

.proof-grid {
  display: grid; gap: 22px;
  grid-template-columns: repeat(3, 1fr);
}
@media (max-width: 950px) { .proof-grid { grid-template-columns: 1fr; } }

.testimonial {
  background: #fff;
  border: 1.5px solid var(--hair);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  display: flex; flex-direction: column;
  box-shadow: var(--shadow-sm);
  transition: transform .25s var(--easing), box-shadow .25s var(--easing);
}
.testimonial:hover { transform: translateY(-3px); box-shadow: var(--shadow); }
.testimonial.t-y { background: var(--yellow-soft); }
.testimonial.t-p { background: var(--peach-soft); }
.stars {
  color: var(--yellow-deep);
  font-size: 18px;
  letter-spacing: 3px;
  margin-bottom: 14px;
}
.testimonial blockquote {
  font-family: var(--serif);
  font-size: 19px;
  line-height: 1.4;
  color: var(--ink);
  margin: 0 0 22px;
  letter-spacing: -.005em;
  flex: 1;
}
.t-row {
  display: flex; align-items: center; gap: 14px;
  padding-top: 18px;
  border-top: 1px dashed rgba(0,0,0,.12);
}
.avatar {
  width: 52px; height: 52px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid #fff;
  box-shadow: 0 4px 10px rgba(0,0,0,.1);
}
.t-row strong {
  display: block;
  font-size: 15px;
  color: var(--ink);
  margin-bottom: 2px;
  font-weight: 600;
}
.t-row span {
  font-size: 13px;
  color: var(--ink-soft);
}

/* ============== COMPARISON ============== */
.compare { padding: 100px 28px; background: var(--bg-alt); }
.compare-inner { max-width: 1280px; margin: 0 auto; text-align: center; }
.compare .h2 { margin-inline: auto; }

.compare-grid {
  display: grid; gap: 20px;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 40px;
  text-align: left;
}
@media (max-width: 920px) { .compare-grid { grid-template-columns: 1fr; } }

.comp-col {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 36px 30px;
  position: relative;
  box-shadow: var(--shadow-sm);
}
.comp-col-gray { opacity: .82; }
.comp-col-hero {
  background: var(--ink);
  color: #fff;
  box-shadow: var(--shadow-lg);
  transform: scale(1.02);
}
.comp-badge {
  display: inline-block;
  background: var(--yellow);
  color: var(--ink);
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.comp-name {
  font-family: var(--serif);
  font-weight: 600;
  font-size: 24px;
  color: var(--ink);
  margin-bottom: 4px;
  letter-spacing: -.01em;
}
.comp-col-hero .comp-name { color: #fff; }
.comp-col-hero .comp-name em { color: var(--yellow); font-style: italic; }
.comp-sub {
  font-size: 13px;
  color: var(--ink-mute);
  margin-bottom: 22px;
  letter-spacing: .04em;
  font-weight: 500;
}
.comp-col-hero .comp-sub { color: rgba(255,255,255,.7); }
.comp-col ul {
  list-style: none; padding: 0; margin: 0;
  display: flex; flex-direction: column; gap: 12px;
}
.comp-col li {
  font-size: 15px;
  color: var(--ink-soft);
  line-height: 1.45;
  padding-left: 4px;
}
.comp-col li::first-letter { color: var(--red); font-weight: 700; }
.comp-col-hero li { color: rgba(255,255,255,.88); }
.comp-col-hero li::first-letter { color: var(--mint); }
.comp-col em { color: var(--red); font-style: italic; font-weight: 500; }
.comp-col-hero em { color: var(--yellow); }

/* ============== PRICING ============== */
.price-sec {
  padding: 100px 28px;
  background: var(--bg-cream);
}
.price-inner { max-width: 1100px; margin: 0 auto; text-align: center; }
.price-inner .h2 { margin-inline: auto; }
.price-inner .lede { margin-inline: auto; }

/* ============== FAQ ============== */
.faq { padding: 100px 28px; background: var(--bg); }
.faq-inner { max-width: 860px; margin: 0 auto; }
.faq .h2 { max-width: 24ch; margin-bottom: 38px; }

.faq-list {
  display: flex; flex-direction: column; gap: 12px;
}
.faq-item {
  background: var(--bg-alt);
  border-radius: var(--radius);
  padding: 4px 26px;
  border: 1px solid var(--hair);
  transition: all .2s var(--easing);
}
.faq-item[open] {
  background: var(--bg-cream);
  border-color: var(--yellow);
  box-shadow: var(--shadow-sm);
}
.faq-item summary {
  font-family: var(--serif);
  font-weight: 600;
  font-size: 19px;
  letter-spacing: -.01em;
  cursor: pointer;
  padding: 20px 0;
  list-style: none;
  display: flex; justify-content: space-between; align-items: center;
  color: var(--ink);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+";
  font-family: var(--sans);
  font-size: 24px;
  font-weight: 400;
  color: var(--red);
  width: 32px; height: 32px;
  background: #fff;
  border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  transition: transform .2s var(--easing);
  margin-left: 12px;
  flex: 0 0 32px;
}
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item p {
  margin: 0 0 22px;
  font-size: 16px;
  line-height: 1.55;
  color: var(--ink-soft);
}
.faq-item p em { color: var(--red); font-style: italic; }
.faq-item p strong { color: var(--ink); }

/* ============== FINAL CTA ============== */
.final {
  background: var(--ink);
  color: #fff;
  padding: 100px 28px;
  text-align: center;
  background-image:
    radial-gradient(800px 300px at 20% 30%, rgba(255,200,87,.18), transparent 60%),
    radial-gradient(800px 300px at 80% 70%, rgba(217,40,66,.22), transparent 60%);
}
.final-inner { max-width: 800px; margin: 0 auto; }
.final-h {
  font-family: var(--serif);
  font-weight: 600;
  font-size: clamp(38px, 5.5vw, 64px);
  line-height: 1.05;
  letter-spacing: -.025em;
  margin: 0 0 32px;
}
.final-fine {
  margin-top: 20px;
  font-size: 14px;
  color: rgba(255,255,255,.65);
}

/* ============== FOOTER ============== */
.foot { padding: 50px 28px; background: var(--bg); border-top: 1px solid var(--hair); }
.foot-inner { max-width: 1280px; margin: 0 auto; }
.foot-row {
  display: flex; justify-content: space-between; align-items: flex-start;
  gap: 30px; flex-wrap: wrap;
  margin-bottom: 28px;
}
.foot-brand { display: flex; gap: 14px; align-items: center; }
.brand-mark-foot { width: 48px; height: 48px; font-size: 22px; }
.foot-brand strong {
  font-family: var(--serif);
  font-size: 20px;
  letter-spacing: -.01em;
  display: block;
  font-weight: 600;
}
.foot-tag {
  font-size: 13.5px;
  color: var(--ink-mute);
  margin-top: 2px;
}
.foot-nav {
  display: flex; gap: 18px; flex-wrap: wrap;
  font-size: 14px;
  font-weight: 500;
}
.foot-nav a { color: var(--ink-soft); text-decoration: none; }
.foot-nav a:hover { color: var(--red); }
.foot-fine {
  font-size: 12.5px;
  color: var(--ink-mute);
  line-height: 1.7;
  border-top: 1px dashed var(--hair);
  padding-top: 22px;
}
.foot-fine a { color: var(--ink-soft); text-decoration: none; }
.foot-fine a:hover { color: var(--red); }
.foot-fine strong { color: var(--ink-soft); }

/* ============== TOAST ============== */
.toast {
  position: fixed;
  bottom: 28px; left: 50%;
  transform: translateX(-50%) translateY(20px);
  background: var(--ink); color: #fff;
  padding: 14px 22px;
  border-radius: 999px;
  font-size: 14.5px;
  font-weight: 500;
  opacity: 0;
  pointer-events: none;
  transition: opacity .25s var(--easing), transform .25s var(--easing);
  z-index: 100;
  box-shadow: var(--shadow);
}
.toast.show { opacity: 1; transform: translateX(-50%) translateY(0); }

/* ============== REDUCED MOTION ============== */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}
