:root {
  --bg: #09080c;
  --surface: #121014;
  --card: #141218;
  --elevated: #1a1720;
  --fg: #f4f0f8;
  --fg-soft: #e7e0ee;
  --muted: #9a93a8;
  --subtle: #6f697c;
  --border: #2a2438;
  --accent: #c4a3e0;
  --accent-soft: rgba(196, 163, 224, 0.12);
  --font-sans: "Outfit", ui-sans-serif, system-ui, sans-serif;
  --font-display: "Instrument Serif", Georgia, "Times New Roman", serif;
  --font-mono: "IBM Plex Mono", ui-monospace, "SF Mono", Menlo, monospace;
  --radius: 10px;
  --radius-lg: 12px;
  --radius-xl: 16px;
  --shadow: 0 0 0 1px var(--border);
  --shadow-hover: 0 0 0 1px color-mix(in oklab, var(--fg) 22%, var(--border));
  --lift: none;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --max: 1120px;
}

html[data-theme="light"] {
  color-scheme: light;
  --bg: #f6f4f1;
  --surface: #ffffff;
  --card: #ffffff;
  --elevated: #efece7;
  --fg: #16141c;
  --fg-soft: #2c2833;
  --muted: #5d5868;
  --subtle: #7a7584;
  --border: #ddd8d0;
  --accent: #6d4a8e;
  --accent-soft: rgba(109, 74, 142, 0.1);
  --shadow: 0 0 0 1px var(--border);
  --shadow-hover: 0 0 0 1px #cfc9bf;
}

html { color-scheme: dark; }

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

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  overflow-x: clip;
}

body {
  margin: 0;
  min-height: 100dvh;
  background: var(--bg);
  color: var(--fg);
  font-family: var(--font-sans);
  font-weight: 500;
  line-height: 1.6;
  overflow-x: clip;
}

body.nav-open { overflow: hidden; }

img { max-width: 100%; display: block; }
a { color: inherit; }
button { font: inherit; color: inherit; }

button:not(:disabled),
[role="button"]:not(:disabled) { cursor: pointer; }

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

::selection {
  background: color-mix(in oklab, var(--accent) 32%, transparent);
  color: var(--fg);
}

h1, h2, h3 { text-wrap: balance; letter-spacing: -0.03em; font-weight: 700; }
p { text-wrap: pretty; }

.page {
  position: relative;
  isolation: isolate;
  min-height: 100dvh;
  background: var(--bg);
}

.skip {
  position: absolute;
  left: 1rem;
  top: -40px;
  z-index: 80;
  border-radius: 8px;
  background: var(--fg);
  color: var(--bg);
  padding: 0.5rem 0.85rem;
  font-size: 0.875rem;
  font-weight: 500;
  text-decoration: none;
}
.skip:focus { top: 0.75rem; }

.wrap {
  width: min(var(--max), calc(100% - 2rem));
  margin-inline: auto;
}
@media (min-width: 640px) {
  .wrap { width: min(var(--max), calc(100% - 3rem)); }
}

.eyebrow {
  margin: 0;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
}

.micro {
  font-family: var(--font-mono);
  font-size: 0.6875rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.display {
  font-family: var(--font-display);
  font-size: clamp(3.2rem, 11vw, 6.2rem);
  font-weight: 400;
  line-height: 0.92;
  letter-spacing: -0.04em;
  margin: 1rem 0 0;
}

.heading {
  font-family: var(--font-sans);
  font-size: clamp(1.85rem, 4vw, 2.6rem);
  font-weight: 700;
  line-height: 1.12;
  letter-spacing: -0.04em;
}

.section {
  scroll-margin-top: 5.5rem;
  padding: clamp(3rem, 6vw, 5.25rem) 0;
  border-bottom: 1px solid var(--border);
}

.hero.section {
  padding-top: 1.25rem;
  padding-bottom: clamp(2.25rem, 5vw, 3.5rem);
}

.lede { margin: 1rem 0 0; max-width: 36rem; color: var(--muted); }

header.site {
  position: sticky;
  top: 0;
  z-index: 40;
  border-bottom: 1px solid var(--border);
  background: color-mix(in oklab, var(--bg) 90%, transparent);
  backdrop-filter: blur(12px);
}

.site-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  height: 4rem;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  text-decoration: none;
  font-family: var(--font-display);
  font-size: 1.25rem;
}

.logo img, .logo svg {
  width: 32px;
  height: 32px;
  border-radius: 4px;
  box-shadow: var(--shadow);
  object-fit: cover;
}

.nav-desk {
  display: none;
  align-items: center;
  gap: 0.15rem;
}
.nav-desk a {
  text-decoration: none;
  font-size: 0.9rem;
  color: var(--muted);
  padding: 0.5rem 0.75rem;
  border-radius: 6px;
}
.nav-desk a:hover { color: var(--fg); }

.site-end {
  display: flex;
  align-items: center;
  gap: 0.65rem;
}
.header-tools {
  display: flex;
  align-items: center;
  gap: 0.4rem;
}
.theme-toggle {
  display: inline-flex;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 8px;
  background: transparent;
  box-shadow: var(--shadow);
}
.theme-toggle .icon-moon { display: none; }
html[data-theme="light"] .theme-toggle .icon-sun { display: none; }
html[data-theme="light"] .theme-toggle .icon-moon { display: block; }

.nav-toggle {
  display: inline-flex;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 8px;
  background: transparent;
  box-shadow: var(--shadow);
}

.nav-overlay {
  position: fixed;
  inset: 4rem 0 0 0;
  z-index: 45;
  display: flex;
  flex-direction: column;
  overflow-y: auto;
  background: var(--bg);
  padding: 1.25rem 1.25rem 2rem;
  transform: translateY(-8px);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 250ms var(--ease), transform 250ms var(--ease), visibility 250ms;
}
.nav-overlay.open {
  opacity: 1;
  transform: none;
  visibility: visible;
  pointer-events: auto;
}
.nav-overlay a {
  display: block;
  text-decoration: none;
  padding: 0.85rem 0.75rem;
  font-size: 1.1rem;
  border-radius: 8px;
}
.nav-overlay a:hover { background: var(--surface); }

@media (min-width: 1024px) {
  .nav-desk { display: flex; }
  .nav-toggle, .nav-overlay { display: none !important; }
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  min-height: 44px;
  padding: 0.65rem 1.2rem;
  border-radius: 8px;
  font-weight: 600;
  text-decoration: none;
  transition: background-color 150ms var(--ease), transform 150ms var(--ease);
}
.btn:active { transform: scale(0.96); }
.btn-lg { min-height: 48px; padding-inline: 1.5rem; font-size: 1rem; }
.btn-primary { background: var(--fg); color: var(--bg); }
.btn-primary:hover { background: var(--fg-soft); }
.btn-ghost { background: transparent; color: var(--fg); box-shadow: var(--shadow); }
.btn-ghost:hover { background: var(--surface); }
.btn-full { width: 100%; }
.ml { margin-left: 0.75rem; }

.hero-grid {
  display: grid;
  gap: 1.75rem;
  align-items: center;
}
@media (min-width: 1024px) {
  .hero-grid { grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr); gap: 3rem; }
}

.hero h1 { margin: 1rem 0 0; }
.title-line { margin: 0.75rem 0 0; font-size: 1.15rem; font-weight: 600; color: var(--fg-soft); }
.hero .lede { font-size: 1.05rem; }
.actions { display: flex; flex-wrap: wrap; gap: 0.75rem; margin-top: 1.5rem; }
.avail {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 1.5rem;
  color: var(--muted);
  font-size: 0.9rem;
}

.dot {
  position: relative;
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--accent);
  flex-shrink: 0;
}
.dot::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: var(--accent);
  animation: pulse 2.4s var(--ease) infinite;
}
@keyframes pulse {
  to { transform: scale(2.4); opacity: 0; }
}

.desk {
  border-radius: var(--radius-xl);
  background: var(--surface);
  box-shadow: var(--shadow);
  padding: 10px;
  pointer-events: none;
  user-select: none;
}
.desk-inner {
  display: grid;
  gap: 10px;
  border-radius: calc(var(--radius-xl) - 10px);
  background: var(--card);
  padding: 12px;
}
.desk-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
}
.desk-top img {
  width: 32px;
  height: 32px;
  border-radius: 4px;
  object-fit: cover;
}
.desk-grid { display: grid; gap: 10px; }
@media (min-width: 640px) {
  .desk-grid { grid-template-columns: 1fr 1fr; }
  .span-2 { grid-column: 1 / -1; }
}
.desk-card {
  border-radius: var(--radius);
  background: var(--bg);
  box-shadow: var(--shadow);
  padding: 12px 14px;
  min-width: 0;
}
.desk-label {
  margin: 0;
  font-family: var(--font-mono);
  font-size: 0.65rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
}
.hide-sm { display: none; }
@media (min-width: 640px) { .hide-sm { display: block; } }

.weeks { display: grid; grid-template-columns: repeat(4, 1fr); gap: 6px; margin-top: 12px; }
.week {
  border-radius: 4px;
  padding: 8px 4px;
  text-align: center;
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  background: var(--surface);
  box-shadow: var(--shadow);
}
.week.on { background: var(--accent-soft); color: var(--accent); box-shadow: none; }

.stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-bottom: 1px solid var(--border);
}
.stat { padding: 1.75rem 1rem; }
.stat:nth-child(even) { border-left: 1px solid var(--border); }
.stat:nth-child(n+3) { border-top: 1px solid var(--border); }
.stat b {
  display: block;
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 400;
  letter-spacing: -0.03em;
}
.stat span {
  display: block;
  margin-top: 0.25rem;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
}
@media (min-width: 1024px) {
  .stats { grid-template-columns: repeat(4, 1fr); }
  .stat:nth-child(n+3) { border-top: 0; }
  .stat:nth-child(n+3) { border-left: 1px solid var(--border); }
}

.cards { display: grid; gap: 1rem; margin-top: 2.5rem; }
@media (min-width: 768px) {
  .cards-2 { grid-template-columns: 1fr 1fr; }
  .cards-4 { grid-template-columns: 1fr 1fr; }
}
@media (min-width: 960px) { .cards-3 { grid-template-columns: 1fr 1fr 1fr; } }
@media (min-width: 1200px) { .cards-4 { grid-template-columns: repeat(4, 1fr); } }

.card {
  background: var(--card);
  box-shadow: var(--shadow);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  min-width: 0;
  height: 100%;
  text-decoration: none;
}
.card:hover { box-shadow: var(--shadow-hover); }
.card.surface { background: var(--surface); }
.card.featured { background: var(--elevated); box-shadow: 0 0 0 1px var(--accent); }
.span-all { }
@media (min-width: 768px) { .span-all { grid-column: 1 / -1; } }

.icon {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border-radius: 8px;
  background: var(--accent-soft);
  color: var(--accent);
}
.icon svg { width: 16px; height: 16px; }

.card h3 {
  margin: 1.1rem 0 0;
  font-family: var(--font-sans);
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: -0.03em;
}
.card p { margin: 0.75rem 0 0; color: var(--muted); font-size: 0.95rem; }

.checks {
  list-style: none;
  margin: 1.15rem 0 0;
  padding: 0;
  display: grid;
  gap: 0.4rem;
  flex: 1;
}
@media (min-width: 640px) { .checks.two { grid-template-columns: 1fr 1fr; } }
.checks li {
  display: flex;
  gap: 0.5rem;
  align-items: flex-start;
  font-size: 0.9rem;
  color: var(--fg-soft);
}
.checks li::before {
  content: "";
  width: 6px;
  height: 6px;
  margin-top: 0.45rem;
  border-radius: 99px;
  background: var(--accent);
  flex-shrink: 0;
}

.chips { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-top: 0.6rem; }
.chip {
  border-radius: 999px;
  padding: 0.25rem 0.65rem;
  font-size: 0.75rem;
  color: var(--fg-soft);
  box-shadow: var(--shadow);
}

.cover {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 0.35rem;
  min-height: 10.5rem;
  border-radius: var(--radius-lg);
  padding: 1rem 1.1rem;
  background: var(--elevated);
  box-shadow: var(--shadow);
  overflow: hidden;
  position: relative;
}
.cover-conspiracy { box-shadow: inset 3px 0 0 var(--accent), var(--shadow); }
.cover-possum { box-shadow: inset 3px 0 0 var(--muted), var(--shadow); }
.cover-pollux { box-shadow: inset 3px 0 0 var(--accent), var(--shadow); }
.cover .big {
  font-family: var(--font-display);
  font-size: 3rem;
  line-height: 0.95;
  margin: 0.15rem 0;
}
.mini {
  border-radius: 4px;
  background: var(--bg);
  box-shadow: var(--shadow);
  padding: 0.55rem 0.7rem;
  margin-top: 0.4rem;
}
.cover .mini:first-child { margin-top: 0; }
.mini b { display: block; font-size: 0.65rem; font-family: var(--font-mono); letter-spacing: 0.12em; text-transform: uppercase; color: var(--subtle); font-weight: 500; }
.mini span { font-size: 0.9rem; }

.role {
  margin: 1.25rem 0 0;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
}
.handle { margin: 0.25rem 0 0; font-family: var(--font-mono); font-size: 0.85rem; color: var(--muted); }
.worked { margin: 1rem 0 0; font-family: var(--font-mono); font-size: 0.7rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--subtle); }
.outcome { margin: 1rem 0 0; font-size: 0.95rem; color: var(--fg-soft); }
.card .btn { margin-top: 1.5rem; align-self: flex-start; }
.card .btn.btn-full { align-self: stretch; width: 100%; }

.case h3 { margin: 0; }
.case dl { margin: 1.1rem 0 0; display: grid; gap: 0.9rem; }
.case dt {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
}
.case dd { margin: 0.35rem 0 0; color: var(--muted); font-size: 0.95rem; }

.write {
  margin-top: 2.5rem;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.write-item {
  display: grid;
  gap: 0.55rem;
  padding: 1.4rem 0;
  text-decoration: none;
  border-bottom: 1px solid var(--border);
}
.write-item:last-child { border-bottom: 0; }
.write-item:hover .w-title { color: var(--accent); }
.w-date,
.w-title,
.w-dek,
.w-go { display: block; }
.w-copy { min-width: 0; }
.w-date {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
}
.w-title {
  margin: 0 0 0.45rem;
  font-family: var(--font-sans);
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.25;
  color: var(--fg);
}
.w-dek {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
  font-weight: 500;
  line-height: 1.65;
  max-width: 42rem;
}
.w-go {
  margin-top: 0.15rem;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--fg-soft);
}
@media (min-width: 640px) {
  .write-item {
    grid-template-columns: 7.5rem minmax(0, 1fr) auto;
    gap: 1.5rem;
    align-items: start;
    padding: 1.5rem 0;
  }
  .w-go { margin-top: 0; align-self: center; }
}

.price-head { display: flex; align-items: center; justify-content: space-between; gap: 0.5rem; }
.price {
  margin: 1rem 0 0;
  font-family: var(--font-display);
  font-size: 2.4rem;
  letter-spacing: -0.03em;
}
.price small { font-family: var(--font-sans); font-size: 1rem; color: var(--muted); }
.badge {
  border-radius: 999px;
  background: var(--accent-soft);
  color: var(--accent);
  padding: 0.25rem 0.65rem;
  font-family: var(--font-mono);
  font-size: 0.65rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.note { margin-top: 1.5rem; color: var(--muted); font-size: 0.9rem; max-width: 42rem; }
.best {
  margin: 1rem 0 0;
  color: var(--muted);
  font-size: 0.85rem;
  font-style: italic;
}

.one a {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1rem;
  text-decoration: none;
  background: var(--card);
  box-shadow: var(--shadow);
  border-radius: var(--radius-lg);
  padding: 1.25rem 1.35rem;
  transition: transform 250ms var(--ease);
}
.one a:hover { box-shadow: var(--shadow-hover); }
.one b { font-family: var(--font-sans); font-size: 1.05rem; font-weight: 700; }
.one span { color: var(--muted); font-size: 0.9rem; flex-shrink: 0; }

.steps {
  list-style: none;
  margin: 2.5rem 0 0;
  padding: 0;
  display: grid;
  gap: 0;
}
.steps li { padding: 1.5rem 0; border-top: 1px solid var(--border); }
.steps li:first-child { border-top: 0; }
.steps .n { margin: 0; font-family: var(--font-mono); font-size: 0.72rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--accent); }
.steps h3 { margin: 0.65rem 0 0; font-family: var(--font-sans); font-size: 1.15rem; font-weight: 700; letter-spacing: -0.03em; }
@media (min-width: 640px) {
  .steps { grid-template-columns: 1fr 1fr; }
  .steps li { padding: 1.5rem 1rem; border-top: 0; }
  .steps li:nth-child(even) { border-left: 1px solid var(--border); }
  .steps li:nth-child(n+3) { border-top: 1px solid var(--border); }
}
@media (min-width: 1024px) {
  .steps { grid-template-columns: repeat(5, 1fr); }
  .steps li { border-left: 1px solid var(--border); border-top: 0; }
  .steps li:first-child { border-left: 0; }
}

.about {
  display: grid;
  gap: 2.5rem;
  align-items: center;
}
@media (min-width: 1024px) {
  .about { grid-template-columns: 0.85fr 1.15fr; }
}
.pixel {
  width: min(100%, 20rem);
  margin-inline: auto;
  padding: 6px;
  border-radius: var(--radius);
  background:
    linear-gradient(90deg, color-mix(in oklab, var(--accent) 55%, transparent) 1px, transparent 1px) 0 0 / 10px 10px,
    linear-gradient(var(--accent) 1px, transparent 1px) 0 0 / 10px 10px,
    var(--elevated);
  box-shadow: var(--shadow), var(--lift);
}
.pixel img, .pixel svg {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 6px;
}

.tags { display: flex; flex-wrap: wrap; gap: 0.6rem; margin-top: 2rem; }
.tags li {
  list-style: none;
  border-radius: 999px;
  background: var(--surface);
  box-shadow: var(--shadow);
  padding: 0.5rem 1rem;
  font-size: 0.9rem;
  color: var(--fg-soft);
}
.tags { padding: 0; }

.quote-slot {
  margin: 1.15rem 0 0;
  min-height: 3.5rem;
  font-family: var(--font-display);
  font-size: 1.45rem;
  line-height: 1.25;
  color: var(--subtle);
}
.who {
  margin: 1.25rem 0 0;
  font-size: 0.95rem;
  color: var(--fg-soft);
}

.faq-grid {
  display: grid;
  gap: 2.5rem;
}
@media (min-width: 1024px) {
  .faq-grid { grid-template-columns: 0.8fr 1.2fr; }
}
.faq-item { border-bottom: 1px solid var(--border); }
.faq-item button {
  width: 100%;
  min-height: 56px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  text-align: left;
  background: none;
  border: 0;
  padding: 1rem 0;
  font-size: 1rem;
  font-weight: 500;
}
.chev { transition: transform 250ms var(--ease); color: var(--muted); }
.faq-item.open .chev { transform: rotate(180deg); }
.faq-panel { display: none; color: var(--muted); font-size: 0.95rem; padding-bottom: 1rem; }
.faq-item.open .faq-panel { display: block; }

.cta {
  background: var(--surface);
  box-shadow: var(--shadow);
  border-radius: var(--radius-lg);
  padding: clamp(2rem, 5vw, 3.5rem);
}

footer.site {
  border-top: 1px solid var(--border);
  padding: 2.5rem 0;
}
.foot {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
@media (min-width: 640px) {
  .foot { flex-direction: row; justify-content: space-between; align-items: flex-start; }
}
.foot nav { display: flex; flex-wrap: wrap; gap: 0.6rem 1.25rem; }
.foot nav a { color: var(--muted); text-decoration: none; font-size: 0.9rem; }
.foot nav a:hover { color: var(--fg); }
.foot .meta { color: var(--subtle); font-size: 0.8rem; }
.xlink { font-family: var(--font-mono); font-size: 0.85rem; color: var(--muted); text-decoration: none; }
.xlink:hover { color: var(--fg); }

.toast {
  position: fixed;
  left: 50%;
  bottom: 1.25rem;
  z-index: 90;
  transform: translateX(-50%) translateY(8px);
  max-width: min(28rem, calc(100% - 2rem));
  padding: 0.75rem 1rem;
  border-radius: 8px;
  background: var(--fg);
  color: var(--bg);
  font-size: 0.875rem;
  font-weight: 600;
  box-shadow: var(--shadow);
  opacity: 0;
  pointer-events: none;
  transition: opacity 200ms var(--ease), transform 200ms var(--ease);
}
.toast.show {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

.reveal {
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 500ms var(--ease), transform 500ms var(--ease);
}
.reveal.in { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; }
  .dot::after { animation: none; display: none; }
}

@media (max-width: 430px) {
  .display { font-size: clamp(2.6rem, 15vw, 3.3rem); }
  .btn-lg { width: 100%; }
  .actions { gap: 0.6rem; }
  .wrap { width: min(var(--max), calc(100% - 1.5rem)); }
  .stat { padding: 1.25rem 0.75rem; }
  .stat b { font-size: 1.7rem; }
}
