/* ============================================
   MVP-Factory — Gumroad-loud, yellow-dominant
   ============================================ */

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

:root {
  --yellow: #FFD60A;          /* primary, can be tweaked */
  --yellow-soft: #FFE96B;
  --yellow-deep: #E8B800;
  --cream: #FFF8E0;
  --ink: #0B0B0B;
  --ink-2: #2B2B2B;
  --paper: #FFFFFF;
  --red: #FF4D2E;
  --blue: #2E64FF;
  --green: #1FBA6B;
  --pink: #FF95C8;
  --line: #0B0B0B;

  --shadow-hard: 6px 6px 0 var(--ink);
  --shadow-md: 4px 4px 0 var(--ink);
  --shadow-sm: 3px 3px 0 var(--ink);

  --r: 12px;
  --r-lg: 18px;
  --t: 0.18s ease-out;

  --font: 'Space Grotesk', -apple-system, BlinkMacSystemFont, sans-serif;
  --display: 'Familjen Grotesk', 'Space Grotesk', sans-serif;
  --mono: 'JetBrains Mono', monospace;
}

html, body { background: var(--yellow); color: var(--ink); }
body {
  font-family: var(--font);
  font-size: 17px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }
img, svg { display: block; max-width: 100%; }

.wrap { max-width: 1240px; margin: 0 auto; padding: 0 28px; }

/* ────────── Typographic primitives ────────── */
.eyebrow {
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
h1, h2, h3, h4 { font-family: var(--display); letter-spacing: -0.025em; line-height: 1.02; }
h1 { font-weight: 700; }
h2 { font-weight: 700; }

/* ────────── Buttons ────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-weight: 700;
  font-size: 16px;
  border: 3px solid var(--ink);
  border-radius: 999px;
  padding: 16px 28px;
  background: var(--paper);
  color: var(--ink);
  box-shadow: var(--shadow-md);
  transition: transform var(--t), box-shadow var(--t);
  white-space: nowrap;
}
.btn:hover { transform: translate(-3px,-3px); box-shadow: 7px 7px 0 var(--ink); }
.btn:active { transform: translate(2px,2px); box-shadow: 2px 2px 0 var(--ink); }
.btn--ink { background: var(--ink); color: var(--yellow); }
.btn--red { background: var(--red); color: #fff; }
.btn--white { background: var(--paper); }
.btn--sm { padding: 10px 18px; font-size: 14px; box-shadow: var(--shadow-sm); }
.btn .arr { transition: transform var(--t); }
.btn:hover .arr { transform: translateX(3px); }

/* ────────── Nav ────────── */
nav.bar {
  position: sticky; top: 0; z-index: 50;
  background: var(--yellow);
  border-bottom: 3px solid var(--ink);
}
nav.bar .wrap {
  display: flex; align-items: center; justify-content: space-between;
  height: 72px;
}
.logo {
  display: inline-flex; align-items: center; gap: 12px;
  font-family: var(--display);
  font-weight: 700; font-size: 22px;
  letter-spacing: -0.02em;
  white-space: nowrap;
  color: var(--ink);
}
.logo .mark {
  width: 40px; height: 40px;
  border-radius: 10px;
  display: grid; place-items: center;
  border: 2.5px solid var(--ink);
  background: var(--ink);
  box-shadow: 3px 3px 0 var(--ink);
  transform: rotate(-3deg);
  transition: transform var(--t);
  flex-shrink: 0;
}
.logo:hover .mark { transform: rotate(2deg) scale(1.05); }
.logo .mark svg { width: 28px; height: 28px; }
.logo-text { letter-spacing: -0.025em; }
.nav-links { display: flex; gap: 28px; }
.nav-links a {
  font-weight: 600; font-size: 15px;
  position: relative;
}
.nav-links a:hover::after {
  content: ''; position: absolute; left:0; right:0; bottom:-6px;
  height: 3px; background: var(--ink);
}
.nav-right { display: flex; gap: 10px; align-items: center; }
.nav-right .agency-link {
  font-size: 13px; font-weight: 600;
  border-bottom: 2px dashed var(--ink);
  padding-bottom: 1px;
}

/* ────────── Hero ────────── */
.hero {
  position: relative;
  padding: 60px 0 80px;
  overflow: hidden;
}
.hero::before {
  /* subtle dotted grid */
  content: '';
  position: absolute; inset: 0;
  background-image: radial-gradient(var(--ink) 1px, transparent 1px);
  background-size: 28px 28px;
  opacity: 0.06;
  pointer-events: none;
}
.hero .wrap { position: relative; z-index: 1; display: grid; grid-template-columns: 1fr; gap: 56px; }

.hero-top { max-width: 1100px; }
@keyframes ping {
  0%,100% { box-shadow: 0 0 0 3px rgba(31,186,107,0.35); }
  50% { box-shadow: 0 0 0 8px rgba(31,186,107,0); }
}

.hero-sub {
  margin-top: 26px;
  font-size: clamp(17px, 1.6vw, 21px);
  line-height: 1.45;
  font-weight: 500;
  color: var(--ink-2);
  max-width: 720px;
  text-wrap: pretty;
}
.hero-sub b, .hero-sub strong { color: var(--ink); font-weight: 700; }

.hero h1 {
  font-size: clamp(40px, 6.4vw, 88px);
  line-height: 0.98;
  font-weight: 700;
  text-wrap: balance;
}
.hero h1 .wave {
  background: var(--paper);
  border: 3px solid var(--ink);
  border-radius: 14px;
  padding: 6px 24px 8px;
  box-shadow: var(--shadow-md);
  display: inline-block;
  transform: rotate(-2deg);
  margin: 10px 6px 12px;
  line-height: 1.05;
  max-width: 100%;
  white-space: nowrap;
}
.hero h1 .scribble {
  position: relative;
  display: inline-block;
}
.hero h1 .scribble::after {
  content: '';
  position: absolute; left: -4px; right: -4px; bottom: -4px;
  height: 14px;
  background: var(--red);
  z-index: -1;
  border-radius: 4px;
  transform: rotate(-1deg);
}

.hero-ctas { margin-top: 30px; display: flex; flex-wrap: wrap; gap: 14px; align-items: center; }
.hero-ctas .nope { font-size: 14px; color: var(--ink-2); font-weight: 500; }
.hero-ctas .nope b { font-weight: 700; }

/* ────────── Hero split: napkin → working app ────────── */
.hero-show { display: flex; flex-direction: column; gap: 56px; }

.split {
  background: var(--paper);
  border: 4px solid var(--ink);
  border-radius: 24px;
  padding: 22px;
  box-shadow: var(--shadow-lg);
  position: relative;
}
.split-head {
  display: flex; align-items: center; justify-content: space-between;
  gap: 12px; flex-wrap: wrap; margin-bottom: 18px;
}
.split-head .live {
  display: inline-flex; align-items: center; gap: 8px;
  background: #fff; border: 2px solid var(--ink);
  padding: 7px 12px; border-radius: 999px;
  font-family: var(--mono); font-size: 11px; font-weight: 700;
  letter-spacing: 0.06em; text-transform: uppercase;
  box-shadow: var(--shadow-sm);
}
.split-head .live .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--red); animation: ping 1.4s ease-in-out infinite; }
.split-eyebrow {
  font-family: var(--mono); font-size: 11px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.08em; color: var(--ink-2);
}
.split-body {
  display: grid;
  grid-template-columns: 1fr 80px 1fr;
  gap: 14px;
  align-items: stretch;
}
.napkin-stage, .app-stage { display: flex; flex-direction: column; gap: 10px; }
.napkin-label, .app-label {
  font-family: var(--mono); font-size: 11px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.1em; color: var(--ink-2);
}

/* napkin / sticky stack */
.napkin {
  position: relative;
  background: repeating-linear-gradient(0deg, transparent 0 26px, rgba(11,11,11,0.06) 26px 27px), var(--cream);
  border: 3px solid var(--ink);
  border-radius: 16px;
  min-height: 280px;
  padding: 18px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transform: rotate(-0.4deg);
}
.napkin .sticky {
  position: absolute;
  inset: 22px 22px auto 22px;
  background: var(--yellow);
  border: 2.5px solid var(--ink);
  border-radius: 6px;
  padding: 16px 18px 14px;
  box-shadow: 4px 6px 0 rgba(11,11,11,0.18);
  font-family: 'Caveat', 'Patrick Hand', cursive;
  font-size: 19px; line-height: 1.3;
  color: var(--ink);
  opacity: 0;
  transform: translateY(8px) rotate(-1deg) scale(0.98);
  transition: opacity 0.5s ease, transform 0.5s cubic-bezier(0.2, 0.7, 0.3, 1.2);
  pointer-events: none;
}
.napkin .sticky:nth-child(1) { transform: translateY(8px) rotate(-1.2deg) scale(0.98); }
.napkin .sticky:nth-child(2) { background: #FFE6F2; transform: translateY(8px) rotate(0.8deg) scale(0.98); }
.napkin .sticky:nth-child(3) { background: #DCE6FF; transform: translateY(8px) rotate(-0.6deg) scale(0.98); }
.napkin .sticky:nth-child(4) { background: #C8F2D2; transform: translateY(8px) rotate(1.4deg) scale(0.98); }
.napkin[data-active="0"] .sticky:nth-child(1),
.napkin[data-active="1"] .sticky:nth-child(2),
.napkin[data-active="2"] .sticky:nth-child(3),
.napkin[data-active="3"] .sticky:nth-child(4) {
  opacity: 1;
  transform: translateY(0) rotate(var(--r, 0deg)) scale(1);
}
.napkin[data-active="0"] .sticky:nth-child(1) { --r: -1.2deg; z-index: 4; }
.napkin[data-active="1"] .sticky:nth-child(2) { --r: 0.8deg; z-index: 4; }
.napkin[data-active="2"] .sticky:nth-child(3) { --r: -0.6deg; z-index: 4; }
.napkin[data-active="3"] .sticky:nth-child(4) { --r: 1.4deg; z-index: 4; }

.sticky-tape {
  position: absolute; top: -10px; left: 50%;
  width: 60px; height: 18px;
  background: rgba(255,255,255,0.55);
  border: 1px solid rgba(11,11,11,0.1);
  transform: translateX(-50%) rotate(-2deg);
}
.sticky-by {
  display: block; margin-top: 8px;
  font-family: var(--mono); font-size: 10px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.05em; color: var(--ink-2);
}

/* arrow */
.split-arrow {
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 6px;
}
.split-arrow svg { width: 100%; max-width: 80px; }
.split-arrow-label {
  font-family: var(--mono); font-size: 10px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.08em; color: var(--ink-2);
}

/* app frame */
.app-frame {
  background: #fff;
  border: 3px solid var(--ink);
  border-radius: 14px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  display: flex; flex-direction: column;
  min-height: 280px;
}
.app-bar {
  display: flex; align-items: center; gap: 10px;
  background: var(--ink);
  color: #fff;
  padding: 8px 12px;
}
.app-dots { display: inline-flex; gap: 5px; }
.app-dots i { width: 10px; height: 10px; border-radius: 50%; background: var(--yellow); display: inline-block; }
.app-dots i:nth-child(2) { background: var(--green); }
.app-dots i:nth-child(3) { background: var(--red); }
.app-url {
  flex: 1;
  font-family: var(--mono); font-size: 11px; font-weight: 600;
  color: rgba(255,255,255,0.85);
}
.app-live {
  display: inline-flex; align-items: center; gap: 6px;
  background: var(--green); color: #fff;
  padding: 3px 8px; border-radius: 999px;
  font-family: var(--mono); font-size: 9px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.06em;
}
.app-live .dot { width: 6px; height: 6px; border-radius: 50%; background: #fff; animation: ping 1.4s ease-in-out infinite; }
.app-body {
  position: relative;
  flex: 1;
  background: var(--cream);
  padding: 14px;
  min-height: 220px;
}
.app-screen {
  position: absolute;
  inset: 14px;
  display: flex; flex-direction: column; gap: 8px;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.4s ease, transform 0.4s cubic-bezier(0.2, 0.7, 0.3, 1);
  pointer-events: none;
}
.app-frame[data-active="0"] .app-screen[data-screen="0"],
.app-frame[data-active="1"] .app-screen[data-screen="1"],
.app-frame[data-active="2"] .app-screen[data-screen="2"],
.app-frame[data-active="3"] .app-screen[data-screen="3"] {
  opacity: 1;
  transform: translateY(0);
}
.as-row {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 10px; align-items: center;
  background: #fff;
  border: 2px solid var(--ink);
  border-radius: 8px;
  padding: 8px 10px;
  font-family: var(--mono); font-size: 11px; font-weight: 600;
  opacity: 0;
  transform: translateX(-6px);
  animation: row-appear 0.4s ease-out forwards;
}
.app-frame[data-active="0"] .app-screen[data-screen="0"] .as-row,
.app-frame[data-active="1"] .app-screen[data-screen="1"] .as-row,
.app-frame[data-active="2"] .app-screen[data-screen="2"] .as-row,
.app-frame[data-active="3"] .app-screen[data-screen="3"] .as-row {
  animation: row-appear 0.4s ease-out forwards;
}
.app-frame[data-active="0"] .app-screen[data-screen="0"] .build-1,
.app-frame[data-active="1"] .app-screen[data-screen="1"] .build-1,
.app-frame[data-active="2"] .app-screen[data-screen="2"] .build-1,
.app-frame[data-active="3"] .app-screen[data-screen="3"] .build-1 { animation-delay: 0.2s; }
.app-frame[data-active="0"] .app-screen[data-screen="0"] .build-2,
.app-frame[data-active="1"] .app-screen[data-screen="1"] .build-2,
.app-frame[data-active="2"] .app-screen[data-screen="2"] .build-2,
.app-frame[data-active="3"] .app-screen[data-screen="3"] .build-2 { animation-delay: 0.55s; }
.app-frame[data-active="0"] .app-screen[data-screen="0"] .build-3,
.app-frame[data-active="1"] .app-screen[data-screen="1"] .build-3,
.app-frame[data-active="2"] .app-screen[data-screen="2"] .build-3,
.app-frame[data-active="3"] .app-screen[data-screen="3"] .build-3 { animation-delay: 0.9s; }
.app-frame[data-active="0"] .app-screen[data-screen="0"] .build-4,
.app-frame[data-active="1"] .app-screen[data-screen="1"] .build-4,
.app-frame[data-active="2"] .app-screen[data-screen="2"] .build-4,
.app-frame[data-active="3"] .app-screen[data-screen="3"] .build-4 { animation-delay: 1.3s; }
@keyframes row-appear {
  to { opacity: 1; transform: translateX(0); }
}
.as-tag {
  display: inline-block;
  padding: 2px 8px; border: 2px solid var(--ink); border-radius: 5px;
  font-size: 10px; font-weight: 800;
  text-transform: uppercase; letter-spacing: 0.04em;
}
.as-text { color: var(--ink); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.as-num { color: var(--ink-2); font-weight: 700; }
.as-num.ok { color: var(--green); }
.as-row.final {
  display: flex; justify-content: center;
  background: var(--yellow);
  border-color: var(--ink);
  margin-top: 4px;
}
.as-stamp {
  font-family: var(--mono); font-size: 11px; font-weight: 800;
  text-transform: uppercase; letter-spacing: 0.08em; color: var(--ink);
}

.split-foot {
  display: flex; gap: 16px; flex-wrap: wrap; align-items: center; justify-content: space-between;
  margin-top: 18px; padding-top: 16px;
  border-top: 2px dashed rgba(11,11,11,0.15);
  font-size: 14px; color: var(--ink-2);
}
.sf-pace b { color: var(--ink); }
.split-dots { display: inline-flex; gap: 8px; }
.split-dots button {
  width: 12px; height: 12px; border-radius: 50%;
  border: 2px solid var(--ink); background: transparent;
  cursor: pointer; padding: 0;
  transition: background 0.2s;
}
.split-dots button.on { background: var(--ink); }

/* ────────── Polaroid wall (stuff we built) ────────── */
.wall {
  position: relative;
  padding: 8px 0 32px;
}
.wall-head {
  display: flex; align-items: center; justify-content: space-between;
  gap: 16px; flex-wrap: wrap; margin-bottom: 18px;
  padding: 0 4px;
}
.wall-eyebrow {
  font-family: 'Caveat', cursive; font-size: 26px; color: var(--ink-2);
}
.wall-count {
  font-family: var(--mono); font-size: 12px; font-weight: 700;
  color: var(--ink);
}
.wall-count a { color: var(--blue); border-bottom: 2px solid var(--blue); }
.wall-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 22px 18px;
  align-items: start;
}
.polaroid {
  position: relative;
  background: #fff;
  border: 2px solid var(--ink);
  padding: 10px 10px 14px;
  margin: 0;
  box-shadow: 4px 6px 0 rgba(11,11,11,0.18);
  transform: rotate(var(--rot, 0deg));
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.polaroid:hover {
  transform: rotate(0deg) translateY(-3px) scale(1.02);
  box-shadow: 6px 10px 0 rgba(11,11,11,0.25);
  z-index: 10;
}
.polaroid img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  background: var(--cream);
  border: 1px solid rgba(11,11,11,0.1);
  display: block;
}
.polaroid figcaption {
  margin-top: 10px;
  font-family: 'Caveat', cursive; font-size: 19px;
  text-align: center; color: var(--ink);
  line-height: 1.1;
}
.polaroid .tape {
  position: absolute;
  width: 56px; height: 18px;
  background: rgba(255,214,10,0.65);
  border: 1px solid rgba(11,11,11,0.1);
  z-index: 2;
}
.polaroid .tape.tl { top: -8px; left: 12px; transform: rotate(-6deg); }
.polaroid .tape.tr { top: -8px; right: 12px; transform: rotate(6deg); }
.polaroid .tape.bl { bottom: 32px; left: 12px; transform: rotate(8deg); background: rgba(255,149,200,0.65); }
.polaroid .tape.br { bottom: 32px; right: 12px; transform: rotate(-4deg); background: rgba(46,100,255,0.45); }
.polaroid--more .more-card {
  width: 100%; aspect-ratio: 4 / 3;
  background: var(--ink); color: var(--yellow);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 4px;
  border: 1px solid var(--ink);
}
.more-num { font-family: var(--mono); font-weight: 800; font-size: 44px; line-height: 1; }
.more-text { font-family: var(--display); font-weight: 700; font-size: 14px; text-align: center; line-height: 1.2; }
.more-arrow { font-size: 26px; margin-top: 4px; }

@media (prefers-reduced-motion: reduce) {
  .napkin .sticky, .app-screen, .as-row { transition: none !important; animation: none !important; opacity: 1 !important; transform: none !important; }
}

@media (max-width: 760px) {
  .split-body { grid-template-columns: 1fr; }
  .split-arrow { transform: rotate(90deg); margin: -4px auto; }
}

/* ────────── Marquee bar (between sections) ────────── */
.marquee {
  background: var(--ink); color: var(--yellow);
  border-top: 3px solid var(--ink); border-bottom: 3px solid var(--ink);
  overflow: hidden;
  padding: 18px 0;
}
.marquee-track {
  display: flex; gap: 56px;
  animation: scroll 28s linear infinite;
  width: max-content;
}
.marquee-track span {
  font-family: var(--display); font-weight: 700; font-size: 28px;
  letter-spacing: -0.01em;
  display: inline-flex; align-items: center; gap: 56px;
  white-space: nowrap;
}
.marquee-track span::after {
  content: '✺'; color: var(--yellow);
}
@keyframes scroll {
  to { transform: translateX(-50%); }
}

/* ────────── What is an MVP comic ────────── */
.mvp {
  background: var(--cream);
  border-top: 3px solid var(--ink);
  border-bottom: 3px solid var(--ink);
  padding: 90px 0 100px;
  position: relative;
}
.mvp .head {
  text-align: center; max-width: 760px; margin: 0 auto 56px;
}
.mvp .head .eyebrow { color: var(--red); margin-bottom: 14px; display: inline-block; }
.mvp .head h2 { font-size: clamp(36px, 5vw, 60px); }
.mvp .head h2 em { font-style: normal; background: var(--yellow); padding: 0 10px; border: 3px solid var(--ink); border-radius: 10px; display: inline-block; transform: rotate(-1deg); box-shadow: var(--shadow-sm); margin: 4px 2px; line-height: 1.1; }
.mvp .head h2 { line-height: 1.18; text-wrap: balance; }
.mvp .head p { margin-top: 18px; font-size: 18px; color: var(--ink-2); }

.comic {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.panel {
  background: var(--paper);
  border: 4px solid var(--ink);
  border-radius: 18px;
  box-shadow: var(--shadow-hard);
  padding: 22px 22px 24px;
  position: relative;
}
.panel .panel-num {
  position: absolute; top: -18px; left: -18px;
  width: 50px; height: 50px;
  background: var(--ink); color: var(--yellow);
  border-radius: 50%;
  display: grid; place-items: center;
  font-family: var(--display); font-weight: 700; font-size: 22px;
  border: 3px solid var(--ink);
  transform: rotate(-6deg);
}
.panel .scene {
  background: var(--cream);
  border: 3px solid var(--ink);
  border-radius: 12px;
  height: 220px;
  margin-bottom: 18px;
  position: relative;
  overflow: hidden;
}
.panel .speech {
  position: absolute;
  background: var(--paper);
  border: 2.5px solid var(--ink);
  border-radius: 14px;
  padding: 8px 12px;
  font-size: 13px; font-weight: 600;
  box-shadow: var(--shadow-sm);
  max-width: 70%;
}
.panel .speech::after {
  content: '';
  position: absolute; bottom: -10px; left: 18px;
  width: 14px; height: 14px;
  background: var(--paper);
  border-right: 2.5px solid var(--ink);
  border-bottom: 2.5px solid var(--ink);
  transform: rotate(45deg);
}
.panel h3 {
  font-size: 22px; font-weight: 700; margin-bottom: 6px;
}
.panel p { font-size: 14.5px; color: var(--ink-2); }

/* ────────── How it works ────────── */
.how {
  background: var(--yellow);
  padding: 100px 0;
  border-bottom: 3px solid var(--ink);
}
.how .head { text-align: center; max-width: 760px; margin: 0 auto 64px; }
.how .head h2 { font-size: clamp(36px, 5vw, 60px); }
.how .head h2 .pop {
  background: var(--paper); padding: 2px 14px; border: 3px solid var(--ink);
  border-radius: 10px; box-shadow: var(--shadow-sm);
  display: inline-block; transform: rotate(-1deg);
}
.how-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}
.step {
  background: var(--paper);
  border: 4px solid var(--ink);
  border-radius: 18px;
  padding: 22px 20px 24px;
  box-shadow: var(--shadow-md);
  position: relative;
  transition: transform var(--t), box-shadow var(--t);
}
.step:hover { transform: translate(-3px,-3px); box-shadow: 7px 7px 0 var(--ink); }
.step .step-tag {
  display: inline-flex; align-items: center; gap: 6px;
  font-family: var(--mono); font-size: 11px; font-weight: 700;
  background: var(--ink); color: var(--yellow);
  padding: 4px 10px; border-radius: 6px;
  margin-bottom: 14px;
}
.step .vis {
  background: var(--cream);
  border: 3px solid var(--ink);
  border-radius: 12px;
  height: 130px;
  margin-bottom: 16px;
  padding: 12px;
  position: relative;
  overflow: hidden;
}
.step h3 { font-size: 19px; margin-bottom: 6px; }
.step p { font-size: 14px; color: var(--ink-2); line-height: 1.45; }

/* ────────── Why vetted (AI tools) ────────── */
.vetted {
  background: var(--ink);
  color: var(--paper);
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}
.vetted::before {
  content: '';
  position: absolute; inset: 0;
  background-image: radial-gradient(rgba(255,214,10,0.18) 1.5px, transparent 1.5px);
  background-size: 36px 36px;
  pointer-events: none;
}
.vetted .wrap { position: relative; z-index: 1; }
.vetted .head { text-align: center; max-width: 820px; margin: 0 auto 56px; }
.vetted .head .eyebrow { color: var(--yellow); margin-bottom: 14px; display: inline-block; }
.vetted .head h2 { font-size: clamp(36px, 5vw, 60px); }
.vetted .head h2 .lit { color: var(--yellow); }
.vetted .head p { margin-top: 18px; font-size: 17px; color: rgba(255,255,255,0.7); }

.gauntlet {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 32px;
  align-items: stretch;
}
.gauntlet-list {
  background: var(--paper); color: var(--ink);
  border: 3px solid var(--paper);
  border-radius: 18px;
  padding: 28px 28px 24px;
  box-shadow: 8px 8px 0 var(--yellow);
}
.gauntlet-list h3 { font-size: 22px; margin-bottom: 18px; }
.gauntlet-list ul { list-style: none; }
.gauntlet-list li {
  display: flex; gap: 14px; padding: 14px 0;
  border-bottom: 2px dashed rgba(11,11,11,0.15);
  font-size: 15px; line-height: 1.4;
}
.gauntlet-list li:last-child { border-bottom: none; }
.gauntlet-list .check {
  flex-shrink: 0;
  width: 26px; height: 26px;
  border: 2.5px solid var(--ink);
  border-radius: 50%;
  background: var(--green);
  color: var(--paper);
  display: grid; place-items: center;
  font-weight: 700; font-size: 13px;
}
.gauntlet-list li b { font-weight: 700; }

.tools-card {
  background: var(--yellow); color: var(--ink);
  border: 3px solid var(--paper);
  border-radius: 18px;
  padding: 28px;
  box-shadow: 8px 8px 0 var(--red);
  display: flex; flex-direction: column;
}
.tools-card h3 { font-size: 22px; margin-bottom: 8px; }
.tools-card p { font-size: 14px; color: var(--ink-2); margin-bottom: 22px; }
.tool-grid {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px;
  flex: 1;
}
.tool {
  background: var(--paper);
  border: 2.5px solid var(--ink);
  border-radius: 12px;
  padding: 12px;
  display: flex; align-items: center; gap: 10px;
  min-width: 0;
}
.tool > div:last-child { min-width: 0; overflow: hidden; }
.tool .tname { white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.tool .tkind { white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.tool .tlogo {
  width: 36px; height: 36px;
  border-radius: 10px;
  display: grid; place-items: center;
  border: 2px solid var(--ink);
  flex-shrink: 0;
  font-weight: 700;
}
.tool .tname { font-size: 14px; font-weight: 700; }
.tool .tkind { font-family: var(--mono); font-size: 10px; color: var(--ink-2); }
.tool-foot {
  margin-top: 16px;
  font-family: var(--mono); font-size: 11px; font-weight: 600;
  text-align: center;
  background: var(--ink); color: var(--yellow);
  padding: 10px;
  border-radius: 8px;
}

/* ────────── Workflow examples ────────── */
.workflows {
  background: var(--paper);
  padding: 110px 0;
  border-top: 3px solid var(--ink);
}
.workflows .head { max-width: 900px; margin: 0 auto 60px; text-align: center; }
.workflows .head h2 { font-size: clamp(36px, 5vw, 60px); }
.workflows .head h2 .age { color: var(--red); }
.workflows .head p { font-size: 18px; color: var(--ink-2); margin-top: 16px; }

.cases {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 22px;
}
.case {
  background: var(--paper);
  border: 4px solid var(--ink);
  position: relative;
  text-decoration: none;
  color: inherit;
  border-radius: 18px;
  padding: 26px;
  box-shadow: var(--shadow-md);
  display: flex; flex-direction: column;
  transition: transform var(--t), box-shadow var(--t);
  position: relative;
  overflow: hidden;
}
.case:hover { transform: translate(-3px,-3px); box-shadow: 7px 7px 0 var(--ink); }
.case .vis {
  height: 180px;
  border: 3px solid var(--ink);
  border-radius: 12px;
  margin-bottom: 18px;
  position: relative;
  overflow: hidden;
}
.case-body { display: flex; flex-direction: column; flex: 1; }
.case-client { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; margin-bottom: 12px; }
.logo-stamp {
  font-family: var(--mono); font-size: 10px; font-weight: 700;
  letter-spacing: 0.04em;
  padding: 5px 10px;
  border: 2px solid var(--ink);
  border-radius: 4px;
  background: #fff;
  text-transform: uppercase;
  box-shadow: 2px 2px 0 var(--ink);
}
.logo-stamp[data-color="cream"] { background: var(--cream); }
.logo-stamp[data-color="pink"] { background: var(--pink); }
.logo-stamp[data-color="blue"] { background: #2E64FF; color: #fff; }
.logo-stamp[data-color="blue-soft"] { background: #DCE6FF; }
.case h3 {
  font-size: 22px;
  margin-bottom: 8px;
  display: flex; align-items: baseline; gap: 8px; flex-wrap: wrap;
}
.case h3 .arrow-pop {
  font-family: var(--mono); font-weight: 700;
  transition: transform var(--t);
  display: inline-block;
}
a.case:hover h3 .arrow-pop { transform: translateX(4px); }
.case .who { font-family: var(--mono); font-size: 11px; font-weight: 700; color: var(--ink-2); letter-spacing: 0.06em; text-transform: uppercase; }
.case p { font-size: 14.5px; color: var(--ink-2); line-height: 1.5; flex: 1; }
.case .case-meta {
  margin-top: 18px;
  display: flex; gap: 8px; flex-wrap: wrap;
}
.case .case-meta span {
  font-family: var(--mono); font-size: 10px; font-weight: 700;
  padding: 3px 9px;
  border: 2px solid var(--ink);
  border-radius: 4px;
  background: var(--cream);
  white-space: nowrap;
}
.read-more {
  margin-top: 16px;
  font-family: var(--mono); font-size: 12px; font-weight: 700;
  color: var(--ink); letter-spacing: 0.04em;
  text-transform: uppercase;
  border-top: 2px dashed var(--ink);
  padding-top: 12px;
}
.case-stamp {
  position: absolute;
  top: 18px; right: -38px;
  background: var(--red); color: #fff;
  font-family: var(--mono); font-size: 10px; font-weight: 700;
  letter-spacing: 0.1em;
  padding: 6px 44px;
  transform: rotate(35deg);
  border: 2px solid var(--ink);
  z-index: 3;
  box-shadow: 2px 2px 0 var(--ink);
}

/* 6-card layout: feature wide, then 5 supporting cards */
.case--feature {
  grid-column: span 12;
  background: var(--cream);
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 28px;
  align-items: stretch;
}
.case--feature .vis { height: 100%; min-height: 280px; margin-bottom: 0; }
.case--feature h3 { font-size: 30px; }
.case--feature p { font-size: 15.5px; }
.case:nth-child(2) { grid-column: span 7; background: var(--pink); }   /* D2C */
.case:nth-child(3) { grid-column: span 5; background: #DCE6FF; }       /* Helpdesk */
.case:nth-child(4) { grid-column: span 4; background: var(--cream); }  /* POScanner */
.case:nth-child(5) { grid-column: span 4; background: #E0F0FF; }       /* LMS */
.case:nth-child(6) { grid-column: span 4; background: #fff; }          /* 9yo */

/* ────────── Payment protection ────────── */
.protect {
  background: var(--yellow);
  padding: 110px 0;
  border-top: 3px solid var(--ink);
}
.protect .wrap { display: grid; grid-template-columns: 0.95fr 1.05fr; gap: 56px; align-items: center; }
.protect .left h2 { font-size: clamp(40px, 5vw, 64px); margin-bottom: 18px; }
.protect .left h2 .knockout {
  background: var(--ink); color: var(--yellow);
  padding: 0 14px; border-radius: 8px;
  display: inline-block; transform: rotate(-1.5deg);
}
.protect .left p { font-size: 17px; line-height: 1.55; color: var(--ink-2); margin-bottom: 18px; max-width: 460px; }
.protect-promises {
  margin-top: 26px;
  display: flex; flex-direction: column; gap: 14px;
}
.promise {
  display: flex; gap: 14px; align-items: flex-start;
}
.promise .pin {
  flex-shrink: 0;
  width: 40px; height: 40px;
  background: var(--paper);
  border: 3px solid var(--ink);
  border-radius: 50%;
  display: grid; place-items: center;
  font-weight: 700; font-size: 18px;
  box-shadow: var(--shadow-sm);
}
.promise b { font-weight: 700; }

/* Receipt visual */
.receipt {
  background: var(--paper);
  border: 4px solid var(--ink);
  border-radius: 4px;
  padding: 28px 28px 0;
  box-shadow: 12px 12px 0 var(--ink);
  position: relative;
  font-family: var(--mono);
  transform: rotate(1.5deg);
}
.receipt::before, .receipt::after {
  content: '';
  position: absolute; left: 0; right: 0;
  height: 14px;
  background:
    radial-gradient(circle at 8px 7px, var(--yellow) 7px, transparent 7px) repeat-x;
  background-size: 16px 14px;
}
.receipt::before { top: -14px; transform: rotate(180deg); }
.receipt::after { bottom: -14px; }
.receipt .r-head {
  display: flex; justify-content: space-between; align-items: baseline;
  border-bottom: 2px dashed var(--ink);
  padding-bottom: 14px; margin-bottom: 14px;
  font-size: 13px;
}
.receipt .r-head h4 {
  font-family: var(--display); font-size: 22px; letter-spacing: 0;
}
.receipt .r-line {
  display: flex; justify-content: space-between; align-items: center;
  padding: 12px 0;
  font-size: 13.5px;
  border-bottom: 1.5px dotted rgba(0,0,0,0.2);
}
.receipt .r-line:last-of-type { border-bottom: none; }
.receipt .r-line .tag {
  background: var(--yellow); padding: 2px 6px;
  border-radius: 3px; border: 1.5px solid var(--ink);
  font-size: 10px; font-weight: 700;
}
.receipt .r-line .tag.ok { background: var(--green); color: var(--paper); border-color: var(--ink); }
.receipt .r-line .tag.held { background: var(--paper); }
.receipt .r-total {
  display: flex; justify-content: space-between; align-items: baseline;
  border-top: 3px double var(--ink);
  padding-top: 16px; margin-top: 4px; padding-bottom: 24px;
  font-size: 14px;
}
.receipt .r-total .big { font-size: 28px; font-weight: 700; font-family: var(--display); }
.receipt .stamp {
  position: absolute; top: 32px; right: -20px;
  background: var(--red); color: var(--paper);
  border: 3px solid var(--ink);
  padding: 8px 14px;
  font-weight: 700; font-size: 14px;
  font-family: var(--display); letter-spacing: 0.05em;
  transform: rotate(8deg);
  box-shadow: var(--shadow-sm);
}

/* ────────── Pricing ────────── */
.pricing {
  background: var(--cream);
  padding: 110px 0;
  border-top: 3px solid var(--ink);
}
.pricing .head { text-align: center; max-width: 760px; margin: 0 auto 56px; }
.pricing .head h2 { font-size: clamp(36px, 5vw, 60px); }
.pricing .head p { font-size: 18px; color: var(--ink-2); margin-top: 14px; }
.tiers {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px;
}
.tier {
  background: var(--paper);
  border: 4px solid var(--ink);
  border-radius: 18px;
  padding: 28px 26px 32px;
  box-shadow: var(--shadow-md);
  position: relative;
  display: flex; flex-direction: column;
  transition: transform var(--t), box-shadow var(--t);
}
.tier:hover { transform: translate(-3px,-3px); box-shadow: 7px 7px 0 var(--ink); }
.tier.featured { background: var(--yellow); transform: translateY(-12px); }
.tier.featured:hover { transform: translateY(-12px) translate(-3px,-3px); }
.tier .ribbon {
  position: absolute; top: -16px; right: 22px;
  background: var(--red); color: var(--paper);
  font-family: var(--mono); font-size: 11px; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase;
  padding: 6px 12px; border: 3px solid var(--ink); border-radius: 999px;
  box-shadow: var(--shadow-sm);
}
.tier .tname { font-family: var(--mono); font-size: 12px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--ink-2); margin-bottom: 8px; }
.tier h3 { font-size: 28px; margin-bottom: 12px; }
.tier .price { font-family: var(--display); font-size: 42px; font-weight: 700; line-height: 1; }
.tier .price .sub { font-family: var(--mono); font-size: 13px; font-weight: 600; color: var(--ink-2); display: block; margin-top: 6px; }
.tier .pdesc { font-size: 14.5px; color: var(--ink-2); margin: 18px 0 22px; }
.tier ul { list-style: none; flex: 1; }
.tier ul li {
  font-size: 14px;
  padding: 8px 0; padding-left: 26px; position: relative;
}
.tier ul li::before {
  content: '✓';
  position: absolute; left: 0; top: 8px;
  width: 18px; height: 18px;
  background: var(--ink); color: var(--yellow);
  border-radius: 50%;
  display: grid; place-items: center;
  font-weight: 700; font-size: 11px;
}
.tier.featured ul li::before { background: var(--paper); color: var(--ink); }
.tier .btn { margin-top: 22px; width: 100%; }

.pricing .fineprint {
  text-align: center; margin-top: 36px;
  font-size: 14px; color: var(--ink-2);
  max-width: 600px; margin-left: auto; margin-right: auto;
}
.pricing .fineprint b { font-weight: 700; color: var(--ink); }

/* ────────── Quotes ────────── */
.quotes {
  background: var(--ink); color: var(--paper);
  padding: 90px 0;
}
.quotes .wrap { display: grid; grid-template-columns: 1fr 1fr; gap: 30px; }
.quote {
  background: var(--yellow); color: var(--ink);
  border: 4px solid var(--paper);
  border-radius: 18px;
  padding: 32px;
  box-shadow: 10px 10px 0 var(--red);
  position: relative;
}
.quote.q2 {
  background: var(--paper);
  box-shadow: 10px 10px 0 var(--blue);
}
.quote .q-mark {
  position: absolute; top: 8px; right: 22px;
  font-family: var(--display); font-size: 80px; font-weight: 700;
  line-height: 0.7; color: var(--ink);
  opacity: 0.18;
  pointer-events: none;
}
.quote blockquote { position: relative; z-index: 1; padding-right: 40px; }
.quote blockquote {
  font-size: 21px; font-weight: 600; line-height: 1.35;
  font-family: var(--display);
  margin-bottom: 22px;
}
.quote .by { font-family: var(--mono); font-size: 12px; font-weight: 700; letter-spacing: 0.06em; }
.quote .by b { color: var(--ink); }

/* ────────── FAQ ────────── */
.faq {
  background: var(--paper);
  padding: 110px 0;
  border-top: 3px solid var(--ink);
}
.faq .wrap { max-width: 880px; }
.faq .head { text-align: center; margin-bottom: 50px; }
.faq .head h2 { font-size: clamp(36px, 5vw, 60px); }
.faq .head p { font-size: 17px; color: var(--ink-2); margin-top: 14px; }
.q {
  border: 3px solid var(--ink);
  border-radius: 14px;
  background: var(--paper);
  margin-bottom: 14px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform var(--t), box-shadow var(--t);
}
.q[open] { background: var(--yellow); transform: translate(-2px,-2px); box-shadow: 5px 5px 0 var(--ink); }
.q summary {
  padding: 20px 24px;
  font-size: 17px;
  font-weight: 700;
  cursor: pointer;
  list-style: none;
  display: flex; justify-content: space-between; align-items: center;
  gap: 14px;
}
.q summary::-webkit-details-marker { display: none; }
.q summary .plus {
  flex-shrink: 0;
  width: 30px; height: 30px;
  background: var(--ink); color: var(--yellow);
  border-radius: 50%;
  display: grid; place-items: center;
  font-weight: 700; font-size: 18px;
  transition: transform var(--t);
}
.q[open] summary .plus { transform: rotate(45deg); background: var(--paper); color: var(--ink); }
.q .a {
  padding: 0 24px 22px;
  font-size: 15px;
  color: var(--ink-2);
  line-height: 1.6;
}

/* ────────── Final CTA ────────── */
.final {
  background: var(--red);
  color: var(--paper);
  padding: 110px 0;
  border-top: 3px solid var(--ink);
  border-bottom: 3px solid var(--ink);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.final::before {
  content: '';
  position: absolute; inset: 0;
  background: repeating-linear-gradient(45deg, transparent 0 30px, rgba(255,255,255,0.06) 30px 32px);
  pointer-events: none;
}
.final .wrap { position: relative; z-index: 1; }
.final h2 {
  font-size: clamp(48px, 7vw, 96px);
  line-height: 0.96;
}
.final h2 .stamp2 {
  background: var(--yellow); color: var(--ink);
  border: 4px solid var(--ink);
  border-radius: 14px;
  padding: 0 16px;
  display: inline-block;
  transform: rotate(-2deg);
  box-shadow: var(--shadow-hard);
}
.final p {
  font-size: 19px;
  margin-top: 24px;
  margin-bottom: 36px;
  max-width: 560px;
  margin-left: auto; margin-right: auto;
}
.final .ctas { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ────────── Footer ────────── */
footer {
  background: var(--ink); color: var(--paper);
  padding: 70px 0 32px;
}
footer .wrap { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 36px; }
footer .f-brand { max-width: 320px; }
footer .f-brand .logo { color: var(--yellow); margin-bottom: 14px; }
footer .f-brand .logo .mark { background: var(--yellow); color: var(--ink); }
footer .f-brand p { color: rgba(255,255,255,0.65); font-size: 14px; line-height: 1.5; }
footer h5 {
  font-family: var(--mono); font-size: 11px; font-weight: 700;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--yellow);
  margin-bottom: 14px;
}
footer ul { list-style: none; }
footer ul li { margin-bottom: 9px; font-size: 14px; }
footer ul li a { color: rgba(255,255,255,0.7); }
footer ul li a:hover { color: var(--yellow); }
footer .f-bottom {
  border-top: 1px solid rgba(255,255,255,0.15);
  margin-top: 50px; padding-top: 24px;
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 14px;
  font-size: 12px; color: rgba(255,255,255,0.55);
  font-family: var(--mono);
}

/* ────────── Responsive ────────── */
@media (max-width: 1140px) {
  .how-grid { grid-template-columns: repeat(2, 1fr); }
  .gauntlet { grid-template-columns: 1fr; }
  .cases { grid-template-columns: 1fr 1fr; gap: 18px; }
  .case--feature { grid-column: span 2; grid-template-columns: 1fr; }
  .case--feature .vis { min-height: 220px; }
  .case:nth-child(n) { grid-column: span 1; }
  .case--feature { grid-column: span 2; }
  .tiers { grid-template-columns: 1fr; max-width: 520px; margin: 0 auto; }
  .tier.featured { transform: none; }
  .protect .wrap { grid-template-columns: 1fr; }
  .quotes .wrap { grid-template-columns: 1fr; }
  .nav-links { gap: 18px; }
  .nav-links a { font-size: 13.5px; }
}
@media (max-width: 980px) {
  .hero h1 { font-size: clamp(36px, 7vw, 56px); }
  .race-grid { grid-template-columns: 1fr; }
  .comic { grid-template-columns: 1fr; }
  .cases { grid-template-columns: 1fr; }
  .case, .case--feature { grid-column: span 1 !important; }
  .case--feature { grid-template-columns: 1fr; }
  footer .wrap { grid-template-columns: 1fr 1fr; }
  .nav-links { display: none; }
}
@media (max-width: 640px) {
  .how-grid { grid-template-columns: 1fr; }
  footer .wrap { grid-template-columns: 1fr; }
  .hero-ctas { flex-direction: column; align-items: stretch; }
  .hero-ctas .btn { width: 100%; }
  .hero-ctas .nope { text-align: center; }
}
