/* ============================================================
   GENERATED from lp/kit/css/ + lp/brands/sg/theme.css by
   scripts/build_sg_css.py — DO NOT HAND-EDIT. Edit the kit source
   or the SG theme seam and rebuild.
   ============================================================ */
/* ============================================================
   Mixtape LP KIT — core (SOURCE: lp/kit/css/lp-core.css)
   The website artifact (website/assets/css/mixtape.css) is COMPILED from this
   file by scripts/build_lp_css.py — do not hand-edit the artifact.
   One token core, two kits: every :root value below maps to a design-system
   primitive/role (design-system/tokens/) — the mapping is annotated per line
   and /design-status can check alignment. LP pages stay ONE-REQUEST css
   (no runtime @import), self-hosted Geist (../fonts/), SEO-safe.
   Radius rule: buttons = pill, cards = 14px, inputs = 10px.
   --font-sans is the PER-BRAND SEAM (lp/brands/<brand>/theme.css overrides).
   ============================================================ */

/* Geist — self-hosted, production's exact files (weights the kit uses) */
@font-face { font-family: 'Geist'; src: url('../fonts/Geist-Regular-BF6569491e3eff1.otf') format('opentype'); font-weight: 400; font-display: swap; }
@font-face { font-family: 'Geist'; src: url('../fonts/Geist-Medium-BF6569491e1c281.otf') format('opentype'); font-weight: 500; font-display: swap; }
@font-face { font-family: 'Geist'; src: url('../fonts/Geist-Bold-BF6569491da5a14.otf') format('opentype'); font-weight: 700; font-display: swap; }
@font-face { font-family: 'Geist'; src: url('../fonts/Geist-UltraBlack-BF6569491ecdc4d.otf') format('opentype'); font-weight: 900; font-display: swap; }

:root {
  --bg: #0b0b0d;                          /* = --surface-0 dark (was #0b0c0f)          */
  --bg-raised: #131319;                   /* = --surface-1     (was #111218)           */
  --bg-panel: #1b1b22;                    /* = --surface-2     (was #15161d)           */
  --line: rgba(255, 255, 255, 0.09);      /* = --line dark                              */
  --line-strong: rgba(255, 255, 255, 0.16); /* = --line-2                               */
  --text: #f2f2f5;                        /* = --t1            (was #f1f2f6)           */
  --text-2: #a6a6b0;                      /* = --t2            (was #a2a7b4)           */
  --text-3: #6c6c78;                      /* = --t3            (was #6d7280)           */
  --accent: #7869FE;                      /* = --purple-400 = dark --primary (was #8b7cff, RETIRED) */
  --accent-strong: #9589FE;               /* = --purple-300    (was #a99cff)           */
  --accent-ink: #09090F;                  /* = --neutral-950 (prod --primary-foreground dark) */
  --accent-dim: rgba(120, 105, 254, 0.14); /* purple-400 @ 14%                          */
  --good: #5ad19a;                        /* = --ok dark       (was #58c98f)           */
  --radius-card: 14px;                    /* = --r-xl / --r-card                        */
  --radius-input: 10px;                   /* LP-specific (between --r-md and --r-lg)    */
  --font-sans: "Geist", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;  /* per-brand seam */
  --font-mono: ui-monospace, "SF Mono", "Menlo", "Consolas", monospace;
  --w-page: 1200px;                       /* marketing container                        */
  --ease: cubic-bezier(0.22, 1, 0.36, 1); /* = --ease-quint    (was 0.16,1,0.3,1)      */
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-sans);
  font-size: 17px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img, video, svg { max-width: 100%; height: auto; display: block; }
a { color: inherit; }
h1, h2, h3, p { margin: 0; }
button { font: inherit; }

/* ---------- Layout ---------- */
.wrap { max-width: var(--w-page); margin: 0 auto; padding: 0 24px; }
.section { padding: 96px 0; }
.section--tight { padding: 64px 0; }
.section--band { background: var(--bg-raised); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }

/* ---------- Type ---------- */
.display {
  font-weight: 900;
  letter-spacing: -0.03em;
  line-height: 1.04;
  font-size: clamp(2.2rem, 4.4vw, 3.5rem);
  text-wrap: balance;
}
.display .accent { color: var(--accent); }
.h2 {
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.1;
  font-size: clamp(1.7rem, 3.4vw, 2.5rem);
  text-wrap: balance;
}
.h3 { font-weight: 700; font-size: 1.15rem; letter-spacing: -0.01em; }
.lede { color: var(--text-2); font-size: 1.15rem; line-height: 1.55; max-width: 34em; }
.body-2 { color: var(--text-2); max-width: 62ch; }
.small { font-size: 0.85rem; color: var(--text-3); line-height: 1.5; }
.mono { font-family: var(--font-mono); font-variant-numeric: tabular-nums; }
.eyebrow {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--accent);
}

/* ---------- Nav ---------- */
.nav {
  position: sticky; top: 0; z-index: 40;
  height: 68px;
  display: flex; align-items: center;
  background: rgba(11, 12, 15, 0.82);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s var(--ease);
}
.nav.scrolled { border-bottom-color: var(--line); }
.nav .wrap { width: 100%; display: flex; align-items: center; justify-content: space-between; }
.brand { display: flex; align-items: center; gap: 10px; text-decoration: none; }
.brand-mark { width: 26px; height: 26px; flex: none; }
.brand-name { font-weight: 900; letter-spacing: 0.02em; font-size: 1.02rem; }

/* ---------- Buttons (pill) ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  border-radius: 999px;
  padding: 13px 26px;
  font-weight: 700; font-size: 0.98rem;
  text-decoration: none; cursor: pointer;
  border: 1px solid transparent;
  transition: transform 0.15s var(--ease), background 0.2s var(--ease), border-color 0.2s var(--ease);
  white-space: nowrap;
}
.btn:active { transform: translateY(1px) scale(0.99); }
.btn--primary { background: var(--accent); color: var(--accent-ink); }
.btn--primary:hover { background: var(--accent-strong); }
.btn--ghost { border-color: var(--line-strong); color: var(--text); background: transparent; }
.btn--ghost:hover { border-color: var(--accent); color: var(--accent-strong); }
.btn--sm { padding: 9px 18px; font-size: 0.9rem; }

/* ---------- Hero ---------- */
.hero { padding: 72px 0 88px; }
.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 7fr) minmax(0, 5fr);
  gap: 56px;
  align-items: center;
}
.hero-copy > * + * { margin-top: 22px; }
.hero-ctas { display: flex; gap: 12px; flex-wrap: wrap; }

/* ---------- Stat band ---------- */
.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-top: 1px solid var(--line);
}
.stat { padding: 28px 24px 28px 0; }
.stat + .stat { border-left: 1px solid var(--line); padding-left: 24px; }
.stat-n {
  font-family: var(--font-mono);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 700;
  letter-spacing: -0.02em;
}
.stat-l { color: var(--text-3); font-size: 0.85rem; margin-top: 6px; line-height: 1.4; }

/* ---------- Cards / panels ---------- */
.panel {
  background: var(--bg-panel);
  border: 1px solid var(--line);
  border-radius: var(--radius-card);
  padding: 28px;
}
.panel--accent { border-color: color-mix(in srgb, var(--accent) 35%, transparent); background: linear-gradient(180deg, color-mix(in srgb, var(--accent) 8%, transparent), color-mix(in srgb, var(--accent) 2%, transparent)), var(--bg-panel); }

/* ---------- Findings list (report) ---------- */
.findings { border-top: 1px solid var(--line); }
.finding {
  display: grid;
  grid-template-columns: minmax(0, 5fr) minmax(0, 7fr);
  gap: 24px;
  padding: 30px 0;
  border-bottom: 1px solid var(--line);
  align-items: baseline;
}
.finding-title { font-weight: 700; font-size: 1.15rem; letter-spacing: -0.01em; }
.finding-body { color: var(--text-2); }
.finding--locked .finding-title,
.finding--locked .finding-body { filter: blur(5px); user-select: none; pointer-events: none; }
.finding--locked { position: relative; }
.finding-lock {
  position: absolute; right: 0; top: 50%; transform: translateY(-50%);
  font-size: 0.78rem; font-weight: 700; color: var(--accent);
  border: 1px solid color-mix(in srgb, var(--accent) 40%, transparent);
  border-radius: 999px; padding: 5px 13px;
  background: var(--bg);
}

/* ---------- Chart shared ---------- */
.chart-caption { margin-top: 14px; }

/* ---------- Filmstrip (scroll-snap) ---------- */
.filmstrip {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: min(420px, 78vw);
  gap: 20px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding-bottom: 16px;
  scrollbar-width: thin;
  scrollbar-color: var(--line-strong) transparent;
}
.filmstrip figure { margin: 0; scroll-snap-align: start; }
.filmstrip img {
  border-radius: var(--radius-card);
  border: 1px solid var(--line);
  width: 100%;
}
.filmstrip figcaption { padding: 12px 4px 0; color: var(--text-2); font-size: 0.92rem; }
.filmstrip figcaption strong { color: var(--text); }

/* ---------- Compare table ---------- */
.compare { width: 100%; border-collapse: collapse; font-size: 0.95rem; }
.compare th, .compare td { text-align: left; padding: 16px 18px; vertical-align: top; }
.compare thead th { color: var(--text-3); font-weight: 500; font-size: 0.85rem; border-bottom: 1px solid var(--line-strong); }
.compare thead th.hl, .compare td.hl { color: var(--text); }
.compare td.hl { background: var(--accent-dim); font-weight: 500; }
.compare tbody tr + tr td { border-top: 1px solid var(--line); }
.compare td:first-child { color: var(--text-3); }
.compare-scroll { overflow-x: auto; border: 1px solid var(--line); border-radius: var(--radius-card); }
.compare-scroll .compare { min-width: 640px; }

/* ---------- Question rows (grammar) ---------- */
.qrow {
  display: flex; align-items: baseline; justify-content: space-between; gap: 24px;
  padding: 26px 0;
  border-bottom: 1px solid var(--line);
}
.qrow-q {
  font-weight: 900; letter-spacing: -0.02em;
  font-size: clamp(1.3rem, 2.6vw, 2rem);
}
.qrow-f { flex: none; font-size: 0.85rem; font-weight: 700; color: var(--accent); text-align: right; }
.qrow:hover .qrow-q { color: var(--accent-strong); }

/* ---------- Chips ---------- */
.chips { display: flex; flex-wrap: wrap; gap: 10px; }
.chip {
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  padding: 8px 16px;
  font-size: 0.9rem;
  color: var(--text-2);
}

/* ---------- Launch-grid viz (hit-rate) ---------- */
.launch-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(26px, 1fr));
  gap: 6px;
}
.launch-grid i {
  aspect-ratio: 1;
  border-radius: 5px;
  background: var(--accent);
  opacity: 0.85;
}
.launch-grid i.dead { background: #262833; opacity: 1; }
.legend { display: flex; gap: 22px; margin-top: 16px; flex-wrap: wrap; }
.legend span { display: inline-flex; align-items: center; gap: 8px; font-size: 0.85rem; color: var(--text-2); }
.legend i { width: 12px; height: 12px; border-radius: 3px; display: inline-block; }

/* ---------- Steps ---------- */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.step { border-top: 2px solid var(--accent); padding-top: 18px; }
.step .h3 { margin-bottom: 8px; }

/* ---------- Forms ---------- */
.form { display: grid; gap: 18px; }
.form-row { display: grid; gap: 7px; }
.form-row label { font-size: 0.88rem; font-weight: 700; }
.form-row .hint { font-size: 0.8rem; color: var(--text-3); }
.form input, .form select {
  width: 100%;
  background: var(--bg);
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-input);
  color: var(--text);
  padding: 13px 15px;
  font: inherit;
  font-size: 0.98rem;
}
.form input::placeholder { color: var(--text-3); }
.form input:focus, .form select:focus {
  outline: 2px solid var(--accent);
  outline-offset: 1px;
  border-color: transparent;
}
.form .error { display: none; font-size: 0.82rem; color: #ff8f8f; }
.form-row.invalid .error { display: block; }
.form-row.invalid input { border-color: #ff8f8f; }
.form-inline { display: flex; gap: 10px; }
.form-inline input { flex: 1; }
.form-success {
  display: none;
  border: 1px solid rgba(88, 201, 143, 0.4);
  background: rgba(88, 201, 143, 0.08);
  border-radius: var(--radius-card);
  padding: 22px 24px;
}
.form-success strong { color: var(--good); }
form.done .form-success { display: block; }
form.done .form-body { display: none; }

/* ---------- CTA band ---------- */
.cta-band {
  border: 1px solid color-mix(in srgb, var(--accent) 32%, transparent);
  border-radius: var(--radius-card);
  background:
    radial-gradient(120% 180% at 85% -20%, color-mix(in srgb, var(--accent) 18%, transparent), transparent 60%),
    var(--bg-panel);
  padding: 56px;
  display: grid;
  grid-template-columns: minmax(0, 7fr) minmax(0, 5fr);
  gap: 48px;
  align-items: center;
}

/* ---------- Footer ---------- */
.footer { border-top: 1px solid var(--line); padding: 56px 0 40px; margin-top: 40px; }
.footer-grid { display: grid; grid-template-columns: minmax(0, 6fr) minmax(0, 3fr) minmax(0, 3fr); gap: 40px; }
.footer h4 { margin: 0 0 14px; font-size: 0.85rem; color: var(--text-3); font-weight: 700; }
.footer ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 9px; }
.footer a { color: var(--text-2); text-decoration: none; font-size: 0.93rem; }
.footer a:hover { color: var(--accent-strong); }
.footer-base { margin-top: 44px; padding-top: 20px; border-top: 1px solid var(--line); display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; }

/* ---------- Reveal motion ---------- */
@media (prefers-reduced-motion: no-preference) {
  .reveal { opacity: 0; transform: translateY(22px); transition: opacity 0.7s var(--ease), transform 0.7s var(--ease); }
  .reveal.in { opacity: 1; transform: none; }
  .reveal-d1 { transition-delay: 0.08s; }
  .reveal-d2 { transition-delay: 0.16s; }
}

/* ---------- Responsive ---------- */
@media (max-width: 960px) {
  .hero-grid, .cta-band { grid-template-columns: 1fr; gap: 36px; }
  .stats { grid-template-columns: repeat(2, 1fr); }
  .stat + .stat { border-left: none; padding-left: 0; }
  .stat:nth-child(even) { border-left: 1px solid var(--line); padding-left: 24px; }
  .stat:nth-child(n+3) { border-top: 1px solid var(--line); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .finding { grid-template-columns: 1fr; gap: 8px; }
  .finding--locked { padding-right: 110px; }
}
@media (max-width: 640px) {
  .section { padding: 64px 0; }
  .hero { padding: 44px 0 64px; }
  .steps { grid-template-columns: 1fr; }
  .cta-band { padding: 32px 24px; }
  .qrow { flex-direction: column; gap: 6px; }
  .qrow-f { text-align: left; }
  .form-inline { flex-direction: column; }
  .footer-grid { grid-template-columns: 1fr; }
}


/* ============================================================
   Mixtape LP KIT — organisms 4b (SOURCE: lp/kit/css/organisms-4b.css)
   Phase 4b GAP ORGANISMS: faq-01-accordion (.faq-), proof-02-review-grid
   (.rvg-), offer-02-sticky-banner (.offerbar-), solution-02-two-panel-gallery
   (.sol-), enemy-01-high-contrast (.enemy-) + new ATOMS: .star-row, .price,
   .guarantee-chip, .review-card.
   Compiled into website/assets/css/mixtape.css by scripts/build_lp_css.py —
   do not hand-edit the artifact. Tokens only (lp-core.css :root): no raw
   hexes, no new fonts. Mobile collapse for these organisms: 720px.
   ============================================================ */

/* ---------- Atoms ---------- */
.star-row { display: inline-flex; gap: 3px; color: var(--good); }
.star-row svg { width: 15px; height: 15px; flex: none; }

.price {
  font-family: var(--font-mono);
  font-variant-numeric: tabular-nums;
  font-weight: 700;
  font-size: 1.1rem;
  letter-spacing: -0.01em;
  color: var(--text);
}

.guarantee-chip {
  display: inline-flex; align-items: center; gap: 7px;
  border: 1px solid color-mix(in srgb, var(--good) 45%, transparent);
  border-radius: 999px;
  padding: 5px 13px;
  font-size: 0.8rem; font-weight: 700;
  color: var(--good);
  white-space: nowrap;
}
.guarantee-chip::before { content: "✓"; }

.review-card {
  margin: 0;
  background: var(--bg-panel);
  border: 1px solid var(--line);
  border-radius: var(--radius-card);
  padding: 24px;
  display: flex; flex-direction: column; gap: 14px;
}

/* ---------- FAQ accordion (faq-01-accordion) ---------- */
.faq { border-top: 1px solid var(--line); }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-q {
  list-style: none;
  cursor: pointer;
  display: flex; align-items: baseline; justify-content: space-between; gap: 24px;
  padding: 22px 0;
  font-weight: 700; font-size: 1.08rem; letter-spacing: -0.01em;
  transition: color 0.2s var(--ease);
}
.faq-q::-webkit-details-marker { display: none; }
.faq-q::after {
  content: "+";
  flex: none;
  font-family: var(--font-mono);
  font-weight: 400; font-size: 1.3rem; line-height: 1;
  color: var(--text-3);
  transition: color 0.2s var(--ease);
}
.faq-item[open] .faq-q::after { content: "−"; color: var(--accent); }
.faq-q:hover { color: var(--accent-strong); }
.faq-q:focus-visible { outline: 2px solid var(--accent); outline-offset: 4px; border-radius: 4px; }
.faq-a { color: var(--text-2); max-width: 62ch; padding: 0 0 24px; }

/* ---------- Review grid (proof-02-review-grid) ---------- */
.rvg {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(300px, 100%), 1fr));
  gap: 20px;
}
.rvg-quote { margin: 0; flex: 1; font-size: 1.02rem; line-height: 1.55; color: var(--text); }
.rvg-quote::before { content: "\201C"; }
.rvg-quote::after { content: "\201D"; }
.rvg-meta {
  font-family: var(--font-mono);
  font-variant-numeric: tabular-nums;
  font-size: 0.78rem;
  color: var(--text-3);
}

/* ---------- Sticky offer bar (offer-02-sticky-banner) ---------- */
.offerbar {
  position: sticky;
  bottom: 0;
  z-index: 30; /* below .nav (40) */
  background: var(--bg-raised);
  border-top: 1px solid var(--line-strong);
}
.offerbar-inner {
  display: flex; align-items: center; gap: 18px;
  padding-top: 14px; padding-bottom: 14px;
}
.offerbar-product { font-weight: 700; letter-spacing: -0.01em; min-width: 0; }
.offerbar-btn { margin-left: auto; }

/* ---------- Solution two-panel gallery (solution-02-two-panel-gallery) ---------- */
.sol-grid {
  display: grid;
  grid-template-columns: minmax(0, 5fr) minmax(0, 7fr);
  gap: 56px;
  align-items: center;
}
.sol-copy > * + * { margin-top: 20px; }
.sol-benefits { list-style: none; margin: 0; padding: 0; display: grid; gap: 14px; }
.sol-benefits li { position: relative; padding-left: 30px; color: var(--text-2); }
.sol-benefits li::before {
  content: "";
  position: absolute; left: 1px; top: 0.42em;
  width: 13px; height: 7px;
  border-left: 2px solid var(--good);
  border-bottom: 2px solid var(--good);
  transform: rotate(-45deg);
}
.sol-gallery { display: grid; gap: 14px; }
.sol-hero { margin: 0; }
.sol-hero img { width: 100%; border-radius: var(--radius-card); border: 1px solid var(--line); }
.sol-thumbs { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.sol-thumb { margin: 0; }
.sol-thumb img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: var(--radius-input);
  border: 1px solid var(--line);
}

/* ---------- Enemy contrast panels (enemy-01-high-contrast) ---------- */
.enemy-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; align-items: stretch; }
.enemy-panel { display: flex; flex-direction: column; gap: 14px; padding: 32px; }
.enemy-panel--old { background: var(--bg-raised); }
.enemy-panel--new {
  border-color: color-mix(in srgb, var(--accent) 40%, transparent);
  background:
    linear-gradient(180deg, color-mix(in srgb, var(--accent) 9%, transparent), transparent 70%),
    var(--bg-panel);
}
.enemy-label { font-family: var(--font-mono); font-size: 0.8rem; letter-spacing: 0.04em; }
.enemy-label--old { color: var(--text-3); }
.enemy-label--new { color: var(--accent-strong); }
.enemy-claim {
  font-weight: 700;
  font-size: clamp(1.25rem, 2.4vw, 1.6rem);
  letter-spacing: -0.02em;
  line-height: 1.2;
}
.enemy-panel--old .enemy-claim { color: var(--text-2); }
.enemy-body { color: var(--text-2); }

/* ---------- Responsive (4b organisms collapse at 720px) ---------- */
@media (max-width: 720px) {
  .sol-grid { grid-template-columns: 1fr; gap: 36px; }
  .enemy-grid { grid-template-columns: 1fr; }
  .enemy-panel { padding: 26px 24px; }
  .offerbar-inner { flex-wrap: wrap; gap: 8px 14px; padding-top: 12px; padding-bottom: 12px; }
  .offerbar-btn { flex: 1 1 100%; margin-left: 0; }
}


/* ============================================================
   Social Generation — brand theme seam (lp/brands/sg/theme.css)
   Appended AFTER lp-core.css by scripts/build_sg_css.py.
   Language = the SG services deck v2 (social_generation_services.md
   §Artifacts): off-white canvas #FAF8F4, near-black ink, indigo
   #6250FE as the lone accent, Helvetica Neue. Light theme — the
   inverse of the Mixtape LP kit's dark canvas.
   ============================================================ */

:root {
  --bg: #faf8f4;                            /* deck canvas                      */
  --bg-raised: #ffffff;                     /* cards / bands                    */
  --bg-panel: #f2efe8;                      /* inset panels                     */
  --line: rgba(19, 19, 22, 0.10);
  --line-strong: rgba(19, 19, 22, 0.20);
  --text: #131316;                          /* the one black                    */
  --text-2: #55555e;
  --text-3: #8b8b94;
  --accent: #6250fe;                        /* deck indigo — the lone accent    */
  --accent-strong: #4534f0;                 /* hover/darker on light canvas     */
  --accent-ink: #ffffff;
  --accent-dim: rgba(98, 80, 254, 0.10);
  --good: #1f7a52;
  --font-sans: "Helvetica Neue", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
}

/* Dark-hardcoded spots in the core that tokens don't reach */
.nav {
  background: rgba(250, 248, 244, 0.85);
}
.display { font-weight: 700; }              /* Geist 900 reads heavy in Helvetica — deck uses bold */
.brand-name { font-weight: 700; }

/* On a light canvas, raised cards need a real shadow where the dark
   kit used luminance */
.card-shadow, .section--band .panel {
  box-shadow: 0 1px 2px rgba(19, 19, 22, 0.05), 0 8px 28px rgba(19, 19, 22, 0.06);
}

/* Responsive nav: text links hide on small screens, the CTA label
   shortens on the smallest (the full row is 430px — wider than a phone) */
.nav-links { display: flex; align-items: center; gap: 22px; }
.nav-cta-short { display: none; }
@media (max-width: 860px) {
  .nav-links > a.small { display: none; }
}
@media (max-width: 480px) {
  .nav-cta-long { display: none; }
  .nav-cta-short { display: inline; }
}
