:root {
  --vm-launch-bg: #08090b;
  --vm-launch-surface: rgba(9, 10, 12, 0.9);
  --vm-launch-surface-strong: rgba(6, 7, 9, 0.97);
  --vm-launch-gold: var(--vm-gold, #d4af57);
  --vm-launch-gold-light: var(--vm-gold-light, #f0cf92);
  --vm-launch-gold-muted: #98733c;
  --vm-launch-crimson: #731713;
  --vm-launch-crimson-hover: #98231c;
  --vm-launch-text: var(--vm-text, #efe1c1);
  --vm-launch-muted: #b8aa8f;
  --vm-launch-border: rgba(198, 151, 75, 0.55);
}

html.launch-intro-was-dismissed .launch-intro,
.launch-intro[hidden] {
  display: none !important;
}

body.launch-intro-active {
  height: 100%;
  overflow: hidden;
}

.launch-intro {
  --launch-parallax-bg-x: 0px;
  --launch-parallax-bg-y: 0px;
  --launch-parallax-fog-x: 0px;
  --launch-parallax-fog-y: 0px;
  --launch-parallax-front-x: 0px;
  --launch-parallax-front-y: 0px;
  position: fixed;
  z-index: 2147483000;
  inset: 0;
  isolation: isolate;
  width: 100%;
  height: 100dvh;
  min-height: 100svh;
  overflow: hidden;
  color: var(--vm-launch-text);
  background: var(--vm-launch-bg);
  font-family: var(--vm-sans, "Velmora Sans", "Segoe UI", sans-serif);
  opacity: 1;
  animation: launchIntroReveal 440ms ease-out both;
}

.launch-intro.is-leaving {
  pointer-events: none;
  animation: launchIntroLeave 420ms cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

.launch-intro.is-paused *,
.launch-intro.is-paused *::before,
.launch-intro.is-paused *::after {
  animation-play-state: paused !important;
}

.launch-intro__visual,
.launch-intro__vignette {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.launch-intro__visual {
  z-index: -3;
  overflow: hidden;
  background:
    radial-gradient(circle at 51% 32%, rgba(77, 85, 91, 0.18), transparent 38%),
    #050608;
}

.launch-intro__scene {
  position: absolute;
  inset: -3%;
  display: block;
  transform:
    translate3d(var(--launch-parallax-bg-x), var(--launch-parallax-bg-y), 0)
    scale(1.02);
  transform-origin: 50% 50%;
  animation: launchSceneDrift 28s ease-in-out infinite alternate;
  will-change: transform;
}

.launch-intro__scene img {
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  object-position: 50% 50%;
  filter: saturate(0.94) contrast(1.03) brightness(0.84);
}

.launch-intro__visual::after {
  content: "";
  position: absolute;
  z-index: 1;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.18), transparent 29%, transparent 68%, rgba(0, 0, 0, 0.25)),
    linear-gradient(180deg, rgba(0, 0, 0, 0.06), transparent 49%, rgba(0, 0, 0, 0.38));
}

.launch-intro__fog {
  position: absolute;
  z-index: 0;
  inset: -16%;
  opacity: 0.2;
  pointer-events: none;
  will-change: transform, opacity;
}

.launch-intro__fog--far {
  background:
    radial-gradient(ellipse at 47% 42%, rgba(194, 199, 195, 0.18), transparent 31%),
    radial-gradient(ellipse at 70% 54%, rgba(166, 172, 169, 0.12), transparent 29%);
  filter: blur(26px);
  transform:
    translate3d(var(--launch-parallax-fog-x), var(--launch-parallax-fog-y), 0)
    translateX(-2%);
  animation: launchFogFar 24s ease-in-out infinite alternate;
}

.launch-intro__fog--near {
  inset: 36% -18% -26%;
  background:
    radial-gradient(ellipse at 45% 50%, rgba(189, 177, 157, 0.15), transparent 28%),
    radial-gradient(ellipse at 69% 58%, rgba(146, 141, 132, 0.13), transparent 31%);
  filter: blur(34px);
  opacity: 0.17;
  transform:
    translate3d(var(--launch-parallax-front-x), var(--launch-parallax-front-y), 0)
    translateX(2%);
  animation: launchFogNear 31s ease-in-out infinite alternate;
}

.launch-intro__embers {
  position: absolute;
  z-index: 2;
  inset: 0;
  overflow: hidden;
  transform: translate3d(var(--launch-parallax-front-x), var(--launch-parallax-front-y), 0);
  pointer-events: none;
}

.launch-intro__embers i {
  --ember-x: 50%;
  --ember-y: 82%;
  --ember-delay: 0s;
  --ember-duration: 9s;
  --ember-shift: 18px;
  position: absolute;
  left: var(--ember-x);
  top: var(--ember-y);
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: #e98a35;
  box-shadow: 0 0 7px rgba(232, 92, 32, 0.78);
  opacity: 0;
  animation: launchEmberRise var(--ember-duration) linear var(--ember-delay) infinite;
}

.launch-intro__embers i:nth-child(1) { --ember-x: 15%; --ember-y: 86%; --ember-delay: -2s; --ember-duration: 10s; }
.launch-intro__embers i:nth-child(2) { --ember-x: 24%; --ember-y: 94%; --ember-delay: -7s; --ember-duration: 12s; --ember-shift: -11px; }
.launch-intro__embers i:nth-child(3) { --ember-x: 34%; --ember-y: 89%; --ember-delay: -4s; --ember-duration: 9s; }
.launch-intro__embers i:nth-child(4) { --ember-x: 43%; --ember-y: 96%; --ember-delay: -8s; --ember-duration: 13s; --ember-shift: -17px; }
.launch-intro__embers i:nth-child(5) { --ember-x: 55%; --ember-y: 91%; --ember-delay: -3s; --ember-duration: 11s; }
.launch-intro__embers i:nth-child(6) { --ember-x: 64%; --ember-y: 97%; --ember-delay: -9s; --ember-duration: 14s; }
.launch-intro__embers i:nth-child(7) { --ember-x: 73%; --ember-y: 88%; --ember-delay: -5s; --ember-duration: 10s; --ember-shift: -13px; }
.launch-intro__embers i:nth-child(8) { --ember-x: 82%; --ember-y: 94%; --ember-delay: -1s; --ember-duration: 12s; }
.launch-intro__embers i:nth-child(9) { --ember-x: 90%; --ember-y: 86%; --ember-delay: -6s; --ember-duration: 11s; }
.launch-intro__embers i:nth-child(10) { --ember-x: 47%; --ember-y: 84%; --ember-delay: -10s; --ember-duration: 15s; }
.launch-intro__embers i:nth-child(11) { --ember-x: 31%; --ember-y: 98%; --ember-delay: -6s; --ember-duration: 14s; --ember-shift: -9px; }
.launch-intro__embers i:nth-child(12) { --ember-x: 69%; --ember-y: 93%; --ember-delay: -11s; --ember-duration: 16s; }

.launch-intro__vignette {
  z-index: 3;
  box-shadow:
    inset 0 0 130px rgba(0, 0, 0, 0.74),
    inset 0 -7vh 12vh rgba(0, 0, 0, 0.42);
  background:
    radial-gradient(ellipse at 50% 44%, transparent 31%, rgba(3, 4, 5, 0.13) 66%, rgba(1, 2, 3, 0.5) 100%);
}

.launch-intro__frame {
  position: absolute;
  z-index: 7;
  inset: clamp(8px, 1vw, 18px);
  border: 1px solid rgba(194, 142, 65, 0.38);
  box-shadow:
    inset 0 0 0 1px rgba(18, 12, 6, 0.7),
    inset 0 0 46px rgba(0, 0, 0, 0.24);
  pointer-events: none;
}

.launch-intro__frame::before,
.launch-intro__frame::after {
  content: "";
  position: absolute;
  left: 50%;
  width: min(28vw, 450px);
  height: 1px;
  transform: translateX(-50%);
  background: linear-gradient(90deg, transparent, rgba(209, 156, 78, 0.54), transparent);
}

.launch-intro__frame::before { top: -1px; }
.launch-intro__frame::after { bottom: -1px; }

.launch-intro__frame i {
  position: absolute;
  width: clamp(25px, 2.4vw, 47px);
  height: clamp(25px, 2.4vw, 47px);
  border-color: rgba(205, 151, 72, 0.66);
  border-style: solid;
}

.launch-intro__frame i::after {
  content: "";
  position: absolute;
  width: 7px;
  height: 7px;
  border: 1px solid rgba(209, 153, 71, 0.68);
  transform: rotate(45deg);
}

.launch-intro__frame i:nth-child(1) {
  top: 5px;
  left: 5px;
  border-width: 1px 0 0 1px;
}

.launch-intro__frame i:nth-child(1)::after { top: -4px; left: -4px; }

.launch-intro__frame i:nth-child(2) {
  top: 5px;
  right: 5px;
  border-width: 1px 1px 0 0;
}

.launch-intro__frame i:nth-child(2)::after { top: -4px; right: -4px; }

.launch-intro__frame i:nth-child(3) {
  right: 5px;
  bottom: 5px;
  border-width: 0 1px 1px 0;
}

.launch-intro__frame i:nth-child(3)::after { right: -4px; bottom: -4px; }

.launch-intro__frame i:nth-child(4) {
  bottom: 5px;
  left: 5px;
  border-width: 0 0 1px 1px;
}

.launch-intro__frame i:nth-child(4)::after { bottom: -4px; left: -4px; }

.launch-intro__content {
  position: relative;
  z-index: 5;
  width: min(calc(100% - 58px), 1040px);
  height: 100%;
  min-height: 100%;
  margin-inline: auto;
  padding: clamp(22px, 3.5vh, 48px) 0 clamp(18px, 3vh, 38px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  transform: translateY(-1.2vh);
}

.launch-intro__brand {
  position: relative;
  width: clamp(370px, 41vw, 735px);
  max-width: 90vw;
  margin: 0 auto clamp(-49px, -2.6vw, -29px);
  opacity: 0;
  filter: drop-shadow(0 18px 24px rgba(0, 0, 0, 0.82));
  animation: launchBrandEnter 610ms cubic-bezier(0.2, 0.72, 0.2, 1) 120ms forwards;
}

.launch-intro__brand img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: auto;
}

.launch-intro__brand::after {
  content: "";
  position: absolute;
  z-index: 2;
  inset: 0;
  background: linear-gradient(
    108deg,
    transparent 34%,
    rgba(255, 222, 143, 0.04) 43%,
    rgba(255, 236, 180, 0.56) 49%,
    rgba(255, 215, 123, 0.08) 55%,
    transparent 64%
  );
  -webkit-mask: url("../assets/velmora/velmor2-logo.png") center / contain no-repeat;
  mask: url("../assets/velmora/velmor2-logo.png") center / contain no-repeat;
  transform: translateX(-125%);
  animation: launchBrandShine 10s ease-in-out 2.5s infinite;
  pointer-events: none;
}

.launch-intro__server-type {
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(12px, 1.2vw, 22px);
  color: #e7d9bd;
  font-family: var(--vm-display, "Velmora Display", Georgia, serif);
  font-size: clamp(14px, 1.25vw, 21px);
  font-weight: 400;
  letter-spacing: 0.12em;
  line-height: 1.2;
  text-transform: uppercase;
  text-shadow: 0 3px 8px #000;
  opacity: 0;
  transform: translateY(8px);
  animation: launchElementEnter 420ms ease-out 340ms forwards;
}

.launch-intro__server-type span,
.launch-intro__message span {
  position: relative;
  width: clamp(48px, 7vw, 120px);
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(213, 164, 83, 0.78));
}

.launch-intro__server-type span::after,
.launch-intro__message span::after {
  content: "";
  position: absolute;
  right: -3px;
  top: -3px;
  width: 7px;
  height: 7px;
  border: 1px solid rgba(212, 156, 72, 0.76);
  transform: rotate(45deg);
  background: rgba(8, 8, 8, 0.84);
}

.launch-intro__server-type span:last-child,
.launch-intro__message span:last-child {
  transform: scaleX(-1);
}

.launch-intro h1 {
  margin: clamp(16px, 2vh, 25px) 0 0;
  color: var(--vm-launch-gold-light);
  font-family: var(--vm-display, "Velmora Display", Georgia, serif);
  font-size: clamp(20px, 2vw, 34px);
  font-weight: 400;
  letter-spacing: 0.055em;
  line-height: 1.12;
  text-transform: uppercase;
  text-shadow:
    0 3px 8px rgba(0, 0, 0, 0.96),
    0 0 18px rgba(135, 71, 24, 0.24);
  opacity: 0;
  transform: translateY(8px);
  animation: launchElementEnter 420ms ease-out 440ms forwards;
}

.launch-countdown {
  width: min(100%, 710px);
  margin-top: clamp(15px, 2.2vh, 25px);
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(9px, 1vw, 16px);
}

.launch-countdown__unit {
  position: relative;
  min-width: 0;
  height: clamp(104px, 12vh, 136px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  clip-path: polygon(7px 0, calc(100% - 7px) 0, 100% 7px, 100% calc(100% - 7px), calc(100% - 7px) 100%, 7px 100%, 0 calc(100% - 7px), 0 7px);
  border: 1px solid var(--vm-launch-border);
  background:
    radial-gradient(circle at 50% 22%, rgba(126, 65, 25, 0.11), transparent 48%),
    linear-gradient(180deg, rgba(12, 13, 15, 0.91), rgba(6, 7, 9, 0.96));
  box-shadow:
    inset 0 0 0 1px rgba(10, 6, 3, 0.92),
    inset 0 0 28px rgba(0, 0, 0, 0.58),
    0 12px 25px rgba(0, 0, 0, 0.28);
  opacity: 0;
  transform: translateY(12px);
  animation: launchCardEnter 430ms cubic-bezier(0.2, 0.7, 0.2, 1) forwards;
}

.launch-countdown__unit:nth-child(1) { animation-delay: 540ms; }
.launch-countdown__unit:nth-child(2) { animation-delay: 610ms; }
.launch-countdown__unit:nth-child(3) { animation-delay: 680ms; }
.launch-countdown__unit:nth-child(4) { animation-delay: 750ms; }

.launch-countdown__unit::before {
  content: "";
  position: absolute;
  inset: 5px;
  clip-path: inherit;
  border: 1px solid rgba(176, 124, 58, 0.19);
  pointer-events: none;
}

.launch-countdown__unit::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -4px;
  width: 7px;
  height: 7px;
  border: 1px solid rgba(210, 155, 74, 0.65);
  background: #08090a;
  transform: translateX(-50%) rotate(45deg);
}

.launch-countdown__unit strong {
  width: 100%;
  min-width: 0;
  color: #f2c46e;
  font-family: var(--vm-display, "Velmora Display", Georgia, serif);
  font-size: clamp(45px, 4.3vw, 69px);
  font-weight: 400;
  font-variant-numeric: tabular-nums;
  letter-spacing: 0.025em;
  line-height: 0.9;
  text-align: center;
  text-shadow:
    0 2px 0 #3d1707,
    0 0 11px rgba(231, 116, 30, 0.46),
    0 4px 12px rgba(0, 0, 0, 0.92);
}

.launch-countdown__unit.is-wide strong {
  font-size: clamp(38px, 3.6vw, 58px);
  letter-spacing: 0;
}

.launch-countdown__unit[data-changing="true"] strong {
  animation: launchDigitChange 240ms ease-out;
}

.launch-countdown__unit span {
  margin-top: clamp(9px, 1.2vh, 14px);
  color: #d9bd86;
  font-family: var(--vm-display, "Velmora Display", Georgia, serif);
  font-size: clamp(12px, 1vw, 16px);
  letter-spacing: 0.09em;
  line-height: 1;
}

.launch-intro__cta {
  position: relative;
  width: min(92%, 500px);
  min-height: clamp(57px, 7vh, 72px);
  margin-top: clamp(21px, 2.8vh, 31px);
  padding: 9px 31px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  clip-path: polygon(10px 0, calc(100% - 10px) 0, 100% 10px, 100% calc(100% - 10px), calc(100% - 10px) 100%, 10px 100%, 0 calc(100% - 10px), 0 10px);
  border: 1px solid rgba(221, 160, 75, 0.78);
  color: #f3d79c;
  background:
    linear-gradient(115deg, transparent 30%, rgba(255, 212, 132, 0.08) 47%, transparent 64%),
    linear-gradient(180deg, rgba(131, 31, 22, 0.98), rgba(71, 12, 10, 0.99));
  background-size: 230% 100%, 100% 100%;
  background-position: 120% 0, 0 0;
  box-shadow:
    inset 0 0 0 3px rgba(12, 4, 3, 0.55),
    inset 0 0 27px rgba(228, 65, 33, 0.27),
    0 8px 23px rgba(0, 0, 0, 0.45),
    0 0 14px rgba(123, 27, 16, 0.28);
  font-family: var(--vm-display, "Velmora Display", Georgia, serif);
  font-size: clamp(19px, 1.8vw, 30px);
  font-weight: 400;
  letter-spacing: 0.04em;
  line-height: 1.1;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.9);
  opacity: 0;
  transform: translateY(12px);
  animation: launchCtaEnter 460ms cubic-bezier(0.2, 0.72, 0.2, 1) 850ms forwards;
  transition:
    background-color 190ms ease,
    background-position 420ms ease,
    border-color 190ms ease,
    box-shadow 190ms ease,
    color 190ms ease,
    transform 190ms ease;
}

.launch-intro__cta::before {
  content: "";
  position: absolute;
  inset: 5px;
  clip-path: inherit;
  border: 1px solid rgba(240, 181, 91, 0.26);
  pointer-events: none;
}

.launch-intro__cta::after {
  content: "";
  position: absolute;
  top: -4px;
  left: 50%;
  width: 8px;
  height: 8px;
  border: 1px solid rgba(237, 176, 83, 0.8);
  background: #6b170f;
  transform: translateX(-50%) rotate(45deg);
}

.launch-intro__cta:hover {
  color: #ffe9b9;
  border-color: #edb55e;
  background-position: -120% 0, 0 0;
  box-shadow:
    inset 0 0 0 3px rgba(12, 4, 3, 0.58),
    inset 0 0 32px rgba(238, 74, 36, 0.36),
    0 10px 25px rgba(0, 0, 0, 0.5),
    0 0 22px rgba(190, 61, 24, 0.32);
  transform: translateY(-2px);
}

.launch-intro__cta:active {
  transform: translateY(0);
  filter: brightness(0.94);
}

.launch-intro__cta:focus-visible {
  outline: 2px solid #ffe1a0;
  outline-offset: 5px;
}

.launch-intro__message {
  margin: clamp(12px, 1.7vh, 18px) 0 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  color: #d6c8ae;
  font-family: var(--vm-display, "Velmora Display", Georgia, serif);
  font-size: clamp(12px, 1.16vw, 18px);
  letter-spacing: 0.025em;
  line-height: 1.25;
  text-shadow: 0 2px 5px #000;
  opacity: 0;
  transform: translateY(8px);
  animation: launchElementEnter 380ms ease-out 980ms forwards;
}

.launch-intro__message span {
  width: clamp(28px, 4vw, 68px);
  opacity: 0.72;
}

.launch-intro.is-open .launch-intro__cta {
  animation:
    launchCtaEnter 460ms cubic-bezier(0.2, 0.72, 0.2, 1) 850ms forwards,
    launchOpenGlow 2.5s ease-in-out 1.5s 1;
}

.launch-intro-noscript {
  position: relative;
  z-index: 3;
  margin: 0;
  padding: 10px 18px;
  color: #d9d0c1;
  background: #090a0b;
  border-bottom: 1px solid rgba(198, 151, 75, 0.45);
  font: 14px/1.5 "Segoe UI", sans-serif;
  text-align: center;
}

.launch-intro-noscript a {
  margin-left: 8px;
  color: #f0cf92;
  text-decoration: underline;
}

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

@keyframes launchIntroLeave {
  from { opacity: 1; }
  to { opacity: 0; visibility: hidden; }
}

@keyframes launchSceneDrift {
  from {
    transform:
      translate3d(var(--launch-parallax-bg-x), var(--launch-parallax-bg-y), 0)
      scale(1.02);
  }
  to {
    transform:
      translate3d(var(--launch-parallax-bg-x), var(--launch-parallax-bg-y), 0)
      scale(1.06);
  }
}

@keyframes launchFogFar {
  from {
    transform:
      translate3d(var(--launch-parallax-fog-x), var(--launch-parallax-fog-y), 0)
      translateX(-2%);
    opacity: 0.15;
  }
  to {
    transform:
      translate3d(var(--launch-parallax-fog-x), var(--launch-parallax-fog-y), 0)
      translateX(3%);
    opacity: 0.24;
  }
}

@keyframes launchFogNear {
  from {
    transform:
      translate3d(var(--launch-parallax-front-x), var(--launch-parallax-front-y), 0)
      translateX(2%);
  }
  to {
    transform:
      translate3d(var(--launch-parallax-front-x), var(--launch-parallax-front-y), 0)
      translateX(-3%);
  }
}

@keyframes launchEmberRise {
  0% { opacity: 0; transform: translate3d(0, 0, 0) scale(0.7); }
  14% { opacity: 0.78; }
  72% { opacity: 0.36; }
  100% { opacity: 0; transform: translate3d(var(--ember-shift), -24vh, 0) scale(0.18); }
}

@keyframes launchBrandEnter {
  from { opacity: 0; transform: translateY(13px) scale(0.96); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

@keyframes launchBrandShine {
  0%, 72% { transform: translateX(-125%); opacity: 0; }
  78% { opacity: 0.72; }
  90% { transform: translateX(125%); opacity: 0.18; }
  100% { transform: translateX(125%); opacity: 0; }
}

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

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

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

@keyframes launchDigitChange {
  0% { opacity: 0.42; transform: translateY(-5px) scale(0.98); }
  100% { opacity: 1; transform: translateY(0) scale(1); }
}

@keyframes launchOpenGlow {
  0%, 100% { filter: brightness(1); }
  50% { filter: brightness(1.15); box-shadow: 0 0 28px rgba(219, 111, 42, 0.42); }
}

@media (max-height: 830px) and (min-width: 721px) {
  .launch-intro__content {
    padding-block: 18px;
    transform: translateY(-0.6vh);
  }

  .launch-intro__brand {
    width: clamp(380px, 35vw, 505px);
    margin-bottom: -34px;
  }

  .launch-intro__server-type { font-size: 14px; }
  .launch-intro h1 { margin-top: 12px; font-size: clamp(21px, 1.8vw, 27px); }
  .launch-countdown { width: min(100%, 590px); margin-top: 13px; gap: 10px; }
  .launch-countdown__unit { height: 94px; }
  .launch-countdown__unit strong { font-size: clamp(41px, 3.7vw, 54px); }
  .launch-countdown__unit span { margin-top: 8px; font-size: 12px; }
  .launch-intro__cta { width: min(88%, 420px); min-height: 54px; margin-top: 17px; font-size: 22px; }
  .launch-intro__message { margin-top: 10px; font-size: 13px; }
}

@media (max-width: 720px) {
  .launch-intro {
    overflow-y: auto;
    overscroll-behavior: contain;
  }

  .launch-intro__scene {
    inset: -2%;
  }

  .launch-intro__scene img {
    object-position: 57% 50%;
    filter: saturate(0.9) contrast(1.02) brightness(0.69);
  }

  .launch-intro__visual::after {
    background:
      linear-gradient(180deg, rgba(0, 0, 0, 0.04), rgba(2, 3, 4, 0.16) 44%, rgba(0, 0, 0, 0.56)),
      radial-gradient(circle at 50% 38%, rgba(0, 0, 0, 0.04), rgba(0, 0, 0, 0.39) 85%);
  }

  .launch-intro__vignette {
    box-shadow: inset 0 0 72px rgba(0, 0, 0, 0.65);
  }

  .launch-intro__fog { opacity: 0.1; }
  .launch-intro__embers i:nth-child(n + 7) { display: none; }

  .launch-intro__frame {
    inset: 6px;
  }

  .launch-intro__frame::before,
  .launch-intro__frame::after {
    width: 38vw;
  }

  .launch-intro__frame i {
    width: 25px;
    height: 25px;
  }

  .launch-intro__content {
    width: min(calc(100% - 40px), 430px);
    height: auto;
    min-height: 100dvh;
    padding: 24px 0 22px;
    transform: none;
  }

  .launch-intro__brand {
    width: min(92vw, 390px);
    margin-bottom: -27px;
  }

  .launch-intro__server-type {
    gap: 10px;
    font-size: clamp(11px, 3.4vw, 14px);
    letter-spacing: 0.08em;
  }

  .launch-intro__server-type span {
    width: clamp(24px, 10vw, 42px);
  }

  .launch-intro h1 {
    margin-top: 16px;
    font-size: clamp(18px, 5.5vw, 23px);
    letter-spacing: 0.035em;
  }

  .launch-countdown {
    width: min(100%, 330px);
    margin-top: 15px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }

  .launch-countdown__unit {
    height: 88px;
  }

  .launch-countdown__unit strong {
    font-size: clamp(38px, 12vw, 50px);
  }

  .launch-countdown__unit.is-wide strong {
    font-size: clamp(33px, 10.5vw, 43px);
  }

  .launch-countdown__unit span {
    margin-top: 7px;
    font-size: 11px;
  }

  .launch-intro__cta {
    width: min(100%, 350px);
    min-height: 58px;
    margin-top: 18px;
    padding-inline: 20px;
    font-size: clamp(19px, 6vw, 24px);
  }

  .launch-intro__message {
    gap: 10px;
    margin-top: 12px;
    font-family: var(--vm-sans, "Velmora Sans", "Segoe UI", sans-serif);
    font-size: clamp(11px, 3.4vw, 13px);
  }

  .launch-intro__message span {
    display: none;
  }
}

@media (max-width: 390px) and (max-height: 730px) {
  .launch-intro__content { padding-block: 16px; }
  .launch-intro__brand { width: min(82vw, 320px); margin-bottom: -24px; }
  .launch-intro h1 { margin-top: 11px; }
  .launch-countdown { margin-top: 11px; }
  .launch-countdown__unit { height: 78px; }
  .launch-countdown__unit strong { font-size: 37px; }
  .launch-countdown__unit span { margin-top: 5px; }
  .launch-intro__cta { min-height: 52px; margin-top: 13px; }
  .launch-intro__message { margin-top: 8px; }
}

@media (hover: none), (pointer: coarse) {
  .launch-intro__cta:hover {
    color: #f3d79c;
    border-color: rgba(221, 160, 75, 0.78);
    background-position: 120% 0, 0 0;
    transform: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  .launch-intro,
  .launch-intro *,
  .launch-intro *::before,
  .launch-intro *::after {
    scroll-behavior: auto !important;
    animation-duration: 1ms !important;
    animation-delay: 0ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 1ms !important;
  }

  .launch-intro {
    animation: none;
  }

  .launch-intro__scene,
  .launch-intro__fog,
  .launch-intro__embers {
    transform: none !important;
  }

  .launch-intro__fog,
  .launch-intro__embers {
    display: none;
  }

  .launch-intro__brand,
  .launch-intro__server-type,
  .launch-intro h1,
  .launch-countdown__unit,
  .launch-intro__cta,
  .launch-intro__message {
    opacity: 1;
    transform: none;
  }
}
