:root {
  --sky-top: #1c232a;
  --sky-mid: #11161c;
  --sky-bottom: #080a0d;
  --panel: rgba(11,15,19,0.54);
  --panel-strong: rgba(19,25,31,0.74);
  --screen-green: #89f79c;
  --screen-dark: rgba(11, 16, 18, 0.8);
  --metal-1: #f5f7fa;
  --metal-2: #9ea6b3;
  --metal-3: #4d545f;
  --pink-1: rgba(255, 182, 224, 0.95);
  --pink-2: rgba(255, 108, 208, 0.82);
  --ink: rgba(15, 19, 19, 0.8);
}

@font-face {
  font-family: "Milker UI";
  src: url("Milker.otf") format("opentype");
  font-display: swap;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  font-family: "Inter", sans-serif;
  background: #010101;
}

body {
  display: flex;
  min-height: 100vh;
  align-items: center;
  justify-content: center;
  background: #080a0d;
  color: #fff;
}

.desktop-scene {
  position: relative;
  width: 100vw;
  height: 100vh;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(5,8,11,0.58), rgba(5,8,11,0.82)),
    linear-gradient(180deg, var(--sky-top) 0%, var(--sky-mid) 32%, #0d1217 70%, var(--sky-bottom) 100%);
}

.photo-slideshow {
  position: fixed;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  background: #11161c;
  filter: blur(6px);
  transform: scale(1.012);
}

.photo-slideshow::before,
.photo-slideshow::after {
  content: "";
  position: absolute;
  z-index: 1;
  inset: 0;
  pointer-events: none;
}

.photo-slideshow::before {
  display: none;
}

.top-gradient-zone {
  position: absolute;
  top: 0;
  height: calc(var(--top-gradient-y, 7%) + 5%);
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(
    180deg,
    rgba(255,255,255,0.12) 0%,
    rgba(255,255,255,0.18) 24%,
    rgba(255,255,255,0.32) 48%,
    rgba(255,255,255,0.18) 68%,
    rgba(255,255,255,0) 100%
  );
  mask-image: linear-gradient(90deg, transparent 0%, rgba(0,0,0,0.72) 10%, #000 24%, #000 76%, rgba(0,0,0,0.72) 90%, transparent 100%);
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, rgba(0,0,0,0.72) 10%, #000 24%, #000 76%, rgba(0,0,0,0.72) 90%, transparent 100%);
}

.photo-slideshow::after {
  background: linear-gradient(
    180deg,
    rgba(255,255,255,0) 0%,
    rgba(255,255,255,0) 62%,
    rgba(255,255,255,0.03) 65%,
    rgba(255,255,255,0.42) 70%,
    rgba(255,255,255,0.82) 82%,
    rgba(255,255,255,0.98) 92%,
    #ffffff 100%
  );
  mask-image: linear-gradient(
    90deg,
    transparent 0%,
    rgba(0,0,0,0.35) 10%,
    rgba(0,0,0,0.72) 24%,
    rgba(0,0,0,0.94) 38%,
    #000000 50%,
    rgba(0,0,0,0.94) 62%,
    rgba(0,0,0,0.72) 76%,
    rgba(0,0,0,0.35) 90%,
    transparent 100%
  );
  -webkit-mask-image: linear-gradient(
    90deg,
    transparent 0%,
    rgba(0,0,0,0.35) 10%,
    rgba(0,0,0,0.72) 24%,
    rgba(0,0,0,0.94) 38%,
    #000000 50%,
    rgba(0,0,0,0.94) 62%,
    rgba(0,0,0,0.72) 76%,
    rgba(0,0,0,0.35) 90%,
    transparent 100%
  );
}

.desktop-scene::before,
.desktop-scene::after {
  display: none;
}

.three-text-stage {
  position: absolute;
  inset: 0;
  z-index: 4;
  pointer-events: none;
  overflow: hidden;
}

.ascii-art {
  position: absolute;
  top: -125px;
  left: -180px;
  z-index: 3;
  width: min(96vw, 1250px);
  max-width: calc(100vw - 56px);
  height: auto;
  margin: 0;
  overflow: hidden;
  color: #fff;
  font-family: "DM Mono", monospace;
  font-size: clamp(1.35rem, 2.16vw, 2.16rem);
  line-height: 0.72;
  white-space: pre;
  pointer-events: none;
  user-select: none;
}

.ascii-art-right {
  top: auto;
  right: -545px;
  bottom: 20px;
  left: auto;
  transform: translateX(0);
}

#three-text-canvas {
  display: block;
  width: 100%;
  height: 100%;
}

.photo-slideshow .background-image {
  position: absolute;
  inset: 0;
  z-index: 0;
  display: block;
  width: 100vw;
  height: 100vh;
  object-fit: cover;
  object-position: center center;
  opacity: 0;
  transform: none;
  filter: none;
  transition: opacity 1.6s ease-in-out;
}

.photo-slideshow .background-image.is-visible {
  opacity: 1;
}

.sky-glow {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 16%, rgba(255,255,255,0.92), transparent 18%),
    radial-gradient(circle at 72% 18%, rgba(255,255,255,0.7), transparent 16%),
    radial-gradient(circle at 50% 52%, rgba(255,255,255,0.18), transparent 32%);
  filter: blur(18px);
}

.desktop-scene::before,
.desktop-scene::after {
  content: "";
  position: absolute;
  width: 42vw;
  height: 18vh;
  border-radius: 48% 52% 44% 56% / 52% 48% 52% 48%;
  background: rgba(255,255,255,0.38);
  filter: blur(26px);
  top: 10%;
  left: 14%;
  opacity: 0.8;
}

.desktop-scene::after {
  left: auto;
  right: 11%;
  top: 17%;
  width: 35vw;
  height: 15vh;
}

.desktop-icons {
  position: absolute;
  width: 100vw;
  top: 18px;
  z-index: 4;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.desktop-icon {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 74px;
  gap: 6px;
  color: rgba(255,255,255,0.9);
  font-size: 0.73rem;
  text-shadow: 0 1px 1px rgba(0,0,0,0.4);
  filter: drop-shadow(0 2px 1px rgba(0,0,0,0.28));
}

.icon-folder {
  position: relative;
  display: block;
  width: 36px;
  height: 28px;
  border-radius: 6px;
  background: linear-gradient(180deg, #f5f5f5, #d3d5d8);
  box-shadow: inset 0 0 0 1px rgba(0,0,0,0.18), 0 2px 5px rgba(0,0,0,0.15);
}

.icon-folder::before {
  content: "";
  position: absolute;
  left: 4px;
  top: -7px;
  width: 18px;
  height: 10px;
  border-radius: 4px 6px 0 0;
  background: linear-gradient(180deg, #ffffff, #d9dde1);
}

.center-piece {
  position: absolute;
  left: 50%;
  top: 48%;
  transform: translate(-50%, -50%);
  width: min(72vw, 760px);
  height: min(62vw, 620px);
  z-index: 3;
}

.goo {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  border-radius: 46% 54% 50% 50% / 56% 44% 56% 44%;
  background: linear-gradient(180deg, rgba(255, 188, 228, 0.94), rgba(255, 120, 202, 0.8) 35%, rgba(255, 178, 220, 0.9));
  box-shadow:
    inset 6px 10px 22px rgba(255,255,255,0.38),
    inset -14px -16px 20px rgba(199,71,164,0.24),
    0 12px 38px rgba(228,110,196,0.18);
}

.goo-top {
  top: 10px;
  top: 96px;
  border-radius: 45% 55% 52% 48% / 52% 48% 52% 48%;
  animation: goo-shift 7s ease-in-out infinite alternate;
}

.goo-top::before,
  background: linear-gradient(
    180deg,
    #ffffff 0%,
    #aeb6bf 16%,
    #f8fbff 31%,
    #59636d 52%,
    #e6ebef 68%,
    #68727c 100%
  );
.goo-bottom::before,
.goo-bottom::after {
  content: "";
  position: absolute;
  font-weight: 700;
  font-size: clamp(5rem, 17vw, 16rem);
}

  -webkit-text-stroke: 2px rgba(235,205,255,0.95);
  width: 56%;
    3px 3px 0 #6d2d9c,
    6px 6px 0 #63278f,
    9px 9px 0 #59217f,
    12px 12px 0 #4f1b70,
    15px 15px 0 #45155e;
}
.goo-top::after {
  width: 54%;
  height: 34%;
  right: 12%;
  top: 63%;
  border-radius: 46% 54% 50% 50% / 56% 44% 56% 44%;
  transform: rotate(-10deg);
}

.goo-bottom {
  bottom: 0;
  width: min(40vw, 420px);
  height: 180px;
  border-radius: 58% 42% 52% 48% / 58% 42% 58% 42%;
  animation: goo-drip 8s ease-in-out infinite alternate;
}

.goo-bottom::before {
  width: 68%;
  height: 36%;
  left: 14%;
  top: -10%;
  border-radius: 54% 46% 58% 42% / 58% 42% 58% 42%;
  transform: rotate(5deg);
}

.goo-bottom::after {
  width: 56%;
  height: 32%;
  right: 12%;
  top: -16%;
  border-radius: 52% 48% 50% 50% / 50% 50% 50% 50%;
  transform: rotate(-8deg);
}

.chain {
  position: absolute;
  left: 50%;
  bottom: 76px;
  width: 430px;
  height: 190px;
  transform: translateX(-50%);
  border-radius: 50%;
  border: 2px solid rgba(223,227,233,0.8);
  border-top-color: rgba(255,255,255,0.7);
  border-left-color: rgba(255,255,255,0.5);
  border-right-color: rgba(100,110,120,0.35);
  border-bottom: 0;
  opacity: 0.95;
  box-shadow: inset 0 0 8px rgba(255,255,255,0.24);
  animation: chain-sway 5s ease-in-out infinite alternate;
}

.chain::before,
.chain::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: repeating-radial-gradient(circle at center, rgba(255,255,255,0.4) 0 3px, transparent 3px 8px);
  opacity: 0.6;
}

.device {
  position: absolute;
  left: 50%;
  top: 190px;
  width: min(54vw, 600px);
  height: 228px;
  transform: translateX(-50%);
  border-radius: 28px;
  background: linear-gradient(180deg, rgba(147, 255, 180, 0.82), rgba(120, 210, 93, 0.8));
  box-shadow:
    inset 0 0 0 2px rgba(0,0,0,0.12),
    inset 0 0 26px rgba(0,0,0,0.18),
    0 12px 28px rgba(0,0,0,0.15),
    0 0 20px rgba(170,255,126,0.18);
  border: 10px solid rgba(11,13,15,0.8);
  z-index: 4;
  animation: device-bob 5.5s ease-in-out infinite alternate;
}

.device-frame {
  position: absolute;
  inset: 14px 18px;
  border-radius: 18px;
  border: 2px solid rgba(0,0,0,0.25);
  box-shadow: inset 0 0 12px rgba(255,255,255,0.18);
}

.screen {
  position: absolute;
  left: 50%;
  top: 50%;
  width: calc(100% - 88px);
  height: 130px;
  transform: translate(-50%, -50%);
  border-radius: 12px;
  background: linear-gradient(180deg, rgba(0,0,0,0.9), rgba(15,16,18,0.82));
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.12), inset 0 0 12px rgba(145,255,148,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
}

.screen span {
  font-family: "Saira Stencil One", "Orbitron", sans-serif;
  font-size: clamp(2.2rem, 3.5vw, 4.3rem);
  letter-spacing: 0.14em;
  text-transform: lowercase;
  color: rgba(206, 255, 115, 0.96);
  text-shadow: 0 0 10px rgba(173,255,113,0.35);
  transform: rotate(-2deg) skewX(-2deg);
}

.device::before,
.device::after {
  content: "";
  position: absolute;
  top: 26px;
  width: 24px;
  height: 112px;
  background: linear-gradient(180deg, rgba(255,255,255,0.9), rgba(148,152,167,0.75));
  border-radius: 12px;
  box-shadow: inset 0 0 0 1px rgba(0,0,0,0.2);
}

.device::before {
  left: 18px;
  transform: rotate(12deg);
}

.device::after {
  right: 18px;
  transform: rotate(-12deg);
}

.key {
  position: absolute;
  left: 50%;
  bottom: 34px;
  width: 220px;
  height: 154px;
  transform: translateX(-50%) rotate(22deg);
  animation: key-sway 5.2s ease-in-out infinite alternate;
  z-index: 5;
}

.key-ring {
  position: absolute;
  left: 50%;
  top: 8px;
  width: 180px;
  height: 110px;
  transform: translateX(-50%);
  border-radius: 52% 48% 44% 56% / 48% 52% 48% 52%;
  background: linear-gradient(135deg, rgba(240,243,250,0.85), rgba(120,124,138,0.92));
  border: 10px solid rgba(50,52,58,0.35);
  box-shadow: inset 0 0 18px rgba(255,255,255,0.7), inset 0 0 8px rgba(0,0,0,0.15);
}

.key-head {
  position: absolute;
  left: 18px;
  top: 34px;
  width: 180px;
  height: 78px;
  border-radius: 90% 10% 60% 40% / 50% 50% 50% 50%;
  background: linear-gradient(135deg, rgba(244,247,252,0.92), rgba(120,124,138,0.85));
  box-shadow: inset 0 0 12px rgba(255,255,255,0.7);
  transform: rotate(-8deg);
}

.key-head::before,
.key-head::after {
  content: "";
  position: absolute;
  inset: 10px 18px;
  border-radius: 40% 60% 50% 50% / 50% 50% 50% 50%;
  border: 3px solid rgba(92,96,105,0.7);
  background: rgba(255,255,255,0.02);
}

.key-shaft {
  position: absolute;
  left: 100px;
  bottom: 6px;
  width: 18px;
  height: 122px;
  border-radius: 12px;
  background: linear-gradient(180deg, rgba(235,235,238,0.9), rgba(95,98,110,0.84));
  box-shadow: inset 0 0 10px rgba(255,255,255,0.8);
  transform: rotate(10deg);
}

.key-shaft::before,
.key-shaft::after {
  content: "";
  position: absolute;
  width: 28px;
  height: 38px;
  border-radius: 50%;
  background: linear-gradient(180deg, rgba(255,255,255,0.9), rgba(146,151,159,0.8));
  left: -6px;
  bottom: -6px;
  box-shadow: inset 0 0 10px rgba(255,255,255,0.8);
}

.key-shaft::after {
  left: -8px;
  bottom: 18px;
  width: 38px;
  height: 10px;
  border-radius: 999px;
}

.key::before {
  content: "";
  position: absolute;
  left: 82px;
  bottom: -28px;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 25%, rgba(255,255,255,0.95), rgba(255,175,217,0.7) 34%, rgba(255,120,200,0.7) 60%, rgba(255,255,255,0.38));
  box-shadow: 0 0 18px rgba(255, 171, 224, 0.5);
  transform: rotate(8deg);
}

.start-button {
  position: absolute;
  left: 20px;
  bottom: 18px;
  z-index: 6;
  width: 120px;
  height: 24px;
  border-radius: 10px;
  background: linear-gradient(180deg, rgba(255,255,255,0.24), rgba(255,255,255,0.08));
  border: 1px solid rgba(255,255,255,0.18);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.25);
  color: rgba(16,19,20,0.86);
  font-family: "Milker UI", sans-serif;
  font-size: 0.86rem;
  font-weight: 300;
  letter-spacing: 0.08em;
}

.scene-nav {
  position: absolute;
  top: 18px;
  left: 18px;
  right: 18px;
  z-index: 7;
  perspective: 900px;
  display: flex;
  justify-content: space-between;
  pointer-events: none;
}

.scene-nav a {
  color: #000;
  font-family: "Milker UI", sans-serif;
  font-size: 0.8rem;
  font-weight: 300;
  letter-spacing: 0.14em;
  text-decoration: none;
  text-shadow: 0 1px 2px rgba(0,0,0,0.32);
  pointer-events: auto;
  transition: opacity 0.2s ease;
}

.scene-nav a:hover,
.scene-nav a:focus-visible {
  opacity: 0.62;
}

.scene-nav a > span {
  color: #000;
  -webkit-text-fill-color: #000;
  position: relative;
  z-index: 20;
  text-shadow: none;
}

.scene-nav > a:last-of-type,
.scene-nav > a:last-of-type > span {
  color: #000;
  -webkit-text-fill-color: #000;
}

.hero-actions a > span {
  color: #000;
  -webkit-text-fill-color: #000;
  position: relative;
  z-index: 20;
  mix-blend-mode: normal;
  filter: none;
  text-shadow: 0 0 1px rgba(255,255,255,0.3);
  transition: color 1.2s ease, text-shadow 1.2s ease;
}

.scene-nav > a:not(.booking-button) {
  position: absolute;
  top: 22px;
  font-size: 0.76rem;
  font-weight: 100;
}

.scene-nav .booking-button {
  position: absolute;
  top: 0;
  left: 50%;
  z-index: 1;
  display: inline-flex;
  height: 26px;
  min-height: 26px;
  align-items: center;
  justify-content: center;
  padding: 3px 10px;
  border: 1.25px solid rgba(0,0,0,0.82);
  border-radius: 5px;
  background: transparent;
  color: #000;
  font-size: 0.92rem;
  font-weight: 300;
  letter-spacing: 0.27em;
  line-height: 1.1;
  text-align: center;
  width: clamp(135px, 8vw, 170px);
  transform: translateX(-50%);
  isolation: isolate;
  transition: background 0.35s ease, border-color 0.22s ease, color 0.22s ease, transform 0.35s ease;
}

.scene-nav .booking-button::before {
  display: none;
}

.scene-nav .booking-button::after {
  display: none;
}

.scene-nav .booking-button:hover,
.scene-nav .booking-button:focus-visible {
  background: rgba(0,0,0,0.06);
  border-color: #000;
  transform: translateX(-50%) translateY(-2px);
}

.scene-nav .booking-button > span {
  position: relative;
  z-index: 1;
  color: #000;
  -webkit-text-fill-color: #000;
  transition: color 1.2s ease;
}

.booking-title {
  position: absolute;
  top: 104px;
  left: 50%;
  z-index: 1;
  margin: 0;
  transform: translateX(-50%);
  color: #fff;
  background: linear-gradient(180deg, #ffffff 0%, #f3f3f3 42%, #85898e 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  font-family: "Orbitron", sans-serif;
  font-weight: 600;
  font-size: clamp(3rem, 9vw, 9rem);
  line-height: 1;
  letter-spacing: 0.08em;
  -webkit-text-stroke: 2px rgba(255,255,255,0.95);
  text-shadow:
    3px 3px 0 #7d858d,
    6px 6px 0 #68717a,
    9px 9px 0 #535c65,
    12px 12px 0 #3e464e,
    15px 15px 0 #2b3137,
    18px 18px 0 #1d2227,
    0 24px 18px rgba(0,0,0,0.32);
  white-space: nowrap;
  perspective: 1000px;
  isolation: isolate;
  transform-style: preserve-3d;
  transform-origin: center center;
  backface-visibility: visible;
  animation: title-spin 8s linear infinite;
  display: none;
}

.booking-title::before {
  content: none;
}

@keyframes title-spin {
  0% {
    transform: translateX(-50%) rotateX(0deg) rotateY(0deg);
  }
  50% {
    transform: translateX(-50%) rotateX(0deg) rotateY(180deg);
  }
  100% {
    transform: translateX(-50%) rotateX(0deg) rotateY(360deg);
  }
}

.hero-actions {
  position: absolute;
  right: clamp(240px, 35vw, 500px);
  left: clamp(240px, 35vw, 500px);
  top: 77%;
  z-index: 8;
  display: flex;
  width: auto;
  flex-direction: column;
  gap: 26px;
  transform: translateY(-50%);
}

.hero-actions a {
  display: inline-flex;
  font-family: "Milker UI", sans-serif;
  width: 100%;
  min-width: 0;
  height: 46px;
  min-height: 46px;
  flex: 0 0 auto;
  align-items: center;
  justify-content: center;
  padding: 10px 24px;
  border: 0;
  border-bottom: 1px solid #000;
  border-radius: 0;
  background: transparent;
  color: #000;
  font-size: 1.12rem;
  font-weight: 300;
  letter-spacing: 0.17em;
  line-height: 1.1;
  text-align: center;
  text-decoration: none;
  text-shadow: none;
  box-shadow: none;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  transition: color 1.2s ease, background 0.25s ease, border-color 0.2s ease, box-shadow 0.25s ease, filter 0.25s ease, text-shadow 0.25s ease;
}

.hero-actions .social-icon {
  display: block;
  width: 16px;
  height: 16px;
  flex: 0 0 16px;
  margin-left: 0.55em;
  overflow: visible;
  color: #000;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: color 1.2s ease;
}

.hero-actions .social-icon-dot {
  fill: currentColor;
  stroke: none;
}

.hero-actions a:hover,
.hero-actions a:focus-visible {
  background: rgba(255,255,255,0.06);
  border-color: #000;
  box-shadow: none;
  filter: none;
  color: #000;
  text-shadow: none;
}

.scene-nav .booking-button {
  order: initial;
}

.start-button,
.scene-nav .booking-button,
.hero-actions a,
.scene-nav .booking-button > span,
.hero-actions a > span,
.hero-actions .social-icon {
  color: #000;
  -webkit-text-fill-color: #000;
}

.client-marquee {
  position: absolute;
  right: 0;
  bottom: 14px;
  left: 0;
  z-index: 9;
  overflow: hidden;
  padding: 20px 0;
  border-top: 2px solid rgba(255,255,255,0.95);
  border-bottom: 2px solid rgba(255,255,255,0.95);
  background: rgba(255,255,255,0.62);
  box-shadow: 0 0 22px rgba(255,255,255,0.3);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
}

.client-track {
  display: flex;
  width: max-content;
  gap: 30px;
  white-space: nowrap;
  animation: marquee-right 24s linear infinite;
}

.client-track a {
  color: rgba(10,16,18,0.9);
  font-size: 0.88rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-decoration: none;
}

@keyframes marquee-right {
  from { transform: translateX(-25%); }
  to { transform: translateX(0); }
}

@keyframes key-sway {
  0% { transform: translateX(-50%) rotate(18deg); }
  100% { transform: translateX(-50%) rotate(28deg) translateY(4px); }
}

@keyframes chain-sway {
  0% { transform: translateX(-50%) rotate(0deg) scaleY(1); }
  100% { transform: translateX(-50%) rotate(2deg) scaleY(1.04); }
}

@keyframes goo-shift {
  0% { transform: translateX(-50%) rotate(-5deg) scale(0.98); }
  100% { transform: translateX(-50%) rotate(6deg) scale(1.02); }
}

@keyframes goo-drip {
  0% { transform: translateX(-50%) rotate(4deg) scale(1); }
  100% { transform: translateX(-50%) rotate(-6deg) scale(1.04); }
}

@keyframes device-bob {
  0% { transform: translateX(-50%) rotate(0deg); }
  100% { transform: translateX(-50%) rotate(1.5deg) translateY(4px); }
}

@media (max-width: 700px) {
  .ascii-art {
    top: 35px;
    left: -43px;
    width: 82vw;
    max-width: none;
    font-size: clamp(0.55rem, 1.05vw, 0.72rem);
    line-height: 0.72;
  }

  .ascii-art-right {
    top: auto;
    right: -272px;
    bottom: 10px;
    left: auto;
    width: 90vw;
    transform: translateX(0);
  }

  .three-text-stage {
    transform: scale(0.82);
    transform-origin: center 30%;
  }

  .desktop-icons {
    left: 10px;
    top: 12px;
    gap: 14px;
  }

  .desktop-icon {
    width: 60px;
    font-size: 0.6rem;
  }

  .center-piece {
    width: min(88vw, 620px);
    height: min(80vw, 500px);
  }

  .device {
    width: min(76vw, 420px);
    height: 180px;
  }

  .screen span {
    font-size: clamp(1.6rem, 6vw, 2.8rem);
    letter-spacing: 0.1em;
  }

  .key {
    width: 170px;
    height: 120px;
  }

  .scene-nav {
    left: 18px;
  }

  .hero-actions {
    right: 70px;
    left: 70px;
    top: 77%;
    width: auto;
    gap: 12px;
    transform: translateY(-50%);
  }

  .hero-actions a {
    height: 44px;
    min-height: 44px;
    padding: 10px 18px;
    font-size: 0.98rem;
    font-weight: 300;
    letter-spacing: 0.14em;
  }

  .scene-nav .booking-button {
    top: 0;
    width: min(46vw, 175px);
    height: 26px;
    min-height: 26px;
    padding: 2px 18px;
    letter-spacing: 0.18em;
  }

  .scene-nav > a:not(.booking-button) {
    top: 20px;
  }

  .booking-title {
    top: 86px;
    font-size: 4.5rem;
  }

}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
  }

  .booking-title {
    animation: title-spin 8s linear infinite !important;
  }
}
