/* ==========================================================================
   Katafy — site styles
   Brand: black #0A0A0A · cream #FDFBE7 · pink #DD1481 · gold #F5D576
   ========================================================================== */

/* Self-hosted fonts (OFL) */
@font-face { font-family: "Anton"; src: url("/assets/fonts/anton.woff2") format("woff2"); font-weight: 400; font-style: normal; font-display: swap; }
@font-face { font-family: "Inter"; src: url("/assets/fonts/inter-var.woff2") format("woff2"); font-weight: 100 900; font-style: normal; font-display: swap; }

:root {
  --black: #0a0a0a;
  --ink: #111111;
  --panel: #161616;
  --panel-2: #1f1f1f;
  --line: rgba(253, 251, 231, 0.12);
  --cream: #fdfbe7;
  --cream-2: #f4efc9;
  --muted: #b9b6a3;
  --muted-2: #a29e8a;
  --pink: #dd1481;
  --pink-hot: #f0288f;
  --gold: #f5d576;
  --ink-text: #1a1a1a;
  --ink-muted: #55524a;

  --font-display: "Anton", "Impact", "Arial Narrow", sans-serif;
  --font-body: "Inter", "Segoe UI", system-ui, -apple-system, sans-serif;

  --radius: 18px;
  --radius-sm: 10px;
  --max: 1180px;
  --gutter: clamp(18px, 4vw, 40px);
}

*,
*::before,
*::after { box-sizing: border-box; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; overflow-x: clip; }

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--cream);
  background: var(--black);
  -webkit-font-smoothing: antialiased;
  overflow-x: clip;
}

img { max-width: 100%; display: block; height: auto; }
a { color: inherit; text-decoration: none; }
p { margin: 0 0 1em; }
h1, h2, h3, h4 { margin: 0; line-height: 1.05; }

:focus-visible { outline: 3px solid var(--gold); outline-offset: 3px; border-radius: 4px; }

.skip-link {
  position: absolute; left: -999px; top: 8px; z-index: 100;
  background: var(--gold); color: var(--black); padding: 10px 16px; border-radius: 8px; font-weight: 700;
}
.skip-link:focus { left: 8px; }

.container { width: min(var(--max), 100% - 2 * var(--gutter)); margin-inline: auto; }

/* ---------- Type helpers ---------- */
.display {
  font-family: var(--font-display);
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.01em;
}
.eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 0.78rem; font-weight: 700; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 18px;
}
.eyebrow::before { content: ""; width: 26px; height: 3px; background: var(--pink); transform: skewX(-24deg); }
.pink { color: var(--pink); }
.gold { color: var(--gold); }
.lead { font-size: clamp(1.05rem, 1.6vw, 1.25rem); color: var(--muted); max-width: 60ch; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  min-height: 52px; padding: 0 26px; border-radius: 999px;
  font-weight: 700; font-size: 0.98rem; letter-spacing: 0.01em;
  transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
  cursor: pointer; border: 0;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary { background: var(--pink); color: #fff; box-shadow: 0 10px 30px rgba(221, 20, 129, 0.35); }
.btn-primary:hover { background: var(--pink-hot); }
.btn-ghost { background: transparent; color: var(--cream); box-shadow: inset 0 0 0 1.5px rgba(253, 251, 231, 0.35); }
.btn-ghost:hover { box-shadow: inset 0 0 0 1.5px var(--cream); }
.btn-gold { background: var(--gold); color: var(--black); }
.btn .arrow { transition: transform 0.2s ease; }
.btn:hover .arrow { transform: translateX(4px); }

/* ---------- Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(10, 10, 10, 0.72);
  backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
}
.nav { display: flex; align-items: center; justify-content: space-between; gap: 20px; min-height: 76px; }
.brand img { width: 128px; }
.nav-links { display: flex; align-items: center; gap: 30px; font-size: 0.95rem; font-weight: 600; }
.nav-links a { color: var(--muted); transition: color 0.2s; }
.nav-links a:hover, .nav-links a[aria-current="page"] { color: var(--cream); }
.nav-cta { min-height: 44px; padding: 0 20px; font-size: 0.9rem; }
.nav-toggle {
  display: none; background: none; border: 0; color: var(--cream); width: 44px; height: 44px; cursor: pointer;
}
.nav-toggle span { display: block; width: 24px; height: 2px; background: currentColor; margin: 5px auto; transition: transform 0.25s, opacity 0.25s; }

@media (max-width: 880px) {
  .nav-toggle { display: block; }
  .nav-links {
    position: fixed; inset: 76px 0 auto 0; flex-direction: column; align-items: stretch; gap: 0;
    background: var(--black); border-bottom: 1px solid var(--line); padding: 8px var(--gutter) 24px;
    transform: translateY(-120%); transition: transform 0.3s ease; z-index: -1;
  }
  .nav-links a { padding: 16px 0; border-bottom: 1px solid var(--line); font-size: 1.05rem; }
  .nav-links .btn { margin-top: 18px; }
  body.nav-open .nav-links { transform: translateY(0); }
  body.nav-open .nav-toggle span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  body.nav-open .nav-toggle span:nth-child(2) { opacity: 0; }
  body.nav-open .nav-toggle span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
  .nav > .nav-cta { display: none; }
}
@media (min-width: 881px) { .nav-links .btn { display: none; } }

/* ---------- Hero ---------- */
.hero { position: relative; padding: clamp(56px, 9vw, 110px) 0 60px; overflow: hidden; isolation: isolate; }
.hero::before {
  content: ""; position: absolute; z-index: -1; width: 780px; height: 780px; right: -220px; top: -260px;
  background: radial-gradient(circle, rgba(221, 20, 129, 0.28), transparent 62%);
}
.hero::after {
  content: ""; position: absolute; z-index: -1; width: 620px; height: 620px; left: -260px; bottom: -320px;
  background: radial-gradient(circle, rgba(245, 213, 118, 0.12), transparent 65%);
}
.hero-grid { display: grid; grid-template-columns: 1.15fr 0.85fr; gap: 48px; align-items: center; }
.hero h1 { font-size: clamp(3.2rem, 9vw, 7.4rem); line-height: 0.92; margin-bottom: 26px; }
.hero h1 .stroke { color: transparent; -webkit-text-stroke: 2px var(--cream); }
.hero .lead { margin-bottom: 34px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; }
.hero-note { margin-top: 22px; font-size: 0.88rem; color: var(--muted-2); }

.hero-visual { position: relative; height: 560px; }
.phone { position: absolute; border-radius: 34px; overflow: hidden; box-shadow: 0 40px 80px rgba(0, 0, 0, 0.55); }
.phone img { width: 100%; }
.phone-back { width: 52%; left: 2%; top: 70px; opacity: 0.55; filter: grayscale(0.6); transform: rotate(-7deg); }
.phone-front { width: 62%; right: 2%; top: 0; transform: rotate(4deg); animation: floaty 6s ease-in-out infinite; }
.chip {
  position: absolute; display: inline-flex; align-items: center; gap: 8px;
  background: rgba(22, 22, 22, 0.9); border: 1px solid var(--line); border-radius: 999px;
  padding: 10px 16px; font-size: 0.85rem; font-weight: 700; backdrop-filter: blur(8px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.45);
}
.chip .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--pink); box-shadow: 0 0 0 4px rgba(221, 20, 129, 0.25); }
.chip-1 { left: 0; bottom: 120px; animation: floaty 7s ease-in-out infinite reverse; }
.chip-2 { right: -4px; bottom: 40px; animation: floaty 5.5s ease-in-out infinite; }
.chip-3 { left: 18%; top: 10px; animation: floaty 6.5s ease-in-out infinite; }
.chip-3 .dot { background: var(--gold); box-shadow: 0 0 0 4px rgba(245, 213, 118, 0.25); }
.skip-tag { position: absolute; left: 6%; top: 330px; transform: rotate(-7deg); background: rgba(0,0,0,.7); border: 1px solid var(--line); color: var(--muted); font-size: .75rem; padding: 6px 12px; border-radius: 6px; }

@keyframes floaty { 0%, 100% { translate: 0 0; } 50% { translate: 0 -12px; } }

@media (max-width: 960px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-visual { height: 440px; max-width: 460px; margin: 0 auto; width: 100%; }
}

/* ---------- Marquee ---------- */
.marquee {
  border-block: 1px solid var(--line); background: var(--pink); color: #fff; overflow: hidden;
  transform: rotate(-1.2deg); margin: 0 -30px; box-shadow: 0 20px 60px rgba(221, 20, 129, 0.2);
}
.marquee-track { display: flex; width: max-content; animation: marquee 32s linear infinite; }
.marquee span {
  font-family: var(--font-display); text-transform: uppercase; font-size: clamp(1.4rem, 3vw, 2.2rem);
  padding: 14px 0; white-space: nowrap;
}
.marquee span::after { content: "✂"; margin: 0 28px; color: var(--black); }
@keyframes marquee { to { transform: translateX(-50%); } }

/* ---------- Sections / chapters ---------- */
.section { padding: clamp(80px, 11vw, 140px) 0; position: relative; }
.section-tight { padding: clamp(60px, 8vw, 96px) 0; }
.chapter { display: flex; align-items: baseline; gap: 14px; margin-bottom: 22px; }
.chapter-num { font-family: var(--font-display); font-size: 1.1rem; color: var(--pink); }
.chapter-label { font-size: 0.78rem; font-weight: 700; letter-spacing: 0.22em; text-transform: uppercase; color: var(--gold); }
.section-title { font-size: clamp(2.4rem, 6vw, 4.6rem); line-height: 0.95; max-width: 16ch; margin-bottom: 22px; }
.section-head { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 40px; align-items: end; margin-bottom: 56px; }
.section-head .lead { margin: 0; }
@media (max-width: 860px) { .section-head { grid-template-columns: 1fr; gap: 10px; } }

.light { background: var(--cream); color: var(--ink-text); }
.light .lead { color: var(--ink-muted); }
.light .chapter-label, .light .eyebrow { color: #8a6d00; }
.light .card { background: #fff; border-color: #e8e2b8; }
.light .card p { color: var(--ink-muted); }

/* ---------- Cards / grids ---------- */
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
@media (max-width: 960px) { .grid-4 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 760px) { .grid-3, .grid-4 { grid-template-columns: 1fr; } }

.card {
  background: var(--panel); border: 1px solid var(--line); border-radius: var(--radius); padding: 30px;
  transition: transform 0.25s ease, border-color 0.25s ease;
}
.card:hover { transform: translateY(-4px); border-color: rgba(221, 20, 129, 0.5); }
.card h3 { font-size: 1.3rem; margin: 14px 0 10px; font-family: var(--font-body); font-weight: 800; line-height: 1.25; }
.card p { color: var(--muted); margin: 0; }
.card-num { font-family: var(--font-display); font-size: 2.6rem; color: var(--pink); line-height: 1; }

.stat { font-family: var(--font-display); font-size: clamp(3.2rem, 7vw, 5rem); line-height: 1; color: var(--pink); }
.stat-card p { margin-top: 12px; }
.source { margin-top: 26px; font-size: 0.86rem; color: var(--muted); }
.light .source { color: #8a7a55; }
.source a { text-decoration: underline; text-underline-offset: 3px; }

.icon-bubble {
  width: 52px; height: 52px; border-radius: 14px; display: grid; place-items: center;
  background: rgba(221, 20, 129, 0.12); color: var(--pink);
}
.icon-bubble svg { width: 26px; height: 26px; }
.light .icon-bubble { background: var(--cream-2); }

/* ---------- Flow (what is clipping) ---------- */
.flow { display: grid; grid-template-columns: 1fr auto 1fr auto 1fr; gap: 18px; align-items: stretch; }
.flow-arrow { display: grid; place-items: center; color: var(--pink); font-size: 1.8rem; }
@media (max-width: 860px) {
  .flow { grid-template-columns: 1fr; }
  .flow-arrow { transform: rotate(90deg); }
}

/* ---------- Network visual ---------- */
.network-grid { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 56px; align-items: center; }
@media (max-width: 960px) { .network-grid { grid-template-columns: 1fr; } }
.network { position: relative; aspect-ratio: 1; width: 100%; max-width: 560px; margin-inline: auto; }
.network svg.lines { position: absolute; inset: 0; width: 100%; height: 100%; }
.network .lines line { vector-effect: non-scaling-stroke; stroke: rgba(221, 20, 129, 0.45); stroke-width: 1.5; stroke-dasharray: 4 6; animation: dash 1.6s linear infinite; }
@keyframes dash { to { stroke-dashoffset: -20; } }
.node {
  position: absolute; transform: translate(-50%, -50%); display: grid; place-items: center; border-radius: 50%;
  font-weight: 800; font-size: 0.78rem; background: var(--panel-2); border: 1px solid #333; width: 64px; height: 64px;
}
.node.big { width: 80px; height: 80px; background: var(--pink); border-color: var(--pink); font-size: 0.9rem; }
.node.core {
  width: 150px; height: 150px; background: var(--cream); color: var(--black); border: 4px solid var(--gold);
  font-family: var(--font-display); font-size: 1.3rem; text-transform: uppercase; line-height: 1.05; text-align: center;
  box-shadow: 0 0 0 14px rgba(245, 213, 118, 0.08), 0 0 80px rgba(221, 20, 129, 0.35);
}
@media (max-width: 520px) {
  .node { width: 48px; height: 48px; font-size: 0.66rem; }
  .node.big { width: 60px; height: 60px; font-size: 0.72rem; }
  .node.core { width: 108px; height: 108px; font-size: 1rem; }
}
.check-list { list-style: none; padding: 0; margin: 28px 0 0; display: grid; gap: 16px; }
.check-list li { display: grid; grid-template-columns: 28px 1fr; gap: 12px; }
.check-list li::before {
  content: ""; width: 22px; height: 22px; margin-top: 3px; border-radius: 50%;
  background: var(--pink) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E") center/13px no-repeat;
}
.check-list strong { display: block; }
.check-list span { color: var(--muted); }
.light .check-list span { color: var(--ink-muted); }

/* ---------- Comparison table ---------- */
.compare-wrap { overflow-x: auto; border-radius: var(--radius); }
.compare { width: 100%; min-width: 720px; border-collapse: separate; border-spacing: 0 10px; }
.compare th { text-align: left; font-size: 0.75rem; letter-spacing: 0.16em; text-transform: uppercase; color: #8a6d00; padding: 0 22px 6px; }
.compare td { background: #fff; padding: 20px 22px; font-weight: 500; border-block: 1px solid #e8e2b8; }
.compare td:first-child { border-left: 1px solid #e8e2b8; border-radius: 14px 0 0 14px; font-weight: 800; }
.compare td:last-child { border-right: 1px solid #e8e2b8; border-radius: 0 14px 14px 0; }
.compare tr.us td { background: var(--black); color: var(--cream); border-color: var(--black); font-weight: 700; }
.compare tr.us td:first-child { color: var(--pink); }
.yes { color: #0f7a3d; font-weight: 800; }
.no { color: #b3261e; font-weight: 800; }
.compare tr.us .yes { color: var(--gold); }

/* ---------- Steps (campaign) ---------- */
.steps { counter-reset: step; display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
@media (max-width: 960px) { .steps { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .steps { grid-template-columns: 1fr; } }
.step { position: relative; padding-top: 26px; border-top: 2px solid var(--line); }
.step::before { counter-increment: step; content: "0" counter(step); font-family: var(--font-display); font-size: 3rem; color: var(--pink); line-height: 1; }
.step h3 { font-size: 1.2rem; margin: 14px 0 8px; font-weight: 800; font-family: var(--font-body); }
.step p { color: var(--muted); margin: 0; }

/* ---------- Pricing ---------- */
.tiers { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; align-items: stretch; }
@media (max-width: 900px) { .tiers { grid-template-columns: 1fr; } }
.tier { position: relative; display: flex; flex-direction: column; background: var(--panel); border: 1px solid var(--line); border-radius: var(--radius); padding: 34px; }
.tier.featured { background: var(--pink); border-color: var(--pink); box-shadow: 0 30px 80px rgba(221, 20, 129, 0.35); }
.tier .badge {
  position: absolute; top: -14px; right: 24px; background: var(--gold); color: var(--black);
  font-size: 0.72rem; font-weight: 800; letter-spacing: 0.14em; text-transform: uppercase; padding: 7px 14px; border-radius: 999px;
}
.tier-name { font-size: 0.78rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold); font-weight: 800; }
.tier.featured .tier-name { color: #fff; }
.tier-budget { font-size: 1.35rem; font-weight: 800; margin: 12px 0 18px; }
.tier-views { font-family: var(--font-display); font-size: clamp(3.4rem, 6vw, 4.6rem); line-height: 1; color: var(--pink); }
.tier.featured .tier-views { color: #fff; }
.tier-views-label { color: var(--muted); margin-bottom: 26px; }
.tier.featured .tier-views-label, .tier.featured li { color: rgba(255,255,255,.9); }
.tier ul { list-style: none; padding: 0; margin: 0 0 28px; display: grid; gap: 10px; color: var(--muted); font-size: 0.95rem; }
.tier li::before { content: "✓"; color: var(--gold); font-weight: 800; margin-right: 10px; }
.tier .btn { margin-top: auto; }
.tier.featured .btn-primary { background: var(--black); box-shadow: none; }
.fine-print { margin-top: 26px; color: var(--muted-2); font-size: 0.85rem; max-width: 80ch; }

/* ---------- Split band (clippers) ---------- */
.band {
  position: relative; overflow: hidden; border-radius: 28px; padding: clamp(36px, 6vw, 72px);
  background: linear-gradient(135deg, #1a0a12 0%, #0a0a0a 60%);
  border: 1px solid rgba(221, 20, 129, 0.35);
  display: grid; grid-template-columns: 1.2fr 0.8fr; gap: 40px; align-items: center;
}
.band::after {
  content: ""; position: absolute; right: -40px; top: -120px; width: 70px; height: 300px; background: var(--pink); transform: rotate(24deg); opacity: 0.9;
}
.band h2 { font-size: clamp(2.4rem, 5.5vw, 4.2rem); line-height: 0.95; margin-bottom: 18px; }
.band .lang { font-family: var(--font-display); text-transform: uppercase; color: var(--gold); font-size: 1.3rem; margin-bottom: 18px; }
.band-list { display: grid; gap: 14px; position: relative; z-index: 1; margin-top: 30px; }
.band-list div { background: rgba(255,255,255,.04); border: 1px solid var(--line); border-radius: 14px; padding: 16px 18px; font-weight: 700; }
.band-list span { display: block; color: var(--muted); font-weight: 500; font-size: .9rem; }
@media (max-width: 860px) { .band { grid-template-columns: 1fr; } .band::after { display: none; } }

/* ---------- Blog cards ---------- */
.post-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
@media (max-width: 900px) { .post-grid { grid-template-columns: 1fr; } }
.post-card { display: flex; flex-direction: column; background: var(--panel); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; transition: transform .25s, border-color .25s; }
.post-card:hover { transform: translateY(-5px); border-color: rgba(221, 20, 129, 0.55); }
.post-thumb { aspect-ratio: 16 / 9; display: grid; place-items: center; padding: 24px; position: relative; overflow: hidden; }
.post-thumb span { font-family: var(--font-display); text-transform: uppercase; font-size: clamp(1.5rem, 2.6vw, 2rem); line-height: 1; text-align: center; position: relative; z-index: 1; }
.post-thumb::after { content: ""; position: absolute; width: 40px; height: 160%; background: currentColor; opacity: .18; transform: rotate(24deg); right: 18%; }
.thumb-pink { background: var(--pink); color: #fff; }
.thumb-gold { background: var(--gold); color: var(--black); }
.thumb-cream { background: var(--cream); color: var(--black); }
.post-body { padding: 24px 26px 28px; display: flex; flex-direction: column; flex: 1; }
.post-meta { font-size: 0.78rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--gold); font-weight: 700; margin-bottom: 10px; }
.post-body h3 { font-size: 1.25rem; font-weight: 800; line-height: 1.3; margin-bottom: 10px; }
.post-body p { color: #cfcbb6; font-size: 0.98rem; }
.post-body .read { margin-top: auto; color: var(--pink); font-weight: 700; }

/* ---------- FAQ ---------- */
.faq { max-width: 860px; }
.faq details { border-bottom: 1px solid var(--line); }
.faq summary {
  list-style: none; cursor: pointer; padding: 24px 44px 24px 0; position: relative; font-weight: 700; font-size: 1.12rem;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "+"; position: absolute; right: 4px; top: 50%; transform: translateY(-50%); font-size: 1.8rem; color: var(--pink); transition: transform .25s;
}
.faq details[open] summary::after { transform: translateY(-50%) rotate(45deg); }
.faq details p { color: var(--muted); padding-bottom: 24px; margin: 0; max-width: 70ch; }

/* ---------- Booking ---------- */
.booking { display: grid; grid-template-columns: 0.8fr 1.2fr; gap: 40px; align-items: start; }
@media (max-width: 960px) { .booking { grid-template-columns: 1fr; } }
.calendar-frame { background: #fff; border-radius: var(--radius); overflow: hidden; min-height: 700px; }
.calendly-inline-widget { min-width: 320px; height: 700px; }

/* ---------- Footer ---------- */
.site-footer { border-top: 1px solid var(--line); padding: 70px 0 34px; background: var(--black); }
.footer-top { display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: 36px; }
@media (max-width: 860px) { .footer-top { grid-template-columns: 1fr 1fr; } }
@media (max-width: 520px) { .footer-top { grid-template-columns: 1fr; } }
.footer-brand img { width: 150px; margin-bottom: 18px; }
.footer-brand p { color: var(--muted); max-width: 34ch; }
.site-footer h3 { font-size: 0.78rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold); margin-bottom: 16px; font-family: var(--font-body); }
.site-footer nav a, .site-footer address a, .site-footer address span { display: block; color: var(--muted); padding: 5px 0; font-style: normal; }
.site-footer nav a:hover, .site-footer address a:hover { color: var(--cream); }
.footer-bottom { margin-top: 56px; padding-top: 24px; border-top: 1px solid var(--line); display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; color: var(--muted-2); font-size: 0.85rem; }
.footer-word { font-family: var(--font-display); text-transform: uppercase; font-size: clamp(4rem, 17vw, 14rem); line-height: .8; color: transparent; -webkit-text-stroke: 1px rgba(253,251,231,.14); margin-top: 40px; text-align: center; user-select: none; }

/* ---------- Page hero (inner pages) ---------- */
.page-hero { padding: clamp(60px, 9vw, 110px) 0 clamp(40px, 6vw, 70px); position: relative; overflow: hidden; }
.page-hero::before { content: ""; position: absolute; width: 600px; height: 600px; right: -200px; top: -250px; background: radial-gradient(circle, rgba(221, 20, 129, 0.25), transparent 62%); z-index: -1; }
.page-hero h1 { font-size: clamp(2.8rem, 8vw, 6rem); line-height: .93; max-width: 15ch; margin-bottom: 22px; }

/* ---------- Article ---------- */
.breadcrumbs { font-size: 0.85rem; color: var(--muted-2); margin-bottom: 20px; }
.breadcrumbs a { color: var(--muted); }
.breadcrumbs a:hover { color: var(--cream); }
.article-hero h1 { font-family: var(--font-body); text-transform: none; font-weight: 900; font-size: clamp(2.1rem, 5vw, 3.6rem); line-height: 1.08; letter-spacing: -0.02em; max-width: 22ch; }
.article-meta { display: flex; flex-wrap: wrap; gap: 18px; color: var(--muted); font-size: 0.9rem; margin-top: 18px; }
.article-wrap { background: var(--cream); color: var(--ink-text); padding: clamp(50px, 7vw, 90px) 0; }
.article-layout { display: grid; grid-template-columns: minmax(0, 720px) 280px; gap: 60px; justify-content: center; }
@media (max-width: 1040px) { .article-layout { grid-template-columns: minmax(0, 720px); } .toc { display: none; } }
.prose { font-size: 1.08rem; line-height: 1.75; }
.prose h2 { font-size: clamp(1.6rem, 3vw, 2.1rem); font-weight: 900; letter-spacing: -0.01em; line-height: 1.2; margin: 2.2em 0 .6em; scroll-margin-top: 100px; }
.prose h3 { font-size: 1.3rem; font-weight: 800; margin: 1.8em 0 .5em; line-height: 1.3; }
.prose p, .prose ul, .prose ol { margin: 0 0 1.2em; }
.prose ul, .prose ol { padding-left: 1.3em; }
.prose li { margin-bottom: .5em; }
.prose a { color: var(--pink); text-decoration: underline; text-underline-offset: 3px; font-weight: 600; }
.prose strong { color: #000; }
.prose blockquote { margin: 1.8em 0; padding: 22px 26px; background: #fff; border-radius: 14px; border: 1px solid #e8e2b8; font-size: 1.12rem; font-weight: 600; }
.prose table { width: 100%; border-collapse: collapse; margin: 1.5em 0; font-size: .98rem; }
.prose th, .prose td { text-align: left; padding: 12px 14px; border-bottom: 1px solid #e3ddb3; }
.prose th { background: #0a0a0a; color: var(--cream); font-weight: 700; }
.table-wrap { overflow-x: auto; }
.callout { background: var(--black); color: var(--cream); border-radius: 18px; padding: 30px; margin: 2.4em 0; }
.callout h3 { margin-top: 0; color: var(--cream); }
.callout p { color: var(--muted); }
.callout .btn { margin-top: 8px; text-decoration: none; color: #fff; }
.toc { position: sticky; top: 100px; align-self: start; background: #fff; border: 1px solid #e8e2b8; border-radius: 16px; padding: 24px; font-size: .92rem; }
.toc h2 { font-size: .75rem; letter-spacing: .18em; text-transform: uppercase; color: #8a6d00; margin-bottom: 12px; font-family: var(--font-body); }
.toc ol { margin: 0; padding-left: 1.1em; display: grid; gap: 8px; }
.toc a { color: var(--ink-muted); }
.toc a:hover { color: var(--pink); }
.related { padding: clamp(60px, 8vw, 100px) 0; }

/* ---------- Tier cards (clippers) ---------- */
.club { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
@media (max-width: 900px) { .club { grid-template-columns: 1fr; } }
.club .card.vip { background: linear-gradient(160deg, #2a0d1c, #0a0a0a); border-color: var(--pink); }
.club .tag { display: inline-block; font-size: .72rem; font-weight: 800; letter-spacing: .16em; text-transform: uppercase; padding: 6px 12px; border-radius: 999px; background: rgba(245,213,118,.14); color: var(--gold); }

/* ---------- Reveal animations ---------- */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity .7s ease, transform .7s ease; }
.reveal.in { opacity: 1; transform: none; }
.reveal-delay-1 { transition-delay: .08s; }
.reveal-delay-2 { transition-delay: .16s; }
.reveal-delay-3 { transition-delay: .24s; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation: none !important; transition: none !important; }
  .reveal { opacity: 1; transform: none; }
}

/* ---------- 404 ---------- */
.not-found { min-height: 70vh; display: grid; place-items: center; text-align: center; padding: 80px 0; }
.not-found h1 { font-size: clamp(6rem, 22vw, 14rem); line-height: .9; color: var(--pink); }

/* FAQ on light backgrounds */
.faq-light details { border-color: #e3ddb3; }
.faq-light details p { color: var(--ink-muted); }
.prose .faq summary { font-size: 1.05rem; }
.light .section-title .stroke { -webkit-text-stroke-color: var(--ink-text); }

/* ---------- Decision-maker stats ---------- */
.buyers {
  margin-top: 64px; padding: clamp(28px, 5vw, 52px); border-radius: 26px;
  background: var(--cream); color: var(--ink-text);
  display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 40px 48px; align-items: center;
}
.buyers .eyebrow { color: #8a6d00; }
.buyers-head h3 { font-size: clamp(2.2rem, 5vw, 3.6rem); line-height: .95; margin-bottom: 16px; }
.buyers-head p { color: var(--ink-muted); margin: 0; max-width: 44ch; }
.buyers-stats { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; }
.buyers-stats div { background: #fff; border: 1px solid #e8e2b8; border-radius: 16px; padding: 20px 22px; display: flex; flex-direction: column; gap: 6px; }
.buyers-stats strong { font-family: var(--font-display); font-weight: 400; font-size: clamp(2.4rem, 4vw, 3.2rem); line-height: 1; color: var(--pink); }
.buyers-stats span { font-size: .95rem; font-weight: 600; line-height: 1.45; }
.buyers-stats em { font-style: normal; font-size: .75rem; color: #8a7a55; letter-spacing: .04em; margin-top: auto; }
.buyers .btn-ghost { color: var(--ink-text); box-shadow: inset 0 0 0 1.5px rgba(26,26,26,.35); justify-self: start; }
.buyers .btn-ghost:hover { box-shadow: inset 0 0 0 1.5px var(--ink-text); }
@media (max-width: 900px) { .buyers { grid-template-columns: 1fr; } }
@media (max-width: 480px) { .buyers-stats { grid-template-columns: 1fr; } }

/* Stat row inside articles */
.stat-row { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; margin: 1.6em 0 2em; }
@media (max-width: 560px) { .stat-row { grid-template-columns: 1fr; } }
.stat-block { background: var(--black); color: var(--cream); border-radius: 16px; padding: 22px; display: flex; flex-direction: column; gap: 8px; }
.stat-block strong { font-family: var(--font-display); font-weight: 400; font-size: 2.8rem; line-height: 1; color: var(--pink); }
.stat-block span { font-size: .98rem; line-height: 1.5; }
.stat-block em { font-style: normal; font-size: .75rem; color: var(--muted-2); margin-top: auto; }

/* Blog thumbnail images (add "image" to a post in the build) */
.post-thumb.has-img { padding: 0; }
.post-thumb.has-img img { width: 100%; height: 100%; object-fit: cover; }
.post-thumb.has-img::after { display: none; }

/* ---------- Packages ---------- */
.tier-pitch { font-family: var(--font-display); text-transform: uppercase; font-size: clamp(1.9rem, 3.2vw, 2.4rem); line-height: 1; margin: 12px 0 12px; }
.tier-desc { color: var(--muted); margin-bottom: 22px; }
.tier.featured .tier-desc { color: rgba(255,255,255,.9); }
.budget-how { margin-top: 28px; background: var(--panel); border: 1px solid var(--line); border-radius: var(--radius); padding: clamp(24px, 4vw, 36px); }
.budget-how h3 { font-size: .8rem; letter-spacing: .2em; text-transform: uppercase; color: var(--gold); margin-bottom: 20px; font-family: var(--font-body); }
.budget-steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; counter-reset: bstep; }
.budget-steps div { display: flex; flex-direction: column; gap: 6px; padding-left: 44px; position: relative; }
.budget-steps div::before { counter-increment: bstep; content: counter(bstep); position: absolute; left: 0; top: 0; width: 30px; height: 30px; border-radius: 50%; background: var(--pink); color: #fff; font-weight: 800; display: grid; place-items: center; font-size: .9rem; }
.budget-steps strong { font-size: 1.05rem; }
.budget-steps span { color: var(--muted); font-size: .95rem; }
@media (max-width: 860px) { .budget-steps { grid-template-columns: 1fr; } }

/* ---------- Mobile quick-action bar ---------- */
.mobile-cta { display: none; }
@media (max-width: 760px) {
  .mobile-cta {
    display: grid; grid-template-columns: 1.4fr 1fr; gap: 10px;
    position: fixed; left: 0; right: 0; bottom: 0; z-index: 60;
    padding: 10px 14px calc(10px + env(safe-area-inset-bottom, 0px));
    background: rgba(10,10,10,.92); backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
    border-top: 1px solid var(--line);
  }
  .mobile-cta .btn { min-height: 48px; padding: 0 14px; font-size: .95rem; }
  .mobile-cta { transform: translateY(110%); transition: transform .35s ease; }
  .mobile-cta.show { transform: none; }
  body { padding-bottom: calc(70px + env(safe-area-inset-bottom, 0px)); }
}

/* ---------- Mobile refinements ---------- */
@media (max-width: 640px) {
  .section { padding: 64px 0; }
  .section-tight { padding: 44px 0; }
  .section-head { margin-bottom: 32px; }
  .section-title { font-size: clamp(2.3rem, 11vw, 3rem); }
  .hero { padding: 36px 0 36px; }
  .hero h1 { font-size: clamp(3rem, 15vw, 4.2rem); }
  .hero-actions .btn { flex: 1 1 100%; }
  .hero-visual { height: 330px; max-width: 340px; }
  .phone { border-radius: 24px; }
  .chip { font-size: .72rem; padding: 7px 11px; }
  .chip-1 { bottom: 70px; }
  .chip-2 { bottom: 10px; }
  .skip-tag { top: 190px; }
  .card { padding: 22px; }
  .stat { font-size: 3rem; }
  .tier { padding: 26px; }
  .band { padding: 28px 22px; border-radius: 22px; }
  .booking .check-list { margin-top: 18px; }
  .calendar-frame { min-height: 640px; }
  .calendly-inline-widget { height: 640px; }
  .site-footer nav a, .site-footer address a, .site-footer address span { padding: 9px 0; }
  .footer-word { display: none; }
  .marquee span { font-size: 1.3rem; padding: 10px 0; }
  .marquee span::after { margin: 0 16px; }
  .faq summary { font-size: 1.02rem; padding: 20px 40px 20px 0; }
  .article-hero h1 { font-size: 2rem; }
  .prose { font-size: 1.02rem; }
  .toc { display: none; }

  /* Comparison table becomes stacked cards */
  .compare-wrap { overflow: visible; }
  .compare, .compare tbody, .compare tr, .compare td { display: block; min-width: 0; width: 100%; }
  .compare { border-spacing: 0; }
  .compare thead { display: none; }
  .compare tr { background: #fff; border: 1px solid #e8e2b8; border-radius: 16px; padding: 6px 18px; margin-bottom: 12px; }
  .compare tr.us { background: var(--black); border-color: var(--black); }
  .compare td, .compare td:first-child, .compare td:last-child { border: 0; border-radius: 0; background: transparent; padding: 10px 0; display: flex; justify-content: space-between; gap: 16px; text-align: right; }
  .compare td:first-child { font-size: 1.1rem; padding-top: 14px; text-align: left; }
  .compare td + td { border-top: 1px solid #efe9c4; }
  .compare tr.us td + td { border-top-color: rgba(253,251,231,.12); }
  .compare td[data-label]:not([data-label=""])::before { content: attr(data-label); font-size: .72rem; letter-spacing: .12em; text-transform: uppercase; color: #8a6d00; font-weight: 700; text-align: left; }
  .compare tr.us td[data-label]::before { color: var(--gold); }
}

.marquee-wrap { overflow: hidden; padding: 18px 0; }

/* ---------- Pricing page ---------- */
.price-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; align-items: stretch; }
@media (max-width: 1100px) { .price-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) { .price-grid { grid-template-columns: 1fr; } }
.price-tier { padding: 30px 26px; }
.tier-sub { color: var(--muted); font-size: .92rem; margin: 6px 0 14px; }
.tier.featured .tier-sub { color: rgba(255,255,255,.88); }
.tier-price { font-family: var(--font-display); font-size: clamp(2.8rem, 4.4vw, 3.6rem); line-height: 1; margin-bottom: 22px; color: var(--cream); }
.tier-specs { margin: 0 0 26px; display: grid; gap: 0; }
.tier-specs div { display: flex; justify-content: space-between; align-items: baseline; gap: 12px; padding: 11px 0; border-top: 1px solid var(--line); }
.tier.featured .tier-specs div { border-top-color: rgba(255,255,255,.22); }
.tier-specs dt { font-size: .8rem; color: var(--muted); }
.tier.featured .tier-specs dt { color: rgba(255,255,255,.85); }
.tier-specs dd { margin: 0; font-weight: 800; text-align: right; font-variant-numeric: tabular-nums; }
.price-tier .btn { margin-top: auto; }

/* ---------- About page ---------- */
.case-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
@media (max-width: 980px) { .case-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) { .case-grid { grid-template-columns: 1fr; } }
.case-card { position: relative; overflow: hidden; display: flex; flex-direction: column; gap: 10px; min-height: 340px; padding: 26px; border-radius: 22px; border: 1px solid var(--line); transition: transform .25s ease; }
.case-card:hover { transform: translateY(-5px) rotate(-.4deg); }
.case-card::after { content: ""; position: absolute; width: 36px; height: 180%; right: 14%; top: -40%; transform: rotate(24deg); background: currentColor; opacity: .08; }
.case-pink { background: var(--pink); color: #fff; border-color: var(--pink); }
.case-dark { background: var(--panel); color: var(--cream); }
.case-gold { background: var(--gold); color: var(--black); border-color: var(--gold); }
.case-cream { background: var(--cream); color: var(--black); border-color: var(--cream); }
.case-top { display: flex; justify-content: space-between; gap: 10px; align-items: center; }
.case-who { font-family: var(--font-display); text-transform: uppercase; font-size: 1.6rem; line-height: 1; }
.case-outlet { font-size: .7rem; letter-spacing: .16em; text-transform: uppercase; font-weight: 800; padding: 6px 10px; border-radius: 999px; border: 1px solid currentColor; opacity: .85; white-space: nowrap; }
.case-big { font-family: var(--font-display); font-size: clamp(3.6rem, 6vw, 5rem); line-height: .95; margin-top: 8px; }
.case-dark .case-big { color: var(--pink); }
.case-fact { margin: 0; font-size: .98rem; line-height: 1.5; font-weight: 500; }
.case-dark .case-fact { color: var(--muted); }
.case-foot { margin-top: auto; padding-top: 14px; border-top: 1px solid currentColor; display: flex; justify-content: space-between; gap: 12px; font-size: .78rem; opacity: .85; }
.case-headline { font-style: italic; }
.case-date { white-space: nowrap; font-weight: 700; }
.founder { display: grid; grid-template-columns: 0.75fr 1.25fr; gap: 56px; align-items: center; }
@media (max-width: 900px) { .founder { grid-template-columns: 1fr; gap: 30px; } }
.founder-photo { aspect-ratio: 4 / 5; max-width: 420px; width: 100%; border-radius: 28px; background: linear-gradient(160deg, #2a0d1c, #0a0a0a 70%); border: 1px solid rgba(221,20,129,.45); display: grid; place-items: center; position: relative; overflow: hidden; }
.founder-photo span { font-family: var(--font-display); font-size: clamp(6rem, 14vw, 10rem); color: var(--pink); }
.founder-photo::after { content: ""; position: absolute; width: 60px; height: 160%; background: var(--gold); opacity: .18; transform: rotate(24deg); right: 18%; top: -30%; }
.founder-photo img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.founder-role { color: var(--gold); font-weight: 700; letter-spacing: .04em; margin: -6px 0 16px; }
@media (max-width: 640px) { .founder-photo { max-width: 260px; } .case-card { min-height: 0; } }
.tier-specs dd { white-space: nowrap; }


/* ==========================================================================
   v3 conversion + motion layer
   ========================================================================== */
.text-link { color: var(--gold); font-weight: 700; text-decoration: underline; text-underline-offset: 3px; white-space: nowrap; }
.light .text-link { color: #8a6d00; }
.hero-note .text-link { display: inline-block; margin-top: 6px; }

/* Counters */
[data-count] { font-variant-numeric: tabular-nums; }

/* Proof strip */
.proof { padding: 70px 0 30px; }
.proof-head { display: flex; flex-direction: column; gap: 10px; margin-bottom: 34px; }
.proof-head h2 { font-size: clamp(2.2rem, 5vw, 3.8rem); line-height: .95; text-transform: uppercase; max-width: 18ch; }
.proof-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.proof-item { position: relative; display: flex; flex-direction: column; gap: 6px; padding: 22px; border-radius: 20px; background: var(--panel); border: 1px solid var(--line); overflow: hidden; transition: transform .25s ease, border-color .25s ease; }
.proof-item::before { content: ""; position: absolute; inset: auto -30% -60% auto; width: 180px; height: 180px; border-radius: 50%; background: radial-gradient(circle, rgba(221,20,129,.35), transparent 70%); opacity: 0; transition: opacity .3s; }
.proof-item:hover { transform: translateY(-4px); border-color: rgba(221,20,129,.6); }
.proof-item:hover::before { opacity: 1; }
.proof-top { display: flex; align-items: center; gap: 10px; }
.proof-avatar, .host-photo { position: relative; flex: none; width: 44px; height: 44px; border-radius: 50%; overflow: hidden; background: var(--pink); display: grid; place-items: center; box-shadow: 0 0 0 2px var(--gold); }
.proof-avatar::after, .host-photo::after { content: attr(data-initials); font-weight: 900; font-size: .85rem; color: #fff; }
.proof-avatar img, .host-photo img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: 1; }
.proof-who { font-family: var(--font-display); text-transform: uppercase; font-size: 1.25rem; line-height: 1; }
.proof-big { font-family: var(--font-display); font-size: clamp(3rem, 5vw, 4.2rem); line-height: 1; color: var(--pink); margin-top: 10px; display: flex; align-items: baseline; gap: 8px; }
.proof-big small { font-family: var(--font-body); font-size: .9rem; font-weight: 800; color: var(--cream); text-transform: uppercase; letter-spacing: .08em; }
.proof-item p { margin: 0; color: #cfcbb6; font-size: .95rem; line-height: 1.45; }
.proof-src { margin-top: auto; padding-top: 12px; font-size: .72rem; letter-spacing: .14em; text-transform: uppercase; font-weight: 800; color: var(--gold); }
@media (max-width: 980px) { .proof-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .proof-grid { grid-template-columns: 1fr 1fr; gap: 10px; } .proof-item { padding: 16px; } .proof-big { font-size: 2.4rem; flex-direction: column; gap: 2px; } .proof-item p { font-size: .85rem; } }

/* Press photos on About cards (optional: hidden if file missing) */
.case-photo { display: block; margin: -26px -26px 8px; height: 190px; overflow: hidden; position: relative; }
.case-photo img { width: 100%; height: 100%; object-fit: cover; filter: grayscale(1) contrast(1.08); transition: filter .4s ease, transform .5s ease; }
.case-photo::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 40%, rgba(10,10,10,.55)); mix-blend-mode: multiply; }
.case-card:hover .case-photo img { filter: none; transform: scale(1.04); }
.case-photo.no-photo, .proof-avatar.no-photo img, .host-photo.no-photo img { display: none; }

/* Scissor cutter */
.cutter { margin: 0 0 44px; padding: clamp(18px, 3vw, 28px); border-radius: 24px; background: var(--black); color: var(--cream); box-shadow: 0 30px 80px rgba(10,10,10,.25); }
.cutter-head { display: flex; justify-content: space-between; align-items: center; gap: 14px; flex-wrap: wrap; margin-bottom: 18px; font-size: .85rem; }
.cutter-rec { display: inline-flex; align-items: center; gap: 8px; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; font-size: .74rem; }
.cutter-rec i { width: 9px; height: 9px; border-radius: 50%; background: #ff3b3b; animation: rec 1.2s infinite; }
@keyframes rec { 50% { opacity: .25; } }
.cutter-hint { color: var(--gold); font-weight: 700; }
.cutter-track { position: relative; display: grid; grid-template-columns: repeat(8, 1fr); height: 132px; padding-top: 34px; cursor: none; touch-action: pan-y; user-select: none; }
.seg { position: relative; margin: 0; border-radius: 0; background: var(--panel-2); transition: transform .45s cubic-bezier(.2,.9,.3,1.3), border-radius .3s, background .3s, box-shadow .3s; transform-origin: 50% 100%; }
.seg:first-child { border-radius: 10px 0 0 10px; }
.seg:last-child { border-radius: 0 10px 10px 0; }
.seg + .seg::before { content: ""; position: absolute; left: -1px; top: -8px; bottom: -8px; border-left: 2px dashed rgba(245,213,118,.45); z-index: 2; transition: opacity .2s; }
.seg-frame { position: absolute; inset: 8px; border-radius: 6px; opacity: .9;
  background:
    repeating-linear-gradient(90deg, rgba(253,251,231,.18) 0 2px, transparent 2px 6px) center / 100% 34% no-repeat,
    linear-gradient(135deg, #2b2b2b, #1a1a1a); }
.seg:nth-child(3n+1) .seg-frame { background: repeating-linear-gradient(90deg, rgba(253,251,231,.2) 0 2px, transparent 2px 5px) center / 100% 48% no-repeat, linear-gradient(135deg, #3a1027, #1a1a1a); }
.seg:nth-child(3n+2) .seg-frame { background: repeating-linear-gradient(90deg, rgba(253,251,231,.2) 0 2px, transparent 2px 7px) center / 100% 26% no-repeat, linear-gradient(135deg, #33301f, #1a1a1a); }
.seg-time { position: absolute; left: 10px; bottom: 8px; font-size: .66rem; font-weight: 700; color: var(--muted); font-variant-numeric: tabular-nums; }
.seg-clip { position: absolute; inset: 0; display: flex; flex-direction: column; justify-content: center; align-items: center; gap: 2px; text-align: center; opacity: 0; transform: scale(.85); transition: opacity .3s .15s, transform .3s .15s; }
.seg-clip b { font-family: var(--font-display); font-weight: 400; font-size: clamp(.9rem, 1.6vw, 1.25rem); text-transform: uppercase; }
.seg-clip em { font-style: normal; font-size: clamp(.58rem, 1vw, .72rem); font-weight: 800; color: var(--black); background: var(--gold); padding: 2px 6px; border-radius: 999px; }
.seg.cut { border-radius: 10px; background: var(--pink); box-shadow: 0 14px 34px rgba(221,20,129,.45); margin: 0 4px; }
.seg.cut .seg-frame, .seg.cut .seg-time { opacity: 0; }
.seg.cut .seg-clip { opacity: 1; transform: none; }
.seg.cut::before { opacity: 0; }
.seg.cut:nth-child(odd) { transform: translateY(-26px) rotate(-3deg); }
.seg.cut:nth-child(even) { transform: translateY(-14px) rotate(2.5deg); }
.cutter-scissors { position: absolute; top: 0; left: 0; width: 76px; height: 76px; margin: -38px 0 0 -38px; pointer-events: none; z-index: 5; opacity: 0; transition: opacity .2s; filter: drop-shadow(0 6px 14px rgba(0,0,0,.5)); }
.cutter-track.active .cutter-scissors, .cutter-track.auto .cutter-scissors { opacity: 1; }
.cutter-scissors svg { display: block; transform: rotate(90deg); width: 76px; height: 76px; }
.blade { transform-origin: 32px 32px; transition: transform .09s ease; }
.cutter-scissors.snip .blade-a { transform: rotate(9deg); }
.cutter-scissors.snip .blade-b { transform: rotate(-9deg); }
.snip-spark { position: absolute; width: 8px; height: 8px; margin: -4px 0 0 -4px; border-radius: 50%; background: var(--gold); pointer-events: none; z-index: 4; animation: spark .5s ease-out forwards; }
@keyframes spark { to { transform: scale(5); opacity: 0; } }
.cutter-foot { display: flex; align-items: center; gap: 16px; flex-wrap: wrap; margin-top: 18px; font-size: .9rem; color: var(--muted); }
.cutter-count strong { color: var(--cream); font-size: 1.1rem; }
.cutter-done { font-family: var(--font-display); text-transform: uppercase; font-size: 1.4rem; color: var(--cream); opacity: 0; transform: translateY(6px); transition: .4s; }
.cutter.complete .cutter-done { opacity: 1; transform: none; }
.cutter-reset { margin-left: auto; background: transparent; color: var(--cream); border: 1.5px solid rgba(253,251,231,.35); border-radius: 999px; padding: 8px 16px; font: inherit; font-weight: 700; cursor: pointer; }
.cutter-reset:hover { border-color: var(--cream); }
@media (max-width: 640px) {
  .cutter-track { grid-template-columns: repeat(4, 1fr); grid-auto-rows: 1fr; height: auto; row-gap: 30px; padding-top: 26px; }
  .seg { height: 84px; border-radius: 0 !important; }
  .seg:nth-child(4n+1) { border-radius: 10px 0 0 10px !important; }
  .seg:nth-child(4n) { border-radius: 0 10px 10px 0 !important; }
  .seg:nth-child(4n+1)::before { display: none; }
  .seg.cut { border-radius: 10px !important; margin: 0 3px; }
  .cutter-hint { font-size: .8rem; }
}

/* Mid-page CTA strip */
.cta-strip { margin-top: 48px; display: flex; align-items: center; justify-content: space-between; gap: 20px; flex-wrap: wrap; padding: 24px 28px; border-radius: 20px; background: linear-gradient(120deg, rgba(221,20,129,.18), rgba(245,213,118,.08)); border: 1px solid rgba(221,20,129,.45); }
.cta-strip strong { display: block; font-size: 1.2rem; }
.cta-strip span { color: var(--muted); }

/* Homepage mini pricing */
.price-grid.mini { margin-bottom: 8px; }
.mini-tier { padding: 26px; }
.mini-tier .tier-price { margin: 10px 0 16px; }
.mini-tier .tier-specs { margin-bottom: 10px; }
.mini-tier .tier-sub { margin: 4px 0 0; font-size: .82rem; letter-spacing: .1em; text-transform: uppercase; font-weight: 700; }

/* What happens on the call */
.call-steps-title { font-size: .78rem; letter-spacing: .2em; text-transform: uppercase; color: var(--gold); margin: 26px 0 12px; font-weight: 800; }
.call-steps { list-style: none; counter-reset: cs; padding: 0; margin: 0; display: grid; gap: 14px; }
.call-steps li { counter-increment: cs; position: relative; padding-left: 46px; }
.call-steps li::before { content: counter(cs); position: absolute; left: 0; top: 0; width: 32px; height: 32px; border-radius: 50%; background: var(--pink); color: #fff; font-weight: 900; display: grid; place-items: center; font-size: .9rem; }
.call-steps strong { display: block; }
.call-steps span { color: var(--muted); font-size: .95rem; }
.host { display: flex; align-items: center; gap: 14px; margin-top: 24px; padding: 14px 16px; border-radius: 16px; background: var(--panel); border: 1px solid var(--line); }
.host strong { display: block; }
.host span { color: var(--muted); font-size: .9rem; }
.host-photo { width: 52px; height: 52px; }

@media (prefers-reduced-motion: reduce) {
  .seg.cut:nth-child(odd), .seg.cut:nth-child(even) { transform: none; }
  .mobile-cta { transform: none; }
}


/* ==========================================================================
   v4 interactive layer
   ========================================================================== */
.proof-sub { color: var(--muted); max-width: 62ch; margin: 6px 0 0; }
.lifechart-kicker { font-size: .72rem; letter-spacing: .18em; text-transform: uppercase; font-weight: 800; color: var(--pink); margin: 0 0 6px; }
.lc-note { font-size: .8rem; color: var(--muted); margin: 12px 0 0; }
.light .lc-note { color: var(--ink-muted); }

/* Ads vs clipping chart */
.lifechart { margin: 0 0 40px; padding: clamp(18px, 3vw, 30px); border-radius: 24px; background: var(--black); color: var(--cream); }
.lifechart-head { display: flex; justify-content: space-between; align-items: flex-end; gap: 18px; flex-wrap: wrap; }
.lifechart-head h3 { font-family: var(--font-display); font-weight: 400; text-transform: uppercase; font-size: clamp(1.6rem, 3.4vw, 2.4rem); line-height: 1; }
.lifechart-control { display: grid; gap: 8px; font-size: .92rem; color: var(--muted); min-width: 240px; }
.lifechart-control strong { color: var(--gold); }
.lifechart-plot { position: relative; margin-top: 18px; height: clamp(220px, 32vw, 320px); touch-action: pan-y; }
.lifechart-plot svg { width: 100%; height: 100%; display: block; overflow: visible; }
.lc-grid line { stroke: rgba(253,251,231,.08); }
.lc-axis text { fill: var(--muted); font-size: 11px; font-family: var(--font-body); }
.lc-area-ad { fill: rgba(185,182,163,.12); }
.lc-area-clip { fill: rgba(221,20,129,.22); }
.lc-line-ad { fill: none; stroke: #b9b6a3; stroke-width: 3; stroke-linejoin: round; transition: d .5s ease; }
.lc-line-clip { fill: none; stroke: var(--pink); stroke-width: 3.5; stroke-linejoin: round; }
.lc-stop { stroke: var(--gold); stroke-width: 1.5; stroke-dasharray: 5 5; }
.lc-stop-label { fill: var(--gold); font-size: 11px; font-weight: 800; font-family: var(--font-body); }
.lc-cross { stroke: rgba(253,251,231,.35); stroke-width: 1; }
.lc-dot-ad { fill: #b9b6a3; } .lc-dot-clip { fill: var(--pink); stroke: #fff; stroke-width: 2; }
.lc-tip { position: absolute; top: 6px; transform: translateX(-50%); background: var(--cream); color: var(--ink-text); border-radius: 10px; padding: 8px 12px; font-size: .8rem; line-height: 1.35; pointer-events: none; white-space: nowrap; box-shadow: 0 10px 30px rgba(0,0,0,.35); z-index: 3; }
.lc-tip b { display: block; }
.lifechart-foot { display: flex; flex-wrap: wrap; gap: 10px 22px; align-items: center; margin-top: 14px; font-size: .9rem; }
.lc-key { display: inline-flex; align-items: center; gap: 8px; font-weight: 700; }
.lc-key::before { content: ""; width: 22px; height: 4px; border-radius: 4px; background: #b9b6a3; }
.lc-key.lc-clip::before { background: var(--pink); }
.lc-total { margin-left: auto; color: var(--muted); }
.lc-total strong { color: var(--cream); }
.lifechart .lc-note { color: var(--muted); }

/* Range inputs */
input[type="range"] { -webkit-appearance: none; appearance: none; width: 100%; height: 8px; border-radius: 999px; background: linear-gradient(90deg, var(--pink) var(--fill, 50%), rgba(253,251,231,.18) var(--fill, 50%)); outline-offset: 6px; cursor: pointer; }
input[type="range"]::-webkit-slider-thumb { -webkit-appearance: none; width: 26px; height: 26px; border-radius: 50%; background: var(--gold); border: 4px solid var(--black); box-shadow: 0 0 0 2px var(--gold); transition: transform .15s; }
input[type="range"]::-moz-range-thumb { width: 22px; height: 22px; border-radius: 50%; background: var(--gold); border: 4px solid var(--black); }
input[type="range"]:active::-webkit-slider-thumb { transform: scale(1.15); }

/* Network interactivity */
.network-wrap { display: grid; gap: 14px; }
.network .node { cursor: pointer; transition: transform .2s ease, box-shadow .2s ease; }
.network .node:hover, .network .node.lit { box-shadow: 0 0 0 4px rgba(245,213,118,.6), 0 0 34px rgba(221,20,129,.6); }
.network .node.lit { background: var(--pink); border-color: var(--gold); color: #fff; }
button.node.core { font: inherit; font-family: var(--font-display); cursor: pointer; }
.net-pulse { position: absolute; width: 12px; height: 12px; margin: -6px 0 0 -6px; border-radius: 50%; background: var(--gold); box-shadow: 0 0 14px var(--gold); pointer-events: none; z-index: 2; }
.net-tip { position: absolute; transform: translate(-50%, calc(-100% - 14px)); background: var(--cream); color: var(--ink-text); padding: 8px 12px; border-radius: 10px; font-size: .8rem; line-height: 1.35; white-space: nowrap; pointer-events: none; z-index: 5; box-shadow: 0 10px 30px rgba(0,0,0,.4); }
.net-tip b { display: block; }
.net-bar { display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 12px 20px; }
.net-reach { color: var(--muted); }
.net-reach strong { color: var(--gold); font-size: 1.2rem; font-variant-numeric: tabular-nums; }

/* Estimator + earnings */
.estimator, .earn { margin: 26px 0 8px; display: grid; grid-template-columns: 1fr 1fr; gap: 0; border-radius: 24px; overflow: hidden; border: 1px solid rgba(221,20,129,.45); }
.est-left { padding: clamp(22px, 3vw, 34px); background: var(--panel); display: grid; align-content: start; gap: 12px; }
.est-left h3 { font-family: var(--font-display); font-weight: 400; text-transform: uppercase; font-size: clamp(1.7rem, 3.2vw, 2.4rem); line-height: 1; margin-bottom: 8px; }
.est-label { color: var(--muted); font-size: .95rem; margin-top: 8px; }
.est-label strong { color: var(--cream); font-size: 1.15rem; font-variant-numeric: tabular-nums; }
.est-ticks { display: flex; justify-content: space-between; font-size: .72rem; color: var(--muted); }
.est-right { padding: clamp(22px, 3vw, 34px); background: linear-gradient(145deg, var(--pink), #9e0d5c); color: #fff; display: grid; align-content: start; gap: 10px; }
.est-tier { font-size: .78rem; letter-spacing: .2em; text-transform: uppercase; font-weight: 800; color: var(--gold); }
.est-views span { display: block; font-family: var(--font-display); font-size: clamp(3.2rem, 7vw, 5rem); line-height: .95; font-variant-numeric: tabular-nums; }
.est-views small { font-weight: 700; opacity: .9; }
.est-specs { margin: 6px 0 10px; }
.est-specs div { display: flex; justify-content: space-between; gap: 12px; padding: 9px 0; border-top: 1px solid rgba(255,255,255,.22); font-size: .92rem; }
.est-specs dd { margin: 0; font-weight: 800; }
.est-right .btn-primary { background: var(--black); box-shadow: none; justify-self: start; }
.est-right .btn-gold { justify-self: start; }
.est-right .lc-note { color: rgba(255,255,255,.85); }
@media (max-width: 820px) { .estimator, .earn { grid-template-columns: 1fr; } }

/* Blog reading progress */
.read-progress { position: fixed; top: 0; left: 0; right: 0; height: 3px; z-index: 80; pointer-events: none; }
.read-progress span { display: block; height: 100%; width: 0; background: linear-gradient(90deg, var(--pink), var(--gold)); }

/* Women playbook strip (About) */
.women { margin-top: 40px; }
.women-head { display: flex; justify-content: space-between; align-items: center; gap: 12px; flex-wrap: wrap; margin-bottom: 16px; }
.women-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.woman { display: flex; flex-direction: column; gap: 10px; padding: 20px; border-radius: 18px; background: var(--panel); border: 1px solid var(--line); transition: transform .25s, border-color .25s; }
.woman:hover { transform: translateY(-4px); border-color: rgba(221,20,129,.6); }
.woman .proof-who { display: block; font-size: 1.15rem; }
.woman-role { display: block; font-size: .75rem; color: var(--gold); font-weight: 700; letter-spacing: .04em; }
.woman p { margin: 0; color: #cfcbb6; font-size: .92rem; line-height: 1.45; }
@media (max-width: 980px) { .women-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px) { .women-grid { grid-template-columns: 1fr; } }


/* ==========================================================================
   v5: genre wall + legibility floor
   ========================================================================== */
.biz { padding: 40px 0 70px; }
.biz-tabs { display: flex; flex-wrap: wrap; gap: 10px; margin: 0 0 22px; }
.biz-tab { font: inherit; font-weight: 700; font-size: 1rem; color: var(--cream); background: transparent; border: 1.5px solid rgba(253,251,231,.3); border-radius: 999px; padding: 10px 18px; cursor: pointer; transition: background .2s, border-color .2s, color .2s; }
.biz-tab:hover { border-color: var(--cream); }
.biz-tab.is-on { background: var(--pink); border-color: var(--pink); color: #fff; }
.biz-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.biz-card { display: flex; flex-direction: column; gap: 10px; padding: 24px; border-radius: 20px; background: var(--panel); border: 1px solid var(--line); transition: transform .25s, border-color .25s, opacity .25s; }
.biz-card:hover { transform: translateY(-4px); border-color: rgba(221,20,129,.6); }
.biz-card[hidden] { display: none; }
.biz-card.pop { animation: pop .35s ease; }
@keyframes pop { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: none; } }
.biz-genre { font-size: .85rem; letter-spacing: .12em; text-transform: uppercase; font-weight: 800; color: var(--gold); }
.biz-name { font-family: var(--font-display); font-weight: 400; text-transform: uppercase; font-size: clamp(1.8rem, 2.8vw, 2.3rem); line-height: 1; }
.biz-card p { margin: 0; color: #d9d5c0; font-size: 1.02rem; line-height: 1.5; }
.money { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-top: 16px; }
.money-item { display: flex; flex-direction: column; gap: 6px; padding: 24px; border-radius: 20px; background: linear-gradient(145deg, var(--pink), #9e0d5c); color: #fff; }
.money-item strong { font-family: var(--font-display); font-weight: 400; font-size: clamp(3rem, 5vw, 4.2rem); line-height: 1; }
.money-item span { font-size: 1.02rem; line-height: 1.45; font-weight: 600; }
.money-item em { font-style: normal; font-size: .88rem; font-weight: 800; color: var(--gold); margin-top: auto; padding-top: 8px; }
@media (max-width: 960px) { .biz-grid, .money { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .biz-grid, .money { grid-template-columns: 1fr; } }

/* Photos: consistent crops, faces kept in frame */
.proof-avatar img, .host-photo img { object-fit: cover; object-position: 50% 22%; }
.case-photo { height: 210px; }
.case-photo img { object-fit: cover; object-position: 50% 24%; }
.proof-avatar { width: 52px; height: 52px; }

/* Legibility floor: labels >= 13.5px, supporting text >= 14.5px */
.eyebrow, .chapter-label, .tier-name, .est-tier, .lifechart-kicker, .call-steps-title,
.site-footer h3, .budget-how h3, .toc h2, .tier .badge, .case-outlet, .proof-src, .club .tag,
.cutter-rec, .compare th, .woman-role, .biz-genre { font-size: .86rem !important; }
.post-meta { font-size: .9rem; }
.tier-specs dt, .est-specs div, .est-label { font-size: .95rem; }
.tier-sub, .mini-tier .tier-sub { font-size: .9rem; }
.lc-note, .fine-print, .source, .prose small, .breadcrumbs, .case-date, .case-headline, .cutter-hint { font-size: .92rem; }
.source a { font-size: inherit; }
.buyers-stats span, .stat-block span, .proof-item p, .woman p, .step p, .card p { font-size: 1rem; }
.buyers-stats em, .stat-block em, .money-item em { font-size: .9rem; }
.buyers-stats strong { font-size: clamp(2.8rem, 5vw, 3.6rem); }
.proof-big small { font-size: 1rem; }
.est-ticks { font-size: .85rem; }
.est-views small { font-size: 1rem; }
.seg-clip em { font-size: clamp(.72rem, 1.1vw, .8rem); }
.seg-time { font-size: .75rem; }
.hero-note { font-size: .98rem; }
.site-footer .footer-bottom { font-size: .9rem; }
@media (max-width: 560px) {
  .proof-grid { grid-template-columns: 1fr; }
  .proof-item p { font-size: 1rem; }
  .proof-big { font-size: 3rem; flex-direction: row; gap: 8px; }
  .seg-clip b { font-size: .95rem; }
  .seg-clip em { font-size: .72rem; padding: 2px 5px; }
  .cutter-track { row-gap: 34px; }
}

/* Counter spans must inherit their parent's display size (fixes tiny numbers) */
.buyers-stats strong > [data-count], .stat-block strong > [data-count], .money-item strong > [data-count],
.stat > [data-count], .proof-big > [data-count], .case-big > [data-count] {
  font: inherit; color: inherit; letter-spacing: inherit; line-height: inherit; display: inline;
}
.proof-big { flex-wrap: wrap; row-gap: 4px; }
.proof-big.is-word { font-size: clamp(2.4rem, 3.6vw, 3rem); }
.proof-big, .proof-big.is-word { flex-direction: column; align-items: flex-start; gap: 2px; }
.proof-big small { margin-top: 2px; }
.proof-big.is-word { text-transform: uppercase; font-size: clamp(2.6rem, 4.4vw, 3.9rem); }
/* Pre-cropped press photos */
.proof-avatar img, .case-photo img { object-position: 50% 50%; }
.case-photo { height: auto; aspect-ratio: 16 / 9; }
/* Uniform About cards: branded panel when a card has no photo */
.case-photo.no-photo { display: grid; place-items: center; background:
  repeating-linear-gradient(120deg, rgba(221,20,129,.16) 0 18px, transparent 18px 36px), #111; }
.case-photo.no-photo::before { content: attr(data-label); font-family: var(--font-display); text-transform: uppercase; font-size: clamp(2rem, 3.4vw, 2.8rem); color: var(--cream); letter-spacing: .02em; z-index: 1; }
.case-photo.no-photo::after { background: none; }
.women-grid { grid-template-columns: repeat(3, 1fr); }
@media (max-width: 900px) { .women-grid { grid-template-columns: 1fr; } }
.case-photo.no-photo img { display: none !important; }

/* ==========================================================================
   Clipper waitlist form
   ========================================================================== */
.join-grid { display: grid; grid-template-columns: .85fr 1.15fr; gap: 48px; align-items: start; }
.join-copy .band-list { margin-top: 26px; }
@media (max-width: 960px) { .join-grid { grid-template-columns: 1fr; } }
.wl { position: relative; background: var(--panel); border: 1px solid rgba(221,20,129,.45); border-radius: 26px; padding: clamp(22px, 4vw, 38px); box-shadow: 0 30px 90px rgba(221,20,129,.18); }
.wl-top { display: grid; gap: 10px; margin-bottom: 22px; }
.wl-step-label { font-size: .86rem; letter-spacing: .14em; text-transform: uppercase; font-weight: 800; color: var(--gold); }
.wl-bar { height: 8px; border-radius: 999px; background: rgba(253,251,231,.12); overflow: hidden; }
.wl-bar span { display: block; height: 100%; width: 25%; background: linear-gradient(90deg, var(--pink), var(--gold)); border-radius: 999px; transition: width .4s ease; }
.wl-hp { position: absolute; left: -9999px; width: 1px; height: 1px; opacity: 0; }
.wl-step { border: 0; margin: 0; padding: 0; display: none; }
.wl-step.is-active { display: grid; gap: 18px; animation: wlIn .35s ease; }
@keyframes wlIn { from { opacity: 0; transform: translateX(18px); } to { opacity: 1; transform: none; } }
.wl-step legend { font-family: var(--font-display); text-transform: uppercase; font-size: clamp(2rem, 4vw, 2.8rem); line-height: 1; margin-bottom: 6px; padding: 0; }
.wl-hint { margin: -6px 0 0; color: var(--muted); font-size: 1rem; }
.wl-field { display: grid; gap: 8px; }
.wl-field > span { font-weight: 700; font-size: 1rem; }
.wl-field i { font-style: normal; color: var(--muted); font-weight: 500; }
.wl-field input[type="text"], .wl-field input:not([type]), .wl-field input[type="email"], .wl-field input[type="url"] {
  font: inherit; font-size: 1.05rem; color: var(--cream); background: var(--black); border: 1.5px solid rgba(253,251,231,.2); border-radius: 14px; padding: 15px 16px; min-height: 54px; transition: border-color .2s, box-shadow .2s; width: 100%; }
.wl-field input::placeholder { color: #7d7a6b; }
.wl-field input:focus { outline: none; border-color: var(--pink); box-shadow: 0 0 0 4px rgba(221,20,129,.25); }
.wl-field input.is-bad { border-color: #ff5a5a; }
.wl-chips { display: flex; flex-wrap: wrap; gap: 10px; }
.wl-chips label, .wl-options label { position: relative; cursor: pointer; }
.wl-chips input, .wl-options input { position: absolute; opacity: 0; pointer-events: none; }
.wl-chips b { display: inline-flex; align-items: center; min-height: 46px; padding: 0 18px; border-radius: 999px; border: 1.5px solid rgba(253,251,231,.25); font-weight: 700; font-size: 1rem; transition: all .18s; }
.wl-chips-lg b { min-height: 50px; }
.wl-chips input:checked + b { background: var(--pink); border-color: var(--pink); color: #fff; }
.wl-chips input:focus-visible + b, .wl-options input:focus-visible ~ b { outline: 3px solid var(--gold); outline-offset: 2px; }
.wl-options { display: grid; gap: 10px; }
.wl-options-row { grid-template-columns: repeat(3, 1fr); }
.wl-options label { display: grid; gap: 2px; padding: 16px 18px; border-radius: 16px; border: 1.5px solid rgba(253,251,231,.2); background: var(--black); transition: all .18s; }
.wl-options label:hover { border-color: rgba(253,251,231,.5); }
.wl-options b { font-size: 1.08rem; }
.wl-options em { font-style: normal; color: var(--muted); font-size: .95rem; }
.wl-options label:has(input:checked) { border-color: var(--pink); background: rgba(221,20,129,.16); box-shadow: 0 0 0 3px rgba(221,20,129,.25); }
.wl-check { display: grid; grid-template-columns: 26px 1fr; gap: 12px; align-items: start; padding: 16px; border-radius: 16px; background: var(--black); border: 1.5px solid rgba(253,251,231,.2); cursor: pointer; font-size: 1rem; line-height: 1.5; }
.wl-check input { width: 22px; height: 22px; accent-color: var(--pink); margin-top: 2px; }
.wl-error { margin: 16px 0 0; color: #ff8a8a; font-weight: 700; font-size: 1rem; }
.wl-nav { display: flex; gap: 12px; margin-top: 26px; justify-content: flex-end; flex-wrap: wrap; }
.wl-nav [data-wl-back] { margin-right: auto; }
.wl-done { text-align: center; padding: 30px 10px; display: grid; gap: 10px; justify-items: center; animation: wlIn .4s ease; }
.wl-done-icon { width: 76px; height: 76px; border-radius: 50%; background: var(--pink); display: grid; place-items: center; font-size: 2.2rem; color: #fff; box-shadow: 0 0 0 8px rgba(221,20,129,.2); }
.wl-done h3 { font-family: var(--font-display); font-weight: 400; text-transform: uppercase; font-size: clamp(2.2rem, 5vw, 3rem); }
.wl-done p { color: var(--muted); max-width: 40ch; margin: 0; font-size: 1.05rem; }
.wl.is-done .wl-top, .wl.is-done .wl-nav, .wl.is-done .wl-step { display: none !important; }
@media (max-width: 560px) { .wl-options-row { grid-template-columns: 1fr; } .wl-nav .btn { flex: 1; } .wl-nav [data-wl-back] { flex: 0 0 auto; } }
.wl [hidden] { display: none !important; }
.wl-step legend { margin-bottom: 14px; }
.wl-nav .btn { white-space: nowrap; }
@media (max-width: 400px) { .wl-nav .btn { padding: 0 16px; font-size: .98rem; } }
.wl-privacy { margin: 16px 0 0; font-size: .9rem; color: var(--muted); text-align: right; }
.wl.is-done .wl-privacy { display: none; }
@media (max-width: 560px) { .wl-privacy { text-align: left; } }
