:root {
  --void: #070605;
  --metal: #14110e;
  --metal-2: #1c1814;
  --hair: rgba(244, 208, 63, 0.12);
  --hair-2: rgba(232, 210, 176, 0.18);
  --warm: #e8d2b0;
  --warm-dim: rgba(232, 210, 176, 0.42);
  --amber: #f4d03f;
  --ice: #ff6b4a;
  --ink: #f4efe6;
  --mute: rgba(244, 239, 230, 0.55);
  --ease: cubic-bezier(0.19, 1, 0.22, 1);
  --cx: 50%;
  --cy: 38%;
  --tilt-x: 0deg;
  --tilt-y: 0deg;
  --safe-b: env(safe-area-inset-bottom, 0px);
  --safe-t: env(safe-area-inset-top, 0px);
}

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

html,
body {
  height: 100%;
  margin: 0;
  background: var(--void);
  color: var(--ink);
  font-family: Unbounded, system-ui, sans-serif;
  font-size: 16px;
  overflow: hidden;
  overscroll-behavior: none;
  -webkit-tap-highlight-color: transparent;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
  user-select: none;
}

body {
  min-height: 100dvh;
  min-height: 100svh;
}

button,
input {
  font: inherit;
  color: inherit;
}

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

.void {
  position: relative;
  height: 100dvh;
  height: 100svh;
  isolation: isolate;
}

.grain {
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: 0.18;
  z-index: 8;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='140' height='140'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='2' stitchTiles='stitch'/></filter><rect width='100%' height='100%' filter='url(%23n)' opacity='.55'/></svg>");
  mix-blend-mode: overlay;
}

.bay {
  position: fixed;
  width: 90vmax;
  height: 70vmax;
  left: 50%;
  top: 8%;
  transform: translateX(-50%);
  background: radial-gradient(circle, rgba(244, 208, 63, 0.18), rgba(196, 30, 58, 0.08) 38%, transparent 62%);
  filter: blur(28px);
  pointer-events: none;
  animation: bay 9s ease-in-out infinite alternate;
}

.floor {
  position: fixed;
  left: 50%;
  bottom: -12%;
  width: 70vmin;
  height: 28vmin;
  transform: translateX(-50%);
  background: radial-gradient(ellipse, rgba(232, 210, 176, 0.12), transparent 68%);
  filter: blur(18px);
  pointer-events: none;
}

@keyframes bay {
  from { opacity: 0.7; transform: translateX(-50%) scale(1); }
  to { opacity: 1; transform: translateX(-48%) scale(1.06); }
}

.hud {
  position: fixed;
  inset: calc(12px + var(--safe-t)) 18px calc(12px + var(--safe-b));
  z-index: 6;
  pointer-events: none;
  font-family: "IBM Plex Mono", ui-monospace, monospace;
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--warm-dim);
}

@media (max-width: 720px) {
  .hud { display: none; }
}

.hud-l { position: absolute; top: 0; left: 0; }
.hud-r { position: absolute; top: 0; right: 0; }
.hud-bl { position: absolute; bottom: 0; left: 0; }
.hud-br { position: absolute; bottom: 0; right: 0; }

.lang {
  position: fixed;
  top: calc(10px + var(--safe-t));
  right: 12px;
  left: auto;
  z-index: 18;
  display: grid;
  justify-items: end;
  gap: 6px;
}

.lang-now {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  height: 36px;
  padding: 0 12px 0 8px;
  border-radius: 999px;
  border: 1px solid rgba(232, 210, 176, 0.3);
  background: rgba(8, 8, 10, 0.82);
  backdrop-filter: blur(14px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
  color: var(--ink);
  cursor: pointer;
}

.lang-now .lang-code {
  font-family: "IBM Plex Mono", ui-monospace, monospace;
  font-size: 11px;
  letter-spacing: 0.12em;
}

.lang-flag {
  width: 22px;
  height: 15px;
  border-radius: 3px;
  overflow: hidden;
  flex: 0 0 auto;
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.14);
}

.lang-flag svg {
  display: block;
  width: 100%;
  height: 100%;
}

.lang-list {
  display: none;
  min-width: 228px;
  padding: 6px;
  border-radius: 16px;
  border: 1px solid rgba(232, 210, 176, 0.3);
  background: rgba(8, 8, 10, 0.94);
  backdrop-filter: blur(18px);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.5);
}

.lang.is-open .lang-list {
  display: grid;
  gap: 2px;
}

.lang-list button {
  display: grid;
  grid-template-columns: 22px 1fr auto;
  align-items: center;
  gap: 10px;
  width: 100%;
  height: 40px;
  padding: 0 10px;
  border: 0;
  border-radius: 11px;
  background: transparent;
  color: var(--ink);
  cursor: pointer;
  text-align: left;
}

.lang-list button.is-on {
  background: var(--warm);
  color: #120e0a;
}

.lang-name {
  font-size: 13px;
  letter-spacing: 0.01em;
}

.lang-tag {
  font-family: "IBM Plex Mono", ui-monospace, monospace;
  font-size: 10px;
  letter-spacing: 0.1em;
  color: var(--mute);
}

.lang-list button.is-on .lang-tag {
  color: #120e0a;
}

.stage[data-mode="boot"] .lang {
  opacity: 0;
  pointer-events: none;
}

.boot {
  position: fixed;
  inset: 0;
  z-index: 20;
  display: grid;
  place-items: center;
  background: var(--void);
  overflow: hidden;
  transition: opacity 0.32s var(--ease), visibility 0.32s;
}

.boot.is-out {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.boot-void {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.boot-spark {
  position: absolute;
  left: 50%;
  top: 42%;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #f4d03f;
  transform: translate(-50%, -50%) scale(0);
  box-shadow: 0 0 28px 10px rgba(244, 208, 63, 0.55);
  animation: spark 1.1s ease-out 0.02s forwards;
}

.boot-horizon {
  position: absolute;
  left: 50%;
  top: 42%;
  height: 1px;
  width: 0;
  transform: translate(-50%, -50%);
  background: linear-gradient(90deg, transparent, #f4d03f, #c41e3a, #f4d03f, transparent);
  animation: horizon 0.95s var(--ease) 0.12s forwards;
}

.boot-chips {
  position: absolute;
  inset: 0;
  margin: 0;
  padding: 0;
  list-style: none;
  pointer-events: none;
}

.boot-spark,
.boot-horizon { display: none; }

.boot-chips { z-index: 1; }

.boot-chips li {
  --a: calc(var(--i) * 45deg);
  position: absolute;
  left: 50%;
  top: 42%;
  font-family: Unbounded, system-ui, sans-serif;
  font-size: clamp(11px, 3.1vw, 15px);
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #f4efe6;
  white-space: nowrap;
  opacity: 0;
  text-shadow: 0 0 16px rgba(232, 210, 176, 0.45);
  animation: chipLife 1.35s cubic-bezier(0.45, 0.05, 0.2, 1) forwards;
  animation-delay: calc(0.72s + var(--i) * 0.05s);
}

.boot-chips li.ice {
  color: var(--ice);
  text-shadow: 0 0 16px rgba(155, 231, 255, 0.55);
}

.boot-chips li.amber {
  color: var(--amber);
  text-shadow: 0 0 16px rgba(255, 122, 26, 0.55);
}

.seal-block {
  position: relative;
  z-index: 2;
  display: grid;
  justify-items: center;
  gap: 6px;
  opacity: 0;
  transform: scale(0.88);
  animation: sealRise 0.9s var(--ease) 0.28s forwards;
}

.seal {
  position: relative;
  width: min(68vw, 248px);
  aspect-ratio: 1;
  animation: sealIdle 4.8s ease-in-out 2.4s infinite;
}

.seal::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 1.4px solid rgba(232, 210, 176, 0.55);
  box-shadow: 0 0 0 8px #050506;
  pointer-events: none;
}

.seal-flag {
  position: absolute;
  inset: 13%;
  border-radius: 50%;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  box-shadow:
    inset 0 0 36px rgba(0, 0, 0, 0.4),
    0 18px 40px rgba(0, 0, 0, 0.5);
}

.be-k {
  background: #0a0a0a;
  transform: translateX(-110%);
  animation: stripeK 0.85s cubic-bezier(0.16, 0.84, 0.32, 1) 0.55s forwards;
}

.be-y {
  background: #f4d03f;
  transform: translateY(-110%);
  animation: stripeY 0.85s cubic-bezier(0.16, 0.84, 0.32, 1) 0.7s forwards;
}

.be-r {
  background: #c41e3a;
  transform: translateX(110%);
  animation: stripeR 0.85s cubic-bezier(0.16, 0.84, 0.32, 1) 0.85s forwards;
}

.seal-car {
  position: absolute;
  left: 8%;
  top: 36%;
  width: 84%;
  overflow: visible;
  filter: drop-shadow(0 10px 14px rgba(0, 0, 0, 0.55));
  transform: translateX(-140%);
  animation: carIn 1.05s cubic-bezier(0.18, 0.88, 0.22, 1) 1.5s forwards;
}

.seal-car .body {
  fill: url(#carMetal);
  stroke: #f4d03f;
  stroke-width: 1.7;
  stroke-linejoin: round;
}

.seal-car .shade {
  fill: rgba(0, 0, 0, 0.42);
}

.seal-car .glass {
  fill: rgba(8, 8, 10, 0.42);
}

.seal-car .belt {
  fill: none;
  stroke: rgba(10, 10, 12, 0.28);
  stroke-width: 1.2;
}

.seal-car .light {
  fill: #f4d03f;
  opacity: 0;
  animation: headlamp 0.35s ease 2.35s forwards;
}

.seal-car .wheel circle {
  fill: #050506;
  stroke: #f4d03f;
  stroke-width: 2.2;
}

.seal-car .wheel .rim {
  fill: #d4b24a;
  stroke: none;
}

.seal-car .wheel {
  transform-box: fill-box;
  transform-origin: center;
  animation: wheelSpin 0.42s linear 1.5s 3;
}

.seal-ring {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: conic-gradient(from 210deg, #f4d03f, transparent 38%, #c41e3a 72%, #f4d03f);
  -webkit-mask: radial-gradient(farthest-side, transparent calc(100% - 2px), #000 calc(100% - 1.2px));
  mask: radial-gradient(farthest-side, transparent calc(100% - 2px), #000 calc(100% - 1.2px));
  filter: drop-shadow(0 0 12px rgba(244, 208, 63, 0.35));
  transform: scale(0.6) rotate(-40deg);
  opacity: 0;
  animation: ringOn 0.8s var(--ease) 0.22s forwards, ringSpin 10s linear 1s infinite;
}

.seal-ring.outer {
  inset: -12px;
  background: conic-gradient(from 40deg, #c41e3a, transparent 55%, #f4d03f 88%, #c41e3a);
  animation-delay: 0.34s, 1.15s;
  animation-direction: normal, reverse;
}

.seal-chip,
.seal-365,
.seal-be {
  margin: 0;
  text-align: center;
}

.seal-chip {
  margin-top: 10px;
  font-size: 11px;
  letter-spacing: 0.52em;
  color: #d7cbb8;
  opacity: 0;
  transform: translateY(10px);
  animation: typeIn 0.55s var(--ease) 3.15s forwards;
}

.seal-365 {
  font-size: clamp(44px, 13vw, 76px);
  font-weight: 700;
  line-height: 0.9;
  letter-spacing: 0.04em;
  background: linear-gradient(180deg, #fff, #c9d0d8 40%, #8b96a3 68%, #eef3f8);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  opacity: 0;
  transform: scale(0.7);
  animation: punch 0.7s cubic-bezier(0.18, 0.9, 0.22, 1) 3.4s forwards;
}

.seal-be {
  font-size: 12px;
  letter-spacing: 0.46em;
  text-transform: uppercase;
  color: #f4d03f;
  opacity: 0;
  transform: translateY(8px);
  animation: typeIn 0.55s var(--ease) 3.9s forwards;
}

@keyframes spark {
  0% { transform: translate(-50%, -50%) scale(0); opacity: 1; }
  40% { transform: translate(-50%, -50%) scale(2.4); opacity: 1; }
  100% { transform: translate(-50%, -50%) scale(0); opacity: 0; }
}

@keyframes horizon {
  to { width: min(92vw, 560px); }
}

@keyframes chipLife {
  0% {
    opacity: 0;
    transform: rotate(var(--a)) translateY(-44vmin) rotate(calc(var(--a) * -1)) scale(0.4);
  }
  14% {
    opacity: 1;
    transform: rotate(var(--a)) translateY(-36vmin) rotate(calc(var(--a) * -1)) scale(1);
  }
  62% {
    opacity: 1;
    filter: none;
    transform: rotate(calc(var(--a) + 52deg)) translateY(-36vmin) rotate(calc((var(--a) + 52deg) * -1)) scale(1);
  }
  100% {
    opacity: 0;
    filter: blur(10px);
    transform: rotate(calc(var(--a) + 68deg)) translateY(0) rotate(calc((var(--a) + 68deg) * -1)) scale(0.04);
  }
}

@keyframes sealRise {
  to { opacity: 1; transform: none; }
}

@keyframes sealIdle {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}

@keyframes stripeK {
  to { transform: none; }
}

@keyframes stripeY {
  to { transform: none; }
}

@keyframes stripeR {
  to { transform: none; }
}

@keyframes carIn {
  0% { transform: translateX(-140%); }
  72% { transform: translateX(6%); }
  100% { transform: none; }
}

@keyframes wheelSpin {
  to { transform: rotate(360deg); }
}

@keyframes headlamp {
  to { opacity: 1; }
}

@keyframes ringOn {
  to { opacity: 1; transform: rotate(0deg); }
}

@keyframes ringSpin {
  to { transform: rotate(360deg); }
}

@keyframes typeIn {
  to { opacity: 1; transform: none; }
}

@keyframes punch {
  0% { opacity: 0; transform: scale(0.7); }
  70% { opacity: 1; transform: scale(1.06); }
  100% { opacity: 1; transform: none; }
}

.stage {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding: calc(28px + var(--safe-t)) 18px calc(28px + var(--safe-b));
}

.card-wrap {
  width: min(94vw, 470px);
  perspective: 1200px;
}

.card {
  position: relative;
  aspect-ratio: 0.64 / 1;
  max-height: min(82dvh, 800px);
  transform-style: preserve-3d;
  transform: rotateX(var(--tilt-x)) rotateY(var(--tilt-y));
  transition: transform 0.15s linear;
  animation: float 5.6s ease-in-out infinite;
}

.stage[data-mode="boot"] .card {
  opacity: 0;
  transform: rotateX(12deg) scale(0.92);
}

.stage[data-mode="card"] .card,
.stage[data-mode="split"] .card {
  animation: enter 1.1s var(--ease) both, float 5.6s ease-in-out 1.1s infinite;
}

.stage[data-mode="sheet"] .card {
  animation: none;
  transform: none;
}

@keyframes enter {
  from { opacity: 0; transform: rotateX(14deg) scale(0.9); filter: blur(8px); }
  to { opacity: 1; transform: rotateX(var(--tilt-x)) rotateY(var(--tilt-y)) scale(1); filter: none; }
}

@keyframes float {
  0%, 100% { translate: 0 0; }
  50% { translate: 0 -7px; }
}

.card-face,
.split {
  position: absolute;
  inset: 0;
  border-radius: 28px;
  background:
    linear-gradient(165deg, rgba(255, 255, 255, 0.06), transparent 32%),
    linear-gradient(#161618, #0c0c0e 55%, #09090b);
  border: 1px solid rgba(232, 210, 176, 0.22);
  box-shadow:
    0 40px 80px rgba(0, 0, 0, 0.55),
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    inset 0 -30px 50px rgba(0, 0, 0, 0.35);
  overflow: hidden;
}

.card-face {
  display: grid;
  grid-template-rows: auto auto 1fr auto;
  padding: 16px 18px 16px;
  gap: 10px;
  transition: opacity 0.5s var(--ease), transform 0.7s var(--ease);
}

.specular {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(
    180px 160px at var(--cx) var(--cy),
    rgba(255, 236, 210, 0.2),
    rgba(255, 122, 26, 0.05) 38%,
    transparent 62%
  );
  mix-blend-mode: screen;
  transition: background 0.08s linear;
}

.mark {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  position: relative;
  z-index: 1;
}

.brand {
  margin: 0;
  font-size: 13px;
  letter-spacing: 0.38em;
  font-weight: 600;
}

.unit {
  margin: 0;
  font-family: "IBM Plex Mono", ui-monospace, monospace;
  font-size: 10px;
  letter-spacing: 0.22em;
  color: var(--mute);
}

.device {
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center;
  min-height: 0;
  width: 100%;
}

.device-stage {
  position: relative;
  width: 100%;
  aspect-ratio: 1068 / 606;
  border-radius: 16px;
  overflow: hidden;
  background: #050506;
  border: 1px solid rgba(232, 210, 176, 0.28);
  box-shadow:
    0 18px 32px rgba(0, 0, 0, 0.45),
    inset 0 1px 0 rgba(255, 255, 255, 0.12);
}

.device-stage video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  pointer-events: none;
  transform: scale(1.03);
  transition: transform 1.1s var(--ease);
}

.device-stage.is-live video {
  transform: none;
}

.vid-veil {
  position: absolute;
  inset: 0;
  background: #050506;
  pointer-events: none;
  transition: opacity 0.7s var(--ease);
}

.device-stage.is-live .vid-veil {
  opacity: 0;
}

.device-stage.is-tap .vid-veil {
  opacity: 0.45;
}

.vid-hit {
  position: absolute;
  inset: 0;
  z-index: 4;
  border: 0;
  padding: 0;
  background: transparent;
  cursor: pointer;
}

.device-stage.is-live .vid-hit {
  pointer-events: none;
}

.device-stage.is-tap::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 3;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 14px 0 14px 24px;
  border-color: transparent transparent transparent #f4efe6;
  transform: translate(-30%, -50%);
  filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.45));
  pointer-events: none;
}

.obd {
  position: relative;
  width: 120px;
  height: 108px;
  display: grid;
  place-items: center;
}

.obd-ring {
  position: absolute;
  inset: 8px;
  border-radius: 50%;
  border: 1px solid rgba(155, 231, 255, 0.18);
  animation: spin 12s linear infinite;
  background: conic-gradient(from 80deg, transparent 0 72%, rgba(255, 122, 26, 0.55) 78%, transparent 86%);
  mask: radial-gradient(circle, transparent 62%, #000 64%);
}

.obd-body {
  width: 92px;
  height: 64px;
  border-radius: 16px;
  background:
    linear-gradient(180deg, #2a2a30, #121214 55%, #0a0a0c);
  border: 1px solid rgba(232, 210, 176, 0.28);
  box-shadow:
    0 18px 30px rgba(0, 0, 0, 0.45),
    inset 0 1px 0 rgba(255, 255, 255, 0.18);
  display: grid;
  place-items: center;
  position: relative;
}

.obd-led {
  position: absolute;
  top: 8px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--ice);
  box-shadow: 0 0 12px var(--ice);
  animation: pulse 2.4s ease-in-out infinite;
}

.obd-slot {
  width: 42px;
  height: 4px;
  border-radius: 2px;
  background: #050506;
  box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.8);
}

.pins {
  position: absolute;
  bottom: 8px;
  display: grid;
  grid-template-columns: repeat(8, 4px);
  gap: 3px;
}

.pins i {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: #3a3a40;
}

.link-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  width: 100%;
  position: relative;
  z-index: 2;
}

.link-pill {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 10px;
  border: 1px solid var(--hair);
  border-radius: 12px;
  background: rgba(0, 0, 0, 0.18);
  cursor: pointer;
  color: inherit;
  width: 100%;
  text-align: left;
}

.link-pill:hover,
.link-pill:focus-visible {
  border-color: var(--hair-2);
}

.link-ico {
  width: 36px;
  height: 26px;
  color: var(--ice);
  flex: 0 0 auto;
}

.link-ico.truck { color: var(--warm); }

.link-txt {
  display: grid;
  gap: 1px;
}

.link-txt b {
  font-size: 11px;
  letter-spacing: 0.14em;
  font-weight: 600;
}

.link-txt small {
  font-family: "IBM Plex Mono", ui-monospace, monospace;
  font-size: 8px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--mute);
}

@keyframes spin { to { transform: rotate(360deg); } }
@keyframes pulse {
  0%, 100% { opacity: 0.45; }
  50% { opacity: 1; }
}

.grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 7px;
}

.engrave {
  position: relative;
  min-height: 52px;
  overflow: hidden;
  border: 1px solid var(--hair-2);
  border-radius: 14px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(0, 0, 0, 0.2));
  cursor: pointer;
  isolation: isolate;
}

.engrave.order,
.engrave.wide {
  grid-column: 1 / -1;
  min-height: 58px;
}

.engrave.wide {
  border-color: rgba(244, 208, 63, 0.55);
  background: linear-gradient(180deg, rgba(244, 208, 63, 0.16), rgba(0, 0, 0, 0.25));
}

.engrave.wide .label {
  font-size: 11px;
  letter-spacing: 0.06em;
}

.shutter {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.05), transparent 30%),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.03) 0 1px, transparent 1px 5px),
    linear-gradient(#1a1a1e, #101012);
  transform: translateY(-108%);
  transition: transform 0.8s var(--ease);
  z-index: 2;
  pointer-events: none;
}

.shutter::after {
  content: "";
  position: absolute;
  left: 12%;
  right: 12%;
  top: 50%;
  height: 1px;
  background: rgba(232, 210, 176, 0.16);
}

.engrave .label {
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center;
  height: 100%;
  padding: 8px 7px;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.04em;
  line-height: 1.25;
  text-transform: uppercase;
  color: var(--ink);
  text-align: center;
}

.stage.is-awake .engrave .shutter,
.engrave.hot .shutter,
.engrave:focus-visible .shutter {
  transform: translateY(-108%);
}

.stage.is-tease .engrave:nth-child(1) .shutter { transform: translateY(-108%); transition-delay: 0.05s; }
.stage.is-tease .engrave:nth-child(2) .shutter { transform: translateY(-108%); transition-delay: 0.14s; }
.stage.is-tease .engrave:nth-child(3) .shutter { transform: translateY(-108%); transition-delay: 0.23s; }
.stage.is-tease .engrave:nth-child(4) .shutter { transform: translateY(-108%); transition-delay: 0.32s; }
.stage.is-tease .engrave:nth-child(5) .shutter { transform: translateY(-108%); transition-delay: 0.41s; }
.stage.is-tease .engrave:nth-child(6) .shutter { transform: translateY(-108%); transition-delay: 0.5s; }
.stage.is-tease .engrave:nth-child(7) .shutter { transform: translateY(-108%); transition-delay: 0.58s; }

.engrave:active {
  transform: translateY(1px);
}

.credit {
  position: relative;
  z-index: 9;
  margin-top: 2px;
  font-family: "IBM Plex Mono", ui-monospace, monospace;
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  line-height: 1.45;
  text-align: center;
  color: #d7e0e8;
  text-shadow:
    0 0 12px rgba(214, 226, 236, 0.6),
    0 1px 0 rgba(255, 255, 255, 0.4);
  opacity: 1;
}

.credit:hover {
  color: #f3f7fb;
  text-shadow: 0 0 16px rgba(236, 244, 252, 0.85);
}

.split {
  display: flex;
  padding: 0;
  opacity: 0;
  pointer-events: none;
  transform: scale(0.98);
}

.split-back {
  position: absolute;
  top: 16px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  border: 0;
  background: none;
  font-family: "IBM Plex Mono", ui-monospace, monospace;
  font-size: 10px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--mute);
  cursor: pointer;
}

.stage[data-mode="split"] .card-face {
  opacity: 0;
  transform: scale(0.96);
  pointer-events: none;
}

.stage[data-mode="split"] .split {
  opacity: 1;
  pointer-events: auto;
  transform: none;
  animation: peel 0.7s var(--ease) both;
}

@keyframes peel {
  from { clip-path: inset(0 50% 0 50%); opacity: 0.2; }
  to { clip-path: inset(0); opacity: 1; }
}

.half {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 8px;
  padding: 22px 16px 24px;
  border: none;
  background: transparent;
  text-align: left;
  cursor: pointer;
  position: relative;
}

.half + .half {
  border-left: 1px solid var(--hair);
}

.half::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.4s var(--ease);
}

.half.truck::before {
  background: linear-gradient(180deg, rgba(255, 122, 26, 0.16), transparent 50%);
}
.half.car::before {
  background: linear-gradient(180deg, rgba(155, 231, 255, 0.14), transparent 50%);
}
.half:hover::before,
.half:focus-visible::before {
  opacity: 1;
}

.half-kicker {
  font-family: "IBM Plex Mono", ui-monospace, monospace;
  font-size: 10px;
  letter-spacing: 0.2em;
  color: var(--mute);
}

.glyph {
  width: 88px;
  color: var(--warm);
  margin: auto 0 12px;
}

.half.car .glyph { color: var(--ice); }

.half-title {
  font-size: 15px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 600;
}

.half-sub {
  font-family: "IBM Plex Mono", ui-monospace, monospace;
  font-size: 9px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--mute);
}

.sheet {
  position: fixed;
  inset: 0;
  z-index: 12;
  display: grid;
  place-items: center;
  padding: calc(52px + var(--safe-t)) 10px calc(12px + var(--safe-b));
  background: rgba(5, 5, 6, 0.34);
  backdrop-filter: blur(12px);
}

.sheet-card {
  position: relative;
  width: min(96vw, 620px);
  animation: sheetHover 5.4s ease-in-out infinite;
}

.sheet-card:focus-within,
.sheet-card.is-typing {
  animation: none !important;
  transform: none !important;
}

@media (hover: none) {
  .sheet-card {
    animation: none;
  }
}

@keyframes sheetHover {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}

.sheet[hidden],
.split[hidden] {
  display: none !important;
}

.sheet-inner {
  width: 100%;
  min-height: min(86dvh, 880px);
  max-height: 88dvh;
  overflow: auto;
  overscroll-behavior: contain;
  -webkit-overflow-scrolling: touch;
  touch-action: pan-y;
  border-radius: 22px;
  padding: 54px 16px 16px;
  background:
    linear-gradient(165deg, rgba(255, 255, 255, 0.08), transparent 28%),
    linear-gradient(#161618, #0b0b0d);
  border: 1px solid rgba(232, 210, 176, 0.28);
  box-shadow:
    0 28px 70px rgba(0, 0, 0, 0.55),
    0 0 0 1px rgba(255, 255, 255, 0.03);
  animation: sheetIn 0.75s var(--ease) both;
}

@keyframes sheetIn {
  from { opacity: 0; transform: translateY(36px) scale(0.94); }
  to { opacity: 1; transform: none; }
}

@media (hover: none) {
  .sheet-inner {
    animation: sheetInFade 0.4s var(--ease) both;
  }
}

@keyframes sheetInFade {
  from { opacity: 0; }
  to { opacity: 1; }
}

.sheet-x {
  position: absolute;
  top: 10px;
  right: 10px;
  z-index: 3;
  appearance: none;
  -webkit-appearance: none;
  border: 1px solid rgba(232, 210, 176, 0.7);
  background: rgba(10, 10, 12, 0.96);
  border-radius: 12px;
  padding: 8px 14px;
  font: 500 12px/1.2 "IBM Plex Mono", ui-monospace, monospace;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--warm);
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.35);
  white-space: nowrap;
  overflow: visible;
  cursor: pointer;
}

.kicker {
  margin: 0 0 6px;
  font-family: "IBM Plex Mono", ui-monospace, monospace;
  font-size: 9px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--amber);
}

h2 {
  margin: 0 0 8px;
  font-size: clamp(22px, 5.2vw, 30px);
  font-weight: 600;
  letter-spacing: -0.03em;
  line-height: 1.02;
  overflow-wrap: break-word;
}

h2.serif {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-style: italic;
  font-weight: 500;
  font-size: clamp(36px, 10vw, 52px);
  letter-spacing: -0.04em;
}

.lead {
  margin: 0 0 12px;
  max-width: 42ch;
  font-size: 13px;
  font-weight: 400;
  line-height: 1.35;
  color: var(--mute);
  letter-spacing: 0.01em;
}

.deal {
  display: grid;
  gap: 8px;
  margin: 0 0 12px;
}

.deal-card {
  padding: 10px 12px 11px;
  border-radius: 14px;
  border: 1px solid var(--hair);
  background: rgba(0, 0, 0, 0.22);
}

.deal-stage {
  margin: 0 0 8px;
  font-family: "IBM Plex Mono", ui-monospace, monospace;
  font-size: 10px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--ice);
}

.deal-vs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}

.deal-vs > div {
  display: grid;
  gap: 2px;
}

.deal-vs span {
  font-family: "IBM Plex Mono", ui-monospace, monospace;
  font-size: 8px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--mute);
}

.deal-vs s {
  font-size: 18px;
  letter-spacing: -0.04em;
  color: rgba(244, 239, 230, 0.38);
}

.deal-vs b {
  font-size: 26px;
  letter-spacing: -0.05em;
  line-height: 1;
  background: linear-gradient(180deg, #fff8ee, var(--amber));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.deal-vs small {
  font-size: 10px;
  letter-spacing: 0.02em;
  color: var(--ink);
}

.deal-vs p {
  margin: 4px 0 0;
  font-size: 10px;
  line-height: 1.3;
  color: var(--mute);
}

.us {
  padding-left: 8px;
  border-left: 1px solid rgba(255, 122, 26, 0.35);
}

.deal-cut {
  margin: 0;
  padding: 8px 10px;
  border-radius: 10px;
  text-align: center;
  font-family: "IBM Plex Mono", ui-monospace, monospace;
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #120e0a;
  background: linear-gradient(90deg, var(--warm), var(--amber));
}

.facts {
  list-style: none;
  margin: 0 0 12px;
  padding: 0;
  display: grid;
  gap: 6px;
}

.facts li {
  display: flex;
  gap: 8px;
  align-items: baseline;
  font-size: 12px;
  letter-spacing: 0.02em;
  line-height: 1.3;
  color: var(--ink);
}

.facts em {
  font-family: "IBM Plex Mono", ui-monospace, monospace;
  font-style: normal;
  font-size: 9px;
  color: var(--amber);
}

.addr {
  margin: 0 0 10px;
  font-family: "IBM Plex Mono", ui-monospace, monospace;
  font-size: 12px;
  letter-spacing: 0.06em;
  color: var(--warm);
  user-select: text;
}

.promo-code {
  margin: 0 0 14px;
  font-size: 28px;
  letter-spacing: 0.28em;
  font-weight: 600;
  user-select: text;
}

.link-picks {
  display: grid;
  gap: 10px;
  margin: 12px 0 4px;
}

.link-pick {
  padding: 12px;
  border-radius: 16px;
  border: 1px solid var(--hair);
  background: rgba(0, 0, 0, 0.22);
  transition: border-color 0.3s, box-shadow 0.3s;
}

.link-pick.is-on[data-kind="lan"] {
  border-color: rgba(155, 231, 255, 0.7);
  box-shadow: 0 0 0 1px rgba(155, 231, 255, 0.25), 0 12px 28px rgba(0, 0, 0, 0.28);
}

.link-pick.is-on[data-kind="wifi"] {
  border-color: rgba(255, 122, 26, 0.7);
  box-shadow: 0 0 0 1px rgba(255, 122, 26, 0.22), 0 12px 28px rgba(0, 0, 0, 0.28);
}

.pick-stage {
  position: relative;
  height: 72px;
  margin: 0 0 10px;
  border-radius: 12px;
  overflow: hidden;
  background: #070709;
}

.pick-svg {
  position: absolute;
  right: 10px;
  bottom: 8px;
  width: 58%;
  height: 70%;
  color: #f4efe6;
}

.lan-anim .pick-svg { color: var(--ice); }

.wifi-anim .pick-svg { color: var(--amber); }

.lan-line {
  position: absolute;
  left: 10px;
  right: 42%;
  top: 50%;
  height: 2px;
  background: rgba(155, 231, 255, 0.22);
}

.lan-line i {
  position: absolute;
  top: -2px;
  width: 14px;
  height: 6px;
  border-radius: 2px;
  background: var(--ice);
  box-shadow: 0 0 10px var(--ice);
  animation: lanDash 1.35s linear infinite;
}

.lan-line i:nth-child(1) { animation-delay: 0s; }
.lan-line i:nth-child(2) { animation-delay: 0.33s; }
.lan-line i:nth-child(3) { animation-delay: 0.66s; }
.lan-line i:nth-child(4) { animation-delay: 0.99s; }

@keyframes lanDash {
  0% { left: 0; opacity: 0; }
  12% { opacity: 1; }
  100% { left: 100%; opacity: 0; }
}

.lan-jack {
  position: absolute;
  left: 8px;
  top: 50%;
  width: 10px;
  height: 16px;
  margin-top: -8px;
  border-radius: 2px;
  background: var(--ice);
  box-shadow: 0 0 12px var(--ice);
}

.wifi-arcs {
  position: absolute;
  left: 18px;
  top: 50%;
  width: 54px;
  height: 54px;
  margin-top: -27px;
}

.wifi-arcs i {
  position: absolute;
  inset: 0;
  border: 1.6px solid var(--amber);
  border-bottom-color: transparent;
  border-left-color: transparent;
  border-radius: 50%;
  transform: rotate(-45deg) scale(0.35);
  opacity: 0;
  animation: wifiArc 1.8s ease-out infinite;
}

.wifi-arcs i:nth-child(2) { animation-delay: 0.35s; }
.wifi-arcs i:nth-child(3) { animation-delay: 0.7s; }

@keyframes wifiArc {
  0% { transform: rotate(-45deg) scale(0.28); opacity: 0; }
  18% { opacity: 1; }
  100% { transform: rotate(-45deg) scale(1.15); opacity: 0; }
}

.pick-tag {
  margin: 0 0 4px;
  font-family: "IBM Plex Mono", ui-monospace, monospace;
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink);
}

.link-pick[data-kind="lan"] .pick-tag { color: var(--ice); }
.link-pick[data-kind="wifi"] .pick-tag { color: var(--amber); }

.pick-lead {
  margin: 0 0 6px;
  font-size: 13px;
  line-height: 1.35;
  color: var(--ink);
}

.pick-once {
  margin: 0;
  font-size: 11px;
  line-height: 1.35;
  color: var(--mute);
}

.pick-promo {
  margin: 8px 0 0;
  font-size: 12px;
  line-height: 1.35;
  color: var(--warm);
}

.pick-promo b {
  letter-spacing: 0.16em;
  font-weight: 600;
}

.shop-exit {
  margin: 14px 0 0;
  padding: 16px 14px;
  border-radius: 16px;
  border: 1px solid var(--hair);
  background: rgba(0, 0, 0, 0.28);
}

.shop-exit .promo-code {
  color: var(--warm);
}

.shop-exit .addr {
  margin: 0 0 12px;
  font-family: "IBM Plex Mono", ui-monospace, monospace;
  font-size: 13px;
  letter-spacing: 0.06em;
  color: var(--mute);
  user-select: text;
}

.deal-vs b.them-price {
  font-size: 20px;
  font-weight: 500;
  letter-spacing: -0.04em;
  color: rgba(244, 239, 230, 0.45);
  background: none;
  -webkit-text-fill-color: rgba(244, 239, 230, 0.45);
}

.cheap {
  justify-self: start;
  margin: 2px 0 0;
  padding: 2px 7px;
  border-radius: 999px;
  font-family: "IBM Plex Mono", ui-monospace, monospace;
  font-style: normal;
  font-size: 8px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #120e0a;
  background: linear-gradient(90deg, var(--warm), var(--amber));
}

.cta + .cta,
.cta.ghost + .cta {
  margin-top: 8px;
}

.cta.is-off {
  opacity: 0.28;
  pointer-events: none;
  filter: grayscale(0.35);
}

.price {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin-bottom: 12px;
}

.price-card {
  display: grid;
  gap: 4px;
  text-align: left;
  padding: 10px;
  border-radius: 12px;
  border: 1px solid var(--hair);
  background: transparent;
  cursor: pointer;
}

.price-card em {
  font-family: "IBM Plex Mono", ui-monospace, monospace;
  font-style: normal;
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--mute);
}

.price-card b {
  font-size: 18px;
  letter-spacing: -0.03em;
}

.price-card.is-on {
  background: var(--warm);
  color: #120e0a;
  border-color: var(--warm);
}

.price-card.is-on em { color: rgba(18, 14, 10, 0.6); }

.choice {
  display: grid;
  gap: 8px;
}

.choice-card {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 48px;
  padding: 0 12px;
  border-radius: 12px;
  border: 1px solid var(--hair-2);
  background: rgba(0, 0, 0, 0.2);
  text-align: left;
  cursor: pointer;
  font-size: 12px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.choice-card em {
  font-family: "IBM Plex Mono", ui-monospace, monospace;
  font-style: normal;
  font-size: 10px;
  color: var(--amber);
}

.pick-lanes {
  display: grid;
  gap: 10px;
  margin: 4px 0 8px;
}

.pick-lane {
  display: grid;
  gap: 4px;
  padding: 12px;
  border-radius: 16px;
  border: 1px solid var(--hair);
  background: rgba(0, 0, 0, 0.22);
  text-align: left;
  color: inherit;
  cursor: pointer;
}

.pick-lane:hover,
.pick-lane:focus-visible {
  border-color: var(--hair-2);
}

.lane-art {
  position: relative;
  height: 64px;
  margin: 0 0 8px;
  border-radius: 12px;
  overflow: hidden;
  background: #070709;
}

.copart-art {
  display: grid;
  place-items: center;
}

.lot-tick {
  position: absolute;
  left: 0;
  top: 50%;
  white-space: nowrap;
  font-family: "IBM Plex Mono", ui-monospace, monospace;
  font-size: 11px;
  letter-spacing: 0.22em;
  color: var(--amber);
  transform: translateY(-50%);
  animation: lotRun 12s linear infinite;
}

.copart-art b {
  position: relative;
  z-index: 1;
  font-size: 22px;
  letter-spacing: 0.12em;
  color: #f4efe6;
  text-shadow: 0 0 18px rgba(255, 122, 26, 0.45);
}

@keyframes lotRun {
  from { transform: translate(0, -50%); }
  to { transform: translate(-50%, -50%); }
}

.key-art {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 0 16px;
}

.key-art i {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  border: 1.5px solid var(--ice);
  position: relative;
  animation: tickOn 1.6s ease-in-out infinite;
}

.key-art i::after {
  content: "";
  position: absolute;
  left: 4px;
  top: 2px;
  width: 6px;
  height: 10px;
  border: solid var(--ice);
  border-width: 0 1.6px 1.6px 0;
  transform: rotate(45deg) scale(0);
  animation: tickMark 1.6s ease-in-out infinite;
}

.key-art i:nth-child(2) { animation-delay: 0.2s; }
.key-art i:nth-child(2)::after { animation-delay: 0.2s; }
.key-art i:nth-child(3) { animation-delay: 0.4s; }
.key-art i:nth-child(3)::after { animation-delay: 0.4s; }

@keyframes tickOn {
  0%, 40% { border-color: rgba(155, 231, 255, 0.25); }
  55%, 100% { border-color: var(--ice); box-shadow: 0 0 10px rgba(155, 231, 255, 0.35); }
}

@keyframes tickMark {
  0%, 40% { transform: rotate(45deg) scale(0); }
  55%, 100% { transform: rotate(45deg) scale(1); }
}

.lane-tag {
  margin: 0;
  font-family: "IBM Plex Mono", ui-monospace, monospace;
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--amber);
}

.lane-name {
  margin: 0;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: -0.03em;
}

.lane-sub {
  margin: 0;
  font-size: 12px;
  line-height: 1.35;
  color: var(--mute);
}

.spec {
  list-style: none;
  margin: 0 0 12px;
  padding: 0;
  display: grid;
  gap: 6px;
}

.spec li {
  display: flex;
  gap: 8px;
  align-items: baseline;
  font-size: 12px;
  letter-spacing: 0.03em;
  border-top: 1px solid var(--hair);
  padding-top: 7px;
}

.spec em {
  font-family: "IBM Plex Mono", ui-monospace, monospace;
  font-style: normal;
  font-size: 10px;
  color: var(--amber);
}

.cta {
  display: inline-grid;
  place-items: center;
  width: 100%;
  height: 46px;
  border: 0;
  border-radius: 12px;
  background: var(--warm);
  color: #120e0a;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  cursor: pointer;
  transition: transform 0.25s var(--ease), filter 0.25s;
}

.cta:hover { filter: brightness(1.05); }
.cta:active { transform: translateY(1px); }

.cta.ghost {
  background: transparent;
  color: var(--warm);
  border: 1px solid var(--hair-2);
}

.line {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin-bottom: 10px;
}

.order-form {
  display: grid;
  gap: 8px;
}

.order-form label {
  display: grid;
  gap: 4px;
  font-family: "IBM Plex Mono", ui-monospace, monospace;
  font-size: 9px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--mute);
}

.order-form input,
.order-form textarea {
  user-select: text;
  font-family: Unbounded, system-ui, sans-serif;
  font-size: 16px;
  line-height: 1.25;
  letter-spacing: 0.02em;
  touch-action: manipulation;
  -webkit-text-size-adjust: 100%;
}

.order-form input {
  height: 44px;
  border: 1px solid var(--hair);
  border-radius: 10px;
  background: rgba(0, 0, 0, 0.25);
  padding: 0 12px;
  outline: none;
}

.phone-box {
  position: relative;
}

.phone-combo {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 6px;
}

.dial-btn {
  height: 44px;
  min-width: 92px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 0 10px;
  border-radius: 10px;
  border: 1px solid var(--hair);
  background: rgba(0, 0, 0, 0.35);
  color: var(--ink);
  font: 16px Unbounded, system-ui, sans-serif;
}

.dial-flag { font-size: 18px; line-height: 1; }
.dial-code { font-size: 14px; font-weight: 600; letter-spacing: 0.02em; }

.phone-local {
  min-width: 0;
}

.phone-hint {
  margin: 4px 0 0;
  font-size: 10px;
  letter-spacing: 0.08em;
  text-transform: none;
  color: var(--mute);
}

.phone-hint.is-bad { color: #ff6b6b; }

.dial-pop {
  position: absolute;
  left: 0;
  right: 0;
  top: calc(100% + 6px);
  z-index: 8;
  display: grid;
  grid-template-rows: auto minmax(0, 220px);
  background: #141416;
  border: 1px solid rgba(232, 210, 176, 0.28);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.45);
}

.dial-pop[hidden] { display: none; }

.dial-search {
  height: 44px;
  border: 0;
  border-bottom: 1px solid var(--hair);
  border-radius: 0;
  background: rgba(0, 0, 0, 0.25);
  padding: 0 12px;
  color: var(--ink);
  font: 16px Unbounded, system-ui, sans-serif;
}

.dial-list {
  list-style: none;
  margin: 0;
  padding: 4px;
  overflow: auto;
  -webkit-overflow-scrolling: touch;
}

.dial-opt {
  width: 100%;
  display: grid;
  grid-template-columns: 28px 1fr auto;
  gap: 8px;
  align-items: center;
  height: 42px;
  padding: 0 10px;
  border: 0;
  border-radius: 8px;
  background: transparent;
  color: var(--ink);
  text-align: left;
  font: 13px Unbounded, system-ui, sans-serif;
}

.dial-opt em {
  color: var(--mute);
  font-style: normal;
  font-size: 12px;
}

.dial-opt.is-on,
.dial-opt:hover { background: rgba(232, 210, 176, 0.1); }

.msg-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}

.order-form input:focus,
.order-form textarea:focus {
  border-color: var(--warm-dim);
}

.order-form textarea {
  min-height: 64px;
  border: 1px solid var(--hair);
  border-radius: 10px;
  background: rgba(0, 0, 0, 0.25);
  padding: 10px 12px;
  outline: none;
  resize: vertical;
}

.seg-label {
  margin: 8px 0 0;
  font-family: "IBM Plex Mono", ui-monospace, monospace;
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--mute);
}

.seg {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
}

.seg[data-seg="want"] {
  grid-template-columns: repeat(3, 1fr);
}

.seg button {
  height: 44px;
  border-radius: 12px;
  border: 1px solid var(--hair);
  background: transparent;
  font-size: 10px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
}

.seg button.is-on {
  background: var(--warm);
  color: #120e0a;
  border-color: var(--warm);
}

.price-card small {
  font-size: 9px;
  line-height: 1.25;
  color: var(--mute);
}

.price-card.is-on small { color: rgba(18, 14, 10, 0.55); }

.pack-tag {
  font-family: "IBM Plex Mono", ui-monospace, monospace;
  font-size: 8px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--amber);
}

.price-card.is-on .pack-tag { color: rgba(18, 14, 10, 0.5); }

.price-card.pack {
  position: relative;
  overflow: hidden;
  min-height: 108px;
  padding: 12px 12px 10px;
  animation: packIn 0.75s var(--ease) both;
}

.price-card.pack:nth-child(2) { animation-delay: 0.12s; }

.price-card.pack::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, transparent 36%, rgba(255, 255, 255, 0.16), transparent 62%);
  transform: translateX(-130%);
  animation: shine 2.6s ease-in-out 0.8s infinite;
  pointer-events: none;
}

@keyframes packIn {
  from { opacity: 0; transform: translateY(16px) scale(0.96); }
  to { opacity: 1; transform: none; }
}

@keyframes shine {
  0%, 55% { transform: translateX(-130%); }
  100% { transform: translateX(130%); }
}

.sto-title {
  display: grid;
  gap: 2px;
  margin: 0 0 10px;
  font-size: clamp(26px, 6vw, 36px);
}

.sto-title small {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-style: italic;
  font-size: 0.62em;
  font-weight: 500;
  letter-spacing: 0.02em;
  color: var(--warm);
}

.ticker {
  overflow: hidden;
  margin: -6px -16px 12px;
  border-top: 1px solid var(--hair);
  border-bottom: 1px solid var(--hair);
  background: rgba(255, 122, 26, 0.08);
}

.ticker-track {
  display: flex;
  gap: 28px;
  width: max-content;
  padding: 7px 0;
  font-family: "IBM Plex Mono", ui-monospace, monospace;
  font-size: 10px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--amber);
  animation: ticker 14s linear infinite;
}

@keyframes ticker {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

.sto-spec li {
  animation: packIn 0.6s var(--ease) both;
}
.sto-spec li:nth-child(1) { animation-delay: 0.16s; }
.sto-spec li:nth-child(2) { animation-delay: 0.24s; }
.sto-spec li:nth-child(3) { animation-delay: 0.32s; }
.sto-spec li:nth-child(4) { animation-delay: 0.4s; }

.sto-skin {
  position: relative;
}

.sto-skin::before {
  content: "";
  position: absolute;
  inset: -20px -8px auto;
  height: 90px;
  pointer-events: none;
  background: radial-gradient(ellipse at 50% 0%, rgba(255, 122, 26, 0.18), transparent 70%);
  animation: bay 5s ease-in-out infinite alternate;
}

.media-skin {
  position: relative;
}

.media-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 0 0 10px;
}

.onair {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: "IBM Plex Mono", ui-monospace, monospace;
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #ff6b6b;
}

.onair i {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #ff3b3b;
  box-shadow: 0 0 10px #ff3b3b;
  animation: onair 1.1s ease-in-out infinite;
}

.onair b { font-weight: 500; }

@keyframes onair {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.35; transform: scale(0.72); }
}

.sla {
  font-family: "IBM Plex Mono", ui-monospace, monospace;
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #120e0a;
  background: linear-gradient(90deg, var(--warm), var(--amber));
  border-radius: 999px;
  padding: 5px 10px;
}

.media-name {
  font-family: Unbounded, system-ui, sans-serif;
  font-style: normal;
  font-weight: 600;
  font-size: clamp(22px, 5.2vw, 30px);
  letter-spacing: -0.03em;
  animation: nameIn 0.7s var(--ease) both;
}

@keyframes nameIn {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: none; }
}

.wave {
  display: flex;
  align-items: flex-end;
  gap: 4px;
  height: 38px;
  margin: 2px 0 14px;
}

.wave i {
  flex: 1;
  border-radius: 2px 2px 0 0;
  background: linear-gradient(180deg, var(--ice), var(--amber));
  transform-origin: bottom;
  animation: wave 1.05s ease-in-out infinite;
}

.wave i:nth-child(1) { height: 28%; animation-delay: 0s; }
.wave i:nth-child(2) { height: 52%; animation-delay: 0.08s; }
.wave i:nth-child(3) { height: 76%; animation-delay: 0.16s; }
.wave i:nth-child(4) { height: 44%; animation-delay: 0.24s; }
.wave i:nth-child(5) { height: 92%; animation-delay: 0.32s; }
.wave i:nth-child(6) { height: 60%; animation-delay: 0.4s; }
.wave i:nth-child(7) { height: 38%; animation-delay: 0.48s; }
.wave i:nth-child(8) { height: 84%; animation-delay: 0.56s; }
.wave i:nth-child(9) { height: 50%; animation-delay: 0.64s; }
.wave i:nth-child(10) { height: 70%; animation-delay: 0.72s; }

@keyframes wave {
  0%, 100% { transform: scaleY(0.45); opacity: 0.55; }
  50% { transform: scaleY(1); opacity: 1; }
}

.protocol {
  list-style: none;
  margin: 0 0 14px;
  padding: 0;
  display: grid;
  gap: 8px;
  border-left: 1px solid rgba(255, 59, 59, 0.45);
}

.protocol li {
  display: flex;
  gap: 10px;
  align-items: baseline;
  padding: 6px 0 6px 12px;
  font-size: 13px;
  line-height: 1.3;
  animation: packIn 0.65s var(--ease) both;
}

.protocol li:nth-child(1) { animation-delay: 0.12s; }
.protocol li:nth-child(2) { animation-delay: 0.22s; }
.protocol li:nth-child(3) { animation-delay: 0.32s; }

.protocol em {
  font-family: "IBM Plex Mono", ui-monospace, monospace;
  font-style: normal;
  font-size: 9px;
  color: #ff6b6b;
}

.media-form {
  animation: packIn 0.7s var(--ease) 0.38s both;
}

html,
body,
.void,
.stage,
.boot,
.sheet {
  cursor: auto;
}

@media (max-height: 700px) {
  .obd { width: 120px; height: 120px; }
  .obd-body { width: 80px; height: 54px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation: none !important;
    transition: none !important;
  }
  .shutter { transform: translateY(-108%) !important; }
  .boot { display: none; }
}

.stage[data-mode="boot"] .credit { opacity: 0; pointer-events: none; }
.stage[data-mode="sheet"] .credit { opacity: 0.85; }

.studio { display: none; }

@media (min-width: 860px) {
  .studio {
    display: block;
    position: fixed;
    left: 5vw;
    top: 18vh;
    font-size: 17vw;
    font-weight: 700;
    letter-spacing: -0.07em;
    color: rgba(232, 210, 176, 0.035);
    pointer-events: none;
    z-index: 0;
    line-height: 0.8;
  }
}

.seal-365 {
  font-size: clamp(28px, 8vw, 48px) !important;
  letter-spacing: 0.14em;
}

.boot-void::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 38%, rgba(244, 208, 63, 0.28), transparent 46%);
  opacity: 0;
  animation: fadeOn 0.8s ease 2.35s forwards;
}

.story-act {
  position: relative;
  height: 22px;
  margin: 0;
}

.story-act span {
  position: absolute;
  inset: 0;
  text-align: center;
  font-size: 12px;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  color: #f4d03f;
  opacity: 0;
}

.story-act span:nth-child(1) { animation: actBeat 1.15s ease 0.2s forwards; }
.story-act span:nth-child(2) { animation: actBeat 1.15s ease 1.4s forwards; }
.story-act span:nth-child(3) { animation: actBeat 1.05s ease 2.55s forwards; }

.boot-cap {
  position: relative;
  height: 28px;
  margin: 0 0 8px;
  width: min(92vw, 340px);
}

.boot-cap span {
  position: absolute;
  inset: 0;
  text-align: center;
  font-size: 13px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #f4d03f;
  opacity: 0;
}

.boot-cap span:nth-child(1) { animation: actBeat 1.4s ease 0.15s forwards; }
.boot-cap span:nth-child(2) { animation: actBeat 1.75s ease 1.5s forwards; }
.boot-cap span:nth-child(3) { animation: actStay 0.45s ease 3.3s forwards; }

.boot-name {
  margin: 36px 0 0;
  font-size: clamp(28px, 8vw, 46px);
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  line-height: 1;
  background: linear-gradient(180deg, #fff, #c9d0d8 42%, #8b96a3 70%, #eef3f8);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  opacity: 0;
  animation: punch 0.55s cubic-bezier(0.18, 0.9, 0.22, 1) 3.6s forwards;
}

.story {
  position: relative;
  width: min(72vw, 250px);
  height: min(58vh, 360px);
}

.man {
  position: relative;
  width: 168px;
  height: 248px;
}

.man .rig { position: absolute; inset: 0; }

.man i,
.man b,
.man em {
  display: block;
  position: absolute;
  font-style: normal;
}

.halo {
  width: 118px;
  height: 118px;
  left: 25px;
  top: -4px;
  border-radius: 50%;
  border: 3px solid rgba(244, 208, 63, 0.6);
  box-shadow: 0 0 28px rgba(244, 208, 63, 0.35), inset 0 0 16px rgba(244, 208, 63, 0.18);
  z-index: 0;
}

.man-bars { inset: 8px 14px 16px; z-index: 7; }
.man-bars b {
  top: 0;
  bottom: 0;
  width: 7px;
  border-radius: 4px;
  background: linear-gradient(#efe0a4, #8d7424);
}
.man-bars b:nth-child(1) { left: 2%; }
.man-bars b:nth-child(2) { left: 24%; }
.man-bars b:nth-child(3) { left: 46%; }
.man-bars b:nth-child(4) { left: 68%; }
.man-bars b:nth-child(5) { left: 88%; }

.sleeve {
  width: 18px;
  height: 62px;
  border: 3px solid #1a120e;
  border-radius: 10px;
  background: repeating-linear-gradient(180deg, #f6f3ec 0 9px, #1a2744 9px 18px);
  z-index: 3;
}
.sleeve.l { left: 18px; top: 122px; transform: rotate(18deg); }
.sleeve.r { right: 22px; top: 108px; height: 50px; transform: rotate(-28deg); transform-origin: bottom center; }

.shirt {
  width: 98px;
  height: 88px;
  left: 35px;
  top: 112px;
  border-radius: 18px 18px 12px 12px;
  border: 3px solid #1a120e;
  background: repeating-linear-gradient(180deg, #f7f4ee 0 9px, #1a2744 9px 18px);
  z-index: 1;
}

.neck {
  width: 16px;
  height: 28px;
  left: 76px;
  top: 86px;
  background: #e8bc96;
  border-left: 3px solid #1a120e;
  border-right: 3px solid #1a120e;
  z-index: 2;
}

.phone {
  width: 26px;
  height: 42px;
  right: 8px;
  top: 72px;
  border-radius: 6px;
  background: #14110e;
  border: 2.5px solid #1a120e;
  z-index: 6;
}
.phone b {
  inset: 3px 2px 9px;
  border-radius: 2px;
  background: linear-gradient(#6a4634, #24160f);
}
.phone em {
  width: 5px;
  height: 5px;
  top: 5px;
  right: 4px;
  border-radius: 50%;
  background: #e23d3d;
  box-shadow: 0 0 6px #e23d3d;
}

.head {
  width: 64px;
  height: 90px;
  left: 52px;
  top: 6px;
  border-radius: 46% 46% 40% 40%;
  background: #e8bc96;
  border: 3px solid #1a120e;
  z-index: 5;
}
.hair {
  top: -3px;
  left: -3px;
  right: -3px;
  height: 24px;
  background: #2a241e;
  border-radius: 28px 28px 8px 8px;
}
.temple { width: 13px; height: 18px; top: 14px; background: #d8d3c8; }
.temple.l { left: -2px; border-radius: 8px 0 8px 8px; }
.temple.r { right: -2px; border-radius: 0 8px 8px 8px; }
.wrinkle { height: 2px; border-radius: 2px; background: #c48968; }
.wrinkle.a { top: 30px; left: 16px; width: 30px; }
.wrinkle.b { top: 36px; left: 20px; width: 22px; }
.brow { width: 16px; height: 3px; top: 42px; background: #1a120e; border-radius: 2px; }
.brow.l { left: 8px; transform: rotate(-10deg); }
.brow.r { right: 8px; transform: rotate(14deg); }
.eye {
  width: 14px;
  height: 12px;
  top: 48px;
  background: #fffaf4;
  border: 2px solid #1a120e;
  border-radius: 50%;
  overflow: hidden;
}
.eye.l { left: 10px; }
.eye.r { right: 10px; }
.eye i {
  width: 5px;
  height: 5px;
  left: 4px;
  top: 4px;
  border-radius: 50%;
  background: #1a120e;
}
.bag { width: 14px; height: 4px; top: 62px; border-bottom: 2px solid rgba(150, 90, 55, 0.55); border-radius: 0 0 8px 8px; }
.bag.l { left: 10px; }
.bag.r { right: 10px; }
.nose {
  width: 10px;
  height: 16px;
  left: 27px;
  top: 56px;
  background: #d9a07c;
  border-radius: 0 0 8px 7px;
  box-shadow: inset -2px 0 0 #c48968;
}
.mouth {
  width: 22px;
  height: 8px;
  left: 22px;
  top: 74px;
  border-bottom: 2.5px solid #1a120e;
  border-left: 2.5px solid #1a120e;
  border-radius: 0 0 0 14px;
}
.chin {
  width: 20px;
  height: 7px;
  left: 22px;
  bottom: 3px;
  border-bottom: 2px solid rgba(26, 18, 14, 0.35);
  border-radius: 0 0 12px 12px;
}
.gag {
  width: 16px;
  height: 16px;
  right: 22px;
  top: 18px;
  z-index: 8;
  background: #f4d03f;
  clip-path: polygon(50% 0, 61% 38%, 100% 50%, 61% 62%, 50% 100%, 39% 62%, 0 50%, 39% 38%);
}

.leg {
  width: 16px;
  height: 64px;
  bottom: -52px;
  background: #1a2744;
  border: 3px solid #1a120e;
  border-radius: 0 0 8px 8px;
  z-index: 0;
  transform-origin: top center;
}
.leg.l { left: 62px; }
.leg.r { left: 92px; }
.yard .leg { display: none; }

.cell-floor {
  position: absolute;
  left: 8%;
  right: 8%;
  bottom: 18px;
  height: 8px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.45);
  filter: blur(2px);
}

.boot-end {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
  animation: bootHold 5.1s linear forwards;
}

.story .man {
  position: absolute;
  left: 50%;
  bottom: 28px;
  margin-left: -84px;
  animation: walkOut 4.6s linear forwards;
}
.story .halo { opacity: 0; animation: fadeOn 0.5s ease 3.25s forwards; }
.story .phone {
  opacity: 0;
  transform: scale(0.4) rotate(-16deg);
  animation: phonePop 0.5s cubic-bezier(0.18, 0.9, 0.22, 1) 3.35s forwards;
}
.story .sleeve.l { animation: armSwing 0.42s ease-in-out 1.7s 4; }
.story .leg.l { animation: stepL 0.42s ease-in-out 1.7s 4; }
.story .leg.r { animation: stepR 0.42s ease-in-out 1.7s 4; }
.story .man-bars b:nth-child(odd) { animation: barLeft 0.75s cubic-bezier(0.2, 0.8, 0.2, 1) 1.35s forwards; }
.story .man-bars b:nth-child(even) { animation: barRight 0.75s cubic-bezier(0.2, 0.8, 0.2, 1) 1.35s forwards; }

.yard {
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 18%, rgba(244, 208, 63, 0.28), transparent 42%),
    linear-gradient(180deg, #14110e 0%, #1c1410 55%, #0c0a09 100%);
}

.yard::before {
  content: "";
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    90deg,
    transparent 0 18px,
    rgba(232, 208, 120, 0.28) 18px 24px
  );
  mask-image: linear-gradient(90deg, #000 0%, transparent 62%);
  pointer-events: none;
}

.yard .man {
  position: absolute;
  left: 50%;
  bottom: -48px;
  transform: translateX(-50%) scale(0.9);
  transform-origin: center bottom;
}
.yard .man-bars { opacity: 0.22; z-index: 1; }
.yard .halo { animation: haloPulse 2.8s ease-in-out infinite; }
.yard .rig { animation: sway 3.4s ease-in-out infinite; transform-origin: 50% 80%; }
.yard .eye { transform-origin: center; animation: blink 4.8s infinite; }
.yard .brow.r { animation: browUp 2.6s ease-in-out infinite; }
.yard .mouth { transform-origin: left center; animation: smirk 2.6s ease-in-out infinite; }
.yard .phone { animation: phoneBob 2.6s ease-in-out infinite; transform-origin: 50% 80%; }
.yard .gag { animation: gagPop 2.6s ease-in-out infinite; }

.yard-live {
  position: absolute;
  top: 8px;
  left: 10px;
  right: auto;
  z-index: 3;
  margin: 0;
  text-align: left;
  font-family: "IBM Plex Mono", ui-monospace, monospace;
  font-size: 11px;
  letter-spacing: 0.28em;
  color: #f4d03f;
}

.yard-live i {
  display: inline-block;
  width: 7px;
  height: 7px;
  margin-right: 8px;
  border-radius: 50%;
  background: #c41e3a;
  box-shadow: 0 0 10px #c41e3a;
  animation: liveDot 1.2s ease-in-out infinite;
}

@keyframes liveDot {
  50% { opacity: 0.25; }
}

.yard-line {
  position: absolute;
  left: 8px;
  right: 8px;
  bottom: 8px;
  z-index: 3;
  margin: 0;
  text-align: center;
  font-size: 11px;
  letter-spacing: 0.08em;
  color: var(--mute);
}

@keyframes actStay {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: none; }
}
@keyframes actBeat {
  0% { opacity: 0; transform: translateY(6px); }
  18% { opacity: 1; transform: none; }
  74% { opacity: 1; }
  100% { opacity: 0; transform: translateY(-8px); }
}
@keyframes walkOut {
  0%, 26% { transform: translateY(14px) scale(0.94); filter: grayscale(0.7) brightness(0.68); }
  38% { transform: translateY(6px) scale(0.98); filter: none; }
  46% { transform: translateY(-2px) scale(1); }
  54% { transform: translateY(5px) scale(1.02); }
  62% { transform: translateY(-3px) scale(1.04); }
  70% { transform: translateY(3px) scale(1.05); }
  80%, 100% { transform: translateY(0) scale(1.06); filter: none; }
}
@keyframes stepL {
  0%, 100% { transform: rotate(22deg); }
  50% { transform: rotate(-20deg); }
}
@keyframes stepR {
  0%, 100% { transform: rotate(-20deg); }
  50% { transform: rotate(22deg); }
}
@keyframes armSwing {
  0%, 100% { transform: rotate(28deg); }
  50% { transform: rotate(-6deg); }
}
@keyframes bootHold { to { opacity: 0; } }
@keyframes barLeft { to { transform: translateX(-76px); opacity: 0; } }
@keyframes barRight { to { transform: translateX(76px); opacity: 0; } }
@keyframes fadeOn { to { opacity: 1; } }
@keyframes phonePop { to { opacity: 1; transform: none; } }
@keyframes sway {
  0%, 100% { transform: rotate(-1.6deg); }
  50% { transform: rotate(1.6deg); }
}
@keyframes blink {
  0%, 46%, 52%, 100% { transform: scaleY(1); }
  49% { transform: scaleY(0.12); }
}
@keyframes browUp {
  0%, 100% { transform: rotate(14deg); }
  50% { transform: rotate(24deg) translateY(-2px); }
}
@keyframes smirk {
  0%, 100% { transform: none; }
  50% { transform: scaleX(1.12) translateY(-1px); }
}
@keyframes phoneBob {
  0%, 100% { transform: rotate(-8deg); }
  50% { transform: rotate(7deg); }
}
@keyframes gagPop {
  0%, 30%, 100% { opacity: 0; transform: scale(0.4); }
  45%, 62% { opacity: 1; transform: scale(1); }
}
@keyframes haloPulse {
  0%, 100% { opacity: 0.65; }
  50% { opacity: 1; }
}

.price-line {
  display: flex;
  align-items: baseline;
  gap: 10px;
  margin: 0 0 12px;
}

.price-line b {
  font-size: 28px;
  color: var(--amber);
}

.price-line span {
  font-size: 12px;
  color: var(--mute);
}

.wallets {
  display: grid;
  gap: 10px;
}

.wallet {
  padding: 14px;
  border-radius: 16px;
  border: 1px solid var(--hair);
  background: rgba(0, 0, 0, 0.28);
}

.wallet-val {
  margin: 6px 0 8px;
  font-family: "IBM Plex Mono", ui-monospace, monospace;
  font-size: 13px;
  letter-spacing: 0.04em;
  word-break: break-all;
  user-select: text;
}

.wallet-hint {
  margin: 0 0 10px;
  font-size: 11px;
  color: var(--mute);
}
