/* Iron Labs cream fightbook — static preview of the shipped sheet.
   Carbon ink on aged newsprint. Tokens taken from the app, not restyled. */

:root {
  --background: oklch(0.888 0.016 84);
  --foreground: oklch(0.16 0.005 70);
  --card: oklch(0.968 0.006 92);
  --muted-foreground: oklch(0.43 0.008 70);
  --border: oklch(0.69 0.009 85);
  --ink: oklch(0.16 0.005 70);
  --caption: oklch(0.48 0.008 70);
  --font-sans: "Archivo", ui-sans-serif, system-ui, sans-serif;
  --font-display: "Archivo Narrow", "Arial Narrow", sans-serif;
  --font-poster: "Big Shoulders Display", "Archivo Narrow", "Arial Narrow", sans-serif;
  --font-mono: "IBM Plex Mono", ui-monospace, monospace;
}

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

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--background);
  color: var(--foreground);
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

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

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

button, a, input { font: inherit; }

:focus-visible {
  outline: 2px solid var(--foreground);
  outline-offset: 3px;
}
.site-footer :focus-visible,
.drawer__foot :focus-visible,
.ticket-invert :focus-visible,
.ink-note :focus-visible {
  outline-color: var(--background);
}

::selection {
  background: var(--ink);
  color: var(--background);
}

.poster {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 0.95;
  letter-spacing: -0.02em;
  text-transform: uppercase;
}
.ticket-price,
.plan-price,
.admit .poster {
  font-family: var(--font-poster);
  font-weight: 800;
  line-height: 0.88;
  letter-spacing: -0.005em;
}

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

.stamp-box {
  display: inline-block;
  padding: 0.3rem 0.6rem;
  border: 1px solid currentColor;
  box-shadow: none;
  font-family: var(--font-mono);
  font-size: 0.6875rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.muted { color: var(--muted-foreground); }
.caption { color: var(--caption); }
.tabular { font-variant-numeric: tabular-nums; }

.rule-double-b {
  border-bottom: 1px solid var(--foreground);
  box-shadow: none;
}

.crop-marks { position: relative; }
.crop-marks::before,
.crop-marks::after {
  content: "";
  position: absolute;
  width: 14px;
  height: 14px;
  pointer-events: none;
  opacity: 0.55;
}
.crop-marks::before {
  top: 6px;
  left: 6px;
  border-top: 1px solid currentColor;
  border-left: 1px solid currentColor;
}
.crop-marks::after {
  right: 6px;
  bottom: 6px;
  border-right: 1px solid currentColor;
  border-bottom: 1px solid currentColor;
}

.icon {
  width: 1rem;
  height: 1rem;
  flex: none;
}
.icon-sm { width: 0.875rem; height: 0.875rem; }
.icon-xs { width: 0.75rem; height: 0.75rem; }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  min-height: 44px;
  height: 44px;
  padding: 0 1rem;
  border: 1px solid var(--ink);
  border-radius: 0;
  background: var(--ink);
  color: var(--background);
  box-shadow: none;
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  cursor: pointer;
}
.btn:hover {
  background: color-mix(in oklch, var(--ink) 88%, black);
  color: var(--background);
  box-shadow: none;
}
.btn-lg { height: 44px; min-height: 44px; padding: 0 2.25rem; }
.btn-block { width: 100%; }
.btn-outline {
  height: 44px;
  min-height: 44px;
  background: transparent;
  color: var(--foreground);
  box-shadow: none;
}
.btn-outline:hover {
  background: var(--ink);
  color: var(--background);
}
.btn-invert {
  border-color: var(--background);
  background: var(--background);
  color: var(--foreground);
  box-shadow: none;
}
.btn-invert:hover {
  background: transparent;
  color: var(--background);
}
.btn:disabled,
.btn[aria-disabled="true"] {
  opacity: 0.45;
  cursor: not-allowed;
}

/* Header */
.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 40;
  border-bottom: 1px solid var(--foreground);
  background: var(--background);
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}
.site-header__bar {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 1rem;
  height: 4.5rem;
  max-width: 96rem;
  margin: 0 auto;
  padding: 0 1.25rem;
}
.brand { display: flex; align-items: baseline; gap: 0.75rem; }
.brand .poster { font-size: 1.7rem; }
.brand .stamp-mono { display: none; color: var(--caption); }
.site-nav { display: none; align-items: center; justify-content: center; gap: 2.5rem; }
.site-nav a {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  border-bottom: 1px solid transparent;
  color: var(--muted-foreground);
}
.site-nav a:hover,
.site-nav a[aria-current="page"] {
  color: var(--foreground);
  border-bottom-color: var(--foreground);
}
.site-header__bar .btn-outline,
.site-header__bar [data-open-cart] {
  justify-self: end;
  min-height: 44px;
  height: 44px;
  padding: 0 1rem;
  background: var(--background);
  color: var(--foreground);
  border: 1px solid var(--foreground);
  box-shadow: none;
  backdrop-filter: none;
}
.site-header__bar [data-open-cart]:hover {
  background: var(--foreground);
  color: var(--background);
}

@media (min-width: 640px) {
  .site-header__bar {
    grid-template-columns: 1fr auto 1fr;
    padding: 0 2rem;
  }
  .site-nav { display: flex; }
}
@media (min-width: 1024px) {
  .brand .stamp-mono { display: inline; }
}

/* Sheet */
.fb-sheet { overflow: hidden; padding-top: 4.5rem; }

.fb-marker {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.35rem 0.9rem;
  padding: 0.6rem clamp(1rem, 3vw, 2.5rem);
  border-top: 0;
  border-bottom: 1px solid var(--foreground);
  box-shadow: none;
  font-family: var(--font-mono);
  font-size: 0.6875rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.fb-marker span::after { content: " //"; opacity: 0.45; }
.fb-marker span:last-child::after { content: ""; }

.fb-masthead {
  position: relative;
  max-width: 90rem;
  margin-inline: auto;
  padding: clamp(2.2rem, 5vw, 4rem) clamp(1.25rem, 3vw, 3rem) clamp(1.6rem, 3vw, 2.4rem);
  text-align: center;
}
.fb-eyebrow {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.9rem;
  margin: 0;
  font-family: var(--font-mono);
  font-size: 0.6875rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.fb-eyebrow::before,
.fb-eyebrow::after {
  content: "";
  width: clamp(1.5rem, 8vw, 6rem);
  height: 1px;
  background: currentColor;
}
.fb-title {
  margin: 1.1rem 0 0;
  font-family: var(--font-poster);
  font-size: clamp(2.45rem, 10.2vw, 9.5rem);
  font-weight: 900;
  line-height: 0.82;
  letter-spacing: -0.035em;
  text-transform: uppercase;
  text-wrap: balance;
}
.fb-title > span { display: block; overflow: hidden; }
.fb-title > span > span {
  display: block;
  animation: fb-line 0.85s cubic-bezier(0.22, 1, 0.36, 1) both;
}
.fb-title > span:nth-child(2) > span { animation-delay: 0.08s; }
.fb-title > span:nth-child(3) > span { animation-delay: 0.16s; }
.fb-title em {
  display: block;
  font-family: var(--font-display);
  font-size: 0.34em;
  font-style: normal;
  font-weight: 600;
  letter-spacing: 0.06em;
  line-height: 1.1;
  padding: 0.22em 0;
}
.fb-sub {
  max-width: 44rem;
  margin: 1.5rem auto 0;
  font-size: clamp(0.88rem, 1.1vw, 1rem);
  line-height: 1.6;
  color: var(--muted-foreground);
}
.fb-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 1.1rem;
  margin-top: 1.8rem;
  animation: fb-rise 0.7s 0.28s both;
}
.fb-link {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  border-bottom: 1px solid currentColor;
  font-family: var(--font-mono);
  font-size: 0.6875rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.fb-plate { position: relative; border-top: 1px solid var(--foreground); border-bottom: 1px solid var(--foreground); }
.fb-plate figure {
  position: relative;
  height: clamp(20rem, 52vw, 40rem);
  margin: 0;
  overflow: hidden;
  background: var(--ink);
}
.fb-plate img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 64% 20%;
  animation: fb-plate-in 1.3s cubic-bezier(0.22, 1, 0.36, 1) both;
}
.fb-plate figure::after,
.fb-frame figure::after {
  content: "";
  position: absolute;
  inset: 0;
  background: oklch(0.68 0.07 62);
  mix-blend-mode: multiply;
  opacity: 0.34;
  pointer-events: none;
}
.fb-plate img,
.fb-frame img {
  filter: sepia(0.28) saturate(0.62) hue-rotate(-8deg) contrast(1.05);
}
.fb-plate figcaption {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.55rem clamp(1rem, 3vw, 2rem);
  border-top: 1px solid var(--foreground);
  font-family: var(--font-mono);
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.fb-assure,
.fb-facts,
.fb-run { display: none !important; }

.fb-section {
  max-width: 96rem;
  margin-inline: auto;
  padding: clamp(3.5rem, 7vw, 7rem) clamp(1.25rem, 3vw, 3rem);
}
.fb-head {
  display: grid;
  grid-template-columns: 5rem minmax(0, 1fr) minmax(13rem, 21rem);
  gap: 1.5rem;
  align-items: end;
  padding-bottom: 1.6rem;
  border-bottom: 1px solid var(--foreground);
  box-shadow: none;
}
.fb-head > span {
  align-self: start;
  font-family: var(--font-mono);
  font-size: 0.6875rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted-foreground);
}
.fb-head h2 {
  max-width: min(14ch, 100%);
  margin: 0.55rem 0 0;
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 0.95;
  text-transform: uppercase;
  text-wrap: balance;
  font-size: clamp(2.15rem, 4.2vw, 4.2rem);
}
.fb-head > p {
  margin: 0;
  font-size: 0.82rem;
  line-height: 1.6;
  color: var(--muted-foreground);
}

.fb-contact {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(16rem, 0.8fr);
  margin-top: 2.5rem;
  border: 1px solid var(--foreground);
}
.fb-type-steps {
  display: grid;
  grid-template-rows: repeat(3, minmax(0, 1fr));
  min-width: 0;
}
.fb-frame { padding: 0.7rem; min-width: 0; }
.fb-frame--lead {
  display: flex;
  flex-direction: column;
  border-right: 1px solid var(--foreground);
}
.fb-frame--type {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0.2rem;
  padding: 1.2rem 1.3rem 1.25rem;
  border-bottom: 1px solid var(--foreground);
}
.fb-frame--type:last-child { border-bottom: 0; }
.fb-frame--type .stamp-mono { color: var(--muted-foreground); }
.fb-frame figure {
  position: relative;
  flex: 1 1 auto;
  height: auto;
  min-height: 18rem;
  aspect-ratio: 4 / 5;
  margin: 0;
  overflow: hidden;
  background: var(--ink);
}
.fb-frame img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 62%;
}
.fb-frame__cap {
  display: flex;
  justify-content: space-between;
  gap: 0.5rem;
  padding: 0.5rem 0 0.35rem;
  border-bottom: 1px solid var(--foreground);
  font-family: var(--font-mono);
  font-size: 0.8125rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--foreground);
}
.fb-frame h3 {
  margin: 0.8rem 0 0;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.7rem, 2.2vw, 2.35rem);
  line-height: 0.95;
  letter-spacing: -0.02em;
  text-transform: uppercase;
}
.fb-frame p {
  margin: 0.55rem 0 0.3rem;
  font-size: 0.74rem;
  line-height: 1.55;
  color: var(--muted-foreground);
}

.fb-card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin-top: 2.5rem;
  align-items: start;
}
.fb-card-grid.flat { margin-top: 2.5rem; }

.compare-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 3rem;
  margin-top: 2.5rem;
  padding-top: 1rem;
  border-top: 1px solid var(--foreground);
}

.ticket,
.ticket-invert {
  position: relative;
  display: flex;
  flex-direction: column;
  height: 100%;
  border: 1px solid var(--foreground);
  background: var(--card);
}
.ticket-invert {
  border-color: var(--ink);
  background: var(--ink);
  color: var(--background);
}
@media (min-width: 1024px) {
  .ticket-invert.lift { margin-top: -1.25rem; margin-bottom: 1.25rem; }
}
.ticket-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  padding: 0.625rem 1rem;
  border-bottom: 1px solid var(--foreground);
}
.ticket-invert .ticket-top { border-bottom-color: color-mix(in oklch, var(--background) 35%, transparent); }
.ticket-body {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 1.75rem 1rem 0.25rem;
}
.ticket-name {
  margin: 0.75rem 0 0;
  max-width: 100%;
  font-size: clamp(1.7rem, 2.2vw, 2.2rem);
  line-height: 0.95;
  text-wrap: balance;
}
.ticket-diff { margin: 0.75rem 0 0; font-size: 0.875rem; line-height: 1.6; }
.ticket .ticket-diff,
.ticket .ticket-kicker,
.ticket .ticket-note { color: var(--muted-foreground); }
.ticket-invert .ticket-kicker,
.ticket-invert .ticket-note,
.ticket-invert .ticket-diff { color: color-mix(in oklch, var(--background) 88%, var(--ink)); }
.ticket-list {
  margin: 1.5rem 0 0;
  padding: 1.25rem 0 0;
  border-top: 1px solid var(--border);
  list-style: none;
  font-size: 0.78rem;
  line-height: 1.35;
  color: var(--muted-foreground);
}
.ticket-invert .ticket-list {
  border-top-color: color-mix(in oklch, var(--background) 42%, transparent);
  color: color-mix(in oklch, var(--background) 88%, var(--ink));
}
.ticket-invert .ticket-list li span:first-child { opacity: 1; }
.ticket-list li {
  display: grid;
  grid-template-columns: 1.6rem 1fr;
  gap: 0.25rem;
  margin-top: 0.5rem;
}
.ticket-list li span:first-child { padding-top: 0.125rem; opacity: 0.6; }
.ticket-list li span:last-child { min-width: 0; overflow-wrap: break-word; }
.ticket-foot { margin-top: auto; padding-top: 2rem; }
.ticket-price-row { display: flex; align-items: flex-end; justify-content: space-between; gap: 1rem; }
.ticket-price { font-size: clamp(2.4rem, 4vw, 3.4rem); }
.ticket-note { min-height: 2.25rem; margin: 0.75rem 0 0; font-size: 0.7rem; line-height: 1.35; }
.ticket-perf {
  margin: 0.5rem 0.75rem 0;
  border-top: 1px dashed color-mix(in oklch, currentColor 55%, transparent);
  background-image:
    radial-gradient(circle at 0 0, transparent 5px, currentColor 5px, currentColor 5.6px, transparent 5.7px),
    radial-gradient(circle at 100% 0, transparent 5px, currentColor 5px, currentColor 5.6px, transparent 5.7px);
  background-repeat: no-repeat;
  background-size: 12px 12px, 12px 12px;
  background-position: left top, right top;
  min-height: 8px;
}
.ticket-actions {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 0.1rem;
  padding: 0.75rem 1rem 0.85rem;
}
.ticket-details {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  align-self: center;
  min-height: 44px;
  padding: 0 0.35rem;
  border: 0;
  background: transparent;
  color: inherit;
  text-decoration: underline;
  text-underline-offset: 0.32em;
  text-decoration-thickness: 1px;
}
.ticket-details:hover {
  color: inherit;
  text-decoration-thickness: 2px;
}
.ticket-invert .ticket-details {
  border: 0;
  color: var(--background);
}

.site-footer {
  position: relative;
  margin-top: 6rem;
  border-top: 1px solid var(--ink);
  background: var(--ink);
  color: var(--background);
}
.site-footer__in { max-width: 96rem; margin: 0 auto; padding: 3.5rem 1.25rem 2rem; }
.site-footer__meta {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.75rem;
  margin-bottom: 3rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid color-mix(in oklch, var(--background) 25%, transparent);
  color: color-mix(in oklch, var(--background) 60%, transparent);
}
.site-footer__grid {
  display: grid;
  gap: 3rem;
}
.site-footer .wordmark {
  margin: 0 0 0.35rem;
  font-family: var(--font-mono);
  font-size: 0.6875rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  line-height: 1.35;
  text-transform: uppercase;
}
.site-footer__blurb {
  max-width: 24rem;
  margin: 1.25rem 0 0;
  font-size: 0.875rem;
  color: color-mix(in oklch, var(--background) 65%, transparent);
}
.site-footer h2 {
  margin: 0;
  color: color-mix(in oklch, var(--background) 55%, transparent);
}
.site-footer ul { margin: 1.25rem 0 0; padding: 0; list-style: none; }
.site-footer li + li { margin-top: 0.75rem; }
.site-footer li a {
  font-size: 0.875rem;
  color: color-mix(in oklch, var(--background) 70%, transparent);
}
.site-footer li a:hover { color: var(--background); }
.site-footer__legal {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-top: 3.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid color-mix(in oklch, var(--background) 25%, transparent);
  color: color-mix(in oklch, var(--background) 55%, transparent);
}
@media (min-width: 640px) {
  .site-footer__in { padding-left: 2rem; padding-right: 2rem; }
  .site-footer__grid { grid-template-columns: 1fr 1fr; }
  .site-footer__legal { flex-direction: row; flex-wrap: wrap; align-items: center; justify-content: space-between; }
}
@media (min-width: 1024px) {
  .site-footer__grid { grid-template-columns: 1.4fr 0.8fr 0.8fr; }
  .site-footer__brand { grid-column: span 1; }
}

.archive-page {
  max-width: 96rem;
  margin-inline: auto;
  padding: 8.5rem clamp(1.25rem, 3vw, 3rem) 6rem;
}
.page-title {
  max-width: min(14ch, 100%);
  margin: 1rem auto 0;
  text-align: center;
  text-wrap: balance;
  font-size: clamp(2.5rem, 7vw, 5.4rem);
}
.page-deck {
  max-width: 42rem;
  margin: 1.25rem auto 0;
  text-align: center;
  font-size: 0.875rem;
  line-height: 1.6;
  color: var(--muted-foreground);
}
.page-head {
  border-bottom: 1px solid var(--foreground);
  padding: 2.5rem 0;
  text-align: center;
}

.spec { margin-top: 6rem; }
.spec-head {
  display: grid;
  gap: 1.5rem;
  padding-bottom: 1.25rem;
}
.spec-head h2 { margin: 0; max-width: min(16ch, 100%); font-size: clamp(2.1rem, 4vw, 3.6rem); text-wrap: balance; }
.spec-table { min-width: 0; width: 100%; }
.spec-row,
.spec-labels {
  display: grid;
  grid-template-columns: 12rem repeat(3, 1fr);
  gap: 0;
  padding: 1.25rem 0;
  border-bottom: 1px solid var(--border);
  font-size: 0.875rem;
}
.spec-labels {
  padding: 1rem 0;
  border-bottom-color: var(--foreground);
}
.spec-row strong { align-self: center; }
.spec-row span,
.spec-labels span { padding: 0 1rem; }
.spec-scroll { overflow-x: visible; }
@media (max-width: 800px) {
  .spec-labels { display: none; }
  .spec-row {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 0.7rem;
    padding: 1.15rem 0 1.3rem;
  }
  .spec-row strong { align-self: start; }
  .spec-scroll,
  .spec-table { max-width: 100%; overflow-x: clip; }
  .spec-row span {
    display: grid;
    grid-template-columns: minmax(0, 8.5rem) minmax(0, 1fr);
    gap: 0.75rem;
    min-width: 0;
    padding: 0;
    align-items: baseline;
  }
  .spec-row span::before {
    content: attr(data-plan);
    font-family: var(--font-mono);
    font-size: 0.6875rem;
    font-weight: 500;
    letter-spacing: 0.08em;
    line-height: 1.35;
    text-transform: uppercase;
    color: var(--foreground);
  }
}
.ink-note {
  display: grid;
  gap: 1.5rem;
  margin-top: 5rem;
  padding: 2.5rem 1.5rem;
  border: 1px solid var(--ink);
  background: var(--ink);
  color: var(--background);
}
.ink-note p { margin: 0; max-width: 42rem; font-size: 0.875rem; line-height: 1.6; color: color-mix(in oklch, var(--background) 75%, transparent); }
.ink-kicker { color: color-mix(in oklch, var(--background) 60%, transparent); }

.method-split {
  display: grid;
  margin-top: 3rem;
}
.method-copy {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 2rem;
  border: 1px solid var(--foreground);
}
.method-copy p { margin: 0; }
.method-copy .lead { margin-top: 1.5rem; font-size: 1.125rem; line-height: 1.6; }
.method-copy .quiet { margin-top: 1.5rem; font-size: 0.875rem; line-height: 1.6; color: var(--muted-foreground); }
.method-copy .btn { align-self: flex-start; margin-top: 2rem; }
.archival {
  position: relative;
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--foreground);
  background: var(--ink);
}
.archival img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  filter: sepia(0.42) saturate(0.55) hue-rotate(-8deg) contrast(1.08) brightness(0.94);
}
.fig-caption {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.5rem 0.65rem;
  border-top: 1px solid var(--foreground);
  background: var(--background);
  color: var(--foreground);
  font-family: var(--font-mono);
  font-size: 0.6875rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.rules { margin-top: 6rem; }
.rules-head {
  display: grid;
  gap: 1.5rem;
  padding-bottom: 1.25rem;
}
.rules-head h2 { margin: 0; max-width: min(16ch, 100%); font-size: clamp(2.1rem, 4vw, 3.6rem); text-wrap: balance; }
.rules-grid { display: grid; }
.rule {
  padding: 2rem 0;
  border-bottom: 1px solid var(--border);
}
.rule h3 { margin: 1.5rem 0 0; font-size: clamp(1.8rem, 3vw, 2.6rem); }
.rule p { max-width: 32rem; margin: 1rem 0 0; font-size: 0.875rem; line-height: 1.6; color: var(--muted-foreground); }

.product-hero {
  display: grid;
  border-bottom: 1px solid var(--foreground);
}
.product-hero h1 { margin: 1.5rem 0 0; max-width: min(14ch, 100%); font-size: clamp(2.6rem, 5.5vw, 4.8rem); text-wrap: balance; }
.product-hero .deck { max-width: 36rem; margin: 1.5rem 0 0; color: var(--muted-foreground); }
.admit {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  margin-bottom: 2.5rem;
  padding: 1.5rem;
}
.admit .poster { margin: 0.75rem 0 0; font-size: clamp(3rem, 6vw, 5rem); }
.admit .boundary { margin: 0.75rem 0 0; font-size: 0.75rem; line-height: 1.5; color: var(--muted-foreground); }
.back-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  min-height: 44px;
  color: var(--muted-foreground);
}
.receive {
  display: grid;
  gap: 4rem;
  margin-top: 5rem;
}
.receive h2,
.boundary-block h2,
.elsewhere h2 { margin: 1rem 0 0; font-size: clamp(2rem, 4vw, 3.4rem); }
.receive ol { margin: 0; padding: 0; list-style: none; border-top: 1px solid var(--foreground); box-shadow: none; }
.receive li {
  display: grid;
  grid-template-columns: 3rem 1fr;
  gap: 0.5rem;
  padding: 1.25rem 0;
  border-bottom: 1px solid var(--border);
  font-size: 0.875rem;
}
.boundary-block {
  display: grid;
  gap: 2rem;
  margin-top: 5rem;
  padding: 3rem 2rem;
  border: 1px solid var(--ink);
  background: var(--ink);
  color: var(--background);
}
.boundary-block .lead { margin: 0; font-size: 1.125rem; }
.boundary-block .quiet { margin: 1rem 0 0; max-width: 42rem; font-size: 0.875rem; line-height: 1.6; color: color-mix(in oklch, var(--background) 65%, transparent); }
.elsewhere { margin-top: 6rem; }
.plan-grid { display: grid; gap: 1.5rem; margin-top: 2.5rem; }
.plan-name { margin: 0; max-width: 100%; font-size: clamp(1.55rem, 2vw, 2.05rem); line-height: 0.95; text-wrap: balance; }
.plan-price { font-size: clamp(2rem, 3vw, 2.8rem); }

.cart-layout {
  display: grid;
  gap: 3rem;
  margin-top: 3.5rem;
}
.empty-card {
  padding: 4rem 1.5rem;
  border: 1px solid var(--foreground);
  text-align: center;
}
.empty-card h2 { margin: 0; font-size: 2.25rem; }
.empty-card p { max-width: 20rem; margin: 0.75rem auto 0; font-size: 0.875rem; color: var(--muted-foreground); }
.summary {
  padding: 1.5rem;
  border: 1px solid var(--ink);
  background: var(--ink);
  color: var(--background);
}
.summary h2 { margin: 0.75rem 0 0; font-size: clamp(1.9rem, 3vw, 2.6rem); }
.summary dl { margin: 1.5rem 0 0; }
.summary-row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-top: 0.75rem;
  font-size: 0.875rem;
}
.summary-row dt { color: color-mix(in oklch, var(--background) 60%, transparent); }
.summary-total { margin-top: 1rem; padding-top: 1rem; border-top: 1px solid color-mix(in oklch, var(--background) 25%, transparent); }
.summary-total dd { font-size: 1.875rem; }
.summary .fine {
  margin: 1rem 0 0;
  text-align: center;
  color: color-mix(in oklch, var(--background) 55%, transparent);
  line-height: 1.5;
}
.cart-lines { margin: 0; padding: 0; list-style: none; border-top: 1px solid var(--foreground); }
.cart-line {
  display: grid;
  grid-template-columns: 2.5rem 1fr auto;
  gap: 1rem;
  align-items: start;
  padding: 1.5rem 0;
  border-bottom: 1px solid var(--border);
}
.qty {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-top: 1rem;
}
.qty button {
  width: 44px;
  height: 44px;
  border: 1px solid var(--foreground);
  background: transparent;
  color: var(--foreground);
  cursor: pointer;
}
.line-name { font-size: 1.875rem; }
.line-price { font-size: 0.875rem; }
.qty-box {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  border: 1px solid var(--border);
  padding: 0.15rem;
}
.remove-line {
  min-height: 44px;
  padding: 0 0.5rem;
  border: 0;
  background: transparent;
  color: var(--muted-foreground);
  font-size: 0.75rem;
  cursor: pointer;
}
.remove-line:hover { color: var(--foreground); }

.drawer[hidden] { display: none; }
.drawer {
  position: fixed;
  inset: 0;
  z-index: 60;
}
.drawer__backdrop {
  position: absolute;
  inset: 0;
  border: 0;
  background: oklch(0.16 0.005 70 / 0.35);
  cursor: pointer;
}
.drawer__panel {
  position: absolute;
  top: 0;
  right: 0;
  display: flex;
  flex-direction: column;
  width: min(100%, 32rem);
  height: 100%;
  background: var(--background);
  border-left: 1px solid var(--foreground);
}
.drawer__head {
  padding: 1.25rem 1.5rem;
  border-bottom: 1px solid var(--foreground);
}
.drawer__head h2 { margin: 0.35rem 0 0; font-size: 3rem; }
.drawer__body { flex: 1; overflow: auto; padding: 0 1.5rem 1.5rem; }
.drawer__foot {
  padding: 1.25rem 1.5rem 1.25rem;
  border-top: 1px solid var(--foreground);
  background: var(--ink);
  color: var(--background);
}
.drawer__sub {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
}
.drawer__sub span:first-child { color: color-mix(in oklch, var(--background) 60%, transparent); }
.drawer__foot .ticket-perf { margin: 0 -1.5rem 1.25rem; }
.drawer__foot .fine {
  margin: 0.75rem 0 0;
  text-align: center;
  color: color-mix(in oklch, var(--background) 55%, transparent);
}
.perf-bleed { margin-left: -1.5rem; margin-right: -1.5rem; }
.fb-sheet.is-slice { padding-top: 0; }
.is-section .site-footer { margin-top: 0; }

@keyframes fb-line {
  from { opacity: 0; transform: translateY(105%); }
  to { opacity: 1; transform: none; }
}
@keyframes fb-rise {
  from { opacity: 0; transform: translateY(14px); }
  to { opacity: 1; transform: none; }
}
@keyframes fb-plate-in {
  from { opacity: 0; transform: scale(1.07); }
  to { opacity: 1; transform: scale(1); }
}


@media (max-width: 900px) {
  .fb-contact { grid-template-columns: 1fr; }
  .fb-frame--lead {
    border-right: 0;
    border-bottom: 1px solid var(--foreground);
  }
  .fb-frame figure { min-height: 0; aspect-ratio: 16 / 10; max-height: 18rem; }
  .fb-card-grid,
  .plan-grid { grid-template-columns: 1fr; }
  .fb-head { grid-template-columns: minmax(4.75rem, auto) minmax(0, 1fr); }
  .fb-head > p { grid-column: 2; }
  .cart-layout { grid-template-columns: 1fr; }
}
@media (min-width: 901px) {
  .plan-grid { grid-template-columns: 1fr 1fr; }
  .method-split { grid-template-columns: 0.85fr 1.15fr; }
  .method-copy { border-right: 0; }
  .rules-head,
  .spec-head { grid-template-columns: 7rem 1fr; align-items: end; }
  .rules-grid { grid-template-columns: 1fr 1fr; }
  .rule:nth-child(odd) { padding-right: 2.5rem; }
  .rule:nth-child(even) { padding-left: 2.5rem; border-left: 1px solid var(--border); }
  .cart-layout { grid-template-columns: 1.4fr 1fr; gap: 4rem; }
  .summary { position: sticky; top: 8rem; }
}
@media (min-width: 1024px) {
  .product-hero { grid-template-columns: 1.25fr 0.75fr; }
  .product-hero__copy { padding: 2.5rem 3rem 2.5rem 0; }
  .admit { margin-top: 2.5rem; }
  .receive,
  .boundary-block { grid-template-columns: 0.55fr 1.45fr; }
  .ink-note { grid-template-columns: 7rem 1fr; }
}
@media (max-width: 1023px) {
  .product-hero__copy { padding: 2.5rem 0; }
}
@media (max-width: 640px) {
  .fb-marker span:nth-child(n + 4) { display: none; }
  .fb-marker span:nth-child(3)::after { content: ""; }
  .fb-plate figure { height: 26rem; }
  .fb-plate img { object-position: 54% 30%; }
  .ticket-body,
  .ticket-actions { padding-left: 1.25rem; padding-right: 1.25rem; }
  .ticket-actions { padding-left: 1.25rem; }
}
@media (min-width: 640px) {
  .ticket-body { padding-left: 1.25rem; padding-right: 1.25rem; }
  .ticket-actions { padding-left: 1.25rem; padding-right: 1.25rem; }
  .summary { padding: 2rem; }
}
@media (prefers-reduced-motion: reduce) {
  .fb-title > span > span,
  .fb-actions,
  .fb-plate img,
  .fb-run > div { animation: none; }
  .fb-frame img { transition: none; }
  html { scroll-behavior: auto; }
}
@media (min-width: 640px) {
  .summary .perf-bleed { margin-left: -2rem; margin-right: -2rem; }
}

/* Home uses the same cream sheet as the rest of the shop. */
.home .fb-marker,
.home .fb-head { box-shadow: none; }
.home .fb-marker {
  font-size: 0.6875rem;
  letter-spacing: 0.12em;
}
.home .fb-head h2 { letter-spacing: -0.03em; }
.fb-facts,
.fb-assure,
.fb-run { display: none !important; }
.home .fb-card-grid { align-items: stretch; }
.home #choose-your-level .ticket {
  background: var(--card);
}
.home .fb-title { line-height: 0.9; }
.home .fb-title > span { overflow: visible; }
.home .ticket-invert .ticket-name {
  font-size: clamp(1.95rem, 2.5vw, 2.55rem);
}
.home .ticket-invert .ticket-price {
  font-size: clamp(2.8rem, 4.6vw, 4.1rem);
}
.home .ticket .ticket-price {
  font-size: clamp(2rem, 3vw, 2.7rem);
}
.home .ticket-details,
.home .compare-link {
  font-size: 0.75rem;
  letter-spacing: 0.08em;
}
.home .fb-plate figure { background: oklch(0.12 0.01 70); }
.home .ticket-list { font-size: 0.875rem; }
.home .site-footer {
  background: oklch(0.12 0.008 70);
  color: oklch(0.96 0.008 95);
  border-top-color: oklch(0.36 0.01 70);
}
.home .site-footer__meta,
.home .site-footer h2,
.home .site-footer__blurb,
.home .site-footer li a,
.home .site-footer__legal {
  color: oklch(0.80 0.012 90);
}
.home .site-footer li a:hover { color: oklch(0.97 0.005 95); }
.home .site-footer__meta,
.home .site-footer__legal { border-color: oklch(0.36 0.01 70); }
.home .drawer__foot .ticket-perf { display: none; }

.fit-note {
  display: grid;
  gap: 0.85rem;
  margin: 0 0 2rem;
  padding: 1.15rem 0;
  border-top: 1px solid var(--foreground);
  border-bottom: 1px solid var(--foreground);
}
.fit-note p { margin: 0; max-width: 40rem; font-size: 0.875rem; line-height: 1.55; }
.fit-note .stamp-mono { display: block; margin-bottom: 0.3rem; color: var(--foreground); }
.archive-page > .fit-note { margin-top: 4rem; }

.boundary-list {
  margin: 1.15rem 0 0;
  padding: 0;
  list-style: none;
  max-width: 42rem;
}
.boundary-list li {
  margin: 0;
  padding: 0.55rem 0;
  border-top: 1px solid color-mix(in oklch, currentColor 28%, transparent);
  font-size: 0.875rem;
  line-height: 1.5;
}
.site-footer__boundaries {
  flex: 1 0 100%;
  max-width: 48rem;
  margin: 0.35rem 0 0;
  line-height: 1.45;
  overflow-wrap: break-word;
  color: color-mix(in oklch, var(--background) 82%, transparent);
}

.work-together { margin-top: 6rem; }
.work-list { margin: 1.5rem 0 0; }
.work-list div {
  display: grid;
  gap: 0.35rem;
  padding: 0.95rem 0;
  border-bottom: 1px solid var(--border);
}
.work-list dt {
  margin: 0;
  font-family: var(--font-mono);
  font-size: 0.6875rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.work-list dd {
  margin: 0;
  min-width: 0;
  font-size: 0.875rem;
  line-height: 1.55;
  overflow-wrap: break-word;
}
.work-echo {
  margin: 1.25rem 0 0;
  max-width: 40rem;
  font-size: 0.875rem;
  line-height: 1.55;
  color: var(--muted-foreground);
}
.receive li span:last-child { min-width: 0; overflow-wrap: break-word; }

.faq {
  max-width: 96rem;
  margin: 0 auto;
  padding: 0 clamp(1.25rem, 3vw, 3rem) clamp(3.5rem, 7vw, 7rem);
}
.fb-section .fit-note { border-top: 0; margin-top: 1.6rem; }
.faq h2 { margin: 0.35rem 0 0; max-width: min(16ch, 100%); font-size: clamp(2.1rem, 4vw, 3.4rem); text-wrap: balance; }
.faq-list { margin-top: 1.25rem; border-top: 1px solid var(--foreground); }
.faq-list details { border-bottom: 1px solid var(--border); }
.faq-list summary {
  display: flex;
  align-items: center;
  min-height: 44px;
  padding: 0.75rem 0;
  cursor: pointer;
  color: var(--foreground);
  list-style: none;
}
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary:hover { color: var(--foreground); }
.faq-list details[open] { border-bottom-color: var(--foreground); }
.faq-list details p {
  margin: 0 0 1rem;
  max-width: 40rem;
  font-size: 0.875rem;
  line-height: 1.6;
  color: var(--muted-foreground);
}
@media (min-width: 800px) {
  .work-list div {
    grid-template-columns: minmax(11rem, 14rem) minmax(0, 1fr);
    gap: 1.5rem;
    align-items: baseline;
  }
}
@media (min-width: 901px) {
  .home .fb-card-grid {
    grid-template-columns: 0.84fr 1.2fr 0.84fr;
    align-items: stretch;
  }
}
@media (max-width: 900px) {
  .home .fb-head { grid-template-columns: 1fr; }
  .home .fb-head > p { grid-column: auto; }
}
@media (max-width: 639px) {
  .site-header__bar {
    height: auto;
    grid-template-columns: minmax(0, 1fr) auto;
    grid-template-rows: 4.5rem auto;
    align-items: center;
    padding-bottom: 0.65rem;
  }
  .brand { grid-row: 1; min-width: 0; }
  .site-header__bar [data-open-cart] {
    grid-row: 1;
    grid-column: 2;
    white-space: nowrap;
  }
  .site-nav {
    display: flex;
    grid-column: 1 / -1;
    grid-row: 2;
    justify-content: flex-start;
    gap: 1.25rem;
  }
  .fb-sheet { padding-top: 7.5rem; }
  .fb-eyebrow::before,
  .fb-eyebrow::after { display: none; }
}
@media (max-width: 640px) {
  .fb-plate figure { height: 62vw; max-height: 18rem; }
  .fb-plate img { object-position: 62% 22%; }
  .fb-title { font-size: 2.35rem; max-width: 100%; }
  .brand .poster { font-size: 1.4rem; }
  .site-header__bar { gap: 0.6rem; padding-left: 0.85rem; padding-right: 0.85rem; }
}
