/* festoso — landing v2-redesign
 * Bright, warm, confident. 2026 aesthetic for 20–30-something event hosts.
 * Vanilla CSS, no build. Mobile-first, breakpoints at 720 / 1024.
 */

/* ============================================================
   Tokens
   ============================================================ */
:root {
  /* Palette — warm cream over corporate-dark. */
  --bg:           #FFF6EC;   /* warm cream */
  --bg-elev:      #FFFFFF;
  --bg-ink:      #0E0E10;   /* near-black for ink blocks */

  --ink:          #0E0E10;
  --ink-soft:     #2A2A2E;
  --ink-mute:     #5A5A60;
  --ink-fade:     #8A8A90;

  --coral:        #FF5C3D;   /* hot accent — buttons, dots, live */
  --coral-deep:   #E84A2A;
  --coral-soft:   #FFE3DA;

  --lemon:        #F1FF52;   /* secondary highlight */
  --grape:        #6B5BFF;   /* tertiary highlight, optional */
  --rule:         rgba(14, 14, 16, 0.12);
  --rule-strong:  rgba(14, 14, 16, 0.22);

  --r-sm: 10px;
  --r-md: 18px;
  --r-lg: 28px;
  --r-xl: 40px;

  --shadow-1: 0 1px 0 rgba(14,14,16,0.06), 0 12px 32px -16px rgba(14,14,16,0.18);
  --shadow-2: 0 2px 0 rgba(14,14,16,0.08), 0 40px 80px -40px rgba(14,14,16,0.28);

  --font: 'Space Grotesk', ui-sans-serif, system-ui, -apple-system, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;

  --container: 1240px;
}

/* ============================================================
   Reset + base
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body, h1, h2, h3, h4, p, ul, ol, figure, blockquote, dl, dd { margin: 0; }
ul, ol { padding: 0; list-style: none; }
img, picture, svg, video { display: block; max-width: 100%; height: auto; }
button { font: inherit; cursor: pointer; border: 0; background: none; color: inherit; }
a { color: inherit; text-decoration: none; }

body {
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font);
  font-weight: 500;
  font-size: 17px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

.sr-only {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}

.skip {
  position: absolute; top: -100px; left: 16px;
  background: var(--ink); color: var(--bg);
  padding: 12px 18px; border-radius: 8px;
  font-weight: 700; font-size: 14px;
  z-index: 1000;
}
.skip:focus { top: 16px; }

/* ============================================================
   Layout primitives
   ============================================================ */
.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: 22px;
}
@media (min-width: 720px)  { .container { padding-inline: 36px; } }
@media (min-width: 1024px) { .container { padding-inline: 48px; } }

.section { padding-block: 96px; position: relative; }
@media (min-width: 1024px) { .section { padding-block: 140px; } }

/* ============================================================
   Typography
   ============================================================ */
.kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 14px 8px 12px;
  border: 1px solid var(--ink);
  border-radius: 999px;
  background: var(--bg-elev);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.kicker__pulse {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--coral);
  box-shadow: 0 0 0 0 rgba(255, 92, 61, 0.6);
  animation: pulse 1.8s infinite;
}
@keyframes pulse {
  0%   { box-shadow: 0 0 0 0 rgba(255, 92, 61, 0.55); }
  70%  { box-shadow: 0 0 0 10px rgba(255, 92, 61, 0); }
  100% { box-shadow: 0 0 0 0 rgba(255, 92, 61, 0); }
}

h1, h2, h3, .display-1, .display-2, .display-3 {
  font-family: var(--font);
  font-weight: 700;
  line-height: 0.96;
  letter-spacing: -0.035em;
}

.display-1 { font-size: clamp(48px, 9.5vw, 132px); line-height: 0.92; }
.display-2 { font-size: clamp(36px, 6vw, 76px); line-height: 0.96; letter-spacing: -0.032em; }
.display-3 { font-size: clamp(26px, 3.4vw, 40px); line-height: 1.05; letter-spacing: -0.025em; }

.ink { color: var(--ink); }

.section-label {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--coral-deep);
  margin-bottom: 18px;
}

.section-head { max-width: 880px; margin-bottom: 64px; }
.section-head h2 { margin-bottom: 18px; }
.section-head p,
.section-head__sub {
  color: var(--ink-mute);
  font-size: clamp(16px, 1.5vw, 19px);
  line-height: 1.55;
  max-width: 60ch;
}
.section-head--center { margin-inline: auto; text-align: center; }
.section-head--center p { margin-inline: auto; }

/* ============================================================
   Wordmark + Nav + Marquee
   ============================================================ */
.wordmark {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  font-size: 22px;
  letter-spacing: -0.03em;
}
.wordmark__dot {
  width: 14px; height: 14px;
  border-radius: 50%;
  background: var(--coral);
  display: inline-block;
}

.marquee {
  background: var(--ink);
  color: var(--bg);
  overflow: hidden;
  border-bottom: 1px solid var(--ink);
  position: relative;
}
.marquee__track {
  display: flex;
  gap: 28px;
  white-space: nowrap;
  padding: 12px 0;
  animation: marquee 36s linear infinite;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  width: max-content;
}
.marquee__track .dot { color: var(--coral); }
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

.nav {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255, 246, 236, 0.86);
  backdrop-filter: saturate(160%) blur(14px);
  -webkit-backdrop-filter: saturate(160%) blur(14px);
  border-bottom: 1px solid var(--rule);
}
.nav__inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 70px; gap: 20px;
}
.nav__links {
  display: none;
  gap: 28px;
  font-size: 15px;
  font-weight: 500;
}
.nav__links a { color: var(--ink-soft); transition: color .15s ease; }
.nav__links a:hover { color: var(--ink); }
.nav__cta { display: flex; gap: 10px; }
@media (min-width: 900px) { .nav__links { display: flex; } }

/* ============================================================
   Buttons
   ============================================================ */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 14px 22px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 15px;
  line-height: 1;
  transition: transform .15s ease, background .15s ease, box-shadow .15s ease, color .15s ease, border-color .15s ease;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-1px); }
.btn:active { transform: translateY(0); }
.btn .arrow { display: inline-block; transition: transform .2s ease; }
.btn:hover .arrow { transform: translateX(3px); }

.btn--primary {
  background: var(--coral);
  color: #fff;
  box-shadow: 0 4px 0 var(--coral-deep);
}
.btn--primary:hover { background: var(--coral-deep); box-shadow: 0 2px 0 var(--coral-deep); }
.btn--primary:active { box-shadow: 0 0 0 var(--coral-deep); transform: translateY(2px); }

.btn--ghost {
  background: var(--bg-elev);
  color: var(--ink);
  border: 1px solid var(--ink);
  box-shadow: 0 4px 0 var(--ink);
}
.btn--ghost:hover { background: var(--ink); color: var(--bg); }
.btn--ghost:active { box-shadow: 0 0 0 var(--ink); transform: translateY(2px); }

.btn--lg { padding: 18px 28px; font-size: 17px; }
.btn--small { padding: 10px 16px; font-size: 14px; }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  padding-block: 64px 96px;
  overflow: hidden;
  isolation: isolate;
}
.hero::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 85% 10%, rgba(255, 92, 61, 0.15), transparent 55%),
    radial-gradient(ellipse at 5% 80%, rgba(241, 255, 82, 0.45), transparent 50%);
  z-index: -1;
}
.hero__container {
  display: grid;
  gap: 56px;
  align-items: center;
}
@media (min-width: 1024px) {
  .hero { padding-block: 96px 140px; }
  .hero__container { grid-template-columns: 1.15fr 1fr; gap: 64px; }
}

.hero__copy { max-width: 720px; }
.hero__headline {
  font-size: clamp(48px, 9vw, 124px);
  line-height: 0.92;
  letter-spacing: -0.04em;
  font-weight: 700;
  margin: 24px 0 28px;
}
.hero__headline .ink {
  display: inline-block;
  position: relative;
  padding: 0 0.05em;
}
.hero__headline .ink::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: 0.04em;
  height: 0.18em;
  background: var(--lemon);
  z-index: -1;
}
.hero__sub {
  font-size: clamp(17px, 1.6vw, 20px);
  color: var(--ink-soft);
  max-width: 58ch;
  line-height: 1.5;
  margin-bottom: 32px;
}
.hero__ctas {
  display: flex; flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 28px;
}
.hero__bullets {
  display: flex; flex-wrap: wrap;
  gap: 8px 22px;
  font-size: 14px;
  color: var(--ink-mute);
}
.hero__bullets li { display: inline-flex; align-items: center; gap: 8px; }
.hero__bullets .check {
  width: 18px; height: 18px;
  border-radius: 50%;
  display: inline-grid; place-items: center;
  background: var(--ink); color: var(--bg);
  font-size: 11px; font-weight: 700;
}

/* Hero visual — collaged phone + QR + sticker */
.hero__visual {
  position: relative;
  aspect-ratio: 4 / 5;
  max-width: 460px;
  margin-inline: auto;
  width: 100%;
}
@media (min-width: 1024px) {
  .hero__visual { margin-inline: 0; margin-left: auto; max-width: 100%; }
}

.phone {
  position: absolute;
  left: 50%; top: 50%;
  width: 64%;
  aspect-ratio: 9 / 19;
  transform: translate(-50%, -50%) rotate(-6deg);
  background: var(--ink);
  border-radius: 38px;
  padding: 8px;
  box-shadow: var(--shadow-2);
}
.phone__notch {
  position: absolute;
  top: 14px; left: 50%;
  transform: translateX(-50%);
  width: 38%; height: 22px;
  background: var(--ink);
  border-radius: 999px;
  z-index: 2;
}
.phone__screen {
  width: 100%; height: 100%;
  border-radius: 30px;
  background: linear-gradient(180deg, #fff7ed, #ffe9d6);
  padding: 36px 12px 12px;
  display: flex; flex-direction: column;
  gap: 10px;
  overflow: hidden;
  position: relative;
}
.phone__bar {
  display: flex; align-items: center; justify-content: space-between;
  font-size: 11px; font-weight: 700;
  color: var(--ink);
}
.phone__live {
  display: inline-flex; align-items: center; gap: 6px;
  background: var(--coral); color: #fff;
  padding: 4px 10px; border-radius: 999px;
  letter-spacing: 0.1em;
  font-size: 10px;
}
.phone__livedot {
  width: 6px; height: 6px; border-radius: 50%; background: #fff;
  animation: blink 1.4s infinite;
}
@keyframes blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.35; }
}
.phone__count {
  font-size: 12px;
  color: var(--ink-soft);
}
.phone__grid {
  flex: 1;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 4px;
}
.phone__tile {
  border-radius: 6px;
  background: var(--ink);
}
.t-coral { background: linear-gradient(135deg, #FF7A5C, #FF3D17); }
.t-lemon { background: linear-gradient(135deg, #F8FF8C, #DBE638); }
.t-ink   { background: linear-gradient(135deg, #2A2A2E, #0E0E10); }

.card-blob {
  position: absolute;
  background: var(--bg-elev);
  border: 1px solid var(--ink);
  border-radius: var(--r-md);
  box-shadow: var(--shadow-1);
  padding: 14px;
}
.card-blob--qr {
  top: 4%; right: 0;
  width: 44%;
  transform: rotate(5deg);
  display: flex; gap: 12px;
  align-items: center;
}
.card-blob__txt strong {
  display: block;
  font-size: 14px;
  line-height: 1.1;
  margin-bottom: 2px;
}
.card-blob__txt span {
  font-size: 11px;
  color: var(--ink-mute);
}

.card-blob--badge {
  bottom: 4%; left: 0;
  transform: rotate(-7deg);
  background: var(--lemon);
  border-color: var(--ink);
  padding: 10px 16px;
}
.card-blob__sticker {
  font-weight: 700;
  font-size: 13px;
  letter-spacing: -0.01em;
  display: inline-flex; align-items: center; gap: 8px;
}
.card-blob__sticker::before {
  content: '';
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--coral);
}

/* Pure-CSS QR-ish dot grid */
.card-blob__qr { flex-shrink: 0; }
.qr {
  width: 70px; height: 70px;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  grid-template-rows:    repeat(5, 1fr);
  gap: 2px;
  background: var(--bg);
  padding: 4px;
  border-radius: 6px;
}
.qr span { background: var(--ink); border-radius: 1px; }
.qr span:nth-child(2),
.qr span:nth-child(4),
.qr span:nth-child(7),
.qr span:nth-child(9),
.qr span:nth-child(11),
.qr span:nth-child(14),
.qr span:nth-child(17),
.qr span:nth-child(19),
.qr span:nth-child(21),
.qr span:nth-child(23) { background: transparent; }
.qr--big {
  width: 100%; max-width: 200px;
  aspect-ratio: 1;
  grid-template-columns: repeat(6, 1fr);
  grid-template-rows: repeat(6, 1fr);
}
.qr--big span:nth-child(3n) { background: transparent; }
.qr--big span:nth-child(5n) { background: var(--coral); }

/* ============================================================
   ENEMY STRIP
   ============================================================ */
.enemy {
  background: var(--ink);
  color: var(--bg);
  padding-block: 64px;
  border-block: 1px solid var(--ink);
}
.enemy__inner {
  display: flex; flex-direction: column; gap: 20px;
}
.enemy__line {
  display: flex; flex-wrap: wrap;
  gap: 12px 20px;
  font-size: clamp(18px, 2.4vw, 28px);
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--ink-fade);
}
.strike {
  position: relative;
  display: inline-block;
}
.strike::after {
  content: '';
  position: absolute;
  left: -4px; right: -4px;
  top: 50%;
  height: 3px;
  background: var(--coral);
  transform: rotate(-2deg);
  transform-origin: center;
}
.enemy__answer {
  font-size: clamp(20px, 3vw, 36px);
  font-weight: 700;
  color: var(--bg);
  letter-spacing: -0.02em;
}
.enemy__answer::first-letter { color: var(--lemon); }

/* ============================================================
   WHY
   ============================================================ */
.why { padding-block: 120px; }
.why__grid {
  display: grid;
  gap: 24px;
}
@media (min-width: 720px)  { .why__grid { grid-template-columns: repeat(2, 1fr); gap: 28px; } }
@media (min-width: 1024px) { .why__grid { gap: 32px; } }

.why-card {
  position: relative;
  padding: 32px 28px 28px;
  background: var(--bg-elev);
  border: 1px solid var(--ink);
  border-radius: var(--r-lg);
  box-shadow: 0 6px 0 var(--ink);
  overflow: hidden;
  display: flex; flex-direction: column;
  gap: 18px;
  min-height: 380px;
  transition: transform .18s ease, box-shadow .18s ease;
}
.why-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 0 var(--ink);
}
.why-card__num {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: var(--coral-deep);
}
.why-card h3 {
  font-size: clamp(22px, 2.6vw, 32px);
  line-height: 1.05;
  letter-spacing: -0.025em;
  font-weight: 700;
}
.why-card h3 em { font-style: normal; background: var(--lemon); padding: 0 0.18em; }
.why-card p {
  color: var(--ink-soft);
  font-size: 16px;
  line-height: 1.55;
}
.why-card__art {
  margin-top: auto;
  height: 120px;
  position: relative;
  border-radius: var(--r-md);
  background: var(--bg);
  border: 1px dashed var(--rule-strong);
  display: grid;
  place-items: center;
  overflow: hidden;
}

/* phone-pool art (Why #1) */
.why-card__art--pool { background: linear-gradient(135deg, #FFE3DA, #FFD3C2); border-style: solid; border-color: var(--ink); }
.phone-stack {
  position: absolute;
  width: 36px; height: 64px;
  border-radius: 8px;
  background: var(--ink);
  border: 2px solid var(--ink);
  box-shadow: var(--shadow-1);
}
.phone-stack::after {
  content: '';
  position: absolute; inset: 4px;
  border-radius: 4px;
  background: linear-gradient(180deg, var(--coral), #ff7a5c);
}
.ps-a { left: 30px; top: 20px; transform: rotate(-12deg); }
.ps-b { left: 70px; top: 35px; transform: rotate(6deg); }
.ps-c { right: 70px; top: 18px; transform: rotate(10deg); }
.ps-d { right: 30px; top: 38px; transform: rotate(-4deg); background: var(--lemon); border-color: var(--ink); }
.ps-d::after { background: linear-gradient(180deg, #ffd400, #ffb800); }

/* QR art (Why #2) */
.why-card__art--qr { background: var(--ink); padding: 16px; }
.why-card__art--qr .qr--big { max-width: 100px; background: var(--bg); }

/* TV art (Why #3) */
.why-card__art--tv {
  background: linear-gradient(135deg, #1a1a1c, #0E0E10);
  border-color: var(--ink);
}
.tv {
  width: 85%;
  display: flex; flex-direction: column; align-items: center;
}
.tv__screen {
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: 6px;
  background: linear-gradient(135deg, var(--coral), #ff8e60);
  position: relative;
  overflow: hidden;
  padding: 6px;
  display: flex; align-items: flex-end;
}
.tv__photo {
  position: absolute;
  inset: 8px 8px 22px;
  border-radius: 4px;
  background:
    radial-gradient(circle at 30% 30%, rgba(255,255,255,0.4), transparent 50%),
    linear-gradient(135deg, #FFB89C, #FF5C3D);
}
.tv__cap {
  position: relative;
  font-size: 9px;
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.1em;
  background: rgba(0,0,0,0.4);
  padding: 2px 6px;
  border-radius: 3px;
}
.tv__stand {
  width: 30%; height: 4px;
  background: #444;
  margin-top: 4px;
  border-radius: 0 0 4px 4px;
}

/* Chaos tags (Why #4) */
.why-card__art--chaos {
  background: var(--bg);
  padding: 14px;
  display: flex; flex-wrap: wrap; align-content: center;
  gap: 8px; justify-content: center;
  border-color: var(--ink); border-style: solid;
}
.tag {
  display: inline-flex; align-items: center;
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 700;
  border: 1px solid var(--ink);
}
.tag--ok  { background: var(--lemon); color: var(--ink); }
.tag--bad { background: var(--ink);   color: #fff;       }

/* ============================================================
   HOW
   ============================================================ */
.how { background: var(--ink); color: var(--bg); border-block: 1px solid var(--ink); }
.how .section-label { color: var(--lemon); }
.how h2, .how h3 { color: var(--bg); }
.how p { color: rgba(255, 246, 236, 0.7); }

.steps {
  display: grid;
  gap: 24px;
  counter-reset: step;
}
@media (min-width: 720px)  { .steps { grid-template-columns: repeat(3, 1fr); gap: 28px; } }

.step {
  padding: 36px 28px 32px;
  background: rgba(255, 246, 236, 0.04);
  border: 1px solid rgba(255, 246, 236, 0.18);
  border-radius: var(--r-lg);
  position: relative;
  transition: background .2s ease, transform .2s ease;
}
.step:hover { background: rgba(255, 246, 236, 0.08); transform: translateY(-2px); }
.step__num {
  display: inline-grid; place-items: center;
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--coral);
  color: #fff;
  font-weight: 700;
  font-size: 19px;
  margin-bottom: 22px;
}
.step h3 {
  font-size: 24px;
  letter-spacing: -0.02em;
  margin-bottom: 10px;
}
.step p { font-size: 16px; line-height: 1.55; }
.step code {
  font-family: 'SF Mono', Menlo, Consolas, monospace;
  font-size: 0.88em;
  background: rgba(255, 246, 236, 0.1);
  padding: 2px 8px; border-radius: 5px;
  color: var(--lemon);
}

/* ============================================================
   PROOF
   ============================================================ */
.proof { padding-block: 120px; background: var(--bg); }
.proof__grid {
  display: grid; gap: 22px;
}
@media (min-width: 720px) { .proof__grid { grid-template-columns: repeat(3, 1fr); } }

.quote {
  background: var(--bg-elev);
  border: 1px solid var(--ink);
  border-radius: var(--r-lg);
  padding: 28px 26px;
  box-shadow: 0 6px 0 var(--ink);
  display: flex; flex-direction: column;
  gap: 20px;
  min-height: 220px;
}
.quote blockquote {
  font-size: 18px;
  font-weight: 500;
  line-height: 1.45;
  letter-spacing: -0.015em;
  color: var(--ink);
}
.quote figcaption {
  margin-top: auto;
  display: flex; flex-direction: column; gap: 2px;
  font-size: 13px;
}
.quote__name { font-weight: 700; color: var(--ink); }
.quote__meta { color: var(--ink-mute); }

/* ============================================================
   PRICING
   ============================================================ */
.pricing { padding-block: 120px; }
.prices {
  display: grid;
  gap: 18px;
}
@media (min-width: 720px)  { .prices { grid-template-columns: repeat(2, 1fr); gap: 22px; } }
@media (min-width: 1024px) { .prices { grid-template-columns: repeat(4, 1fr); } }

.price {
  display: flex; flex-direction: column;
  padding: 32px 26px 28px;
  background: var(--bg-elev);
  border: 1px solid var(--ink);
  border-radius: var(--r-lg);
  box-shadow: 0 6px 0 var(--ink);
  position: relative;
  transition: transform .18s ease, box-shadow .18s ease;
}
.price:hover { transform: translateY(-2px); box-shadow: 0 10px 0 var(--ink); }
.price--featured {
  background: var(--coral);
  color: #fff;
  box-shadow: 0 6px 0 var(--coral-deep);
}
.price--featured:hover { box-shadow: 0 10px 0 var(--coral-deep); }

.price__badge {
  position: absolute;
  top: -14px; left: 24px;
  background: var(--lemon);
  color: var(--ink);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 999px;
  border: 1px solid var(--ink);
}
.price__name {
  font-size: 19px;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 14px;
}
.price__amt {
  font-size: 48px;
  line-height: 1;
  font-weight: 700;
  letter-spacing: -0.04em;
  margin-bottom: 6px;
}
.price__amt .unit {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0;
  margin-left: 6px;
  opacity: 0.7;
}
.price__hint {
  font-size: 14px;
  color: var(--ink-mute);
  margin-bottom: 22px;
  min-height: 3em;
}
.price--featured .price__hint { color: rgba(255,255,255,0.85); }
.price__list { display: grid; gap: 10px; margin-bottom: 24px; }
.price__list li {
  font-size: 14px;
  padding-left: 22px;
  position: relative;
}
.price__list li::before {
  content: '';
  position: absolute;
  left: 0; top: 6px;
  width: 12px; height: 6px;
  border-left: 2px solid var(--coral);
  border-bottom: 2px solid var(--coral);
  transform: rotate(-45deg);
}
.price--featured .price__list li::before {
  border-color: var(--lemon);
}
.price__cta {
  margin-top: auto;
  display: inline-flex; align-items: center; justify-content: center;
  padding: 13px 18px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 700;
  background: var(--bg);
  color: var(--ink);
  border: 1px solid var(--ink);
  transition: background .15s ease, color .15s ease;
}
.price__cta:hover { background: var(--ink); color: var(--bg); }
.price--featured .price__cta { background: #fff; color: var(--ink); border-color: #fff; }
.price--featured .price__cta:hover { background: var(--lemon); color: var(--ink); }

.pricing__fineprint {
  margin-top: 36px;
  padding: 22px 26px;
  background: var(--bg-elev);
  border: 1px dashed var(--rule-strong);
  border-radius: var(--r-md);
  font-size: 14px;
  color: var(--ink-soft);
  text-align: center;
  max-width: 780px;
  margin-inline: auto;
  line-height: 1.55;
}
.pricing__fineprint strong { color: var(--ink); }

/* ============================================================
   CTA / EMAIL
   ============================================================ */
.cta {
  background:
    radial-gradient(ellipse at 20% 0%, rgba(255, 92, 61, 0.18), transparent 50%),
    var(--lemon);
  padding-block: 120px;
}
.cta__inner {
  display: grid;
  gap: 48px;
  align-items: center;
}
@media (min-width: 1024px) {
  .cta__inner { grid-template-columns: 1.1fr 1fr; gap: 64px; }
}
.cta__copy h2 { margin-bottom: 18px; max-width: 18ch; }
.cta__copy p {
  color: var(--ink-soft);
  font-size: 17px;
  line-height: 1.5;
  max-width: 50ch;
}
.cta__label { color: var(--coral-deep); }

.email-form {
  background: var(--bg-elev);
  border: 1px solid var(--ink);
  border-radius: var(--r-lg);
  padding: 28px 24px;
  box-shadow: 0 6px 0 var(--ink);
  display: flex; flex-direction: column; gap: 12px;
}
.email-form input[type=email] {
  width: 100%;
  padding: 16px 18px;
  background: var(--bg);
  border: 1px solid var(--ink);
  border-radius: 14px;
  font: inherit;
  font-size: 16px;
  font-weight: 500;
  color: var(--ink);
}
.email-form input[type=email]::placeholder { color: var(--ink-fade); }
.email-form input[type=email]:focus { outline: none; border-color: var(--coral); box-shadow: 0 0 0 3px rgba(255, 92, 61, 0.25); }
.email-form .btn { width: 100%; justify-content: center; }
.email-form__msg {
  font-size: 13px;
  min-height: 18px;
  font-weight: 700;
}
.email-form__msg[data-state=ok]  { color: var(--coral-deep); }
.email-form__msg[data-state=err] { color: var(--coral-deep); }
.email-form__fine {
  font-size: 12px;
  color: var(--ink-mute);
  line-height: 1.45;
}
.email-form__fine a { color: var(--ink); text-decoration: underline; text-decoration-thickness: 1px; }

/* ============================================================
   FAQ
   ============================================================ */
.faq-section { background: var(--bg); padding-block: 120px; }
.faq { max-width: 880px; margin-inline: auto; }
.faq details {
  border-top: 1px solid var(--ink);
  padding-block: 24px;
}
.faq details:last-child { border-bottom: 1px solid var(--ink); }
.faq summary {
  cursor: pointer;
  list-style: none;
  font-size: clamp(18px, 2.2vw, 24px);
  font-weight: 700;
  letter-spacing: -0.02em;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: '+';
  font-size: 28px;
  font-weight: 500;
  color: var(--coral-deep);
  transition: transform .2s ease;
  flex-shrink: 0;
  line-height: 1;
}
.faq details[open] summary::after { transform: rotate(45deg); }
.faq details > p {
  margin-top: 14px;
  color: var(--ink-soft);
  font-size: 16px;
  line-height: 1.6;
  max-width: 68ch;
}
.faq a { color: var(--coral-deep); text-decoration: underline; text-decoration-thickness: 1px; }

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--ink);
  color: var(--bg);
  padding-block: 72px 28px;
}
.footer .wordmark { color: var(--bg); }
.footer__grid {
  display: grid; gap: 36px;
  margin-bottom: 56px;
}
@media (min-width: 720px) {
  .footer__grid { grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 48px; }
}
.footer__brand p { color: rgba(255, 246, 236, 0.6); font-size: 14px; max-width: 32ch; margin-top: 12px; }
.footer__col h4 {
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--lemon);
  margin-bottom: 16px;
  font-weight: 700;
}
.footer__col ul { display: grid; gap: 10px; }
.footer__col li a {
  color: rgba(255, 246, 236, 0.7);
  font-size: 14px;
  transition: color .15s ease;
}
.footer__col li a:hover { color: var(--bg); }
.footer__bottom {
  border-top: 1px solid rgba(255, 246, 236, 0.15);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 12px;
  color: rgba(255, 246, 236, 0.55);
}

/* ============================================================
   Scroll reveal + motion safety
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .7s cubic-bezier(0.2, 0.7, 0.2, 1), transform .7s cubic-bezier(0.2, 0.7, 0.2, 1);
  will-change: opacity, transform;
}
.reveal.in-view { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  .reveal { opacity: 1; transform: none; }
  .marquee__track { animation: none; }
  .phone__livedot { animation: none; }
  .kicker__pulse { animation: none; }
}

/* ============================================================
   Focus + a11y
   ============================================================ */
:focus-visible {
  outline: 3px solid var(--coral);
  outline-offset: 3px;
  border-radius: 6px;
}

/* ============================================================
   Mobile tweaks
   ============================================================ */
@media (max-width: 720px) {
  .hero__visual {
    aspect-ratio: 1 / 1;
    max-width: 320px;
  }
  .phone { width: 56%; }
  .card-blob--qr { width: 50%; padding: 10px; }
  .card-blob__qr .qr { width: 52px; height: 52px; padding: 3px; }
  .why-card { padding: 26px 22px 22px; min-height: 340px; }
  .why-card__art { height: 100px; }
  .enemy { padding-block: 48px; }
  .step { padding: 28px 22px; }
  .price { padding: 28px 22px 22px; }
  .price__amt { font-size: 40px; }
  .quote { padding: 24px 22px; min-height: 200px; }
}
