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

:root {
  --canvas: #EDEFF3;
  --frame: #FFFFFF;
  --ink: #17191F;
  --muted: #666D7C;
  --line: #D9DCE3;
  --blue: #1B5BFF;
  --blue-soft: #EDF2FF;
  --yellow: #FFD43B;
  --pink: #FF5C8A;
  --green: #14B87A;
  --orange: #FF8A00;

  --display: 'Bricolage Grotesque', 'Arial Black', sans-serif;
  --body: 'Instrument Sans', system-ui, sans-serif;
  --hand: 'Shantell Sans', 'Comic Sans MS', cursive;
  --mono: 'Space Mono', 'Courier New', monospace;
}

html { scroll-behavior: smooth; }

body {
  background-color: var(--canvas);
  background-image: radial-gradient(circle, rgba(23,25,31,.14) 1px, transparent 1px);
  background-size: 26px 26px;
  color: var(--ink);
  font-family: var(--body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; }
a:focus-visible, button:focus-visible {
  outline: 3px solid var(--blue);
  outline-offset: 3px;
  border-radius: 4px;
}

::selection { background: var(--blue); color: #fff; }

/* ─── FILE BAR ────────────────────────────── */
.file-bar {
  position: sticky;
  top: 0;
  z-index: 60;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 10px 20px;
  background: var(--frame);
  border-bottom: 1px solid var(--line);
}

.fb-left {
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
}

.fb-dot {
  width: 10px;
  height: 10px;
  border-radius: 3px;
  background: var(--yellow);
  flex-shrink: 0;
}

.fb-name {
  font-family: var(--mono);
  font-size: 12px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.fb-name em {
  font-style: normal;
  color: var(--muted);
}

.fb-unsaved {
  display: inline-block;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--muted);
  margin-left: 6px;
  animation: blink 2.4s infinite;
  vertical-align: middle;
}

@keyframes blink { 0%,100% { opacity: 1; } 50% { opacity: .25; } }

.fb-nav {
  display: flex;
  gap: 22px;
}

.fb-nav a {
  font-family: var(--mono);
  font-size: 11px;
  color: var(--muted);
  text-decoration: none;
  transition: color .15s;
}

.fb-nav a:hover { color: var(--ink); }

.fb-right {
  display: flex;
  align-items: center;
  gap: 12px;
}

.fb-avatars { display: flex; }

.fb-avatar {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  border: 2px solid var(--frame);
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 700;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: -8px;
}

.fb-avatar:first-child { margin-left: 0; }
.fb-avatar.a1 { background: var(--pink); }
.fb-avatar.a2 { background: var(--green); }
.fb-avatar.a3 { background: var(--orange); }

.fb-share {
  font-family: var(--body);
  font-size: 13px;
  font-weight: 600;
  color: #fff;
  background: var(--blue);
  border-radius: 8px;
  padding: 7px 16px;
  text-decoration: none;
  transition: transform .12s, background .15s;
  white-space: nowrap;
}

.fb-share:hover { background: #0E47E8; transform: translateY(-1px); }

/* ─── BOARD ───────────────────────────────── */
.board {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 24px 140px;
}

/* ─── HERO ────────────────────────────────── */
.hero {
  position: relative;
  padding: 96px 0 72px;
  min-height: 88svh;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: var(--frame);
  border: 1px solid var(--line);
  border-radius: 100px;
  padding: 7px 16px 7px 10px;
  font-family: var(--mono);
  font-size: 11px;
  width: fit-content;
  margin-bottom: 36px;
  box-shadow: 0 2px 8px rgba(23,25,31,.06);
}

.hero-badge .live {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 3px rgba(20,184,122,.2);
}

.hero h1 {
  font-family: var(--display);
  font-size: clamp(42px, 7.6vw, 96px);
  font-weight: 800;
  line-height: .98;
  letter-spacing: -.025em;
  max-width: 15ch;
  margin-bottom: 34px;
}

/* selection box around a word */
.sel {
  position: relative;
  display: inline-block;
  color: var(--blue);
  white-space: nowrap;
}

.sel::before {
  content: '';
  position: absolute;
  inset: -2px -10px -6px;
  border: 2px solid var(--blue);
  pointer-events: none;
}

.sel .h {
  position: absolute;
  width: 10px;
  height: 10px;
  background: #fff;
  border: 2px solid var(--blue);
  z-index: 2;
}

.sel .h1 { top: -7px; left: -15px; }
.sel .h2 { top: -7px; right: -15px; }
.sel .h3 { bottom: -11px; left: -15px; }
.sel .h4 { bottom: -11px; right: -15px; }

.sel-name {
  position: absolute;
  top: -30px;
  left: -10px;
  background: var(--blue);
  color: #fff;
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 400;
  letter-spacing: .04em;
  line-height: 1;
  padding: 4px 8px;
  white-space: nowrap;
}

.hero-sub {
  font-size: 19px;
  line-height: 1.6;
  color: var(--muted);
  max-width: 560px;
  margin-bottom: 48px;
}

.hero-sub strong { color: var(--ink); font-weight: 600; }

/* stat stickers */
.stickers {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  align-items: flex-start;
}

.sticker {
  background: var(--frame);
  border-radius: 16px;
  padding: 20px 26px 18px;
  box-shadow: 0 6px 20px rgba(23,25,31,.10), 0 1px 3px rgba(23,25,31,.08);
  transition: transform .18s ease;
}

.sticker:nth-child(1) { transform: rotate(-1.6deg); background: var(--yellow); }
.sticker:nth-child(2) { transform: rotate(1.1deg); }
.sticker:nth-child(3) { transform: rotate(-.8deg); }
.sticker:nth-child(4) { transform: rotate(1.8deg); }

.sticker:hover { transform: rotate(0deg) translateY(-4px); }

.sticker-num {
  font-family: var(--display);
  font-size: 40px;
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -.02em;
}

.sticker-unit {
  font-family: var(--mono);
  font-size: 15px;
  font-weight: 400;
  color: var(--blue);
  margin-left: 2px;
  letter-spacing: 0;
}

.sticker:nth-child(1) .sticker-unit { color: rgba(23,25,31,.6); }

.sticker-label {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: .06em;
  color: var(--muted);
  display: block;
  margin-top: 2px;
}

.sticker:nth-child(1) .sticker-label { color: rgba(23,25,31,.65); }

.hero-foot {
  font-family: var(--hand);
  font-size: 15px;
  font-weight: 500;
  color: var(--muted);
  margin-top: 26px;
  transform: rotate(-.6deg);
  width: fit-content;
}

.hero-foot::before { content: '↳ '; }

/* drifting cursors */
.cursor {
  position: absolute;
  z-index: 5;
  pointer-events: none;
  display: flex;
  align-items: flex-start;
  gap: 2px;
}

.cursor svg { width: 20px; height: 20px; flex-shrink: 0; }

.cursor span {
  font-family: var(--mono);
  font-size: 11px;
  color: #fff;
  padding: 3px 9px;
  border-radius: 4px 12px 12px 12px;
  margin-top: 14px;
  white-space: nowrap;
}

.cur-pink span { background: var(--pink); }
.cur-green span { background: var(--green); }
.cur-orange span { background: var(--orange); }

.cur-pink { top: 16%; right: 8%; animation: drift1 24s ease-in-out infinite; }
.cur-green { top: 52%; right: 22%; animation: drift2 30s ease-in-out infinite; }
.cur-orange { bottom: 12%; right: 40%; animation: drift3 21s ease-in-out infinite; }

@keyframes drift1 {
  0%, 100% { transform: translate(0, 0); }
  30% { transform: translate(-110px, 70px); }
  65% { transform: translate(-30px, 140px); }
}

@keyframes drift2 {
  0%, 100% { transform: translate(0, 0); }
  35% { transform: translate(90px, -80px); }
  70% { transform: translate(-60px, 30px); }
}

@keyframes drift3 {
  0%, 100% { transform: translate(0, 0); }
  40% { transform: translate(130px, -50px); }
  75% { transform: translate(40px, 40px); }
}

/* ─── COMMENT PINS ────────────────────────── */
.pin {
  position: absolute;
  z-index: 10;
  width: 34px;
  height: 34px;
  border-radius: 50% 50% 50% 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  cursor: default;
  box-shadow: 0 3px 10px rgba(23,25,31,.25);
  border: 2px solid #fff;
}

.pin-pink { background: var(--pink); }
.pin-blue { background: var(--blue); }
.pin-yellow { background: var(--yellow); }

.pin::after {
  content: '';
  position: absolute;
  inset: -6px;
  border-radius: inherit;
  border: 2px solid currentColor;
  opacity: 0;
  animation: pinpulse 3s ease-out infinite;
}

.pin-pink::after { color: var(--pink); }
.pin-blue::after { color: var(--blue); }
.pin-yellow::after { color: var(--yellow); }

@keyframes pinpulse {
  0% { opacity: .7; transform: scale(.7); }
  60%, 100% { opacity: 0; transform: scale(1.15); }
}

.pin-tip {
  position: absolute;
  bottom: calc(100% + 10px);
  left: 0;
  background: var(--ink);
  color: #fff;
  font-family: var(--hand);
  font-size: 14px;
  font-weight: 500;
  line-height: 1.45;
  padding: 10px 14px;
  border-radius: 12px 12px 12px 2px;
  width: max-content;
  max-width: 240px;
  opacity: 0;
  transform: translateY(6px);
  transition: opacity .18s, transform .18s;
  pointer-events: none;
}

.pin:hover .pin-tip, .pin:focus .pin-tip {
  opacity: 1;
  transform: translateY(0);
}

.pin-right .pin-tip { left: auto; right: 0; border-radius: 12px 12px 2px 12px; }

/* ─── FRAMES (sections) ───────────────────── */
.frame {
  position: relative;
  background: var(--frame);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 64px;
  margin-top: 96px;
  box-shadow: 0 3px 16px rgba(23,25,31,.05);
}

.frame-tab {
  position: absolute;
  top: -28px;
  left: 4px;
  font-family: var(--mono);
  font-size: 11px;
  color: var(--blue);
}

.frame-tab::before { content: '⌗ '; opacity: .6; }

.frame h2 {
  font-family: var(--display);
  font-size: clamp(30px, 4.4vw, 52px);
  font-weight: 800;
  line-height: 1.02;
  letter-spacing: -.02em;
  margin-bottom: 24px;
  max-width: 18ch;
}

.frame h2 .hl {
  background: linear-gradient(transparent 58%, var(--yellow) 58%);
  padding: 0 2px;
}

.frame-body {
  font-size: 16px;
  color: var(--muted);
  line-height: 1.75;
  max-width: 580px;
}

.frame-body + .frame-body { margin-top: 14px; }
.frame-body strong { color: var(--ink); font-weight: 600; }

.split-label {
  font-size: 17px;
  font-weight: 600;
  color: var(--ink);
  margin: 34px 0 8px;
}

/* ─── STICKY NOTES ────────────────────────── */
.sticky {
  position: absolute;
  background: var(--yellow);
  font-family: var(--hand);
  font-size: 15px;
  font-weight: 500;
  line-height: 1.45;
  padding: 18px 18px 22px;
  width: 190px;
  box-shadow: 0 8px 20px rgba(23,25,31,.16);
  border-radius: 2px;
  z-index: 8;
}

.sticky-pink { background: #FFD9E4; }

/* ─── FACT TABLE ──────────────────────────── */
.fact-table {
  border: 1px solid var(--line);
  border-radius: 10px;
  overflow: hidden;
  margin-top: 38px;
  max-width: 620px;
}

.fact-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 20px;
  padding: 13px 18px;
  border-bottom: 1px solid var(--line);
}

.fact-row:last-child { border-bottom: none; }
.fact-row:nth-child(odd) { background: #FAFBFC; }

.fact-key {
  font-family: var(--mono);
  font-size: 11px;
  color: var(--muted);
  flex-shrink: 0;
}

.fact-val {
  font-size: 14px;
  font-weight: 500;
  text-align: right;
}

/* ─── PLATFORM GRID ───────────────────────── */
.platform-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 44px;
}

.plat {
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 24px 22px;
  transition: transform .15s, box-shadow .15s, border-color .15s;
}

.plat:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 24px rgba(23,25,31,.09);
  border-color: var(--blue);
}

.plat-chip {
  display: inline-block;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: .04em;
  padding: 3px 9px;
  border-radius: 100px;
  margin-bottom: 16px;
}

.chip-ig { background: #FFE3EC; color: #C42E62; }
.chip-th { background: #E8E2FF; color: #5B3FD1; }
.chip-x { background: #E3E7EE; color: #3A4150; }
.chip-pin { background: var(--blue-soft); color: var(--blue); }
.chip-rep { background: #DFF5EB; color: #0D7A50; }

.plat-num {
  font-family: var(--display);
  font-size: 38px;
  font-weight: 800;
  line-height: 1;
  margin-bottom: 10px;
}

.plat-num sup {
  font-family: var(--mono);
  font-size: 15px;
  font-weight: 400;
  color: var(--blue);
}

.plat-desc {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.6;
}

/* ─── ACCOUNT CARDS ───────────────────────── */
.acct-solo {
  display: grid;
  grid-template-columns: 1fr 232px;
  gap: 22px;
  margin-top: 44px;
  align-items: start;
}

.acct-side {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.mini-acct {
  display: block;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--frame);
  padding: 16px 18px 18px;
  text-decoration: none;
  transition: transform .15s, box-shadow .15s, border-color .15s;
}

.mini-acct:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 24px rgba(23,25,31,.09);
  border-color: var(--blue);
}

.mini-head {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
}

.mini-avatar {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 2px solid var(--line);
  flex-shrink: 0;
}

.mini-handle {
  font-weight: 600;
  font-size: 13px;
  line-height: 1.25;
}

.mini-plat {
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: .06em;
  color: var(--blue);
  text-transform: lowercase;
}

.mini-num {
  font-family: var(--display);
  font-size: 30px;
  font-weight: 800;
  line-height: 1;
}

.mini-label {
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: .05em;
  color: var(--muted);
  display: block;
  margin-top: 3px;
}

.acct-side-note {
  font-family: var(--hand);
  font-size: 14px;
  font-weight: 500;
  color: var(--muted);
  line-height: 1.45;
  transform: rotate(-1.2deg);
  margin-top: 4px;
}

.acct {
  display: block;
  border: 1px solid var(--line);
  border-radius: 14px;
  overflow: hidden;
  background: var(--frame);
  text-decoration: none;
  transition: transform .15s, box-shadow .15s, border-color .15s;
}

.acct:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 28px rgba(23,25,31,.10);
  border-color: var(--blue);
}

.acct-head {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 18px 20px;
}

.acct-avatar {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: 2px solid var(--line);
}

.acct-handle {
  font-weight: 600;
  font-size: 15px;
  line-height: 1.3;
}

.acct-meta {
  font-family: var(--mono);
  font-size: 10px;
  color: var(--muted);
}

.acct-count {
  margin-left: auto;
  text-align: right;
}

.acct-num {
  font-family: var(--display);
  font-size: 26px;
  font-weight: 800;
  line-height: 1;
}

.acct-label {
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: .05em;
  color: var(--muted);
}

.acct-posts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 2px;
  background: var(--line);
}

.acct-posts img {
  width: 100%;
  height: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  display: block;
  min-width: 0;
}

.acct-slot {
  aspect-ratio: 1;
  background: var(--yellow);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2px;
  font-family: var(--hand);
  font-size: 13px;
  font-weight: 700;
  color: var(--ink);
  text-align: center;
  padding: 10px;
  line-height: 1.35;
}

.acct-slot span { font-size: 20px; }

.acct-foot {
  font-family: var(--mono);
  font-size: 10px;
  color: var(--muted);
  padding: 12px 20px;
  display: flex;
  justify-content: space-between;
  gap: 12px;
}

/* ─── PACKAGE ─────────────────────────────── */
.pkg-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  background: var(--ink);
  color: #fff;
  border-radius: 12px 12px 0 0;
  padding: 26px 28px;
  margin-top: 44px;
}

.pkg-name {
  font-family: var(--display);
  font-size: 22px;
  font-weight: 800;
}

.pkg-tag {
  font-family: var(--mono);
  font-size: 11px;
  color: rgba(255,255,255,.55);
  margin-top: 3px;
}

.pkg-price { text-align: right; }

.price-num {
  font-family: var(--display);
  font-size: 42px;
  font-weight: 800;
  line-height: 1;
  color: var(--yellow);
}

.price-period {
  font-family: var(--mono);
  font-size: 10px;
  color: rgba(255,255,255,.55);
  margin-top: 5px;
}

/* deliverables, layers panel */
.layers {
  border: 1px solid var(--line);
  border-top: none;
  border-radius: 0 0 12px 12px;
  overflow: hidden;
}

.layer {
  display: grid;
  grid-template-columns: 46px 1fr;
  border-bottom: 1px solid var(--line);
}

.layer:last-child { border-bottom: none; }

.layer-check {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding-top: 20px;
  border-right: 1px solid var(--line);
  background: #FAFBFC;
}

.layer-check i {
  width: 18px;
  height: 18px;
  border-radius: 5px;
  background: var(--blue);
  display: flex;
  align-items: center;
  justify-content: center;
  font-style: normal;
  color: #fff;
  font-size: 11px;
  font-weight: 700;
}

.layer-main { padding: 16px 22px 18px; }

.layer-head {
  display: flex;
  align-items: baseline;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 4px;
}

.layer-channel {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: .05em;
  color: var(--blue);
  text-transform: lowercase;
}

.layer-title {
  font-size: 15px;
  font-weight: 600;
}

.layer-tag {
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: .05em;
  background: var(--pink);
  color: #fff;
  padding: 2px 8px;
  border-radius: 100px;
}

.layer-tag.tag-bonus { background: var(--green); }

.layer-detail {
  font-size: 13.5px;
  color: var(--muted);
  line-height: 1.6;
  max-width: 640px;
}

.layer-endorse { background: #FFFBEE; }
.layer-endorse .layer-check { background: #FFF6D6; }

/* ─── VERSION HISTORY (timeline) ──────────── */
.versions {
  margin-top: 44px;
  position: relative;
  padding-left: 34px;
}

.versions::before {
  content: '';
  position: absolute;
  left: 9px;
  top: 12px;
  bottom: 12px;
  width: 2px;
  background: var(--line);
}

.ver {
  position: relative;
  padding-bottom: 34px;
}

.ver:last-child { padding-bottom: 0; }

.ver::before {
  content: '';
  position: absolute;
  left: -32px;
  top: 6px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--frame);
  border: 3px solid var(--blue);
  z-index: 2;
}

.ver:first-child::before { background: var(--blue); box-shadow: 0 0 0 4px var(--blue-soft); }

.ver-tag {
  font-family: var(--mono);
  font-size: 11px;
  color: var(--blue);
  display: block;
  margin-bottom: 4px;
}

.ver-title {
  font-family: var(--display);
  font-size: 20px;
  font-weight: 800;
  margin-bottom: 5px;
}

.ver-detail {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.65;
  max-width: 560px;
}

/* ─── TRUST / PINNED COMMENT ──────────────── */
.pinned-comment {
  display: flex;
  gap: 14px;
  background: var(--blue-soft);
  border: 1px solid #C9D8FF;
  border-radius: 14px 14px 14px 3px;
  padding: 22px 24px;
  margin-top: 40px;
  max-width: 600px;
}

.pc-avatar {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--blue);
  color: #fff;
  font-family: var(--mono);
  font-weight: 700;
  font-size: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.pc-meta {
  font-family: var(--mono);
  font-size: 11px;
  color: var(--muted);
  margin-bottom: 6px;
}

.pc-meta b { color: var(--ink); }

.pc-text {
  font-size: 16px;
  font-weight: 500;
  line-height: 1.55;
}

.pc-react {
  display: inline-block;
  font-family: var(--mono);
  font-size: 11px;
  background: var(--frame);
  border: 1px solid var(--line);
  border-radius: 100px;
  padding: 3px 10px;
  margin-top: 12px;
  color: var(--muted);
}

/* ─── FAQ, comment threads ───────────────── */
.threads { margin-top: 44px; display: flex; flex-direction: column; gap: 26px; }

.thread { max-width: 680px; }

.msg {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}

.msg + .msg { margin-top: 10px; padding-left: 34px; }

.msg-avatar {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  color: #fff;
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}

.av-sponsor { background: var(--orange); }
.av-david { background: var(--blue); }

.bubble {
  border-radius: 3px 14px 14px 14px;
  padding: 12px 17px;
  font-size: 14px;
  line-height: 1.65;
}

.bubble-q {
  background: #F4F5F8;
  border: 1px solid var(--line);
  font-weight: 600;
  font-size: 15px;
}

.bubble-a {
  background: var(--blue-soft);
  border: 1px solid #C9D8FF;
  color: #2A3040;
}

.bubble .who {
  display: block;
  font-family: var(--mono);
  font-size: 10px;
  color: var(--muted);
  font-weight: 400;
  margin-bottom: 3px;
}

/* ─── CTA ─────────────────────────────────── */
.cta-frame {
  background: var(--yellow);
  border: none;
  transform: rotate(-.4deg);
  box-shadow: 0 18px 44px rgba(23,25,31,.18);
}

.cta-frame .frame-tab { color: rgba(23,25,31,.55); }

.cta-frame h2 {
  max-width: 14ch;
}

.cta-frame .frame-body {
  color: rgba(23,25,31,.72);
  font-weight: 500;
}

.cta-email {
  display: inline-block;
  font-family: var(--display);
  font-size: clamp(22px, 3.6vw, 40px);
  font-weight: 800;
  letter-spacing: -.02em;
  color: var(--ink);
  text-decoration: underline;
  text-decoration-thickness: 3px;
  text-underline-offset: 7px;
  margin: 34px 0 18px;
  transition: text-decoration-color .15s;
  overflow-wrap: anywhere;
}

.cta-email:hover { text-decoration-color: var(--blue); color: var(--blue); }

.cta-note {
  font-family: var(--mono);
  font-size: 12px;
  color: rgba(23,25,31,.6);
  line-height: 1.9;
}

.cta-hand {
  font-family: var(--hand);
  font-size: 17px;
  font-weight: 700;
  margin-top: 30px;
  transform: rotate(-1deg);
  width: fit-content;
}

.cta-hand::before { content: '↳ '; }

/* ─── FOOTER ──────────────────────────────── */
.footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 80px;
  padding-top: 28px;
  border-top: 1px solid var(--line);
}

.footer-logo {
  font-family: var(--mono);
  font-size: 12px;
  color: var(--muted);
}

.footer-logo b { color: var(--ink); }

.footer-links { display: flex; gap: 22px; flex-wrap: wrap; }

.footer-links a {
  font-family: var(--mono);
  font-size: 11px;
  color: var(--muted);
  text-decoration: none;
  transition: color .15s;
}

.footer-links a:hover { color: var(--blue); }

/* ─── TOOLBAR (floating CTA) ──────────────── */
.toolbar {
  position: fixed;
  bottom: 22px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 70;
  display: flex;
  align-items: center;
  gap: 16px;
  background: var(--ink);
  border-radius: 16px;
  padding: 10px 12px 10px 20px;
  box-shadow: 0 14px 40px rgba(23,25,31,.35);
  white-space: nowrap;
}

.tb-price {
  font-family: var(--display);
  font-size: 18px;
  font-weight: 800;
  color: #fff;
}

.tb-price span {
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 400;
  color: rgba(255,255,255,.5);
  margin-left: 5px;
}

.tb-div {
  width: 1px;
  height: 22px;
  background: rgba(255,255,255,.18);
}

.tb-status {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--mono);
  font-size: 11px;
  color: rgba(255,255,255,.7);
}

.tb-status i {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 3px rgba(20,184,122,.25);
}

.tb-cta {
  font-size: 14px;
  font-weight: 600;
  color: var(--ink);
  background: var(--yellow);
  border-radius: 10px;
  padding: 9px 18px;
  text-decoration: none;
  transition: transform .12s, background .15s;
}

.tb-cta:hover { background: #FFDF66; transform: translateY(-1px); }

/* ─── RECEIPTS ────────────────────────────── */
.receipt-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 40px;
}

.receipt {
  border: 2px dashed var(--line);
  border-radius: 12px;
  aspect-ratio: 4 / 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  text-align: center;
  padding: 16px;
}

.receipt b {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: .06em;
  color: var(--ink);
}

.receipt span {
  font-family: var(--hand);
  font-size: 14px;
  color: var(--muted);
  line-height: 1.4;
}

.receipt img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 10px;
}

/* ─── BIO CARD ────────────────────────────── */
.bio {
  display: flex;
  gap: 18px;
  align-items: center;
  margin-top: 44px;
  max-width: 620px;
  background: var(--frame);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 20px 22px;
  box-shadow: 0 4px 14px rgba(23,25,31,.06);
}

.bio-avatar {
  width: 74px;
  height: 74px;
  border-radius: 50%;
  flex-shrink: 0;
  background: var(--blue);
  color: #fff;
  font-family: var(--display);
  font-size: 30px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
}

img.bio-avatar { object-fit: cover; background: none; }

.bio-name {
  font-family: var(--display);
  font-size: 18px;
  font-weight: 800;
}

.bio-text {
  font-size: 13.5px;
  color: var(--muted);
  line-height: 1.6;
  margin-top: 3px;
}

.bio-links {
  font-family: var(--mono);
  font-size: 10px;
  margin-top: 8px;
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.bio-links a { color: var(--blue); text-decoration: none; }
.bio-links a:hover { text-decoration: underline; }

/* ─── FIT GRID ────────────────────────────── */
.fit-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-top: 24px;
  max-width: 660px;
}

.fit {
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 18px 20px;
  background: var(--frame);
}

.fit-good { border-top: 3px solid var(--green); }
.fit-bad { border-top: 3px solid var(--pink); }

.fit h3 {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: .08em;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.fit-good h3 { color: var(--green); }
.fit-bad h3 { color: var(--pink); }

.fit ul { list-style: none; }

.fit li {
  font-size: 13.5px;
  color: var(--muted);
  padding: 4px 0 4px 22px;
  position: relative;
  line-height: 1.5;
}

.fit-good li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--green);
  font-weight: 700;
}

.fit-bad li::before {
  content: '✕';
  position: absolute;
  left: 0;
  color: var(--pink);
  font-weight: 700;
}

/* ─── SAMPLE CAMPAIGN ─────────────────────── */
.mock-grid {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 24px;
  margin-top: 44px;
  align-items: start;
}

.mock-story {
  aspect-ratio: 9 / 16;
  border-radius: 20px;
  background: linear-gradient(160deg, #1B5BFF 0%, #0E2E8A 100%);
  color: #fff;
  padding: 20px;
  display: flex;
  flex-direction: column;
  box-shadow: 0 10px 26px rgba(23,25,31,.18);
}

.ms-head {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--mono);
  font-size: 10px;
  opacity: .85;
}

.ms-head i {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: rgba(255,255,255,.25);
  display: block;
}

.ms-body { margin: auto 0; }

.ms-logo {
  font-family: var(--display);
  font-size: 27px;
  font-weight: 800;
  letter-spacing: -.02em;
}

.ms-tag {
  font-size: 13px;
  opacity: .88;
  margin-top: 8px;
  line-height: 1.55;
}

.ms-cta {
  font-family: var(--mono);
  font-size: 10px;
  background: #fff;
  color: var(--ink);
  border-radius: 100px;
  padding: 8px 14px;
  width: fit-content;
  margin-top: 18px;
}

.ms-foot {
  font-family: var(--mono);
  font-size: 9px;
  opacity: .6;
}

.mock-post {
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--frame);
  overflow: hidden;
}

.mp-head {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 18px;
  border-bottom: 1px solid var(--line);
}

.mp-avatar {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 1px solid var(--line);
  flex-shrink: 0;
}

.mp-handle {
  font-weight: 600;
  font-size: 13px;
  line-height: 1.25;
}

.mp-meta {
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: .04em;
  color: var(--muted);
}

.mp-pin {
  margin-left: auto;
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: .05em;
  color: var(--blue);
  background: var(--blue-soft);
  border-radius: 100px;
  padding: 4px 10px;
  white-space: nowrap;
}

.mp-body {
  padding: 20px 22px;
  font-size: 14.5px;
  color: var(--ink);
  line-height: 1.75;
}

.mp-eyebrow {
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--blue);
  display: block;
  margin-bottom: 10px;
}

.mp-link { color: var(--blue); font-weight: 500; }

.mp-foot {
  display: flex;
  gap: 18px;
  padding: 12px 22px;
  border-top: 1px solid var(--line);
  font-family: var(--mono);
  font-size: 11px;
  color: var(--muted);
}

.mock-note {
  font-family: var(--hand);
  font-size: 15px;
  font-weight: 500;
  margin-top: 18px;
  transform: rotate(-.5deg);
}

/* ─── FOUNDING RATE ───────────────────────── */
.founding-tag {
  display: inline-flex;
  align-items: baseline;
  gap: 10px;
  background: var(--yellow);
  border-radius: 100px;
  padding: 9px 18px;
  font-size: 13px;
  font-weight: 600;
  margin-top: 36px;
  line-height: 1.4;
}

.founding-tag b {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: .06em;
  text-transform: uppercase;
  white-space: nowrap;
}

.price-was {
  font-family: var(--mono);
  font-size: 13px;
  color: rgba(255,255,255,.4);
  text-decoration: line-through;
  display: block;
  text-align: right;
  margin-bottom: 4px;
}

/* ─── AVAILABILITY ────────────────────────── */
.months {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin: 8px 0 8px;
}

.month {
  font-family: var(--mono);
  font-size: 11px;
  padding: 7px 14px;
  border-radius: 100px;
  border: 1.5px solid rgba(23,25,31,.3);
  color: var(--ink);
}

.month.gone {
  opacity: .45;
  text-decoration: line-through;
}

.month.open {
  background: var(--ink);
  color: var(--yellow);
  border-color: var(--ink);
  font-weight: 700;
}

/* ─── REVEAL ──────────────────────────────── */
.rv { opacity: 0; transform: translateY(18px); transition: opacity .6s ease, transform .6s ease; }
.rv.on { opacity: 1; transform: none; }

/* ─── RESPONSIVE ──────────────────────────── */
@media (max-width: 880px) {
  .fb-nav { display: none; }
  .platform-grid { grid-template-columns: 1fr 1fr; }
  .acct-solo { grid-template-columns: 1fr; }
  .acct-side { flex-direction: row; flex-wrap: wrap; }
  .mini-acct { flex: 1 1 180px; }
  .acct-side-note { flex-basis: 100%; }
  .sticky { position: static; width: auto; max-width: 300px; margin-top: 28px; transform: rotate(-1deg) !important; }
}

@media (max-width: 720px) {
  .frame { padding: 40px 24px; margin-top: 72px; }
  .receipt-grid { grid-template-columns: 1fr; }
  .receipt { aspect-ratio: auto; min-height: 110px; }
  .fit-grid { grid-template-columns: 1fr; }
  .mock-grid { grid-template-columns: 1fr; }
  .mock-story { max-width: 300px; }
  .bio { flex-direction: column; align-items: flex-start; }
  .hero { padding: 64px 0 56px; min-height: auto; }
  .cursor { display: none; }
  .pin { display: none; }
  .pkg-header { flex-direction: column; align-items: flex-start; }
  .pkg-price { text-align: left; }
  .fb-avatars { display: none; }
  .toolbar {
    bottom: 0;
    left: 0;
    right: 0;
    transform: none;
    border-radius: 0;
    justify-content: space-between;
    padding: 12px 16px;
  }
  .tb-status { display: none; }
  .board { padding-bottom: 110px; }
}

@media (max-width: 480px) {
  .platform-grid { grid-template-columns: 1fr; }
  .stickers { gap: 12px; }
  .sticker { padding: 14px 18px 12px; }
  .sticker-num { font-size: 30px; }
  .tb-price span { display: none; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .cursor, .pin::after, .fb-unsaved { animation: none !important; }
  .rv { opacity: 1; transform: none; transition: none; }
  .sticker, .plat, .fb-share, .tb-cta { transition: none; }
}
