/* =========================================================
   Letterim — VIRAL EDITION
   Built for scroll-stopping ads (FB / TikTok / IG)
   Loud but warm. Sticker energy. High-conversion.
   ========================================================= */

@import url("https://fonts.googleapis.com/css2?family=Bricolage+Grotesque:opsz,wght@12..96,400;12..96,600;12..96,700;12..96,800&family=DM+Sans:opsz,wght@9..40,400;9..40,500;9..40,600;9..40,700&family=DM+Mono:wght@400;500&display=swap");

:root {
  /* official brand palette */
  --coral: #F24E33;
  --coral-dark: #D43E25;
  --yolk: #FBCE2E;
  --lime: #C7F277;
  --sky: #B6E3FF;
  --plum: #2A1816;
  --ink: #181410;
  --ink-2: #3A2C25;
  --cream: #F7EFDA;
  --cream-2: #F0E5C7;
  --paper: #FBF6E9;
  --pink: #FFD3CC;
  --soft: rgba(24,20,16,0.62);
  --hair: rgba(24,20,16,0.12);

  --sans: "DM Sans", "Helvetica Neue", system-ui, sans-serif;
  --display: "Bricolage Grotesque", "DM Sans", sans-serif;
  --mono: "DM Mono", ui-monospace, Menlo, monospace;

  --gutter: clamp(20px, 4vw, 56px);
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  font-family: var(--sans);
  color: var(--ink);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: 0; background: transparent; }

::selection { background: var(--yolk); color: var(--ink); }

/* ========== TOP URGENCY BAR ========== */
.urgency {
  position: sticky;
  top: 0;
  z-index: 200;
  background: var(--ink);
  color: var(--cream);
  font-family: var(--mono);
  font-size: 13px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 10px 16px;
  display: flex;
  justify-content: center;
  gap: 18px;
  align-items: center;
  white-space: nowrap;
}
.urgency .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--coral); animation: pulse 1.6s ease-in-out infinite; }
.urgency strong { color: var(--yolk); font-weight: 700; }
.urgency .sep { opacity: 0.4; }
.urgency .cd { color: var(--yolk); font-variant-numeric: tabular-nums; }
@keyframes pulse { 0%,100%{transform:scale(1);opacity:1} 50%{transform:scale(1.4);opacity:0.6} }

/* ========== NAV ========== */
.nav {
  position: sticky; top: 38px; z-index: 150;
  background: var(--paper);
  border-bottom: 1.5px solid var(--ink);
  padding: 14px var(--gutter);
  display: flex; justify-content: space-between; align-items: center;
}
.nav .brand {
  font-family: var(--display); font-weight: 800; font-size: 26px; letter-spacing: -0.02em;
  display: inline-flex; align-items: center; gap: 8px;
}
.nav .brand::before {
  content: ""; width: 36px; height: 36px;
  display: inline-block;
  background-image: url("../assets/logo/letterim-icon.svg");
  background-size: contain;
  background-repeat: no-repeat;
  margin-right: 12px;
  vertical-align: -11px;
}
.nav-links { display: flex; gap: 28px; font-size: 15px; font-weight: 500; }
.nav-links a { transition: color .15s; }
.nav-links a:hover { color: var(--coral); }
.nav .cta {
  background: var(--ink); color: var(--cream);
  padding: 12px 18px; border-radius: 999px;
  font-weight: 600; font-size: 14px;
  display: inline-flex; align-items: center; gap: 8px;
  transition: transform .15s;
}
.nav .cta:hover { transform: translateY(-1px) rotate(-1deg); background: var(--coral); }
@media (max-width: 880px) { .nav-links { display: none; } }

/* ========== BUTTONS ========== */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 18px 28px;
  border-radius: 999px;
  font-family: var(--sans); font-weight: 700; font-size: 17px;
  letter-spacing: -0.005em;
  transition: transform .12s ease, box-shadow .12s ease, background .15s;
  white-space: nowrap;
  cursor: pointer;
}
.btn-primary {
  background: var(--coral); color: white;
  box-shadow: 0 0 0 2px var(--ink), 6px 6px 0 var(--ink);
}
.btn-primary:hover { transform: translate(-2px,-2px); box-shadow: 0 0 0 2px var(--ink), 8px 8px 0 var(--ink); }
.btn-primary:active { transform: translate(2px,2px); box-shadow: 0 0 0 2px var(--ink), 2px 2px 0 var(--ink); }
.btn-yolk {
  background: var(--yolk); color: var(--ink);
  box-shadow: 0 0 0 2px var(--ink), 6px 6px 0 var(--ink);
}
.btn-yolk:hover { transform: translate(-2px,-2px); box-shadow: 0 0 0 2px var(--ink), 8px 8px 0 var(--ink); }
.btn-ink {
  background: var(--ink); color: var(--cream);
}
.btn-ghost {
  background: transparent; color: var(--ink);
  box-shadow: inset 0 0 0 2px var(--ink);
}
.btn-ghost:hover { background: var(--ink); color: var(--cream); }
.btn .arrow { transition: transform .15s; }
.btn:hover .arrow { transform: translateX(4px); }

/* ========== HERO ========== */
.hero {
  position: relative;
  padding: 60px var(--gutter) 100px;
  background: var(--paper);
  overflow: hidden;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 50px;
  align-items: center;
  max-width: 1400px;
  margin: 0 auto;
}
@media (max-width: 960px) { .hero-grid { grid-template-columns: 1fr; gap: 30px; } }

.hero-pill {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--mono); font-size: 12px; letter-spacing: 0.06em; text-transform: uppercase;
  background: white; color: var(--ink);
  padding: 8px 14px; border-radius: 999px;
  box-shadow: 0 0 0 1.5px var(--ink);
  margin-bottom: 28px;
}
.hero-pill .e { font-size: 14px; }
.hero-pill .dot { width: 7px; height: 7px; border-radius: 50%; background: #1BAA5C; animation: pulse 1.4s ease-in-out infinite; }

.hero h1 {
  font-family: var(--display); font-weight: 800;
  font-size: clamp(50px, 8.4vw, 116px);
  line-height: 0.9;
  letter-spacing: -0.04em;
  margin: 0 0 28px;
  color: var(--ink);
}
.hero h1 .strike { text-decoration: line-through; text-decoration-color: var(--coral); text-decoration-thickness: 6px; color: var(--soft); }
.hero h1 .hl { background: var(--yolk); padding: 0 12px; border-radius: 12px; display: inline-block; transform: rotate(-1.5deg); box-shadow: 4px 4px 0 var(--ink); }
.hero h1 em { font-style: italic; color: var(--coral); font-family: var(--display); font-weight: 700; }

.hero-lead {
  font-size: 20px; line-height: 1.45; color: var(--ink-2);
  max-width: 480px; margin: 0 0 32px;
}
.hero-lead strong { color: var(--ink); }

.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; align-items: center; }
.hero-meta-row {
  margin-top: 26px;
  display: flex; gap: 22px; flex-wrap: wrap;
  font-size: 14px; color: var(--ink-2); font-weight: 500;
}
.hero-meta-row span { display: inline-flex; align-items: center; gap: 8px; }
.hero-meta-row .check {
  width: 18px; height: 18px; border-radius: 50%;
  background: var(--lime); display: inline-flex; align-items: center; justify-content: center;
  box-shadow: 0 0 0 1.5px var(--ink);
}
.hero-meta-row .check::after { content: "✓"; font-size: 11px; font-weight: 700; }

/* hero right card */
.hero-right { position: relative; min-height: 540px; }

.hero-card {
  position: relative;
  background: var(--coral);
  border-radius: 28px;
  padding: 36px 32px 32px;
  color: white;
  box-shadow: 0 0 0 2px var(--ink), 14px 14px 0 var(--ink);
  transform: rotate(-1.5deg);
  z-index: 2;
  max-width: 460px;
  margin-left: auto;
}
.hero-card .top-row {
  display: flex; justify-content: space-between; align-items: flex-start;
  font-family: var(--mono); font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase;
  opacity: 0.85;
  margin-bottom: 26px;
}
.hero-card h3 {
  font-family: var(--display); font-weight: 700;
  font-size: 30px; line-height: 1.08; letter-spacing: -0.02em;
  margin: 0 0 22px;
}
.hero-card h3 em { font-style: italic; font-weight: 800; color: var(--yolk); }

.translator-mini {
  background: rgba(255,255,255,0.16);
  border: 1.5px dashed rgba(255,255,255,0.4);
  border-radius: 18px;
  padding: 18px 18px 16px;
  margin-bottom: 18px;
}
.translator-mini .lbl { font-family: var(--mono); font-size: 10px; letter-spacing: 0.12em; text-transform: uppercase; opacity: 0.75; }
.translator-mini .pair {
  margin-top: 8px; display: flex; align-items: baseline; gap: 10px; flex-wrap: wrap;
  font-family: var(--display); font-weight: 700; font-size: 22px; line-height: 1.15;
}
.translator-mini .from { text-decoration: line-through; text-decoration-thickness: 3px; opacity: 0.65; transition: opacity .3s; }
.translator-mini .to { color: var(--yolk); transition: opacity .3s; }

.hero-card .stat-row {
  display: grid; grid-template-columns: 1fr 1fr 1fr;
  gap: 12px; padding-top: 18px; border-top: 1.5px solid rgba(255,255,255,0.25);
}
.hero-card .stat .n { font-family: var(--display); font-weight: 800; font-size: 30px; line-height: 1; }
.hero-card .stat .l { font-size: 11px; opacity: 0.8; text-transform: uppercase; letter-spacing: 0.06em; margin-top: 4px; }

/* floating stickers around hero card */
.sticker {
  position: absolute;
  background: var(--yolk); color: var(--ink);
  padding: 12px 18px;
  border-radius: 14px;
  font-family: var(--display); font-weight: 700; font-size: 15px;
  box-shadow: 0 0 0 1.5px var(--ink), 4px 4px 0 var(--ink);
  z-index: 3;
  white-space: nowrap;
}
.sticker.lime { background: var(--lime); }
.sticker.sky { background: var(--sky); }
.sticker.pink { background: var(--pink); }
.sticker.white { background: white; }

.sticker-stars { top: -18px; left: -22px; transform: rotate(-8deg); font-size: 13px; }
.sticker-money { bottom: 40px; left: -40px; transform: rotate(-6deg); }
.sticker-fire { top: 30%; right: -32px; transform: rotate(6deg); }
.sticker-emoji {
  position: absolute;
  font-size: 56px;
  filter: drop-shadow(2px 4px 0 var(--ink));
}
.emoji-1 { top: -50px; right: 12%; transform: rotate(12deg); animation: bounceY 4s ease-in-out infinite; }
.emoji-2 { bottom: -38px; right: -20px; transform: rotate(-12deg); animation: bounceY 4.4s ease-in-out infinite reverse; }
@keyframes bounceY { 0%,100%{transform:translateY(0) rotate(12deg);} 50%{transform:translateY(-12px) rotate(8deg);} }

/* ========== MARQUEE ========== */
.marquee {
  background: var(--ink); color: var(--cream);
  padding: 18px 0;
  overflow: hidden;
  border-block: 2px solid var(--ink);
  position: relative;
}
.marquee-track {
  display: flex; gap: 36px;
  animation: scroll 22s linear infinite;
  width: max-content;
}
.marquee span {
  font-family: var(--display); font-weight: 700; font-size: 28px;
  letter-spacing: -0.01em;
  display: inline-flex; align-items: center; gap: 36px;
}
.marquee em { color: var(--yolk); font-style: italic; font-weight: 800; }
.marquee .star { color: var(--coral); }
@keyframes scroll { 0%{transform:translateX(0)} 100%{transform:translateX(-50%)} }

/* ========== SECTION ========== */
.section { padding: 110px var(--gutter); }
.wrap { max-width: 1280px; margin: 0 auto; }
.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--mono); font-size: 12px; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--coral); font-weight: 500;
}
.eyebrow .num {
  background: var(--coral); color: white;
  padding: 3px 8px; border-radius: 4px;
  font-weight: 700;
}
.h2 {
  font-family: var(--display); font-weight: 800;
  font-size: clamp(42px, 6vw, 84px); line-height: 0.95;
  letter-spacing: -0.035em;
  margin: 20px 0 24px;
}
.h2 em { font-style: italic; color: var(--coral); font-weight: 700; }
.h2 .hl { background: var(--yolk); padding: 0 10px; border-radius: 10px; display: inline-block; transform: rotate(-1deg); box-shadow: 3px 3px 0 var(--ink); }

/* ========== MEME GRID (BEFORE / AFTER) ========== */
.meme-section { background: var(--cream); border-block: 2.5px solid var(--ink); }
.meme-head { text-align: center; max-width: 820px; margin: 0 auto 60px; }
.meme-row {
  display: grid; grid-template-columns: 1fr 80px 1fr;
  gap: 22px; align-items: stretch;
  margin-bottom: 22px;
}
@media (max-width: 820px) { .meme-row { grid-template-columns: 1fr; } .meme-row .arrow-cell { display: none; } }

.meme-card {
  background: white;
  border-radius: 20px;
  padding: 28px 28px 26px;
  box-shadow: 0 0 0 2px var(--ink), 6px 6px 0 var(--ink);
  position: relative;
}
.meme-card.bad { background: var(--pink); transform: rotate(-0.6deg); }
.meme-card.good { background: var(--lime); transform: rotate(0.6deg); }
.meme-card .tag {
  position: absolute; top: -14px; left: 24px;
  background: var(--ink); color: var(--cream);
  font-family: var(--mono); font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase;
  padding: 5px 11px; border-radius: 999px; font-weight: 500;
}
.meme-card .tag.live { background: var(--coral); color: white; }
.meme-card .label {
  font-family: var(--mono); font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--ink-2); margin-bottom: 12px;
}
.meme-card .quote {
  font-family: var(--display); font-weight: 700;
  font-size: clamp(22px, 2.4vw, 28px); line-height: 1.15; letter-spacing: -0.018em;
  color: var(--ink);
}
.meme-card .quote em { font-style: italic; color: var(--coral); }
.meme-card.good .quote em { color: var(--ink); background: white; padding: 0 6px; border-radius: 6px; }
.arrow-cell {
  display: flex; align-items: center; justify-content: center;
  font-family: var(--display); font-weight: 800; font-size: 48px; color: var(--coral);
}

/* ========== TRANSLATOR BIG ========== */
.translator-big { background: var(--ink); color: var(--cream); padding: 110px var(--gutter); }
.translator-big .wrap { max-width: 1100px; margin: 0 auto; }
.translator-big .eyebrow { color: var(--yolk); }
.translator-big .h2 { color: var(--cream); }
.translator-big .h2 em { color: var(--yolk); }

.flip-list { margin-top: 60px; display: flex; flex-direction: column; gap: 14px; }
.flip-row {
  background: rgba(255,245,228,0.06);
  border: 1.5px solid rgba(255,245,228,0.2);
  border-radius: 18px;
  padding: 22px 28px;
  display: grid; grid-template-columns: 1fr 60px 1.6fr;
  align-items: center;
  gap: 20px;
  font-family: var(--display); font-weight: 700;
  font-size: clamp(22px, 2.6vw, 32px); letter-spacing: -0.02em;
  cursor: pointer;
  transition: transform .2s, background .2s, border-color .2s;
}
.flip-row:hover { background: var(--coral); border-color: var(--coral); transform: translateX(6px); }
.flip-row .from { color: var(--cream); }
.flip-row .arr { color: var(--yolk); font-size: 28px; }
.flip-row:hover .arr { color: white; }
.flip-row .to { color: var(--yolk); font-style: italic; font-weight: 700; }
.flip-row:hover .to { color: white; }
@media (max-width: 720px) { .flip-row { grid-template-columns: 1fr; gap: 6px; font-size: 22px; } .flip-row .arr { display:none; } }

/* ========== WHAT YOU GET ========== */
.get-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 18px;
  margin-top: 56px;
}
.get {
  grid-column: span 4;
  background: white;
  border-radius: 22px;
  padding: 30px;
  box-shadow: 0 0 0 2px var(--ink), 6px 6px 0 var(--ink);
  position: relative;
}
.get.big { grid-column: span 6; background: var(--yolk); }
.get.coral { background: var(--coral); color: white; }
.get.sky { background: var(--sky); }
.get.lime { background: var(--lime); }
.get.pink { background: var(--pink); }
.get.wide { grid-column: span 12; background: var(--ink); color: var(--cream); }
.get .num {
  font-family: var(--mono); font-size: 12px; letter-spacing: 0.1em;
  display: inline-block;
  padding: 4px 10px; border-radius: 999px;
  background: var(--ink); color: var(--cream);
  font-weight: 500;
}
.get.coral .num, .get.wide .num { background: white; color: var(--ink); }
.get h4 {
  font-family: var(--display); font-weight: 700;
  font-size: 26px; line-height: 1.12; letter-spacing: -0.02em;
  margin: 16px 0 10px;
}
.get.big h4, .get.wide h4 { font-size: 34px; }
.get p { font-size: 15px; line-height: 1.5; color: inherit; opacity: 0.92; margin: 0; }
.get .emoji-corner {
  position: absolute; top: 18px; right: 20px; font-size: 36px;
}
@media (max-width: 880px) {
  .get, .get.big, .get.wide { grid-column: span 12; }
}

/* ========== PRICING / OFFER ========== */
.offer-section {
  background: var(--coral);
  border-block: 2.5px solid var(--ink);
  padding: 100px var(--gutter);
  position: relative;
  overflow: hidden;
}
.offer-section::before {
  content: ""; position: absolute; inset: 0;
  background-image: radial-gradient(circle, rgba(255,255,255,0.18) 2px, transparent 2.4px);
  background-size: 32px 32px;
  pointer-events: none; opacity: 0.5;
}
.offer-section > .wrap { position: relative; }
.offer-section .eyebrow { color: var(--yolk); }
.offer-section .h2 { color: white; text-align: center; max-width: 14ch; margin: 16px auto 50px; }
.offer-section .h2 em { color: var(--yolk); }

.offer-card {
  background: var(--paper);
  border-radius: 28px;
  max-width: 540px; margin: 0 auto;
  padding: 40px 36px 36px;
  box-shadow: 0 0 0 3px var(--ink), 14px 14px 0 var(--ink);
  position: relative;
}
.offer-card .badge-corner {
  position: absolute; top: -22px; right: -22px;
  background: var(--yolk); color: var(--ink);
  width: 110px; height: 110px; border-radius: 50%;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  font-family: var(--display); font-weight: 800;
  box-shadow: 0 0 0 2px var(--ink), 4px 4px 0 var(--ink);
  transform: rotate(8deg);
  text-align: center;
  line-height: 1;
}
.offer-card .badge-corner .big { font-size: 32px; }
.offer-card .badge-corner .sm { font-size: 11px; font-weight: 600; margin-top: 4px; letter-spacing: 0.02em; }

.offer-card .price-block { text-align: center; margin-bottom: 24px; }
.offer-card .crossed {
  font-family: var(--display); font-size: 22px; color: var(--soft);
  text-decoration: line-through; text-decoration-color: var(--coral); text-decoration-thickness: 3px;
}
.offer-card .price {
  font-family: var(--display); font-weight: 800;
  font-size: 96px; line-height: 0.9; letter-spacing: -0.04em;
  margin-top: -6px;
}
.offer-card .price .dollar { font-size: 44px; vertical-align: top; }
.offer-card .sub-price { color: var(--ink-2); font-size: 14px; margin-top: 6px; }

.offer-card ul { list-style: none; padding: 0; margin: 24px 0 28px; display: flex; flex-direction: column; gap: 10px; }
.offer-card li { font-size: 15.5px; display: flex; align-items: flex-start; gap: 10px; }
.offer-card li::before {
  content: "✓"; flex-shrink: 0; width: 22px; height: 22px; border-radius: 50%;
  background: var(--lime); color: var(--ink); font-weight: 800; font-size: 12px;
  display: inline-flex; align-items: center; justify-content: center;
  box-shadow: 0 0 0 1.5px var(--ink);
}
.offer-card .btn { width: 100%; justify-content: center; padding: 22px; font-size: 19px; }
.offer-card .guarantee {
  margin-top: 16px; text-align: center; font-size: 13px; color: var(--ink-2);
  font-family: var(--mono); letter-spacing: 0.04em;
}
.offer-card .stock {
  display: flex; align-items: center; gap: 10px; justify-content: center;
  margin-top: 14px; font-family: var(--mono); font-size: 12px; color: var(--coral); font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.06em;
}
.offer-card .stock-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--coral); animation: pulse 1.4s ease-in-out infinite; }

/* ========== MAPS RAIL ========== */
.maps-rail { padding: 110px 0; background: var(--paper); }
.maps-rail .wrap-head { padding: 0 var(--gutter); max-width: 1280px; margin: 0 auto 50px; }
.maps-scroll {
  display: flex; gap: 22px;
  overflow-x: auto;
  padding: 30px var(--gutter) 60px;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
}
.maps-scroll::-webkit-scrollbar { height: 10px; }
.maps-scroll::-webkit-scrollbar-thumb { background: var(--ink); border-radius: 999px; }
.map-card {
  flex: 0 0 320px;
  scroll-snap-align: start;
  background: white;
  border-radius: 22px;
  padding: 28px;
  box-shadow: 0 0 0 2px var(--ink), 6px 6px 0 var(--ink);
  display: flex; flex-direction: column;
  position: relative;
  transition: transform .15s;
}
.map-card:hover { transform: translateY(-4px) rotate(-0.5deg); }
.map-card.flag { background: var(--yolk); transform: rotate(-1deg); }
.map-card.flag:hover { transform: translateY(-4px) rotate(-1.5deg); }
.map-card .meta { font-family: var(--mono); font-size: 11px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--ink-2); margin-bottom: 8px; }
.map-card h5 { font-family: var(--display); font-weight: 800; font-size: 30px; letter-spacing: -0.02em; margin: 4px 0 12px; line-height: 1; }
.map-card .price-row { display: flex; align-items: baseline; gap: 8px; margin-bottom: 14px; }
.map-card .price-row .p { font-family: var(--display); font-weight: 800; font-size: 36px; color: var(--ink); }
.map-card .price-row .ws { font-family: var(--mono); font-size: 11px; color: var(--ink-2); text-transform: uppercase; }
.map-card p { font-size: 14.5px; line-height: 1.5; color: var(--ink-2); margin: 0 0 18px; flex: 1; }
.map-card .pill { display: inline-flex; align-items: center; gap: 6px; font-size: 12px; font-weight: 600; padding: 5px 10px; border-radius: 999px; background: var(--cream-2); margin-bottom: 14px; }
.map-card .pill.hot { background: var(--coral); color: white; }
.map-card .pill.new { background: var(--lime); color: var(--ink); }
.map-card .btn { width: 100%; justify-content: center; padding: 14px; font-size: 14.5px; }

/* ========== TESTIMONIAL WALL ========== */
.wall { padding: 110px var(--gutter); background: var(--cream); border-block: 2.5px solid var(--ink); }
.wall .h2 { text-align: center; max-width: 20ch; margin: 16px auto 60px; }
.wall-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  max-width: 1280px; margin: 0 auto;
}
@media (max-width: 920px) { .wall-grid { grid-template-columns: 1fr; } }
.testi {
  background: white;
  border-radius: 20px;
  padding: 26px 26px 22px;
  box-shadow: 0 0 0 2px var(--ink), 5px 5px 0 var(--ink);
}
.testi.y { background: var(--yolk); }
.testi.l { background: var(--lime); }
.testi.p { background: var(--pink); }
.testi.s { background: var(--sky); }
.testi.c { background: var(--coral); color: white; }
.testi .stars { color: var(--coral); font-size: 18px; letter-spacing: 2px; margin-bottom: 10px; }
.testi.c .stars { color: var(--yolk); }
.testi blockquote { font-family: var(--display); font-weight: 700; font-size: 21px; line-height: 1.2; letter-spacing: -0.015em; margin: 0 0 16px; }
.testi blockquote em { font-style: italic; color: var(--coral); }
.testi.c blockquote em { color: var(--yolk); }
.testi .who { display: flex; align-items: center; gap: 12px; font-size: 13px; }
.testi .avi { width: 36px; height: 36px; border-radius: 50%; background: var(--ink); color: var(--cream); display: flex; align-items: center; justify-content: center; font-weight: 700; font-family: var(--display); font-size: 14px; box-shadow: 0 0 0 1.5px var(--ink); }
.testi .who strong { display: block; font-weight: 700; }
.testi .who span { color: var(--ink-2); font-size: 12px; }
.testi.c .who span { color: rgba(255,255,255,0.85); }

/* ========== FAQ ========== */
.faq-section { padding: 110px var(--gutter); }
.faq-grid { max-width: 880px; margin: 50px auto 0; display: flex; flex-direction: column; gap: 12px; }
.faq-item {
  background: var(--paper);
  border: 2px solid var(--ink);
  border-radius: 18px;
  padding: 22px 26px;
  cursor: pointer;
  transition: background .15s;
}
.faq-item[open] { background: var(--yolk); }
.faq-item summary {
  list-style: none;
  display: flex; justify-content: space-between; align-items: center;
  font-family: var(--display); font-weight: 700; font-size: 21px; letter-spacing: -0.015em;
  cursor: pointer;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+"; font-size: 30px; font-weight: 600; transition: transform .2s;
}
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item p { margin: 14px 0 0; font-size: 16px; line-height: 1.55; color: var(--ink-2); }

/* ========== FINAL CTA ========== */
.final {
  padding: 130px var(--gutter);
  background: var(--ink); color: var(--cream);
  text-align: center;
  position: relative; overflow: hidden;
}
.final::before, .final::after {
  content: ""; position: absolute;
  width: 360px; height: 360px; border-radius: 50%;
  filter: blur(80px); opacity: 0.4; pointer-events: none;
}
.final::before { background: var(--coral); top: -100px; left: -100px; }
.final::after { background: var(--yolk); bottom: -120px; right: -100px; }
.final .h2 { color: var(--cream); position: relative; max-width: 18ch; margin: 0 auto 36px; }
.final .h2 em { color: var(--yolk); }
.final .actions { position: relative; display: flex; justify-content: center; gap: 14px; flex-wrap: wrap; }
.final .micro { position: relative; margin-top: 26px; font-family: var(--mono); font-size: 12px; color: rgba(255,245,228,0.7); letter-spacing: 0.06em; }

/* ========== FOOTER ========== */
.foot { padding: 50px var(--gutter); background: var(--paper); border-top: 2px solid var(--ink); }
.foot-inner { max-width: 1280px; margin: 0 auto; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 18px; font-size: 13.5px; color: var(--ink-2); font-family: var(--mono); }
.foot-inner .brand { font-family: var(--display); font-weight: 800; color: var(--ink); font-size: 22px; }
.foot-inner a { color: var(--ink-2); margin-left: 18px; }
.foot-inner a:hover { color: var(--coral); }

/* ========== POPUP: SOCIAL PROOF TOAST ========== */
.toast {
  position: fixed; bottom: 24px; left: 24px; z-index: 180;
  background: var(--paper);
  border-radius: 14px;
  padding: 12px 16px 12px 12px;
  box-shadow: 0 0 0 2px var(--ink), 5px 5px 0 var(--ink);
  display: flex; align-items: center; gap: 12px;
  max-width: 340px;
  font-size: 13px;
  transform: translateY(140%);
  opacity: 0;
  transition: transform .35s cubic-bezier(.2,.9,.3,1.2), opacity .25s;
}
.toast.show { transform: translateY(0); opacity: 1; }
.toast .avi {
  width: 38px; height: 38px; border-radius: 50%;
  background: var(--coral); color: white;
  display: flex; align-items: center; justify-content: center;
  font-weight: 800; font-family: var(--display); font-size: 16px;
  box-shadow: 0 0 0 1.5px var(--ink);
  flex-shrink: 0;
}
.toast .body strong { font-weight: 700; }
.toast .body .time { font-family: var(--mono); font-size: 11px; color: var(--ink-2); margin-top: 2px; display: block; }
.toast .close { position: absolute; top: 6px; right: 8px; font-size: 14px; color: var(--ink-2); cursor: pointer; line-height: 1; }
@media (max-width: 560px) { .toast { left: 12px; right: 12px; max-width: none; bottom: 80px; } }

/* ========== POPUP: EXIT INTENT ========== */
.modal-veil {
  position: fixed; inset: 0; z-index: 300;
  background: rgba(24,18,15,0.7);
  display: none;
  align-items: center; justify-content: center;
  padding: 20px;
  backdrop-filter: blur(6px);
  animation: fadeIn .25s;
}
.modal-veil.show { display: flex; }
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
.modal {
  background: var(--paper);
  border-radius: 28px;
  max-width: 540px; width: 100%;
  padding: 44px 40px 36px;
  box-shadow: 0 0 0 3px var(--ink), 14px 14px 0 var(--ink);
  position: relative;
  text-align: center;
  animation: pop .35s cubic-bezier(.2,.9,.3,1.3);
}
@keyframes pop { from { transform: scale(.85) rotate(-3deg); opacity: 0; } to { transform: scale(1) rotate(0); opacity: 1; } }
.modal .close-x {
  position: absolute; top: 14px; right: 18px;
  font-size: 28px; color: var(--ink-2); cursor: pointer; line-height: 1;
}
.modal .emoji-big { font-size: 60px; filter: drop-shadow(2px 4px 0 var(--ink)); display: inline-block; transform: rotate(-8deg); margin-bottom: 8px; }
.modal h3 {
  font-family: var(--display); font-weight: 800;
  font-size: 38px; line-height: 1; letter-spacing: -0.025em;
  margin: 8px 0 12px;
}
.modal h3 em { font-style: italic; color: var(--coral); }
.modal p { color: var(--ink-2); font-size: 16px; line-height: 1.5; margin: 0 0 24px; }
.modal .code-box {
  background: var(--yolk); border-radius: 14px; padding: 14px 18px;
  box-shadow: 0 0 0 2px var(--ink);
  display: inline-flex; flex-direction: column; align-items: center; margin-bottom: 18px;
}
.modal .code-box .lbl { font-family: var(--mono); font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--ink-2); }
.modal .code-box .code { font-family: var(--display); font-weight: 800; font-size: 32px; letter-spacing: 0.1em; }
.modal .btn { width: 100%; justify-content: center; padding: 18px; font-size: 17px; }
.modal .tiny { margin-top: 14px; font-family: var(--mono); font-size: 11px; color: var(--ink-2); letter-spacing: 0.04em; }

/* ========== STICKY MOBILE CTA ========== */
.sticky-cta {
  position: fixed; bottom: 16px; left: 16px; right: 16px; z-index: 170;
  background: var(--coral); color: white;
  padding: 14px 18px;
  border-radius: 16px;
  box-shadow: 0 0 0 2px var(--ink), 5px 5px 0 var(--ink);
  display: none; align-items: center; justify-content: space-between; gap: 12px;
  font-weight: 700;
}
.sticky-cta .arrow-circle { width: 36px; height: 36px; border-radius: 50%; background: var(--yolk); color: var(--ink); display: flex; align-items: center; justify-content: center; font-weight: 800; font-size: 18px; box-shadow: 0 0 0 1.5px var(--ink); }
.sticky-cta.show { display: flex; animation: pop .3s; }
.sticky-cta .lbl { font-family: var(--mono); font-size: 11px; letter-spacing: 0.06em; text-transform: uppercase; opacity: 0.9; display: block; font-weight: 500; }
.sticky-cta .big { font-family: var(--display); font-weight: 800; font-size: 17px; }

/* utilities */
.center { text-align: center; }
.rotate-l { display: inline-block; transform: rotate(-2deg); }
.rotate-r { display: inline-block; transform: rotate(2deg); }

/* ========================================================
   PAGE-SPECIFIC ADDITIONS
   ======================================================== */

/* ---------- shared sub-page hero ---------- */
.page-hero {
  position: relative;
  padding: 60px var(--gutter) 70px;
  overflow: hidden;
  background: var(--paper);
}
.page-hero.cream { background: var(--cream); border-bottom: 2.5px solid var(--ink); }
.page-hero.dark { background: var(--ink); color: var(--cream); }
.page-hero.dark .crumbs a, .page-hero.dark .crumbs span { color: rgba(255,245,228,0.7); }
.page-hero.dark h1 { color: var(--cream); }
.page-hero .inner { max-width: 1280px; margin: 0 auto; position: relative; }

.crumbs {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-2);
  display: flex; gap: 10px;
  margin-bottom: 26px;
  flex-wrap: wrap;
}
.crumbs a:hover { color: var(--coral); }
.crumbs .sep { opacity: 0.4; }

.page-hero h1 {
  font-family: var(--display); font-weight: 800;
  font-size: clamp(48px, 8vw, 104px);
  line-height: 0.92;
  letter-spacing: -0.035em;
  margin: 0;
  max-width: 14ch;
}
.page-hero h1 em { font-style: italic; color: var(--coral); font-family: var(--display); }
.page-hero h1 .hl { background: var(--yolk); padding: 0 12px; border-radius: 12px; display: inline-block; transform: rotate(-1.5deg); box-shadow: 4px 4px 0 var(--ink); }
.page-hero .lead {
  font-size: 19px; line-height: 1.45; color: var(--ink-2);
  max-width: 50ch; margin: 26px 0 0;
}
.page-hero.dark .lead { color: rgba(255,245,228,0.85); }
.page-hero .actions { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 32px; }

/* ---------- form fields (chunky) ---------- */
.field-group { display: flex; flex-direction: column; gap: 18px; }
.field {
  display: flex; flex-direction: column; gap: 8px;
}
.field label {
  font-family: var(--mono); font-size: 11px;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--ink-2); font-weight: 500;
  display: flex; justify-content: space-between; align-items: center;
}
.field label .hint { color: var(--soft); font-weight: 400; }
.field input, .field textarea, .field select {
  font-family: var(--sans); font-weight: 500;
  font-size: 18px;
  background: white;
  border: 2px solid var(--ink);
  border-radius: 12px;
  padding: 14px 16px;
  color: var(--ink);
  outline: none;
  transition: box-shadow .15s, transform .15s;
  font-variant-numeric: tabular-nums;
}
.field input:focus, .field textarea:focus, .field select:focus {
  box-shadow: 4px 4px 0 var(--ink);
  transform: translate(-1px,-1px);
}
.field textarea { min-height: 96px; resize: vertical; line-height: 1.45; }
.field input::placeholder, .field textarea::placeholder { color: rgba(24,18,15,0.4); font-style: italic; }

.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
@media (max-width: 620px) { .field-row { grid-template-columns: 1fr; } }

/* ---------- pick tiles (radio/segmented) ---------- */
.pick-row {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 10px;
}
.pick-tile {
  background: white; color: var(--ink);
  border: 2px solid var(--ink);
  border-radius: 14px;
  padding: 16px 18px;
  cursor: pointer;
  display: flex; flex-direction: column; gap: 6px;
  text-align: left;
  transition: transform .15s, background .15s, box-shadow .15s;
}
.pick-tile:hover { transform: translate(-1px,-1px); box-shadow: 3px 3px 0 var(--ink); }
.pick-tile.active { background: var(--coral); color: white; box-shadow: 4px 4px 0 var(--ink); transform: translate(-2px,-2px); }
.pick-tile .l { font-family: var(--display); font-weight: 700; font-size: 18px; letter-spacing: -0.01em; }
.pick-tile .p { font-family: var(--mono); font-size: 11px; letter-spacing: 0.06em; opacity: 0.7; }
.pick-tile.active .p { opacity: 1; color: var(--yolk); }

/* ---------- toggle ---------- */
.toggle-row {
  background: white;
  border: 2px solid var(--ink);
  border-radius: 16px;
  padding: 18px 20px;
  display: grid; grid-template-columns: 1fr auto;
  align-items: center; gap: 16px;
  transition: background .15s;
}
.toggle-row.on { background: var(--yolk); }
.toggle-row .l { font-family: var(--display); font-weight: 700; font-size: 19px; line-height: 1.2; letter-spacing: -0.01em; }
.toggle-row .l em { font-style: italic; color: var(--coral); }
.toggle-row .l small { display: block; font-family: var(--mono); font-size: 11px; color: var(--ink-2); font-weight: 400; letter-spacing: 0.06em; text-transform: uppercase; margin-top: 4px; }
.tog {
  width: 56px; height: 30px; border-radius: 999px;
  background: var(--cream-2);
  border: 1.5px solid var(--ink);
  position: relative;
  cursor: pointer;
  transition: background .2s;
  flex-shrink: 0;
}
.tog::after {
  content: ""; position: absolute;
  top: 2px; left: 2px;
  width: 23px; height: 23px;
  background: var(--ink); border-radius: 50%;
  transition: transform .2s;
}
.tog.on { background: var(--coral); }
.tog.on::after { transform: translateX(26px); background: white; }

/* ---------- detail rows (used for product/maps detail) ---------- */
.detail-row {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 0;
  border-block: 2.5px solid var(--ink);
  margin-top: -2.5px;
}
.detail-row > div {
  padding: 80px var(--gutter);
}
.detail-row .left {
  display: flex; flex-direction: column; justify-content: center;
  gap: 22px;
}
.detail-row .right {
  background: var(--cream);
  border-left: 2.5px solid var(--ink);
  display: flex; flex-direction: column; gap: 18px; justify-content: center;
}
.detail-row.dark { background: var(--ink); color: var(--cream); }
.detail-row.dark .right { background: var(--plum); border-left-color: var(--cream); color: var(--cream); }
.detail-row.coral { background: var(--coral); color: white; }
.detail-row.coral .right { background: #b73122; border-left-color: var(--ink); color: white; }
.detail-row.yolk { background: var(--yolk); }
.detail-row.yolk .right { background: #ffc419; }
.detail-row.lime { background: var(--lime); }
.detail-row.lime .right { background: #b1e261; }
.detail-row.flip { direction: rtl; }
.detail-row.flip > * { direction: ltr; }
.detail-row.flip .right { border-left: 0; border-right: 2.5px solid var(--ink); }
.detail-row .meta {
  font-family: var(--mono); font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase;
  opacity: 0.7; display: flex; justify-content: space-between; gap: 16px;
}
.detail-row h2 {
  font-family: var(--display); font-weight: 800;
  font-size: clamp(42px, 5.6vw, 80px);
  line-height: 0.95; letter-spacing: -0.03em;
  margin: 0;
}
.detail-row h2 em { font-style: italic; color: inherit; }
.detail-row.dark h2 em, .detail-row .left h2 em { color: var(--coral); }
.detail-row.coral h2 em, .detail-row.yolk h2 em, .detail-row.lime h2 em { color: var(--ink); }
.detail-row.dark h2 em { color: var(--yolk); }
.detail-row .desc { font-size: 18px; line-height: 1.45; max-width: 36ch; }
.detail-row .price-line {
  display: flex; align-items: baseline; gap: 18px; flex-wrap: wrap;
}
.detail-row .price-line .price {
  font-family: var(--display); font-weight: 800;
  font-size: 64px; letter-spacing: -0.03em; line-height: 1;
}
.detail-row .price-line .pages {
  font-family: var(--mono); font-size: 12px; letter-spacing: 0.06em; text-transform: uppercase; opacity: 0.7;
}
.detail-row .ctas { display: flex; gap: 12px; flex-wrap: wrap; }

.feature-list { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 12px; }
.feature-list li {
  display: grid; grid-template-columns: 28px 1fr;
  gap: 14px; align-items: start;
  font-size: 16px; line-height: 1.45;
}
.feature-list li::before {
  content: "✓"; width: 24px; height: 24px; border-radius: 50%;
  background: var(--lime); color: var(--ink); font-weight: 800; font-size: 12px;
  display: inline-flex; align-items: center; justify-content: center;
  box-shadow: 0 0 0 1.5px var(--ink);
  margin-top: 1px;
}
.detail-row.dark .feature-list li::before { background: var(--yolk); }
.feature-list li strong { font-family: var(--display); font-weight: 700; font-style: italic; }

@media (max-width: 880px) {
  .detail-row { grid-template-columns: 1fr; }
  .detail-row.flip { direction: ltr; }
  .detail-row .right { border-left: 0; border-top: 2.5px solid var(--ink); }
  .detail-row.flip .right { border-right: 0; border-top: 2.5px solid var(--ink); }
  .detail-row > div { padding: 60px var(--gutter); }
}

/* ---------- compare table ---------- */
.compare {
  border: 2.5px solid var(--ink);
  border-radius: 18px;
  background: white;
  overflow: hidden;
  box-shadow: 8px 8px 0 var(--ink);
  margin-top: 40px;
}
.compare-grid {
  display: grid;
  grid-template-columns: 1.4fr repeat(5, 1fr);
}
.compare-grid > div {
  padding: 14px 14px;
  border-right: 1.5px solid var(--hair);
  border-bottom: 1.5px solid var(--hair);
  font-size: 14px;
}
.compare-grid .h {
  background: var(--ink); color: var(--cream);
  font-family: var(--mono); font-size: 11px; letter-spacing: 0.08em; text-transform: uppercase;
  font-weight: 500;
}
.compare-grid .h.feat { background: var(--yolk); color: var(--ink); }
.compare-grid .h .p { font-family: var(--display); font-weight: 800; font-size: 16px; display: block; margin-top: 2px; color: var(--yolk); letter-spacing: -0.01em; }
.compare-grid .h.feat .p { color: var(--coral); }
.compare-grid .row-label { font-family: var(--display); font-weight: 700; font-size: 15px; letter-spacing: -0.005em; color: var(--ink); }
.compare-grid .check { text-align: center; color: var(--coral); font-weight: 800; font-size: 16px; }
.compare-grid .empty { text-align: center; color: var(--soft); }
@media (max-width: 900px) {
  .compare-grid { font-size: 11px; }
  .compare-grid > div { padding: 8px 6px; }
  .compare-grid .row-label { font-size: 12px; }
}

/* ---------- chat companion ---------- */
.chat-card {
  background: var(--paper);
  border-radius: 22px;
  padding: 24px;
  box-shadow: 0 0 0 2px var(--ink), 6px 6px 0 var(--ink);
  display: flex; flex-direction: column; gap: 14px;
}
.chat-card .chat-h {
  display: flex; justify-content: space-between;
  font-family: var(--mono); font-size: 11px; letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--ink-2);
  padding-bottom: 12px; border-bottom: 1.5px solid var(--hair);
}
.chat-card .chat-h .live { color: var(--coral); display: inline-flex; align-items: center; gap: 6px; font-weight: 600; }
.chat-card .chat-h .live::before { content: ""; width: 7px; height: 7px; border-radius: 50%; background: var(--coral); animation: pulse 1.4s infinite; display: inline-block; }
.msg { display: flex; flex-direction: column; gap: 4px; }
.msg .who {
  font-family: var(--mono); font-size: 10px; letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--ink-2);
}
.msg .b {
  font-size: 15.5px; line-height: 1.5; padding: 12px 16px;
  border-radius: 14px; max-width: 90%;
}
.msg.you .b { background: var(--cream-2); align-self: flex-end; }
.msg.assistant .b { background: var(--coral); color: white; align-self: flex-start; }
.msg.assistant .b em { color: var(--yolk); font-style: italic; font-weight: 600; }

/* ---------- permission slips ---------- */
.slip-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 56px;
}
@media (max-width: 880px) { .slip-grid { grid-template-columns: 1fr; } }
.slip {
  background: white;
  border-radius: 20px;
  padding: 28px 26px 22px;
  box-shadow: 0 0 0 2px var(--ink), 6px 6px 0 var(--ink);
  display: flex; flex-direction: column; gap: 16px;
  position: relative;
  min-height: 240px;
}
.slip:nth-child(1) { background: var(--yolk); transform: rotate(-1.5deg); }
.slip:nth-child(2) { background: var(--lime); transform: rotate(0.8deg); }
.slip:nth-child(3) { background: var(--pink); transform: rotate(-0.6deg); }
.slip .stamp {
  font-family: var(--mono); font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase;
  display: flex; justify-content: space-between; align-items: center;
  border-bottom: 1.5px dashed var(--ink); padding-bottom: 10px;
}
.slip .stamp .dot { width: 14px; height: 14px; border-radius: 50%; border: 1.5px solid var(--ink); background: white; }
.slip .body {
  font-family: var(--display); font-weight: 700;
  font-size: 22px; line-height: 1.2; letter-spacing: -0.015em;
}
.slip .body strong { background: white; padding: 0 6px; border-radius: 6px; font-style: italic; font-weight: 700; }
.slip .sig {
  margin-top: auto; font-family: var(--mono); font-size: 11px; letter-spacing: 0.06em;
  color: var(--ink-2);
}

/* ---------- TOC list ---------- */
.toc-list {
  margin-top: 50px;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 12px 22px;
}
@media (max-width: 720px) { .toc-list { grid-template-columns: 1fr; } }
.toc-item {
  background: white;
  border: 2px solid var(--ink);
  border-radius: 14px;
  padding: 18px 22px;
  display: grid; grid-template-columns: 70px 1fr auto;
  gap: 16px; align-items: baseline;
  transition: transform .15s, background .15s;
}
.toc-item:hover { transform: translate(-1px,-1px); }
.toc-item.feat { background: var(--ink); color: var(--cream); }
.toc-item.feat .n { color: var(--yolk); }
.toc-item .n { font-family: var(--mono); font-size: 11px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--coral); font-weight: 600; }
.toc-item .t { font-family: var(--display); font-weight: 700; font-size: 17px; line-height: 1.25; letter-spacing: -0.01em; }
.toc-item .c { font-family: var(--mono); font-size: 11px; letter-spacing: 0.06em; color: var(--ink-2); }
.toc-item.feat .c { color: rgba(255,245,228,0.7); }

/* ---------- two-column layout ---------- */
.two-col {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 60px;
  max-width: 1280px; margin: 0 auto;
}
@media (max-width: 980px) { .two-col { grid-template-columns: 1fr; gap: 30px; } }

/* ---------- gift postcard ---------- */
.postcard {
  background: var(--paper);
  border-radius: 24px;
  padding: 36px 32px;
  box-shadow: 0 0 0 2.5px var(--ink), 14px 14px 0 var(--ink);
  display: flex; flex-direction: column; gap: 18px;
  position: relative;
  transform: rotate(-1.5deg);
  max-width: 480px;
  margin-left: auto;
}
.postcard::before {
  content: ""; position: absolute; inset: 14px;
  border: 1.5px dashed var(--ink); border-radius: 14px;
  pointer-events: none;
}
.postcard > * { position: relative; z-index: 1; }
.postcard .pc-h {
  display: flex; justify-content: space-between;
  font-family: var(--mono); font-size: 10px; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--ink-2);
  padding-bottom: 14px; border-bottom: 1px solid var(--hair);
}
.postcard .pc-to { font-family: var(--display); font-style: italic; font-weight: 700; font-size: 22px; color: var(--coral); }
.postcard .pc-head { font-family: var(--display); font-weight: 800; font-size: 34px; line-height: 1.05; letter-spacing: -0.025em; }
.postcard .pc-head em { font-style: italic; color: var(--coral); }
.postcard .pc-msg {
  font-family: var(--display); font-style: italic; font-weight: 600;
  font-size: 17px; line-height: 1.4;
  padding: 12px 16px; background: var(--yolk);
  border-radius: 10px;
  min-height: 60px;
  box-shadow: 0 0 0 1.5px var(--ink);
}
.postcard .pc-from { font-family: var(--display); font-weight: 700; font-size: 18px; }
.postcard .pc-ribbon {
  margin-top: auto; padding-top: 14px; border-top: 1px solid var(--hair);
  display: flex; justify-content: space-between; align-items: baseline;
  font-family: var(--mono); font-size: 11px; letter-spacing: 0.08em; text-transform: uppercase;
}
.postcard .pc-price { font-family: var(--display); font-weight: 800; font-size: 28px; letter-spacing: -0.02em; color: var(--coral); }

/* ---------- checkout summary ---------- */
.summary {
  background: var(--ink); color: var(--cream);
  border-radius: 24px;
  padding: 32px 28px;
  box-shadow: 0 0 0 2px var(--ink), 12px 12px 0 var(--coral);
  position: sticky; top: 90px;
}
.summary h3 {
  font-family: var(--mono); font-size: 12px; letter-spacing: 0.1em; text-transform: uppercase;
  margin: 0 0 18px; color: var(--yolk); font-weight: 600;
}
.summary .line {
  display: grid; grid-template-columns: 1fr auto;
  padding: 14px 0; gap: 12px;
  border-top: 1px solid rgba(255,245,228,0.18);
  align-items: baseline;
}
.summary .line:last-of-type { border-bottom: 1px solid rgba(255,245,228,0.18); }
.summary .line .title { font-family: var(--display); font-weight: 700; font-size: 19px; letter-spacing: -0.01em; }
.summary .line .title em { color: var(--yolk); font-style: italic; }
.summary .line .desc { font-family: var(--mono); font-size: 10px; letter-spacing: 0.06em; color: rgba(255,245,228,0.65); text-transform: uppercase; margin-top: 4px; grid-column: 1 / 2; }
.summary .line .price { font-family: var(--display); font-weight: 700; font-size: 19px; color: var(--cream); }
.summary .line.muted .price { color: var(--lime); }
.summary .totals { margin-top: 24px; }
.summary .totals .row {
  display: flex; justify-content: space-between;
  font-family: var(--mono); font-size: 12px; letter-spacing: 0.06em; text-transform: uppercase;
  color: rgba(255,245,228,0.65);
  padding: 4px 0;
}
.summary .totals .total {
  margin-top: 14px; padding-top: 18px;
  border-top: 1.5px solid var(--yolk);
  font-family: var(--display) !important; font-weight: 800;
  letter-spacing: -0.02em; text-transform: none !important;
}
.summary .totals .total .l { font-size: 22px; color: var(--cream); }
.summary .totals .total .v { font-size: 36px; color: var(--yolk); }
.summary .badge {
  margin-top: 22px;
  background: var(--coral); color: white;
  font-family: var(--display); font-weight: 800; font-size: 15px;
  padding: 12px 16px; border-radius: 12px;
  text-align: center;
  box-shadow: 0 0 0 1.5px var(--ink);
}
.summary .badge em { color: var(--yolk); font-style: italic; }
.summary .trust {
  margin-top: 18px;
  display: flex; flex-wrap: wrap; gap: 10px;
  font-family: var(--mono); font-size: 11px; letter-spacing: 0.06em; text-transform: uppercase;
  color: rgba(255,245,228,0.7);
}
.summary .trust span { display: inline-flex; gap: 6px; align-items: center; }
.summary .trust span::before { content: "✦"; color: var(--yolk); }

/* ---------- pay options ---------- */
.pay-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; margin-bottom: 24px; }
@media (max-width: 600px) { .pay-row { grid-template-columns: 1fr; } }
.pay-tile {
  background: white; border: 2px solid var(--ink); border-radius: 12px;
  padding: 14px 16px;
  display: flex; justify-content: space-between; align-items: center; gap: 10px;
  cursor: pointer;
  font-family: var(--display); font-weight: 700; font-size: 16px;
  transition: transform .15s, background .15s;
}
.pay-tile:hover { transform: translate(-1px,-1px); }
.pay-tile.active { background: var(--yolk); box-shadow: 4px 4px 0 var(--ink); transform: translate(-2px,-2px); }
.pay-tile .radio {
  width: 18px; height: 18px; border-radius: 50%; border: 2px solid var(--ink); flex-shrink: 0; position: relative;
}
.pay-tile.active .radio::after {
  content: ""; position: absolute; inset: 3px; background: var(--ink); border-radius: 50%;
}

/* ---------- step header ---------- */
.step-h {
  font-family: var(--mono); font-size: 12px; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--coral); font-weight: 600;
  display: inline-flex; align-items: center; gap: 10px;
}
.step-h .num {
  background: var(--coral); color: white;
  padding: 3px 9px; border-radius: 4px;
  font-weight: 700;
}
.step-block { margin-bottom: 48px; }
.step-block .step-title {
  font-family: var(--display); font-weight: 800;
  font-size: clamp(28px, 3.4vw, 38px); letter-spacing: -0.02em; line-height: 1.05;
  margin: 14px 0 24px;
}
.step-block .step-title em { font-style: italic; color: var(--coral); }

/* ---------- big closing line ---------- */
.closing-line {
  padding: 130px var(--gutter);
  text-align: center;
  background: var(--paper);
}
.closing-line p {
  font-family: var(--display); font-weight: 800;
  font-size: clamp(36px, 5.5vw, 76px);
  line-height: 1.02; letter-spacing: -0.03em;
  max-width: 22ch; margin: 0 auto;
}
.closing-line p em { font-style: italic; color: var(--coral); }
.closing-line p .hl { background: var(--yolk); padding: 0 10px; border-radius: 10px; display: inline-block; transform: rotate(-1deg); box-shadow: 3px 3px 0 var(--ink); }

/* ---------- preview orbit canvas ---------- */
.orbit-stage {
  background: var(--ink); color: var(--cream);
  border-radius: 28px;
  padding: 50px 36px;
  box-shadow: 0 0 0 2.5px var(--ink), 12px 12px 0 var(--coral);
  display: flex; flex-direction: column; align-items: center; gap: 28px;
  max-width: 520px; margin: 0 auto;
  position: relative;
  overflow: hidden;
}
.orbit-stage .status {
  font-family: var(--mono); font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--yolk); display: inline-flex; align-items: center; gap: 8px;
}
.orbit-stage .status::before { content: ""; width: 7px; height: 7px; border-radius: 50%; background: var(--yolk); animation: pulse 1.4s infinite; }
.orbit-ring { width: 280px; height: 280px; position: relative; }
.orbit-ring svg { width: 100%; height: 100%; }
.orbit-ring .ring { fill: none; stroke: rgba(255,245,228,0.22); }
.orbit-ring .dot { fill: var(--cream); }
.orbit-ring .dot.acc { fill: var(--coral); }
.orbit-ring text { font-family: var(--mono); font-size: 10px; letter-spacing: 0.1em; fill: rgba(255,245,228,0.65); text-transform: uppercase; }
.orbit-stage h2 {
  font-family: var(--display); font-weight: 700;
  font-size: 24px; line-height: 1.2; letter-spacing: -0.015em;
  text-align: center; margin: 0; color: var(--cream); max-width: 24ch;
}
.orbit-stage h2 em { font-style: italic; color: var(--yolk); }
.insight-card {
  display: none;
  background: var(--coral); color: white;
  border-radius: 16px;
  padding: 22px 24px;
  width: 100%;
  box-shadow: 0 0 0 1.5px var(--ink);
}
.insight-card.visible { display: block; }
.insight-card .lbl { font-family: var(--mono); font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--yolk); font-weight: 600; }
.insight-card .line { font-family: var(--display); font-weight: 700; font-size: 21px; line-height: 1.25; letter-spacing: -0.015em; margin: 10px 0 16px; }
.insight-card .line em { font-style: italic; color: var(--yolk); }
.insight-card .post { display: flex; justify-content: space-between; align-items: center; gap: 14px; flex-wrap: wrap; padding-top: 14px; border-top: 1.5px solid rgba(255,255,255,0.25); font-family: var(--mono); font-size: 11px; color: rgba(255,255,255,0.8); }

/* ---------- about / letter ---------- */
.letter-wrap {
  max-width: 760px; margin: 0 auto;
  padding: 90px var(--gutter);
}
.letter-wrap p {
  font-family: var(--display); font-weight: 500;
  font-size: 22px; line-height: 1.45; letter-spacing: -0.005em;
  color: var(--ink); margin: 0 0 22px;
}
.letter-wrap p em { font-style: italic; color: var(--coral); font-weight: 600; }
.letter-wrap p .hl { background: var(--yolk); padding: 0 6px; border-radius: 6px; box-shadow: 2px 2px 0 var(--ink); }
.letter-wrap blockquote {
  margin: 28px 0;
  padding: 22px 26px;
  background: var(--coral); color: white;
  border-radius: 18px;
  font-family: var(--display); font-weight: 700; font-style: italic;
  font-size: 28px; line-height: 1.18; letter-spacing: -0.02em;
  box-shadow: 0 0 0 2px var(--ink), 6px 6px 0 var(--ink);
  transform: rotate(-0.5deg);
}
.letter-wrap blockquote em { color: var(--yolk); }
.letter-wrap .signature {
  font-family: var(--display); font-weight: 800; font-style: italic;
  font-size: 48px; color: var(--coral); margin-top: 30px;
}
.letter-wrap .role { font-family: var(--mono); font-size: 12px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--ink-2); margin-top: 6px; }

.lena-portrait {
  background: linear-gradient(180deg, var(--pink) 0%, var(--coral) 100%);
  aspect-ratio: 4/5;
  border-radius: 22px;
  box-shadow: 0 0 0 2.5px var(--ink), 12px 12px 0 var(--ink);
  position: relative;
  display: flex; align-items: flex-end;
  padding: 22px;
  max-width: 380px;
  margin-left: auto;
  overflow: hidden;
}
.lena-portrait::before {
  content: ""; position: absolute; inset: 14px;
  border: 1.5px dashed white; border-radius: 14px;
  opacity: 0.4;
}
.lena-portrait::after {
  content: "👩‍🍼"; position: absolute;
  font-size: 140px; top: 50%; left: 50%;
  transform: translate(-50%, -55%);
  filter: drop-shadow(3px 4px 0 var(--ink));
}
.lena-portrait .caption {
  position: relative; z-index: 1;
  font-family: var(--mono); font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase;
  background: var(--ink); color: var(--cream);
  padding: 8px 12px; border-radius: 8px;
}

/* ---------- timeline (about) ---------- */
.tl-stickers {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 22px;
  margin-top: 56px;
}
@media (max-width: 880px) { .tl-stickers { grid-template-columns: 1fr 1fr; } }
@media (max-width: 540px) { .tl-stickers { grid-template-columns: 1fr; } }
.tl-card {
  background: white;
  border-radius: 18px;
  padding: 26px 22px;
  box-shadow: 0 0 0 2px var(--ink), 5px 5px 0 var(--ink);
  display: flex; flex-direction: column; gap: 12px;
  min-height: 220px;
}
.tl-card:nth-child(1) { background: var(--yolk); transform: rotate(-1.2deg); }
.tl-card:nth-child(2) { background: var(--lime); transform: rotate(0.6deg); }
.tl-card:nth-child(3) { background: var(--sky); transform: rotate(-0.4deg); }
.tl-card:nth-child(4) { background: var(--pink); transform: rotate(1deg); }
.tl-card .year {
  font-family: var(--display); font-weight: 800;
  font-size: 44px; letter-spacing: -0.03em; color: var(--coral);
  line-height: 1;
}
.tl-card h6 { font-family: var(--display); font-weight: 700; font-size: 20px; line-height: 1.18; letter-spacing: -0.015em; margin: 0; }
.tl-card p { font-size: 14px; line-height: 1.45; color: var(--ink-2); margin: auto 0 0; }
.tl-card p em { font-style: italic; color: var(--coral); font-weight: 600; }

/* ---------- faq sidebar (categories) ---------- */
.faq-layout {
  display: grid; grid-template-columns: 240px 1fr;
  gap: 60px;
  max-width: 1180px; margin: 0 auto;
}
@media (max-width: 900px) { .faq-layout { grid-template-columns: 1fr; gap: 24px; } }
.faq-cats {
  position: sticky; top: 110px; align-self: start;
  display: flex; flex-direction: column; gap: 8px;
}
.faq-cats button {
  background: white;
  border: 2px solid var(--ink);
  border-radius: 12px;
  padding: 12px 16px;
  text-align: left;
  font-family: var(--display); font-weight: 700; font-size: 16px;
  letter-spacing: -0.005em;
  display: flex; justify-content: space-between; align-items: center;
  transition: background .15s, transform .15s;
  cursor: pointer;
}
.faq-cats button:hover { transform: translate(-1px,-1px); box-shadow: 3px 3px 0 var(--ink); }
.faq-cats button.active { background: var(--coral); color: white; box-shadow: 4px 4px 0 var(--ink); transform: translate(-2px,-2px); }
.faq-cats button .c { font-family: var(--mono); font-size: 11px; letter-spacing: 0.08em; opacity: 0.7; }
.faq-cat-h {
  margin: 60px 0 18px;
}
.faq-cat-h:first-child { margin-top: 0; }
.faq-cat-h h3 {
  font-family: var(--display); font-weight: 800;
  font-size: clamp(28px, 3.4vw, 40px); letter-spacing: -0.025em; line-height: 1;
  margin: 0;
}
.faq-cat-h h3 em { font-style: italic; color: var(--coral); }

/* ---------- maps decision quiz ---------- */
.quiz {
  background: var(--ink); color: var(--cream);
  border-radius: 24px;
  padding: 28px;
  box-shadow: 0 0 0 2px var(--ink), 8px 8px 0 var(--coral);
  margin-top: 48px;
}
.quiz .q {
  font-family: var(--mono); font-size: 12px; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--yolk); font-weight: 600;
  margin-bottom: 16px;
}
.quiz-opts {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 10px;
}
@media (max-width: 980px) { .quiz-opts { grid-template-columns: 1fr 1fr; } }
@media (max-width: 540px) { .quiz-opts { grid-template-columns: 1fr; } }
.quiz-opt {
  background: rgba(255,245,228,0.06);
  border: 1.5px solid rgba(255,245,228,0.22);
  border-radius: 14px;
  padding: 16px;
  text-align: left;
  cursor: pointer;
  font-family: var(--display); font-weight: 700; font-size: 15px; line-height: 1.2; letter-spacing: -0.01em;
  color: var(--cream);
  display: flex; flex-direction: column; gap: 8px;
  transition: transform .15s, background .15s, border-color .15s;
}
.quiz-opt:hover { background: var(--coral); border-color: var(--coral); transform: translateY(-3px); }
.quiz-opt.active { background: var(--yolk); color: var(--ink); border-color: var(--yolk); }
.quiz-opt .n { font-family: var(--mono); font-size: 10px; letter-spacing: 0.08em; color: var(--yolk); font-weight: 600; }
.quiz-opt.active .n { color: var(--ink); }

/* ================================================================
   MOBILE FIXES — added 2026-05-28 after Playwright audit at 375px
   ================================================================ */

/* Urgency bar — was white-space: nowrap with 4 inline items, overflowing
   to ~574px on a 375px viewport. On phones: smaller font, allow wrap,
   tighter gaps, and on the smallest screens drop the secondary copy. */
@media (max-width: 640px) {
  .urgency {
    white-space: normal;
    flex-wrap: wrap;
    gap: 8px 12px;
    font-size: 11px;
    padding: 8px 12px;
    line-height: 1.3;
    text-align: center;
    justify-content: center;
  }
  .urgency .sep { display: none; }
}

/* Hide hero decorative stickers on phones — they're absolute-positioned
   with negative left/right and break out of the viewport (sticker-fire
   was at right=389 on 375px). The hero CTA still reads clearly without. */
@media (max-width: 640px) {
  .sticker-fire,
  .sticker-money,
  .sticker-stars,
  .sticker-emoji,
  .emoji-1,
  .emoji-2 { display: none; }
}

/* Checkout grid — explicit override of the .two-col 1.2fr 1fr layout
   for the checkout page. The order summary aside must stack BELOW
   the form on mobile, not sit next to it at 320px wide. */
@media (max-width: 980px) {
  .checkout-grid { grid-template-columns: 1fr !important; gap: 30px !important; }
  .checkout-grid aside { order: 2; }
}

/* Two-Col gift / inline grid-template-columns inline styles — kill any
   inline override that prevents the existing @media (max-width: 980px)
   { .two-col { grid-template-columns: 1fr } } from firing. */
@media (max-width: 640px) {
  .two-col[style*="grid-template-columns"] { grid-template-columns: 1fr !important; }
}

/* Hero-card and offer-card defensive — prevent horizontal overflow from
   inline content (long product names, large badges). */
@media (max-width: 640px) {
  .badge-corner { right: 8px !important; top: 8px !important; }
  .badge-corner .big { font-size: 22px; }
  .map-card { flex: 0 0 86vw !important; max-width: 360px; }
}
