/* ============================================================
   Pinterpost landing page
   Design tokens mirror the Chrome extension's sidepanel/gallery.
   ============================================================ */

@font-face {
  font-family: "Open Runde";
  src: url("fonts/OpenRunde-Regular.woff2") format("woff2");
  font-weight: 400; font-style: normal; font-display: swap;
}
@font-face {
  font-family: "Open Runde";
  src: url("fonts/OpenRunde-Medium.woff2") format("woff2");
  font-weight: 500; font-style: normal; font-display: swap;
}
@font-face {
  font-family: "Open Runde";
  src: url("fonts/OpenRunde-Semibold.woff2") format("woff2");
  font-weight: 600; font-style: normal; font-display: swap;
}
@font-face {
  font-family: "Open Runde";
  src: url("fonts/OpenRunde-Bold.woff2") format("woff2");
  font-weight: 700; font-style: normal; font-display: swap;
}

:root {
  color-scheme: light;
  --magenta: #AE043E;
  --magenta-soft: #C4225A;
  --logo-pink: #FF528D;
  --pink: #FFC4DE;
  --pink-soft: #FFE6F0;
  --pink-tint: #FFF3F8;
  --bg: #ffffff;
  --bg-soft: #f7f7f7;
  --card: #ffffff;
  --text: #1a1a1a;
  --text-2: #525252;
  --text-3: rgba(0,0,0,0.55);
  --text-muted: rgba(0,0,0,0.40);
  --border: rgba(0,0,0,0.06);
  --border-2: rgba(0,0,0,0.10);
  --shadow-soft: 0 2px 4px rgba(0,0,0,0.04), 0 14px 26px rgba(0,0,0,0.06);
  --shadow-card: 0 1px 2px rgba(0,0,0,0.04), 0 12px 24px rgba(0,0,0,0.06);
  --shadow-deep: 0 3px 6px rgba(0,0,0,0.10), 0 14px 28px rgba(0,0,0,0.14), 0 32px 56px rgba(0,0,0,0.16);
  --r-sm: 8px;
  --r-md: 12px;
  --r-lg: 16px;
  --r-xl: 22px;
  --max-w: 1180px;
}

* { box-sizing: border-box; }
[hidden] { display: none !important; }
b, strong { font-weight: 600; }
html { scroll-behavior: smooth; }
html, body { margin: 0; padding: 0; }
body {
  font-family: "Open Runde", -apple-system, BlinkMacSystemFont, "Segoe UI", Inter, sans-serif;
  background: var(--pink-tint);
  color: var(--text);
  font-size: 16px;
  line-height: 1.5;
  letter-spacing: -0.01em;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}
img, svg { display: block; max-width: 100%; }
button { font-family: inherit; }
a { color: inherit; text-decoration: none; }

/* ============================================================
   Buttons — the signature arcade button
   ============================================================ */
.btn-arcade {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 22px;
  background: linear-gradient(180deg, rgba(255, 209, 229, 0.95) 0%, rgba(255, 196, 222, 0.92) 100%);
  color: var(--magenta);
  border: 1px solid rgba(174, 4, 62, 0.16);
  border-radius: 14px;
  font-weight: 600;
  font-size: 16px;
  letter-spacing: -0.005em;
  cursor: pointer;
  text-decoration: none;
  transform: translateY(0);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.7),
    inset 0 3px 6px rgba(0, 0, 0, 0.04),
    0 7px 0 -1px var(--magenta),
    0 10px 18px rgba(174, 4, 62, 0.22);
  transition: transform 110ms ease, box-shadow 110ms ease, background 140ms ease;
  will-change: transform;
}
.btn-arcade:hover:not(:disabled) {
  transform: translateY(-1px);
  background: linear-gradient(180deg, rgba(255, 217, 234, 0.98) 0%, rgba(255, 201, 226, 0.95) 100%);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.75),
    inset 0 3px 6px rgba(0, 0, 0, 0.04),
    0 8px 0 -1px var(--magenta),
    0 14px 22px rgba(174, 4, 62, 0.28);
}
.btn-arcade:active:not(:disabled) {
  transform: translateY(5px) scale(0.99);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.6),
    inset 0 3px 6px rgba(0, 0, 0, 0.04),
    0 2px 0 -1px var(--magenta),
    0 3px 6px rgba(174, 4, 62, 0.18);
}
.btn-arcade:disabled { opacity: 0.55; cursor: not-allowed; transform: none; }
.btn-arcade svg { flex-shrink: 0; }
.btn-arcade-sm { padding: 9px 14px; font-size: 13px; border-radius: 10px;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.7),
    inset 0 3px 6px rgba(0, 0, 0, 0.04),
    0 5px 0 -1px var(--magenta),
    0 7px 12px rgba(174, 4, 62, 0.20);
}
.btn-arcade-sm:hover:not(:disabled) { box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.75),
    inset 0 3px 6px rgba(0, 0, 0, 0.04),
    0 6px 0 -1px var(--magenta),
    0 9px 14px rgba(174, 4, 62, 0.26); }
.btn-arcade-light {
  background: linear-gradient(180deg, #ffffff 0%, #fff3f8 100%);
  color: var(--magenta);
}

/* ============================================================
   Sticky nav
   ============================================================ */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  justify-content: center;
  padding: 20px 28px 40px;
  background: transparent;
  pointer-events: none;
}
.nav-inner { pointer-events: auto; }
.nav-inner {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(14px) saturate(160%);
  -webkit-backdrop-filter: blur(14px) saturate(160%);
  color: var(--text);
  border-radius: 999px;
  padding: 6px 6px 6px 18px;
  border: 1px solid rgba(174, 4, 62, 0.08);
  box-shadow:
    0 1px 2px rgba(174, 4, 62, 0.05),
    0 12px 30px rgba(174, 4, 62, 0.10);
}
.nav.scrolled .nav-inner { padding-right: 6px; }
.nav:not(.scrolled) .nav-inner { padding-right: 26px; }
.nav-inner .nav-logo-text { color: var(--text); }
.nav-inner .nav-logo-mark { border-radius: 7px; }
.nav-links {
  display: flex;
  align-items: center;
  gap: 26px;
  margin-left: 26px;
}
.nav-links a {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-2);
  transition: color 120ms ease;
}
.nav-links a:hover { color: var(--magenta); }
/* Scroll-revealed CTA inside the pill — hidden while the hero CTA is in view,
   slides in once you scroll past it (so there's always one CTA, never two). */
.nav .btn-arcade-sm {
  display: inline-flex;
  margin-left: 0;
  max-width: 0;
  padding-left: 0;
  padding-right: 0;
  opacity: 0;
  overflow: hidden;
  white-space: nowrap;
  transition: max-width 280ms ease, padding 280ms ease, opacity 200ms ease, margin 200ms ease;
}
.nav.scrolled .btn-arcade-sm { margin-left: 22px; }
.nav.scrolled .btn-arcade-sm {
  max-width: 220px;
  padding: 9px 18px;
  opacity: 1;
  border-radius: 999px;
}
/* Inside the nav pill, flatten the arcade button's stacked shadow so it
   doesn't bleed out below the pill's bottom edge. */
.nav .btn-arcade-sm {
  border-radius: 999px;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.7),
    inset 0 -1px 0 rgba(174, 4, 62, 0.18);
}
.nav .btn-arcade-sm:hover:not(:disabled) {
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.85),
    inset 0 -1px 0 rgba(174, 4, 62, 0.22),
    0 4px 12px rgba(174, 4, 62, 0.18);
}
.nav.scrolled { border-bottom-color: transparent; }
.nav-logo { display: inline-flex; align-items: center; gap: 9px; color: var(--text); }
.nav-logo-mark {
  width: 28px; height: 28px;
  flex-shrink: 0;
  border-radius: 7px;
  display: block;
}
.nav-logo-text { font-size: 16px; font-weight: 600; letter-spacing: -0.02em; }
.site-footer .nav-logo-mark { box-shadow: 0 0 0 1px rgba(0,0,0,0.04); }

/* ============================================================
   Section primitives
   ============================================================ */
main { display: block; }
section { padding: 88px 28px; position: relative; }
.section-head {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 56px;
}
.section-head h2 {
  font-size: clamp(28px, 4vw, 44px);
  line-height: 1.08;
  letter-spacing: -0.03em;
  margin: 12px 0 14px;
  font-weight: 600;
  text-wrap: balance;
}
.section-head h2 em {
  font-style: normal;
  color: var(--magenta);
  position: relative;
  white-space: nowrap;
}
.section-head h2 em::after {
  content: "";
  position: absolute; left: 0; right: 0; bottom: -2px;
  height: 6px;
  background: var(--pink);
  border-radius: 6px;
  z-index: -1;
  transform: skewX(-6deg);
}
.section-head .section-sub { font-size: 17px; color: var(--text-2); line-height: 1.55; margin: 0; }
.kicker {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 13px; color: var(--magenta);
  background: var(--pink-tint);
  padding: 6px 12px;
  border-radius: 999px;
  font-weight: 500;
  letter-spacing: 0.01em;
}
.kicker-dot {
  display: inline-block; width: 6px; height: 6px;
  border-radius: 50%;
  background: oklch(71.64% 0.165 1);
}

/* ============================================================
   Hero
   ============================================================ */
.hero {
  position: relative;
  padding: 32px 28px 96px;
  background: linear-gradient(180deg, var(--pink-tint) 0%, #fff 90%);
  overflow: hidden;
}
.uc-hero { padding-top: 12px; }
.hero-bg { position: absolute; inset: 0; pointer-events: none; }
.squiggle { position: absolute; opacity: 0.85; }
.squiggle-tl { top: 12%; left: -2%; width: 140px; transform: rotate(-15deg); }
.squiggle-tr { top: 18%; right: 4%; width: 110px; transform: rotate(20deg); display: none; }
.squiggle-bl { bottom: 8%; left: 6%; width: 120px; transform: rotate(-10deg); display: none; }

.hero-text {
  position: relative;
  max-width: 920px;
  margin: 0 auto 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 20px;
}
.hero-text .kicker { align-self: center; }
.hero h1 {
  font-size: clamp(32px, 5.2vw, 52px);
  line-height: 1.02;
  letter-spacing: -0.035em;
  font-weight: 600;
  margin: 4px 0 0;
  text-wrap: balance;
}
.hero h1 em {
  font-style: normal;
  position: relative;
  color: var(--magenta);
  white-space: nowrap;
}
.hero h1 em::after {
  content: "";
  position: absolute; left: -2%; right: -2%; bottom: 4px;
  height: 14px;
  background: var(--pink);
  border-radius: 8px;
  z-index: -1;
  transform: skewX(-6deg);
}
.hero-sub {
  font-size: 18px;
  line-height: 1.55;
  color: var(--text-2);
  margin: 0;
  max-width: 580px;
}
.hero-cta-row {
  display: flex; align-items: center; gap: 20px;
  margin: 24px 0 16px;
  flex-wrap: wrap;
  justify-content: center;
}
.hero-cta-row .btn-arcade { min-width: 240px; padding-left: 28px; padding-right: 28px; }
.hero-cta-fine { margin: -24px 0 0; font-size: 13px; color: var(--text-2); }
.hero:not(.uc-hero) .hero-cta-fine { margin-top: -2px; }
.hero-secondary {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 15px; font-weight: 500;
  color: var(--text);
  padding: 8px 4px;
  border-bottom: 1px solid transparent;
  transition: color 120ms ease, border-color 120ms ease;
}
.hero-secondary:hover { color: var(--magenta); border-bottom-color: var(--magenta); }
.hero-proof {
  display: flex; flex-direction: column; align-items: center; gap: 20px;
  margin-top: 6px;
  font-size: 14px; color: var(--text-2);
}
.hero-proof-works-row,
.hero-proof-trust-row {
  display: inline-flex; align-items: center; gap: 10px;
  flex-wrap: wrap;
  justify-content: center;
}
.hero-proof-trust-row { gap: 6px; }
.hero-proof .stars { display: inline-flex; align-items: center; line-height: 1; }
.hero-proof .stars svg { width: 18px; height: 18px; display: block; }
.hero-proof-text strong { color: var(--text); font-weight: 600; }
.hero-proof-works {
  color: var(--text-2);
  font-weight: 400;
}
.hero-proof-logos {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.hero-proof-logos li { display: inline-flex; align-items: center; }
.hero-proof-logos img { width: 18px; height: 18px; display: block; }
.hero-proof-logos img[alt="X"],
.hero-proof-logos img[alt="Etsy"] { width: 17px; height: 17px; }
.hero-proof-logos img[alt="Shopify"] { width: 19px; height: 19px; }
.hide-mobile { display: inline; }

/* ============================================================
   Product window — full-width Chrome frame: gallery + sidepanel
   ============================================================ */
.product-window {
  position: relative;
  max-width: 1180px;
  margin: 0 auto;
  background: #fff;
  border-radius: 18px;
  /* Contained glow (~72px) so the hero's overflow:hidden + body overflow-x
     guard don't clip it. */
  box-shadow:
    0 1px 2px rgba(0,0,0,0.05),
    0 10px 22px rgba(0,0,0,0.07),
    0 24px 48px rgba(0,0,0,0.085);
  border: 1px solid var(--border);
  overflow: hidden;
}
.browser-bar {
  display: flex; align-items: center; gap: 8px;
  padding: 11px 14px;
  background: #f4f4f5;
  border-bottom: 1px solid var(--border);
  position: relative;
}
.browser-dot { width: 11px; height: 11px; border-radius: 50%; flex-shrink: 0; }
.dot-red { background: #ff5f57; }
.dot-yellow { background: #febc2e; }
.dot-green { background: #28c840; }
.browser-url {
  display: inline-flex; align-items: center; gap: 6px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 4px 14px;
  font-size: 11.5px;
  color: var(--text-3);
  font-weight: 500;
  margin: 0 auto;
  letter-spacing: 0.005em;
}
.browser-url svg { color: var(--text-3); }
.browser-pin {
  display: inline-flex;
  width: 24px; height: 24px;
  border-radius: 6px;
  align-items: center; justify-content: center;
  background: rgba(0,0,0,0.04);
  flex-shrink: 0;
}
.browser-pin img { border-radius: 4px; }

.product-body {
  display: grid;
  grid-template-columns: 1fr 360px;
  height: 640px;
  overflow: hidden;
  background: #f4f4f5;
}
.pp-iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
  background: #fff;
}
.pp-iframe-gallery { background: #f4f4f5; }
.pp-iframe-sidepanel { background: #fff; border-left: 1px solid var(--border); }

/* Gallery (left column) */
.product-gallery {
  background: var(--bg-soft);
  display: flex;
  flex-direction: column;
  min-width: 0;
  border-right: 1px solid var(--border);
}
.pg-header {
  display: flex; align-items: center; justify-content: space-between;
  gap: 16px;
  padding: 12px 18px;
  background: rgba(244,244,245,0.82);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
  flex-shrink: 0;
}
.pg-brand { display: inline-flex; align-items: center; gap: 10px; flex-shrink: 0; }
.pg-brand-mark { border-radius: 6px; }
.pg-brand-name { font-size: 16px; font-weight: 600; color: #1a1a1a; letter-spacing: -0.02em; }
.pg-count { font-size: 13px; color: #a3a3a3; font-weight: 400; }
.pg-toolbar {
  display: inline-flex; align-items: center; gap: 8px;
  flex-shrink: 0;
}
.pg-filters { display: inline-flex; gap: 2px; }
.pg-chip {
  display: inline-flex; align-items: center; gap: 6px;
  background: transparent;
  border: none;
  font-family: inherit;
  font-size: 13px;
  font-weight: 500;
  color: #525252;
  padding: 6px 13px;
  border-radius: 999px;
  cursor: default;
  transition: background 100ms ease;
}
.pg-chip:hover { background: rgba(0, 0, 0, 0.04); }
.pg-chip-active {
  background: #fff;
  color: #1a1a1a;
  box-shadow: 0 0 0 1px var(--border-2);
}
.pg-dot {
  display: inline-block;
  width: 6px; height: 6px;
  border-radius: 50%;
}
.pg-dot-draft     { background: oklch(71.64% 0 0); }
.pg-dot-scheduled { background: oklch(71.64% 0.165 1); }
.pg-dot-published { background: oklch(71.64% 0.1316 180.65); }
.pg-dot-failed    { background: oklch(71.64% 0.1685 55.55); }
.pg-iconbtn {
  width: 30px; height: 30px;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.04);
  border: none;
  color: #525252;
  display: inline-flex; align-items: center; justify-content: center;
  cursor: default;
  transition: background 100ms ease, color 100ms ease;
}
.pg-iconbtn:hover { background: rgba(0,0,0,0.08); color: var(--text); }
.pg-credits {
  display: inline-flex; align-items: center; gap: 6px;
  background: rgba(0, 0, 0, 0.04);
  border-radius: 999px;
  padding: 5px 12px 5px 8px;
  font-size: 12px;
  color: #525252;
  font-weight: 500;
}
.pg-credits-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: oklch(71.64% 0.1316 180.65);
  box-shadow: 0 0 0 2px rgba(99, 200, 158, 0.18);
}
.pg-avatar {
  width: 30px; height: 30px;
  border-radius: 50%;
  background: linear-gradient(135deg, #FFB4A2 0%, #FF8FAB 100%);
  color: #fff;
  display: inline-grid; place-items: center;
  font-size: 13px; font-weight: 600;
  letter-spacing: -0.02em;
}

.pg-grid {
  flex: 1;
  padding: 16px 18px 20px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  align-content: start;
  overflow-y: auto;
  scroll-behavior: smooth;
}
.pg-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 22px;
  overflow: hidden;
  display: flex; flex-direction: column;
  transition: transform 160ms ease, box-shadow 160ms ease;
  opacity: 0;
  transform: translateY(8px) scale(0.96);
}
.pg-card.in { opacity: 1; transform: translateY(0) scale(1); }
.pg-card:hover { transform: translateY(-1px); box-shadow: var(--shadow-card); }
.pg-card-head {
  display: flex; align-items: center; justify-content: space-between;
  padding: 13px 16px 6px;
  gap: 8px;
  min-width: 0;
}
.pg-card-status {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 12px;
  color: #a3a3a3;
  font-weight: 400;
  white-space: nowrap;
}
.pg-card-time {
  font-size: 12px;
  color: var(--text-muted);
  flex-shrink: 0;
}
.pg-card-media {
  position: relative;
  flex: 1;
  padding: 18px;
  display: flex;
  align-items: center; justify-content: center;
  min-height: 0;
}
.pg-card-media svg, .pg-card-media img {
  width: 100%;
  height: auto;
  aspect-ratio: 2/3;
  object-fit: cover;
  border-radius: 12px;
  box-shadow:
    0 3px 6px rgba(0, 0, 0, 0.10),
    0 12px 24px rgba(0, 0, 0, 0.12),
    0 28px 48px rgba(0, 0, 0, 0.14);
  transition: transform 160ms ease;
}
.pg-card:hover .pg-card-media img,
.pg-card:hover .pg-card-media svg {
  transform: translateY(-2px);
}
.pg-card-foot {
  display: flex; align-items: baseline; justify-content: space-between;
  padding: 4px 16px 13px;
  gap: 12px;
  min-width: 0;
}
.pg-card-title {
  font-size: 13px;
  color: #1a1a1a;
  font-weight: 400;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  flex: 1; min-width: 0;
}
.pg-card-meta {
  font-size: 12px;
  color: #a3a3a3;
  font-weight: 400;
  letter-spacing: 0.02em;
  flex-shrink: 0;
  font-variant-numeric: tabular-nums;
}
.pg-card.new-pin {
  animation: pin-pop 420ms cubic-bezier(0.16, 1, 0.3, 1);
}
@keyframes pin-pop {
  0%   { transform: translateY(-14px) scale(0.92); opacity: 0; }
  60%  { transform: translateY(0) scale(1.03); opacity: 1; }
  100% { transform: translateY(0) scale(1); opacity: 1; }
}

/* Sidepanel replica — mirrors sidepanel.html, lives in right column */
.sidepanel {
  padding: 14px;
  display: flex; flex-direction: column;
  gap: 14px;
  background: #fff;
  overflow-y: auto;
}
.sidepanel::-webkit-scrollbar { width: 6px; }
.sidepanel::-webkit-scrollbar-thumb { background: rgba(0,0,0,0.12); border-radius: 3px; }
.sp-topbar {
  display: flex; align-items: center; justify-content: space-between;
  gap: 12px;
  padding-bottom: 2px;
}
.sp-topbar-brand {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 15px; font-weight: 600;
  color: #1a1a1a;
  letter-spacing: -0.015em;
}
.sp-topbar-brand img { border-radius: 5px; }
.sp-topbar-actions { display: inline-flex; gap: 2px; }
.sp-iconbtn {
  width: 26px; height: 26px;
  border-radius: 7px;
  background: transparent;
  border: none;
  color: #525252;
  display: inline-grid; place-items: center;
  cursor: default;
  transition: background 100ms ease;
}
.sp-iconbtn:hover { background: rgba(0,0,0,0.05); color: var(--text); }

.sp-account {
  display: flex; align-items: center;
  gap: 10px;
  background: var(--pink-tint);
  border: 1px solid rgba(174, 4, 62, 0.10);
  border-radius: 12px;
  padding: 10px 12px;
}
.sp-account-mark {
  width: 26px; height: 26px;
  border-radius: 50%;
  display: inline-grid; place-items: center;
  flex-shrink: 0;
  overflow: hidden;
}
.sp-account-mark svg { width: 100%; height: 100%; }
.sp-account-name {
  flex: 1; min-width: 0;
  font-size: 13px;
  font-weight: 500;
  color: var(--text);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.sp-account-link {
  display: inline-flex; align-items: center; gap: 4px;
  font-size: 11.5px;
  color: var(--magenta);
  font-weight: 500;
  cursor: default;
  flex-shrink: 0;
}

.preview {
  position: relative;
  width: 100%;
  aspect-ratio: 1;
  border-radius: 12px;
  background: var(--bg-soft);
  border: 1px solid var(--border);
  overflow: hidden;
  display: flex; align-items: center; justify-content: center;
}
.demo-source {
  max-width: calc(100% - 36px);
  max-height: calc(100% - 36px);
  border-radius: 10px;
  box-shadow:
    0 2px 4px rgba(0,0,0,0.08),
    0 14px 26px rgba(0,0,0,0.10),
    0 32px 52px rgba(0,0,0,0.11);
}
.preview-close {
  position: absolute;
  top: 8px; right: 8px;
  width: 22px; height: 22px;
  border-radius: 50%;
  background: rgba(20, 20, 22, 0.45);
  backdrop-filter: blur(10px) saturate(160%);
  -webkit-backdrop-filter: blur(10px) saturate(160%);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #fff;
  display: grid; place-items: center;
  cursor: default;
  z-index: 2;
  box-shadow: 0 2px 6px rgba(0,0,0,0.18);
}
.demo-shimmer {
  position: absolute; inset: 0;
  background: linear-gradient(110deg,
    rgba(255,255,255,0) 30%,
    rgba(255,255,255,0.55) 50%,
    rgba(255,255,255,0) 70%);
  background-size: 200% 100%;
  opacity: 0;
  pointer-events: none;
  transition: opacity 140ms ease;
}
.preview.generating .demo-shimmer {
  opacity: 1;
  animation: shimmer 1.4s linear infinite;
}
@keyframes shimmer {
  0% { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}

.prompt {
  width: 100%;
  min-height: 64px;
  resize: none;
  background: var(--bg-soft);
  border: 1px solid var(--border);
  border-radius: 12px;
  color: var(--text);
  font-family: inherit;
  font-size: 13px;
  padding: 10px 12px;
  outline: none;
  line-height: 1.4;
}

.sp-section { display: flex; flex-direction: column; gap: 6px; }
.sp-section-label {
  font-size: 11px;
  color: var(--text-3);
  letter-spacing: 0.01em;
  padding-left: 2px;
}
.sp-refs { display: flex; gap: 8px; }
.sp-ref-btn {
  width: 56px; height: 56px;
  border-radius: 10px;
  background: var(--bg-soft);
  border: 1px dashed var(--border-2);
  color: var(--text-3);
  display: grid; place-items: center;
  cursor: default;
  transition: background 100ms ease, border-color 100ms ease, color 100ms ease;
}
.sp-ref-btn:hover {
  background: rgba(0,0,0,0.06);
  border-color: rgba(0,0,0,0.20);
  color: var(--text);
}

.sp-row {
  display: flex; align-items: center; justify-content: space-between;
  gap: 12px;
  padding: 2px;
}
.sp-row-label {
  font-size: 13px;
  color: var(--text);
  font-weight: 400;
}
.sp-row-controls { display: inline-flex; align-items: center; gap: 8px; }

.pin-stepper {
  display: inline-flex; align-items: center;
  background: rgba(0,0,0,0.05);
  border-radius: 999px;
  padding: 2px;
}
.pin-step {
  width: 22px; height: 22px;
  border-radius: 50%; border: none; background: transparent;
  color: var(--text-2); font-size: 14px;
  cursor: default;
  line-height: 1;
}
.pin-step-value {
  min-width: 18px;
  font-size: 12px; font-weight: 500;
  color: var(--text-2);
  text-align: center;
  font-variant-numeric: tabular-nums;
}
.meta-chip {
  display: inline-flex; align-items: center; gap: 6px;
  background: rgba(0,0,0,0.05);
  border-radius: 999px;
  padding: 0 11px; height: 26px;
}
.meta-ar-icon { color: #a3a3a3; flex-shrink: 0; }
.meta-select-fake { font-size: 12px; font-weight: 500; color: var(--text-2); letter-spacing: -0.005em; }
.meta-chip-sep { width: 1px; height: 11px; background: var(--border-2); }

.pin-toggle {
  position: relative;
  width: 30px; height: 18px;
  background: rgba(0,0,0,0.14);
  border-radius: 999px;
  flex-shrink: 0;
  transition: background 140ms ease;
}
.pin-toggle.on { background: oklch(71.64% 0.1316 180.65); }
.pin-toggle::after {
  content: "";
  position: absolute; top: 2px; left: 2px;
  width: 14px; height: 14px;
  background: #fff; border-radius: 50%;
  box-shadow: 0 1px 3px rgba(0,0,0,0.18);
  transition: transform 140ms ease;
}
.pin-toggle.on::after { transform: translateX(12px); }

.sticky-actions {
  display: flex; flex-direction: column; gap: 6px;
  margin-top: auto;
  padding-top: 6px;
}
.demo-generate {
  padding: 13px 16px;
  font-size: 15px;
  border-radius: 14px;
  color: #fff;
  background: linear-gradient(180deg, #D11657 0%, #AE043E 100%);
  border-color: rgba(93, 2, 35, 0.35);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.22),
    inset 0 -2px 4px rgba(0, 0, 0, 0.10),
    0 5px 0 -1px #5d0223,
    0 10px 22px rgba(174, 4, 62, 0.40);
}
.demo-generate:hover:not(:disabled) {
  background: linear-gradient(180deg, #DA2566 0%, #B70742 100%);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.28),
    inset 0 -2px 4px rgba(0, 0, 0, 0.10),
    0 6px 0 -1px #5d0223,
    0 14px 28px rgba(174, 4, 62, 0.50);
}
.demo-generate:active:not(:disabled) {
  background: linear-gradient(180deg, #B70742 0%, #8B0331 100%);
}
.demo-generate .i-spin { display: none; animation: spin 0.8s linear infinite; }
.demo-generate.loading .i-spark { display: none; }
.demo-generate.loading .i-spin { display: inline-block; }
.demo-generate.loading { pointer-events: none; }
@keyframes spin { to { transform: rotate(360deg); } }
.status { font-size: 11px; color: var(--text-3); min-height: 14px; text-align: center; margin: 0; }
.status.done { color: oklch(58% 0.1316 180.65); font-weight: 500; }

/* Toast over the product window */
.demo-toast {
  position: absolute; left: 50%; bottom: 24px;
  transform: translateX(-50%) translateY(-4px);
  display: inline-flex; align-items: center; gap: 6px;
  background: rgba(20,20,22,0.92);
  color: #fff;
  font-size: 12px; font-weight: 500;
  padding: 7px 12px;
  border-radius: 999px;
  white-space: nowrap;
  opacity: 0;
  transition: opacity 220ms ease, transform 220ms ease;
  pointer-events: none;
}
.demo-toast.show { opacity: 1; transform: translateX(-50%) translateY(0); }

/* Hero logos strip */

/* ============================================================
   How it works
   ============================================================ */
.how { background: #fff; }
.how-grid {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.how-card {
  background: var(--bg-soft);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  padding: 28px;
  position: relative;
  display: flex; flex-direction: column; gap: 12px;
  transition: transform 180ms ease, box-shadow 180ms ease;
}
.how-card:hover { transform: translateY(-2px); box-shadow: var(--shadow-card); }
.how-num {
  position: absolute; top: 22px; right: 22px;
  width: 28px; height: 28px;
  border-radius: 50%;
  background: var(--magenta);
  color: #fff;
  display: grid; place-items: center;
  font-weight: 600; font-size: 13px;
  letter-spacing: -0.01em;
}
.how-illustration {
  background: #fff;
  border-radius: var(--r-md);
  padding: 18px;
  border: 1px solid var(--border);
  margin-bottom: 4px;
}
.how-illustration svg { width: 100%; height: auto; }
.how-card h3 { font-size: 19px; font-weight: 600; margin: 0; letter-spacing: -0.02em; }
.how-card p { font-size: 15px; color: var(--text-2); line-height: 1.55; margin: 0; }

/* ---- How it works: auto-play reenactment of the real flow ----
   Right-click an image → Recreate → side panel slides in → Generate →
   generating → published. Loops when scrolled into view. The panel is the
   real embed/sidepanel.html, driven programmatically. */
.scene-wrap { max-width: 1080px; margin: 0 auto; }
.scene-window {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 18px;
  overflow: hidden;
  /* Kept contained (~72px reach) so it isn't clipped by the section padding
     or body's overflow-x guard — the old 0 60px 100px glow got cut off. */
  box-shadow:
    0 1px 2px rgba(0,0,0,0.05),
    0 10px 22px rgba(0,0,0,0.07),
    0 24px 48px rgba(0,0,0,0.085);
}
.scene-stage {
  position: relative;
  height: 620px;
  background: #eef0f2;
  overflow: hidden;
}
.scene-main {
  position: absolute;
  top: 0; bottom: 0; left: 0; right: 0;
  overflow: hidden;
  transition: right 440ms cubic-bezier(0.16, 1, 0.3, 1);
}
.scene-main.docked { right: 360px; }

/* The "site you're browsing" — a faux product page */
.scene-page {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  padding: 30px;
  background: radial-gradient(120% 90% at 50% 0%, #f7f8f9 0%, #eef0f2 70%);
  transition: opacity 380ms ease;
}
.scene-page.hide { opacity: 0; pointer-events: none; }
.scene-product {
  position: relative;
  display: flex; gap: 30px; align-items: center;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 26px;
  max-width: 560px;
  box-shadow: 0 1px 2px rgba(0,0,0,0.04), 0 14px 30px rgba(0,0,0,0.07);
}
.scene-imgwrap { position: relative; flex-shrink: 0; }
.scene-imgwrap img {
  width: 210px; height: auto; display: block;
  border-radius: 12px;
  box-shadow: 0 2px 4px rgba(0,0,0,0.08), 0 14px 26px rgba(0,0,0,0.10);
}
.scene-meta { width: 190px; display: flex; flex-direction: column; gap: 11px; }
.scene-meta .ln { height: 10px; border-radius: 5px; background: rgba(0,0,0,0.10); }
.scene-meta .ln.title { height: 15px; background: rgba(0,0,0,0.18); }
.scene-meta .ln.sm { width: 55%; }
.scene-meta .price { height: 16px; width: 38%; border-radius: 5px; background: rgba(0,0,0,0.30); margin-top: 2px; }
.scene-meta .cart { height: 34px; border-radius: 9px; background: #1a1a1a; margin-top: 6px; }

/* Right-click context menu (real Recreate item) */
.scene-menu {
  position: absolute;
  top: 22%; left: 9%;
  width: 188px;
  background: #1a1a1a;
  border-radius: 9px;
  padding: 6px;
  display: flex; flex-direction: column; gap: 1px;
  box-shadow: 0 14px 34px rgba(0,0,0,0.30);
  transform-origin: top left;
  opacity: 0;
  transform: scale(0.95) translateY(-4px);
  transition: opacity 140ms ease, transform 140ms ease;
  pointer-events: none;
  z-index: 6;
}
.scene-menu.show { opacity: 1; transform: scale(1) translateY(0); }
.scene-rcitem {
  font-size: 12px; color: rgba(255,255,255,0.55);
  padding: 6px 10px; border-radius: 6px;
  display: flex; align-items: center; gap: 8px; white-space: nowrap;
}
.scene-rcitem.active { background: var(--pink); color: var(--magenta); font-weight: 600; }
.scene-rcitem img { width: 14px; height: 14px; flex-shrink: 0; border-radius: 3px; }

/* Results gallery — fades in over the page after Generate */
.scene-results {
  position: absolute; inset: 0;
  display: flex; flex-direction: column;
  padding: 18px 24px 34px;
  background: #f4f4f5;
  opacity: 0; pointer-events: none;
  transition: opacity 380ms ease;
}
.scene-results.show { opacity: 1; }
.scene-results-head {
  display: flex; align-items: baseline; gap: 8px;
  font-size: 13px; color: var(--text-3);
  padding: 4px 4px 12px;
}
.scene-results-head b { color: var(--text); font-weight: 600; font-size: 14px; }
.scene-results-head .count { margin-left: auto; }
.scene-grid {
  display: grid;
  /* Fixed 4 columns so a batch of 8 always lays out as 2 tidy rows at any
     desktop width — auto-fill could drop to 3 cols and overflow a 3rd row
     past the window, clipping the bottom shadow. */
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
  align-content: start;
}
.scene-tile {
  position: relative;
  border-radius: 14px; overflow: hidden;
  background: #fff; border: 1px solid var(--border);
  aspect-ratio: 2 / 3;
  box-shadow: var(--shadow-card);
}
.scene-tile.pop { animation: scene-pop 420ms cubic-bezier(0.16, 1, 0.3, 1); }
@keyframes scene-pop {
  0% { transform: translateY(-10px) scale(0.92); opacity: 0; }
  60% { transform: translateY(0) scale(1.03); opacity: 1; }
  100% { transform: translateY(0) scale(1); opacity: 1; }
}
.scene-tile img { width: 100%; height: 100%; object-fit: cover; display: block; }
.scene-shimmer {
  position: absolute; inset: 0;
  background: linear-gradient(110deg,
    #f4f0f3 0%, #f4f0f3 30%, #ffe4ee 45%, #ffc4de 50%, #ffe4ee 55%, #f4f0f3 70%, #f4f0f3 100%);
  background-size: 200% 100%;
  animation: scene-sweep 1.6s linear infinite;
  display: grid; place-items: center;
}
@keyframes scene-sweep { from { background-position: 0 0; } to { background-position: -200% 0; } }
.scene-pending {
  font-size: 10.5px; font-weight: 600; color: #1a1a1a;
  background: rgba(255,255,255,0.42); padding: 4px 9px; border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.6); backdrop-filter: blur(10px);
}
.scene-status {
  position: absolute; left: 7px; bottom: 7px;
  display: inline-flex; align-items: center; gap: 5px;
  font-size: 10px; font-weight: 500; color: #fff;
  background: rgba(20,20,22,0.55); backdrop-filter: blur(8px);
  padding: 3px 8px; border-radius: 999px;
  opacity: 0; transition: opacity 200ms ease;
}
.scene-status.show { opacity: 1; }
.scene-status .dot { width: 6px; height: 6px; border-radius: 50%; background: oklch(71.64% 0.1316 180.65); }
.scene-status.publishing .dot { background: #cbd5e1; animation: scene-pulse 1.2s ease-in-out infinite; }
@keyframes scene-pulse { 0%,100% { opacity: 0.4; } 50% { opacity: 1; } }

/* The real side panel, docked on the right */
.scene-panel {
  position: absolute; top: 0; right: 0; bottom: 0;
  width: 360px;
  background: #fff;
  border-left: 1px solid var(--border);
  box-shadow: -18px 0 44px rgba(0,0,0,0.10);
  transform: translateX(100%);
  transition: transform 460ms cubic-bezier(0.16, 1, 0.3, 1);
  z-index: 20;
}
.scene-panel.open { transform: translateX(0); }
.scene-panel iframe { width: 100%; height: 100%; border: 0; display: block; }

/* Fake cursor + click ripple */
.scene-cursor {
  position: absolute; top: 50%; left: 30%;
  width: 22px; height: 22px;
  z-index: 30; pointer-events: none;
  transform: translate(-2px, -2px);
  filter: drop-shadow(0 2px 3px rgba(0,0,0,0.35));
  transition: left 650ms cubic-bezier(0.45, 0, 0.2, 1), top 650ms cubic-bezier(0.45, 0, 0.2, 1), transform 120ms ease;
}
.scene-cursor.press { transform: translate(-2px, -2px) scale(0.8); }
.scene-cursor svg { width: 22px; height: 22px; display: block; }
.scene-ripple {
  position: absolute; width: 16px; height: 16px; border-radius: 50%;
  background: rgba(174, 4, 62, 0.30);
  transform: translate(-50%, -50%) scale(0.4);
  animation: scene-ripple 500ms ease-out forwards;
  pointer-events: none; z-index: 25;
}
@keyframes scene-ripple { to { transform: translate(-50%, -50%) scale(2.6); opacity: 0; } }

/* Step indicator above the window */
.scene-steps {
  display: flex; justify-content: center; flex-wrap: wrap;
  gap: 10px; margin-bottom: 30px;
}
.scene-step {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 8px 14px; border-radius: 999px;
  background: var(--bg-soft); border: 1px solid var(--border);
  font-size: 13px; font-weight: 500; color: var(--text-3);
  transition: background 200ms ease, color 200ms ease, border-color 200ms ease;
}
.scene-step .n {
  width: 18px; height: 18px; border-radius: 50%;
  background: rgba(0,0,0,0.12); color: #fff;
  font-size: 10px; font-weight: 700;
  display: grid; place-items: center;
  transition: background 200ms ease;
}
.scene-step.active {
  background: var(--pink-tint); border-color: rgba(174, 4, 62, 0.22); color: var(--magenta);
}
.scene-step.active .n { background: var(--magenta); }

@media (max-width: 720px) {
  .scene-stage { height: 560px; }
  .scene-product { flex-direction: column; max-width: 240px; gap: 16px; }
  .scene-meta { width: 100%; }
  /* No side-by-side room on a phone: the panel overlays full width, then
     slides away after Generate so the gallery gets the whole window. */
  .scene-main.docked { right: 0; }
  .scene-panel { width: 100%; box-shadow: none; }
  .scene-results { padding: 14px 14px 26px; }
  .scene-results-head { padding: 2px 4px 10px; }
  .scene-grid { grid-template-columns: repeat(3, 1fr); gap: 2px; }
  .scene-steps { gap: 7px; margin-bottom: 22px; }
  .scene-step { padding: 6px 11px; font-size: 12px; }
}

/* ============================================================
   Why creators love it
   ============================================================ */
.why { background: linear-gradient(180deg, #fff 0%, var(--pink-tint) 180px, var(--pink-tint) calc(100% - 120px), #fff 100%); }
.why-grid {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.why-card {
  background: #fff;
  border-radius: var(--r-xl);
  padding: 28px;
  border: 1px solid rgba(174,4,62,0.08);
  display: flex; flex-direction: column; gap: 12px;
  transition: transform 180ms ease, box-shadow 180ms ease;
}
.why-card:hover { transform: translateY(-3px); box-shadow: 0 14px 30px rgba(174,4,62,0.10); }
.why-emoji {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(0, 0, 0, 0.06);
  color: var(--text);
  display: grid;
  place-items: center;
  flex-shrink: 0;
}
.why-emoji svg { width: 22px; height: 22px; }
.why-card h3 { font-size: 18px; font-weight: 600; margin: 4px 0 0; letter-spacing: -0.02em; }
.why-card p { font-size: 15px; color: var(--text-2); line-height: 1.55; margin: 0; flex: 1; }
.why-stat {
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px dashed rgba(0,0,0,0.10);
  font-size: 13px;
  color: var(--text);
  font-weight: 500;
}
.why-stat strong { font-weight: 600; }

/* ============================================================
   Features
   ============================================================ */
.features { background: #fff; }
/* Neutral two-tone heading (grey base + black em, no pink underline),
   shared by Features, Compare and How it works. */
.features .section-head h2,
.how .section-head h2 { color: #8a8a8a; }
.features .section-head h2 em,
.how .section-head h2 em { color: #1a1a1a; }
.features .section-head h2 em::after,
.how .section-head h2 em::after { display: none; }
.features-grid {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 4px;
}
.feature-item {
  grid-column: span 4;
  background: var(--bg-soft);
  border-radius: var(--r-lg);
  padding: 22px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition: transform 180ms ease, box-shadow 180ms ease;
}
.feature-item.span-3  { grid-column: span 3; }
.feature-item.span-6  { grid-column: span 6; }
.feature-item.span-12 { grid-column: span 12; }
.feature-item.feature-wide { align-items: center; text-align: center; }
.feature-item.feature-wide p { max-width: 52ch; }
.feature-item:hover { transform: translateY(-2px); box-shadow: var(--shadow-card); }
.feature-icon {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: rgba(0, 0, 0, 0.06);
  color: var(--text);
  display: grid;
  place-items: center;
  flex-shrink: 0;
}
.feature-icon svg { width: 19px; height: 19px; }
.feature-item h3 {
  font-size: 15px;
  font-weight: 600;
  letter-spacing: -0.01em;
  line-height: 1.3;
  color: var(--text);
  margin: 4px 0 0;
}
.feature-item p {
  font-size: 13.5px;
  color: var(--text-2);
  line-height: 1.5;
  margin: 0;
}

/* Bento hero card */
.feature-item.is-hero { padding: 20px; gap: 14px; }
.feature-item.is-hero h3 { font-size: 16px; margin-top: 2px; }
.feature-visual {
  position: relative;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  min-height: 180px;
  overflow: hidden;
  display: grid;
  place-items: center;
  padding: 0;
}

/* Visual: right-click context menu */
.fv-rclick { background: radial-gradient(120% 80% at 30% 30%, var(--pink-tint) 0%, #fff 70%); }
.fv-rclick-menu {
  width: min(78%, 260px);
  background: #1a1a1a;
  border-radius: 9px;
  padding: 6px;
  box-shadow: 0 12px 32px rgba(0,0,0,0.22), 0 0 0 1px rgba(255,255,255,0.04) inset;
  display: flex; flex-direction: column; gap: 1px;
  transform: rotate(-1deg);
}
.fv-rclick-item {
  font-size: 12px;
  color: rgba(255,255,255,0.55);
  padding: 6px 10px;
  border-radius: 6px;
  white-space: nowrap;
  letter-spacing: -0.005em;
  display: flex; align-items: center; gap: 8px;
}
.fv-rclick-item-active {
  background: var(--pink);
  color: var(--magenta);
  font-weight: 600;
}
.fv-rclick-item-active img { border-radius: 3px; }

/* Visual: 3 designed pin thumbnails */
.fv-pins {
  display: flex; justify-content: center; align-items: center; gap: 10px;
  padding: 16px;
}
.fv-pins img {
  width: 88px;
  aspect-ratio: 2 / 3;
  object-fit: cover;
  border-radius: 10px;
  box-shadow: 0 6px 18px rgba(0,0,0,0.10), 0 0 0 1px rgba(0,0,0,0.05);
  transition: transform 280ms cubic-bezier(0.32, 0.72, 0, 1);
}
.fv-pins img:nth-child(1) { transform: rotate(-7deg) translateY(4px); }
.fv-pins img:nth-child(2) { transform: translateY(-4px); z-index: 1; }
.fv-pins img:nth-child(3) { transform: rotate(7deg) translateY(4px); }
.feature-item.is-hero:hover .fv-pins img:nth-child(1) { transform: rotate(-10deg) translate(-6px, 2px); }
.feature-item.is-hero:hover .fv-pins img:nth-child(3) { transform: rotate(10deg) translate(6px, 2px); }

/* Visual: style mode row (reused from extension) */
.fv-modes {
  padding: 20px;
  align-items: center;
  background: radial-gradient(120% 80% at 70% 30%, var(--pink-tint) 0%, #fff 70%);
}
.fv-modes-row {
  position: relative;
  display: flex;
  width: 100%;
  max-width: 240px;
  padding: 4px;
  background: rgba(0,0,0,0.06);
  border-radius: 11px;
  isolation: isolate;
}
.fv-modes-thumb {
  position: absolute;
  top: 4px; bottom: 4px; left: 4px;
  width: calc((100% - 8px) / 3);
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 1px 2px rgba(0,0,0,0.06), 0 0 0 0.5px rgba(0,0,0,0.04);
  transform: translate3d(0, 0, 0);
  transition: transform 280ms cubic-bezier(0.32, 0.72, 0, 1);
  z-index: 0;
  pointer-events: none;
}
.fv-modes-row[data-active="remix"] .fv-modes-thumb { transform: translate3d(100%, 0, 0); }
.fv-modes-row[data-active="inspire"] .fv-modes-thumb { transform: translate3d(200%, 0, 0); }
.fv-modes-btn {
  position: relative;
  z-index: 1;
  flex: 1;
  height: 32px;
  border-radius: 8px;
  border: 0;
  background: transparent;
  font: inherit;
  font-size: 13px;
  font-weight: 500;
  color: var(--text-2);
  cursor: pointer;
  transition: color 160ms ease;
}
.fv-modes-btn:hover { color: var(--text); }
.fv-modes-row[data-active="match"]   .fv-modes-btn[data-mode="match"],
.fv-modes-row[data-active="remix"]   .fv-modes-btn[data-mode="remix"],
.fv-modes-row[data-active="inspire"] .fv-modes-btn[data-mode="inspire"] {
  color: var(--text);
  font-weight: 600;
}

/* Visual: auto-publish toggle + connected pill */
.fv-autopublish {
  padding: 20px;
  align-items: center;
  justify-items: center;
  gap: 10px;
  background: radial-gradient(120% 80% at 30% 70%, var(--pink-tint) 0%, #fff 70%);
  grid-template-rows: auto auto;
}
.fv-toggle-row {
  display: flex; align-items: center; justify-content: space-between;
  width: 100%; max-width: 200px;
  padding: 9px 12px;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05), 0 0 0 1px rgba(0,0,0,0.04);
  font-size: 12.5px;
  font-weight: 600;
  color: var(--text);
}
.fv-toggle {
  position: relative;
  width: 34px; height: 20px;
  background: rgba(0,0,0,0.14);
  border-radius: 999px;
  cursor: pointer;
  border: none;
  padding: 0;
  transition: background 180ms ease;
}
.fv-toggle::after {
  content: "";
  position: absolute;
  top: 2px; left: 2px;
  width: 16px; height: 16px;
  background: #fff;
  border-radius: 50%;
  box-shadow: 0 1px 3px rgba(0,0,0,0.18);
  transition: transform 180ms ease;
}
.fv-toggle.on { background: oklch(71.64% 0.1316 180.65); }
.fv-toggle.on::after { transform: translateX(14px); }
.fv-conn {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 11px;
  color: var(--text-2);
  padding: 4px 10px;
  border-radius: 999px;
  background: rgba(0,0,0,0.05);
}
.fv-conn-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: oklch(71.64% 0.1316 180.65);
}

/* Visual: schedule status chip (cycles draft → scheduled → publishing → published) */
.fv-schedule {
  padding: 20px;
  align-items: center;
  background: radial-gradient(120% 80% at 50% 30%, var(--pink-tint) 0%, #fff 70%);
}
.fv-status-chip {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 9px 16px 9px 14px;
  background: #fff;
  border-radius: 999px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06), 0 0 0 1px rgba(0,0,0,0.04);
  font-size: 13px;
  font-weight: 600;
  color: var(--text);
}
.fv-status-label { display: inline-block; }
.fv-status-dot {
  width: 9px; height: 9px;
  border-radius: 50%;
  position: relative;
  background: var(--state-color, oklch(71.64% 0 0));
  transition: background 280ms ease;
}
.fv-status-dot::after {
  content: "";
  position: absolute; inset: 0;
  border-radius: 50%;
  background: var(--state-color, oklch(71.64% 0 0));
  opacity: 0;
  animation: fv-status-pulse 1.6s ease-out infinite;
}
.fv-status-dot[data-state="draft"]      { --state-color: oklch(71.64% 0 0); }
.fv-status-dot[data-state="scheduled"]  { --state-color: oklch(71.64% 0.165 1); }
.fv-status-dot[data-state="publishing"] { --state-color: oklch(71.64% 0.1685 55.55); }
.fv-status-dot[data-state="published"]  { --state-color: oklch(71.64% 0.1316 180.65); }
@keyframes fv-status-pulse {
  0%   { transform: scale(1);   opacity: 0.55; }
  80%  { transform: scale(2.2); opacity: 0; }
  100% { transform: scale(2.2); opacity: 0; }
}

.fv-gallery-cell[data-state="draft"]     { --state-color: oklch(71.64% 0 0); }
.fv-gallery-cell[data-state="scheduled"] { --state-color: oklch(71.64% 0.165 1); }
.fv-gallery-cell[data-state="published"] { --state-color: oklch(71.64% 0.1316 180.65); }
.fv-gallery-cell[data-state="failed"]    { --state-color: oklch(71.64% 0.1685 55.55); }

/* ============================================================
   Pricing — ported from extension paywall (gallery.html)
   ============================================================ */
.pricing { background: linear-gradient(180deg, #fff 0%, var(--pink-tint) 220px, var(--pink-tint) calc(100% - 120px), var(--bg-soft) 100%); }
.pricing .section-head .section-sub {
  margin: 14px auto 0;
  max-width: 560px;
  font-size: 15px;
  color: var(--text-2);
  line-height: 1.55;
}
.pricing-toggle-wrap {
  display: flex;
  justify-content: center;
  margin: 0 auto 40px;
}
.pricing-toggle {
  display: inline-flex;
  background: rgba(0, 0, 0, 0.06);
  border-radius: 999px;
  padding: 3px;
}
.pricing-toggle-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 18px;
  border-radius: 999px;
  border: none;
  background: none;
  font-family: inherit;
  font-size: 13px;
  font-weight: 500;
  color: rgba(0, 0, 0, 0.45);
  cursor: pointer;
  transition: background 120ms ease, color 120ms ease, box-shadow 120ms ease;
}
.pricing-toggle-btn:hover { color: var(--text); }
.pricing-toggle-btn.active {
  background: #fff;
  color: var(--text);
  font-weight: 600;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.10);
}
.pricing-toggle-btn[data-period="annual"] {
  padding-left: 14px;
  padding-right: 6px;
}
.pricing-save-chip {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.02em;
  color: var(--magenta);
  background: var(--pink);
  padding: 3px 8px;
  border-radius: 999px;
}
.pricing-cards {
  max-width: 960px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  align-items: stretch;
}
.pricing-cards[data-period="monthly"] .price-annual-val   { display: none; }
.pricing-cards[data-period="annual"]  .price-monthly-val  { display: none; }
.pricing-cards[data-period="monthly"] .pricing-annual-note { display: none; }
.pricing-card {
  position: relative;
  background: #fff;
  border-radius: 20px;
  padding: 28px 24px 24px;
  border: 1px solid rgba(0, 0, 0, 0.06);
  display: flex;
  flex-direction: column;
  transition: transform 180ms ease, box-shadow 180ms ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}
.pricing-card:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(174, 4, 62, 0.10); }
.pricing-card.popular {
  border-color: var(--magenta);
  box-shadow: 0 4px 8px rgba(174, 4, 62, 0.06), 0 14px 32px rgba(174, 4, 62, 0.12);
}
.pricing-card.popular:hover { box-shadow: 0 6px 12px rgba(174, 4, 62, 0.08), 0 20px 44px rgba(174, 4, 62, 0.16); }
.pricing-popular-badge {
  position: absolute;
  top: -11px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--magenta);
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 5px 11px;
  border-radius: 999px;
  white-space: nowrap;
  box-shadow: 0 4px 10px rgba(174, 4, 62, 0.25);
}
.pricing-plan-header {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 6px;
}
.pricing-plan-name {
  font-size: 16px;
  font-weight: 600;
  color: var(--text);
  letter-spacing: -0.01em;
}
.pricing-persona-chip {
  display: inline-flex;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: rgba(0, 0, 0, 0.42);
  background: rgba(0, 0, 0, 0.07);
  padding: 3px 8px;
  border-radius: 999px;
}
.pricing-price-row {
  display: flex;
  align-items: baseline;
  gap: 10px;
  margin: 6px 0 2px;
}
.pricing-plan-price {
  font-size: 36px;
  font-weight: 600;
  color: var(--text);
  letter-spacing: -0.03em;
  line-height: 1;
}
.pricing-plan-price .pricing-per-mo {
  font-size: 14px;
  font-weight: 500;
  color: rgba(0, 0, 0, 0.38);
}
.pricing-annual-note {
  font-size: 11px;
  color: rgba(0, 0, 0, 0.4);
}
.pricing-plan-pitch {
  font-size: 13px;
  color: rgba(0, 0, 0, 0.55);
  margin: 6px 0 4px;
  line-height: 1.5;
}
.pricing-daily {
  font-size: 11.5px;
  font-weight: 600;
  color: rgba(0, 0, 0, 0.4);
  margin: 0 0 22px;
  letter-spacing: 0.01em;
}
.pricing-plan-feats {
  list-style: none;
  padding: 0;
  margin: 0 0 16px;
  display: flex;
  flex-direction: column;
  gap: 9px;
  flex: 1;
}
.pricing-plan-feats li {
  position: relative;
  padding-left: 24px;
  font-size: 13px;
  color: var(--text);
  line-height: 1.45;
}
.pricing-plan-feats li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 2px;
  width: 15px;
  height: 15px;
  border-radius: 50%;
  background:
    url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23AE043E' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'><polyline points='20 6 9 17 4 12'/></svg>") center / 10px no-repeat,
    var(--pink);
}
.pricing-plan-feats strong { font-weight: 600; }
.pricing-credit-tip {
  position: relative;
  cursor: help;
  border-bottom: 1px dotted rgba(174, 4, 62, 0.4);
}
.pricing-credit-tip::after {
  content: attr(data-tooltip);
  position: absolute;
  bottom: calc(100% + 8px);
  left: 50%;
  transform: translateX(-50%);
  background: var(--text);
  color: #fff;
  font-size: 11px;
  font-weight: 400;
  line-height: 1.5;
  padding: 7px 11px;
  border-radius: 8px;
  white-space: nowrap;
  pointer-events: none;
  opacity: 0;
  transition: opacity 140ms ease;
  z-index: 200;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.22);
}
.pricing-credit-tip:hover::after { opacity: 1; }
.pricing-icp {
  font-size: 12px;
  color: rgba(0, 0, 0, 0.42);
  margin: 0 0 16px;
  line-height: 1.5;
}
.pricing-icp strong {
  font-weight: 600;
  color: rgba(0, 0, 0, 0.55);
}
.pricing-plan-btn {
  position: relative;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 11px 0;
  background: linear-gradient(180deg, #ffffff 0%, #fff3f8 100%);
  color: var(--magenta);
  border: 1px solid rgba(174, 4, 62, 0.16);
  border-radius: 12px;
  font-family: inherit;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transform: translateY(0);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.7),
    inset 0 3px 6px rgba(0, 0, 0, 0.04),
    0 5px 0 -1px var(--magenta),
    0 7px 14px rgba(174, 4, 62, 0.18);
  transition: transform 100ms ease, box-shadow 100ms ease, background 120ms ease;
}
.pricing-plan-btn:hover:not(:disabled) {
  transform: translateY(-1px);
  background: linear-gradient(180deg, rgba(255, 217, 234, 0.98) 0%, rgba(255, 201, 226, 0.95) 100%);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.75),
    inset 0 3px 6px rgba(0, 0, 0, 0.04),
    0 6px 0 -1px var(--magenta),
    0 10px 18px rgba(174, 4, 62, 0.24);
}
.pricing-plan-btn:active:not(:disabled) {
  transform: translateY(4px) scale(0.99);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.6),
    inset 0 3px 6px rgba(0, 0, 0, 0.04),
    0 1px 0 -1px var(--magenta),
    0 2px 4px rgba(174, 4, 62, 0.12);
}
.pricing-card.popular .pricing-plan-btn {
  background: linear-gradient(180deg, rgba(255, 209, 229, 0.95) 0%, rgba(255, 196, 222, 0.92) 100%);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.7),
    inset 0 3px 6px rgba(0, 0, 0, 0.04),
    0 5px 0 -1px var(--magenta),
    0 8px 16px rgba(174, 4, 62, 0.22);
}
.pricing-card.popular .pricing-plan-btn:hover:not(:disabled) {
  background: linear-gradient(180deg, rgba(255, 217, 234, 0.98) 0%, rgba(255, 201, 226, 0.95) 100%);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.75),
    inset 0 3px 6px rgba(0, 0, 0, 0.04),
    0 6px 0 -1px var(--magenta),
    0 12px 22px rgba(174, 4, 62, 0.28);
}
.pricing-card.popular .pricing-plan-btn:active:not(:disabled) {
  transform: translateY(4px) scale(0.99);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.6),
    inset 0 3px 6px rgba(0, 0, 0, 0.04),
    0 1px 0 -1px var(--magenta),
    0 2px 4px rgba(174, 4, 62, 0.15);
}

/* ============================================================
   $1 trial offer
   ============================================================ */
.trial-offer {
  position: relative;
  max-width: 720px;
  margin: 0 auto;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 44px;
  corner-shape: squircle;
  padding: 40px 44px;
  text-align: center;
  /* Neutral frame — the pink lives in the badge, price and CTA, not the
     outline. Soft contained shadow gives presence without the magenta box. */
  box-shadow: 0 1px 2px rgba(0,0,0,0.04), 0 16px 44px rgba(0,0,0,0.09);
}
.trial-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #8e24aa;   /* the sparkle icon inherits this; the label's holographic fill lives on .trial-badge-txt */
  /* Holographic foil chip: iridescent gradient that shimmers across */
  background: linear-gradient(110deg, #ffc4de 0%, #f3c2f0 16%, #d4c4fb 33%, #bcd6fb 50%, #bff0e6 66%, #ffe2bd 83%, #ffc4de 100%);
  background-size: 200% 100%;
  animation: trial-badge-sheen 4.5s linear infinite;
  padding: 5px 12px 5px 10px;
  border-radius: 999px;
  margin-bottom: 24px;
  box-shadow: 0 2px 8px rgba(150, 90, 200, 0.18);
}
.trial-badge svg { width: 12px; height: 12px; flex-shrink: 0; }
/* The label text itself is the hologram: a deep iridescent gradient masked to the
   glyphs (background-clip:text), shimmering with the same sheen as the chip. Deep
   jewel tones (not pastel) so it reads as foil on the light chip. */
.trial-badge-txt {
  background: linear-gradient(110deg, #c2185b 0%, #8e24aa 20%, #5e35b1 38%, #3949ab 56%, #1e88e5 72%, #00897b 88%, #c2185b 100%);
  background-size: 200% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  animation: trial-badge-sheen 4.5s linear infinite;
}
@media (prefers-reduced-motion: reduce) {
  .trial-badge-txt { animation: none; }
}
@keyframes trial-badge-sheen {
  from { background-position: 0 0; }
  to { background-position: -200% 0; }
}
@media (prefers-reduced-motion: reduce) {
  .trial-badge { animation: none; }
}
/* "3-day trial" badge centered on a holographic rule (pricing card). The flanking
   lines share the badge text's iridescent palette + sheen, masked to soften the
   ends so they don't hard-cut at the card's padding edge. */
.trial-divider {
  display: flex;
  align-items: center;
  gap: 16px;
  width: 100%;
  margin-bottom: 40px;
}
.trial-divider .trial-badge { margin-bottom: 0; }
.trial-divider::before,
.trial-divider::after {
  content: "";
  flex: 1 1 0;
  height: 2px;
  border-radius: 2px;
  background: linear-gradient(90deg, #ffc4de 0%, #f3c2f0 16%, #d4c4fb 33%, #bcd6fb 50%, #bff0e6 66%, #ffe2bd 83%, #ffc4de 100%);
  background-size: 200% 100%;
  animation: trial-badge-sheen 4.5s linear infinite;
}
.trial-divider::before {
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 14%);
          mask-image: linear-gradient(90deg, transparent 0%, #000 14%);
}
.trial-divider::after {
  -webkit-mask-image: linear-gradient(90deg, #000 86%, transparent 100%);
          mask-image: linear-gradient(90deg, #000 86%, transparent 100%);
}
@media (prefers-reduced-motion: reduce) {
  .trial-divider::before, .trial-divider::after { animation: none; }
}
/* Holographic closing rule under the checklist — same iridescent sheen as the
   badge divider, fading at both ends. */
.trial-rule {
  height: 2px;
  border-radius: 2px;
  margin-top: 28px;
  background: linear-gradient(90deg, #ffc4de 0%, #f3c2f0 16%, #d4c4fb 33%, #bcd6fb 50%, #bff0e6 66%, #ffe2bd 83%, #ffc4de 100%);
  background-size: 200% 100%;
  animation: trial-badge-sheen 4.5s linear infinite;
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 12%, #000 88%, transparent 100%);
          mask-image: linear-gradient(90deg, transparent 0%, #000 12%, #000 88%, transparent 100%);
}
@media (prefers-reduced-motion: reduce) { .trial-rule { animation: none; } }
.trial-price {
  line-height: 1;
  margin-bottom: 14px;
}
.trial-amt {
  font-size: 76px;
  font-weight: 700;
  letter-spacing: -0.04em;
  color: var(--text);
  font-variant-numeric: tabular-nums;
}
.trial-sub {
  font-size: 15px;
  color: var(--text-2);
  margin: 0 0 26px;
}
.trial-feats {
  list-style: none;
  padding: 0;
  margin: 0; /* last element — bottom space is the card's padding */
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px 48px;
  text-align: left;
}
.trial-feats li {
  position: relative;
  padding-left: 28px;
  font-size: 15px;
  color: var(--text);
  line-height: 1.45;
}
.trial-feats li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 1px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background:
    url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%231a1a1a' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'><polyline points='20 6 9 17 4 12'/></svg>") center / 11px no-repeat,
    rgba(0,0,0,0.06);
}
.trial-btn {
  width: 100%;
  font-size: 16px;
  padding: 15px 0;
  margin-bottom: 22px;
}
.trial-immediacy {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  margin: 0 0 14px;
  font-size: 13.5px;
  font-weight: 400;
  color: var(--text);
  text-wrap: balance;
}
.trial-immediacy svg { width: 15px; height: 15px; color: var(--text-3); flex-shrink: 0; }
.trial-terms {
  font-size: 13px;
  color: var(--text-2);
  line-height: 1.5;
  margin: 0 0 14px;
  white-space: nowrap;
}
/* Hairline divider labelling the "what's included" zone */
.trial-included {
  display: flex; align-items: center; gap: 14px;
  margin: 0 0 22px;
  font-size: 11px; font-weight: 700;
  letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--text-3);
}
.trial-included::before,
.trial-included::after {
  content: ""; flex: 1; height: 1px; background: var(--border);
}
.trial-btn svg { width: 18px; height: 18px; transition: transform 140ms ease; }
.trial-btn:hover:not(:disabled) svg { transform: translateX(3px); }
/* Trust signals at the point of action — reduce purchase anxiety */
.trial-trust-row {
  list-style: none; padding: 0; margin: 0 0 28px;
  display: flex; flex-wrap: wrap; justify-content: center; gap: 8px 18px;
  font-size: 12.5px; color: var(--text-3);
}
.trial-trust-row li { display: inline-flex; align-items: center; gap: 6px; }
.trial-trust-row svg { width: 14px; height: 14px; flex-shrink: 0; }

.trial-after {
  max-width: 720px;
  margin: 40px auto 0;
  text-align: center;
}
.trial-after-head {
  font-size: 12px;
  font-weight: 600;
  color: rgba(0, 0, 0, 0.45);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin: 0 0 16px;
}
.trial-toggle-wrap { margin: 4px auto 22px; }
.trial-tiers {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}
.trial-tiers[data-period="monthly"] .price-annual-val { display: none; }
.trial-tiers[data-period="annual"]  .price-monthly-val { display: none; }
.trial-tier {
  position: relative;
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 14px;
  padding: 18px 14px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  text-decoration: none;
  color: inherit;
  cursor: pointer;
  transition: transform 140ms ease, box-shadow 140ms ease, border-color 140ms ease;
}
.trial-tier:hover {
  transform: translateY(-3px);
  border-color: var(--magenta);
  box-shadow: 0 8px 22px rgba(174, 4, 62, 0.12);
}
.trial-tier.is-popular { border-color: var(--magenta); }
.trial-tier-tag {
  position: absolute;
  top: -9px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #fff;
  background: var(--magenta);
  padding: 3px 9px;
  border-radius: 999px;
  white-space: nowrap;
}
.trial-tier-name { font-size: 14px; font-weight: 600; color: var(--text); }
.trial-tier-price { font-size: 22px; font-weight: 600; color: var(--text); letter-spacing: -0.02em; font-variant-numeric: tabular-nums; }
.trial-tier-price .trial-per { font-size: 12px; font-weight: 500; color: rgba(0, 0, 0, 0.4); }
.trial-tier-pins { font-size: 12px; color: var(--text-2); }
.trial-tier-feats {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  margin-top: 4px;
  font-size: 11px;
  font-weight: 500;
  color: var(--magenta);
}
.trial-tier-feats::before {
  content: "";
  width: 13px;
  height: 13px;
  flex: none;
  background:
    url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23AE043E' stroke-width='3.5' stroke-linecap='round' stroke-linejoin='round'><polyline points='20 6 9 17 4 12'/></svg>") center / 9px no-repeat,
    var(--pink);
  border-radius: 50%;
}
.trial-trust { font-size: 12px; color: rgba(0, 0, 0, 0.4); margin: 24px 0 0; }

/* ============================================================
   Trust strip — honest, code-backed reassurance after the demo
   ============================================================ */
.trust { background: #fff; padding-top: 56px; padding-bottom: 56px; }
.trust-grid {
  max-width: var(--max-w);
  margin: 0 auto;
  list-style: none;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}
.trust-item { display: flex; align-items: flex-start; gap: 12px; text-align: left; }
.trust-ic {
  flex-shrink: 0;
  width: 38px; height: 38px;
  border-radius: 10px;
  display: grid; place-items: center;
  background: var(--bg-soft);
  color: var(--text);
}
.trust-ic svg { width: 18px; height: 18px; }
.trust-item > div { display: flex; flex-direction: column; gap: 3px; }
.trust-item strong { font-size: 14px; font-weight: 600; color: var(--text); letter-spacing: -0.01em; }
.trust-item span { font-size: 12.5px; color: var(--text-2); line-height: 1.45; text-wrap: pretty; }

/* ============================================================
   Testimonials
   ============================================================ */
.testimonials { background: #fff; }
.testimonial-grid {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.testimonial-card {
  background: var(--bg-soft);
  border-radius: var(--r-lg);
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: transform 180ms ease, box-shadow 180ms ease;
}
.testimonial-card:hover { transform: translateY(-2px); box-shadow: var(--shadow-card); }
.testimonial-stars {
  display: flex;
  gap: 3px;
  color: #FFB800;
}
.testimonial-stars svg { width: 16px; height: 16px; }
.testimonial-card h3 {
  font-size: 19px;
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.3;
  margin: 4px 0 0;
  color: var(--text);
}
.testimonial-card p {
  font-size: 15px;
  color: var(--text-2);
  line-height: 1.6;
  margin: 0;
  flex: 1;
}
.testimonial-person {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 8px;
  padding-top: 16px;
  border-top: 1px dashed rgba(0,0,0,0.10);
}
.testimonial-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
  background: rgba(0, 0, 0, 0.06);
  flex-shrink: 0;
}
.testimonial-meta { display: flex; flex-direction: column; gap: 1px; }
.testimonial-meta strong { font-size: 14px; font-weight: 600; color: var(--text); }
.testimonial-meta span { font-size: 13px; color: var(--text-2); }

/* ============================================================
   FAQ
   ============================================================ */
.faq { background: var(--bg-soft); }
.faq-list {
  max-width: 720px;
  margin: 0 auto;
  display: flex; flex-direction: column;
  gap: 2px;
}
.faq-item {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  padding: 4px 18px;
  transition: border-color 140ms ease, box-shadow 140ms ease;
}
.faq-item[open] {
  border-color: rgba(174,4,62,0.16);
  box-shadow: 0 4px 14px rgba(174,4,62,0.06);
}
.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 14px 0;
  font-size: 16px; font-weight: 500;
  letter-spacing: -0.01em;
  display: flex; align-items: center; justify-content: space-between;
  gap: 16px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-mark {
  width: 12px; height: 12px;
  flex-shrink: 0;
  position: relative;
}
.faq-mark::before, .faq-mark::after {
  content: ""; position: absolute;
  background: rgba(0, 0, 0, 0.25);
  border-radius: 2px;
  transition: transform 200ms ease, background 200ms ease;
}
.faq-mark::before { left: 0; right: 0; top: 50%; height: 1.5px; transform: translateY(-50%); }
.faq-mark::after { top: 0; bottom: 0; left: 50%; width: 1.5px; transform: translateX(-50%); }
.faq-item[open] .faq-mark::after { transform: translateX(-50%) rotate(90deg); background: var(--magenta); }
.faq-item[open] .faq-mark::before { background: var(--magenta); }
.faq-item p {
  margin: 0 0 14px;
  font-size: 15px; line-height: 1.6;
  color: var(--text-2);
  max-width: 600px;
}

@supports (interpolate-size: allow-keywords) {
  .faq-list { interpolate-size: allow-keywords; }
  .faq-item::details-content {
    block-size: 0;
    overflow: hidden;
    opacity: 0;
    transition:
      block-size 240ms cubic-bezier(0.4, 0, 0.2, 1),
      opacity 180ms ease,
      content-visibility 240ms allow-discrete;
  }
  .faq-item[open]::details-content {
    block-size: auto;
    opacity: 1;
  }
}

/* ============================================================
   Final CTA
   ============================================================ */
.final-cta {
  background: var(--bg-soft);
  padding: 72px 28px 96px;
}
.final-cta-card {
  position: relative;
  text-align: center;
  background:
    radial-gradient(120% 75% at 50% -8%, rgba(255,255,255,0.12) 0%, rgba(255,255,255,0) 55%),
    linear-gradient(180deg, var(--magenta) 0%, #8B0331 100%);
  color: #fff;
  padding: 72px 28px 80px;
  max-width: 1080px;
  margin: 0 auto;
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 24px 60px rgba(174, 4, 62, 0.25);
}
.final-cta-rings { position: absolute; inset: 0; pointer-events: none; overflow: hidden; }
.final-cta-rings::before,
.final-cta-rings::after {
  content: ""; position: absolute; border-radius: 50%;
  border: 1.5px solid rgba(255, 255, 255, 0.10);
  box-shadow:
    0 0 0 38px rgba(255, 255, 255, 0.07),
    0 0 0 78px rgba(255, 255, 255, 0.045),
    0 0 0 120px rgba(255, 255, 255, 0.028);
}
.final-cta-rings::before { width: 150px; height: 150px; top: -70px; right: -50px; }
.final-cta-rings::after  { width: 110px; height: 110px; bottom: -60px; left: -40px; }
.final-cta h2 {
  font-size: clamp(28px, 4.5vw, 48px);
  line-height: 1.05;
  letter-spacing: -0.03em;
  margin: 0 0 16px;
  font-weight: 600;
  text-wrap: balance;
}
.final-cta h2 em { font-style: normal; color: var(--pink); }
.final-cta p {
  font-size: 17px;
  max-width: 760px;
  margin: 0 auto 26px;
  opacity: 0.88;
  line-height: 1.55;
  text-wrap: pretty;
}
.final-cta-reassure {
  list-style: none;
  padding: 0;
  margin: 0 auto 32px;
  max-width: 660px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px 24px;
}
.final-cta-reassure li {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 13.5px;
  font-weight: 500;
  color: #fff;
  opacity: 0.92;
}
.final-cta-reassure svg {
  width: 15px;
  height: 15px;
  flex-shrink: 0;
  color: var(--pink);
}
.final-cta .btn-arcade {
  font-size: 17px;
  padding: 16px 26px;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.7),
    inset 0 3px 6px rgba(0, 0, 0, 0.04),
    0 7px 0 -1px #5d0223,
    0 12px 24px rgba(0,0,0,0.30);
}
.final-cta .btn-arcade:hover:not(:disabled) {
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.75),
    inset 0 3px 6px rgba(0, 0, 0, 0.04),
    0 8px 0 -1px #5d0223,
    0 16px 30px rgba(0,0,0,0.36);
}
.final-cta p.final-cta-fine { font-size: 13px; opacity: 0.7; margin: 26px auto 0; }
.final-cta-fine strong { font-weight: 600; opacity: 1; }

/* ============================================================
   Updates / changelog page
   ============================================================ */
.updates-hero {
  text-align: left;
  padding: 14px 0 34px;
  background: #fff;
  border-bottom: 1px solid var(--border);
}
.updates-hero-inner {
  max-width: 1040px;
  margin: 0 auto;
  padding: 0 28px;
}
.updates-hero .kicker {
  background: var(--bg-soft);
  color: var(--text-2);
}
.updates-hero h1 {
  font-size: clamp(26px, 3.4vw, 36px);
  line-height: 1.08;
  letter-spacing: -0.03em;
  font-weight: 600;
  margin: 14px 0 0;
  text-wrap: balance;
}
.updates-hero p {
  max-width: 620px;
  margin: 14px 0 0;
  color: var(--text-2);
  font-size: 17px;
  line-height: 1.55;
  text-wrap: pretty;
}

.updates-layout {
  max-width: 1040px;
  margin: 0 auto;
  padding: 34px 28px 48px;
  display: grid;
  grid-template-columns: 210px 1fr;
  gap: 56px;
  align-items: start;
}

/* Sticky release index */
.updates-index { position: sticky; top: 88px; }
.updates-index-head {
  font-size: 12px; font-weight: 600; text-transform: uppercase;
  letter-spacing: 0.06em; color: var(--text-3);
  margin: 0 0 12px; padding-left: 16px;
}
.updates-index ol { list-style: none; margin: 0; padding: 0; }
.updates-index li { margin: 0; }
.updates-index a {
  display: flex; flex-direction: column; gap: 2px;
  padding: 9px 0 9px 16px;
  border-left: 2px solid var(--border-2);
  text-decoration: none;
  transition: border-color 0.15s ease, color 0.15s ease;
}
.updates-index a:hover { border-left-color: var(--magenta); }
.updates-index .ui-date {
  font-size: 11.5px; color: var(--text-3);
  font-variant-numeric: tabular-nums;
}
.updates-index .ui-title { font-size: 13px; color: var(--text-2); line-height: 1.35; }
.updates-index a:hover .ui-title { color: var(--text); }
.updates-index a.is-active { border-left-color: var(--magenta); }
.updates-index a.is-active .ui-title { color: var(--text); }
.updates-index a.is-active .ui-date { color: var(--text-2); }

/* Feed */
.updates-feed { min-width: 0; }
.update-entry {
  padding: 38px 0;
  border-top: 1px solid var(--border);
  scroll-margin-top: 92px;
}
.update-entry:first-child { border-top: 0; padding-top: 0; }

/* Post cover: a small HTML/CSS mock representing the feature */
.update-cover {
  margin: 0 0 22px;
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  background: linear-gradient(160deg, #fff 0%, var(--bg-soft) 100%);
  overflow: hidden;
  padding: 26px 30px;
}
/* -- Bulk Scheduler cover: a week strip with pins spread across days -- */
.pc-sch-head { display: flex; align-items: center; gap: 9px; margin-bottom: 14px; }
.pc-sch-title { font-size: 13.5px; font-weight: 600; color: var(--text); }
.pc-sch-window {
  font-size: 11.5px; color: var(--text-2);
  background: #fff; border: 1px solid var(--border-2);
  padding: 2px 9px; border-radius: 999px;
}
.pc-week { display: grid; grid-template-columns: repeat(7, 1fr); gap: 8px; }
.pc-day {
  background: #fff; border: 1px solid var(--border);
  border-radius: 9px; padding: 6px; min-height: 92px;
  display: flex; flex-direction: column; gap: 6px;
}
.pc-dow {
  font-size: 9.5px; font-weight: 600; color: var(--text-3);
  text-transform: uppercase; letter-spacing: 0.05em;
}
.pc-pin {
  width: 100%; aspect-ratio: 2 / 3; object-fit: cover;
  border-radius: 5px; outline: 1px solid rgba(0, 0, 0, 0.08); outline-offset: -1px;
}
.pc-arrow { color: var(--text-3); flex-shrink: 0; }
.pc-arrow svg { width: 22px; height: 22px; display: block; }

/* -- Launch cover: right-click an image -> generated pin + SEO -- */
.pc-launch { display: flex; align-items: center; justify-content: center; gap: 34px; }
.pc-src { position: relative; width: 250px; height: 168px; flex-shrink: 0; }
.pc-src-img {
  position: absolute; top: 0; left: 0; width: 112px;
  aspect-ratio: 2 / 3; object-fit: cover; border-radius: 8px;
  outline: 1px solid rgba(0, 0, 0, 0.08); outline-offset: -1px;
}
.pc-menu {
  position: absolute; top: 30px; left: 56px;
  background: #fff; border: 1px solid var(--border-2); border-radius: 8px;
  box-shadow: var(--shadow-card); padding: 4px; width: 188px;
  display: flex; flex-direction: column; gap: 1px;
}
.pc-menu-row {
  font-size: 10.5px; color: var(--text-2); padding: 5px 7px; border-radius: 5px;
  display: flex; align-items: center; gap: 6px; white-space: nowrap;
}
.pc-menu-row svg { width: 12px; height: 12px; flex-shrink: 0; }
.pc-menu-row--on { background: var(--pink-tint); color: var(--magenta); font-weight: 600; }
.pc-result {
  width: 150px; flex-shrink: 0; background: #fff; border: 1px solid var(--border);
  border-radius: 10px; padding: 8px; display: flex; flex-direction: column; gap: 9px;
}
.pc-result-img { width: 100%; aspect-ratio: 16 / 11; object-fit: cover; border-radius: 6px; }
.pc-seo { display: flex; flex-direction: column; gap: 5px; }
.pc-seo-line { height: 6px; border-radius: 3px; background: var(--border-2); }
.pc-seo-line.is-strong { background: #d7d7d7; width: 82%; height: 7px; }
.pc-seo-line.is-short { width: 56%; }

/* -- Welcome cover: onboarding checklist -- */
.pc-welcome { display: flex; justify-content: center; }
.pc-wel-card {
  width: 100%; max-width: 290px; background: #fff; border: 1px solid var(--border);
  border-radius: 12px; padding: 18px;
}
.pc-wel-logo {
  width: 34px; height: 34px; border-radius: 9px; background: var(--pink-tint);
  display: grid; place-items: center; margin-bottom: 12px;
}
.pc-wel-logo img { width: 20px; height: 20px; }
.pc-wel-title { display: block; font-size: 14px; font-weight: 600; margin-bottom: 13px; }
.pc-steps { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 10px; }
.pc-step { display: flex; align-items: center; gap: 9px; font-size: 12.5px; color: var(--text-2); }
.pc-step--done { color: var(--text); }
.pc-step-tick {
  width: 18px; height: 18px; border-radius: 50%; background: var(--magenta); color: #fff;
  display: grid; place-items: center; flex-shrink: 0;
}
.pc-step-tick svg { width: 11px; height: 11px; }
.pc-step-dot { width: 18px; height: 18px; border-radius: 50%; border: 1.5px solid var(--border-2); flex-shrink: 0; }

/* -- Credits cover: composer with cost tooltip + counter -- */
.pc-credits { display: flex; justify-content: center; }
.pc-composer {
  width: 100%; max-width: 320px; background: #fff; border: 1px solid var(--border);
  border-radius: 12px; padding: 14px; display: flex; flex-direction: column; gap: 12px;
}
.pc-prompt {
  border: 1px solid var(--border-2); border-radius: 9px; padding: 10px 11px;
  background: var(--bg-soft); display: flex; flex-direction: column; gap: 9px;
}
.pc-prompt-text { font-size: 12.5px; color: var(--text-2); }
.pc-prompt-count { font-size: 10.5px; color: var(--text-3); align-self: flex-end; font-variant-numeric: tabular-nums; }
.pc-gen-row { display: flex; align-items: center; gap: 10px; }
.pc-credit-chip {
  display: inline-flex; align-items: center; gap: 5px; font-size: 12px; font-weight: 600;
  color: var(--text-2); background: var(--bg-soft); border: 1px solid var(--border-2);
  padding: 7px 10px; border-radius: 999px; flex-shrink: 0;
}
.pc-coin { width: 12px; height: 12px; border-radius: 50%; background: var(--magenta); display: inline-block; }
.pc-gen-btn {
  flex: 1; text-align: center; font-size: 13px; font-weight: 600;
  color: #fff; background: var(--magenta); border-radius: 9px; padding: 10px;
}
.pc-cost {
  align-self: center; display: inline-flex; align-items: center; gap: 6px;
  font-size: 11.5px; font-weight: 500; color: var(--magenta);
  background: var(--pink-tint); border: 1px solid rgba(174, 4, 62, 0.14);
  padding: 5px 11px; border-radius: 999px;
}
.pc-cost .pc-coin { width: 10px; height: 10px; }

/* -- Recreate cover: mode toggle + blended refs -> result -- */
.pc-recreate { display: flex; flex-direction: column; align-items: center; gap: 16px; }
.pc-modes {
  display: inline-flex; background: var(--bg-soft); border: 1px solid var(--border-2);
  border-radius: 999px; padding: 3px; gap: 2px;
}
.pc-mode { font-size: 12px; font-weight: 500; color: var(--text-2); padding: 5px 14px; border-radius: 999px; }
.pc-mode--on { background: #fff; color: var(--magenta); font-weight: 600; box-shadow: 0 1px 2px rgba(0, 0, 0, 0.08); }
.pc-blend { display: flex; align-items: center; gap: 16px; }
.pc-refs { display: flex; }
.pc-refs img {
  width: 50px; aspect-ratio: 2 / 3; object-fit: cover; border-radius: 6px;
  outline: 2px solid #fff; box-shadow: 0 3px 8px rgba(0, 0, 0, 0.14);
}
.pc-refs img:not(:first-child) { margin-left: -16px; }
.pc-recreate-result {
  width: 78px; aspect-ratio: 2 / 3; object-fit: cover; border-radius: 8px;
  outline: 1px solid rgba(0, 0, 0, 0.08); outline-offset: -1px;
}

@media (max-width: 560px) {
  .update-cover { padding: 18px 16px; }
  .pc-week { gap: 5px; }
  .pc-day { min-height: 64px; padding: 4px; border-radius: 7px; }
  .pc-launch { gap: 0; }
  .pc-launch .pc-result,
  .pc-launch .pc-arrow { display: none; }
}

.update-meta {
  display: flex; align-items: center; flex-wrap: wrap; gap: 10px;
  font-size: 13px; color: var(--text-3);
}
.update-meta time { font-variant-numeric: tabular-nums; }
.u-ver {
  font-size: 12px; font-weight: 600; color: var(--text-2);
  background: var(--bg-soft); border: 1px solid var(--border-2);
  padding: 2px 8px; border-radius: 999px;
  font-variant-numeric: tabular-nums;
}
.u-tag {
  font-size: 11px; font-weight: 600; letter-spacing: 0.02em;
  padding: 2px 9px; border-radius: 999px; line-height: 1.5;
  border: 1px solid transparent;
}
.u-tag--new { color: var(--magenta); background: var(--pink-tint); border-color: rgba(174, 4, 62, 0.16); }
.u-tag--improved,
.u-tag--fixed { color: var(--text-2); background: var(--bg-soft); border-color: var(--border-2); }

.update-entry h2 {
  font-size: clamp(22px, 2.6vw, 26px);
  line-height: 1.15;
  letter-spacing: -0.02em;
  font-weight: 600;
  margin: 12px 0 0;
  text-wrap: balance;
}
.update-lead {
  color: var(--text-2); font-size: 16px; line-height: 1.6;
  margin: 10px 0 0; text-wrap: pretty;
}
.update-feature { margin-top: 24px; }
.update-feature h3 {
  display: flex; align-items: center; gap: 10px; flex-wrap: wrap;
  font-size: 16.5px; font-weight: 600; margin: 0;
}
.update-feature h3 .u-tag { font-weight: 600; }
.update-feature p {
  color: var(--text-2); font-size: 15.5px; line-height: 1.6;
  margin: 7px 0 0; text-wrap: pretty;
}
.update-subhead {
  margin: 24px 0 0; font-size: 13px; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.05em; color: var(--text-3);
}
.update-list { list-style: none; margin: 12px 0 0; padding: 0; }
.update-list li {
  position: relative; padding-left: 20px; margin: 9px 0;
  color: var(--text-2); font-size: 15.5px; line-height: 1.55;
}
.update-list li::before {
  content: ""; position: absolute; left: 4px; top: 10px;
  width: 5px; height: 5px; border-radius: 50%; background: rgba(0, 0, 0, 0.28);
}
.update-list li strong { color: var(--text); font-weight: 600; }
.update-note {
  margin: 26px 0 0; padding: 12px 16px;
  background: var(--bg-soft); border: 1px solid var(--border);
  border-radius: var(--r-md);
  color: var(--text-2); font-size: 14px; line-height: 1.5;
}

/* Closing CTA */
.updates-cta { padding: 8px 0 80px; }
.updates-cta-inner {
  max-width: 1040px; margin: 0 auto; padding: 0 28px;
  display: grid; grid-template-columns: 210px 1fr; gap: 56px;
}
.updates-cta-card {
  grid-column: 2; text-align: left;
  background: var(--bg-soft);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  padding: 40px 40px 36px;
}
.updates-cta-card h2 {
  font-size: 24px; font-weight: 600; letter-spacing: -0.02em; margin: 0;
}
.updates-cta-card p {
  color: var(--text-2); font-size: 16px; line-height: 1.55;
  max-width: 520px; margin: 10px 0 24px; text-wrap: pretty;
}
.updates-cta-fine {
  font-size: 13px; color: var(--text-3) !important; margin: 18px 0 0 !important;
}

@media (max-width: 820px) {
  .updates-layout { grid-template-columns: 1fr; gap: 0; padding-top: 0; }
  .updates-index { display: none; }
  .updates-cta-inner { grid-template-columns: 1fr; padding: 0 20px; }
}
@media (max-width: 560px) {
  .updates-hero { padding: 40px 20px 28px; }
  .update-entry { padding: 30px 0; }
  .updates-cta-card { padding: 36px 22px 32px; }
}

/* ============================================================
   Footer
   ============================================================ */
/* ============================================================
   Legal pages (privacy, terms)
   ============================================================ */
.legal {
  max-width: 720px;
  margin: 0 auto;
  padding: 56px 28px 96px;
  color: var(--text);
}
.legal-head {
  border-bottom: 1px solid var(--border-2);
  padding-bottom: 24px;
  margin-bottom: 36px;
}
.legal h1 {
  font-size: clamp(28px, 4vw, 36px);
  font-weight: 600;
  letter-spacing: -0.02em;
  margin: 0 0 12px;
}
.legal-meta {
  margin: 0;
  font-size: 14px;
  color: var(--text-2);
  display: flex;
  flex-wrap: wrap;
  gap: 6px 18px;
}
.legal-meta strong { font-weight: 600; color: var(--text); }
.legal h2 {
  font-size: 22px;
  font-weight: 600;
  letter-spacing: -0.02em;
  margin: 44px 0 14px;
  scroll-margin-top: 96px;
}
.legal h3 {
  font-size: 17px;
  font-weight: 600;
  letter-spacing: -0.01em;
  margin: 24px 0 8px;
}
.legal p,
.legal ul,
.legal ol {
  font-size: 16px;
  line-height: 1.65;
  color: var(--text);
  margin: 0 0 14px;
}
.legal ul,
.legal ol { padding-left: 22px; }
.legal li { margin-bottom: 6px; }
.legal li p { margin-bottom: 6px; }
.legal a {
  color: var(--magenta);
  text-decoration: underline;
  text-underline-offset: 2px;
}
.legal a:hover { opacity: 0.8; }
.legal hr {
  border: 0;
  border-top: 1px solid var(--border-2);
  margin: 36px 0;
}
.legal-table-wrap { overflow-x: auto; margin: 4px 0 22px; }
.legal table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
}
.legal th,
.legal td {
  border: 1px solid var(--border-2);
  padding: 10px 14px;
  text-align: left;
  vertical-align: top;
}
.legal th {
  background: var(--pink-tint);
  font-weight: 600;
}
.legal strong { font-weight: 600; }
.legal em { font-style: italic; color: var(--text-2); }
.legal-outro {
  margin-top: 36px;
  padding-top: 24px;
  border-top: 1px solid var(--border-2);
  font-size: 14px;
  color: var(--text-2);
  font-style: italic;
}

.site-footer { background: linear-gradient(180deg, var(--bg-soft) 0%, #fff 32px); padding: 32px 24px 40px; }
.site-footer-card {
  max-width: var(--max-w);
  margin: 0 auto;
  background: var(--bg-soft);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 48px 44px 28px;
}
.site-footer-top {
  display: grid;
  grid-template-columns: minmax(220px, 1fr) 4fr;
  gap: 32px 40px;
}
.site-footer-brand { display: flex; flex-direction: column; align-items: flex-start; gap: 14px; }
.site-footer .nav-logo-text { color: var(--text); }
.site-footer-tagline {
  margin: 0;
  font-size: 14px;
  color: var(--text-2);
  letter-spacing: -0.01em;
}
.site-footer-cols {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 28px 20px;
}
.site-footer-col { display: flex; flex-direction: column; gap: 10px; }
.site-footer-col h3 {
  margin: 0 0 2px;
  font-size: 12px; font-weight: 600; letter-spacing: 0.04em; text-transform: uppercase;
  color: var(--text-3);
}
.site-footer-col a { font-size: 14px; color: var(--text-2); transition: color 120ms ease; }
.site-footer-col a:hover { color: var(--logo-pink); }
.site-footer-bottom {
  display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 6px 16px;
  margin-top: 36px; padding-top: 20px; border-top: 1px solid var(--border);
}
.site-footer-fine { margin: 0; font-size: 12px; color: var(--text-3); }
.site-footer-updated { margin: 0; font-size: 12px; color: var(--text-3); }
@media (max-width: 860px) {
  .site-footer-card { padding: 32px 24px 24px; }
  .site-footer-top { grid-template-columns: 1fr; gap: 28px; }
  .site-footer-cols { grid-template-columns: 1fr 1fr; gap: 24px; }
}
@media (max-width: 480px) {
  .site-footer-cols { grid-template-columns: 1fr; }
}

/* ============================================================
   Responsive
   ============================================================ */
@media (max-width: 960px) {
  section { padding: 64px 20px; }
  .nav { padding: 12px 18px; }
  .hero { padding: 28px 20px 64px; }
  .hero-text { margin-bottom: 40px; }
  .hero-sub { font-size: 17px; }
  .hero-cta-row {
    width: 100%;
    flex-direction: column;
    align-items: center;
    gap: 14px;
  }
  .hero-cta-row .btn-arcade { width: 100%; max-width: 320px; }
  .squiggle-tl { width: 100px; opacity: 0.7; }
  .product-body {
    grid-template-columns: 1fr;
    grid-template-rows: 540px 480px;
    height: auto;
  }
  .pp-iframe-gallery { grid-row: 2; }
  .pp-iframe-sidepanel { grid-row: 1; border-left: 0; border-bottom: 1px solid var(--border); }
  .how-grid, .why-grid, .pricing-cards, .testimonial-grid { grid-template-columns: 1fr; gap: 16px; }
  .trust-grid { grid-template-columns: 1fr 1fr; gap: 22px 18px; }
  .trial-offer { padding: 28px 20px; }
  .trial-amt { font-size: 54px; }
  .trial-feats { grid-template-columns: 1fr; gap: 11px; }
  .trial-terms { white-space: normal; }
  .trial-tiers { grid-template-columns: 1fr; gap: 8px; }
  .trial-tier { flex-direction: row; justify-content: space-between; padding: 14px 16px; }
  .trial-tier-tag { position: static; transform: none; margin-right: auto; }
  .features-grid { grid-template-columns: repeat(2, 1fr); column-gap: 4px; row-gap: 4px; }
  .feature-item, .feature-item.span-3, .feature-item.span-6, .feature-item.span-12 { grid-column: auto; }
  .feature-item.is-hero { grid-column: span 2; }
  .how-card, .why-card { padding: 22px; }
  .pricing-card { padding: 24px 20px; }
  .hero-proof-works { font-size: 12px; }
  .hero-proof-logos { gap: 8px; }
  .hero-proof-logos img { width: 16px; height: 16px; }
  .hero-proof-logos img[alt="X"],
  .hero-proof-logos img[alt="Etsy"] { width: 15px; height: 15px; }
  .hero-proof-logos img[alt="Shopify"] { width: 17px; height: 17px; }
  .section-head { margin-bottom: 32px; }
  .nav .btn-arcade-sm { padding: 8px 12px; font-size: 12px; }
  .nav-links { display: none; }
}

@media (max-width: 480px) {
  .hero h1 { font-size: 32px; }
  .section-head h2 { font-size: 28px; }
  .trust-grid { grid-template-columns: 1fr; }
  .pg-grid { grid-template-columns: repeat(2, 1fr); }
  .browser-url { font-size: 10px; padding: 3px 10px; max-width: 60%; min-width: 0; overflow: hidden; }
  .browser-url-text { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; min-width: 0; }
  .hero-proof { font-size: 13px; flex-wrap: wrap; justify-content: center; }
  .final-cta { padding: 48px 16px 64px; }
  .final-cta-card { padding: 56px 20px 64px; border-radius: 20px; }
  .final-cta .btn-arcade { width: 100%; font-size: 16px; }
  .final-cta-reassure { flex-direction: column; align-items: center; gap: 9px; margin-bottom: 28px; }
  .features-grid { grid-template-columns: 1fr; }
  .feature-item, .feature-item.is-hero { grid-column: auto; }
}

/* ============================================================
   Reduced motion
   ============================================================ */
@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }
  html { scroll-behavior: auto; }
  .demo-pin { opacity: 1 !important; transform: none !important; }
}

/* ============================================================
   Cookie consent banner
   ============================================================ */
.consent-banner {
  position: fixed;
  bottom: 20px;
  left: 50%;
  z-index: 9999;
  display: flex;
  align-items: center;
  gap: 20px;
  width: calc(100% - 32px);
  max-width: 640px;
  padding: 16px 20px;
  background: var(--text);
  color: #ffffff;
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-deep);
  font-size: 14px;
  line-height: 1.45;
  transform: translateX(-50%);
  animation: consent-banner-in 0.3s ease-out;
}
.consent-banner-text { flex: 1; margin: 0; }
.consent-banner-text a {
  color: var(--pink);
  text-decoration: underline;
  text-underline-offset: 2px;
}
.consent-banner-text a:hover { color: var(--pink-soft); }
.consent-banner-actions {
  display: flex;
  gap: 8px;
  flex-shrink: 0;
}
.consent-banner button {
  appearance: none;
  border: none;
  padding: 8px 16px;
  border-radius: var(--r-md);
  font-family: inherit;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: -0.01em;
  cursor: pointer;
  transition: background 0.12s ease, transform 0.12s ease;
}
.consent-banner button:active { transform: translateY(1px); }
.consent-accept { background: var(--magenta); color: #ffffff; }
.consent-accept:hover { background: var(--magenta-soft); }
.consent-decline { background: rgba(255, 255, 255, 0.10); color: #ffffff; }
.consent-decline:hover { background: rgba(255, 255, 255, 0.18); }
@keyframes consent-banner-in {
  from { transform: translate(-50%, 12px); opacity: 0; }
  to   { transform: translate(-50%, 0);    opacity: 1; }
}
@media (max-width: 600px) {
  .consent-banner {
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
  }
  .consent-banner-actions { justify-content: flex-end; }
}
@media (prefers-reduced-motion: reduce) {
  .consent-banner { animation: none; }
}

/* ============================================================
   Nav dropdown (Riverside-style "Solutions" menu)
   ============================================================ */
.nav-dd { position: relative; display: inline-flex; align-items: center; }
.nav-dd-trigger {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-family: inherit;
  font-size: 14px;
  font-weight: 500;
  color: var(--text-2);
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  transition: color 120ms ease;
}
.nav-dd:hover .nav-dd-trigger,
.nav-dd:focus-within .nav-dd-trigger { color: var(--logo-pink); }
.nav-dd-chevron { transition: transform 220ms cubic-bezier(0.32, 0.72, 0, 1); }
.nav-dd:hover .nav-dd-chevron,
.nav-dd:focus-within .nav-dd-chevron { transform: rotate(180deg); }
/* Transparent bridge across the gap. Spans the FULL panel width so a diagonal
   move toward any menu item stays inside the hover area, and is only present
   while the menu is open so it can't catch stray hovers below the nav. */
.nav-dd::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  width: 680px;
  max-width: calc(100vw - 32px);
  height: 30px;
  display: none;
}
.nav-dd:hover::after,
.nav-dd:focus-within::after { display: block; }
.nav-dd-panel {
  position: absolute;
  top: calc(100% + 26px);
  left: 50%;
  width: 680px;
  max-width: calc(100vw - 32px);
  background: #fff;
  border: 1px solid rgba(174, 4, 62, 0.08);
  border-radius: 18px;
  box-shadow: 0 1px 2px rgba(174, 4, 62, 0.05), 0 18px 44px rgba(174, 4, 62, 0.14);
  padding: 20px;
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 6px 24px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateX(-50%) translateY(6px);
  /* Short delay applies on close (reverting to this base state), giving a grace
     period so a brief hover slip doesn't snap the menu shut. */
  transition: opacity 160ms ease 120ms, transform 220ms cubic-bezier(0.32, 0.72, 0, 1) 120ms, visibility 160ms 120ms;
  z-index: 60;
}
.nav-dd:hover .nav-dd-panel,
.nav-dd:focus-within .nav-dd-panel {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
  transition-delay: 0ms; /* open instantly, no lag */
}
.nav-dd-col { display: flex; flex-direction: column; gap: 1px; }
.nav-dd-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1px 14px; }
.nav-dd-head {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin: 2px 10px 8px;
}
.nav-dd-item {
  display: flex;
  align-items: center;
  gap: 11px;
  padding: 9px 10px;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 500;
  color: var(--text);
  transition: background 120ms ease, color 120ms ease;
}
.nav-dd-item:hover { background: var(--pink-tint); color: var(--logo-pink); }
.nav-dd-item svg { width: 17px; height: 17px; flex-shrink: 0; color: var(--text-2); transition: color 120ms ease; }
.nav-dd-item:hover svg { color: var(--logo-pink); }

/* ============================================================
   Use-case / solution pages (/for, /use-cases, /compare)
   Reuses the homepage design system; adds page-specific blocks.
   ============================================================ */
/* Hero sub-heading: a touch wider so the two-row break lands cleanly */
.uc-hero-sub { max-width: 760px; }

/* Screenshot frame (used in the hero + the walkthrough steps) */
.uc-shot {
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--border-2);
  background: #fff;
  box-shadow: 0 1px 2px rgba(0,0,0,0.05), 0 18px 40px rgba(0,0,0,0.10), 0 50px 90px rgba(174,4,62,0.08);
}
.uc-shot img { display: block; width: 100%; aspect-ratio: 16 / 10; object-fit: cover; }
/* Custom illustration placeholder (swap the inner element for an <img> when a real screenshot is ready) */
.uc-shot-illo {
  aspect-ratio: 16 / 10;
  width: 100%;
  display: block;
  background: radial-gradient(130% 100% at 50% 0%, var(--pink-tint) 0%, #fff 72%);
}
.uc-shot-illo svg { width: 100%; height: 100%; display: block; }

/* Hero wide screenshot */
.uc-hero-shot { max-width: 1000px; margin: 12px auto 0; }

/* Persona walkthrough — vertical numbered timeline */
.uc-steps { background: #fff; }
.uc-steps-inner { max-width: 860px; margin: 0 auto; }
.uc-step {
  position: relative;
  display: grid;
  grid-template-columns: 46px 1fr;
  column-gap: 22px;
  padding-bottom: 44px;
}
.uc-step:last-child { padding-bottom: 0; }
.uc-step:not(:last-child)::before {
  content: "";
  position: absolute;
  left: 22px;
  top: 52px;
  bottom: 4px;
  width: 2px;
  background: var(--pink);
}
.uc-step-num {
  position: relative;
  z-index: 1;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--pink);
  color: var(--magenta);
  display: grid;
  place-items: center;
  font-size: 17px;
  font-weight: 600;
  letter-spacing: -0.01em;
}
.uc-step-body { min-width: 0; }
.uc-step-body h3 { font-size: 20px; font-weight: 600; letter-spacing: -0.02em; margin: 8px 0 6px; }
.uc-step-body > p { font-size: 16px; color: var(--text-2); line-height: 1.6; margin: 0 0 16px; }
.uc-step-body .uc-shot { margin-top: 2px; }

/* Before / after Pinterpost (a leaner contrast than the homepage timeline) */
.uc-outcome { background: linear-gradient(180deg, #fff 0%, var(--pink-tint) 100%); }
.uc-ba-grid {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.uc-ba-col {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 24px 26px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px 24px;
  align-content: start;
}
.uc-ba-col-after {
  background: linear-gradient(180deg, #fff 0%, var(--pink-tint) 100%);
  border-color: rgba(174, 4, 62, 0.16);
  box-shadow: 0 6px 18px rgba(174, 4, 62, 0.08);
}
.uc-ba-tag {
  align-self: flex-start;
  grid-column: 1 / -1;
  justify-self: start;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--text-3);
  background: rgba(0, 0, 0, 0.05);
  padding: 4px 10px;
  border-radius: 999px;
}
.uc-ba-tag-after { color: var(--magenta); background: var(--pink); }
.uc-ba-row { display: flex; flex-direction: column; gap: 2px; }
.uc-ba-row span {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--text-3);
}
.uc-ba-row strong { font-size: 20px; font-weight: 600; letter-spacing: -0.02em; color: var(--text); }
.uc-ba-col-after .uc-ba-row strong { color: var(--magenta); }

/* Before / after as a comparison table (clearer than side-by-side cards) */
.uc-ba-table {
  width: 100%;
  max-width: 820px;
  margin: 0 auto;
  border-collapse: collapse;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--shadow-card);
}
.uc-ba-table th,
.uc-ba-table td {
  text-align: left;
  padding: 15px 22px;
  border-bottom: 1px solid #f0f0f0;
  vertical-align: middle;
}
.uc-ba-table tr:last-child td { border-bottom: 0; }
.uc-ba-table thead th {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--text-3);
  background: #fafafa;
}
.uc-ba-table thead th:last-child { color: var(--magenta); }
.uc-ba-table tbody td {
  font-size: 16px;
  font-weight: 600;
  color: var(--text);
}
.uc-ba-table tbody td:first-child {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--text-3);
}
.uc-ba-table tbody td:nth-child(2) {
  font-weight: 500;
  color: var(--text-2);
}
.uc-ba-table th:last-child,
.uc-ba-table td:last-child { border-left: 1px solid #f0f0f0; }

/* Persona benefits — checklist (distinct from the homepage why-cards) */
.uc-benefits { background: var(--bg-soft); }
.uc-benefits-grid {
  max-width: 1040px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 4px;
}
.uc-benefit {
  display: grid;
  grid-template-columns: 28px 1fr;
  column-gap: 14px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  padding: 22px 24px;
}
.uc-benefit-check {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  flex-shrink: 0;
  background:
    url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23AE043E' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'><polyline points='20 6 9 17 4 12'/></svg>") center / 14px no-repeat,
    var(--pink);
}
.uc-benefit h3 { font-size: 16px; font-weight: 600; letter-spacing: -0.01em; margin: 2px 0 4px; }
.uc-benefit p { font-size: 14px; color: var(--text-2); line-height: 1.55; margin: 0; }

/* Persona capabilities — product features mapped to the persona. Cards follow the homepage .feature-item convention. */
.uc-caps { background: #fff; }
.uc-caps-grid {
  max-width: 1040px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 4px;
}
.uc-cap {
  background: var(--bg-soft);
  border-radius: var(--r-lg);
  padding: 22px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition: transform 180ms ease, box-shadow 180ms ease;
}
.uc-cap:hover { transform: translateY(-2px); box-shadow: var(--shadow-card); }
.uc-cap-icon {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: rgba(0, 0, 0, 0.06);
  color: var(--text);
  display: grid;
  place-items: center;
  flex-shrink: 0;
}
.uc-cap-icon svg { width: 19px; height: 19px; }
.uc-cap h3 { font-size: 15px; font-weight: 600; letter-spacing: -0.01em; line-height: 1.3; color: var(--text); margin: 4px 0 0; }
.uc-cap p { font-size: 13.5px; color: var(--text-2); line-height: 1.5; margin: 0; }

/* Front-loaded answer block (the chunk AI lifts) */
.uc-lead { background: #fff; padding-top: 40px; padding-bottom: 40px; }
.uc-lead-card {
  max-width: 820px;
  margin: 0 auto;
  background: var(--bg-soft);
  border-radius: var(--r-lg);
  padding: 28px 30px;
}
.uc-lead-card p { margin: 0; font-size: 18px; line-height: 1.6; color: var(--text); text-wrap: pretty; }
.uc-lead-card strong { color: var(--magenta); font-weight: 600; }

/* Rich question-H2 guide (the AEO body) */
.uc-guide { background: #fff; }
.uc-guide-inner {
  max-width: 820px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.uc-guide-item {
  background: var(--bg-soft);
  border-radius: var(--r-lg);
  padding: 28px 30px;
}
.uc-guide-item h2 {
  font-size: clamp(22px, 3vw, 26px);
  font-weight: 600;
  letter-spacing: -0.02em;
  margin: 0 0 10px;
  line-height: 1.2;
  text-wrap: balance;
}
.uc-guide-item p {
  font-size: 16px;
  line-height: 1.65;
  color: var(--text-2);
  margin: 0 0 12px;
}
.uc-guide-item p:last-child { margin-bottom: 0; }
.uc-guide-item strong { font-weight: 600; color: var(--text); }
.uc-guide-item a { color: var(--magenta); text-decoration: underline; text-underline-offset: 2px; }
.uc-guide-item a:hover { opacity: 0.82; }
.uc-compare {
  width: 100%;
  border-collapse: collapse;
  margin: 16px 0 16px;
  font-size: 15px;
  overflow: hidden;
  border-radius: var(--r-md);
  border: 1px solid #ececec;
  background: #fff;
}
.uc-compare th,
.uc-compare td {
  text-align: left;
  padding: 12px 16px;
  border-bottom: 1px solid #f0f0f0;
  vertical-align: top;
  line-height: 1.45;
}
.uc-compare tr:last-child td { border-bottom: 0; }
.uc-compare thead th {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.01em;
  color: var(--text);
  background: #fafafa;
}
.uc-compare thead th:last-child { color: var(--magenta); }
.uc-compare tbody td:first-child { font-weight: 600; color: var(--text); }
.uc-compare tbody td:nth-child(2) { color: var(--text-2); }
.uc-compare tbody td:last-child { color: var(--text); font-weight: 500; }
.uc-compare th:last-child,
.uc-compare td:last-child { background: var(--pink-tint); }

/* Related / internal links (the compounding lever) */
.uc-related { background: var(--bg-soft); }
.uc-related-grid {
  max-width: 1040px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.uc-related-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 22px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  transition: transform 160ms ease, box-shadow 160ms ease;
}
.uc-related-card:hover { transform: translateY(-2px); box-shadow: var(--shadow-card); }
.uc-related-card h3 { font-size: 16px; font-weight: 600; margin: 0; letter-spacing: -0.01em; }
.uc-related-card p { font-size: 14px; color: var(--text-2); margin: 0; line-height: 1.5; }
.uc-related-go { margin-top: auto; padding-top: 10px; font-size: 13px; font-weight: 600; color: var(--magenta); }

/* "Last updated" freshness stamp */

@media (max-width: 960px) {
  .uc-related-grid { grid-template-columns: 1fr 1fr; }
  .uc-lead { padding-top: 28px; padding-bottom: 28px; }
  .uc-benefits-grid { grid-template-columns: 1fr 1fr; gap: 4px; }
  .uc-caps-grid { grid-template-columns: 1fr 1fr; }
  .uc-ba-grid { grid-template-columns: 1fr; }
  .uc-step { grid-template-columns: 40px 1fr; column-gap: 16px; }
  .uc-step:not(:last-child)::before { left: 19px; }
  .uc-step-num { width: 40px; height: 40px; font-size: 15px; }
}
@media (max-width: 600px) {
  .uc-compare { font-size: 13px; }
  .uc-compare th, .uc-compare td { padding: 9px 10px; }
  .uc-caps-grid { grid-template-columns: 1fr; }
  .uc-benefits-grid { grid-template-columns: 1fr; }
  .uc-related-grid { grid-template-columns: 1fr; }
  .uc-ba-col { grid-template-columns: 1fr; gap: 14px; }
  .uc-ba-table th, .uc-ba-table td { padding: 11px 13px; }
  .uc-ba-table tbody td { font-size: 14px; }
}
@media (max-width: 480px) {
  .uc-lead-card { padding: 20px 22px; }
  .uc-lead-card p { font-size: 16px; }
  .uc-guide-item { padding: 22px; }
}

/* ============================================================
   Problem beat  ("name the grind, then the wedge")
   Reusable section for the homepage + persona/use-case pages.
   Monochrome by design (no magenta) and built on the existing
   .feature-item / .why-card tokens so it reads native to the site.
   Stacked, left-aligned, reads top -> bottom.
   Per-page swap = the COPY only (question, the grind, the answer);
   layout + styles are shared.
   ============================================================ */
.problem-beat { background: #fff; padding-bottom: 32px; }
.problem-beat + .how, .problem-beat + .uc-steps { padding-top: 44px; }   /* tighten the gap into the how-it-works that follows */
.pb-inner { max-width: 760px; margin: 0 auto; display: flex; flex-direction: column; gap: 4px; }   /* 4px between cards, == .features-grid */
/* shared card shell (== .feature-item tokens) */
.pb-setup, .pb-card { background: var(--bg-soft); border-radius: var(--r-lg); padding: 30px; display: flex; flex-direction: column; gap: 14px; }
/* shared header: icon chip + uppercase eyebrow (== .feature-icon) */
.pb-head { display: flex; align-items: center; gap: 10px; }
.pb-ic { width: 38px; height: 38px; border-radius: 10px; background: rgba(0,0,0,0.06); color: var(--text); display: grid; place-items: center; flex-shrink: 0; }
.pb-ic svg { width: 19px; height: 19px; }
.pb-tag { font-size: 12px; font-weight: 600; color: var(--text-3); letter-spacing: 0.05em; text-transform: uppercase; }
/* shared heading + body — matched scale across both cards */
.pb-h { font-size: clamp(21px, 2.4vw, 27px); font-weight: 600; letter-spacing: -0.025em; line-height: 1.18; margin: 0; text-wrap: balance; color: var(--text); }
.pb-h em { font-style: normal; color: inherit; position: relative; white-space: nowrap; }   /* keyword stays dark; soft underline swipe is the only accent */
.pb-h em::after { content: ""; position: absolute; left: 0; right: 0; bottom: 1px; height: 7px; background: var(--pink); border-radius: 6px; z-index: -1; transform: skewX(-6deg); }
.pb-b { font-size: 15.5px; line-height: 1.55; color: var(--text-2); margin: 0; text-wrap: pretty; }
/* both cards: the matched lists — ✕ (the grind) on the problem card, ✓ (handled) on the answer card */
.pb-pains { list-style: none; margin: 4px 0 0; padding: 0; display: flex; flex-direction: column; gap: 12px; }
.pb-pains li { display: flex; align-items: flex-start; gap: 12px; font-size: 15px; line-height: 1.45; color: var(--text-2); text-wrap: pretty; }
.pb-x { flex-shrink: 0; width: 22px; height: 22px; border-radius: 7px; background: rgba(0,0,0,0.06); color: var(--text-2); display: grid; place-items: center; margin-top: 1px; }
.pb-x svg { width: 11px; height: 11px; }
@media (max-width: 600px) {
  .pb-setup, .pb-card { padding: 24px; }
}
