:root {
  --bg: #050403;
  --bg-2: #100c08;
  --panel: rgba(12, 10, 8, 0.76);
  --panel-strong: rgba(8, 7, 6, 0.9);
  --gold: #f2ae24;
  --gold-soft: #ffdc78;
  --gold-pale: #fff0ba;
  --bronze: #9b641d;
  --ruby: #d94b35;
  --citrus: #f3c43f;
  --leaf: #74b843;
  --sky: #53b8c8;
  --cream: #fff7e8;
  --text-soft: rgba(255, 247, 232, 0.72);
  --text-faint: rgba(255, 247, 232, 0.52);
  --line: rgba(255, 220, 120, 0.32);
  --line-soft: rgba(255, 220, 120, 0.16);
  --container: min(1160px, calc(100vw - 40px));
  color-scheme: dark;
}

* {
  box-sizing: border-box;
}

html {
  height: 100%;
  scroll-behavior: smooth;
}

body {
  height: 100%;
  margin: 0;
  overflow: hidden;
  background:
    radial-gradient(circle at 50% -10%, rgba(242, 174, 36, 0.22), transparent 36rem),
    radial-gradient(circle at 10% 18%, rgba(217, 75, 53, 0.18), transparent 24rem),
    radial-gradient(circle at 88% 26%, rgba(83, 184, 200, 0.13), transparent 26rem),
    radial-gradient(circle at 18% 92%, rgba(116, 184, 67, 0.16), transparent 30rem),
    radial-gradient(circle at 5% 90%, rgba(155, 100, 29, 0.18), transparent 34rem),
    linear-gradient(135deg, var(--bg) 0%, #0a0806 48%, var(--bg-2) 100%);
  color: var(--cream);
  font-family:
    Bahnschrift, "Arial Narrow", "Segoe UI", ui-sans-serif, system-ui, Arial,
    sans-serif;
}

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

img,
svg {
  display: block;
}

.ambient-canvas {
  position: fixed;
  inset: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  pointer-events: none;
  opacity: 0.5;
}

.site {
  position: relative;
  z-index: 2;
  height: 100dvh;
  overflow: hidden;
}

.launch {
  position: relative;
  display: grid;
  grid-template-rows: auto minmax(0, 1fr) auto auto;
  align-items: center;
  height: 100dvh;
  padding: clamp(10px, 1.5vh, 18px) 0 clamp(8px, 1.2vh, 14px);
  overflow: hidden;
  isolation: isolate;
}

.launch::before,
.launch::after {
  position: absolute;
  z-index: -1;
  border-radius: 50%;
  pointer-events: none;
  content: "";
}

.launch::before {
  inset: 7% -15% auto -15%;
  height: 42vh;
  border-top: 1px solid rgba(255, 220, 120, 0.55);
  filter: drop-shadow(0 0 26px rgba(242, 174, 36, 0.24));
  transform: rotate(-6deg);
}

.launch::after {
  inset: auto -10% 16% 8%;
  height: 30vh;
  border-bottom: 1px solid rgba(255, 220, 120, 0.36);
  filter: drop-shadow(0 0 24px rgba(242, 174, 36, 0.2));
  transform: rotate(-9deg);
}

.stage-media {
  position: absolute;
  inset: 0;
  z-index: -4;
  overflow: hidden;
}

.stage-media::after {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 28% 36%, rgba(217, 75, 53, 0.13), transparent 32%),
    radial-gradient(circle at 78% 42%, rgba(116, 184, 67, 0.12), transparent 30%),
    linear-gradient(90deg, rgba(5, 4, 3, 0.98), rgba(5, 4, 3, 0.54) 48%, rgba(5, 4, 3, 0.98)),
    linear-gradient(180deg, rgba(5, 4, 3, 0.12), rgba(5, 4, 3, 0.94) 76%);
  content: "";
}

.stage-media__market {
  position: absolute;
  top: -4%;
  left: 50%;
  width: min(1360px, 112vw);
  height: 74vh;
  object-fit: cover;
  object-position: 78% center;
  opacity: 0.32;
  filter: saturate(0.82) contrast(1.08) brightness(0.72);
  transform: translateX(-50%) scale(1.02);
  mask-image:
    linear-gradient(90deg, transparent 0%, #000 18%, #000 82%, transparent 100%),
    linear-gradient(180deg, #000 0%, #000 66%, transparent 100%);
  mask-composite: intersect;
}

.stage-media__shadow {
  position: absolute;
  right: -20%;
  bottom: -4%;
  width: min(1160px, 86vw);
  height: 52vh;
  object-fit: cover;
  object-position: 20% center;
  opacity: 0.08;
  filter: saturate(0.6) brightness(0.48) blur(1px);
  mask-image: linear-gradient(90deg, transparent, #000 30%, transparent);
}

.topbar,
.hero,
.promise-strip,
.site-footer {
  width: var(--container);
  margin-inline: auto;
}

.topbar {
  position: relative;
  z-index: 4;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: clamp(38px, 6vh, 52px);
}

.topbar__logo {
  display: block;
  width: clamp(118px, 14vw, 184px);
  min-width: 0;
}

.topbar__logo img {
  width: 100%;
  height: auto;
  border-radius: 6px;
  filter: drop-shadow(0 16px 28px rgba(0, 0, 0, 0.36));
}

.topbar__logo-container {
  display: flex;
  align-items: center;
  gap: clamp(8px, 1.5vw, 14px);
}

.topbar__logo-separator {
  width: 1px;
  height: clamp(20px, 3vh, 32px);
  background: var(--line-soft);
}

.topbar__parent-logo {
  width: clamp(32px, 4.4vh, 48px);
  height: clamp(32px, 4.4vh, 48px);
  display: flex;
  align-items: center;
}

.topbar__parent-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.28));
  border-radius: 50%;
  border: 1px solid rgba(255, 220, 120, 0.22);
}

.social-nav {
  display: flex;
  align-items: center;
  gap: 9px;
}

.social-nav a {
  display: grid;
  width: clamp(32px, 4.4vh, 40px);
  height: clamp(32px, 4.4vh, 40px);
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), transparent),
    rgba(10, 8, 6, 0.72);
  color: var(--gold-soft);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.28);
  transition:
    transform 170ms ease,
    border-color 170ms ease,
    box-shadow 170ms ease;
}

.social-nav a:hover,
.social-nav a:focus-visible {
  border-color: rgba(255, 240, 186, 0.74);
  box-shadow: 0 0 28px rgba(242, 174, 36, 0.2);
  transform: translateY(-2px);
}

.social-nav svg {
  width: clamp(15px, 2.1vh, 19px);
  height: clamp(15px, 2.1vh, 19px);
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.75;
  overflow: visible;
}

.social-nav a:nth-child(2) svg,
.social-nav a:nth-child(3) svg {
  fill: currentColor;
  stroke: none;
}

.hero {
  position: relative;
  z-index: 3;
  align-self: center;
  display: grid;
  justify-items: center;
  max-width: min(980px, 100%);
  padding: clamp(14px, 2.4vh, 28px) clamp(12px, 3vw, 38px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    radial-gradient(circle at 8% 12%, rgba(217, 75, 53, 0.15), transparent 24%),
    radial-gradient(circle at 90% 22%, rgba(83, 184, 200, 0.12), transparent 25%),
    radial-gradient(circle at 72% 88%, rgba(116, 184, 67, 0.1), transparent 28%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), transparent 34%),
    linear-gradient(135deg, rgba(22, 15, 10, 0.88), rgba(6, 5, 4, 0.91));
  box-shadow:
    0 34px 94px rgba(0, 0, 0, 0.56),
    0 0 0 1px rgba(255, 255, 255, 0.05) inset,
    0 0 54px rgba(242, 174, 36, 0.12);
  text-align: center;
  backdrop-filter: blur(14px);
}

.hero::before {
  position: absolute;
  inset: 8px;
  border: 1px solid var(--line-soft);
  border-radius: 6px;
  content: "";
  pointer-events: none;
}

.hero__logo {
  position: relative;
  width: min(480px, 72vw);
  margin-bottom: clamp(8px, 1.2vh, 14px);
}

.hero__logo::after {
  position: absolute;
  left: 12%;
  right: 12%;
  bottom: -10px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--ruby), var(--gold-soft), var(--leaf), transparent);
  content: "";
}

.hero__logo img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  filter: drop-shadow(0 22px 38px rgba(0, 0, 0, 0.42));
}

.launch-label {
  display: grid;
  grid-template-columns: minmax(34px, 1fr) auto minmax(34px, 1fr);
  align-items: center;
  gap: clamp(10px, 2vw, 24px);
  width: min(100%, 720px);
  margin: 4px 0 clamp(5px, 0.8vh, 9px);
  color: var(--gold-pale);
  font-family:
    "Bahnschrift SemiCondensed", "Arial Narrow", "Segoe UI", Arial, sans-serif;
  font-size: clamp(0.78rem, 1.08vw, 0.98rem);
  font-weight: 900;
  letter-spacing: 0.28em;
  text-align: center;
  text-shadow:
    0 0 16px rgba(242, 174, 36, 0.32),
    0 1px 0 rgba(0, 0, 0, 0.8);
  text-transform: uppercase;
}

.launch-label::before,
.launch-label::after {
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 220, 120, 0.72));
  content: "";
}

.launch-label::after {
  background: linear-gradient(90deg, rgba(255, 220, 120, 0.72), transparent);
}

h1 {
  max-width: 760px;
  margin: 0;
  color: var(--cream);
  font-family:
    "Bahnschrift Condensed", Impact, "Arial Narrow", "Segoe UI", Arial, sans-serif;
  font-size: clamp(1.75rem, 4vw, 3.55rem);
  font-weight: 950;
  line-height: 0.9;
  letter-spacing: 0.035em;
  text-wrap: balance;
  text-transform: uppercase;
  text-shadow:
    0 2px 0 rgba(103, 63, 8, 0.55),
    0 18px 34px rgba(0, 0, 0, 0.64),
    0 0 22px rgba(242, 174, 36, 0.12);
}

.opening-date {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 10px 12px;
  max-width: 100%;
  margin-top: clamp(8px, 1.3vh, 14px);
  padding: 7px 10px;
  border: 1px solid rgba(255, 220, 120, 0.42);
  border-radius: 8px;
  background:
    radial-gradient(circle at 12% 30%, rgba(217, 75, 53, 0.28), transparent 34%),
    radial-gradient(circle at 88% 30%, rgba(83, 184, 200, 0.24), transparent 34%),
    linear-gradient(90deg, rgba(217, 75, 53, 0.1), rgba(255, 220, 120, 0.13), rgba(83, 184, 200, 0.1)),
    rgba(7, 6, 5, 0.78);
  color: var(--text-soft);
  box-shadow:
    0 18px 42px rgba(0, 0, 0, 0.3),
    0 0 26px rgba(242, 174, 36, 0.13),
    0 0 0 1px rgba(255, 255, 255, 0.045) inset;
  position: relative;
  overflow: hidden;
}

.opening-date::before {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, var(--ruby), var(--gold-soft), var(--leaf), var(--sky));
  opacity: 0.75;
  height: 2px;
  content: "";
}

.opening-date::after {
  position: absolute;
  inset: auto 10px 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 240, 186, 0.5), transparent);
  content: "";
}

.opening-date span {
  position: relative;
  color: var(--gold-pale);
  font-family:
    "Bahnschrift SemiCondensed", "Arial Narrow", "Segoe UI", Arial, sans-serif;
  font-size: clamp(0.78rem, 1.6vh, 0.9rem);
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-shadow: 0 0 14px rgba(242, 174, 36, 0.22);
}

.opening-date strong {
  position: relative;
  display: inline-flex;
  min-height: 30px;
  align-items: center;
  padding: 0 12px;
  border: 1px solid rgba(255, 220, 120, 0.58);
  border-radius: 8px;
  background:
    linear-gradient(90deg, rgba(217, 75, 53, 0.22), rgba(255, 220, 120, 0.16), rgba(83, 184, 200, 0.18)),
    rgba(5, 4, 3, 0.58);
  color: #fff7d4;
  font-size: clamp(1rem, 1.4vw, 1.18rem);
  font-weight: 950;
  box-shadow:
    0 0 18px rgba(242, 174, 36, 0.16),
    0 0 0 1px rgba(255, 255, 255, 0.04) inset;
  text-shadow:
    0 0 12px rgba(255, 220, 120, 0.42),
    0 1px 0 rgba(0, 0, 0, 0.85);
}

.countdown {
  display: grid;
  grid-template-columns: repeat(4, minmax(118px, 1fr));
  gap: clamp(7px, 1vw, 12px);
  width: min(100%, 820px);
  margin-top: clamp(10px, 1.6vh, 16px);
  padding: clamp(7px, 1.2vh, 11px);
  border: 1px solid rgba(255, 220, 120, 0.34);
  border-radius: 8px;
  background:
    linear-gradient(90deg, rgba(217, 75, 53, 0.08), transparent 28%, rgba(83, 184, 200, 0.08)),
    linear-gradient(180deg, rgba(255, 255, 255, 0.06), transparent 38%),
    rgba(7, 6, 5, 0.72);
  box-shadow:
    0 18px 50px rgba(0, 0, 0, 0.34),
    0 0 0 1px rgba(255, 255, 255, 0.04) inset;
}

.countdown,
.countdown * {
  transition: none;
}

.dial {
  display: grid;
  justify-items: center;
  gap: clamp(4px, 0.7vh, 7px);
  min-width: 0;
}

.dial__ring {
  position: relative;
  display: grid;
  width: 100%;
  min-width: 0;
  height: clamp(58px, 8.8vw, 94px);
  place-items: center;
  border: 1px solid rgba(255, 220, 120, 0.34);
  border-radius: 8px;
  background:
    linear-gradient(90deg, color-mix(in srgb, var(--dial-color, var(--gold-soft)) 42%, transparent) calc(var(--progress) * 1%), transparent 0),
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), transparent 34%),
    linear-gradient(135deg, rgba(19, 14, 9, 0.96), rgba(4, 4, 4, 0.94));
  box-shadow:
    0 18px 38px rgba(0, 0, 0, 0.42),
    0 0 24px color-mix(in srgb, var(--dial-color, var(--gold)) 18%, transparent),
    0 0 0 1px rgba(255, 255, 255, 0.04) inset;
  clip-path: polygon(9px 0, 100% 0, 100% calc(100% - 9px), calc(100% - 9px) 100%, 0 100%, 0 9px);
}

.dial__ring::before {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, transparent, rgba(255, 240, 186, 0.16), transparent),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.035) 0 1px, transparent 1px 8px);
  mix-blend-mode: screen;
  opacity: 0.8;
  content: "";
}

.dial__ring::after {
  position: absolute;
  left: 10px;
  right: 10px;
  top: 7px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 240, 186, 0.58), transparent);
  content: "";
}

.dial__value {
  position: relative;
  color: var(--dial-color, var(--gold-soft));
  font-family:
    "Bahnschrift SemiCondensed", "Arial Narrow", "Segoe UI", ui-sans-serif,
    sans-serif;
  font-size: clamp(1.72rem, 3vw, 2.58rem);
  font-variant-numeric: tabular-nums;
  font-weight: 900;
  line-height: 0.92;
  letter-spacing: 0.04em;
  text-shadow:
    0 0 10px rgba(255, 220, 120, 0.72),
    0 0 24px color-mix(in srgb, var(--dial-color, var(--gold)) 34%, transparent);
}

.dial:nth-child(1) {
  --dial-color: var(--gold-soft);
}

.dial:nth-child(2) {
  --dial-color: var(--ruby);
}

.dial:nth-child(3) {
  --dial-color: var(--leaf);
}

.dial:nth-child(4) {
  --dial-color: var(--sky);
}

.dial__label {
  color: var(--cream);
  font-family:
    "Bahnschrift SemiCondensed", "Arial Narrow", "Segoe UI", Arial, sans-serif;
  font-size: clamp(0.62rem, 1.25vh, 0.78rem);
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.status {
  min-height: 18px;
  margin: clamp(6px, 0.9vh, 9px) 0 0;
  color: var(--text-soft);
  font-size: clamp(0.78rem, 1.6vh, 0.9rem);
}

.promise-strip {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: clamp(8px, 1.3vh, 14px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(90deg, rgba(217, 75, 53, 0.08), rgba(243, 196, 63, 0.06), rgba(116, 184, 67, 0.08)),
    linear-gradient(180deg, rgba(255, 255, 255, 0.058), rgba(255, 255, 255, 0.012)),
    rgba(10, 8, 6, 0.74);
  box-shadow: 0 20px 58px rgba(0, 0, 0, 0.32);
  backdrop-filter: blur(12px);
}

.promise-strip article {
  display: grid;
  gap: 3px;
  min-width: 0;
  padding: clamp(8px, 1.4vh, 14px) clamp(8px, 1.7vw, 18px);
  text-align: center;
  position: relative;
}

.promise-strip article::before {
  position: absolute;
  top: 0;
  left: 18%;
  right: 18%;
  height: 2px;
  background: var(--promise-color, var(--gold-soft));
  box-shadow: 0 0 18px color-mix(in srgb, var(--promise-color, var(--gold-soft)) 35%, transparent);
  content: "";
}

.promise-strip article:nth-child(1) {
  --promise-color: var(--ruby);
}

.promise-strip article:nth-child(2) {
  --promise-color: var(--gold-soft);
}

.promise-strip article:nth-child(3) {
  --promise-color: var(--leaf);
}

.promise-strip article + article {
  border-left: 1px solid var(--line-soft);
}

.promise-strip strong {
  color: var(--promise-color, var(--gold-soft));
  font-family:
    "Bahnschrift SemiCondensed", "Arial Narrow", "Segoe UI", Arial, sans-serif;
  font-size: clamp(0.78rem, 1.5vh, 0.98rem);
  font-weight: 950;
  letter-spacing: 0.04em;
}

.promise-strip span {
  color: var(--cream);
  font-size: clamp(0.68rem, 1.35vh, 0.84rem);
  line-height: 1.25;
}

.site-footer {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 14px;
  padding-top: clamp(8px, 1.2vh, 12px);
}

.footer-legal__content {
  display: flex;
  align-items: center;
  gap: 12px;
  text-align: left;
}

.footer-legal__parent-logo {
  width: clamp(38px, 5.5vh, 48px);
  height: clamp(38px, 5.5vh, 48px);
  flex-shrink: 0;
  display: flex;
  align-items: center;
}

.footer-legal__parent-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.22));
  border-radius: 50%;
  border: 1px solid rgba(255, 220, 120, 0.16);
}

.footer-legal__text {
  display: flex;
  flex-direction: column;
}

.footer-legal__text p,
.footer-legal__text span {
  margin: 0;
}

.footer-legal__text p {
  color: rgba(255, 247, 232, 0.78);
  font-size: clamp(0.72rem, 1.35vh, 0.86rem);
  font-weight: 650;
}

.footer-legal__text span {
  display: block;
  margin-top: 2px;
  color: var(--text-faint);
  font-size: clamp(0.62rem, 1.18vh, 0.76rem);
  line-height: 1.2;
}

.developer-credit {
  position: relative;
  display: grid;
  grid-template-columns: 1fr auto;
  grid-template-areas:
    "overline mark"
    "name mark";
  align-items: center;
  gap: 4px 16px;
  min-width: min(100%, 286px);
  padding: 9px 12px 9px 15px;
  border: 1px solid rgba(255, 220, 120, 0.42);
  border-radius: 8px;
  background:
    radial-gradient(circle at 92% 18%, rgba(83, 184, 200, 0.12), transparent 32%),
    radial-gradient(circle at 8% 82%, rgba(217, 75, 53, 0.12), transparent 34%),
    linear-gradient(135deg, rgba(255, 220, 120, 0.15), transparent 40%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.06), transparent),
    rgba(10, 8, 6, 0.78);
  box-shadow:
    0 18px 44px rgba(0, 0, 0, 0.34),
    0 0 0 1px rgba(255, 255, 255, 0.05) inset;
  overflow: hidden;
}

.developer-credit::before {
  position: absolute;
  inset: 0 auto 0 0;
  width: 3px;
  background: linear-gradient(180deg, var(--gold-pale), var(--gold), var(--bronze));
  content: "";
}

.developer-credit::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, transparent 0 38%, rgba(255, 255, 255, 0.13) 48%, transparent 60%);
  opacity: 0;
  transform: translateX(-32%);
  transition:
    opacity 180ms ease,
    transform 420ms ease;
  content: "";
  pointer-events: none;
}

.developer-credit:hover::after,
.developer-credit:focus-visible::after {
  opacity: 1;
  transform: translateX(24%);
}

.developer-credit__overline {
  grid-area: overline;
  color: var(--text-faint);
  font-family:
    "Bahnschrift SemiCondensed", "Arial Narrow", "Segoe UI", Arial, sans-serif;
  font-size: clamp(0.58rem, 1.1vh, 0.66rem);
  font-weight: 900;
  letter-spacing: 0.18em;
  line-height: 1;
  text-transform: uppercase;
}

.developer-credit strong {
  grid-area: name;
  color: var(--gold-soft);
  font-family:
    "Bahnschrift SemiCondensed", "Arial Narrow", "Segoe UI", Arial, sans-serif;
  font-size: clamp(0.86rem, 1.5vh, 1.03rem);
  font-weight: 950;
  line-height: 1.05;
  text-shadow: 0 0 20px rgba(242, 174, 36, 0.28);
}

.developer-credit__mark {
  grid-area: mark;
  display: grid;
  width: 30px;
  height: 30px;
  place-items: center;
  border: 1px solid rgba(255, 220, 120, 0.28);
  border-radius: 50%;
  background: rgba(255, 220, 120, 0.1);
  color: var(--gold-pale);
  font-size: 1.1rem;
}

@media (max-width: 880px) {
  :root {
    --container: min(100vw - 28px, 680px);
  }

  .launch {
    height: 100dvh;
    padding-top: 10px;
  }

  .topbar {
    min-height: 38px;
    align-items: flex-start;
  }

  .topbar__logo {
    width: clamp(96px, 32vw, 138px);
  }

  .social-nav {
    gap: 7px;
  }

  .social-nav a {
    width: 30px;
    height: 30px;
  }

  .social-nav svg {
    width: 14px;
    height: 14px;
  }

  .hero {
    margin-top: 8px;
  }

  .hero__logo {
    width: min(390px, 74vw);
  }

  .launch-label {
    letter-spacing: 0.12em;
    font-size: clamp(0.68rem, 2.1vw, 0.86rem);
  }

  h1 {
    font-size: clamp(1.65rem, 8.8vw, 3rem);
  }

  .opening-date {
    width: 100%;
  }

  .opening-date strong {
    flex: 1 1 100%;
    justify-content: center;
  }

  .countdown {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 6px;
  }

  .dial__ring {
    width: 100%;
    min-width: 0;
    height: clamp(48px, 10vw, 64px);
  }

  .dial__value {
    font-size: clamp(1.12rem, 5.6vw, 1.7rem);
  }

  .dial__label {
    font-size: clamp(0.56rem, 2vw, 0.7rem);
  }

  .promise-strip {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .promise-strip article + article {
    border-top: 0;
    border-left: 1px solid var(--line-soft);
  }

  .site-footer {
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
  }
}

@media (max-width: 460px) {
  .hero {
    padding: 10px 10px;
  }

  .launch-label {
    grid-template-columns: 1fr;
    gap: 0;
    text-align: center;
  }

  .launch-label::before,
  .launch-label::after {
    display: none;
  }

  .countdown {
    gap: 6px;
  }

  .dial__ring {
    width: 100%;
    min-width: 0;
    height: clamp(44px, 10.5vw, 56px);
  }

  .dial__value {
    font-size: clamp(1.05rem, 5.2vw, 1.45rem);
  }

  .developer-credit {
    min-width: 0;
  }
}

@media (max-height: 760px) {
  .hero__logo {
    width: min(360px, 62vw);
    margin-bottom: 6px;
  }

  h1 {
    font-size: clamp(1.55rem, 3.8vw, 3rem);
  }

  .launch-label {
    margin-bottom: 5px;
  }

  .opening-date {
    margin-top: 7px;
    padding-block: 6px;
  }

  .countdown {
    margin-top: 8px;
  }

  .dial__ring {
    height: clamp(46px, 7.6vh, 64px);
  }

  .status {
    margin-top: 5px;
  }

  .promise-strip article {
    padding-block: 7px;
  }
}

@media (max-height: 640px) {
  .topbar {
    min-height: 32px;
  }

  .topbar__logo {
    width: clamp(86px, 20vh, 128px);
  }

  .social-nav a {
    width: 28px;
    height: 28px;
  }

  .hero {
    padding-block: 8px;
  }

  .hero__logo {
    width: min(300px, 56vw);
  }

  .launch-label {
    font-size: 0.66rem;
  }

  h1 {
    font-size: clamp(1.35rem, 3.4vw, 2.35rem);
  }

  .opening-date span,
  .status,
  .promise-strip span,
  .footer-legal__text span {
    display: none;
  }

  .opening-date {
    padding: 5px 8px;
  }

  .opening-date strong {
    min-height: 26px;
    font-size: 0.82rem;
  }

  .dial__ring {
    height: clamp(38px, 7vh, 52px);
  }

  .dial__value {
    font-size: clamp(0.95rem, 4.2vh, 1.35rem);
  }

  .dial__label,
  .promise-strip strong,
  .footer-legal__text p {
    font-size: 0.62rem;
  }

  .developer-credit {
    padding-block: 7px;
  }
}

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

  .ambient-canvas {
    display: none;
  }
}
