:root {
  color-scheme: dark;
  --ink: #f5f0e8;
  --muted: #c9c0b4;
  --quiet: #8e867d;
  --night: #11100f;
  --panel: #1a1715;
  --line: rgba(245, 240, 232, 0.18);
  --accent: #e85d32;
  --accent-strong: #ff794d;
  --shadow: rgba(0, 0, 0, 0.42);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

body[data-accent="violet"] {
  --accent: #af7df0;
  --accent-strong: #d2adff;
}

body[data-accent="steel"] {
  --accent: #7fc3c0;
  --accent-strong: #a8e8e1;
}

body[data-accent="mint"] {
  --accent: #8ccd78;
  --accent-strong: #b8f09e;
}

body[data-accent="blood"] {
  --accent: #c91f3f;
  --accent-strong: #ff5b74;
}

body[data-accent="relic"] {
  --accent: #d19a3a;
  --accent-strong: #ffd27a;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  margin: 0;
  background: var(--night);
  color: var(--ink);
}

a {
  color: inherit;
  text-decoration: none;
}

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

.topbar {
  position: fixed;
  z-index: 20;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-height: 72px;
  padding: 18px clamp(18px, 4vw, 56px);
  background: linear-gradient(180deg, rgba(17, 16, 15, 0.92), rgba(17, 16, 15, 0));
}

body[data-review="true"] .topbar {
  top: 50px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  letter-spacing: 0;
  white-space: nowrap;
}

.brand-mark {
  width: 30px;
  height: 30px;
  display: block;
  flex: none;
}

.brand-name {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 16px;
  font-weight: 800;
  letter-spacing: -0.01em;
  color: var(--ink);
  line-height: 1;
}

.brand-tag {
  padding-left: 8px;
  border-left: 1px solid color-mix(in srgb, var(--ink) 22%, transparent);
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted);
}

.topbar > span {
  color: var(--muted);
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.review-bar {
  position: fixed;
  z-index: 40;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 50px;
  padding: 8px clamp(12px, 3vw, 32px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.3);
  background: #f3eee7;
  color: #1b1714;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.22);
  overflow-x: auto;
}

.review-bar strong {
  flex: 0 0 auto;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.review-group {
  display: flex;
  flex: 0 0 auto;
  gap: 6px;
}

.review-group a {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  border: 1px solid rgba(27, 23, 20, 0.16);
  border-radius: 999px;
  padding: 0 11px;
  color: #1b1714;
  font-size: 13px;
  font-weight: 800;
  white-space: nowrap;
}

.review-group a.active {
  border-color: #1b1714;
  background: #1b1714;
  color: #f3eee7;
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(560px, 0.98fr) minmax(420px, 1.02fr);
  min-height: 92vh;
  overflow: hidden;
  background:
    radial-gradient(circle at 18% 28%, rgba(232, 93, 50, 0.16), transparent 30%),
    linear-gradient(135deg, #181411 0%, #11100f 48%, #211b17 100%);
}

body[data-accent="violet"] .hero {
  background:
    radial-gradient(circle at 18% 28%, rgba(175, 125, 240, 0.16), transparent 30%),
    linear-gradient(135deg, #181411 0%, #11100f 48%, #201a24 100%);
}

body[data-accent="steel"] .hero {
  background:
    radial-gradient(circle at 18% 28%, rgba(127, 195, 192, 0.16), transparent 30%),
    linear-gradient(135deg, #181411 0%, #11100f 48%, #182020 100%);
}

body[data-accent="mint"] .hero {
  background:
    radial-gradient(circle at 18% 28%, rgba(140, 205, 120, 0.16), transparent 30%),
    linear-gradient(135deg, #181411 0%, #11100f 48%, #172015 100%);
}

body[data-accent="blood"] .hero {
  background:
    radial-gradient(circle at 18% 28%, rgba(201, 31, 63, 0.18), transparent 30%),
    linear-gradient(135deg, #190f11 0%, #11100f 48%, #221316 100%);
}

body[data-accent="relic"] .hero {
  background:
    radial-gradient(circle at 18% 28%, rgba(209, 154, 58, 0.18), transparent 30%),
    linear-gradient(135deg, #17120d 0%, #11100f 48%, #221a12 100%);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    linear-gradient(90deg, rgba(17, 16, 15, 0.97) 0%, rgba(17, 16, 15, 0.82) 30%, rgba(17, 16, 15, 0.32) 54%, rgba(17, 16, 15, 0) 80%),
    linear-gradient(0deg, var(--night) 0%, rgba(17, 16, 15, 0) 16%),
    var(--hero-image) center right / cover no-repeat;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(180deg, rgba(17, 16, 15, 0.12), rgba(17, 16, 15, 0) 40%, rgba(17, 16, 15, 0.62));
  pointer-events: none;
}

.hero-copy {
  position: relative;
  z-index: 3;
  grid-column: 1;
  grid-row: 1;
  align-self: center;
  max-width: 720px;
  padding: 116px clamp(22px, 5vw, 70px) 68px;
}

.eyebrow {
  margin: 0 0 16px;
  color: var(--accent-strong);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

h1,
h2 {
  margin: 0;
  letter-spacing: 0;
  line-height: 0.98;
}

h1 {
  max-width: 780px;
  font-size: clamp(42px, 5.2vw, 68px);
}

h2 {
  font-size: clamp(32px, 5vw, 62px);
}

.lead {
  max-width: 640px;
  margin: 24px 0 0;
  color: var(--muted);
  font-size: clamp(17px, 1.55vw, 20px);
  line-height: 1.45;
}

.signal-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 16px;
  margin-top: 18px;
}

.signal-row span {
  position: relative;
  padding-left: 13px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 850;
  line-height: 1.35;
  cursor: default;
}

.signal-row span::before {
  content: "";
  position: absolute;
  top: 0.48em;
  left: 0;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--accent-strong);
}

.founder-benefits {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
  max-width: 650px;
  margin-top: 18px;
}

.founder-benefits div {
  min-height: 72px;
  border-left: 2px solid var(--accent);
  padding: 4px 0 4px 12px;
  background: transparent;
  cursor: default;
}

.founder-benefits strong {
  display: block;
  color: var(--ink);
  font-size: 14px;
  line-height: 1.28;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  border: 1px solid var(--line);
  padding: 0 18px;
  border-radius: 6px;
  font-weight: 800;
  transition: transform 160ms ease, border-color 160ms ease, background 160ms ease;
}

.button:hover {
  transform: translateY(-1px);
}

.button.primary {
  border-color: transparent;
  background: var(--accent);
  color: #1a0f0b;
  box-shadow: 0 12px 34px color-mix(in srgb, var(--accent) 30%, transparent);
  transition: transform 160ms ease, background 200ms ease, box-shadow 260ms ease;
}

.button.primary:hover {
  background: var(--accent-strong);
  transform: translateY(-2px);
  box-shadow:
    0 18px 50px color-mix(in srgb, var(--accent) 58%, transparent),
    inset 0 1px 0 rgba(255, 205, 214, 0.55);
}

.button.secondary {
  background: rgba(245, 240, 232, 0.06);
  color: var(--ink);
}

.button.secondary:hover {
  border-color: color-mix(in srgb, var(--accent) 55%, transparent);
  background: color-mix(in srgb, var(--accent) 18%, rgba(245, 240, 232, 0.06));
  box-shadow: 0 10px 30px color-mix(in srgb, var(--accent) 22%, transparent);
}

.price-line {
  max-width: 560px;
  margin: 16px 0 0;
  color: var(--quiet);
  font-size: 14px;
  line-height: 1.5;
}

.free-hint {
  display: inline-block;
  margin-top: 14px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 800;
  border-bottom: 1px solid color-mix(in srgb, var(--accent) 45%, transparent);
  padding-bottom: 2px;
  transition: color 160ms ease, border-color 160ms ease;
}

.free-hint:hover {
  color: var(--ink);
  border-color: var(--accent);
}

.free-hint strong {
  color: var(--accent-strong);
}

.form-success {
  display: grid;
  gap: 10px;
  padding: 8px 0;
}

.form-success strong {
  font-size: 18px;
  color: var(--ink);
  line-height: 1.2;
}

.form-success p {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.5;
}

.form-success-email {
  color: var(--accent-strong);
  font-weight: 800;
}

.free-visual {
  margin: 0;
}

.free-visual img {
  display: block;
  width: 100%;
  max-width: 400px;
  height: auto;
  margin: 0 auto;
  filter: drop-shadow(0 22px 30px rgba(0, 0, 0, 0.55));
}

.mobile-sticky-cta {
  display: none;
}

.price-line strong {
  color: var(--ink);
}

.hero-art {
  position: relative;
  grid-column: 2;
  grid-row: 1;
  min-height: 560px;
  margin: 0;
  overflow: hidden;
  z-index: 2;
}

.hero-art img {
  width: 100%;
  height: 100%;
  min-height: 92vh;
  object-fit: cover;
  opacity: 0;
}

.proof-strip {
  position: relative;
  z-index: 4;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: #151311;
}

.proof-strip div {
  display: grid;
  gap: 8px;
  min-height: 116px;
  padding: 22px clamp(18px, 4vw, 46px);
  border-right: 1px solid var(--line);
  cursor: default;
}

.proof-strip div:last-child {
  border-right: 0;
}

.proof-strip strong {
  color: var(--accent-strong);
  font-size: 13px;
}

.proof-strip span {
  font-size: clamp(18px, 2vw, 24px);
  font-weight: 850;
}

.signup-band,
.product-proof,
.lore-band,
.visual-showcase,
.scenario-band,
.pricing-band,
.package-band,
.faq-band {
  display: grid;
  grid-template-columns: minmax(0, 0.75fr) minmax(320px, 1fr);
  gap: clamp(28px, 5vw, 64px);
  padding: clamp(56px, 8vw, 110px) clamp(22px, 5vw, 70px);
  border-top: 1px solid var(--line);
}

.signup-copy {
  max-width: 620px;
}

.signup-copy h2 {
  line-height: 1.04;
}

.signup-copy p {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.55;
}

.access-note {
  border-left: 3px solid var(--accent);
  padding-left: 12px;
  color: var(--quiet) !important;
  font-size: 14px !important;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  align-self: end;
}

.feature {
  min-height: 146px;
  border-top: 1px solid var(--line);
  padding: 18px 0 0;
  background: transparent;
  color: var(--ink);
  font-size: 18px;
  font-weight: 850;
  line-height: 1.35;
  cursor: default;
}

.signup-band {
  grid-template-columns: minmax(0, 600px) clamp(300px, 32vw, 400px);
  justify-content: center;
  align-items: center;
  background:
    linear-gradient(135deg, rgba(245, 240, 232, 0.045), transparent 42%),
    #11100f;
}

.signup-content {
  display: grid;
  gap: clamp(20px, 3vw, 30px);
}

.product-proof {
  grid-template-columns: minmax(300px, 0.68fr) minmax(0, 1.32fr);
  align-items: center;
  gap: clamp(28px, 4vw, 64px);
  background: #171513;
}

.proof-copy {
  max-width: 560px;
}

.proof-copy h2 {
  font-size: clamp(32px, 4.4vw, 54px);
  line-height: 1.04;
}

.proof-copy p:not(.eyebrow) {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.55;
}

.proof-sheet {
  margin: 0;
}

.proof-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 10px;
}
.proof-cell {
  display: grid;
  place-items: center;
  aspect-ratio: 1 / 1;
  background: #1b1816;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 6px;
}
.proof-cell img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.proof-sheet figcaption {
  max-width: 760px;
  margin-top: 12px;
  color: var(--quiet);
  font-size: 13px;
  line-height: 1.45;
}

.lore-band {
  position: relative;
  isolation: isolate;
  grid-template-columns: 1fr;
  gap: 0;
  min-height: clamp(500px, 45vw, 660px);
  padding: 0;
  overflow: hidden;
  background: #11100f;
}

.lore-band::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  display: block;
  background:
    linear-gradient(90deg, rgba(17, 16, 15, 0.94) 0%, rgba(17, 16, 15, 0.78) 33%, rgba(17, 16, 15, 0.22) 58%, rgba(17, 16, 15, 0.02) 100%),
    linear-gradient(0deg, rgba(17, 16, 15, 0.82) 0%, rgba(17, 16, 15, 0.08) 34%, rgba(17, 16, 15, 0) 100%);
  pointer-events: none;
}

.lore-hero-image {
  grid-column: 1 / -1;
  grid-row: 1;
  height: 100%;
  margin: 0;
  background: #11100f;
}

.lore-hero-image img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 0;
  object-fit: cover;
  object-position: center;
  transform: scaleX(-1);
}

.lore-copy,
.scenario-copy,
.pricing-head {
  max-width: 620px;
}

.lore-copy h2,
.scenario-copy h2,
.pricing-head h2 {
  font-size: clamp(32px, 4.4vw, 54px);
  line-height: 1.04;
}

.lore-copy p:not(.eyebrow),
.scenario-copy p:not(.eyebrow),
.pricing-head p:not(.eyebrow) {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.55;
}

.lore-cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  padding: 0 clamp(22px, 5vw, 70px) clamp(48px, 6vw, 82px);
}

.lore-copy {
  position: relative;
  z-index: 2;
  grid-column: 1;
  grid-row: 1;
  align-self: center;
  max-width: 590px;
  margin-left: clamp(22px, 5vw, 70px);
  padding: clamp(34px, 5vw, 70px) 0;
}

.lore-copy h2 {
  font-size: clamp(32px, 4vw, 50px);
}

.lore-cards div,
.scenario-cards div {
  border-left: 2px solid var(--accent);
  padding: 4px 0 4px 12px;
  background: transparent;
}

.lore-cards strong,
.lore-cards span,
.scenario-cards strong,
.scenario-cards span {
  display: block;
}

.lore-cards strong,
.scenario-cards strong {
  color: var(--ink);
  font-size: 15px;
}

.lore-cards span,
.scenario-cards span {
  margin-top: 4px;
  color: var(--quiet);
  font-size: 14px;
  line-height: 1.4;
}

.scenario-band {
  position: relative;
  isolation: isolate;
  grid-template-columns: 1fr;
  gap: 0;
  min-height: clamp(460px, 44vw, 600px);
  padding: 0;
  overflow: hidden;
  background: #171513;
}

.scenario-band::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  display: block;
  background:
    linear-gradient(90deg, rgba(17, 16, 15, 0.95) 0%, rgba(17, 16, 15, 0.82) 34%, rgba(17, 16, 15, 0.34) 62%, rgba(17, 16, 15, 0.05) 100%),
    linear-gradient(0deg, rgba(17, 16, 15, 0.74) 0%, rgba(17, 16, 15, 0.06) 38%, rgba(17, 16, 15, 0) 100%);
  pointer-events: none;
}

.scenario-cards {
  display: grid;
  gap: 10px;
  margin-top: 24px;
}

.scenario-bg {
  grid-column: 1 / -1;
  grid-row: 1;
  height: 100%;
  margin: 0;
  background: #171513;
}

.scenario-bg img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 0;
  object-fit: cover;
  object-position: center;
  transform: scaleX(-1);
}

.scenario-copy {
  position: relative;
  z-index: 2;
  grid-column: 1;
  grid-row: 1;
  align-self: center;
  max-width: 560px;
  margin-left: clamp(22px, 5vw, 70px);
  padding: clamp(34px, 5vw, 70px) 0;
}

.visual-showcase {
  grid-template-columns: minmax(280px, 0.85fr) minmax(0, 1.15fr);
  align-items: center;
  background:
    linear-gradient(135deg, color-mix(in srgb, var(--accent) 10%, transparent), transparent 40%),
    #11100f;
}

.showcase-copy {
  max-width: 560px;
}

.showcase-copy h2 {
  font-size: clamp(32px, 4.4vw, 54px);
  line-height: 1.04;
}

.showcase-copy p:not(.eyebrow) {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.55;
}

.showcase-media {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(220px, 0.8fr);
  gap: 14px;
  align-items: stretch;
}

.showcase-media.single {
  grid-template-columns: minmax(0, 1fr);
}

.showcase-media figure {
  margin: 0;
}

.showcase-media img {
  width: 100%;
  height: 100%;
  min-height: 240px;
  border: 1px solid rgba(245, 240, 232, 0.16);
  border-radius: 8px;
  background: #0f0e0d;
  box-shadow: 0 24px 70px var(--shadow);
  object-fit: cover;
}

.product-proof,
.lore-band,
.visual-showcase,
.scenario-band,
.pricing-band,
.package-band,
.signup-band,
.faq-band {
  scroll-margin-top: 70px;
}

.showcase-large img {
  aspect-ratio: 16 / 9;
}

.showcase-small img {
  aspect-ratio: 3 / 4;
  object-position: center;
}

.showcase-small.wide img {
  aspect-ratio: 16 / 9;
}

.section-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.section-actions.wide {
  grid-column: 1 / -1;
  margin-top: 0;
}

.package-band {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  background: #11100f;
}

.package-intro {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.9fr);
  gap: clamp(28px, 5vw, 64px);
  align-items: center;
}

.package-visual {
  margin: 0;
}

.package-visual img {
  display: block;
  width: 100%;
  height: auto;
  border: 1px solid rgba(245, 240, 232, 0.16);
  border-radius: 8px;
  background: #0f0e0d;
  box-shadow: 0 24px 70px var(--shadow);
}

.package-visual figcaption {
  margin-top: 10px;
  color: var(--quiet);
  font-size: 13px;
  line-height: 1.45;
}

.pricing-band {
  grid-template-columns: minmax(280px, 0.56fr) minmax(0, 1.44fr);
  align-items: start;
  background: #171513;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 300px));
  gap: 14px;
  justify-content: center;
}

.pricing-card {
  display: flex;
  flex-direction: column;
  gap: 14px;
  height: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 18px;
  background: rgba(245, 240, 232, 0.045);
}

.pricing-card .button {
  margin-top: auto;
}

.pricing-card.featured {
  border-color: color-mix(in srgb, var(--accent) 62%, var(--line));
  background:
    linear-gradient(145deg, color-mix(in srgb, var(--accent) 16%, transparent), rgba(245, 240, 232, 0.04));
}

.pricing-card-head {
  display: grid;
  gap: 10px;
}

.pricing-card-head span {
  width: fit-content;
  border: 1px solid color-mix(in srgb, var(--accent) 52%, transparent);
  border-radius: 999px;
  padding: 5px 9px;
  color: var(--accent-strong);
  font-size: 12px;
  font-weight: 850;
}

.pricing-card-head strong {
  font-size: 19px;
  line-height: 1.18;
}

.pricing-price {
  margin: 0;
  color: var(--ink);
  font-size: clamp(30px, 4vw, 42px);
  font-weight: 900;
  line-height: 0.96;
}

.pricing-card p:not(.pricing-price) {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.45;
}

.pricing-card ul {
  display: grid;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.pricing-card li {
  position: relative;
  padding-left: 16px;
  color: var(--ink);
  font-size: 13px;
  font-weight: 800;
  line-height: 1.35;
}

.pricing-card li::before {
  content: "";
  position: absolute;
  top: 0.48em;
  left: 0;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
}

.package-copy {
  max-width: 620px;
}

.package-copy h2,
.faq-copy h2 {
  font-size: clamp(32px, 4.4vw, 54px);
  line-height: 1.04;
}

.package-copy p:not(.eyebrow),
.faq-copy p:not(.eyebrow) {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.55;
}

.fit-note {
  border-left: 3px solid var(--accent);
  padding-left: 12px;
}

.included-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0 24px;
  border-top: 1px solid var(--line);
}

.drop-lineup {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 10px;
}

.drop-lineup div {
  min-height: 106px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 14px;
  background: linear-gradient(145deg, rgba(245, 240, 232, 0.065), rgba(245, 240, 232, 0.025));
  cursor: default;
}

.drop-lineup strong {
  display: block;
  color: var(--accent-strong);
  font-size: clamp(30px, 4vw, 44px);
  line-height: 0.95;
}

.drop-lineup span {
  display: block;
  margin-top: 10px;
  color: var(--ink);
  font-size: 13px;
  font-weight: 850;
  line-height: 1.25;
}

.included-grid div {
  min-height: 78px;
  border-bottom: 1px solid var(--line);
  padding: 16px 0 16px 22px;
  background: transparent;
  cursor: default;
  position: relative;
}

.included-grid div::before {
  content: "";
  position: absolute;
  top: 23px;
  left: 0;
  width: 8px;
  height: 8px;
  border: 2px solid var(--accent);
  border-radius: 50%;
}

.included-grid span {
  display: block;
  color: var(--ink);
  font-size: 15px;
  font-weight: 850;
  line-height: 1.32;
}

.lead-form {
  display: grid;
  gap: 16px;
  max-width: 620px;
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: clamp(18px, 3vw, 28px);
  background: rgba(26, 23, 21, 0.9);
  box-shadow: 0 24px 70px var(--shadow);
}

.email-capture {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 12px;
}

.qualification-block {
  display: grid;
  gap: 14px;
  border-top: 1px solid var(--line);
  padding-top: 16px;
}

.qualification-head {
  display: grid;
  gap: 4px;
}

.qualification-head strong {
  font-size: 17px;
}

.qualification-head span {
  color: var(--quiet);
  font-size: 13px;
}

.form-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.form-head strong {
  font-size: 20px;
  line-height: 1.15;
}

.form-head span {
  border-radius: 999px;
  padding: 7px 10px;
  background: rgba(245, 240, 232, 0.08);
  color: var(--accent-strong);
  font-size: 13px;
  font-weight: 850;
  white-space: nowrap;
}

.price-lockout {
  display: grid;
  grid-template-columns: auto auto 1fr auto;
  align-items: center;
  gap: 8px;
  border: 1px solid color-mix(in srgb, var(--accent) 46%, transparent);
  border-radius: 8px;
  padding: 11px 12px;
  background: color-mix(in srgb, var(--accent) 12%, transparent);
  color: var(--muted);
  font-size: 13px;
  line-height: 1.2;
}

.price-lockout span,
.price-lockout em {
  font-style: normal;
}

.price-lockout strong {
  color: var(--accent-strong);
  font-size: 22px;
  line-height: 1;
}

.price-lockout del {
  justify-self: end;
  color: var(--quiet);
  font-size: 17px;
  font-weight: 850;
  text-decoration-thickness: 2px;
}

label {
  display: grid;
  gap: 8px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 750;
}

input,
select {
  width: 100%;
  min-height: 48px;
  border: 1px solid rgba(245, 240, 232, 0.22);
  border-radius: 6px;
  padding: 0 12px;
  background: #100f0e;
  color: var(--ink);
  font: inherit;
}

input:focus,
select:focus {
  outline: 2px solid color-mix(in srgb, var(--accent) 70%, transparent);
  outline-offset: 2px;
  border-color: var(--accent);
}

.form-button {
  width: 100%;
  margin-top: 4px;
  cursor: pointer;
  font-size: 16px;
}

.form-note {
  margin: 0;
  color: var(--quiet);
  font-size: 13px;
  line-height: 1.45;
}

.faq-band {
  align-items: start;
  background: #171513;
}

.faq-copy {
  max-width: 560px;
}

.faq-list {
  display: grid;
  gap: 12px;
}

.faq-item {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(245, 240, 232, 0.04);
  overflow: hidden;
  transition: border-color 180ms ease, background 180ms ease;
}

.faq-item:has(.faq-question[aria-expanded="true"]) {
  border-color: color-mix(in srgb, var(--accent) 45%, var(--line));
  background: rgba(245, 240, 232, 0.06);
}

.faq-question {
  width: 100%;
  border: 0;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: 58px;
  padding: 16px 18px;
  background: transparent;
  color: var(--ink);
  font-size: 16px;
  font-weight: 850;
  line-height: 1.3;
  text-align: left;
  font-family: inherit;
}

.faq-question:focus-visible {
  outline: 2px solid color-mix(in srgb, var(--accent) 70%, transparent);
  outline-offset: -4px;
}

.faq-icon {
  position: relative;
  flex: 0 0 18px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  border: 1px solid rgba(245, 240, 232, 0.36);
}

.faq-icon::before,
.faq-icon::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 8px;
  height: 2px;
  border-radius: 99px;
  background: var(--accent-strong);
  transform: translate(-50%, -50%);
  transition: transform 180ms ease;
}

.faq-icon::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.faq-question[aria-expanded="true"] .faq-icon::after {
  transform: translate(-50%, -50%) rotate(0deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 240ms ease;
}

.faq-answer p {
  margin: 0;
  border-top: 1px solid rgba(245, 240, 232, 0.12);
  padding: 18px 18px 20px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.5;
}

.final-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: clamp(42px, 6vw, 72px) clamp(22px, 5vw, 70px);
  border-top: 1px solid var(--line);
  background:
    linear-gradient(135deg, color-mix(in srgb, var(--accent) 13%, transparent), transparent 46%),
    #11100f;
}

.final-cta div {
  max-width: 760px;
}

.final-cta h2 {
  font-size: clamp(32px, 4.4vw, 54px);
  line-height: 1.04;
}

.final-cta p {
  margin: 16px 0 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.5;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .button,
  .faq-item,
  .faq-answer,
  .faq-icon::before,
  .faq-icon::after,
  .mobile-sticky-cta {
    transition: none;
  }
}

.directory,
.thanks-page {
  min-height: 100vh;
  padding: clamp(28px, 6vw, 70px);
  background:
    radial-gradient(circle at 18% 20%, rgba(232, 93, 50, 0.18), transparent 30%),
    linear-gradient(135deg, #181411, #11100f 54%, #1d1a17);
}

.directory {
  display: grid;
  align-content: center;
  gap: 22px;
}

.directory h1 {
  max-width: 860px;
}

.directory p {
  margin: 0;
  color: var(--muted);
  font-size: 20px;
}

.directory-grid,
.next-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.directory-grid a,
.next-actions a {
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 14px 16px;
  background: rgba(245, 240, 232, 0.06);
  font-weight: 800;
}

.thanks-page {
  display: grid;
  align-content: center;
}

.thanks-panel {
  max-width: 760px;
  margin-top: 28px;
}

.thanks-panel p:not(.eyebrow) {
  color: var(--muted);
  font-size: 20px;
  line-height: 1.55;
}

@media (max-width: 920px) {
  .topbar {
    position: absolute;
    align-items: flex-start;
    flex-direction: row;
    gap: 10px;
    min-height: 58px;
  }

  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .hero::before {
    background:
      linear-gradient(180deg, rgba(17, 16, 15, 0.2) 0%, rgba(17, 16, 15, 0.7) 36%, var(--night) 78%),
      linear-gradient(90deg, rgba(17, 16, 15, 0.85), rgba(17, 16, 15, 0.18)),
      var(--hero-image) center top / cover no-repeat;
  }

  body[data-accent="mint"] .hero::before {
    background:
      linear-gradient(180deg, rgba(17, 16, 15, 0.02) 0%, rgba(17, 16, 15, 0.12) 30%, rgba(17, 16, 15, 0.86) 54%, var(--night) 82%),
      linear-gradient(90deg, rgba(17, 16, 15, 0.2), rgba(17, 16, 15, 0.02)),
      var(--hero-image) 64% top / auto 48svh no-repeat;
  }

  body[data-accent="violet"] .hero::before,
  body[data-accent="relic"] .hero::before {
    background:
      linear-gradient(180deg, rgba(17, 16, 15, 0.02) 0%, rgba(17, 16, 15, 0.18) 30%, rgba(17, 16, 15, 0.9) 55%, var(--night) 82%),
      linear-gradient(90deg, rgba(17, 16, 15, 0.26), rgba(17, 16, 15, 0.02)),
      var(--hero-image) 62% top / auto 48svh no-repeat;
  }

  body[data-accent="blood"] .hero::before {
    background:
      linear-gradient(180deg, rgba(17, 16, 15, 0.02) 0%, rgba(17, 16, 15, 0.12) 28%, rgba(17, 16, 15, 0.86) 54%, var(--night) 82%),
      linear-gradient(90deg, rgba(17, 16, 15, 0.12), rgba(17, 16, 15, 0.02)),
      var(--hero-image) 78% top / auto 56svh no-repeat;
  }

  body[data-accent="blood"] .hero-copy {
    justify-content: flex-start;
    min-height: auto;
    padding-top: calc(50svh + 42px);
  }

  body[data-accent="mint"] .hero-copy,
  body[data-accent="violet"] .hero-copy,
  body[data-accent="relic"] .hero-copy {
    justify-content: flex-start;
    min-height: auto;
    padding-top: calc(36svh + 50px);
  }

  .hero-copy {
    min-height: 100svh;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding-top: 160px;
    padding-bottom: 28px;
  }

  .hero-art {
    position: absolute;
    inset: 0;
    min-height: 100%;
    pointer-events: none;
  }

  .hero-art img {
    min-height: 100%;
  }

  .signup-band,
  .product-proof,
  .lore-band,
  .visual-showcase,
  .scenario-band,
  .pricing-band,
  .package-band,
  .faq-band {
    grid-template-columns: 1fr;
  }

  .product-proof,
  .visual-showcase {
    display: flex;
    flex-direction: column;
  }

  .package-intro {
    grid-template-columns: 1fr;
  }

  .free-visual {
    order: -1;
  }

  .proof-sheet {
    order: -1;
  }

  .showcase-media {
    grid-template-columns: 1fr;
  }

  .showcase-media img {
    min-height: auto;
  }

  .scenario-band {
    display: grid;
    height: auto;
    min-height: auto;
    padding: 0;
    background: #171513;
  }

  .scenario-band::before {
    display: none;
  }

  .scenario-bg {
    grid-column: 1 / -1;
    grid-row: 1;
    order: -2;
    width: 100%;
    height: auto;
    overflow: hidden;
  }

  .scenario-bg img {
    width: 100%;
    height: auto;
    min-height: 0;
    object-fit: contain;
  }

  .scenario-copy {
    grid-row: 2;
    margin-left: 0;
    max-width: none;
    padding: 28px 22px 38px;
  }

  .lore-band {
    display: grid;
    height: auto;
    min-height: auto;
    padding: 0;
    background: #11100f;
  }

  .lore-band::before {
    display: none;
  }

  .lore-hero-image {
    grid-column: 1 / -1;
    grid-row: 1;
    order: -2;
    width: 100%;
    height: auto;
    overflow: hidden;
  }

  .lore-hero-image img {
    width: 100%;
    height: auto;
    min-height: 0;
    object-fit: contain;
    transform: scaleX(-1);
  }

  .lore-copy {
    grid-row: 2;
    margin-left: 0;
    max-width: none;
    padding: 28px 22px 38px;
  }

  .showcase-large img {
    aspect-ratio: 16 / 10;
  }

  .showcase-small img {
    aspect-ratio: 16 / 10;
  }

  .pricing-grid {
    grid-template-columns: 1fr;
  }

  .feature-grid {
    grid-template-columns: 1fr;
  }

  .proof-strip {
    grid-template-columns: 1fr;
  }

  .proof-strip div {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .proof-strip div:last-child {
    border-bottom: 0;
  }

  .founder-benefits {
    grid-template-columns: 1fr;
  }

  .drop-lineup {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .section-actions.wide {
    margin-top: 4px;
  }

  .final-cta {
    align-items: stretch;
    flex-direction: column;
  }
}

@media (max-width: 560px) {
  body[data-review="true"] .topbar {
    top: 50px;
  }

  .topbar {
    padding: 14px 16px;
  }

  .topbar > span {
    display: none;
  }

  .review-bar {
    gap: 8px;
    padding-inline: 10px;
  }

  .signup-band,
  .product-proof,
  .lore-band,
  .visual-showcase,
  .scenario-band,
  .pricing-band,
  .package-band,
  .faq-band {
    gap: 26px;
    padding: 38px 22px;
  }

  .lore-band {
    gap: 0;
    padding: 0;
  }

  .lore-copy {
    padding: 28px 22px 18px;
  }

  .lore-cards {
    padding: 0 22px 38px;
  }

  h1 {
    font-size: clamp(36px, 10.2vw, 50px);
  }

  .lead {
    margin-top: 18px;
    font-size: 16px;
    line-height: 1.42;
  }

  .eyebrow {
    margin-bottom: 12px;
    font-size: 12px;
  }

  .signal-row {
    gap: 7px 14px;
    margin-top: 16px;
  }

  .signal-row span {
    padding: 0 0 0 13px;
    font-size: 11px;
  }

  .founder-benefits {
    gap: 6px;
    margin-top: 14px;
  }

  .founder-benefits div {
    min-height: auto;
    padding: 4px 0 4px 12px;
  }

  .founder-benefits strong {
    font-size: 13px;
  }

  .hero-actions {
    margin-top: 18px;
  }

  .price-line {
    font-size: 12px;
  }

  .mobile-sticky-cta {
    position: fixed;
    z-index: 35;
    left: 12px;
    right: 12px;
    bottom: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 52px;
    border-radius: 8px;
    background: var(--accent);
    color: #120e0b;
    font-weight: 900;
    box-shadow: 0 16px 44px rgba(0, 0, 0, 0.45);
    opacity: 0;
    pointer-events: none;
    transform: translateY(18px);
    transition: opacity 180ms ease, transform 180ms ease;
  }

  .mobile-sticky-cta.is-visible {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .signup-band {
    padding-bottom: 86px;
  }

  .hero-actions,
  .button {
    width: 100%;
  }

  .included-grid {
    grid-template-columns: 1fr;
  }

  .drop-lineup {
    grid-template-columns: 1fr;
  }

  .directory-grid a,
  .next-actions a {
    width: 100%;
  }

  .form-head {
    align-items: flex-start;
    flex-direction: column;
  }

  .price-lockout {
    grid-template-columns: auto auto;
    gap: 6px 10px;
  }

  .price-lockout em {
    grid-column: 1;
  }

  .price-lockout del {
    grid-column: 2;
    justify-self: start;
  }
}

/* ---- 3D figure viewer ---- */
.viewer-band {
  padding: clamp(3rem, 6vw, 5.5rem) clamp(1.25rem, 5vw, 4rem);
  text-align: center;
}
.viewer-head {
  max-width: 640px;
  margin: 0 auto clamp(1.6rem, 3vw, 2.6rem);
}
.viewer-head h2 {
  margin: 0.5rem 0 0.6rem;
}
.viewer-head p {
  color: var(--muted);
  margin: 0;
}
.viewer-shell {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(0.5rem, 2vw, 1.4rem);
  max-width: 760px;
  margin: 0 auto;
}
.viewer-stage {
  position: relative;
  flex: 1 1 auto;
  max-width: 540px;
}
model-viewer#figure-viewer {
  width: 100%;
  height: clamp(360px, 52vh, 540px);
  background: radial-gradient(circle at 50% 36%, rgba(48, 32, 36, 0.92), rgba(13, 12, 12, 0.96));
  border: 1px solid var(--line);
  border-radius: 22px;
  box-shadow: 0 24px 60px var(--shadow);
  --poster-color: transparent;
  cursor: grab;
}
model-viewer#figure-viewer:active {
  cursor: grabbing;
}
.viewer-hint {
  position: absolute;
  left: 50%;
  bottom: 14px;
  transform: translateX(-50%);
  font-size: 0.7rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  opacity: 0.65;
  pointer-events: none;
}
.viewer-nav {
  flex: 0 0 auto;
  width: 48px;
  height: 48px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(245, 240, 232, 0.05);
  color: var(--ink);
  font-size: 1.7rem;
  line-height: 1;
  cursor: pointer;
  display: grid;
  place-items: center;
  transition: background 0.2s ease, border-color 0.2s ease, transform 0.15s ease;
}
.viewer-nav:hover {
  background: var(--accent);
  border-color: var(--accent);
  transform: scale(1.06);
}
.viewer-meta {
  margin-top: clamp(1.1rem, 2.5vw, 1.7rem);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.25rem;
}
.viewer-count {
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  color: var(--accent-strong);
  font-weight: 700;
}
.viewer-name {
  font-size: 1.25rem;
}
.viewer-role {
  color: var(--muted);
  font-size: 0.9rem;
}
@media (max-width: 640px) {
  .viewer-shell {
    gap: 0.4rem;
  }
  .viewer-nav {
    width: 46px;
    height: 46px;
    font-size: 1.5rem;
    background: rgba(245, 240, 232, 0.1);
  }
}

/* ---- sticky top-nav ---- */
.topnav {
  display: flex;
  align-items: center;
  gap: clamp(14px, 2.4vw, 28px);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.02em;
}
.topnav a {
  color: var(--muted);
  transition: color 0.18s ease, background 0.18s ease, border-color 0.18s ease;
}
.topnav a:hover {
  color: var(--ink);
}

/* ---- viewer CTA actions ---- */
.viewer-actions {
  margin-top: clamp(1.4rem, 3vw, 2rem);
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  justify-content: center;
}

.viewer-add.is-added {
  background: #1f8a4d;
  color: #fff;
  box-shadow: 0 12px 34px color-mix(in srgb, #1f8a4d 30%, transparent);
}
.viewer-add.is-added:hover {
  background: #1b7a44;
}
.viewer-add:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  transform: none;
}

/* ---- viewer loading overlay ---- */
.viewer-loading {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
}
.viewer-loading.is-on {
  opacity: 1;
}
.viewer-spinner {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 3px solid rgba(245, 240, 232, 0.18);
  border-top-color: var(--accent-strong);
  animation: viewer-spin 0.8s linear infinite;
}
@keyframes viewer-spin {
  to { transform: rotate(360deg); }
}

@media (max-width: 560px) {
  .topnav {
    display: none;
  }
  .proof-grid {
    grid-template-columns: repeat(7, 1fr);
    gap: 4px;
  }
  .proof-cell {
    padding: 3px;
    border-radius: 6px;
  }
}

/* ===== Bundle builder sheet ===== */
body.bundle-lock {
  overflow: hidden;
}

.bundle-sheet {
  position: fixed;
  inset: 0;
  z-index: 120;
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease, visibility 0s linear 0.25s;
}
.bundle-sheet.is-open {
  visibility: visible;
  opacity: 1;
  pointer-events: auto;
  transition: opacity 0.25s ease;
}
.bundle-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(8, 7, 7, 0.66);
  backdrop-filter: blur(3px);
}
.bundle-panel {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  display: flex;
  flex-direction: column;
  width: min(460px, 100%);
  background: var(--panel);
  border-left: 1px solid var(--line);
  box-shadow: 0 0 90px var(--shadow);
  overflow: hidden;
  transform: translateX(100%);
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.bundle-sheet.is-open .bundle-panel {
  transform: translateX(0);
}
@media (prefers-reduced-motion: reduce) {
  .bundle-panel { transition: none; }
}

.bundle-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  padding: clamp(18px, 3vw, 28px);
  border-bottom: 1px solid var(--line);
}
.bundle-head h2 {
  margin: 4px 0 0;
  font-size: clamp(1.2rem, 2.4vw, 1.6rem);
}
.bundle-sub {
  margin: 8px 0 0;
  max-width: 52ch;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.45;
}
.bundle-close {
  flex: none;
  width: 40px;
  height: 40px;
  border-radius: 8px;
  border: 1px solid var(--line);
  background: transparent;
  color: var(--ink);
  font-size: 1.6rem;
  line-height: 1;
  cursor: pointer;
}
.bundle-close:hover {
  border-color: var(--accent);
  color: var(--accent-strong);
}

.bundle-grid {
  flex: 1 1 auto;
  min-height: 0;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(130px, 1fr));
  align-content: start;
  gap: 12px;
  padding: clamp(14px, 2.5vw, 22px);
  overflow-y: auto;
}
.bundle-card {
  position: relative;
  display: flex;
  flex-direction: column;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: rgba(245, 240, 232, 0.03);
  cursor: pointer;
  transition: border-color 0.15s ease, transform 0.15s ease;
}
.bundle-card:hover {
  border-color: color-mix(in srgb, var(--accent) 50%, var(--line));
}
.bundle-cb {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}
.bundle-thumb {
  position: relative;
  height: 132px;
  border-radius: 9px 9px 0 0;
  overflow: hidden;
  background: radial-gradient(circle at 50% 35%, #1c1a18, #0d0c0b);
}
.bundle-thumb img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.bundle-size {
  position: absolute;
  top: 8px;
  left: 8px;
  padding: 2px 7px;
  border-radius: 999px;
  background: rgba(8, 7, 7, 0.7);
  border: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.02em;
}
.bundle-info {
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding: 8px 10px 0;
}
.bundle-name {
  font-size: 0.86rem;
  font-weight: 600;
  line-height: 1.2;
}
.bundle-role {
  font-size: 0.72rem;
  color: var(--quiet);
}
.bundle-price {
  padding: 4px 10px 10px;
  font-weight: 700;
  color: var(--accent-strong);
}
.bundle-tick {
  position: absolute;
  top: 8px;
  right: 8px;
  width: 26px;
  height: 26px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--accent);
  color: #fff;
  font-size: 0.85rem;
  font-weight: 700;
  opacity: 0;
  transform: scale(0.6);
  transition: opacity 0.15s ease, transform 0.15s ease;
}
.bundle-card.is-picked {
  border-color: var(--accent);
}
.bundle-card.is-picked .bundle-tick {
  opacity: 1;
  transform: none;
}
.bundle-cb:focus-visible + .bundle-thumb {
  outline: 2px solid var(--accent-strong);
  outline-offset: -2px;
}

.bundle-foot {
  border-top: 1px solid var(--line);
  padding: clamp(12px, 2vw, 18px) clamp(14px, 2.5vw, 24px);
  background: color-mix(in srgb, var(--night) 60%, var(--panel));
}
.bundle-nudge {
  display: block;
  margin-bottom: 10px;
  padding: 9px 12px;
  border-radius: 8px;
  border: 1px solid color-mix(in srgb, var(--accent) 45%, transparent);
  background: color-mix(in srgb, var(--accent) 14%, transparent);
  color: var(--accent-strong);
  font-size: 0.85rem;
  font-weight: 600;
}
.bundle-nudge[hidden] {
  display: none;
}
.bundle-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.bundle-summary {
  display: flex;
  align-items: baseline;
  gap: 12px;
}
.bundle-count {
  color: var(--muted);
  font-size: 0.9rem;
  white-space: nowrap;
}
.bundle-total {
  font-size: 1.5rem;
}
.bundle-checkout:disabled {
  opacity: 0.45;
  cursor: not-allowed;
  box-shadow: none;
}

@media (max-width: 640px) {
  .bundle-panel {
    top: auto;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 88vh;
    border-left: none;
    border-top: 1px solid var(--line);
    border-radius: 16px 16px 0 0;
    transform: translateY(100%);
  }
  .bundle-sheet.is-open .bundle-panel {
    transform: translateY(0);
  }
  .bundle-panel::before {
    content: "";
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 4px;
    border-radius: 999px;
    background: var(--line);
    z-index: 1;
  }
  .bundle-head {
    padding-top: 22px;
  }
  .bundle-grid {
    grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
  }
  .bundle-total {
    font-size: 1.25rem;
  }
}

/* ===== Site footer (legal links — required for Paddle domain approval) ===== */
.site-footer {
  border-top: 1px solid var(--line);
  padding: 28px 24px 96px; /* bottom clears the mobile sticky CTA */
  text-align: center;
  color: var(--quiet);
  font-size: 0.8rem;
}
.site-footer p { margin: 0 0 10px; }
.site-footer nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px 22px;
}
.site-footer nav a {
  color: var(--muted);
  text-decoration: none;
}
.site-footer nav a:hover { color: var(--ink); text-decoration: underline; }
