:root {
  color-scheme: dark;
  --ink: #f8f6ff;
  --muted: #aba8ba;
  --dim: #747182;
  --panel: rgba(17, 15, 31, 0.66);
  --line: rgba(255, 255, 255, 0.13);
  --orange: #ff8256;
  --pink: #ff4da2;
  --violet: #9d78ff;
  --cyan: #6be8ff;
  --ease: cubic-bezier(.2, .8, .2, 1);
}

* { box-sizing: border-box; }

html { min-width: 320px; background: #080713; }

body {
  min-height: 100svh;
  margin: 0;
  overflow-x: hidden;
  color: var(--ink);
  background: #080713;
  font-family: "Manrope", system-ui, sans-serif;
  -webkit-font-smoothing: antialiased;
}

button, select { font: inherit; }
a { color: inherit; }

.scene {
  position: fixed;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
  background:
    radial-gradient(circle at 76% 62%, rgba(255, 77, 162, .16), transparent 28%),
    radial-gradient(circle at 16% 18%, rgba(107, 232, 255, .09), transparent 24%),
    linear-gradient(128deg, #070610 15%, #100a1d 58%, #171020 100%);
}

.scene::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(8, 7, 19, .92), rgba(8, 7, 19, .34) 58%, rgba(8, 7, 19, .7));
}

.scene__image {
  position: absolute;
  inset: 0 0 0 auto;
  width: min(68vw, 1080px);
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: .34;
  filter: saturate(.84) contrast(1.08);
  mask-image: linear-gradient(90deg, transparent 0%, rgba(0,0,0,.38) 24%, #000 62%);
}

.scene__aurora {
  position: absolute;
  width: 55vw;
  height: 110vh;
  border-radius: 50%;
  filter: blur(72px);
  opacity: .28;
  transform: rotate(24deg);
}

.scene__aurora--one {
  top: -42vh;
  right: -15vw;
  background: linear-gradient(180deg, var(--pink), transparent 66%);
  animation: drift 14s ease-in-out infinite alternate;
}

.scene__aurora--two {
  bottom: -75vh;
  left: 20vw;
  background: linear-gradient(180deg, var(--orange), var(--violet));
  animation: drift 18s ease-in-out -8s infinite alternate-reverse;
}

.scene__grid {
  position: absolute;
  inset: 28% -20% -36% 22%;
  opacity: .14;
  background-image:
    linear-gradient(rgba(255,255,255,.23) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.23) 1px, transparent 1px);
  background-size: 72px 72px;
  transform: perspective(500px) rotateX(62deg) rotateZ(-8deg);
  transform-origin: center bottom;
  mask-image: linear-gradient(to bottom, transparent, #000 35%);
}

.scene__grain {
  position: absolute;
  inset: 0;
  opacity: .055;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.8'/%3E%3C/svg%3E");
}

.shell {
  position: relative;
  z-index: 1;
  width: min(1440px, 100%);
  min-height: 100svh;
  margin: 0 auto;
  padding: 34px clamp(24px, 5vw, 78px) 24px;
}

.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.brand {
  display: grid;
  grid-template-columns: auto auto;
  grid-template-rows: auto auto;
  column-gap: 11px;
  align-items: center;
  width: max-content;
  text-decoration: none;
}

.brand__mark {
  grid-row: 1 / 3;
  position: relative;
  width: 28px;
  height: 28px;
  transform: rotate(-8deg);
}

.brand__mark i {
  position: absolute;
  display: block;
  width: 18px;
  height: 9px;
  border: 3px solid var(--ink);
  border-radius: 50%;
}

.brand__mark i:first-child { top: 2px; left: 0; transform: rotate(42deg); }
.brand__mark i:last-child { right: 0; bottom: 2px; transform: rotate(42deg); border-color: var(--orange); }

.brand__word {
  font-weight: 800;
  font-size: 19px;
  letter-spacing: .3em;
  line-height: 1;
}

.brand__tag {
  margin-top: 5px;
  color: var(--dim);
  font: 500 8px/1 "DM Mono", monospace;
  letter-spacing: .24em;
}

.timezone-control { display: flex; align-items: center; gap: 12px; }
.timezone-control label { color: var(--muted); font: 500 11px/1 "DM Mono", monospace; letter-spacing: .12em; text-transform: uppercase; }

.select-wrap { position: relative; }
.select-wrap select {
  width: min(300px, 38vw);
  height: 42px;
  padding: 0 42px 0 15px;
  color: var(--ink);
  background: rgba(15, 13, 26, .74);
  border: 1px solid var(--line);
  border-radius: 10px;
  outline: none;
  appearance: none;
  cursor: pointer;
  font-size: 13px;
  transition: border-color .2s, background .2s, box-shadow .2s;
}

.select-wrap select:hover { background: rgba(25, 21, 42, .88); border-color: rgba(255,255,255,.23); }
.select-wrap select:focus-visible { border-color: var(--violet); box-shadow: 0 0 0 3px rgba(157,120,255,.18); }
.select-wrap svg { position: absolute; top: 11px; right: 12px; width: 20px; fill: none; stroke: var(--muted); stroke-width: 1.8; pointer-events: none; }

.countdown {
  width: min(920px, 100%);
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: calc(100svh - 106px);
  padding: clamp(72px, 10vh, 130px) 0 clamp(58px, 8vh, 100px);
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 22px;
  color: #d8d4e2;
  font: 500 11px/1.2 "DM Mono", monospace;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.eyebrow span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--orange);
  box-shadow: 0 0 0 5px rgba(255,130,86,.12), 0 0 24px var(--orange);
  animation: pulse 2s ease-in-out infinite;
}

h1 {
  max-width: 860px;
  margin: 0;
  font-size: clamp(54px, 7.4vw, 116px);
  font-weight: 600;
  line-height: .89;
  letter-spacing: -.065em;
}

h1 em {
  color: transparent;
  background: linear-gradient(96deg, #fff 2%, #d8c7ff 34%, var(--pink) 74%, var(--orange));
  -webkit-background-clip: text;
  background-clip: text;
  font-style: normal;
}

.intro { max-width: 560px; margin: 26px 0 0; color: var(--muted); font-size: clamp(15px, 1.4vw, 18px); line-height: 1.65; }
.intro strong { color: var(--ink); letter-spacing: .12em; }

.timer {
  display: grid;
  grid-template-columns: auto 28px auto 28px auto 28px auto;
  align-items: start;
  width: max-content;
  max-width: 100%;
  margin-top: clamp(38px, 6vh, 68px);
}

.time-unit { min-width: clamp(98px, 11vw, 158px); }
.time-unit strong {
  display: block;
  font: 500 clamp(48px, 6.3vw, 92px)/.92 "DM Mono", monospace;
  letter-spacing: -.075em;
  font-variant-numeric: tabular-nums;
  text-shadow: 0 8px 36px rgba(0,0,0,.34);
}
.time-unit span { display: block; margin-top: 13px; color: var(--dim); font: 500 10px/1 "DM Mono", monospace; letter-spacing: .18em; text-transform: uppercase; }
.time-unit--accent strong { color: var(--orange); text-shadow: 0 0 34px rgba(255, 130, 86, .18); }
.separator { padding-top: clamp(3px, .5vw, 9px); color: rgba(255,255,255,.2); font: 400 clamp(36px, 4.2vw, 64px)/1 "DM Mono", monospace; }

.launch-card {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 18px;
  width: min(790px, 100%);
  margin-top: clamp(38px, 6vh, 60px);
  padding: 18px 18px 18px 20px;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 14px;
  box-shadow: 0 24px 70px rgba(0,0,0,.2), inset 0 1px rgba(255,255,255,.04);
  backdrop-filter: blur(18px);
}

.launch-card__signal { display: flex; align-items: flex-end; gap: 3px; width: 24px; height: 24px; }
.launch-card__signal span { display: block; width: 4px; border-radius: 4px; background: var(--cyan); box-shadow: 0 0 12px rgba(107,232,255,.45); }
.launch-card__signal span:nth-child(1) { height: 7px; }
.launch-card__signal span:nth-child(2) { height: 14px; }
.launch-card__signal span:nth-child(3) { height: 21px; }

.launch-card__label { display: block; margin-bottom: 5px; color: var(--dim); font: 500 9px/1 "DM Mono", monospace; letter-spacing: .14em; text-transform: uppercase; }
.launch-card time { display: block; font-size: clamp(13px, 1.45vw, 17px); font-weight: 600; letter-spacing: -.01em; }

.launch-card button {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  height: 38px;
  padding: 0 13px;
  color: #dedbe6;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.09);
  border-radius: 9px;
  cursor: pointer;
  font-size: 11px;
  font-weight: 700;
  transition: transform .2s var(--ease), background .2s, border-color .2s;
}
.launch-card button:hover { transform: translateY(-1px); background: rgba(255,255,255,.1); border-color: rgba(255,255,255,.18); }
.launch-card button:focus-visible { outline: 2px solid var(--cyan); outline-offset: 3px; }
.launch-card button svg { width: 15px; fill: none; stroke: currentColor; stroke-width: 1.7; }

.time-note { max-width: 790px; margin: 13px 0 0; color: #716e80; font-size: 10px; line-height: 1.55; }

.intel {
  padding: clamp(86px, 10vw, 148px) 0 clamp(88px, 10vw, 142px);
  border-top: 1px solid rgba(255,255,255,.1);
}

.intel__heading {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 32px;
  margin-bottom: 38px;
}

.section-kicker {
  margin: 0 0 13px;
  color: var(--orange);
  font: 500 10px/1 "DM Mono", monospace;
  letter-spacing: .18em;
  text-transform: uppercase;
}

.intel h2 {
  margin: 0;
  font-size: clamp(34px, 4.5vw, 66px);
  font-weight: 600;
  line-height: 1;
  letter-spacing: -.055em;
}

.intel__updated {
  margin: 0;
  color: var(--dim);
  font: 400 9px/1.65 "DM Mono", monospace;
  letter-spacing: .08em;
  text-align: right;
  text-transform: uppercase;
}

.fact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.fact-card {
  position: relative;
  min-height: 245px;
  padding: 28px;
  overflow: hidden;
  background: rgba(17, 15, 31, .62);
  border: 1px solid var(--line);
  border-radius: 16px;
  box-shadow: inset 0 1px rgba(255,255,255,.035);
  backdrop-filter: blur(16px);
  transition: transform .25s var(--ease), border-color .25s, background .25s;
}

.fact-card:hover {
  transform: translateY(-3px);
  background: rgba(24, 20, 42, .72);
  border-color: rgba(255,255,255,.22);
}

.fact-card--date {
  background: linear-gradient(145deg, rgba(255,77,162,.15), rgba(17,15,31,.68) 56%);
  border-color: rgba(255,130,86,.27);
}

.fact-card__number {
  position: absolute;
  top: 21px;
  right: 23px;
  color: rgba(255,255,255,.15);
  font: 500 11px/1 "DM Mono", monospace;
}

.status-pill {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 7px 9px;
  color: #c9f7ff;
  background: rgba(107,232,255,.075);
  border: 1px solid rgba(107,232,255,.15);
  border-radius: 999px;
  font: 500 8px/1 "DM Mono", monospace;
  letter-spacing: .13em;
  text-transform: uppercase;
}

.status-pill i {
  width: 5px;
  height: 5px;
  background: var(--cyan);
  border-radius: 50%;
  box-shadow: 0 0 9px var(--cyan);
}

.fact-card h3 {
  margin: 47px 0 12px;
  font-size: 19px;
  line-height: 1.2;
  letter-spacing: -.025em;
}

.fact-card p {
  margin: 0;
  color: #9490a2;
  font-size: 12px;
  line-height: 1.7;
}

.fact-card p strong { color: #dfdce8; font-weight: 600; }

.pending-panel {
  display: grid;
  grid-template-columns: minmax(270px, .9fr) 1.1fr;
  gap: clamp(38px, 7vw, 100px);
  margin-top: 16px;
  padding: clamp(32px, 5vw, 62px);
  background:
    radial-gradient(circle at 0 0, rgba(157,120,255,.14), transparent 43%),
    rgba(12, 10, 23, .76);
  border: 1px solid var(--line);
  border-radius: 18px;
  backdrop-filter: blur(20px);
}

.pending-panel__intro { display: flex; align-items: flex-start; gap: 19px; }
.pending-panel__intro h2 { font-size: clamp(29px, 3.1vw, 45px); line-height: 1.02; }
.pending-panel__intro > div > p:last-child { max-width: 430px; margin: 20px 0 0; color: var(--muted); font-size: 12px; line-height: 1.7; }

.pending-icon {
  display: grid;
  flex: 0 0 42px;
  width: 42px;
  height: 42px;
  place-items: center;
  color: #d9cfff;
  background: rgba(157,120,255,.1);
  border: 1px solid rgba(157,120,255,.24);
  border-radius: 50%;
  font: 500 16px/1 "DM Mono", monospace;
  box-shadow: 0 0 34px rgba(157,120,255,.11);
}

.pending-list { display: grid; gap: 0; margin: 0; padding: 0; list-style: none; }
.pending-list li {
  display: flex;
  align-items: center;
  min-height: 45px;
  color: #c4c0cf;
  border-bottom: 1px solid rgba(255,255,255,.075);
  font-size: 12px;
}
.pending-list li:last-child { border-bottom: 0; }
.pending-list span { width: 38px; color: var(--dim); font: 400 8px/1 "DM Mono", monospace; }

.source-strip {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-top: 16px;
  padding: 15px 20px;
  color: var(--dim);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 12px;
  font: 500 9px/1.4 "DM Mono", monospace;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.source-strip > span { margin-right: auto; }
.source-strip a { color: #aaa6b7; text-decoration: none; transition: color .2s; }
.source-strip a:hover { color: var(--ink); }
.source-strip b { color: var(--orange); font-weight: 400; }

footer { display: flex; align-items: center; justify-content: space-between; gap: 24px; padding-top: 22px; color: #666273; border-top: 1px solid rgba(255,255,255,.08); font-size: 10px; }
footer p { margin: 0; }
footer a { text-decoration: none; transition: color .2s; }
footer a:hover { color: var(--ink); }

noscript { position: fixed; right: 20px; bottom: 20px; z-index: 4; padding: 12px 15px; color: white; background: #b5376d; border-radius: 8px; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0, 0, 0, 0); white-space: nowrap; border: 0; }

@keyframes pulse { 50% { opacity: .5; transform: scale(.8); } }
@keyframes drift { to { transform: translate(-8vw, 8vh) rotate(30deg) scale(1.08); } }

@media (max-width: 760px) {
  .scene__image { width: 120%; opacity: .23; object-position: 58% center; mask-image: linear-gradient(to bottom, transparent 0%, #000 42%, rgba(0,0,0,.4)); }
  .shell { padding: 22px 20px 18px; }
  .timezone-control label { display: none; }
  .select-wrap select { width: 155px; }
  .brand__tag { display: none; }
  .brand { grid-template-rows: auto; }
  .brand__mark { grid-row: auto; }
  .brand__word { font-size: 15px; }
  .countdown { padding: 76px 0 58px; }
  h1 { font-size: clamp(50px, 15.5vw, 76px); }
  .timer { grid-template-columns: repeat(4, 1fr); width: 100%; gap: 8px; }
  .separator { display: none; }
  .time-unit { min-width: 0; padding: 14px 4px; background: rgba(255,255,255,.035); border: 1px solid rgba(255,255,255,.07); border-radius: 10px; text-align: center; }
  .time-unit strong { font-size: clamp(33px, 10vw, 50px); letter-spacing: -.09em; }
  .time-unit span { margin-top: 10px; font-size: 8px; letter-spacing: .1em; }
  .launch-card { grid-template-columns: auto 1fr; }
  .launch-card button { grid-column: 1 / 3; justify-content: center; width: 100%; }
  .intel__heading { align-items: flex-start; flex-direction: column; }
  .intel__updated { text-align: left; }
  .fact-grid { grid-template-columns: 1fr; }
  .fact-card { min-height: 215px; }
  .pending-panel { grid-template-columns: 1fr; }
  .source-strip { align-items: flex-start; flex-direction: column; gap: 13px; }
  .source-strip > span { margin: 0 0 4px; }
  footer { align-items: flex-start; flex-direction: column; gap: 8px; }
}

@media (max-width: 430px) {
  .select-wrap select { width: 130px; padding-left: 11px; font-size: 11px; }
  .brand__word { letter-spacing: .18em; }
  .brand__mark { width: 24px; }
  .eyebrow { font-size: 9px; }
  .intro { font-size: 14px; }
}

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