:root {
  --bg: #050505;
  --paper: #0e0e0e;
  --line: #262626;
  --text: #f4f4f4;
  --muted: #b3b3b3;
  --accent: #ff2b36;
  --ok: #09d688;
  --bad: #ff6161;
}

@font-face {
  font-family: "Extenda100Yotta";
  src: url("./assets/fonts/extenda-100yotta.otf") format("opentype");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: "Extenda80Peta";
  src: url("./assets/fonts/extenda-80peta.otf") format("opentype");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: "Extenda60Giga";
  src: url("./assets/fonts/extenda-60giga.otf") format("opentype");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: "Extenda40Hecto";
  src: url("./assets/fonts/extenda-40-hecto.ttf") format("truetype");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  min-height: 100%;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Manrope", sans-serif;
  color: var(--text);
  background: #000;
  overflow: hidden;
}

.bg-noise {
  display: none;
}

.page {
  width: 100%;
  margin: 0 auto;
  padding: 0;
}

.hero {
  position: relative;
  overflow: hidden;
  height: 100svh;
  max-height: 100svh;
  display: grid;
  place-items: center;
  padding: clamp(1rem, 2.5svh, 1.75rem) 2vw clamp(1rem, 3.6svh, 2.4rem);
  text-align: center;
  margin-bottom: 0;
  animation: rise 650ms ease-out both;
  user-select: none;
  -webkit-user-select: none;
}

.hero-brand-lockup {
  position: relative;
  z-index: 2;
  display: grid;
  justify-items: center;
  gap: clamp(0.45rem, 1.2vw, 0.82rem);
}

.brand {
  position: relative;
  z-index: 2;
  margin: 0;
  display: grid;
  gap: 0.1rem;
  justify-items: center;
  font-family: "Extenda100Yotta", sans-serif;
  font-size: clamp(2rem, 8.7vw, 5rem);
  line-height: 0.7;
  letter-spacing: 2px;
  text-transform: uppercase;
  text-shadow: none;
}

.brand-row {
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero.cascade-ready .brand-row {
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 220ms ease, transform 220ms ease;
}

.hero.cascade-ready .brand-row.brand-row-top,
.hero.cascade-ready .brand-row.brand-row-bottom {
  transform: scaleX(1.02) translateY(10px);
}

.hero.cascade-ready .brand-row.is-fixed {
  opacity: 1;
  transform: none;
}

.hero.cascade-ready .brand-row.is-fixed.brand-row-top,
.hero.cascade-ready .brand-row.is-fixed.brand-row-bottom {
  transform: scaleX(1.02);
}

.brand-word {
  color: #efefef;
}

.brand-row-mid {
  column-gap: 0.34em;
}

.brand-word.accent {
  color: var(--accent);
  text-shadow: none;
}

.brand-row-top,
.brand-row-bottom {
  transform: scaleX(1.02);
}

.brand-tagline {
  transform: translateY(10px);
  z-index: 2;
  margin: 0;
  padding: 0 1.2rem;
  width: min(760px, 92vw);
  color: #f2f2f2;
  font-family: "Roboto Mono", Menlo, Monaco, Consolas, "Courier New", monospace;
  font-size: clamp(0.72rem, 1.18vw, 0.86rem);
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0;
  text-align: center;
  text-transform: uppercase;
  opacity: 0;
  transition: opacity 700ms ease, transform 700ms ease;
}

.brand-tagline.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.hero-actions {
  position: absolute;
  left: 50%;
  right: auto;
  bottom: clamp(1rem, 4svh, 2.7rem);
  transform: translate(-50%, 10px);
  z-index: 2;
  display: grid;
  justify-items: center;
  gap: 0;
  width: min(92vw, 460px);
  opacity: 0;
  transition: opacity 700ms ease, transform 700ms ease;
}

.hero-actions.is-visible {
  opacity: 1;
  transform: translate(-50%, 0);
}

.hero-scroll {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: clamp(14rem, 19vw, 18rem);
  max-width: min(100%, 18rem);
  min-height: 3rem;
  padding: 0.86rem 1.25rem;
  border-radius: 12px;
  background: var(--accent);
  color: #fff;
  box-shadow: 0 10px 24px rgba(255, 43, 54, 0.3);
  text-decoration: none;
  text-transform: uppercase;
  font-size: 0.96rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  transition: box-shadow 180ms ease, background 180ms ease, transform 180ms ease;
}

.hero-scroll:hover {
  background: #ff3640;
  box-shadow: 0 14px 30px rgba(255, 43, 54, 0.38);
  transform: translateY(-1px);
}

.hero-scroll:hover .hero-scroll-label {
  text-decoration: none;
}

.hero-scroll.is-disabled {
  cursor: not-allowed;
  background: #3a1518;
  color: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(255, 43, 54, 0.34);
  box-shadow: 0 8px 20px rgba(255, 43, 54, 0.12);
}

.hero-scroll.is-disabled:hover {
  transform: none;
  background: #3a1518;
  box-shadow: 0 8px 20px rgba(255, 43, 54, 0.12);
}

.hero-launch-note {
  margin: 0.34rem 0 clamp(0.92rem, 1.7svh, 1.28rem);
  color: rgba(242, 242, 242, 0.58);
  font-family: "Roboto Mono", Menlo, Monaco, Consolas, "Courier New", monospace;
  font-size: clamp(0.54rem, 0.78vw, 0.64rem);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0;
  text-align: center;
  text-transform: uppercase;
  white-space: nowrap;
}

.hero-launch-note span {
  display: block;
}

.hero-secondary-actions {
  display: flex;
  justify-content: center;
  gap: 0.55rem;
  width: 100%;
  flex-wrap: wrap;
  margin-top: clamp(2.8rem, 7svh, 5rem);
}

.hero-secondary-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.55rem;
  padding: 0.72rem 0.95rem;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 10px;
  color: #fff;
  font-size: clamp(0.68rem, 1.7vw, 0.76rem);
  font-weight: 900;
  letter-spacing: 0.05em;
  line-height: 1;
  text-decoration: none;
  text-transform: uppercase;
  white-space: nowrap;
  transition: transform 180ms ease, filter 180ms ease, border-color 180ms ease;
}

.hero-secondary-btn:hover {
  transform: translateY(-1px);
  filter: brightness(1.06);
  border-color: rgba(255, 255, 255, 0.28);
}

.hero-menu-btn {
  background: #e8dfc8;
  color: #070707;
}

.hero-community-btn {
  background: #168a48;
  color: #fff;
}

.hero-service-line {
  margin: 0.5rem 0 0;
  color: rgba(242, 242, 242, 0.72);
  font-family: "Roboto Mono", Menlo, Monaco, Consolas, "Courier New", monospace;
  font-size: clamp(0.58rem, 0.9vw, 0.72rem);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0;
  text-align: center;
  text-transform: uppercase;
  white-space: nowrap;
}

.hero-scroll-arrow {
  color: var(--accent);
  font-size: 1.25rem;
  line-height: 1;
  animation: arrowBlink 900ms ease-in-out infinite;
}

.cascade-layer {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}

.cascade-word {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  font-family: "Extenda100Yotta", sans-serif;
  font-size: clamp(2rem, 8.7vw, 5rem);
  line-height: 0.7;
  letter-spacing: 2px;
  color: #efefef;
  text-transform: uppercase;
  white-space: nowrap;
  opacity: 0;
  transition: opacity 140ms linear;
}

.cascade-word.is-live {
  opacity: 1;
}

.cascade-word.is-fade {
  opacity: 0;
}

.intro-product {
  min-height: 52vh;
  display: grid;
  place-items: center;
  padding: 3.5rem 0 3.2rem;
  background: #000;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.intro-product-inner {
  width: min(920px, 90vw);
  margin: 0 auto;
  text-align: center;
  opacity: 0;
  transform: translateY(16px);
  animation: introRise 700ms ease both;
}

.intro-kicker {
  margin: 0 0 1rem;
  color: var(--accent);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.intro-title {
  margin: 0;
  font-family: "Extenda80Peta", sans-serif;
  font-size: clamp(2.8rem, 10vw, 6rem);
  line-height: 0.8;
  letter-spacing: 0.015em;
  text-transform: uppercase;
  color: #f2f2f2;
}

.intro-title span {
  color: var(--accent);
}

.intro-copy {
  margin: 1.25rem auto 0;
  max-width: 760px;
  color: #efefef;
  font-size: clamp(1.02rem, 2.2vw, 1.45rem);
  font-weight: 700;
  line-height: 1.35;
}

.intro-origin {
  margin: 0.65rem 0 0;
  color: var(--muted);
  font-size: clamp(0.9rem, 1.7vw, 1.05rem);
  line-height: 1.4;
}

.intro-schedule {
  margin: 1.4rem auto 0;
  width: fit-content;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  padding: 0.62rem 1.05rem;
  background: rgba(255, 255, 255, 0.04);
  color: #d8d8d8;
  font-size: clamp(0.82rem, 1.5vw, 0.98rem);
  font-weight: 700;
  letter-spacing: 0.01em;
  line-height: 1.2;
}

.thermal-ticket-section {
  width: min(1120px, 92vw);
  margin: 0 auto;
  padding: 4.3rem 0 3.4rem;
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(320px, 0.78fr);
  gap: clamp(1.4rem, 5vw, 4.2rem);
  align-items: center;
  border-top: 1px solid rgba(255, 255, 255, 0.07);
}

.thermal-ticket-copy {
  max-width: 560px;
}

.thermal-ticket-kicker {
  margin: 0 0 0.75rem;
  color: var(--accent);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.thermal-ticket-copy h2 {
  margin: 0;
  color: #f4f4f4;
  font-family: "Extenda80Peta", sans-serif;
  font-size: clamp(3.3rem, 9vw, 6.6rem);
  line-height: 0.78;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.thermal-ticket-copy p:not(.thermal-ticket-kicker) {
  margin: 1rem 0 0;
  max-width: 20ch;
  color: #d8d8d8;
  font-size: clamp(1.02rem, 2vw, 1.34rem);
  font-weight: 800;
  line-height: 1.28;
}

.thermal-ticket-btn {
  width: fit-content;
  max-width: 100%;
  margin-top: 1.45rem;
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.thermal-ticket-btn:hover {
  box-shadow: 0 14px 26px rgba(255, 43, 54, 0.34);
}

.thermal-ticket {
  position: relative;
  width: min(100%, 430px);
  justify-self: end;
  margin: 0;
  color: #101010;
  font-family: "Extenda40Hecto", "Arial Narrow", "Roboto Condensed", sans-serif;
  filter: drop-shadow(0 22px 34px rgba(0, 0, 0, 0.55));
}

.thermal-ticket::before,
.thermal-ticket::after {
  content: "";
  position: absolute;
  left: 7px;
  right: 7px;
  height: 1px;
  background: repeating-linear-gradient(
    90deg,
    rgba(0, 0, 0, 0.34) 0 8px,
    transparent 8px 13px
  );
  z-index: 2;
}

.thermal-ticket::before {
  top: 10px;
}

.thermal-ticket::after {
  bottom: 34px;
}

.thermal-ticket-top {
  height: 14px;
  background:
    linear-gradient(90deg, transparent 0 10px, rgba(0, 0, 0, 0.14) 10px 11px, transparent 11px 22px),
    #e6dfcf;
  background-size: 22px 100%;
  border: 1px solid rgba(0, 0, 0, 0.18);
  border-bottom: none;
}

.thermal-ticket-inner {
  position: relative;
  padding: 1.35rem 1.22rem 1.1rem;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.035), transparent 10%, transparent 90%, rgba(0, 0, 0, 0.045)),
    repeating-linear-gradient(0deg, rgba(0, 0, 0, 0.018) 0 1px, transparent 1px 4px),
    #f2ead7;
  border: 1px solid rgba(0, 0, 0, 0.22);
  border-top: none;
  box-shadow: inset 0 0 22px rgba(0, 0, 0, 0.08);
}

.ticket-brand {
  margin: 0 0 1rem;
  color: #111;
  font-size: clamp(1.3rem, 5.2vw, 1.85rem);
  font-weight: 900;
  line-height: 0.95;
  letter-spacing: 0.05em;
  text-align: center;
  text-transform: uppercase;
}

.ticket-name,
.ticket-notes {
  display: grid;
  gap: 0.32rem;
  margin: 0;
  font-size: 1rem;
  font-weight: 900;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.ticket-name input,
.ticket-notes textarea {
  width: 100%;
  border: 0;
  border-bottom: 2px solid rgba(0, 0, 0, 0.72);
  border-radius: 0;
  background: transparent;
  color: #101010;
  font: inherit;
  outline: none;
}

.ticket-name input {
  height: 1.55rem;
}

.ticket-items {
  margin: 1.05rem 0 1rem;
}

.ticket-row {
  display: grid;
  grid-template-columns: 1.08rem minmax(0, max-content) minmax(1.2rem, 1fr) auto;
  gap: 0.35rem;
  align-items: center;
  min-height: 1.42rem;
  font-size: clamp(0.98rem, 3.7vw, 1.2rem);
  font-weight: 900;
  line-height: 1;
  letter-spacing: 0.022em;
  text-transform: uppercase;
  cursor: pointer;
}

.ticket-row + .ticket-row {
  margin-top: 0.22rem;
}

.ticket-row input {
  width: 0.94rem;
  height: 0.94rem;
  margin: 0;
  appearance: none;
  border: 2px solid #101010;
  border-radius: 0;
  background: transparent;
  display: grid;
  place-items: center;
}

.ticket-row input::after {
  content: "";
  width: 0.42rem;
  height: 0.42rem;
  background: #101010;
  opacity: 0;
  transform: rotate(-8deg);
}

.ticket-row input:checked::after {
  opacity: 1;
}

.ticket-item {
  min-width: 0;
  white-space: nowrap;
}

.ticket-dots {
  align-self: end;
  min-width: 0;
  height: 0.18rem;
  margin-bottom: 0.05rem;
  background-image: radial-gradient(currentColor 1px, transparent 1.4px);
  background-size: 6px 2px;
  opacity: 0.62;
}

.ticket-price {
  white-space: nowrap;
}

.ticket-gap {
  height: 0.78rem;
}

.ticket-notes textarea {
  min-height: 2.15rem;
  resize: vertical;
}

.ticket-hours {
  margin: 1.05rem 0 0;
  padding-top: 0.82rem;
  border-top: 1px dashed rgba(0, 0, 0, 0.52);
  color: #171717;
  font-size: clamp(1rem, 4vw, 1.18rem);
  font-weight: 900;
  line-height: 1;
  letter-spacing: 0.045em;
  text-align: center;
  text-transform: uppercase;
}

.ticket-small {
  margin: 0.55rem 0 0;
  color: rgba(255, 255, 255, 0.58);
  font-family: "Manrope", sans-serif;
  font-size: 0.74rem;
  line-height: 1.35;
  text-align: center;
}

.order-hub {
  width: min(1100px, 92vw);
  margin: 0 auto;
  padding: 4.2rem 0 1.2rem;
}

.order-hub-head {
  width: min(920px, 100%);
  margin: 0 auto 1.8rem;
  text-align: center;
}

.order-hub-kicker {
  margin: 0 0 0.75rem;
  color: var(--accent);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.order-hub-title {
  margin: 0;
  color: #f4f4f4;
  font-family: "Extenda60Giga", sans-serif;
  font-size: clamp(2.2rem, 6.2vw, 4rem);
  line-height: 0.86;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.order-hub-subtitle {
  margin: 1rem auto 0;
  max-width: 900px;
  color: #cfcfcf;
  font-size: clamp(0.98rem, 1.85vw, 1.15rem);
  line-height: 1.45;
}

.order-hub-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.06fr) minmax(320px, 0.94fr);
  gap: 1.1rem;
  align-items: start;
}

.zone-card {
  width: 100%;
  margin: 0;
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.015));
  border: 1px solid var(--line);
  border-radius: 22px;
  backdrop-filter: blur(4px);
  padding: 1rem;
}

.zone-card-main {
  min-height: 100%;
}

.zone-head h2 {
  margin: 0;
  font-family: "Extenda60Giga", sans-serif;
  font-size: clamp(1.7rem, 3.1vw, 2.4rem);
  line-height: 1;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.zone-head p {
  margin-top: 0.2rem;
  margin-bottom: 0.8rem;
  color: var(--muted);
  font-size: 0.94rem;
}

.zone-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 0.9rem;
}

.zone-locate-btn {
  flex-shrink: 0;
  margin-top: 0.06rem;
}

.map {
  height: min(44vh, 360px);
  border-radius: 14px;
  border: 1px solid var(--line);
  overflow: hidden;
}

.status-wrap {
  margin-top: 0.85rem;
}

.badge {
  display: inline-flex;
  margin: 0;
  padding: 0.35rem 0.7rem;
  border-radius: 999px;
  font-size: 0.84rem;
  font-weight: 800;
  letter-spacing: 0.01em;
}

.badge.waiting {
  background: #2a2a2a;
  color: #ededed;
}

.badge.ok {
  background: color-mix(in srgb, var(--ok) 23%, #000);
  color: #c4ffe8;
}

.badge.bad {
  background: color-mix(in srgb, var(--bad) 23%, #000);
  color: #ffd7d7;
}

.status-text {
  margin: 0.45rem 0 0;
  color: var(--muted);
  font-size: 0.94rem;
}

.actions {
  display: flex;
  gap: 0.72rem;
  margin-top: 1rem;
  flex-wrap: wrap;
}

.order-actions {
  display: grid;
  gap: 1rem;
}

.info-card {
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.012));
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 18px;
  padding: 1.05rem;
}

.info-card-kicker {
  margin: 0 0 0.7rem;
  color: var(--accent);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.info-card h3 {
  margin: 0;
  color: var(--accent);
  font-family: "Extenda60Giga", sans-serif;
  font-size: clamp(1.25rem, 2vw, 1.85rem);
  line-height: 1;
  letter-spacing: 0.008em;
  text-transform: uppercase;
}

.info-card p {
  margin: 0.78rem 0 0;
  color: #cfcfcf;
  font-size: 0.96rem;
  line-height: 1.45;
}

.community-card {
  border-color: rgba(255, 43, 54, 0.38);
  background: linear-gradient(160deg, rgba(255, 43, 54, 0.08), rgba(255, 255, 255, 0.014));
}

.community-card h3 {
  font-size: clamp(1.34rem, 2.4vw, 2.06rem);
  line-height: 1;
}

.community-card p {
  color: #d9d9d9;
  margin-top: 0.9rem;
}

.community-card .info-btn {
  background: #1d1d1d;
  border-color: #3a3a3a;
  color: #fff;
}

.info-btn {
  display: inline-flex;
  width: fit-content;
  max-width: 100%;
  margin-top: 1rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: none;
  text-decoration: none;
  padding: 0.86rem 1.2rem;
  border-radius: 12px;
  font-weight: 800;
  line-height: 1.1;
  cursor: pointer;
  transition: transform 180ms ease, box-shadow 180ms ease, opacity 180ms ease;
}

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

.btn-secondary {
  background: #161616;
  color: #f2f2f2;
  border: 1px solid #303030;
}

.btn-primary {
  background: var(--accent);
  color: #fff;
  box-shadow: 0 10px 20px rgba(255, 43, 54, 0.28);
}

.btn-primary.is-disabled {
  opacity: 1;
  background: #2c1719;
  color: rgba(255, 255, 255, 0.65);
  border: 1px solid #4a2327;
  pointer-events: none;
  box-shadow: none;
}

@keyframes rise {
  from {
    transform: translateY(14px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

@keyframes introRise {
  from {
    opacity: 0;
    transform: translateY(16px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes arrowBlink {
  0%,
  100% {
    opacity: 0.35;
    transform: translateY(0);
  }
  50% {
    opacity: 1;
    transform: translateY(3px);
  }
}

@supports (animation-timeline: view()) {
  .intro-product-inner {
    animation-timeline: view();
    animation-range: entry 10% cover 35%;
  }
}

@media (prefers-reduced-motion: reduce) {
  .intro-product-inner {
    opacity: 1;
    transform: none;
    animation: none;
  }

  .hero-scroll-arrow {
    animation: none;
  }
}

@media (max-width: 760px) {
  .page {
    padding-top: 0;
  }

  .hero {
    padding: clamp(0.8rem, 2svh, 1.2rem) 1rem clamp(0.8rem, 2.4svh, 1.4rem);
  }

  .zone-card {
    padding: 0.85rem;
  }

  .zone-head {
    flex-direction: column;
    align-items: stretch;
    gap: 0.3rem;
  }

  .zone-locate-btn {
    width: 100%;
    margin-top: 0.2rem;
  }

  .brand {
    gap: 0.1rem;
    width: 100%;
    font-size: clamp(2.4rem, 13.2vw, 3.6rem);
    line-height: 0.74;
    letter-spacing: 1px;
  }

  .brand-row {
    width: 100%;
    white-space: nowrap;
  }

  .brand-tagline {
    font-size: clamp(0.62rem, 2.35vw, 0.72rem);
    line-height: 1;
  }

  .hero-actions {
    bottom: clamp(0.5rem, 1.8svh, 1rem);
    width: min(92vw, 360px);
  }

  .hero-scroll {
    width: min(100%, 21.5rem);
    min-width: 0;
    font-size: 0.9rem;
    letter-spacing: 0.09em;
  }

  .hero-secondary-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.5rem;
    margin-top: clamp(4.2rem, 10.5svh, 5.6rem);
  }

  .hero-secondary-btn {
    min-height: 2.5rem;
    padding: 0.7rem 0.5rem;
    font-size: clamp(0.62rem, 2.7vw, 0.72rem);
  }

  .hero-service-line {
    margin-top: 0.38rem;
    font-size: clamp(0.55rem, 2.35vw, 0.66rem);
    white-space: normal;
  }

  .hero-launch-note {
    margin: 0.34rem 0 clamp(0.82rem, 1.55svh, 1.08rem);
    font-size: clamp(0.54rem, 2.25vw, 0.66rem);
    white-space: nowrap;
  }

  .cascade-word {
    font-size: clamp(2.4rem, 13.2vw, 3.6rem);
    line-height: 0.74;
    letter-spacing: 1px;
  }

  .brand-row-mid {
    column-gap: 0.24em;
  }

  .intro-product {
    min-height: 48vh;
    padding: 2.5rem 0 2.3rem;
  }

  .intro-product-inner {
    width: min(920px, 92vw);
    padding: 0 1.2rem;
  }

  .intro-kicker {
    font-size: 0.68rem;
    letter-spacing: 0.13em;
    margin-bottom: 0.85rem;
  }

  .intro-title {
    font-size: clamp(3rem, 13.2vw, 4.6rem);
    line-height: 0.78;
  }

  .intro-copy {
    margin-top: 1.05rem;
    font-size: clamp(1rem, 4.5vw, 1.2rem);
    max-width: 33ch;
  }

  .intro-origin {
    font-size: clamp(0.86rem, 3.8vw, 0.98rem);
  }

  .intro-schedule {
    margin-top: 1.18rem;
    width: min(100%, 92vw);
    padding: 0.72rem 0.9rem;
    font-size: clamp(0.76rem, 3.4vw, 0.9rem);
    white-space: normal;
    text-align: center;
  }

  .thermal-ticket-section {
    width: min(100%, 94vw);
    padding: 3rem 0 2.4rem;
    grid-template-columns: 1fr;
    gap: 1.65rem;
    align-items: start;
  }

  .thermal-ticket-copy {
    max-width: none;
  }

  .thermal-ticket-kicker {
    font-size: 0.65rem;
    letter-spacing: 0.12em;
  }

  .thermal-ticket-copy h2 {
    font-size: clamp(3.1rem, 18vw, 4.7rem);
    line-height: 0.78;
  }

  .thermal-ticket-copy p:not(.thermal-ticket-kicker) {
    max-width: 18ch;
    font-size: clamp(1rem, 5vw, 1.16rem);
  }

  .thermal-ticket {
    width: min(100%, 375px);
    justify-self: center;
  }

  .thermal-ticket-inner {
    padding: 1.18rem 0.88rem 0.95rem;
  }

  .ticket-brand {
    margin-bottom: 0.88rem;
    font-size: clamp(1.12rem, 7.6vw, 1.46rem);
    letter-spacing: 0.035em;
  }

  .ticket-row {
    grid-template-columns: 0.98rem minmax(0, max-content) minmax(0.85rem, 1fr) auto;
    gap: 0.26rem;
    min-height: 1.3rem;
    font-size: clamp(0.82rem, 4.6vw, 1.02rem);
    letter-spacing: 0.012em;
  }

  .ticket-row input {
    width: 0.86rem;
    height: 0.86rem;
    border-width: 1.7px;
  }

  .ticket-name,
  .ticket-notes {
    font-size: 0.9rem;
  }

  .ticket-gap {
    height: 0.62rem;
  }

  .ticket-hours {
    font-size: clamp(0.88rem, 4.4vw, 1rem);
  }

  .order-hub {
    width: min(1100px, 94vw);
    padding: 2.7rem 0 0.85rem;
  }

  .order-hub-head {
    margin-bottom: 1.25rem;
  }

  .order-hub-kicker {
    font-size: 0.66rem;
    letter-spacing: 0.13em;
  }

  .order-hub-title {
    font-size: clamp(2rem, 10.2vw, 3.2rem);
    line-height: 0.84;
  }

  .order-hub-subtitle {
    font-size: clamp(0.92rem, 4vw, 1.02rem);
    line-height: 1.42;
  }

  .order-hub-grid {
    grid-template-columns: 1fr;
    gap: 0.85rem;
  }

  .order-actions {
    gap: 0.85rem;
  }

  .info-card {
    padding: 0.9rem;
  }

  .info-card h3 {
    font-size: clamp(1.2rem, 6.2vw, 1.55rem);
  }

  .map {
    height: 42vh;
  }

  .btn {
    width: 100%;
    text-align: center;
  }

  .info-btn {
    width: 100%;
  }

  .page {
    padding-bottom: 0;
  }
}
