/* Cartridge — insertcartridge.app
   Plain static CSS, no build step, no framework. */

:root {
  --bg: #0E0F12;
  --surface: #16181D;
  --surface-border: #1E2127;
  --border: #262A31;
  --text: #F2F3F5;
  --muted: #8A8F99;
  --accent: #5FD9F2;
  --accent-ink: #0E0F12;
  --radius-lg: 32px;
  --radius-md: 24px;
  --radius-sm: 14px;
  --wrap: 1200px;
}

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

html { color-scheme: dark; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: 'Urbanist', system-ui, -apple-system, 'Segoe UI', sans-serif;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img, svg { display: block; max-width: 100%; }

a {
  color: var(--text);
  text-decoration: none;
}
a:hover, a:focus-visible { color: var(--accent); }

a:focus-visible, button:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
}

.skip-link {
  position: absolute;
  left: 12px;
  top: -60px;
  background: var(--accent);
  color: var(--accent-ink);
  font-weight: 800;
  padding: 10px 16px;
  border-radius: 999px;
  z-index: 100;
  transition: top .15s ease;
}
.skip-link:focus { top: 12px; color: var(--accent-ink); }

.wrap {
  max-width: var(--wrap);
  margin: 0 auto;
  padding-left: 32px;
  padding-right: 32px;
}

@media (max-width: 640px) {
  .wrap { padding-left: 20px; padding-right: 20px; }
}

h1, h2, h3 { margin: 0; letter-spacing: -.025em; font-weight: 800; text-wrap: pretty; }

.eyebrow {
  font-size: 12px;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 800;
}

.lede {
  margin: 18px 0 0;
  font-size: 17px;
  line-height: 1.5;
  color: var(--muted);
  font-weight: 600;
  text-wrap: pretty;
}

/* ── Buttons ─────────────────────────────────────────────────────────── */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border-radius: 999px;
  font-weight: 800;
  white-space: nowrap;
  border: none;
  cursor: pointer;
}

.btn-primary { background: var(--accent); color: var(--accent-ink); }
.btn-secondary { background: var(--surface); border: 1px solid var(--border); color: var(--text); font-weight: 700; }
.btn-dark { background: var(--bg); color: var(--text); }
.btn-outline { background: var(--bg); border: 1px solid var(--border); color: var(--text); font-weight: 700; }

.btn-lg { padding: 18px 28px; font-size: 18px; }
.btn-md { padding: 14px 24px; font-size: 15px; }
.btn-sm { padding: 13px; font-size: 14px; width: 100%; }

/* ── Header ──────────────────────────────────────────────────────────── */

.site-header {
  padding: 22px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  max-width: var(--wrap);
  margin: 0 auto;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
}

.brand-word {
  font-weight: 800;
  font-size: 22px;
  letter-spacing: -.025em;
  color: var(--text);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 28px;
  font-size: 15px;
  font-weight: 600;
}
.site-nav a { color: var(--muted); }

@media (max-width: 760px) {
  .site-nav { display: none; }
}

/* ── Hero ────────────────────────────────────────────────────────────── */

.hero {
  max-width: var(--wrap);
  margin: 0 auto;
  padding: 40px 32px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 480px), 1fr));
  gap: 40px;
  align-items: center;
}

@media (max-width: 640px) { .hero { padding: 24px 20px 8px; } }

.hero h1 {
  font-size: clamp(40px, 6.4vw, 84px);
  line-height: 1.0;
}

.hero-cta {
  margin-top: 30px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.hero-checks {
  margin-top: 30px;
  display: flex;
  flex-wrap: wrap;
  gap: 18px 26px;
  font-size: 15px;
  font-weight: 600;
  color: var(--muted);
  list-style: none;
  padding: 0;
}
.hero-checks li { display: flex; align-items: center; gap: 8px; }
.hero-checks .tick { color: var(--accent); font-weight: 800; }

.hero-art {
  position: relative;
  width: 100%;
  min-height: 660px;
}

.hero-glow {
  position: absolute;
  left: 50%;
  margin-left: -220px;
  width: 440px;
  top: 80px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(closest-side, rgba(95,217,242,.14), rgba(95,217,242,0));
  filter: blur(30px);
}

/* Phone shelf mockup */

.phone {
  position: relative;
  left: 50%;
  transform: translateX(-50%);
  top: 36px;
  width: 320px;
  border-radius: 40px;
  background: var(--bg);
  box-shadow: 0 0 0 1px var(--border), 0 0 0 10px var(--surface), 0 40px 90px rgba(0,0,0,.6);
  padding: 22px 18px 26px;
}

.phone-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.phone-title { font-weight: 800; font-size: 22px; letter-spacing: -.02em; }
.phone-sub { font-size: 12px; font-weight: 600; color: var(--muted); }

.phone h3.section-label,
.phone .section-label {
  margin-top: 16px;
  font-weight: 700;
  font-size: 14px;
}

.phone-row-head {
  margin-top: 16px;
  display: flex;
  align-items: baseline;
  justify-content: space-between;
}
.phone-row-head .see-all { font-size: 11px; font-weight: 600; color: var(--muted); }

.feature-cover {
  position: relative;
  margin-top: 10px;
  height: 132px;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.06);
}
.feature-cover::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(14,15,18,0) 35%, rgba(14,15,18,.9) 100%);
}
.feature-cover .play {
  position: absolute;
  top: 10px; right: 10px;
  width: 22px; height: 22px;
  border-radius: 50%;
  background: var(--accent);
  color: var(--accent-ink);
  display: flex; align-items: center; justify-content: center;
  font-size: 9px; font-weight: 800;
  z-index: 1;
}
.feature-cover .caption {
  position: absolute;
  left: 14px; right: 14px; bottom: 12px;
  z-index: 1;
}
.feature-cover .caption .game-title { font-weight: 800; font-size: 17px; letter-spacing: -.01em; }
.feature-cover .caption .game-meta {
  margin-top: 4px;
  display: flex; align-items: center; gap: 6px;
  font-size: 11px; font-weight: 600; color: var(--muted);
}
.chip {
  padding: 2px 7px;
  border-radius: 999px;
  background: var(--accent);
  color: var(--accent-ink);
  font-size: 9px;
  font-weight: 800;
}
.stars { color: var(--accent); }

.cover-row {
  margin-top: 10px;
  display: flex;
  gap: 10px;
}
.cover-card { width: 88px; }
.cover-thumb {
  position: relative;
  width: 88px; height: 117px;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.06);
}
.cover-thumb .badge {
  position: absolute; top: 6px; right: 6px;
  width: 18px; height: 18px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 8px; font-weight: 800;
}
.badge-done { background: var(--accent); color: var(--accent-ink); }
.badge-stopped { background: #3A3F48; color: var(--text); }
.cover-card .cc-title {
  margin-top: 7px; font-weight: 700; font-size: 12px;
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.cover-card .cc-meta {
  margin-top: 2px; font-size: 10px; font-weight: 600; color: var(--muted);
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.cover-add {
  width: 88px; height: 117px;
  border-radius: 14px;
  border: 1.5px dashed var(--border);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 4px; color: var(--muted);
}
.cover-add .plus { font-size: 20px; line-height: 1; }
.cover-add .label { font-size: 10px; font-weight: 600; }

.phone-tabbar {
  margin-top: 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 6px;
  color: var(--muted);
}
.phone-tabbar .tab {
  display: flex; flex-direction: column; align-items: center; gap: 3px;
  font-size: 9px; font-weight: 700;
}
.phone-tabbar .tab.active { color: var(--accent); }
.phone-tabbar .tab-add {
  width: 36px; height: 36px;
  margin-top: -8px;
  border-radius: 12px;
  background: var(--accent);
  color: var(--accent-ink);
  display: flex; align-items: center; justify-content: center;
  font-size: 22px; font-weight: 700;
}

/* Floating review cards around the phone */

.floaters { position: absolute; inset: 0; pointer-events: none; }

.floater {
  position: absolute;
  width: 190px;
  padding: 16px;
  border-radius: 20px;
  background: var(--surface);
  border: 1px solid var(--border);
  box-shadow: 0 24px 60px rgba(0,0,0,.55);
  z-index: 3;
  animation: floatA 7s ease-in-out infinite;
}
.floater .fc-row { display: flex; align-items: center; gap: 10px; }
.floater .fc-cover { width: 30px; height: 40px; flex: none; border-radius: 7px; }
.floater .fc-title { font-weight: 700; font-size: 13px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.floater .fc-meta { margin-top: 2px; font-size: 11px; font-weight: 600; color: var(--muted); }
.floater .fc-quote { margin-top: 12px; font-weight: 800; font-size: 17px; line-height: 1.15; letter-spacing: -.015em; text-wrap: pretty; }

.floater-1 { right: calc(50% - 336px); top: 0; animation-delay: 0s; }
.floater-2 { left: calc(50% - 336px); top: 60px; animation-delay: 1.2s; }
.floater-3 { right: calc(50% - 336px); top: 260px; animation-delay: 2.4s; }
.floater-4 { left: calc(50% - 336px); top: 330px; animation-delay: 3.6s; }
.floater-5 { right: calc(50% - 336px); top: 520px; animation-delay: 4.8s; }
.floater-6 { left: calc(50% - 336px); top: 600px; animation-delay: 6s; }

@media (max-width: 900px) {
  .floaters { display: none; }
  .hero-art { min-height: auto; }
  .phone { position: static; transform: none; margin: 0 auto; }
}

/* Cover art gradients — placeholders for real cover images */
.cover-elden { background: radial-gradient(circle at 72% 46%, rgba(0,0,0,0) 22%, #D8B25A 23%, #F1D98C 27%, rgba(241,217,140,0) 30%), radial-gradient(100% 60% at 50% 100%, #2E3A2A, rgba(46,58,42,0) 70%), linear-gradient(180deg, #1A2230, #0B0F14); }
.cover-hollow { background: radial-gradient(70% 50% at 50% 28%, #9FB4C7 0%, rgba(159,180,199,0) 60%), radial-gradient(40% 30% at 50% 62%, #2A3C52, rgba(42,60,82,0) 70%), linear-gradient(180deg, #1E2733, #090C10); }
.cover-outer { background: radial-gradient(circle at 68% 30%, #FFB347 0%, #FFB347 10%, #E8702A 11%, #E8702A 14%, rgba(232,112,42,0) 15%), radial-gradient(100% 80% at 20% 90%, #145C63, rgba(20,92,99,0) 60%), linear-gradient(180deg, #0E1B2B, #05080E); }
.cover-hades { background: radial-gradient(120% 80% at 28% 18%, #FF6A3D 0%, rgba(255,106,61,0) 55%), radial-gradient(90% 70% at 85% 95%, #8A1E36 0%, rgba(138,30,54,0) 60%), linear-gradient(160deg, #3F0D16, #120507); }
.cover-celeste { background: radial-gradient(80% 50% at 50% 100%, #2FD3C6 0%, rgba(47,211,198,0) 55%), linear-gradient(200deg, #FF8FB1 0%, #7B4BC7 48%, #1E1240 100%); }
.cover-balatro { background: radial-gradient(70% 50% at 50% 70%, #E63946, rgba(230,57,70,0) 60%), linear-gradient(180deg, #1D3557, #0B1020); }

/* ── Generic section shell ───────────────────────────────────────────── */

.section {
  max-width: var(--wrap);
  margin: 0 auto;
  padding: 80px 32px 20px;
}
@media (max-width: 640px) { .section { padding: 56px 20px 12px; } }

.section-head { max-width: 640px; }
.section-head h2 {
  margin-top: 12px;
  font-size: clamp(28px, 3.6vw, 44px);
  line-height: 1.08;
}

/* ── How it works ────────────────────────────────────────────────────── */

.steps {
  margin-top: 40px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 16px;
}

.step-card {
  border-radius: var(--radius-md);
  background: var(--surface);
  border: 1px solid var(--surface-border);
  padding: 26px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.step-card h3 { font-size: 22px; }
.step-card p { margin: 8px 0 0; font-size: 15px; line-height: 1.5; color: var(--muted); font-weight: 600; text-wrap: pretty; }

.step-stage {
  position: relative;
  height: 170px;
  border-radius: 18px;
  background: var(--bg);
  border: 1px solid var(--surface-border);
  overflow: hidden;
}

/* Step 1 — scan corners */
.scan-corner {
  position: absolute;
  width: 22px; height: 22px;
  border-color: var(--accent);
  border-style: solid;
  border-width: 0;
  animation: breathe 1.4s ease-in-out infinite;
}
.scan-corner.tl { left: 16px; top: 16px; border-left-width: 3px; border-top-width: 3px; border-radius: 5px 0 0 0; }
.scan-corner.tr { right: 16px; top: 16px; border-right-width: 3px; border-top-width: 3px; border-radius: 0 5px 0 0; }
.scan-corner.bl { left: 16px; bottom: 16px; border-left-width: 3px; border-bottom-width: 3px; border-radius: 0 0 0 5px; }
.scan-corner.br { right: 16px; bottom: 16px; border-right-width: 3px; border-bottom-width: 3px; border-radius: 0 0 5px 0; }
.scan-line {
  position: absolute;
  left: 28px; right: 28px;
  height: 2px;
  background: var(--accent);
  box-shadow: 0 0 14px var(--accent);
  z-index: 2;
  animation: scanLine 1.6s ease-in-out infinite alternate, scanLineOp 6s ease-in-out infinite;
}
.scan-cover {
  position: absolute;
  left: 50%; top: 24px;
  width: 78px; height: 104px;
  margin-left: -39px;
  border-radius: 12px;
  overflow: hidden;
  transform: rotate(-4deg);
  box-shadow: 0 14px 30px rgba(0,0,0,.6);
  animation: resolve 6s ease-in-out infinite;
}
.scan-found {
  position: absolute;
  left: 0; right: 0; bottom: 14px;
  text-align: center;
  animation: foundChip 6s ease-in-out infinite;
}

/* Step 2 — rate */
.rate-stage { padding: 18px; }
.rate-tabs {
  display: flex;
  padding: 3px;
  border-radius: 999px;
  background: var(--surface);
  border: 1px solid var(--border);
}
.rate-tab {
  flex: 1;
  padding: 7px 0;
  text-align: center;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 800;
  color: var(--muted);
}
.rate-tab.active { background: var(--accent); color: var(--accent-ink); }
.rate-stars { margin-top: 14px; display: flex; gap: 5px; font-size: 22px; line-height: 1; color: var(--accent); }
.rate-stars .off { color: var(--border); }
.rate-review {
  margin-top: 12px;
  padding: 10px 14px;
  border-radius: 12px;
  background: var(--surface);
  border: 1px solid var(--border);
  font-weight: 700;
  font-size: 14px;
  display: flex;
  justify-content: space-between;
  gap: 12px;
}
.rate-review .hours { color: var(--muted); font-weight: 600; font-size: 12px; flex: none; }

/* Step 3 — share */
.share-stack-preview {
  position: absolute; left: 50%; top: 30px;
  width: 74px; height: 100px;
  margin-left: -37px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 24px rgba(0,0,0,.55);
}
.share-stack-preview.left { transform: translateX(-60px) rotate(-10deg); }
.share-stack-preview.mid { top: 24px; z-index: 2; }
.share-stack-preview.right { transform: translateX(60px) rotate(10deg); z-index: 3; }
.share-meta {
  position: absolute; left: 0; right: 0; bottom: 14px; text-align: center;
}
.pill {
  padding: 4px 10px;
  border-radius: 999px;
  background: var(--surface-border);
  color: var(--text);
  font-size: 11px;
  font-weight: 700;
}

/* ── Reviews section ─────────────────────────────────────────────────── */

.reviews-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.2fr);
  gap: 48px;
  align-items: center;
}
@media (max-width: 900px) { .reviews-layout { grid-template-columns: 1fr; } }

.review-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
@media (max-width: 480px) { .review-cards { grid-template-columns: 1fr; } }

.review-card {
  border-radius: 22px;
  background: var(--surface);
  border: 1px solid var(--surface-border);
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.review-card .rc-head { display: flex; align-items: center; gap: 12px; }
.review-card .rc-cover { position: relative; width: 40px; height: 54px; border-radius: 9px; overflow: hidden; flex: none; }
.review-card .rc-cover .badge { position: absolute; top: 3px; right: 3px; width: 14px; height: 14px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 7px; font-weight: 800; }
.review-card .rc-title { font-weight: 700; font-size: 14px; }
.review-card .rc-meta { font-size: 12px; font-weight: 600; color: var(--muted); }
.review-card .rc-quote { font-weight: 800; font-size: 19px; line-height: 1.15; letter-spacing: -.015em; }

.review-summary {
  grid-column: 1 / -1;
  border-radius: 22px;
  background: var(--surface);
  border: 1px solid var(--surface-border);
  padding: 22px;
}
.review-summary .rs-quote {
  margin-top: 10px;
  font-weight: 700;
  font-size: 18px;
  line-height: 1.35;
  letter-spacing: -.01em;
  text-wrap: pretty;
}
.review-summary .rs-note { margin-top: 12px; font-size: 12px; font-weight: 600; color: var(--muted); }

/* ── Stacks section ──────────────────────────────────────────────────── */

.stacks-panel {
  border-radius: var(--radius-lg);
  background: var(--surface);
  border: 1px solid var(--surface-border);
  padding: clamp(28px, 4vw, 56px);
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 48px;
  align-items: center;
  overflow: hidden;
}
@media (max-width: 900px) { .stacks-panel { grid-template-columns: 1fr; } }

.stack-tags {
  margin-top: 22px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.stack-tag {
  padding: 8px 14px;
  border-radius: 999px;
  background: var(--bg);
  border: 1px solid var(--border);
  font-size: 13px;
  font-weight: 700;
}

.stack-card-wrap { display: flex; justify-content: center; }
.stack-card {
  width: 270px;
  height: 480px;
  border-radius: 24px;
  position: relative;
  overflow: hidden;
  background: var(--bg);
  box-shadow: 0 30px 70px rgba(0,0,0,.6), inset 0 0 0 1px rgba(255,255,255,.08);
  transform: rotate(-3deg);
}
.stack-card .sc-badge {
  position: absolute; left: 24px; top: 26px;
  padding: 4px 10px; border-radius: 999px;
  background: var(--accent); color: var(--accent-ink);
  font-size: 10px; font-weight: 800;
}
.stack-card .sc-cover {
  position: absolute; left: 50%; top: 94px;
  width: 84px; height: 112px; margin-left: -42px;
  border-radius: 12px; overflow: hidden;
  box-shadow: 0 12px 26px rgba(0,0,0,.6);
}
.stack-card .sc-cover.left { top: 100px; transform: translateX(-62px) rotate(-10deg); }
.stack-card .sc-cover.mid { z-index: 2; }
.stack-card .sc-cover.right { top: 100px; transform: translateX(62px) rotate(10deg); z-index: 3; }
.stack-card .sc-title {
  position: absolute; left: 24px; right: 24px; top: 250px;
  font-weight: 800; font-size: 21px; line-height: 1.1; letter-spacing: -.02em; text-wrap: pretty;
}
.stack-card .sc-note { position: absolute; left: 24px; right: 24px; top: 352px; font-size: 12px; font-weight: 600; color: var(--muted); }
.stack-card .sc-tags { position: absolute; left: 24px; top: 384px; display: flex; gap: 6px; }
.stack-card .sc-tags .pill { font-size: 9px; padding: 3px 8px; }
.stack-card .sc-url { position: absolute; left: 24px; bottom: 22px; font-size: 9px; font-weight: 600; color: var(--muted); }
.stack-card .sc-brand { position: absolute; right: 24px; bottom: 18px; display: flex; align-items: center; gap: 6px; font-weight: 800; font-size: 12px; letter-spacing: -.02em; }

/* ── Plus / pricing section ──────────────────────────────────────────── */

.plus-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 48px;
  align-items: start;
}
@media (max-width: 900px) { .plus-layout { grid-template-columns: 1fr; } }

.plus-benefits {
  margin-top: 22px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-size: 15px;
  font-weight: 600;
  list-style: none;
  padding: 0;
}
.plus-benefits li { display: flex; align-items: center; gap: 12px; }
.plus-benefits .check {
  width: 22px; height: 22px; flex: none;
  border-radius: 50%;
  background: var(--accent); color: var(--accent-ink);
  display: flex; align-items: center; justify-content: center;
  font-size: 11px; font-weight: 800;
}
.plus-benefits .dim { color: var(--muted); }

.price-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}
@media (max-width: 720px) { .price-cards { grid-template-columns: 1fr 1fr; } }
@media (max-width: 480px) { .price-cards { grid-template-columns: 1fr; } }

.price-card {
  border-radius: var(--radius-md);
  background: var(--surface);
  border: 2px solid var(--surface-border);
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.price-card.featured { border-color: var(--accent); }
.price-card .pc-head { display: flex; align-items: center; justify-content: space-between; gap: 8px; flex-wrap: wrap; }
.price-card .pc-name { font-weight: 800; font-size: 18px; }
.price-card .pc-badge {
  padding: 3px 9px; border-radius: 999px;
  background: var(--accent); color: var(--accent-ink);
  font-size: 11px; font-weight: 800;
}
.price-card .pc-amount { font-weight: 800; font-size: 34px; letter-spacing: -.02em; }
.price-card .pc-amount .per { font-size: 14px; color: var(--muted); font-weight: 600; }
.price-card .pc-copy { font-size: 13px; font-weight: 600; color: var(--muted); line-height: 1.45; }
.price-card .btn { margin-top: auto; }

.price-note {
  grid-column: 1 / -1;
  font-size: 12px;
  font-weight: 600;
  color: var(--muted);
  line-height: 1.5;
  padding: 0 4px;
}

/* ── Download CTA ────────────────────────────────────────────────────── */

.download-cta {
  position: relative;
  border-radius: var(--radius-lg);
  background: var(--accent);
  color: var(--accent-ink);
  padding: clamp(32px, 5vw, 64px);
  overflow: hidden;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}
.download-cta h2 {
  font-size: clamp(30px, 4vw, 52px);
  line-height: 1.04;
  letter-spacing: -.03em;
  max-width: 560px;
}
.download-cta p {
  margin: 14px 0 0;
  font-size: 17px;
  line-height: 1.5;
  font-weight: 700;
  color: rgba(14,15,18,.72);
  max-width: 560px;
  text-wrap: pretty;
}
.download-cta .dl-actions { display: flex; flex-direction: column; gap: 12px; align-items: flex-start; }
.download-cta .dl-note { font-size: 13px; font-weight: 700; color: rgba(14,15,18,.72); }
.download-cta .btn-dark { padding: 16px 26px; font-size: 16px; }

/* ── Footer ──────────────────────────────────────────────────────────── */

.site-footer {
  max-width: var(--wrap);
  margin: 0 auto;
  padding: 24px 32px 48px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  border-top: 1px solid var(--surface-border);
}
.footer-brand { display: flex; align-items: center; gap: 10px; }
.footer-brand .brand-word { font-size: 16px; }
.footer-brand .copyright { font-size: 13px; font-weight: 600; color: var(--muted); margin-left: 8px; }
.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  font-size: 13px;
  font-weight: 600;
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer-links a { color: var(--muted); }
.footer-note { font-size: 12px; font-weight: 600; color: var(--muted); }

/* ── Legal pages ─────────────────────────────────────────────────────── */

.legal {
  max-width: 760px;
  margin: 0 auto;
  padding: 40px 32px 96px;
}
@media (max-width: 640px) { .legal { padding: 24px 20px 64px; } }

.draft-banner {
  border-radius: 16px;
  background: rgba(95,217,242,.1);
  border: 1px solid rgba(95,217,242,.4);
  color: var(--accent);
  font-weight: 700;
  font-size: 14px;
  padding: 14px 18px;
  margin-bottom: 32px;
}

.legal h1 { font-size: clamp(30px, 4vw, 44px); line-height: 1.08; }
.legal .updated { margin-top: 10px; color: var(--muted); font-weight: 600; font-size: 14px; }
.legal h2 { margin-top: 40px; font-size: 22px; letter-spacing: -.015em; }
.legal p, .legal li { font-size: 16px; line-height: 1.6; color: var(--muted); font-weight: 500; }
.legal p { margin: 14px 0 0; }
.legal ul { margin: 14px 0 0; padding-left: 22px; }
.legal li { margin-top: 8px; }
.legal a { color: var(--accent); text-decoration: underline; }
.legal strong { color: var(--text); }
.legal .back-link { display: inline-block; margin-bottom: 24px; font-weight: 700; color: var(--muted); }

/* ── Minimal profile page (proxied via /@:handle) ───────────────────── */

.profile-page { max-width: 760px; margin: 0 auto; padding: 28px 32px 64px; }
.profile-head { display: flex; align-items: center; justify-content: space-between; gap: 12px; flex-wrap: wrap; }
.profile-name { margin-top: 44px; font-weight: 800; font-size: 34px; letter-spacing: -.02em; }
.profile-counts { margin-top: 10px; font-size: 15px; font-weight: 600; color: var(--muted); }
.profile-section { margin-top: 40px; }
.profile-section h2 { font-size: 20px; }
.profile-list { margin-top: 16px; display: flex; flex-direction: column; gap: 12px; }
.profile-row {
  border-radius: 16px;
  background: var(--surface);
  border: 1px solid var(--surface-border);
  padding: 16px 18px;
}
.profile-row a { font-weight: 700; font-size: 16px; }
.profile-row .meta { margin-top: 4px; font-size: 13px; font-weight: 600; color: var(--muted); }
.profile-empty { margin-top: 16px; color: var(--muted); font-weight: 600; font-size: 14px; }

/* ── Not found ───────────────────────────────────────────────────────── */
.not-found { max-width: 640px; margin: 0 auto; padding: 120px 32px; text-align: center; }
.not-found h1 { font-size: clamp(32px, 5vw, 56px); }

/* ── Animations ──────────────────────────────────────────────────────── */

@keyframes floatA { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-10px); } }
@keyframes breathe { 0%, 100% { opacity: .5; } 50% { opacity: 1; } }
@keyframes scanLine { 0% { top: 22px; } 100% { top: 132px; } }
@keyframes resolve {
  0%, 20% { filter: blur(12px); transform: rotate(-4deg) scale(1.1); opacity: .6; }
  45%, 100% { filter: blur(0); transform: rotate(-4deg) scale(1); opacity: 1; }
}
@keyframes foundChip { 0%, 40% { opacity: 0; transform: translateY(8px); } 55%, 100% { opacity: 1; transform: translateY(0); } }
@keyframes scanLineOp { 0%, 40% { opacity: 1; } 50%, 100% { opacity: 0; } }

@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }
}
