/*
 * Tell and Show — marketing system
 * One color system. One shadow system. One type scale.
 * Track colors removed from the marketing surface; they belong to the studio interior.
 */

:root {
  --bg: #fbf8f3;
  --bg-elev: #ffffff;
  --bg-band: #f4eee2;
  --ink: #15140f;
  --ink-2: #2a2820;
  --ink-3: #4a463c;
  --muted: #7a7468;
  --muted-strong: #a39a89;
  --line: #ece4d2;
  --line-strong: #d6cab1;
  --accent: #b4471a;
  --accent-ink: #8c3614;
  --accent-soft: #f5e5db;
  --focus: #b4471a;
  --success: #2e6a39;
  --warning: #8a5a16;

  --shadow-1: 0 1px 2px rgba(21, 20, 15, 0.04), 0 1px 1px rgba(21, 20, 15, 0.06);
  --shadow-2: 0 4px 14px -2px rgba(21, 20, 15, 0.07), 0 2px 4px -2px rgba(21, 20, 15, 0.04);
  --shadow-3: 0 24px 56px -24px rgba(21, 20, 15, 0.20), 0 12px 24px -16px rgba(21, 20, 15, 0.08);

  --r-sm: 4px;
  --r-md: 8px;
  --r-lg: 12px;
  --r-xl: 20px;
  --r-2xl: 28px;
  --r-full: 9999px;

  --font-display: 'Fraunces', 'Source Serif 4', Georgia, serif;
  --font-text: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, sans-serif;

  --display-xl: clamp(44px, 6.4vw, 88px);
  --display-l: clamp(36px, 4.8vw, 56px);
  --display-m: clamp(28px, 3.2vw, 40px);
  --display-s: clamp(22px, 2.4vw, 28px);
  --body-xl: clamp(19px, 1.8vw, 22px);
  --body-l: 18px;
  --body-m: 16px;
  --body-s: 14px;
  --label: 12px;

  --space-1: 4px;
  --space-2: 8px;
  --space-3: 12px;
  --space-4: 16px;
  --space-5: 24px;
  --space-6: 32px;
  --space-7: 48px;
  --space-8: 64px;
  --space-9: 96px;
  --space-10: 128px;
}

*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--font-text);
  font-size: var(--body-m);
  line-height: 1.55;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-feature-settings: 'cv11', 'ss01', 'ss03';
}

img, svg { display: block; max-width: 100%; }
button { font: inherit; color: inherit; cursor: pointer; }
input, textarea, select { font: inherit; color: inherit; }

a {
  color: var(--accent-ink);
  text-decoration: none;
  text-underline-offset: 2px;
  transition: color .15s ease;
}
a:hover { color: var(--accent); }

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

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

.mp-shell {
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 var(--space-6);
}

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 380;
  font-variation-settings: 'opsz' 36, 'SOFT' 30;
  letter-spacing: -0.012em;
  color: var(--ink);
  margin: 0;
  line-height: 1.04;
}
h1 { font-size: var(--display-xl); font-variation-settings: 'opsz' 72, 'SOFT' 50; letter-spacing: -0.018em; }
h2 { font-size: var(--display-l); font-variation-settings: 'opsz' 48, 'SOFT' 40; letter-spacing: -0.014em; }
h3 { font-size: var(--display-m); }
h4 { font-size: var(--display-s); }

p { margin: 0; }

.mp-kicker {
  font-family: var(--font-text);
  font-size: var(--label);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--accent-ink);
  margin-bottom: var(--space-4);
}

.mp-nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: color-mix(in srgb, var(--bg) 88%, transparent);
  backdrop-filter: saturate(140%) blur(12px);
  -webkit-backdrop-filter: saturate(140%) blur(12px);
  border-bottom: 1px solid color-mix(in srgb, var(--line) 80%, transparent);
}
.mp-nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
}
.mp-brand {
  display: inline-flex;
  align-items: baseline;
  gap: 2px;
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 460;
  font-variation-settings: 'opsz' 28, 'SOFT' 30;
  letter-spacing: -0.01em;
  color: var(--ink);
}
.mp-brand:hover { color: var(--ink); }
.mp-brand__amp {
  color: var(--accent);
  font-style: italic;
  margin: 0 1px;
  font-variation-settings: 'opsz' 28, 'SOFT' 80;
}
.mp-links {
  display: flex;
  align-items: center;
  gap: var(--space-6);
}
.mp-links a {
  font-family: var(--font-text);
  font-size: var(--body-s);
  font-weight: 500;
  color: var(--ink-2);
}
.mp-links a:hover { color: var(--accent-ink); }
.mp-links a[aria-current="page"] {
  color: var(--ink);
  font-weight: 600;
}
.mp-links a.btn { color: var(--bg-elev); }
.mp-links a.btn:hover { color: var(--bg-elev); }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  padding: 11px 22px;
  font-family: var(--font-text);
  font-size: var(--body-s);
  font-weight: 600;
  letter-spacing: -0.005em;
  background: var(--ink);
  color: var(--bg-elev);
  border: 1px solid var(--ink);
  border-radius: var(--r-full);
  text-decoration: none;
  cursor: pointer;
  transition: transform .15s ease, background .15s ease, box-shadow .15s ease;
  white-space: nowrap;
}
.btn:hover {
  background: var(--ink-2);
  color: var(--bg-elev);
  transform: translateY(-1px);
  box-shadow: var(--shadow-2);
}
.btn:active { transform: translateY(0); }
.btn-secondary {
  background: transparent;
  color: var(--ink);
  border: 1px solid var(--line-strong);
}
.btn-secondary:hover {
  background: var(--bg-elev);
  color: var(--ink);
  border-color: var(--ink);
}
.btn-accent {
  background: var(--accent);
  border-color: var(--accent);
}
.btn-accent:hover { background: var(--accent-ink); border-color: var(--accent-ink); }

.mp-hero {
  padding: var(--space-9) 0 var(--space-8);
  position: relative;
}
.mp-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr);
  gap: var(--space-9);
  align-items: center;
}
.hero-copy {
  font-size: var(--body-xl);
  line-height: 1.5;
  color: var(--ink-2);
  margin-top: var(--space-5);
  max-width: 36ch;
}
.cta-row {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  flex-wrap: wrap;
  margin-top: var(--space-6);
}
.meta-line {
  display: flex;
  gap: var(--space-5);
  flex-wrap: wrap;
  margin-top: var(--space-7);
  padding-top: var(--space-5);
  border-top: 1px solid var(--line);
  font-size: var(--body-s);
  color: var(--muted);
}
.meta-line span {
  position: relative;
  padding-left: 18px;
}
.meta-line span::before {
  content: '';
  position: absolute;
  left: 0;
  top: 7px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
}

.mp-section { padding: var(--space-9) 0; }
.mp-section.band {
  background: var(--bg-band);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.section-head {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr);
  gap: var(--space-7);
  align-items: end;
  margin-bottom: var(--space-7);
}
.section-head > p,
.section-copy {
  font-size: var(--body-l);
  line-height: 1.55;
  color: var(--ink-3);
  max-width: 50ch;
}
.section-narrow {
  max-width: 60ch;
  margin: 0 auto;
  text-align: center;
}
.section-narrow .section-copy { margin: var(--space-5) auto 0; }

.muted { color: var(--muted); }
.mobile-only { display: none; }

.show-card {
  background: var(--bg-elev);
  border: 1px solid var(--line);
  border-radius: var(--r-xl);
  padding: var(--space-5);
  box-shadow: var(--shadow-2);
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
  position: relative;
  transition: transform .25s ease, box-shadow .25s ease;
}
.show-card:hover { transform: translateY(-2px); box-shadow: var(--shadow-3); }
.helper-tab { display: none; }

.show-card__head {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: var(--space-4);
}
.show-card h3 {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 440;
  font-variation-settings: 'opsz' 24, 'SOFT' 40;
  letter-spacing: -0.008em;
  color: var(--ink);
}
.show-card .edition {
  margin-top: 4px;
  font-size: var(--body-s);
  color: var(--muted);
}
.show-card .stamp {
  font-family: var(--font-text);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-3);
  padding: 4px 8px;
  border: 1px solid var(--line-strong);
  border-radius: var(--r-full);
  background: var(--bg);
  white-space: nowrap;
}

.show-preview {
  position: relative;
  aspect-ratio: 5 / 3;
  border-radius: var(--r-lg);
  background: var(--bg);
  border: 1px solid var(--line);
  overflow: hidden;
}
.change-label {
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 4;
  font-family: var(--font-text);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent-ink);
  background: var(--bg-elev);
  padding: 4px 8px;
  border-radius: var(--r-full);
  border: 1px solid var(--accent-soft);
}
.change-pin {
  position: absolute;
  bottom: 22%;
  right: 22%;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 6px color-mix(in srgb, var(--accent) 22%, transparent);
  z-index: 4;
}

.decision-row {
  display: flex;
  gap: var(--space-2);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--muted);
}
.decision-row span {
  padding: 6px 12px;
  border: 1px solid var(--line);
  border-radius: var(--r-full);
  background: var(--bg);
}
.decision-row .is-active {
  background: var(--ink);
  color: var(--bg-elev);
  border-color: var(--ink);
}

.preview-game,
.preview-movie,
.preview-story,
.preview-site {
  background: linear-gradient(180deg, #f4efe2 0%, #fbf8f3 100%);
}
.preview-movie { background: linear-gradient(180deg, #2a2820 0%, #15140f 100%); }

.preview-game .hill {
  position: absolute;
  bottom: 0;
  width: 60%;
  height: 50%;
  background: color-mix(in srgb, var(--ink) 8%, transparent);
  border-radius: 50% 50% 0 0 / 100% 100% 0 0;
}
.preview-game .hill.one { left: -10%; }
.preview-game .hill.two { right: -10%; opacity: 0.6; }
.preview-game .bridge {
  position: absolute; bottom: 36%; left: 28%; right: 28%;
  height: 6px; background: var(--ink-2); border-radius: 3px;
}
.preview-game .kid-piece {
  position: absolute; bottom: 38%; left: 32%;
  width: 14px; height: 14px; border-radius: 50%; background: var(--accent);
}
.preview-game .goal {
  position: absolute; bottom: 38%; right: 26%;
  width: 14px; height: 14px; background: var(--ink);
  clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
}
.preview-game .coin {
  position: absolute; width: 8px; height: 8px;
  border-radius: 50%; background: var(--accent); opacity: 0.7;
}
.preview-game .coin.one { bottom: 50%; left: 42%; }
.preview-game .coin.two { bottom: 50%; left: 56%; }

.preview-movie .frame-row {
  position: absolute; top: 22%; left: 12%; right: 12%;
  display: flex; gap: 6px; justify-content: space-between;
}
.preview-movie .frame-row i {
  flex: 1; height: 36px;
  background: color-mix(in srgb, white 16%, transparent);
  border-radius: 4px; display: block;
}
.preview-movie .timeline {
  position: absolute; bottom: 28%; left: 12%; right: 12%;
  height: 4px;
  background: color-mix(in srgb, white 20%, transparent);
  border-radius: 2px;
}
.preview-movie .play-dot {
  position: absolute; bottom: 26%; left: 38%;
  width: 10px; height: 10px; background: var(--accent); border-radius: 50%;
}
.preview-movie .cut-marker {
  position: absolute; bottom: 24%; left: 64%;
  width: 2px; height: 12px;
  background: color-mix(in srgb, white 65%, transparent);
}

.preview-story .story-page {
  position: absolute; top: 18%; left: 12%; width: 38%; bottom: 18%;
  background: var(--bg-elev); border: 1px solid var(--line);
  border-radius: 6px; padding: 10px;
}
.preview-story .story-lines {
  display: block; width: 100%; height: 100%;
  background: linear-gradient(var(--line) 1px, transparent 1px) 0 6px / 100% 10px;
  opacity: .7;
}
.preview-story .branch {
  position: absolute; top: 26%; right: 14%; width: 30%; bottom: 26%;
}
.preview-story .branch::before {
  content: ''; position: absolute;
  left: 8px; top: 12px; bottom: 12px;
  width: 1px; background: var(--line-strong);
}
.preview-story .node {
  position: absolute; left: 4px;
  width: 9px; height: 9px;
  border-radius: 50%; background: var(--ink);
}
.preview-story .node.a { top: 6px; background: var(--accent); }
.preview-story .node.b { top: 50%; transform: translateY(-50%); }
.preview-story .node.c { bottom: 6px; }

.preview-site .site-window {
  position: absolute; top: 14%; left: 12%; right: 22%; bottom: 14%;
  background: var(--bg-elev); border: 1px solid var(--line);
  border-radius: 6px; padding: 10px;
  display: flex; flex-direction: column; gap: 8px;
}
.preview-site .site-title {
  display: block; width: 45%; height: 6px;
  background: var(--ink); border-radius: 3px;
}
.preview-site .site-lines {
  display: block; width: 80%; height: 5px;
  background: var(--line-strong); border-radius: 2px;
}
.preview-site .site-hero-img {
  display: block; width: 100%; height: 36%;
  background: color-mix(in srgb, var(--accent) 18%, var(--bg));
  border-radius: 4px;
}
.preview-site .site-card-row {
  display: block; width: 100%; height: 18%;
  background: var(--bg-band); border-radius: 4px;
  border: 1px solid var(--line);
}
.preview-site .phone-preview {
  position: absolute; right: 8%; top: 22%; bottom: 22%; width: 16%;
  background: var(--bg-elev); border: 1px solid var(--line-strong);
  border-radius: 8px;
}

.gallery-wall {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-4);
}
.gallery-wall > :nth-child(1) { grid-column: 1 / -1; }

.maker-loop-panel {
  background: var(--bg-elev);
  border: 1px solid var(--line);
  border-radius: var(--r-xl);
  padding: var(--space-6);
  box-shadow: var(--shadow-2);
}
.loop-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-4);
  counter-reset: loop-counter;
}
.loop-step {
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
  padding: var(--space-4) var(--space-3);
  border-radius: var(--r-lg);
  position: relative;
  counter-increment: loop-counter;
}
.loop-step b {
  font-family: var(--font-display);
  font-weight: 440;
  font-size: 17px;
  font-variation-settings: 'opsz' 20;
  color: var(--ink);
  letter-spacing: -0.005em;
}
.loop-step span {
  font-size: var(--body-s);
  color: var(--muted);
  line-height: 1.4;
}
.loop-step::before {
  content: counter(loop-counter, decimal-leading-zero);
  position: absolute;
  top: var(--space-3);
  right: var(--space-3);
  font-family: var(--font-text);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: var(--muted-strong);
}
.loop-step:not(:last-child)::after {
  content: '';
  position: absolute;
  top: 50%;
  right: -22px;
  width: 14px;
  height: 1px;
  background: var(--line-strong);
}

.split-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.1fr);
  gap: var(--space-8);
  align-items: center;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-5);
}
.price-card {
  background: var(--bg-elev);
  border: 1px solid var(--line);
  border-radius: var(--r-xl);
  padding: var(--space-6);
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
  position: relative;
  transition: border-color .2s ease, box-shadow .2s ease;
}
.price-card:hover { border-color: var(--line-strong); box-shadow: var(--shadow-2); }
.price-card.featured {
  border: 1px solid var(--ink);
  background: var(--ink);
  color: var(--bg);
}
.price-card.featured h3,
.price-card.featured .price { color: var(--bg); }
.price-card.featured .plan { color: var(--accent-soft); }
.price-card.featured p { color: color-mix(in srgb, var(--bg) 78%, transparent); }
.price-card.featured .plain-list li { color: color-mix(in srgb, var(--bg) 84%, transparent); }
.price-card.featured .plain-list li::before { background: var(--accent); }
.price-card.featured .btn-secondary {
  background: transparent;
  color: var(--bg);
  border-color: color-mix(in srgb, var(--bg) 30%, transparent);
}
.price-card.featured .btn-secondary:hover { background: var(--bg); color: var(--ink); border-color: var(--bg); }

.price-card .plan {
  font-family: var(--font-text);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent-ink);
}
.price-card h3 {
  font-size: 26px;
  font-variation-settings: 'opsz' 28, 'SOFT' 40;
  letter-spacing: -0.008em;
}
.price-card > p { color: var(--ink-3); font-size: var(--body-m); line-height: 1.55; }
.price {
  font-family: var(--font-display);
  font-size: 56px;
  font-weight: 380;
  font-variation-settings: 'opsz' 60, 'SOFT' 30;
  letter-spacing: -0.02em;
  line-height: 1;
  display: flex;
  align-items: flex-start;
  gap: 4px;
  margin-top: var(--space-2);
}
.price sup {
  font-size: 22px;
  margin-top: 8px;
  font-variation-settings: 'opsz' 24;
  color: var(--muted);
}
.price small,
.price span {
  font-family: var(--font-text);
  font-size: var(--body-s);
  font-weight: 500;
  color: var(--muted);
  letter-spacing: 0;
  align-self: flex-end;
  margin-left: var(--space-2);
  padding-bottom: 8px;
}
.price-card.featured .price small,
.price-card.featured .price span,
.price-card.featured .price sup { color: color-mix(in srgb, var(--bg) 70%, transparent); }

.plain-list {
  list-style: none;
  margin: var(--space-3) 0 var(--space-5);
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
  font-size: var(--body-s);
  color: var(--ink-3);
}
.plain-list li {
  position: relative;
  padding-left: 22px;
  line-height: 1.5;
}
.plain-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 8px;
  width: 12px;
  height: 1px;
  background: var(--ink);
}

.price-card .btn,
.price-card .btn-secondary { margin-top: auto; align-self: flex-start; }

.project-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-4);
}
.show-card.compact h3 { font-size: 19px; }
.show-card.compact .show-preview { aspect-ratio: 4 / 3; }
.card-copy p {
  font-size: var(--body-s);
  color: var(--ink-3);
  line-height: 1.55;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-5);
}
.trust-item {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
  padding: var(--space-5) 0 var(--space-5);
  border-top: 1px solid var(--line-strong);
}
.trust-item .num {
  font-family: var(--font-text);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  color: var(--accent-ink);
}
.trust-item h3 {
  font-size: 19px;
  font-variation-settings: 'opsz' 22, 'SOFT' 40;
  letter-spacing: -0.005em;
  line-height: 1.25;
}
.trust-item p {
  font-size: var(--body-s);
  color: var(--ink-3);
  line-height: 1.55;
}

.info-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-5);
}
.info-card {
  background: var(--bg-elev);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: var(--space-5);
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}
.info-card h3 {
  font-size: 19px;
  font-variation-settings: 'opsz' 22, 'SOFT' 40;
  letter-spacing: -0.005em;
  line-height: 1.25;
}
.info-card p {
  font-size: var(--body-s);
  color: var(--ink-3);
  line-height: 1.55;
}
.info-card .pill {
  align-self: flex-start;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent-ink);
  padding: 4px 10px;
  border-radius: var(--r-full);
  background: var(--accent-soft);
}

.article-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-5);
}
.article-card {
  background: var(--bg-elev);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: var(--space-6);
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}
.article-card h3 {
  font-size: 21px;
  font-variation-settings: 'opsz' 24, 'SOFT' 40;
  letter-spacing: -0.005em;
  line-height: 1.25;
}
.article-card p {
  font-size: var(--body-m);
  color: var(--ink-3);
  line-height: 1.55;
}
.article-card .meta {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
}
.article-card.featured { background: var(--accent-soft); border-color: color-mix(in srgb, var(--accent) 30%, var(--line)); }

.final-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-6);
  padding: var(--space-9) var(--space-7);
  background: var(--ink);
  color: var(--bg);
  border-radius: var(--r-2xl);
}
.final-cta h2 { color: var(--bg); max-width: 18ch; }
.final-cta p { color: color-mix(in srgb, var(--bg) 76%, transparent); font-size: var(--body-l); margin-top: var(--space-3); }
.final-cta .btn {
  background: var(--bg);
  color: var(--ink);
  border-color: var(--bg);
}
.final-cta .btn:hover { background: var(--accent-soft); color: var(--ink); border-color: var(--accent-soft); }
.final-cta .mp-kicker { color: var(--accent-soft); }

.founder-block {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.6fr);
  gap: var(--space-7);
  align-items: start;
  max-width: 900px;
  margin: 0 auto;
}
.founder-card {
  background: var(--bg-elev);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: var(--space-5);
  text-align: center;
}
.founder-card .name {
  font-family: var(--font-display);
  font-size: 20px;
  font-variation-settings: 'opsz' 24, 'SOFT' 40;
  margin-bottom: 4px;
}
.founder-card .role {
  font-size: var(--body-s);
  color: var(--muted);
}
.founder-monogram {
  width: 64px;
  height: 64px;
  margin: 0 auto var(--space-4);
  background: var(--accent-soft);
  border-radius: 50%;
  color: var(--accent-ink);
  font-family: var(--font-display);
  font-size: 24px;
  font-variation-settings: 'opsz' 30, 'SOFT' 30;
  display: flex;
  align-items: center;
  justify-content: center;
}
.founder-quote {
  font-family: var(--font-display);
  font-size: clamp(20px, 2.2vw, 26px);
  font-weight: 380;
  font-variation-settings: 'opsz' 28, 'SOFT' 40;
  letter-spacing: -0.008em;
  line-height: 1.4;
  color: var(--ink);
  margin-bottom: var(--space-4);
}
.founder-quote::before {
  content: '';
  display: block;
  width: 32px;
  height: 1px;
  background: var(--accent);
  margin-bottom: var(--space-4);
}
.founder-attribution {
  font-size: var(--body-s);
  color: var(--muted);
}
.founder-attribution strong { color: var(--ink); font-weight: 600; }

.support-callout {
  background: var(--bg-elev);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: var(--space-7);
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
  align-items: flex-start;
  max-width: 640px;
  margin: 0 auto;
}
.support-callout h3 {
  font-size: 24px;
  font-variation-settings: 'opsz' 28, 'SOFT' 40;
  letter-spacing: -0.008em;
}

.cohort-band {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: var(--space-6);
  align-items: center;
}
.cohort-band h2 { font-size: var(--display-m); }

.upgrade-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.6fr) minmax(0, 1fr);
  gap: var(--space-5);
  margin-bottom: var(--space-6);
}
.upgrade-box {
  background: var(--bg-elev);
  border: 1px solid var(--line);
  border-radius: var(--r-xl);
  padding: var(--space-6);
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}
.upgrade-box .plan {
  font-family: var(--font-text);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent-ink);
}
.upgrade-box h2 { font-size: var(--display-m); }
.upgrade-box p { color: var(--ink-3); font-size: var(--body-l); max-width: 50ch; }
.upgrade-price {
  background: var(--accent-soft);
  border: 1px solid color-mix(in srgb, var(--accent) 25%, var(--line));
  border-radius: var(--r-xl);
  padding: var(--space-6);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.upgrade-price .price { color: var(--accent-ink); }
.upgrade-price .price sup,
.upgrade-price .price small,
.upgrade-price .price span { color: var(--accent-ink); }

.track-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-3);
}
.track-card {
  background: var(--bg-elev);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: var(--space-4);
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
  text-align: left;
  cursor: pointer;
  transition: border-color .15s ease, transform .15s ease, box-shadow .15s ease;
}
.track-card:hover { border-color: var(--ink); transform: translateY(-1px); box-shadow: var(--shadow-1); }
.track-card[aria-current="true"] { border-color: var(--ink); background: var(--ink); color: var(--bg); }
.track-card[aria-current="true"] .mini-stamp { border-color: color-mix(in srgb, var(--bg) 40%, transparent); color: color-mix(in srgb, var(--bg) 80%, transparent); }
.track-card strong {
  font-family: var(--font-display);
  font-weight: 440;
  font-size: 19px;
  font-variation-settings: 'opsz' 22, 'SOFT' 40;
  letter-spacing: -0.005em;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.track-card span {
  font-size: var(--body-s);
  color: var(--muted);
  font-family: var(--font-text);
}
.track-card[aria-current="true"] span { color: color-mix(in srgb, var(--bg) 70%, transparent); }
.mini-stamp {
  font-family: var(--font-text);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  padding: 3px 6px;
  border: 1px solid var(--line-strong);
  border-radius: var(--r-full);
}

.waitlist-form {
  background: var(--bg-elev);
  border: 1px solid var(--line);
  border-radius: var(--r-xl);
  padding: var(--space-7);
  max-width: 640px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
}
.waitlist-form label {
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
  font-size: var(--body-s);
  font-weight: 500;
  color: var(--ink-2);
}
.waitlist-form input[type="email"],
.waitlist-form textarea {
  font-family: var(--font-text);
  font-size: var(--body-m);
  color: var(--ink);
  background: var(--bg);
  padding: 12px 14px;
  border: 1px solid var(--line-strong);
  border-radius: var(--r-md);
  transition: border-color .15s ease, box-shadow .15s ease;
}
.waitlist-form input[type="email"]:focus,
.waitlist-form textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px var(--accent-soft);
}
.waitlist-form textarea { resize: vertical; min-height: 80px; }
.radio-row {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-3);
}
.radio-row label {
  flex-direction: row;
  align-items: center;
  font-weight: 500;
  cursor: pointer;
  padding: 6px 12px;
  border: 1px solid var(--line);
  border-radius: var(--r-full);
  background: var(--bg);
  transition: border-color .15s ease;
}
.radio-row label:hover { border-color: var(--ink); }
.radio-row input[type="radio"] {
  margin: 0;
  accent-color: var(--accent);
}
.waitlist-status {
  font-size: var(--body-s);
  color: var(--success);
  margin: 0;
  padding: var(--space-3) var(--space-4);
  background: color-mix(in srgb, var(--success) 8%, transparent);
  border-radius: var(--r-md);
}
.hp-field {
  position: absolute;
  left: -9999px;
  opacity: 0;
  pointer-events: none;
}

.mp-footer {
  padding: var(--space-8) 0 var(--space-7);
  border-top: 1px solid var(--line);
  background: var(--bg);
}
.mp-footer .mp-shell {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 2fr) minmax(0, 1fr);
  gap: var(--space-7);
  align-items: start;
}
.mp-footer .footer-brand {
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
}
.mp-footer .footer-brand .wordmark {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 460;
  font-variation-settings: 'opsz' 28, 'SOFT' 30;
  letter-spacing: -0.01em;
  color: var(--ink);
}
.mp-footer .footer-brand .wordmark em {
  color: var(--accent);
  font-style: italic;
  font-variation-settings: 'opsz' 28, 'SOFT' 80;
}
.mp-footer .footer-brand .tagline {
  font-size: var(--body-s);
  color: var(--muted);
  max-width: 28ch;
}
.mp-footer .footer-links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-5);
  font-size: var(--body-s);
}
.mp-footer .footer-links h4 {
  font-family: var(--font-text);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  margin: 0 0 var(--space-3);
}
.mp-footer .footer-links ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
}
.mp-footer .footer-links a {
  color: var(--ink-2);
  font-weight: 500;
}
.mp-footer .footer-links a:hover { color: var(--accent-ink); }
.mp-footer .footer-meta {
  font-size: var(--body-s);
  color: var(--muted);
  line-height: 1.6;
}

.software-signup-shell { padding: var(--space-6) 0 0; }
.software-signup-shell[hidden] { display: none; }
.software-signup-notice {
  border: 1px solid var(--line);
  border-left: 4px solid var(--accent);
  border-radius: var(--r-lg);
  background: var(--bg-elev);
  box-shadow: var(--shadow-2);
  display: grid;
  gap: var(--space-4);
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  padding: var(--space-5) var(--space-6);
}
.software-signup-notice[data-state="expired"] { border-left-color: var(--warning); }
.software-signup-notice[data-state="problem"] { border-left-color: var(--muted-strong); }
.software-signup-notice__title {
  color: var(--ink);
  font-family: var(--font-display);
  font-weight: 440;
  font-size: 24px;
  font-variation-settings: 'opsz' 28, 'SOFT' 40;
  letter-spacing: -0.008em;
  margin: 0 0 var(--space-2);
}
.software-signup-notice__copy,
.software-signup-notice__status {
  color: var(--ink-3);
  font-size: var(--body-m);
  line-height: 1.5;
  margin: 0;
  max-width: 60ch;
}
.software-signup-notice__status {
  color: var(--success);
  font-size: var(--body-s);
  margin-top: var(--space-2);
}
.software-signup-notice__actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-3);
  justify-content: flex-end;
}

.prose {
  max-width: 720px;
  margin: 0 auto;
}
.prose h2 {
  font-size: var(--display-s);
  margin-top: var(--space-8);
  margin-bottom: var(--space-4);
  font-variation-settings: 'opsz' 28, 'SOFT' 40;
  letter-spacing: -0.005em;
}
.prose h2:first-of-type { margin-top: 0; }
.prose h3 {
  font-size: 20px;
  font-variation-settings: 'opsz' 24, 'SOFT' 40;
  margin-top: var(--space-6);
  margin-bottom: var(--space-3);
}
.prose p,
.prose ul {
  font-size: var(--body-m);
  color: var(--ink-2);
  line-height: 1.7;
  margin-bottom: var(--space-4);
}
.prose ul {
  padding-left: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}
.prose ul li {
  position: relative;
  padding-left: 22px;
}
.prose ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 12px;
  width: 12px;
  height: 1px;
  background: var(--accent);
}
.prose a {
  color: var(--accent-ink);
  border-bottom: 1px solid var(--accent-soft);
}
.prose a:hover { color: var(--accent); border-bottom-color: var(--accent); }
.prose .updated {
  font-size: var(--body-s);
  color: var(--muted);
  margin-bottom: var(--space-7);
  padding-bottom: var(--space-5);
  border-bottom: 1px solid var(--line);
}

.token-page { background: var(--bg); }
.token-page main {
  max-width: 640px;
  margin: 0 auto;
  padding: var(--space-9) var(--space-6);
}
.token-page #title {
  font-family: var(--font-display);
  font-size: var(--display-m);
  font-weight: 380;
  font-variation-settings: 'opsz' 36, 'SOFT' 30;
  letter-spacing: -0.012em;
  line-height: 1.1;
  margin: 0 0 var(--space-4);
}
.token-page #message {
  font-size: var(--body-l);
  color: var(--ink-3);
  line-height: 1.55;
  margin-bottom: var(--space-5);
}
.token-page .token-box {
  background: var(--bg-elev);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: var(--space-5);
  margin-bottom: var(--space-5);
}
.token-page .token-box code {
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 13px;
  word-break: break-all;
  color: var(--ink);
  line-height: 1.5;
}
.token-page .actions {
  display: flex;
  gap: var(--space-3);
  flex-wrap: wrap;
  margin-bottom: var(--space-5);
}
.token-page .help-muted,
.token-page .muted {
  font-size: var(--body-s);
  color: var(--muted);
  line-height: 1.55;
}

@media (max-width: 980px) {
  .mp-hero-grid,
  .section-head,
  .split-grid,
  .pricing-grid,
  .project-grid,
  .trust-grid,
  .info-grid,
  .article-grid,
  .loop-grid,
  .gallery-wall,
  .upgrade-layout,
  .track-grid,
  .founder-block,
  .cohort-band {
    grid-template-columns: 1fr;
    gap: var(--space-6);
  }
  .loop-step:not(:last-child)::after { display: none; }
  .gallery-wall > :nth-child(1) { grid-column: auto; }
  .final-cta { flex-direction: column; align-items: flex-start; }
  .mp-footer .mp-shell { grid-template-columns: 1fr; }
}

/* Tablet + mobile band — hide the inline link list and surface the
   hamburger menu instead. Matches the breakpoint that the v2 marketing
   nav uses, so the two surfaces feel consistent. */
@media (max-width: 1023px) {
  .mp-links a:not(.btn) { display: none; }
  .mp-nav .nav-hamburger { display: inline-flex !important; }
}

@media (max-width: 760px) {
  .mp-shell { padding: 0 var(--space-5); }
  .mp-hero { padding: var(--space-7) 0 var(--space-7); }
  .mp-section { padding: var(--space-7) 0; }
  .mp-links { gap: var(--space-3); }
  .pricing-grid,
  .project-grid,
  .trust-grid,
  .info-grid,
  .article-grid,
  .loop-grid,
  .track-grid { grid-template-columns: 1fr; }
  .mobile-only { display: inline; }
  .mp-footer .footer-links { grid-template-columns: 1fr; }
  .final-cta { padding: var(--space-7) var(--space-5); }
}

/* ─────────────────────────────────────────────────────────── */
/* hamburger menu — injected by site-base-v2.js                */
/* ─────────────────────────────────────────────────────────── */

.mp-nav .nav-hamburger {
  display: none;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line-strong);
  background: var(--bg-elev);
  border-radius: var(--r-md);
  flex-shrink: 0;
  cursor: pointer;
  padding: 0;
  margin-left: var(--space-3);
}
.mp-nav .nav-hamburger:hover,
.mp-nav .nav-hamburger:focus-visible {
  border-color: var(--accent);
  outline: 0;
}
.mp-nav .nav-hamburger svg { width: 20px; height: 20px; color: var(--ink); display: block; }

.nav-menu {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: var(--bg, #FBF8F3);
  display: flex;
  flex-direction: column;
  opacity: 0;
  pointer-events: none;
  transition: opacity 220ms ease;
}
.nav-menu.is-open { opacity: 1; pointer-events: auto; }
.nav-menu .nav-menu-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 22px;
  border-bottom: 1px solid var(--line);
  min-height: 68px;
}
.nav-menu .nav-menu-head .wordmark {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 460;
  letter-spacing: -0.01em;
  color: var(--ink);
}
.nav-menu .nav-menu-head .wordmark img { display: none; }
.nav-menu .nav-menu-close {
  width: 44px;
  height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--bg-elev);
  border: 1px solid var(--line-strong);
  border-radius: var(--r-md);
  cursor: pointer;
  padding: 0;
}
.nav-menu .nav-menu-close svg { width: 18px; height: 18px; color: var(--ink); display: block; }
.nav-menu .nav-menu-list {
  list-style: none;
  margin: 0;
  padding: 16px 22px 24px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  overflow-y: auto;
  flex: 1;
}
.nav-menu .nav-menu-list a {
  display: flex;
  align-items: center;
  min-height: 56px;
  padding: 0 8px;
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 460;
  color: var(--ink);
  letter-spacing: -.005em;
  text-decoration: none;
  border-bottom: 1px solid var(--line);
}
.nav-menu .nav-menu-list a:hover,
.nav-menu .nav-menu-list a:focus-visible { color: var(--accent); outline: 0; }
.nav-menu .nav-menu-foot {
  padding: 16px 22px 28px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  border-top: 1px solid var(--line);
}
.nav-menu .nav-menu-foot .nav-menu-cta {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--ink);
  color: var(--bg-elev);
  border-radius: var(--r-md);
  font-family: var(--font-text);
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
}
html.menu-open, body.menu-open { overflow: hidden; }

/* ─────────────────────────────────────────────────────────── */
/* trust strip (under hero)                                     */
/* ─────────────────────────────────────────────────────────── */

.trust-strip {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) repeat(3, 1fr);
  gap: var(--space-6);
  padding: var(--space-6);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--bg-elev);
  border-radius: var(--r-xl);
  box-shadow: var(--shadow-1);
  margin-top: var(--space-6);
}
.trust-quote {
  font-family: var(--font-display);
  font-size: 17px;
  font-variation-settings: 'opsz' 20, 'SOFT' 40;
  line-height: 1.4;
  color: var(--ink-2);
  font-style: italic;
}
.trust-quote small {
  display: block;
  margin-top: var(--space-2);
  font-size: 11px;
  font-style: normal;
  color: var(--muted);
  font-family: var(--font-text);
  letter-spacing: 0.04em;
}
.trust-stat {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding-left: var(--space-5);
  border-left: 1px solid var(--line);
}
.trust-stat b {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 400;
  font-variation-settings: 'opsz' 32, 'SOFT' 40;
  letter-spacing: -0.01em;
  color: var(--ink);
  line-height: 1;
}
.trust-stat b.accent { color: var(--accent); font-style: italic; font-variation-settings: 'opsz' 32, 'SOFT' 80; }
.trust-stat small {
  font-size: var(--body-s);
  color: var(--muted);
  line-height: 1.4;
}

/* ─────────────────────────────────────────────────────────── */
/* hero artifact — browser-chrome frame around a real image     */
/* ─────────────────────────────────────────────────────────── */

.browser-frame {
  background: var(--bg-elev);
  border: 1px solid var(--line);
  border-radius: var(--r-xl);
  box-shadow: var(--shadow-3);
  overflow: hidden;
  display: block;
  text-decoration: none;
  color: inherit;
  transition: transform .25s ease, box-shadow .25s ease;
  position: relative;
}
.browser-frame:hover { transform: translateY(-3px); box-shadow: var(--shadow-3); }
.browser-frame .show-tab {
  position: absolute;
  top: -12px;
  right: 24px;
  z-index: 3;
  font-family: var(--font-text);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--bg);
  background: var(--accent);
  padding: 6px 12px;
  border-radius: var(--r-full);
  box-shadow: var(--shadow-2);
}
.browser-chrome {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  padding: 10px 14px;
  background: var(--bg);
  border-bottom: 1px solid var(--line);
}
.traffic-lights {
  display: flex;
  gap: 6px;
}
.traffic-lights span {
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: var(--line-strong);
}
.traffic-lights span:nth-child(1) { background: #e0826a; }
.traffic-lights span:nth-child(2) { background: #e3c178; }
.traffic-lights span:nth-child(3) { background: #8aaf83; }
.url-bar {
  flex: 1;
  background: var(--bg-elev);
  border: 1px solid var(--line);
  border-radius: var(--r-full);
  padding: 5px 12px;
  display: flex;
  align-items: center;
  gap: 6px;
  font-family: ui-monospace, monospace;
  font-size: 11px;
  color: var(--ink-3);
}
.url-bar .lock { color: var(--muted-strong); display: inline-flex; }
.url-bar .lock svg { width: 11px; height: 11px; }
.url-bar .host { color: var(--ink); font-weight: 600; }
.url-bar .path { color: var(--muted); }
.browser-chrome-right { font-size: 11px; color: var(--muted); font-family: var(--font-text); }
.browser-frame .screen-wrap {
  position: relative;
  overflow: hidden;
}
.browser-frame .screen {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}
.browser-frame .play-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  background: linear-gradient(180deg, transparent 60%, color-mix(in srgb, var(--ink) 40%, transparent) 100%);
}
.browser-frame .play-btn {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: color-mix(in srgb, var(--bg-elev) 92%, transparent);
  box-shadow: var(--shadow-3);
  position: relative;
}
.browser-frame .play-btn::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 54%;
  transform: translate(-50%, -50%);
  border-left: 18px solid var(--ink);
  border-top: 11px solid transparent;
  border-bottom: 11px solid transparent;
}
.browser-frame .caption {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--space-4);
  padding: var(--space-4) var(--space-5);
  border-top: 1px solid var(--line);
  font-size: var(--body-s);
  color: var(--ink-3);
}
.browser-frame .caption strong { color: var(--ink); font-weight: 600; }
.browser-frame .caption em { font-style: italic; color: var(--muted); }
.browser-frame .stamps {
  display: flex;
  gap: 4px;
}
.browser-frame .stamps a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: var(--accent-soft);
  color: var(--accent-ink);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 13px;
  font-variation-settings: 'opsz' 16;
  text-decoration: none;
  border: 1px solid transparent;
  transition: background .15s ease, color .15s ease;
}
.browser-frame .stamps a:hover { background: var(--accent); color: var(--bg); }

/* live pill */
.live-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--success);
  padding: 4px 10px;
  border-radius: var(--r-full);
  background: color-mix(in srgb, var(--success) 12%, transparent);
  border: 1px solid color-mix(in srgb, var(--success) 30%, transparent);
}
.live-pill::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--success);
}

/* ─────────────────────────────────────────────────────────── */
/* real kid reel                                                */
/* ─────────────────────────────────────────────────────────── */

.reel-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-5);
}
.gamecard {
  background: var(--bg-elev);
  border: 1px solid var(--line);
  border-radius: var(--r-xl);
  overflow: hidden;
  box-shadow: var(--shadow-2);
  display: flex;
  flex-direction: column;
  transition: transform .25s ease, box-shadow .25s ease;
}
.gamecard:hover { transform: translateY(-3px); box-shadow: var(--shadow-3); }
.gamecard-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: var(--space-3);
  padding: var(--space-4) var(--space-5) var(--space-3);
}
.gamecard-head h3 {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 440;
  font-variation-settings: 'opsz' 24, 'SOFT' 40;
  letter-spacing: -0.008em;
}
.gamecard-head .sub {
  font-size: var(--body-s);
  color: var(--muted);
  margin-top: 2px;
}
.gamecard-head .stamp {
  font-family: var(--font-text);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-3);
  padding: 4px 8px;
  border: 1px solid var(--line-strong);
  border-radius: var(--r-full);
  background: var(--bg);
}
.gamecard-art {
  position: relative;
  display: block;
  overflow: hidden;
  text-decoration: none;
}
.gamecard-art img {
  width: 100%;
  display: block;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  transition: transform .4s ease;
}
.gamecard-art:hover img { transform: scale(1.02); }
.gamecard-tally {
  position: absolute;
  bottom: 12px;
  left: 12px;
  right: 12px;
  display: flex;
  gap: var(--space-2);
  flex-wrap: wrap;
  font-family: var(--font-text);
  font-size: 11px;
  font-weight: 500;
}
.gamecard-tally span {
  background: color-mix(in srgb, var(--ink) 78%, transparent);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  color: var(--bg);
  padding: 4px 10px;
  border-radius: var(--r-full);
  border: 1px solid color-mix(in srgb, var(--bg) 18%, transparent);
}
.gamecard-tally b { font-weight: 700; color: var(--bg); }
.gamecard-tally .kept b { color: #9adda6; }
.gamecard-tally .undone b { color: #f0a585; }

.gamecard-body {
  padding: var(--space-4) var(--space-5) var(--space-5);
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}
.gamecard-tag {
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 400;
  font-variation-settings: 'opsz' 20, 'SOFT' 50;
  line-height: 1.35;
  color: var(--ink);
  font-style: italic;
}
.gamecard-detail p {
  font-size: var(--body-s);
  color: var(--ink-3);
  line-height: 1.55;
}
.gamecard-play {
  align-self: flex-start;
  font-size: var(--body-s);
  font-weight: 600;
  color: var(--accent-ink);
  text-decoration: none;
  padding-bottom: 1px;
  border-bottom: 1px solid var(--accent-soft);
}
.gamecard-play:hover { color: var(--accent); border-bottom-color: var(--accent); }
.gamecard-play::after { content: ' →'; }

.reel-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--space-4);
  margin-top: var(--space-6);
  padding-top: var(--space-5);
  border-top: 1px solid var(--line);
  font-size: var(--body-s);
  flex-wrap: wrap;
}
.reel-footer .live {
  font-family: ui-monospace, monospace;
  color: var(--muted);
  font-size: 12px;
}

/* ─────────────────────────────────────────────────────────── */
/* counter-positioning                                          */
/* ─────────────────────────────────────────────────────────── */

.counter-layout {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-5);
}
.counter-panel {
  border-radius: var(--r-xl);
  padding: var(--space-6);
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
}
.counter-panel.slop {
  background: var(--bg-band);
  border: 1px dashed var(--line-strong);
}
.counter-panel.tns {
  background: var(--ink);
  color: var(--bg);
  border: 1px solid var(--ink);
}
.counter-panel-label {
  font-family: var(--font-text);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
}
.counter-panel.tns .counter-panel-label { color: var(--accent-soft); }
.counter-panel h3 {
  font-size: 22px;
  font-variation-settings: 'opsz' 26, 'SOFT' 40;
  letter-spacing: -0.008em;
  line-height: 1.25;
}
.counter-panel.tns h3 { color: var(--bg); }
.counter-panel .lede {
  font-size: var(--body-m);
  color: var(--ink-3);
  line-height: 1.55;
}
.counter-panel.tns .lede { color: color-mix(in srgb, var(--bg) 76%, transparent); }
.slop-output {
  font-family: ui-monospace, monospace;
  font-size: 13px;
  line-height: 1.6;
  color: var(--ink-3);
  background: var(--bg-elev);
  border-radius: var(--r-md);
  padding: var(--space-4);
  border: 1px solid var(--line);
}
.slop-output strong {
  display: block;
  margin-bottom: var(--space-3);
  color: var(--ink-3);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-family: var(--font-text);
}
.slop-output em {
  display: block;
  margin-top: var(--space-3);
  color: var(--muted-strong);
  font-size: 12px;
  font-style: italic;
}
.tns-output {
  background: color-mix(in srgb, var(--bg) 8%, transparent);
  border: 1px solid color-mix(in srgb, var(--bg) 12%, transparent);
  border-radius: var(--r-md);
  padding: var(--space-4);
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}
.tns-prompt {
  display: flex;
  gap: 8px;
  font-size: var(--body-s);
}
.tns-prompt .speaker {
  font-weight: 700;
  color: var(--accent-soft);
  font-family: var(--font-text);
}
.tns-options {
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
}
.tns-option {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  padding: 8px 12px;
  border-radius: var(--r-md);
  background: color-mix(in srgb, var(--bg) 6%, transparent);
  font-size: var(--body-s);
  color: color-mix(in srgb, var(--bg) 78%, transparent);
}
.tns-option.picked {
  background: color-mix(in srgb, var(--accent) 36%, transparent);
  color: var(--bg);
}
.tns-option .check {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  border: 1px solid color-mix(in srgb, var(--bg) 30%, transparent);
  flex-shrink: 0;
}
.tns-option.picked .check {
  background: var(--accent);
  border-color: var(--accent);
}
.tns-decision-row {
  display: flex;
  gap: 6px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.tns-decision-row span {
  padding: 5px 10px;
  border-radius: var(--r-full);
  border: 1px solid color-mix(in srgb, var(--bg) 22%, transparent);
  color: color-mix(in srgb, var(--bg) 70%, transparent);
}
.tns-decision-row .is-active {
  background: var(--bg);
  color: var(--ink);
  border-color: var(--bg);
}

/* ─────────────────────────────────────────────────────────── */
/* age segmentation                                             */
/* ─────────────────────────────────────────────────────────── */

.age-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-5);
}
.age-card {
  background: var(--bg-elev);
  border: 1px solid var(--line);
  border-radius: var(--r-xl);
  padding: var(--space-6);
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}
.age-card .range {
  font-family: var(--font-display);
  font-size: 52px;
  font-weight: 380;
  font-variation-settings: 'opsz' 60, 'SOFT' 50;
  letter-spacing: -0.02em;
  line-height: 1;
  color: var(--accent);
  font-style: italic;
}
.age-card .role {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-3);
}
.age-card h4 {
  font-size: 20px;
  font-variation-settings: 'opsz' 22, 'SOFT' 40;
  letter-spacing: -0.005em;
  line-height: 1.25;
}
.age-card p {
  font-size: var(--body-s);
  color: var(--ink-3);
  line-height: 1.55;
}
.age-card ul {
  list-style: none;
  padding: 0;
  margin: var(--space-2) 0 0;
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
  font-size: var(--body-s);
  color: var(--muted);
}
.age-card li {
  position: relative;
  padding-left: 18px;
}
.age-card li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 10px;
  width: 8px;
  height: 1px;
  background: var(--accent);
}

/* ─────────────────────────────────────────────────────────── */
/* 14-day promise                                               */
/* ─────────────────────────────────────────────────────────── */

.promise-section {
  padding: var(--space-9) 0;
  background: var(--accent-soft);
  border-top: 1px solid color-mix(in srgb, var(--accent) 22%, transparent);
  border-bottom: 1px solid color-mix(in srgb, var(--accent) 22%, transparent);
}
.promise-inner {
  max-width: 880px;
  margin: 0 auto;
  text-align: center;
  padding: 0 var(--space-6);
}
.promise-inner .mp-kicker { color: var(--accent-ink); }
.promise-inner h2 {
  font-size: clamp(34px, 4.4vw, 52px);
  font-variation-settings: 'opsz' 48, 'SOFT' 40;
  letter-spacing: -0.014em;
  color: var(--ink);
  margin-bottom: var(--space-4);
  line-height: 1.1;
}
.promise-inner p {
  font-size: var(--body-l);
  color: var(--ink-2);
  max-width: 56ch;
  margin: 0 auto;
}

/* ─────────────────────────────────────────────────────────── */
/* FAQ                                                          */
/* ─────────────────────────────────────────────────────────── */

.faq-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-4);
  max-width: 1000px;
  margin: 0 auto;
}
.faq-item {
  background: var(--bg-elev);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: var(--space-5);
  transition: border-color .15s ease, box-shadow .15s ease;
}
.faq-item:hover { border-color: var(--line-strong); }
.faq-item[open] { border-color: var(--line-strong); box-shadow: var(--shadow-1); }
.faq-item summary {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 440;
  font-variation-settings: 'opsz' 22, 'SOFT' 40;
  letter-spacing: -0.005em;
  color: var(--ink);
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: var(--space-3);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+';
  font-family: var(--font-text);
  font-weight: 400;
  font-size: 22px;
  color: var(--accent);
  line-height: 1;
  flex-shrink: 0;
}
.faq-item[open] summary::after { content: '−'; }
.faq-item p {
  margin-top: var(--space-3);
  font-size: var(--body-m);
  color: var(--ink-3);
  line-height: 1.55;
}

/* ─────────────────────────────────────────────────────────── */
/* manga easter egg                                             */
/* ─────────────────────────────────────────────────────────── */

.easter-section {
  padding: var(--space-7) 0;
  background: var(--ink);
  color: var(--bg);
}
.easter-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-5);
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 var(--space-6);
  flex-wrap: wrap;
}
.easter-inner h2 {
  font-size: clamp(22px, 2.4vw, 30px);
  color: var(--bg);
  font-variation-settings: 'opsz' 30, 'SOFT' 40;
  letter-spacing: -0.008em;
  max-width: 42ch;
  margin: 0;
}
.easter-inner .mp-kicker { color: #FFCB44; margin-bottom: var(--space-3); }
.easter-inner .keyword-yellow {
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-style: normal;
  font-weight: 500;
  color: #FFCB44;
  padding: 2px 10px;
  border-radius: var(--r-md);
  background: color-mix(in srgb, #FFCB44 14%, transparent);
  border: 1px solid color-mix(in srgb, #FFCB44 30%, transparent);
}

/* inline keyword accent */
.keyword {
  font-style: italic;
  color: var(--accent);
  font-variation-settings: 'opsz' 60, 'SOFT' 80;
}

/* responsive overrides for new components */
@media (max-width: 980px) {
  .trust-strip { grid-template-columns: 1fr; }
  .trust-stat { padding-left: 0; border-left: none; border-top: 1px solid var(--line); padding-top: var(--space-3); }
  .reel-grid { grid-template-columns: 1fr; }
  .counter-layout { grid-template-columns: 1fr; }
  .age-grid { grid-template-columns: 1fr; }
  .faq-grid { grid-template-columns: 1fr; }
  .easter-inner { flex-direction: column; align-items: flex-start; }
}
