/* dl-kiosk structural stylesheet.
   Rules of the file:
   - vh units throughout. The centered stage is fixed at 9:16, fills 1080×1920
     and 2160×3840 portrait panels, and pillarboxes wider previews. One phone
     query preserves a full-width 9:16 stage and lets the browser scroll around it.
   - Zero scroll on every screen, enforced by on-device checks (tools/ + preview harness).
   - Colors and fonts come exclusively from CSS custom properties set by js/theme.js
     from the active vendor pack. No vendor names, no hex values below this line
     except neutral scrim/shadow alpha values. */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html,
body {
  height: 100vh;
  overflow: hidden;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  user-select: none;
  -webkit-user-select: none;
  -webkit-tap-highlight-color: transparent;
  overscroll-behavior: none;
  touch-action: manipulation;
  cursor: default;
}

img {
  -webkit-user-drag: none;
}

button {
  font: inherit;
  color: inherit;
  background: none;
  border: none;
  cursor: pointer;
}

#app {
  width: min(100%, 56.25vh);
  height: 100vh;
  margin: 0 auto;
  overflow: hidden;
  background: var(--bg);
}

.kiosk {
  height: 100vh;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.experience-host {
  flex: 1 1 auto;
  min-height: 0;
  position: relative;
  overflow: hidden;
}

.screen {
  height: 100%;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  position: relative;
}

/* Interactive screens are budgeted against a full 100vh. Under the switch
   band they render at virtual full height and scale down to fit the host —
   no per-screen re-budgeting, and side gaps land on the shared --bg. The
   static screen sizes itself in % so it needs no scaling. */
.banded .screen {
  height: 100vh;
  transform: scale(0.94);
  transform-origin: top center;
}

.banded .screen.static {
  height: 100%;
  transform: none;
}

/* ------------------------------------------------------------ switch band */

.switch-band {
  flex: 0 0 6vh;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2vh;
  background: var(--surface);
  border-bottom: 0.3vh solid var(--brand);
}

.switch-tab {
  height: 4.4vh;
  position: relative;
  display: flex;
  align-items: center;
  background: transparent;
  padding: 0.5vh 1.2vh;
  opacity: 0.45;
}

.switch-tab[data-active] {
  opacity: 1;
}

.switch-tab[data-active]::after {
  content: "";
  position: absolute;
  left: 22%;
  right: 22%;
  bottom: -0.15vh;
  height: 0.18vh;
  background: var(--brand);
}

.switch-tab-logo {
  height: 3vh;
  max-width: 20vh;
  object-fit: contain;
}

/* ---------------------------------------------------------------- shared */

.wordmark {
  display: block;
  object-fit: contain;
  background: transparent;
  border-radius: 0;
  padding: 0;
}

.nav-bar {
  height: 6vh;
  flex: 0 0 6vh;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 2vh;
  background: var(--surface);
  border-bottom: 0.3vh solid var(--brand);
}

.wordmark-nav {
  height: 4vh;
}

.nav-btn {
  font-family: var(--font-display);
  font-style: var(--display-style, italic);
  font-weight: 700;
  font-size: 2.2vh;
  text-transform: uppercase;
  letter-spacing: 0.1vh;
  color: var(--brand);
  padding: 1vh 2vh;
  min-width: 12vh;
}

.nav-spacer {
  min-width: 12vh;
}

/* Fixed, uniform media boxes (lesson #1): identical box per context, image
   object-fit inside. Never let content density change a box size. */
.media-box {
  position: relative;
  background: var(--media-bg);
  border-radius: var(--media-radius, 1.2vh);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

/* On cards the show offer sits with the price — the product photography stays
   completely unobstructed. */
.product-card .special-flag {
  position: static;
  order: -1;
  flex: 0 0 auto;
  background: transparent;
  color: var(--brand);
  border: 0;
  border-bottom: 0.12vh solid var(--brand);
  border-radius: 0;
  font-size: 1vh;
  letter-spacing: 0.14vh;
  white-space: nowrap;
  padding: 0 0.6vh 0.18vh;
}

.media-box .product-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 1vh;
}

.product-name {
  font-family: var(--font-display);
  font-style: var(--display-style, italic);
  font-weight: 800;
  text-transform: uppercase;
  white-space: nowrap; /* single-line rule (lesson #2) */
  letter-spacing: 0.1vh;
}

.price {
  display: flex;
  align-items: baseline;
  gap: 0.8vh;
}

.price-label {
  font-size: 1.6vh;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.15vh;
}

.price-value {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 2.8vh;
}

.special-flag {
  display: inline-block;
  background: var(--brand);
  color: var(--brand-ink);
  font-family: var(--font-display);
  font-style: var(--display-style, italic);
  font-weight: 800;
  font-size: 1.7vh;
  text-transform: uppercase;
  letter-spacing: 0.1vh;
  padding: 0.7vh 1.4vh;
  border-radius: var(--panel-radius, 0.6vh);
}

.feature-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 1.2vh;
}

.feature-chip {
  font-family: var(--font-display);
  font-style: var(--display-style, italic);
  font-weight: 700;
  font-size: 1.7vh;
  text-transform: uppercase;
  color: var(--text);
  background: var(--chip-bg, transparent);
  border: 0.12vh solid var(--chip-border, var(--brand));
  border-radius: var(--panel-radius, 5vh);
  padding: 0.7vh 1.6vh;
}

.block-heading {
  font-size: 1.8vh;
  text-transform: uppercase;
  letter-spacing: 0.2vh;
  color: var(--text-muted);
  margin-bottom: 1.2vh;
}

/* Brand accent stripe — generic device themed per vendor (FOXPRO: the
   bar-over-bar orange frame reads through these). */
.accent-bar {
  height: 0.6vh;
  background: var(--brand);
}

/* ---------------------------------------------------------------- attract */

.attract {
  justify-content: flex-end;
  cursor: pointer;
}

.attract-hero {
  position: absolute;
  inset: -5vh;
  background-size: cover;
  background-position: center;
  animation: kenburns 36s ease-in-out infinite alternate;
  z-index: 0;
}

@keyframes kenburns {
  from {
    transform: scale(1) translate(0, 0);
  }
  to {
    transform: scale(1.12) translate(-1.5vh, 1.5vh);
  }
}

.attract-content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2.4vh;
  padding: 5vh 4vh 4vh;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.88) 55%, rgba(0, 0, 0, 0));
}

.wordmark-attract {
  height: 9vh;
  max-width: 46vh;
}

.attract-headline {
  font-family: var(--font-display);
  font-style: var(--display-style, italic);
  font-weight: 800;
  font-size: 5vh;
  text-transform: uppercase;
  letter-spacing: 0.2vh;
  text-align: center;
  color: var(--text);
}

.attract-cta {
  font-size: 2.4vh;
  letter-spacing: 0.3vh;
  text-transform: uppercase;
  color: var(--brand);
  animation: pulse 2.4s ease-in-out infinite;
}

@keyframes pulse {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.45;
  }
}

/* ---------------------------------------------------------------- home */

.home {
  padding: 0 3vh;
  gap: 1.8vh;
}

.home-header {
  flex: 0 0 9vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 2vh;
}

.wordmark-home {
  height: 6.5vh;
  max-width: 44vh;
}

.product-cards {
  flex: 0 0 41vh;
  min-height: 0;
  display: flex;
  gap: 2vh;
  justify-content: center;
}

.product-card {
  flex: 1 1 0;
  min-width: 0;
  background: var(--panel-bg, var(--surface));
  border: 0.12vh solid var(--panel-border, transparent);
  border-top: 0.32vh solid var(--brand);
  border-radius: var(--panel-radius, 1.4vh);
  padding: 1.6vh;
  display: flex;
  flex-direction: column;
  gap: 1vh;
  cursor: pointer;
  overflow: hidden;
}

.product-card .media-box {
  height: 20.5vh;
  flex: 0 0 20.5vh;
}

.product-card .product-name {
  font-size: 2.8vh;
  line-height: 1.15;
  text-align: center;
  color: var(--text);
}

.product-card .product-tagline {
  font-size: 1.6vh;
  line-height: 1.35;
  color: var(--text-muted);
  text-align: center;
  flex: 1 1 auto;
  overflow: hidden;
}

/* Fixed bottom row (lesson #4): price and flag never drift with tagline length. */
.card-bottom {
  flex: 0 0 4vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.1vh;
}

.compare-cta {
  flex: 0 0 6.5vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  background: var(--cta-bg, var(--brand));
  color: var(--cta-text, var(--brand-ink));
  font-family: var(--font-display);
  font-style: var(--display-style, italic);
  font-weight: 800;
  font-size: 3vh;
  text-transform: uppercase;
  letter-spacing: 0.15vh;
  border: 0.16vh solid var(--brand);
  border-radius: var(--panel-radius, 1.2vh);
  overflow: hidden;
}

.compare-cta::before,
.compare-cta::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 0.8vh;
  background: var(--brand);
}

.compare-cta::before {
  left: 0;
}

.compare-cta::after {
  right: 0;
}

/* Dealer band: deliberately breaks the consumer look — different background,
   different ink. This is the B2B overlay on a consumer experience. */
.terms-band {
  flex: 0 0 36vh;
  min-height: 0;
  overflow: hidden;
  background: var(--terms-bg);
  color: var(--terms-text);
  border: 0.12vh solid color-mix(in srgb, var(--terms-text) 25%, transparent);
  border-top: 0.38vh solid var(--brand);
  border-radius: var(--panel-radius, 1.4vh) var(--panel-radius, 1.4vh) 0 0;
  padding: 1.4vh 2.4vh;
  display: flex;
  flex-direction: column;
  gap: 1vh;
}

.terms-heading {
  font-family: var(--font-display);
  font-style: var(--display-style, italic);
  font-weight: 800;
  font-size: 2.6vh;
  text-transform: uppercase;
  border-bottom: 0.12vh solid color-mix(in srgb, var(--terms-text) 25%, transparent);
  padding-bottom: 0.6vh;
}

.terms-rows {
  display: grid;
  grid-template-columns: 1fr;
  row-gap: 0.4vh;
}

.terms-row {
  display: flex;
  justify-content: space-between;
  gap: 1.5vh;
  font-size: 1.65vh;
  line-height: 1.3;
}

.terms-label {
  color: var(--terms-text);
  opacity: 0.62;
  white-space: nowrap;
}

.terms-value {
  text-align: right;
  font-weight: 600;
}

.terms-specials {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.8vh;
}

.terms-special-pill {
  background: var(--terms-text);
  color: var(--terms-bg);
  font-weight: 700;
  font-size: 1.35vh;
  padding: 0.35vh 1vh;
  border-left: 0.35vh solid var(--brand);
  border-radius: var(--panel-radius, 4vh);
  white-space: nowrap;
}

.terms-deadline {
  margin-top: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0.3vh;
}

.countdown {
  font-family: var(--font-display);
  font-style: var(--display-style, italic);
  font-weight: 800;
  font-size: 2.2vh;
  text-transform: uppercase;
}

.deadline-note {
  font-size: 1.5vh;
  opacity: 0.72;
}

/* ---------------------------------------------------------------- product */

.product {
  gap: 1vh;
}

.product-layout {
  flex: 0 0 42vh;
  min-height: 0;
  overflow: hidden;
  display: flex;
  gap: 2vh;
  padding: 0 3vh;
}

/* Products with an explainer-chip band need the recovered height in their
   specification columns. Products without one can spend it on photography. */
.product:has(.features-band) .product-layout {
  flex-basis: 33vh;
}

.product:has(.features-band) .media-box-detail {
  height: 22vh;
  flex-basis: 22vh;
}

.product:has(.features-band) .product-info {
  gap: 0.9vh;
}

.product:has(.features-band) .highlights {
  gap: 0.5vh;
}

.product:has(.features-band) .highlight {
  font-size: 1.5vh;
}

.product:has(.features-band) .spec-group {
  margin-bottom: 1.1vh;
  padding: 1.2vh 1.5vh;
}

.product:has(.features-band) .spec-group-label {
  font-size: 1.75vh;
  margin-bottom: 0.9vh;
}

.product:has(.features-band) .spec-row {
  font-size: 1.3vh;
  line-height: 1.35;
  padding: 0.55vh 0;
}

.product-media {
  flex: 0 0 42%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 1.4vh;
}

.media-box-detail {
  height: 23vh;
  flex: 0 0 23vh;
  cursor: zoom-in;
}

.badges {
  display: flex;
  gap: 1.2vh;
}

.badge {
  flex: 1 1 0;
  background: var(--panel-bg, var(--surface));
  border: 0.12vh solid var(--panel-border, var(--brand));
  border-top: 0.28vh solid var(--brand);
  border-radius: var(--panel-radius, 1vh);
  padding: 0.8vh 0.5vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.2vh;
}

.badge-value {
  font-family: var(--font-display);
  font-style: var(--display-style, italic);
  font-weight: 800;
  font-size: 2.8vh;
  color: var(--text);
}

.badge-label {
  font-size: 1.1vh;
  letter-spacing: 0.1vh;
  text-transform: uppercase;
  color: var(--text-muted);
  text-align: center;
}

.product-info {
  flex: 1 1 0;
  min-width: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 1.2vh;
}

.product-name-detail {
  font-size: 4.2vh;
}

.product-info .product-tagline {
  font-size: 1.8vh;
  line-height: 1.35;
  color: var(--text-muted);
}

.product-meta {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 1vh 1.6vh;
}

.product-meta .special-flag {
  font-size: 1.35vh;
  white-space: nowrap;
  padding: 0.5vh 1vh;
}

.product-meta .price-value {
  font-size: 2.4vh;
}

.highlights {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.7vh;
}

.highlight {
  font-size: 1.6vh;
  line-height: 1.3;
  padding-left: 2.2vh;
  position: relative;
}

.highlight::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.75vh;
  width: 1.1vh;
  height: 1.1vh;
  background: var(--brand);
  border-radius: 0.2vh;
  transform: skewX(-12deg);
}

.features-band {
  flex: 0 0 7vh;
  min-height: 0;
  overflow: hidden;
  padding: 0 3vh;
}

.features-band .block-heading {
  margin-bottom: 0.7vh;
}

/* Browser-balanced two-column flow: spec groups vary in height per product,
   so let the column engine distribute them instead of hand-assigning. */
.spec-groups {
  flex: 1 1 auto;
  min-height: 0;
  column-count: 2;
  column-gap: 2vh;
  column-fill: auto; /* fill to the definite height — balancing spills to phantom columns */
  padding: 0 3vh;
  overflow: hidden;
}

.spec-group {
  break-inside: avoid;
  margin-bottom: 1vh;
  background: var(--panel-bg, var(--surface));
  border: 0.12vh solid var(--panel-border, transparent);
  border-radius: var(--panel-radius, 1.2vh);
  padding: 1vh 1.5vh;
}

.spec-group-label {
  font-family: var(--font-display);
  font-style: var(--display-style, italic);
  font-weight: 800;
  font-size: 1.9vh;
  text-transform: uppercase;
  color: var(--brand);
  border-bottom: 0.1vh solid var(--panel-border, transparent);
  padding-bottom: 0.45vh;
  margin-bottom: 0.7vh;
}

.spec-row {
  display: flex;
  justify-content: space-between;
  gap: 1.2vh;
  font-size: 1.45vh;
  line-height: 1.3;
  padding: 0.35vh 0;
}

.spec-label {
  color: var(--text-muted);
}

.spec-value {
  font-weight: 600;
  text-align: right;
}

.product-footer {
  flex: 0 0 4.9vh;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2vh;
  padding: 0 3vh 1.2vh;
}

.other-product {
  display: flex;
  align-items: baseline;
  gap: 1.2vh;
  background: var(--panel-bg, var(--surface));
  border: 0.12vh solid var(--panel-border, transparent);
  border-left: 0.35vh solid var(--brand);
  border-radius: var(--panel-radius, 1vh);
  padding: 1vh 2.4vh;
}

.other-product-label {
  font-size: 1.6vh;
  text-transform: uppercase;
  letter-spacing: 0.15vh;
  color: var(--text-muted);
}

.other-product-name {
  font-family: var(--font-display);
  font-style: var(--display-style, italic);
  font-weight: 800;
  font-size: 2.4vh;
  text-transform: uppercase;
  color: var(--brand);
}

/* ---------------------------------------------------------------- compare */

.compare {
  gap: 1.2vh;
  padding-bottom: 1.6vh;
}

.compare-heading {
  font-family: var(--font-display);
  font-style: var(--display-style, italic);
  font-weight: 800;
  font-size: 3vh;
  text-transform: uppercase;
  text-align: center;
  flex: 0 0 3.6vh;
}

.compare-cols {
  flex: 0 0 16.5vh;
  display: flex;
  gap: 2vh;
  padding: 0 3vh;
}

.compare-col {
  flex: 1 1 0;
  min-width: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.8vh;
}

.media-box-compare {
  height: 12.5vh;
  flex: 0 0 12.5vh;
  width: 100%;
}

.compare-col .product-name {
  font-size: 2.8vh;
}

.compare-rows {
  flex: 1 1 auto;
  min-height: 0;
  display: flex;
  flex-direction: column;
  justify-content: space-evenly;
  padding: 0 3vh;
  overflow: hidden;
}

.compare-row {
  display: flex;
  flex-direction: column;
  flex-shrink: 0;
  padding: 0.5vh 1.2vh;
  border-radius: var(--panel-radius, 0.8vh);
  border-bottom: 0.1vh solid var(--panel-border, transparent);
}

.compare-row-inline {
  display: grid;
  grid-template-columns: 1fr 12vh 1fr;
  align-items: center;
  column-gap: 1vh;
}

.compare-row[data-differs] {
  background: var(--panel-bg, var(--surface));
  box-shadow: inset 0.4vh 0 0 var(--brand);
}

.compare-label {
  font-size: 1.35vh;
  text-transform: uppercase;
  letter-spacing: 0.1vh;
  line-height: 1.25;
  color: var(--text-muted);
}

.compare-row-inline .compare-label {
  text-align: center;
}

.compare-values {
  display: flex;
  gap: 2vh;
}

.compare-value {
  min-width: 0;
  font-size: 1.7vh;
  font-weight: 600;
  line-height: 1.3;
}

.compare-values .compare-value {
  flex: 1 1 0;
}

.compare-value-a {
  text-align: left;
}

.compare-value-b {
  text-align: right;
}

.compare-features {
  flex: 0 0 6vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 3vh;
}

/* ---------------------------------------------------------------- overlays */

.overlay {
  position: fixed;
  inset: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
}

.overlay-scrim {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.82);
}

.overlay-card {
  position: relative;
  z-index: 1;
  background: var(--surface);
  border-radius: 1.6vh;
  border-top: 0.6vh solid var(--brand);
  padding: 4vh;
  max-width: 48vh;
  width: 86%;
  display: flex;
  flex-direction: column;
  gap: 1.6vh;
  max-height: 80vh;
  overflow: hidden;
}

.overlay-close {
  position: absolute;
  top: 1.2vh;
  right: 1.2vh;
  font-size: 1.8vh;
  text-transform: uppercase;
  letter-spacing: 0.15vh;
  color: var(--text-muted);
  padding: 1vh 1.6vh;
}

/* Lightbox: cutout on a light pedestal card over the dark scrim. */
.overlay-card[data-lightbox] {
  background: var(--media-bg);
  max-width: 52vh;
}

.lightbox-stage {
  display: flex;
  align-items: center;
  gap: 1vh;
  height: 46vh;
}

.lightbox-img {
  flex: 1 1 0;
  min-width: 0;
  height: 100%;
  object-fit: contain;
}

.lightbox-nav {
  flex: 0 0 6vh;
  font-size: 6vh;
  line-height: 1;
  color: #666666;
  padding: 2vh 0;
}

.lightbox-dots {
  display: flex;
  justify-content: center;
  gap: 1.2vh;
}

.lightbox-dot {
  width: 1.4vh;
  height: 1.4vh;
  border-radius: 50%;
  background: #c9c9c9;
}

.lightbox-dot[data-active] {
  background: var(--brand);
}

.feature-name {
  font-family: var(--font-display);
  font-style: var(--display-style, italic);
  font-weight: 800;
  font-size: 3.6vh;
  text-transform: uppercase;
  color: var(--brand);
}

.feature-tagline {
  font-size: 2.1vh;
  font-weight: 700;
  line-height: 1.35;
}

.feature-body {
  font-size: 1.9vh;
  line-height: 1.5;
  color: var(--text-muted);
}

/* ---------------------------------------------------------------- staff */

.staff-card {
  max-width: 52vh;
  gap: 1.2vh;
}

.staff-heading {
  font-size: 2.4vh;
  text-transform: uppercase;
  letter-spacing: 0.15vh;
}

.staff-stat-block {
  border-top: 0.15vh solid rgba(255, 255, 255, 0.14);
  padding-top: 0.8vh;
}

.staff-stat-title {
  font-size: 1.5vh;
  text-transform: uppercase;
  letter-spacing: 0.15vh;
  color: var(--text-muted);
  margin-bottom: 0.4vh;
}

.staff-stat-row {
  display: flex;
  justify-content: space-between;
  font-size: 1.8vh;
  padding: 0.25vh 0;
}

.staff-stat-value {
  font-weight: 700;
}

.staff-actions {
  display: flex;
  gap: 1.2vh;
  margin-top: 1vh;
}

.staff-btn {
  flex: 1 1 0;
  background: var(--brand);
  color: var(--brand-ink);
  font-weight: 700;
  font-size: 1.7vh;
  padding: 1.4vh 1vh;
  border-radius: 0.8vh;
  text-align: center;
}

.staff-btn-danger {
  background: transparent;
  color: var(--text-muted);
  border: 0.2vh solid var(--text-muted);
}

.staff-volume-block {
  display: flex;
  align-items: center;
  gap: 1.4vh;
  border-top: 0.15vh solid rgba(255, 255, 255, 0.14);
  padding-top: 1vh;
}

.staff-volume-slider {
  flex: 1 1 auto;
  accent-color: var(--brand);
  height: 3vh;
}

.staff-volume-block .staff-btn {
  flex: 0 0 auto;
  padding: 0.8vh 1.6vh;
}

/* ---------------------------------------------------------------- static */
/* Signage screen in thirds. Sized in % of its host so it fits identically
   with or without the switch band. */

.static {
  gap: 1.2vh;
  padding-bottom: 1.2vh;
}

.static-video {
  flex: 0 0 28%;
  min-height: 0;
  background: var(--static-video-bg, #000000);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5vh 3vh;
}

.static-video video {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.videos-pending {
  width: 100%;
  height: 100%;
  position: relative;
  overflow: hidden;
  border: 0.12vh solid rgba(255, 255, 255, 0.2);
  border-radius: var(--static-radius, 0.4vh);
  background:
    radial-gradient(circle at 50% 120%, rgba(255, 255, 255, 0.09), transparent 55%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.025), transparent 48%);
  color: rgba(255, 255, 255, 0.58);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2vh;
  text-transform: uppercase;
  padding: 3vh;
  text-align: center;
}

.videos-pending::before,
.videos-pending::after {
  content: "";
  position: absolute;
  width: 5vh;
  height: 0.18vh;
  background: var(--brand);
}

.videos-pending::before {
  top: 1.5vh;
  left: 1.5vh;
}

.videos-pending::after {
  right: 1.5vh;
  bottom: 1.5vh;
}

.videos-pending-logo {
  height: 7.5vh;
  max-width: 34vh;
  object-fit: contain;
}

.videos-pending-copy {
  font-size: 1.35vh;
  font-weight: 600;
  letter-spacing: 0.32vh;
}

.static-notes {
  flex: 1 1 auto;
  min-height: 0;
  overflow: hidden;
  background: var(--static-notes-bg, var(--terms-bg));
  color: var(--static-notes-text, var(--terms-text));
  border: 0.12vh solid rgba(255, 255, 255, 0.18);
  border-radius: var(--static-radius, 1.4vh);
  margin: 0 3vh;
  padding: 1.3vh 2.4vh;
  display: flex;
  flex-direction: column;
  gap: 0.8vh;
}

.static-notes .terms-row {
  font-size: 1.6vh;
}

.static-notes .terms-heading {
  font-size: 2.3vh;
  border-bottom-color: rgba(0, 0, 0, 0.18);
}

.notes-footnote {
  margin-top: auto;
  font-size: 1.5vh;
  line-height: 1.35;
  text-align: center;
  opacity: 0.72;
}

.static-specials {
  flex: 0 0 33%;
  min-height: 0;
  overflow: hidden;
  position: relative;
  isolation: isolate;
  background: var(--surface);
  border-top: 0.15vh solid rgba(255, 255, 255, 0.22);
  padding: 1.1vh 3vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.9vh;
}

.static-specials::before,
.static-specials::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.static-specials::before {
  z-index: 0;
  background-image: var(--static-specials-image, none);
  background-size: cover;
  background-position: center 27%;
  filter: grayscale(0.2) contrast(1.12);
  opacity: 0.9;
}

.static-specials::after {
  z-index: 1;
  background: linear-gradient(
    180deg,
    rgba(5, 6, 6, 0.42) 0%,
    rgba(5, 6, 6, 0.58) 48%,
    rgba(5, 6, 6, 0.92) 100%
  );
}

.static-specials > * {
  position: relative;
  z-index: 2;
}

.specials-heading {
  font-family: var(--font-display);
  font-style: var(--display-style, italic);
  font-weight: 800;
  font-size: 3vh;
  text-transform: uppercase;
  letter-spacing: 0.25vh;
  display: flex;
  align-items: center;
  gap: 1.2vh;
}

.specials-heading::before {
  content: "";
  width: 3.5vh;
  height: 0.18vh;
  background: var(--brand);
}

.specials-tiers {
  display: flex;
  gap: 2vh;
  width: 100%;
  justify-content: center;
}

.specials-tier {
  flex: 1 1 0;
  max-width: 18vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.3vh;
  border-right: 0.1vh solid rgba(255, 255, 255, 0.2);
  padding: 0 1vh;
}

.specials-tier:last-child {
  border-right: none;
}

.tier-value {
  font-family: var(--font-display);
  font-style: var(--display-style, italic);
  font-weight: 800;
  font-size: 5.2vh;
  line-height: 1;
  color: var(--static-tier-value, var(--brand));
}

.tier-label {
  font-size: 1.5vh;
  color: var(--text-muted);
  text-align: center;
}

.specials-note {
  font-size: 1.5vh;
  line-height: 1.35;
  color: var(--text-muted);
  text-align: center;
  max-width: 46vh;
}

.specials-extra {
  display: flex;
  align-items: baseline;
  gap: 1.4vh;
  background: var(--static-extra-bg, var(--brand));
  color: var(--static-extra-text, var(--brand-ink));
  border: var(--static-extra-border, none);
  border-radius: var(--static-radius, 1vh);
  padding: 0.9vh 2.4vh;
}

.extra-value {
  font-family: var(--font-display);
  font-style: var(--display-style, italic);
  font-weight: 800;
  font-size: 2.7vh;
  text-transform: uppercase;
  color: var(--brand);
}

.extra-label {
  font-size: 1.8vh;
  font-weight: 600;
}

.specials-deadline {
  font-size: 1.4vh;
  font-weight: 700;
  letter-spacing: 0.08vh;
  text-transform: uppercase;
  white-space: nowrap;
}

/* A phone's URL/tool bars shorten the visible viewport. Render the unchanged
   vh-based kiosk at full phone width, then scroll the resulting 9:16 stage;
   never fit or shrink the layout to the temporarily reduced browser height. */
@media (max-width: 600px) {
  html {
    height: auto;
    overflow-x: hidden;
    overflow-y: auto;
  }

  body {
    position: relative;
    width: 100%;
    height: var(--mobile-stage-height, 177.7778vw);
    min-height: var(--mobile-stage-height, 177.7778vw);
    overflow-x: clip;
    overflow-y: visible;
  }

  #app {
    position: absolute;
    inset: 0 auto auto 0;
    width: 56.25vh;
    margin: 0;
    transform: scale(var(--mobile-stage-scale, 1));
    transform-origin: top left;
  }
}
