:root {
  --text-main: #f2e7d3;
  --text-dim: rgba(242, 231, 211, 0.72);
  --damage-shadow: rgba(0, 0, 0, 0.75);
  --coming-glow: rgba(133, 9, 18, 0.24);
  --sky-top: #05070b;
  --sky-mid: #0d121a;
  --sky-bottom: #121117;
  --haze-top: rgba(123, 137, 162, 0.12);
  --haze-bottom: rgba(7, 8, 9, 0.92);
  --sun-core: rgba(244, 229, 192, 0.22);
  --sun-edge: rgba(191, 149, 92, 0.08);
  --sun-face: 0;
  --sun-accent: rgba(241, 233, 203, 0.2);
  --ruins-opacity: 0.46;
  --mountain-far-top: #1a2129;
  --mountain-far-bottom: #090b0f;
  --mountain-mid-top: #11161c;
  --mountain-mid-bottom: #050608;
  --water-top: rgba(20, 25, 34, 0.7);
  --water-bottom: rgba(3, 5, 7, 0.98);
  --water-sheen: rgba(115, 133, 154, 0.2);
  --water-glow: rgba(73, 93, 124, 0.22);
  --fog-bright: rgba(223, 231, 237, 0.14);
  --fog-soft: rgba(181, 193, 203, 0.09);
  --brand-shadow: rgba(0, 0, 0, 0.7);
  --impact-white: rgba(214, 228, 255, 0.22);
  --impact-blood: rgba(123, 6, 14, 0.24);
  --cursor-fallback: crosshair;
}

* {
  box-sizing: border-box;
}

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

body {
  background:
    radial-gradient(circle at 18% 16%, rgba(94, 108, 132, 0.12), transparent 32%),
    radial-gradient(circle at 76% 18%, rgba(69, 79, 102, 0.09), transparent 28%),
    linear-gradient(180deg, var(--sky-top) 0%, var(--sky-mid) 38%, var(--sky-bottom) 100%);
  color: var(--text-main);
  font-family: "Cormorant Garamond", Georgia, serif;
  overflow: hidden;
  touch-action: manipulation;
}

body::before,
body::after {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
}

body::before {
  background:
    radial-gradient(circle at 52% 8%, var(--haze-top), transparent 22%),
    linear-gradient(180deg, rgba(6, 7, 10, 0) 0%, rgba(5, 6, 8, 0.18) 38%, rgba(0, 0, 0, 0.44) 100%);
  z-index: 1;
}

body::after {
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.014) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.012) 1px, transparent 1px);
  background-size: 4px 4px;
  opacity: 0.08;
  mix-blend-mode: soft-light;
  z-index: 2;
}

body[data-phase="dawn"] {
  --text-main: #fdf0db;
  --text-dim: rgba(253, 240, 219, 0.82);
  --coming-glow: rgba(255, 146, 181, 0.18);
  --sky-top: #8fc4ff;
  --sky-mid: #ffb0c2;
  --sky-bottom: #ffd7b2;
  --haze-top: rgba(255, 242, 197, 0.44);
  --haze-bottom: rgba(205, 164, 161, 0.25);
  --sun-core: rgba(255, 232, 135, 0.92);
  --sun-edge: rgba(255, 155, 106, 0.36);
  --sun-face: 1;
  --sun-accent: rgba(255, 243, 192, 0.42);
  --ruins-opacity: 0.18;
  --mountain-far-top: #e9978f;
  --mountain-far-bottom: #7d4d57;
  --mountain-mid-top: #845d83;
  --mountain-mid-bottom: #39273e;
  --water-top: rgba(255, 197, 183, 0.6);
  --water-bottom: rgba(118, 83, 122, 0.9);
  --water-sheen: rgba(255, 243, 197, 0.44);
  --water-glow: rgba(255, 191, 178, 0.25);
  --fog-bright: rgba(255, 239, 231, 0.22);
  --fog-soft: rgba(255, 213, 217, 0.18);
  --impact-white: rgba(255, 253, 236, 0.26);
  --impact-blood: rgba(255, 132, 188, 0.18);
}

body[data-phase="noon"] {
  --text-main: #efe5cf;
  --text-dim: rgba(239, 229, 207, 0.76);
  --coming-glow: rgba(128, 165, 217, 0.16);
  --sky-top: #9fb6d4;
  --sky-mid: #6e879f;
  --sky-bottom: #37475b;
  --haze-top: rgba(238, 246, 255, 0.3);
  --haze-bottom: rgba(40, 52, 70, 0.18);
  --sun-core: rgba(248, 243, 226, 0.56);
  --sun-edge: rgba(194, 215, 241, 0.24);
  --sun-face: 0;
  --sun-accent: rgba(255, 255, 255, 0.28);
  --ruins-opacity: 0.28;
  --mountain-far-top: #60728a;
  --mountain-far-bottom: #263646;
  --mountain-mid-top: #3f4c5f;
  --mountain-mid-bottom: #16202a;
  --water-top: rgba(92, 121, 154, 0.52);
  --water-bottom: rgba(14, 22, 30, 0.92);
  --water-sheen: rgba(211, 228, 255, 0.34);
  --water-glow: rgba(128, 166, 204, 0.24);
  --fog-bright: rgba(239, 245, 250, 0.18);
  --fog-soft: rgba(196, 209, 223, 0.12);
  --impact-white: rgba(237, 245, 255, 0.22);
  --impact-blood: rgba(111, 132, 170, 0.18);
}

body[data-phase="dusk"] {
  --text-main: #f6ead7;
  --text-dim: rgba(246, 234, 215, 0.72);
  --coming-glow: rgba(145, 15, 26, 0.28);
  --sky-top: #2d2032;
  --sky-mid: #7a3840;
  --sky-bottom: #150d13;
  --haze-top: rgba(255, 179, 132, 0.24);
  --haze-bottom: rgba(53, 15, 17, 0.4);
  --sun-core: rgba(255, 197, 123, 0.5);
  --sun-edge: rgba(197, 68, 49, 0.24);
  --sun-face: 0;
  --sun-accent: rgba(255, 222, 173, 0.28);
  --ruins-opacity: 0.36;
  --mountain-far-top: #6c3a40;
  --mountain-far-bottom: #1c1117;
  --mountain-mid-top: #391a21;
  --mountain-mid-bottom: #09070a;
  --water-top: rgba(112, 49, 45, 0.52);
  --water-bottom: rgba(14, 7, 9, 0.94);
  --water-sheen: rgba(255, 184, 132, 0.24);
  --water-glow: rgba(173, 62, 41, 0.22);
  --fog-bright: rgba(246, 220, 210, 0.18);
  --fog-soft: rgba(193, 145, 137, 0.11);
  --impact-white: rgba(255, 230, 215, 0.2);
  --impact-blood: rgba(135, 12, 18, 0.26);
}

body[data-phase="night"] {
  --text-main: #f2e7d3;
  --text-dim: rgba(242, 231, 211, 0.72);
  --coming-glow: rgba(133, 9, 18, 0.24);
  --sky-top: #05070b;
  --sky-mid: #0d121a;
  --sky-bottom: #121117;
  --haze-top: rgba(123, 137, 162, 0.12);
  --haze-bottom: rgba(7, 8, 9, 0.92);
  --sun-core: rgba(244, 229, 192, 0.2);
  --sun-edge: rgba(191, 149, 92, 0.07);
  --sun-face: 0;
  --sun-accent: rgba(241, 233, 203, 0.16);
  --ruins-opacity: 0.46;
  --mountain-far-top: #1a2129;
  --mountain-far-bottom: #090b0f;
  --mountain-mid-top: #11161c;
  --mountain-mid-bottom: #050608;
  --water-top: rgba(20, 25, 34, 0.7);
  --water-bottom: rgba(3, 5, 7, 0.98);
  --water-sheen: rgba(115, 133, 154, 0.2);
  --water-glow: rgba(73, 93, 124, 0.22);
  --fog-bright: rgba(223, 231, 237, 0.14);
  --fog-soft: rgba(181, 193, 203, 0.09);
  --impact-white: rgba(214, 228, 255, 0.22);
  --impact-blood: rgba(123, 6, 14, 0.24);
}

@media (pointer: fine) {
  body {
    cursor: url("assets/sword_cursor.cur"), var(--cursor-fallback);
  }
}

.site-shell {
  position: relative;
  min-height: 100vh;
  isolation: isolate;
  overflow: hidden;
}

.site-shell::before,
.site-shell::after {
  content: "";
  position: absolute;
  inset: -8%;
  pointer-events: none;
}

.site-shell::before {
  background:
    radial-gradient(circle at 50% 12%, var(--sun-accent), transparent 16%),
    radial-gradient(circle at 50% 85%, rgba(0, 0, 0, 0.84), transparent 42%);
  z-index: 0;
}

.site-shell::after {
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.04) 0%, transparent 24%, rgba(0, 0, 0, 0.14) 52%, rgba(0, 0, 0, 0.72) 100%),
    radial-gradient(circle at 50% 64%, var(--coming-glow), transparent 26%);
  z-index: 5;
}

.rain-canvas,
.lightning-flash,
.impact-wash,
.interaction-layer,
.atmosphere,
.hero {
  position: absolute;
  inset: 0;
}

.rain-canvas {
  z-index: 7;
  pointer-events: none;
}

.lightning-flash {
  opacity: 0;
  background:
    radial-gradient(circle at 42% 18%, rgba(219, 233, 255, 0.44), transparent 18%),
    linear-gradient(180deg, rgba(224, 235, 255, 0.18), rgba(224, 235, 255, 0));
  mix-blend-mode: screen;
  transition: opacity 0.12s ease-out;
  z-index: 8;
  pointer-events: none;
}

.lightning-flash.active {
  opacity: 1;
}

.impact-wash {
  --impact-x: 50%;
  --impact-y: 50%;
  opacity: 0;
  background:
    radial-gradient(circle at var(--impact-x) var(--impact-y), var(--impact-white), transparent 12%),
    radial-gradient(circle at var(--impact-x) var(--impact-y), var(--impact-blood), transparent 24%),
    radial-gradient(circle at var(--impact-x) var(--impact-y), rgba(255, 255, 255, 0.08), transparent 38%);
  transition: opacity 0.18s ease-out;
  mix-blend-mode: screen;
  z-index: 9;
  pointer-events: none;
}

.impact-wash.active {
  opacity: 1;
}

.atmosphere {
  z-index: 3;
  pointer-events: none;
}

.sky-disc {
  position: absolute;
  top: clamp(2.4rem, 7vh, 4.8rem);
  right: clamp(1.5rem, 9vw, 8rem);
  width: clamp(6.4rem, 15vw, 11rem);
  aspect-ratio: 1;
  border-radius: 50%;
  background:
    center / contain no-repeat url("assets/moon-night.svg"),
    radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0));
  box-shadow:
    0 0 24px rgba(221, 231, 255, 0.12),
    0 0 72px rgba(147, 162, 196, 0.1);
  opacity: 0.9;
  transform: translateZ(0);
  animation: discFloat 12s ease-in-out infinite alternate;
}

.sky-disc::before {
  content: "";
  position: absolute;
  inset: -12%;
  border-radius: 50%;
  border: 1px solid rgba(235, 241, 255, 0.08);
  opacity: 0.65;
}

.sky-disc__face {
  display: none;
}

body[data-phase="dawn"] .sky-disc {
  background:
    center / contain no-repeat url("assets/sun-dawn.svg"),
    radial-gradient(circle at 50% 50%, rgba(255, 214, 124, 0.16), rgba(255, 255, 255, 0));
  box-shadow:
    0 0 28px rgba(255, 177, 109, 0.2),
    0 0 86px rgba(255, 169, 121, 0.16);
}

body[data-phase="noon"] .sky-disc {
  background:
    radial-gradient(circle at 38% 34%, rgba(255, 255, 255, 0.62), transparent 16%),
    radial-gradient(circle at 50% 50%, rgba(245, 245, 240, 0.9) 0%, rgba(213, 220, 231, 0.76) 38%, rgba(168, 181, 198, 0.18) 68%, rgba(255, 255, 255, 0) 78%);
  box-shadow:
    0 0 24px rgba(236, 242, 255, 0.14),
    0 0 56px rgba(176, 196, 226, 0.12);
}

body[data-phase="dusk"] .sky-disc {
  background:
    center / contain no-repeat url("assets/moon-night.svg"),
    radial-gradient(circle at 50% 50%, rgba(255, 184, 132, 0.08), rgba(255, 255, 255, 0));
  box-shadow:
    0 0 22px rgba(255, 199, 150, 0.14),
    0 0 58px rgba(200, 110, 85, 0.1);
}

.sky-eye,
.sky-mouth {
  position: absolute;
  background: rgba(96, 58, 30, 0.72);
  box-shadow: 0 0 0 2px rgba(255, 236, 181, 0.1);
}

.sky-eye {
  top: 36%;
  width: 12%;
  height: 12%;
  border-radius: 50%;
}

.sky-eye--left {
  left: 32%;
}

.sky-eye--right {
  right: 32%;
}

.sky-mouth {
  left: 32%;
  right: 32%;
  bottom: 27%;
  height: 9%;
  border-radius: 0 0 999px 999px;
}

.backdrop,
.mountain-range,
.water-scape,
.fog,
.ground-mist {
  position: absolute;
}

.backdrop--ruins {
  inset: auto -6vw 24vh -6vw;
  height: 32vh;
  opacity: var(--ruins-opacity);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1800 600' preserveAspectRatio='none'%3E%3Cg fill='%23080a0d'%3E%3Cpath d='M0 600h210l24-148 38-34 16-138 52 16 24-98 50 18 18 122 52 48 22 214H0Z'/%3E%3Cpath d='M256 600h248l15-176 31-24 17-124 38 27 25-96 54 15 16 134 49 42 22 202H256Z'/%3E%3Cpath d='M522 600h310l14-186 47-26 20-160 44 22 28-116 67 20 21 156 58 48 31 242H522Z'/%3E%3Cpath d='M870 600h242l20-147 36-24 14-144 32 17 24-98 48 15 18 126 45 38 24 217H870Z'/%3E%3Cpath d='M1110 600h286l18-193 34-28 16-136 42 21 25-108 56 19 17 141 46 43 32 241H1110Z'/%3E%3Cpath d='M1374 600h426l-14-160-62-43-22-148-61 30-34-122-76 23-22 159-50 45-26 216Z'/%3E%3C/g%3E%3C/svg%3E");
  background-size: cover;
  background-repeat: no-repeat;
  filter: blur(1px) saturate(0.7);
}

.backdrop--vista {
  inset: auto 0 13vh 0;
  height: 43vh;
  background: center bottom / cover no-repeat url("assets/fantasy-vista.svg");
  opacity: 0.54;
  mix-blend-mode: screen;
  filter: brightness(0.68) saturate(0.82) blur(0.2px);
}

body[data-phase="dawn"] .backdrop--vista {
  opacity: 0.42;
  filter: brightness(1.08) saturate(1.08) hue-rotate(-36deg);
}

body[data-phase="noon"] .backdrop--vista {
  opacity: 0.36;
  filter: brightness(0.92) saturate(0.88) hue-rotate(-10deg);
}

body[data-phase="dusk"] .backdrop--vista {
  opacity: 0.46;
  filter: brightness(0.82) saturate(1) hue-rotate(-28deg);
}

body[data-phase="night"] .backdrop--vista {
  opacity: 0.58;
  filter: brightness(0.64) saturate(0.82);
}

.backdrop--branches {
  inset: 0;
}

.backdrop--branches::before,
.backdrop--branches::after {
  content: "";
  position: absolute;
  top: -4vh;
  width: min(40vw, 38rem);
  height: 48vh;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 700 700'%3E%3Cg fill='none' stroke='%2308090b' stroke-width='16' stroke-linecap='round' stroke-linejoin='round' opacity='.9'%3E%3Cpath d='M148 632c44-92 61-181 60-267 0-59-8-124-27-197'/%3E%3Cpath d='M182 225c48-34 95-71 139-115'/%3E%3Cpath d='M174 269c57 7 111 24 162 52'/%3E%3Cpath d='M202 343c56-12 108-34 158-67'/%3E%3Cpath d='M213 390c40 38 91 68 151 90'/%3E%3Cpath d='M223 461c46-7 91-24 136-50'/%3E%3Cpath d='M240 535c34 25 73 43 118 53'/%3E%3Cpath d='M194 162c17-47 42-93 77-136'/%3E%3Cpath d='M166 306c-36-29-71-63-105-101'/%3E%3Cpath d='M192 418c-41 11-82 14-123 8'/%3E%3Cpath d='M229 515c-34 37-69 66-106 88'/%3E%3C/g%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-size: contain;
  opacity: 0.18;
  filter: blur(1px);
}

.backdrop--branches::before {
  left: -7vw;
}

.backdrop--branches::after {
  right: -7vw;
  transform: scaleX(-1);
}

.mountain-range {
  left: -5vw;
  width: 110vw;
  transform: translateZ(0);
}

.mountain-range--far {
  bottom: 19vh;
  height: 33vh;
  background:
    linear-gradient(180deg, var(--mountain-far-top), var(--mountain-far-bottom));
  clip-path: polygon(0 100%, 0 78%, 8% 68%, 14% 74%, 19% 58%, 28% 76%, 36% 48%, 43% 74%, 52% 60%, 61% 76%, 70% 50%, 79% 70%, 88% 58%, 94% 76%, 100% 65%, 100% 100%);
  opacity: 0.52;
  filter: blur(1.4px);
  animation: mountainDrift 24s ease-in-out infinite alternate;
}

.mountain-range--mid {
  bottom: 12vh;
  height: 41vh;
  background:
    linear-gradient(180deg, var(--mountain-mid-top), var(--mountain-mid-bottom));
  clip-path: polygon(0 100%, 0 70%, 7% 60%, 13% 72%, 22% 44%, 30% 68%, 38% 36%, 46% 66%, 55% 40%, 62% 74%, 71% 50%, 79% 70%, 88% 43%, 95% 68%, 100% 55%, 100% 100%);
  box-shadow: 0 -26px 50px rgba(0, 0, 0, 0.28);
  opacity: 0.7;
  animation: mountainDriftReverse 18s ease-in-out infinite alternate;
}

.water-scape {
  left: -2vw;
  right: -2vw;
  bottom: -1vh;
  height: 22vh;
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 0%, var(--water-glow), transparent 40%),
    linear-gradient(180deg, var(--water-top) 0%, var(--water-bottom) 100%);
  z-index: 4;
}

.water-scape::before,
.water-scape::after {
  content: "";
  position: absolute;
  inset: 0;
}

.water-scape::before {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.02), transparent 34%),
    repeating-linear-gradient(
      180deg,
      rgba(255, 255, 255, 0.02) 0 1px,
      rgba(255, 255, 255, 0) 1px 8px
    );
  opacity: 0.36;
  mix-blend-mode: screen;
}

.water-scape::after {
  top: -12%;
  background:
    radial-gradient(ellipse at 50% 0%, rgba(255, 255, 255, 0.14), transparent 46%),
    linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.42) 100%);
}

.water-sheen {
  position: absolute;
  left: -15%;
  top: -12%;
  width: 130%;
  height: 44%;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0), var(--water-sheen), rgba(255, 255, 255, 0));
  opacity: 0.55;
  filter: blur(20px);
  animation: sheenSweep 10s ease-in-out infinite;
}

.water-wave {
  position: absolute;
  left: -10%;
  width: 120%;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.08);
  opacity: 0.24;
  filter: blur(0.8px);
}

.water-wave--one {
  bottom: 46%;
  height: 40%;
  animation: waveMotion 7s linear infinite;
}

.water-wave--two {
  bottom: 24%;
  height: 44%;
  animation: waveMotion 8.5s linear infinite reverse;
}

.water-wave--three {
  bottom: 8%;
  height: 54%;
  animation: waveMotion 10s linear infinite;
}

.fog {
  left: -12vw;
  width: 124vw;
  border-radius: 50%;
  filter: blur(36px);
  mix-blend-mode: screen;
}

.fog--far {
  bottom: 28vh;
  height: 28vh;
  background:
    radial-gradient(circle at 18% 60%, var(--fog-soft), transparent 24%),
    radial-gradient(circle at 50% 45%, var(--fog-bright), transparent 26%),
    radial-gradient(circle at 78% 58%, var(--fog-soft), transparent 24%);
  animation: driftLeft 34s linear infinite alternate;
}

.fog--mid {
  bottom: 15vh;
  height: 23vh;
  background:
    radial-gradient(circle at 15% 45%, var(--fog-soft), transparent 18%),
    radial-gradient(circle at 46% 55%, var(--fog-bright), transparent 21%),
    radial-gradient(circle at 79% 52%, var(--fog-soft), transparent 20%);
  animation: driftRight 24s linear infinite alternate;
}

.fog--front {
  bottom: -4vh;
  height: 22vh;
  background:
    radial-gradient(circle at 24% 40%, var(--fog-soft), transparent 17%),
    radial-gradient(circle at 55% 45%, var(--fog-bright), transparent 18%),
    radial-gradient(circle at 82% 40%, var(--fog-soft), transparent 18%);
  animation: driftLeft 18s linear infinite alternate;
}

.ground-mist {
  inset: auto 0 -8vh 0;
  height: 34vh;
  background:
    radial-gradient(circle at 50% 0%, var(--fog-bright), transparent 36%),
    linear-gradient(180deg, rgba(6, 8, 10, 0) 0%, rgba(4, 5, 6, 0.75) 52%, rgba(2, 3, 4, 0.96) 100%);
  z-index: 6;
}

.hero {
  z-index: 12;
}

.hero.is-struck {
  animation: impactJolt 260ms ease-out;
}

.brand-lockup {
  --shine-x: 50%;
  --shine-y: 46%;
  --shine-opacity: 0;
  --sheen-angle: 132deg;
  --emblem-rotate-x: 0deg;
  --emblem-rotate-y: 0deg;
  --wordmark-rotate-x: 0deg;
  --wordmark-rotate-y: 0deg;
  --brand-lift: 0px;
  position: absolute;
  top: clamp(2.7rem, 9.5vh, 6.5rem);
  left: clamp(1.25rem, 7vw, 7rem);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: min(42vw, 33rem);
  perspective: 1100px;
  transform-style: preserve-3d;
  text-shadow: 0 14px 34px var(--brand-shadow);
  z-index: 15;
}

.brand-lockup.is-lit {
  --brand-lift: -2px;
}

.brand-surface {
  position: relative;
  display: block;
  max-width: 100%;
  transform-style: preserve-3d;
  will-change: transform, filter;
  transition:
    transform 180ms cubic-bezier(0.16, 0.78, 0.22, 1),
    filter 180ms ease-out;
}

.brand-surface::after {
  content: "";
  position: absolute;
  inset: -6%;
  display: none;
  pointer-events: none;
  opacity: var(--shine-opacity);
  background:
    radial-gradient(
      circle at var(--shine-x) var(--shine-y),
      rgba(255, 250, 235, 0.78),
      rgba(240, 195, 112, 0.28) 14%,
      rgba(255, 255, 255, 0) 42%
    ),
    linear-gradient(
      var(--sheen-angle),
      rgba(255, 255, 255, 0) 28%,
      rgba(255, 241, 208, 0.22) 48%,
      rgba(255, 255, 255, 0) 68%
    );
  mix-blend-mode: screen;
  filter: blur(1px);
  transition:
    opacity 140ms ease-out,
    transform 140ms ease-out;
}

@supports ((-webkit-mask-image: none) or (mask-image: none)) {
  .brand-surface::after {
    display: block;
  }

  .brand-emblem-shell::after {
    -webkit-mask: url("assets/lost-dogma-emblem.png?v=20260315i") center / contain no-repeat;
    mask: url("assets/lost-dogma-emblem.png?v=20260315i") center / contain no-repeat;
  }
}

.brand-emblem-shell {
  width: clamp(7.9rem, 15vw, 12rem);
  transform:
    translate3d(0, var(--brand-lift), 0)
    rotateX(var(--emblem-rotate-x))
    rotateY(var(--emblem-rotate-y));
}

.brand-wordmark-shell {
  display: flex;
  justify-content: flex-start;
  width: 100%;
  margin-top: clamp(0.35rem, 1vw, 1rem);
  margin-left: 0.15rem;
  transform-origin: left center;
  transform:
    translate3d(0, calc(var(--brand-lift) * 0.6), 0)
    rotateX(var(--wordmark-rotate-x))
    rotateY(var(--wordmark-rotate-y));
}

.brand-emblem {
  display: block;
  width: 100%;
  max-width: 100%;
  backface-visibility: hidden;
  transition:
    transform 180ms cubic-bezier(0.16, 0.78, 0.22, 1),
    filter 180ms ease-out;
}

.brand-emblem {
  transform: translateZ(22px);
  filter:
    drop-shadow(0 24px 30px rgba(0, 0, 0, 0.46))
    drop-shadow(0 6px 18px rgba(0, 0, 0, 0.6));
}

.brand-wordmark {
  position: relative;
  display: block;
  isolation: isolate;
  margin: 0;
  width: fit-content;
  max-width: 100%;
  transform: translateZ(18px);
  transform-origin: left center;
  font-family: "Cinzel Decorative", "Cinzel", Georgia, serif;
  font-size: clamp(2.05rem, 3.55vw, 3.72rem);
  font-weight: 700;
  line-height: 0.94;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  white-space: nowrap;
  color: transparent;
  background:
    linear-gradient(180deg, #fbf4e0 0%, #dec38f 19%, #af8952 43%, #674d30 57%, #bc9964 81%, #f2e0b4 100%);
  background-size: 100% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  -webkit-text-stroke: 0.84px rgba(74, 58, 36, 0.82);
  filter:
    drop-shadow(0 12px 20px rgba(0, 0, 0, 0.64))
    drop-shadow(0 3px 10px rgba(184, 152, 101, 0.18));
  transition:
    transform 180ms cubic-bezier(0.16, 0.78, 0.22, 1),
    filter 180ms ease-out;
}

.brand-wordmark::before,
.brand-wordmark::after {
  content: attr(data-text);
  position: absolute;
  inset: 0;
  pointer-events: none;
  white-space: nowrap;
}

.brand-wordmark::before {
  z-index: -1;
  color: rgba(38, 29, 20, 0.42);
  text-shadow:
    0.018em 0.024em 0 rgba(31, 24, 17, 0.38),
    0.026em 0.04em 0 rgba(16, 12, 10, 0.18),
    0 0 22px rgba(255, 223, 164, 0.08);
  filter: blur(0.18px);
  transform: translate3d(0, 0, -2px);
}

.brand-wordmark::after {
  background:
    radial-gradient(
      circle at var(--shine-x) 45%,
      rgba(255, 250, 239, 0.96),
      rgba(244, 212, 148, 0.68) 18%,
      rgba(255, 255, 255, 0) 54%
    ),
    linear-gradient(
      var(--sheen-angle),
      rgba(255, 255, 255, 0) 16%,
      rgba(255, 246, 226, 0.84) 48%,
      rgba(255, 255, 255, 0) 78%
    );
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  mix-blend-mode: screen;
  opacity: 0;
  filter: blur(0.2px);
  transition:
    opacity 140ms ease-out,
    transform 180ms ease-out;
}

.brand-lockup.is-lit .brand-surface::after {
  transform: translate3d(0, 0, 28px);
}

.brand-lockup.is-lit .brand-emblem {
  transform: translateZ(28px) scale(1.012);
  filter:
    brightness(1.08)
    saturate(1.04)
    drop-shadow(0 26px 34px rgba(0, 0, 0, 0.5))
    drop-shadow(0 10px 20px rgba(0, 0, 0, 0.58))
    drop-shadow(0 0 12px rgba(228, 193, 123, 0.14));
}

.brand-lockup.is-lit .brand-wordmark {
  transform: translateZ(22px) scale(1.01);
  filter:
    brightness(1.1)
    saturate(1.05)
    drop-shadow(0 16px 24px rgba(0, 0, 0, 0.66))
    drop-shadow(0 4px 12px rgba(184, 152, 101, 0.22))
    drop-shadow(0 0 10px rgba(250, 232, 198, 0.12));
}

.brand-lockup.is-lit .brand-wordmark::after {
  opacity: calc(var(--shine-opacity) * 0.96);
  transform: translate3d(0, 0, 24px);
}

.brand-studio {
  position: relative;
  margin: 0.55rem 0 0 0.48rem;
  color: var(--text-dim);
  font-family: "Cinzel", Georgia, serif;
  font-size: clamp(0.76rem, 1vw, 0.92rem);
  letter-spacing: 0.6em;
  text-transform: uppercase;
  transform: translateZ(12px);
  transition:
    color 180ms ease-out,
    transform 180ms ease-out,
    letter-spacing 180ms ease-out;
}

.brand-studio::after {
  content: attr(data-text);
  position: absolute;
  inset: 0;
  color: transparent;
  pointer-events: none;
  background:
    radial-gradient(
      circle at var(--shine-x) 45%,
      rgba(255, 249, 234, 0.84),
      rgba(235, 198, 129, 0.28) 18%,
      rgba(255, 255, 255, 0) 56%
    ),
    linear-gradient(
      var(--sheen-angle),
      rgba(255, 255, 255, 0) 16%,
      rgba(255, 245, 223, 0.84) 48%,
      rgba(255, 255, 255, 0) 78%
    );
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  opacity: 0;
  mix-blend-mode: screen;
  filter: blur(0.2px);
  transition:
    opacity 140ms ease-out,
    transform 180ms ease-out;
}

.brand-lockup.is-lit .brand-studio {
  color: rgba(249, 237, 215, 0.92);
  transform: translate3d(0, -1px, 16px);
}

.brand-lockup.is-lit .brand-studio::after {
  opacity: calc(var(--shine-opacity) * 0.88);
  transform: translate3d(0, 0, 20px);
}

.coming-soon-wrap {
  position: absolute;
  left: 56%;
  top: 58%;
  width: min(66vw, 58rem);
  transform: translate(-50%, -50%) scale(0.94);
  opacity: 0;
  filter: blur(22px);
  pointer-events: none;
  text-align: center;
  z-index: 14;
}

.coming-soon-wrap::before {
  content: "";
  position: absolute;
  inset: -18% -10%;
  background:
    radial-gradient(circle at 50% 54%, var(--coming-glow), transparent 36%),
    radial-gradient(circle at 50% 46%, rgba(255, 246, 228, 0.08), transparent 18%);
  opacity: 0;
  transform: scale(0.74);
}

.coming-soon-wrap.is-visible {
  animation: comingSoonReveal 0.26s ease-out forwards;
}

.coming-soon-wrap.is-visible::before {
  animation: auraReveal 0.36s ease-out forwards;
}

.coming-soon-wrap.is-leaving {
  animation: comingSoonFade 0.42s ease-out forwards;
}

.coming-soon {
  margin: 0;
  position: relative;
  font-family: "Cinzel", Georgia, serif;
  font-size: clamp(2.5rem, 7.5vw, 7rem);
  letter-spacing: 0.3em;
  text-indent: 0.3em;
  line-height: 0.98;
  text-transform: uppercase;
  color: #fbf0dc;
  text-shadow:
    0 0 12px rgba(251, 240, 220, 0.12),
    0 0 30px rgba(149, 16, 24, 0.18),
    0 14px 36px rgba(0, 0, 0, 0.9);
}

.coming-soon::before,
.coming-soon::after {
  content: "COMING SOON";
  position: absolute;
  inset: 0;
  text-indent: 0.3em;
  pointer-events: none;
}

.coming-soon::before {
  color: rgba(152, 11, 20, 0.68);
  filter: blur(1px);
  transform: translate(0.02em, 0.05em);
  opacity: 0.2;
}

.coming-soon::after {
  color: rgba(255, 246, 228, 0.22);
  transform: translate(-0.02em, -0.015em);
  opacity: 0.18;
}

.interaction-layer {
  z-index: 16;
  pointer-events: none;
}

.impact-group {
  position: absolute;
  left: 0;
  top: 0;
}

.blood-mark,
.slash-mark,
.candy-burst,
.shard-burst,
.specter,
.damage-float {
  position: absolute;
  left: 0;
  top: 0;
}

.blood-mark {
  width: var(--size, 9rem);
  aspect-ratio: 1;
  transform:
    translate(calc(-50% + var(--offset-x, 0px)), calc(-50% + var(--offset-y, 0px)))
    rotate(var(--rotation, 0deg))
    scale(var(--scale, 1));
  background: center / contain no-repeat url("assets/blood-splatter.svg");
  filter:
    drop-shadow(0 7px 12px rgba(22, 1, 1, 0.24))
    drop-shadow(0 0 4px rgba(72, 0, 0, 0.06));
  transform-origin: center;
  opacity: 0;
  animation:
    splatterAppear 0.22s ease-out forwards,
    splatterFade 2.8s 2.2s linear forwards;
}

.blood-mark--dusk {
  filter:
    hue-rotate(-14deg)
    saturate(1.08)
    drop-shadow(0 7px 12px rgba(22, 1, 1, 0.2))
    drop-shadow(0 0 4px rgba(112, 18, 0, 0.08));
}

.blood-drop {
  position: absolute;
  border-radius: 50%;
  background:
    radial-gradient(circle at 34% 34%, rgba(164, 32, 37, 0.74), rgba(101, 8, 14, 0.94) 56%, rgba(42, 3, 7, 0.98) 100%);
  box-shadow:
    inset -2px -4px 6px rgba(12, 0, 0, 0.34),
    0 0 8px rgba(70, 0, 0, 0.05);
  opacity: 0;
  animation:
    dropletPop 0.18s ease-out forwards,
    splatterFade 2.6s 2.2s linear forwards;
}

.blood-drop::after {
  content: "";
  position: absolute;
  inset: 16%;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 28%, rgba(244, 182, 182, 0.12), transparent 42%);
}

body[data-input-mode="coarse"] .blood-mark {
  filter:
    drop-shadow(0 5px 8px rgba(18, 0, 0, 0.18))
    drop-shadow(0 0 2px rgba(60, 0, 0, 0.04));
}

body[data-input-mode="coarse"] .blood-mark--dusk {
  filter:
    hue-rotate(-14deg)
    saturate(1.04)
    drop-shadow(0 5px 8px rgba(18, 0, 0, 0.14));
}

body[data-input-mode="coarse"] .blood-drop {
  box-shadow:
    inset -2px -3px 5px rgba(12, 0, 0, 0.28),
    0 0 4px rgba(70, 0, 0, 0.03);
}

.slash-mark {
  width: var(--length, 11rem);
  height: var(--height, 3rem);
  transform:
    translate(calc(-50% + var(--offset-x, 0px)), calc(-50% + var(--offset-y, 0px)))
    rotate(var(--angle, 0deg));
  opacity: 0;
  animation:
    slashAppear 0.16s linear forwards,
    slashHold 1.6s 0.2s linear forwards,
    slashFade 0.48s 1.8s ease-out forwards;
}

.slash-mark svg {
  width: 100%;
  height: 100%;
  overflow: visible;
  filter:
    drop-shadow(0 0 8px rgba(255, 255, 255, 0.18))
    drop-shadow(0 0 18px rgba(98, 4, 11, 0.14));
}

.slash-mark path {
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-dasharray: var(--dash, 300);
  stroke-dashoffset: var(--dash, 300);
  animation: slashDraw 0.16s linear forwards;
}

.slash-mark .slash-shadow {
  opacity: 0.42;
}

.candy-burst {
  transform: translate(-50%, -50%);
}

.candy-piece {
  position: absolute;
  left: 0;
  top: 0;
  width: var(--size, 1rem);
  height: calc(var(--size, 1rem) * var(--ratio, 1));
  transform:
    translate(var(--offset-x, 0px), var(--offset-y, 0px))
    rotate(var(--rotation, 0deg));
  border-radius: var(--radius, 999px);
  background: var(--fill, linear-gradient(180deg, #fff1c9, #ff86be));
  box-shadow:
    inset 0 1px 1px rgba(255, 255, 255, 0.4),
    0 10px 20px rgba(88, 42, 68, 0.16);
  opacity: 0;
  animation:
    candyBurstOut 0.44s cubic-bezier(0.14, 0.9, 0.24, 1) forwards,
    splatterFade 1.4s 1.8s linear forwards;
}

.candy-piece::after {
  content: "";
  position: absolute;
  inset: 14%;
  border-radius: inherit;
  background: radial-gradient(circle at 30% 25%, rgba(255, 255, 255, 0.55), rgba(255, 255, 255, 0) 55%);
}

.shard-burst {
  transform: translate(-50%, -50%);
}

.shard {
  position: absolute;
  left: 0;
  top: 0;
  width: var(--size, 0.9rem);
  height: calc(var(--size, 0.9rem) * 0.26);
  transform:
    translate(var(--offset-x, 0px), var(--offset-y, 0px))
    rotate(var(--rotation, 0deg));
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0), rgba(238, 245, 255, 0.95) 30%, rgba(90, 118, 156, 0.22) 100%);
  clip-path: polygon(0 50%, 22% 12%, 100% 0, 78% 88%, 8% 100%);
  filter: drop-shadow(0 0 10px rgba(194, 214, 255, 0.18));
  opacity: 0;
  animation:
    shardBurstOut 0.36s cubic-bezier(0.14, 0.9, 0.24, 1) forwards,
    splatterFade 1.2s 1.5s linear forwards;
}

.specter {
  width: var(--size, 6.4rem);
  aspect-ratio: 508 / 743;
  transform:
    translate(calc(-50% + var(--offset-x, 0px)), calc(-50% + var(--offset-y, 0px)))
    scale(var(--scale, 1))
    rotate(var(--tilt, 0deg));
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  filter:
    blur(0.25px)
    grayscale(0.03)
    drop-shadow(0 0 12px rgba(231, 226, 214, 0.18))
    drop-shadow(0 0 24px rgba(83, 98, 120, 0.16));
  opacity: 0;
  animation:
    specterRise 1.2s var(--delay, 0s) ease-out forwards,
    specterFade 0.9s calc(var(--delay, 0s) + 1.6s) ease-out forwards;
}

.specter--front {
  background-image: url("assets/skull-realistic.png");
}

.specter--tilted {
  background-image: url("assets/skull-realistic-flip.png");
}

body[data-phase="dawn"] .specter {
  filter:
    blur(0.45px)
    saturate(0.85)
    brightness(1.08)
    drop-shadow(0 0 12px rgba(255, 240, 227, 0.18))
    drop-shadow(0 0 24px rgba(255, 175, 178, 0.18));
  opacity: 0.92;
}

.damage-float {
  --offset-x: 0px;
  --offset-y: 0px;
  transform: translate(-50%, -50%);
  color: #fff5dc;
  font-family: "Cinzel", Georgia, serif;
  font-size: clamp(0.95rem, 1.9vw, 1.6rem);
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-shadow:
    0 2px 0 rgba(48, 0, 0, 0.6),
    0 10px 16px var(--damage-shadow);
  white-space: nowrap;
  opacity: 0;
  animation: damageRise 1.15s ease-out forwards;
}

.damage-float__label,
.damage-float__value {
  display: block;
}

.damage-float__label {
  font-size: 0.62em;
  letter-spacing: 0.22em;
  opacity: 0.9;
}

.damage-float__value {
  font-size: 1em;
}

.damage-float.is-critical {
  color: #ffd37f;
  font-size: clamp(1.18rem, 2.8vw, 2.2rem);
  text-shadow:
    0 0 20px rgba(255, 204, 113, 0.28),
    0 0 34px rgba(186, 22, 22, 0.18),
    0 2px 0 rgba(79, 26, 0, 0.65),
    0 12px 18px var(--damage-shadow);
}

.damage-float.is-critical .damage-float__label {
  font-size: 0.46em;
  color: #fff4c8;
  letter-spacing: 0.28em;
}

.damage-float.is-critical .damage-float__value {
  font-size: 1.12em;
  color: #ffb347;
}

body[data-phase="dawn"] .damage-float {
  color: #fff7f2;
  text-shadow:
    0 0 14px rgba(255, 169, 205, 0.18),
    0 2px 0 rgba(132, 58, 108, 0.52),
    0 10px 16px rgba(50, 22, 42, 0.46);
}

.noscript-banner {
  position: fixed;
  inset: auto 1rem 1rem 1rem;
  padding: 0.9rem 1rem;
  border: 1px solid rgba(185, 154, 100, 0.3);
  background: rgba(8, 9, 11, 0.9);
  color: var(--text-main);
  font-family: "Cinzel", Georgia, serif;
  letter-spacing: 0.12em;
  text-align: center;
  z-index: 999;
}

@keyframes discFloat {
  from {
    transform: translate3d(0, -4px, 0) scale(0.98);
  }
  to {
    transform: translate3d(0, 8px, 0) scale(1.03);
  }
}

@keyframes mountainDrift {
  from {
    transform: translate3d(-1.2%, 0, 0) scale(1.02);
  }
  to {
    transform: translate3d(1.2%, -1%, 0) scale(1.06);
  }
}

@keyframes mountainDriftReverse {
  from {
    transform: translate3d(1.2%, 0, 0) scale(1.01);
  }
  to {
    transform: translate3d(-1.2%, -1.4%, 0) scale(1.05);
  }
}

@keyframes sheenSweep {
  0%,
  100% {
    transform: translateX(-12%) scaleX(0.9);
    opacity: 0.24;
  }
  50% {
    transform: translateX(12%) scaleX(1.02);
    opacity: 0.55;
  }
}

@keyframes waveMotion {
  from {
    transform: translateX(-4%) scaleY(0.98);
  }
  to {
    transform: translateX(4%) scaleY(1.04);
  }
}

@keyframes driftLeft {
  from {
    transform: translate3d(-2%, 0, 0) scale(1.02);
  }
  to {
    transform: translate3d(3%, -1.6%, 0) scale(1.08);
  }
}

@keyframes driftRight {
  from {
    transform: translate3d(2%, 0, 0) scale(1.02);
  }
  to {
    transform: translate3d(-3%, -1.2%, 0) scale(1.08);
  }
}

@keyframes impactJolt {
  0% {
    transform: translate3d(0, 0, 0);
  }
  20% {
    transform: translate3d(-5px, 2px, 0) scale(1.003);
  }
  42% {
    transform: translate3d(4px, -3px, 0) scale(1.001);
  }
  100% {
    transform: translate3d(0, 0, 0);
  }
}

@keyframes comingSoonReveal {
  from {
    opacity: 0;
    filter: blur(20px);
    transform: translate(-50%, -50%) scale(0.92);
  }
  to {
    opacity: 1;
    filter: blur(0);
    transform: translate(-50%, -50%) scale(1);
  }
}

@keyframes auraReveal {
  from {
    opacity: 0;
    transform: scale(0.74);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes comingSoonFade {
  from {
    opacity: 1;
    filter: blur(0);
    transform: translate(-50%, -50%) scale(1);
  }
  to {
    opacity: 0;
    filter: blur(14px);
    transform: translate(-50%, -50%) scale(1.02);
  }
}

@keyframes splatterAppear {
  from {
    opacity: 0;
    filter:
      blur(3px)
      drop-shadow(0 10px 18px rgba(32, 0, 0, 0.2));
  }
  to {
    opacity: 0.96;
  }
}

@keyframes dropletPop {
  from {
    opacity: 0;
    transform: scale(0.2);
  }
  to {
    opacity: 0.94;
    transform: scale(1);
  }
}

@keyframes splatterFade {
  to {
    opacity: 0;
    filter: blur(1px);
  }
}

@keyframes slashAppear {
  from {
    opacity: 0;
    filter: blur(2px);
  }
  to {
    opacity: 1;
    filter: blur(0);
  }
}

@keyframes slashHold {
  from {
    opacity: 1;
  }
  to {
    opacity: 0.92;
  }
}

@keyframes slashFade {
  to {
    opacity: 0;
    filter: blur(1px);
  }
}

@keyframes slashDraw {
  to {
    stroke-dashoffset: 0;
  }
}

@keyframes candyBurstOut {
  from {
    opacity: 0;
    transform:
      translate(0, 0)
      rotate(var(--rotation, 0deg))
      scale(0.4);
  }
  to {
    opacity: 1;
    transform:
      translate(var(--offset-x, 0px), var(--offset-y, 0px))
      rotate(var(--rotation, 0deg))
      scale(1);
  }
}

@keyframes shardBurstOut {
  from {
    opacity: 0;
    transform:
      translate(0, 0)
      rotate(var(--rotation, 0deg))
      scaleX(0.2);
  }
  to {
    opacity: 1;
    transform:
      translate(var(--offset-x, 0px), var(--offset-y, 0px))
      rotate(var(--rotation, 0deg))
      scaleX(1);
  }
}

@keyframes specterRise {
  from {
    opacity: 0;
    filter:
      blur(10px)
      drop-shadow(0 0 8px rgba(216, 221, 223, 0.08))
      drop-shadow(0 0 12px rgba(91, 106, 124, 0.08));
    transform:
      translate(calc(-50% + var(--offset-x, 0px)), calc(-50% + var(--offset-y, 16px)))
      scale(calc(var(--scale, 1) * 0.82))
      rotate(var(--tilt, 0deg));
  }
  60% {
    opacity: 0.84;
  }
  to {
    opacity: 0.96;
    transform:
      translate(calc(-50% + var(--offset-x, 0px)), calc(-50% + var(--offset-y, -14px)))
      scale(var(--scale, 1))
      rotate(var(--tilt, 0deg));
  }
}

@keyframes specterFade {
  to {
    opacity: 0;
    filter: blur(8px);
  }
}

@keyframes damageRise {
  0% {
    opacity: 0;
    transform: translate(calc(-50% + var(--offset-x)), calc(-36% + var(--offset-y))) scale(0.72);
  }
  12% {
    opacity: 1;
    transform: translate(calc(-50% + var(--offset-x)), calc(-56% + var(--offset-y))) scale(1.08);
  }
  100% {
    opacity: 0;
    transform: translate(calc(-50% + var(--offset-x)), calc(-180% + var(--offset-y))) scale(0.94);
  }
}

@media (max-width: 980px) {
  .brand-lockup {
    width: min(58vw, 30rem);
  }

  .coming-soon-wrap {
    left: 54%;
    top: 60%;
    width: min(76vw, 48rem);
  }

  .coming-soon {
    font-size: clamp(2.2rem, 10vw, 5rem);
    letter-spacing: 0.22em;
    text-indent: 0.22em;
  }

  .coming-soon::before,
  .coming-soon::after {
    text-indent: 0.22em;
  }
}

@media (max-width: 720px) {
  .brand-lockup {
    left: 50%;
    top: max(2.5rem, env(safe-area-inset-top));
    width: min(86vw, 23rem);
    transform: translateX(-50%);
    align-items: center;
    text-align: center;
  }

  .brand-emblem-shell {
    width: clamp(7rem, 30vw, 9rem);
  }

  .brand-wordmark-shell {
    width: 100%;
    justify-content: center;
    margin-left: 0;
  }

  .brand-wordmark {
    width: 100%;
    font-size: clamp(1.72rem, 8.6vw, 2.94rem);
    letter-spacing: 0.08em;
    transform-origin: center center;
    text-align: center;
  }

  .brand-studio {
    margin-left: 0;
    letter-spacing: 0.42em;
  }

  .sky-disc {
    top: 1.5rem;
    right: 1.25rem;
    width: clamp(4.8rem, 17vw, 7rem);
  }

  .backdrop--vista {
    height: 36vh;
    bottom: 16vh;
  }

  .backdrop--branches::before,
  .backdrop--branches::after {
    opacity: 0.12;
    width: 48vw;
    height: 34vh;
  }

  .mountain-range--far {
    bottom: 23vh;
    height: 24vh;
  }

  .mountain-range--mid {
    bottom: 16vh;
    height: 32vh;
  }

  .water-scape {
    height: 18vh;
  }

  .coming-soon-wrap {
    left: 50%;
    top: 63%;
    width: min(92vw, 32rem);
  }

  .coming-soon {
    font-size: clamp(1.9rem, 12vw, 3.8rem);
    letter-spacing: 0.16em;
    text-indent: 0.16em;
    line-height: 1.1;
  }

  .coming-soon::before,
  .coming-soon::after {
    text-indent: 0.16em;
  }
}

@media (prefers-reduced-motion: reduce) {
  .brand-surface,
  .brand-emblem,
  .brand-wordmark,
  .brand-studio,
  .sky-disc,
  .mountain-range,
  .water-sheen,
  .water-wave,
  .fog,
  .hero.is-struck,
  .coming-soon-wrap,
  .blood-mark,
  .blood-drop,
  .slash-mark,
  .slash-mark path,
  .candy-piece,
  .shard,
  .specter,
  .damage-float {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .lightning-flash,
  .impact-wash {
    transition-duration: 0.01ms !important;
  }
}
