/* ═══════════════════════════════════════════
   Rekindle — the second-chance agency
   Design system: plum ink #372333 · raspberry rose #d9376e
   on warm cream #fbf4ea, gold highlight
   Young Serif (display) · Outfit (body) · Dancing Script (script)
   DM Serif Display italic (stats)
   ═══════════════════════════════════════════ */

:root {
  --ink: #372333;
  --rose: #d9376e;
  --rose-dark: #a8285a;
  --paper: #fbf4ea;
  --card: #fffcf5;
  --gray: #7d6a74;
  --gray-warm: #94806f;
  --gray-light: #c0b2a4;
  --line: #e8ddd0;
  --blue: #1b8cff;
  --gold: rgba(240, 169, 60, .5);
  --shadow: 2px 2px 0 0 var(--ink);
  --radius-card: 20px;
  --font-sans: 'Outfit', system-ui, -apple-system, sans-serif;
  --font-display: 'Young Serif', Georgia, serif;
  --font-script: 'Dancing Script', cursive;
  --font-stat: 'DM Serif Display', serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-sans);
  background: var(--paper);
  color: var(--ink);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
button { font: inherit; background: none; border: none; cursor: pointer; color: inherit; }

.container { max-width: 1280px; margin: 0 auto; padding: 0 40px; }
.container.narrow { max-width: 820px; }

/* ══════════ Announcement bar ══════════ */
.announce {
  position: relative;
  z-index: 60;
  background: var(--ink);
  color: #f7e9dc;
  text-align: center;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: .01em;
  padding: 11px 16px;
}
.announce a { text-decoration: underline; font-weight: 600; color: #ffd9e6; }

/* ══════════ Header ══════════ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  padding: 0;
  transition: padding .35s ease;
}
.nav-shell {
  display: flex;
  align-items: center;
  gap: 28px;
  background: var(--paper);
  border-bottom: 2px solid transparent;
  padding: 18px 48px;
  transition: all .35s ease;
}
.site-header.shrink { padding: 10px 16px; }
.site-header.shrink .nav-shell {
  max-width: 1120px;
  margin: 0 auto;
  background: var(--card);
  border: 2px solid var(--ink);
  border-radius: 999px;
  padding: 8px 12px 8px 28px;
  box-shadow: 0 6px 24px rgba(55,35,51,.12);
}

.brand { display: inline-flex; flex-direction: column; line-height: 1; margin-right: auto; }
.brand-script {
  font-family: var(--font-script);
  font-weight: 700;
  font-size: 26px;
  letter-spacing: 0;
  transform: rotate(-2deg);
  white-space: nowrap;
}
.brand-swash { width: 120px; height: 8px; margin: -1px 0 0 8px; color: var(--rose); transform: rotate(-2deg); }
.brand-script.small { font-size: 21px; display: inline-block; }

.nav-links { display: flex; align-items: center; gap: 28px; font-size: 15px; font-weight: 500; }
.nav-links > a:hover, .dropdown-toggle:hover { opacity: .65; }

.dropdown { position: relative; }
.dropdown-toggle { display: inline-flex; align-items: center; gap: 5px; font-weight: 500; font-size: 15px; }
.caret { font-size: 11px; transition: transform .2s; }
.dropdown:hover .caret { transform: rotate(180deg); }
.dropdown-menu {
  position: absolute;
  top: calc(100% + 10px);
  left: 50%;
  transform: translateX(-50%) translateY(6px);
  background: var(--card);
  border: 2px solid var(--ink);
  border-radius: 18px;
  box-shadow: 4px 4px 0 0 var(--ink);
  padding: 8px;
  min-width: 220px;
  display: flex;
  flex-direction: column;
  opacity: 0;
  pointer-events: none;
  transition: all .2s ease;
}
.dropdown:hover .dropdown-menu, .dropdown:focus-within .dropdown-menu {
  opacity: 1; pointer-events: auto; transform: translateX(-50%) translateY(0);
}
.dropdown-menu a { padding: 9px 14px; border-radius: 10px; font-size: 14.5px; font-weight: 500; }
.dropdown-menu a:hover { background: #f8e3ec; color: var(--rose-dark); }

.nav-cta { display: flex; align-items: center; gap: 12px; }

/* ══════════ Buttons ══════════ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-weight: 700;
  font-size: 13.5px;
  padding: 10px 19px;
  border-radius: 999px;
  border: 2px solid var(--ink);
  transition: transform .12s ease, box-shadow .12s ease;
  white-space: nowrap;
}
.btn-red { background: var(--rose); color: #fff8f0; box-shadow: var(--shadow); }
.btn-red:hover { transform: translate(2px, 2px); box-shadow: 0 0 0 0 var(--ink); }
.btn-red .arrow { transition: transform .15s; }
.btn-red:hover .arrow { transform: translateX(3px); }
.btn-ghost { background: transparent; color: var(--ink); border: 1.5px solid #cbb9a8; border-radius: 999px; font-weight: 600; }
.btn-ghost:hover { border-color: var(--ink); }
.btn-lg { font-size: 16.5px; padding: 15px 30px; box-shadow: 3px 3px 0 0 var(--ink); }

.link-underline {
  color: var(--rose-dark);
  font-weight: 600;
  font-size: 15.5px;
  border-bottom: 2px solid var(--rose);
  padding-bottom: 2px;
  display: inline-flex;
  align-items: center;
}
.link-underline:hover .arrow-slide { transform: translateX(4px); }
.arrow-slide { display: inline-block; transition: transform .15s; color: var(--rose-dark); }

/* ══════════ Hero ══════════ */
.hero {
  position: relative;
  text-align: center;
  padding: 76px 24px 40px;
  overflow: visible;
}
.hero-inner { position: relative; z-index: 2; max-width: 940px; margin: 0 auto; }

.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  z-index: 0;
  pointer-events: none;
}
.orb-1 { width: 480px; height: 480px; background: rgba(217,55,110,.13); top: -60px; left: 50%; margin-left: -240px; animation: drift-a 19s ease-in-out infinite; }
.orb-2 { width: 320px; height: 320px; background: rgba(240,169,60,.14); top: 80px; left: 12%; animation: drift-b 23s ease-in-out infinite; }
.orb-3 { width: 300px; height: 300px; background: rgba(155,110,200,.10); top: 40px; right: 10%; animation: drift-c 27s ease-in-out infinite; }

@keyframes drift-a { 0%,100% { transform: translate(0,0) scale(1); } 50% { transform: translate(40px,30px) scale(1.08); } }
@keyframes drift-b { 0%,100% { transform: translate(0,0) scale(1); } 50% { transform: translate(-36px,24px) scale(.94); } }
@keyframes drift-c { 0%,100% { transform: translate(0,0) scale(1); } 50% { transform: translate(24px,-28px) scale(1.06); } }

/* floating heart stickers */
.heart-float {
  position: absolute;
  z-index: 1;
  pointer-events: none;
  background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><path d="M50 34 C50 24 41 13 29 13 C15 13 7 24 7 36 C7 55 28 70 50 89 C72 70 93 55 93 36 C93 24 85 13 71 13 C59 13 50 24 50 34 Z" fill="%23731d43"/><path d="M50 28 C50 18 41 7 29 7 C15 7 7 18 7 30 C7 49 28 64 50 83 C72 64 93 49 93 30 C93 18 85 7 71 7 C59 7 50 18 50 28 Z" fill="%23d9376e" stroke="%23372333" stroke-width="4"/><ellipse cx="30" cy="24" rx="10" ry="7" fill="%23ffe9f1" opacity=".8" transform="rotate(-24 30 24)"/></svg>') no-repeat center / contain;
  animation: heart-bob 9s ease-in-out infinite;
}
@keyframes heart-bob {
  0%, 100% { transform: rotate(var(--rot, 0deg)) translateY(0); }
  50% { transform: rotate(var(--rot, 0deg)) translateY(-16px); }
}
.hf-1 { width: 190px; height: 190px; top: 40px; left: -46px; animation-duration: 8s; }
.hf-2 { width: 150px; height: 150px; top: 210px; left: 4%; animation-duration: 10s; }
.hf-3 { width: 230px; height: 230px; top: 100px; right: -60px; animation-duration: 9s; }
.hf-4 { width: 130px; height: 130px; top: 330px; right: 6%; animation-duration: 11s; }
.hf-5 { width: 96px; height: 96px; top: 10px; right: 24%; animation-duration: 7.5s; }

.script-label {
  font-family: var(--font-script);
  font-weight: 600;
  font-size: 26px;
  color: var(--gray-warm);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-bottom: 10px;
}
.script-label .dash { display: inline-block; width: 44px; height: 2px; background: var(--gray-warm); }

.hero-title {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(46px, 6.6vw, 84px);
  letter-spacing: -.01em;
  line-height: 1.04;
  margin: 8px 0 28px;
}
.rotator {
  background-image: linear-gradient(transparent 62%, var(--gold) 62%, var(--gold) 92%, transparent 92%);
  transition: opacity .25s ease;
  white-space: nowrap;
}
.rotator.swap { opacity: 0; }

.hero-sub {
  font-size: 20px;
  color: #5c4552;
  max-width: 560px;
  margin: 0 auto 34px;
  line-height: 1.5;
}
.hero-sub strong { color: var(--ink); font-weight: 700; }

.cta-row { display: flex; align-items: center; justify-content: center; gap: 30px; }
.cta-row.left { justify-content: flex-start; }

/* heart pop on CTA hover */
.heart-pop { position: relative; }
.pop-heart {
  position: absolute;
  top: 0;
  left: 50%;
  font-size: 18px;
  pointer-events: none;
  animation: heart-pop-fly 1s ease-out forwards;
}
@keyframes heart-pop-fly {
  0% { opacity: 0; transform: translate(0,0) scale(.2) rotate(0); }
  18% { opacity: 1; transform: translate(calc(var(--tx) * .25), -12px) scale(1) rotate(calc(var(--rr) * .3)); }
  100% { opacity: 0; transform: translate(var(--tx), var(--ty, -44px)) scale(.85) rotate(var(--rr)); }
}

/* ══════════ Logo wheel ══════════ */
.logo-wheel { margin-top: 74px; position: relative; z-index: 2; }
.eyebrow {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .18em;
  color: var(--gray);
  margin-bottom: 26px;
}
.lw-viewport {
  overflow: hidden;
  max-width: 1180px;
  margin: 0 auto;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent);
}
.lw-track {
  display: flex;
  align-items: center;
  gap: 96px;
  width: max-content;
  animation: lw-scroll 36s linear infinite;
  padding-right: 96px;
}
@keyframes lw-scroll { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }

.fake-logo { color: #56404c; opacity: .8; white-space: nowrap; filter: grayscale(1); }
.fl-serif { font-family: var(--font-stat); font-style: italic; font-weight: 400; font-size: 31px; }
.fl-mono  { font-family: ui-monospace, 'SF Mono', Menlo, monospace; font-weight: 700; font-size: 21px; letter-spacing: -.03em; }
.fl-round { font-weight: 800; font-size: 27px; letter-spacing: -.04em; }
.fl-thin  { font-weight: 400; font-size: 28px; letter-spacing: .02em; }
.fl-caps  { font-weight: 700; font-size: 18px; letter-spacing: .22em; }
.fl-ital  { font-family: var(--font-stat); font-style: italic; font-weight: 400; font-size: 31px; }

/* ══════════ Gesture strip ══════════ */
.gesture-strip { margin-top: 60px; padding: 30px 0 10px; overflow: hidden; }
.strip-viewport { overflow: hidden; }
.strip-track {
  display: flex;
  gap: 30px;
  width: max-content;
  padding: 14px 0 26px;
  will-change: transform;
  cursor: grab;
}
.strip-track.dragging { cursor: grabbing; }

.polaroid {
  width: 258px;
  flex: 0 0 auto;
  background: var(--card);
  border: 2.5px solid var(--ink);
  border-radius: 18px;
  box-shadow: 5px 6px 0 0 var(--ink);
  overflow: hidden;
  transform: rotate(var(--tilt, 0deg));
  transition: transform .25s ease;
}
.polaroid:hover { transform: rotate(0deg) translateY(-6px); }
.polaroid svg { display: block; width: 100%; height: auto; }
.polaroid figcaption {
  font-family: var(--font-script);
  font-weight: 600;
  font-size: 20px;
  color: #6a5560;
  padding: 8px 14px 10px;
  border-top: 2px solid var(--ink);
  background: #fdf6ec;
}
.polaroid.big { width: 380px; }

/* ══════════ The difference (how) ══════════ */
.how { padding: 130px 0 90px; text-align: center; }

.script-h2 {
  font-family: var(--font-script);
  font-weight: 700;
  font-size: clamp(46px, 5.8vw, 78px);
  line-height: 1.06;
  letter-spacing: 0;
  margin: 8px 0 24px;
}
.script-h2.left { text-align: left; }

.compare {
  display: grid;
  grid-template-columns: 1fr 70px 1fr;
  gap: 12px;
  align-items: start;
  margin-top: 56px;
  text-align: left;
}
.compare-label {
  font-family: var(--font-script);
  font-weight: 600;
  font-size: 29px;
  color: var(--gray-warm);
  margin-bottom: 14px;
}
.vs {
  font-family: var(--font-script);
  font-weight: 700;
  font-size: 32px;
  color: var(--gray-light);
  align-self: center;
  text-align: center;
}

.chat-card {
  background: var(--card);
  border: 2px solid var(--ink);
  border-radius: var(--radius-card);
  box-shadow: 5px 6px 0 0 var(--ink);
  padding: 26px 24px 30px;
  min-height: 380px;
  display: flex;
  flex-direction: column;
  gap: 9px;
}
.chat-day { text-align: center; font-size: 12.5px; color: #a99a90; margin: 6px 0 4px; }
.chat-day strong { color: var(--gray); font-weight: 600; }

.bubble {
  max-width: 78%;
  padding: 9px 15px;
  border-radius: 18px;
  font-size: 15px;
  line-height: 1.35;
}
.bubble.out { align-self: flex-end; background: var(--blue); color: #fff; border-bottom-right-radius: 5px; }
.bubble.in  { align-self: flex-start; background: #efe4d4; color: var(--ink); border-bottom-left-radius: 5px; }

.chat-status {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .14em;
  color: #a99a90;
  text-align: right;
  margin-top: 4px;
}
.chat-status.read { text-align: left; }
.chat-nothing {
  font-family: var(--font-script);
  font-weight: 600;
  font-size: 26px;
  color: var(--gray-light);
  text-align: center;
  margin-top: auto;
  padding-top: 26px;
}

.gesture-thumb {
  align-self: flex-start;
  width: 210px;
  border: 2px solid var(--ink);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 3px 3px 0 0 var(--ink);
}
.gesture-thumb svg { display: block; width: 100%; height: auto; }

.typing { display: flex; gap: 4px; align-self: flex-start; background: #efe4d4; padding: 12px 14px; border-radius: 18px; border-bottom-left-radius: 5px; }
.typing span {
  width: 7px; height: 7px; border-radius: 50%; background: #a3907e;
  animation: typedot 1.25s ease-in-out infinite;
}
.typing span:nth-child(2) { animation-delay: .18s; }
.typing span:nth-child(3) { animation-delay: .36s; }
@keyframes typedot {
  0%, 60%, 100% { opacity: .35; transform: translateY(0); }
  30% { opacity: 1; transform: translateY(-3px); }
}

.stat { margin-top: 40px; }
.stat-num {
  font-family: var(--font-stat);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(66px, 6.7vw, 100px);
  line-height: 1;
  letter-spacing: -.01em;
}
.stat-muted .stat-num { color: var(--gray-light); }
.stat-label { color: var(--gray); font-size: 17px; margin-top: 8px; }
.stat-unit { font-size: .45em; margin-left: 4px; }

/* ══════════ Pricing ══════════ */
.pricing { padding: 30px 0 120px; text-align: center; }
.price-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 34px;
  align-items: stretch;
  margin-top: 56px;
  text-align: left;
}
.price-card {
  position: relative;
  display: flex;
  flex-direction: column;
  background: var(--card);
  border: 2px solid var(--ink);
  border-radius: 24px;
  box-shadow: 5px 6px 0 0 var(--ink);
  padding: 34px 30px 30px;
}
.price-card-hot {
  border-width: 3px;
  box-shadow: 8px 9px 0 0 var(--ink);
  transform: rotate(-1deg) scale(1.03);
  background: #fff6ef;
}
.price-chip {
  position: absolute;
  top: -16px;
  right: 22px;
  font-family: var(--font-script);
  font-weight: 700;
  font-size: 21px;
  color: #fff8f0;
  background: var(--rose);
  border: 2px solid var(--ink);
  border-radius: 999px;
  padding: 2px 16px;
  transform: rotate(3deg);
  box-shadow: var(--shadow);
}
.price-name {
  font-family: var(--font-script);
  font-weight: 700;
  font-size: 27px;
  margin-bottom: 12px;
}
.price-num {
  font-family: var(--font-stat);
  font-style: italic;
  font-size: 56px;
  line-height: 1;
}
.price-unit { font-size: .38em; font-style: normal; font-family: var(--font-sans); color: var(--gray); margin-left: 4px; }
.price-per { color: var(--gray); font-size: 14px; margin: 8px 0 20px; }
.price-list { list-style: none; display: flex; flex-direction: column; gap: 11px; margin-bottom: 30px; }
.price-list li { padding-left: 26px; position: relative; font-size: 15px; line-height: 1.4; }
.price-list li::before {
  content: '❤';
  position: absolute;
  left: 0;
  top: 0;
  color: var(--rose);
  font-size: 13px;
}
.btn-block { margin-top: auto; justify-content: center; text-align: center; }
.price-note { margin-top: 44px; color: var(--gray); font-size: 15px; }

/* ══════════ Receipts ══════════ */
.receipts { padding: 60px 0 40px; }
.receipts-head { max-width: 1280px; margin: 0 auto 8px; padding: 0 40px; text-align: center; }
.drag-cue {
  font-family: var(--font-script);
  font-weight: 600;
  font-size: 23px;
  color: var(--gray-light);
  margin-left: 12px;
  white-space: nowrap;
}

.ink-underline { position: relative; white-space: nowrap; }
.ink-underline::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: -6px;
  height: 10px;
  background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 200 14" preserveAspectRatio="none"><path d="M3 5 C 60 1, 140 1, 197 4" fill="none" stroke="%23d9376e" stroke-width="3.4" stroke-linecap="round"/><path d="M8 11 C 70 7, 150 8, 192 10" fill="none" stroke="%23d9376e" stroke-width="2.6" stroke-linecap="round"/></svg>') no-repeat center / 100% 100%;
}

.scroll-wrap { overflow: hidden; padding: 34px 0 30px; }
.scroll-row {
  display: flex;
  gap: 34px;
  padding: 10px 56px 16px;
  overflow-x: auto;
  scrollbar-width: none;
  cursor: grab;
  user-select: none;
}
.scroll-row::-webkit-scrollbar { display: none; }
.scroll-row.dragging { cursor: grabbing; }
.scroll-row.dragging * { pointer-events: none; }

.tile {
  flex: 0 0 auto;
  width: 400px;
  background: var(--card);
  border: 2px solid var(--ink);
  border-radius: 22px;
  box-shadow: 6px 7px 0 0 var(--ink);
  transform: rotate(var(--tilt, 0deg));
  overflow: hidden;
}

.press-img { border-bottom: 2px solid var(--ink); }
.press-img svg { display: block; width: 100%; height: auto; }
.press-body { padding: 20px 24px 26px; }
.press-kicker { font-size: 11.5px; font-weight: 700; letter-spacing: .12em; color: #a99a90; margin-bottom: 10px; }
.press-body h3 { font-family: var(--font-display); font-size: 20px; font-weight: 400; letter-spacing: 0; line-height: 1.3; margin-bottom: 10px; }
.press-quote { font-family: var(--font-stat); font-style: italic; font-size: 17px; color: #5c4552; margin-bottom: 10px; line-height: 1.45; }
.press-gray { font-size: 14.5px; color: var(--gray); line-height: 1.5; }

.tweet-card, .email-card, .social-card { padding: 24px 26px; }
.tweet-head, .email-head { display: flex; gap: 12px; align-items: center; margin-bottom: 14px; }
.avatar { width: 44px; height: 44px; border-radius: 50%; background: var(--av, #eee); border: 2px solid var(--ink); flex: 0 0 auto; }
.tweet-name { font-weight: 700; font-size: 15.5px; }
.verified { color: var(--blue); font-size: 13px; }
.tweet-handle { color: var(--gray); font-size: 13.5px; }
.tweet-body { font-size: 16px; line-height: 1.45; margin-bottom: 14px; }
.tweet-meta { color: var(--gray); font-size: 13.5px; }
.tweet-meta strong { color: var(--ink); }
.brand-mention { color: var(--rose-dark); font-weight: 600; }

.email-name { font-weight: 700; font-size: 15px; }
.email-addr { font-weight: 400; color: var(--gray); font-size: 13.5px; }
.email-sub { color: var(--gray); font-size: 13px; }
.email-body { font-size: 15.5px; line-height: 1.5; margin: 6px 0 18px; }
.email-actions { color: var(--gray); font-size: 13.5px; font-weight: 600; }

.social-thumb { border: 1.5px solid var(--line); border-radius: 10px; overflow: hidden; margin-bottom: 12px; }
.social-thumb svg { display: block; width: 100%; height: auto; }
.social-meta { color: var(--gray); font-size: 13.5px; }
.social-meta strong { color: var(--ink); }

/* ══════════ Hand divider ══════════ */
.hand-divider { padding: 70px 0 30px; }
.hd-rail {
  position: relative;
  max-width: 760px;
  margin: 0 auto;
  height: 14px;
  border-radius: 999px;
  background: #eee1cf;
}
.hd-fill {
  position: absolute;
  inset: 0 auto 0 0;
  width: 12%;
  min-width: 40px;
  background: var(--ink);
  border-radius: 999px;
  transition: width .18s linear;
}
.hd-hand {
  position: absolute;
  right: -74px;
  top: 50%;
  transform: translateY(-58%);
  width: 96px;
  height: 48px;
}

/* ══════════ Off the menu ══════════ */
.off-menu { padding: 90px 0 120px; text-align: center; }
.off-menu .script-label { justify-content: center; }
.off-body {
  font-size: 19px;
  color: #5c4552;
  line-height: 1.6;
  max-width: 620px;
  margin: 4px auto 30px;
}

/* ══════════ Closer ══════════ */
.closer { padding: 20px 0 120px; }
.closer-card {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 40px;
  align-items: center;
  background: var(--card);
  border: 2.5px solid var(--ink);
  border-radius: 32px;
  box-shadow: 9px 10px 0 0 var(--ink);
  padding: 70px 64px;
}
.closer-copy .script-h2 { margin-bottom: 36px; }
.fine-print { margin-top: 26px; color: #a99a90; font-size: 13.5px; }

.closer-photo { display: flex; justify-content: center; }
.react-row {
  display: flex !important;
  gap: 10px;
  align-items: center;
}
.react {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #f3e9da;
  border-radius: 999px;
  padding: 5px 12px;
  font-size: 14.5px;
  font-family: var(--font-sans);
}
.react strong { font-weight: 600; }
.react-add { color: var(--gray); background: transparent; border: 1.5px dashed #cbb9a8; }

/* ══════════ Footer ══════════ */
.tail {
  position: relative;
  border-top: 2px solid var(--ink);
  background: #f6ecdd;
  padding: 110px 0 60px;
  overflow: hidden;
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .7s ease, transform .7s ease;
}
.tail.tail--in { opacity: 1; transform: none; }

.tf-1 { width: 210px; height: 210px; top: -30px; right: -60px; animation-duration: 9s; }
.tf-2 { width: 150px; height: 150px; bottom: -20px; left: -40px; top: auto; animation-duration: 11s; }

.tail-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 48px;
}
.tail-brand h2 {
  font-family: var(--font-display);
  font-size: clamp(38px, 4.2vw, 56px);
  font-weight: 400;
  letter-spacing: -.01em;
  line-height: 1.08;
  color: var(--ink);
  margin-bottom: 30px;
}
.tail-col { display: flex; flex-direction: column; gap: 15px; }
.tail-head { font-size: 12px; font-weight: 700; letter-spacing: .16em; color: #a99a90; margin-bottom: 4px; }
.tail-col a { color: var(--gray); font-size: 15px; }
.tail-col a:hover { color: var(--ink); }
.tail-add {
  color: var(--ink) !important;
  font-weight: 600;
  border-bottom: 2px solid var(--rose);
  padding-bottom: 2px;
  align-self: flex-start;
  margin-top: 8px;
}

.tail-social { display: flex; gap: 26px; margin-top: 80px; padding-bottom: 34px; border-bottom: 1px solid #ded1bd; }
.tail-social a { color: #56404c; }
.tail-social a:hover { color: var(--rose-dark); }

.tail-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 26px;
  color: var(--gray);
  font-size: 14px;
}
.tail-bottom a:hover { text-decoration: underline; }

/* ══════════ Reveal on scroll ══════════ */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity .7s ease, transform .7s ease; }
.reveal.in { opacity: 1; transform: none; }

/* ══════════ v3 sections (Get Your Ex Back) ══════════ */
.micro { margin-top: 18px; color: var(--gray); font-size: 13.5px; }

/* Reality strip */
.reality { padding: 90px 0 40px; text-align: center; }
.reality-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin-top: 30px;
  align-items: start;
}
.reality-grid .stat { margin-top: 0; }
.reality-grid .stat-label { max-width: 300px; margin-left: auto; margin-right: auto; }
.reality-kicker {
  font-family: var(--font-script);
  font-weight: 700;
  font-size: 28px;
  color: var(--gray-warm);
  margin-top: 44px;
}

/* Tonight (problem) */
.problem-body {
  font-size: 19px;
  color: #5c4552;
  line-height: 1.6;
  max-width: 680px;
  margin: 6px auto 22px;
}
.turn-line {
  font-family: var(--font-script);
  font-weight: 700;
  font-size: 32px;
  margin-bottom: 10px;
}

/* Method */
.method { padding: 110px 0 60px; text-align: center; }
.method-intro {
  font-size: 19px;
  color: #5c4552;
  line-height: 1.6;
  max-width: 640px;
  margin: 4px auto 50px;
}
.phase-list { display: flex; flex-direction: column; gap: 26px; text-align: left; }
.phase-card {
  display: grid;
  grid-template-columns: 92px 1fr;
  gap: 26px;
  align-items: start;
  background: var(--card);
  border: 2px solid var(--ink);
  border-radius: 24px;
  box-shadow: 5px 6px 0 0 var(--ink);
  padding: 30px 34px;
}
.phase-num {
  font-family: var(--font-stat);
  font-style: italic;
  font-size: 62px;
  line-height: 1;
  color: var(--rose);
}
.phase-name {
  font-family: var(--font-script);
  font-weight: 700;
  font-size: 30px;
  margin-bottom: 8px;
}
.phase-promise { font-weight: 700; font-size: 16.5px; margin-bottom: 8px; }
.phase-detail { color: var(--gray); font-size: 15.5px; line-height: 1.55; margin-bottom: 14px; }
.phase-chips { display: flex; flex-wrap: wrap; gap: 8px; }
.chip {
  font-size: 12.5px;
  font-weight: 600;
  color: #6a5560;
  background: #f3e9da;
  border: 1.5px solid #ddcdb9;
  border-radius: 999px;
  padding: 4px 12px;
}
.method-note {
  margin-top: 40px;
  font-family: var(--font-stat);
  font-style: italic;
  font-size: 17px;
  color: var(--gray);
}

/* How it works */
.steps-section { padding: 90px 0 40px; text-align: center; }
.steps {
  counter-reset: step;
  list-style: none;
  text-align: left;
  max-width: 680px;
  margin: 40px auto 0;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.steps li {
  counter-increment: step;
  position: relative;
  padding: 20px 0 20px 76px;
  border-bottom: 1.5px solid var(--line);
  font-size: 16.5px;
  line-height: 1.55;
  color: #5c4552;
}
.steps li strong { color: var(--ink); }
.steps li::before {
  content: counter(step, decimal-leading-zero);
  position: absolute;
  left: 8px;
  top: 16px;
  font-family: var(--font-stat);
  font-style: italic;
  font-size: 34px;
  color: var(--rose);
}
.pullquote {
  max-width: 640px;
  margin: 50px auto 0;
  font-family: var(--font-script);
  font-weight: 600;
  font-size: 29px;
  line-height: 1.3;
  color: var(--ink);
  border: 2px solid var(--ink);
  border-radius: 24px;
  box-shadow: 5px 6px 0 0 var(--ink);
  background: #fff6ef;
  padding: 30px 38px;
  transform: rotate(-.6deg);
}

/* Three promises */
.promises { padding: 100px 0 40px; text-align: center; }
.promise-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 50px;
  text-align: left;
}
.promise-card {
  background: var(--card);
  border: 2px solid var(--ink);
  border-radius: 22px;
  box-shadow: 5px 6px 0 0 var(--ink);
  padding: 30px 28px;
}
.promise-card h3 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 21px;
  line-height: 1.3;
  margin-bottom: 12px;
}
.promise-card p { color: var(--gray); font-size: 15.5px; line-height: 1.55; }

/* Quote tiles */
.quote-card { padding: 28px 30px; }
.quote-mark {
  font-family: var(--font-stat);
  font-style: italic;
  font-size: 64px;
  line-height: .6;
  color: var(--rose);
  margin-bottom: 6px;
}
.quote-body { font-size: 16.5px; line-height: 1.5; margin-bottom: 18px; }
.quote-who { font-weight: 700; font-size: 14.5px; }
.quote-who span { font-weight: 500; color: var(--gray); }
.stories-note { text-align: center; color: var(--gray-light); font-size: 13px; margin-top: 6px; }

/* Pricing v3 */
.anchor-line {
  font-size: 17px;
  color: #5c4552;
  line-height: 1.6;
  max-width: 620px;
  margin: 4px auto 0;
}
.price-grid-single { grid-template-columns: minmax(0, 500px); justify-content: center; }

/* FAQ */
.faq { padding: 90px 0 50px; text-align: center; }
.faq-list { margin-top: 40px; text-align: left; }
.faq-list details {
  border-bottom: 1.5px solid var(--line);
  padding: 4px 2px;
}
.faq-list summary {
  cursor: pointer;
  list-style: none;
  position: relative;
  font-weight: 700;
  font-size: 17px;
  padding: 18px 44px 18px 0;
}
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::after {
  content: '+';
  position: absolute;
  right: 6px;
  top: 50%;
  transform: translateY(-50%);
  font-family: var(--font-stat);
  font-style: italic;
  font-size: 26px;
  color: var(--rose);
  transition: transform .2s;
}
.faq-list details[open] summary::after { transform: translateY(-50%) rotate(45deg); }
.faq-list details p { color: var(--gray); font-size: 15.5px; line-height: 1.6; padding: 0 0 20px; max-width: 700px; }

/* Quiz */
.quiz { padding: 90px 0 60px; text-align: center; }
.quiz-sub { font-size: 18px; color: #5c4552; margin: 4px 0 40px; }
.quiz-grid { display: flex; flex-direction: column; gap: 20px; max-width: 560px; margin: 0 auto; }
.quiz-card {
  position: relative;
  text-align: left;
  background: var(--card);
  border: 2px solid var(--ink);
  border-radius: 20px;
  box-shadow: 4px 5px 0 0 var(--ink);
  padding: 22px 60px 22px 26px;
  transition: transform .15s ease, box-shadow .15s ease;
}
.quiz-card:hover { transform: translate(2px, 2px); box-shadow: 0 0 0 0 var(--ink); }
.quiz-card h3 { font-family: var(--font-script); font-weight: 700; font-size: 26px; margin-bottom: 4px; }
.quiz-card p { color: var(--gray); font-size: 15px; }
.quiz-arrow {
  position: absolute;
  right: 24px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 22px;
  color: var(--rose);
}
.quiz .micro { margin-top: 34px; }

/* Closer / footer extras */
.closer-body { font-size: 17.5px; color: #5c4552; line-height: 1.6; margin: -8px 0 34px; max-width: 480px; }
.disclaimer {
  margin-top: 22px;
  color: var(--gray-light);
  font-size: 12.5px;
  line-height: 1.5;
  max-width: 640px;
}

/* ══════════ Responsive ══════════ */
@media (max-width: 1080px) {
  .nav-links { display: none; }
  .compare { grid-template-columns: 1fr; gap: 40px; }
  .vs { display: none; }
  .closer-card { grid-template-columns: 1fr; padding: 48px 32px; }
  .price-grid { grid-template-columns: 1fr; max-width: 460px; margin-left: auto; margin-right: auto; }
  .price-card-hot { transform: none; }
  .reality-grid { grid-template-columns: 1fr; gap: 44px; }
  .promise-grid { grid-template-columns: 1fr; max-width: 480px; margin-left: auto; margin-right: auto; }
  .phase-card { grid-template-columns: 1fr; gap: 8px; }
  .phase-num { font-size: 44px; }
  .tail-grid { grid-template-columns: 1fr 1fr; }
  .hf-1, .hf-2, .hf-4, .hf-5 { display: none; }
  .hf-3 { width: 130px; height: 130px; right: -30px; }
}
@media (max-width: 640px) {
  .container { padding: 0 22px; }
  .hero { padding-top: 48px; }
  .hero-sub { font-size: 17px; }
  .cta-row { flex-direction: column; gap: 20px; }
  .cta-row.left { align-items: flex-start; }
  .btn-ghost { display: none; }
  .tail-grid { grid-template-columns: 1fr; }
  .tile { width: 320px; }
  .drag-cue { display: block; margin: 8px 0 0; }
  .scroll-row { padding: 10px 22px 16px; }
  .site-header.shrink .nav-shell { padding-left: 18px; }
}
