:root {
  --bg: #020712;
  --panel: rgba(6, 17, 31, .68);
  --panel-strong: rgba(5, 14, 26, .9);
  --line: rgba(119, 219, 255, .18);
  --cyan: #73ddff;
  --cyan-2: #12bde9;
  --blue: #3069ff;
  --text: #effaff;
  --muted: #8fa7b5;
  --warm: #d28a46;
  --shadow: 0 35px 90px rgba(0, 0, 0, .46);
}

* { box-sizing: border-box; }
html { min-height: 100%; background: var(--bg); }
body {
  margin: 0;
  min-height: 100vh;
  overflow-x: hidden;
  color: var(--text);
  background:
    radial-gradient(circle at 74% 36%, rgba(25, 141, 205, .13), transparent 32%),
    radial-gradient(circle at 12% 20%, rgba(48, 105, 255, .10), transparent 32%),
    linear-gradient(140deg, #020610 0%, #030915 46%, #02050c 100%);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  letter-spacing: .01em;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(circle at center, transparent 45%, rgba(0,0,0,.56) 115%);
  z-index: 8;
}

::selection { background: rgba(115, 221, 255, .28); color: #fff; }

#starfield {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  opacity: .85;
  pointer-events: none;
}

.aurora {
  position: fixed;
  pointer-events: none;
  filter: blur(90px);
  border-radius: 50%;
  opacity: .18;
  z-index: 0;
}
.aurora-a { width: 34vw; height: 34vw; right: -9vw; top: 19vh; background: #02c7ff; animation: driftA 12s ease-in-out infinite alternate; }
.aurora-b { width: 26vw; height: 26vw; left: -13vw; bottom: -8vw; background: #234be8; animation: driftB 15s ease-in-out infinite alternate; }

.grid-overlay {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  opacity: .17;
  background-image:
    linear-gradient(rgba(102, 200, 236, .09) 1px, transparent 1px),
    linear-gradient(90deg, rgba(102, 200, 236, .09) 1px, transparent 1px);
  background-size: 78px 78px;
  mask-image: linear-gradient(to bottom, rgba(0,0,0,.75), transparent 85%);
}

.noise {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 9;
  opacity: .038;
  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='.65'/%3E%3C/svg%3E");
}

.site-header,
.hero,
.site-footer { position: relative; z-index: 10; }

.site-header {
  width: min(1500px, calc(100% - 72px));
  margin: 0 auto;
  padding: 34px 0 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
  color: var(--text);
}

.brand-mark {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  position: relative;
  border: 1px solid rgba(115, 221, 255, .38);
  background: linear-gradient(145deg, rgba(115,221,255,.08), rgba(0,0,0,.3));
  box-shadow: inset 0 0 28px rgba(29, 190, 236, .08), 0 0 30px rgba(30, 173, 223, .08);
  clip-path: polygon(18% 0, 82% 0, 100% 18%, 100% 82%, 82% 100%, 18% 100%, 0 82%, 0 18%);
}
.brand-mark::before,
.brand-mark::after {
  content: "";
  position: absolute;
  background: var(--cyan);
  opacity: .7;
}
.brand-mark::before { width: 12px; height: 1px; top: 5px; left: 8px; }
.brand-mark::after { width: 1px; height: 12px; bottom: 7px; right: 5px; }
.brand-mark span { font-size: 22px; font-weight: 900; letter-spacing: -.06em; text-shadow: 0 0 15px rgba(115,221,255,.6); }

.brand-copy { display: grid; gap: 2px; }
.brand-copy strong { font-size: 20px; font-weight: 900; letter-spacing: .34em; line-height: 1; }
.brand-copy small { color: #718998; font-size: 8px; font-weight: 800; letter-spacing: .25em; }

.signal-pill {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #88a3b2;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .16em;
  padding: 10px 14px;
  border: 1px solid rgba(111, 207, 239, .14);
  background: rgba(4, 13, 24, .45);
  backdrop-filter: blur(12px);
}
.signal-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #69f5d3;
  box-shadow: 0 0 10px #69f5d3;
  animation: pulse 1.8s ease-in-out infinite;
}

.hero {
  width: min(1500px, calc(100% - 72px));
  margin: 0 auto;
  min-height: calc(100vh - 156px);
  display: grid;
  grid-template-columns: minmax(0, .95fr) minmax(430px, .8fr);
  gap: clamp(44px, 7vw, 120px);
  align-items: center;
  padding: 28px 0 62px;
}

.hero-copy { max-width: 780px; }
.eyebrow {
  display: flex;
  align-items: center;
  gap: 11px;
  color: var(--cyan);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .22em;
  margin-bottom: 24px;
}
.eyebrow span { display: inline-block; width: 42px; height: 1px; background: linear-gradient(90deg, var(--cyan), transparent); box-shadow: 0 0 10px rgba(115,221,255,.4); }

h1 {
  margin: 0;
  font-size: clamp(54px, 6.7vw, 106px);
  line-height: .86;
  letter-spacing: -.055em;
  font-weight: 900;
  max-width: 890px;
  text-transform: uppercase;
}
h1 em {
  display: block;
  margin-top: .12em;
  font-style: normal;
  color: transparent;
  -webkit-text-stroke: 1px rgba(182, 232, 249, .42);
  text-shadow: 0 0 45px rgba(24, 183, 230, .11);
}

.lead {
  max-width: 670px;
  margin: 31px 0 22px;
  color: #9db0bc;
  font-size: clamp(15px, 1.3vw, 18px);
  line-height: 1.72;
  font-weight: 450;
}
.lead strong { color: #dff9ff; font-weight: 800; letter-spacing: .1em; }

.platform-row {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  color: #6f8998;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: .14em;
  margin-bottom: 32px;
}
.platform-row i { width: 3px; height: 3px; background: #2caed6; border-radius: 50%; box-shadow: 0 0 8px #2caed6; }

.countdown-shell {
  position: relative;
  max-width: 670px;
  padding: 17px 19px 19px;
  border: 1px solid var(--line);
  background: linear-gradient(130deg, rgba(9, 25, 42, .66), rgba(4, 11, 20, .38));
  box-shadow: inset 0 0 55px rgba(21, 139, 186, .045), 0 18px 60px rgba(0,0,0,.22);
  backdrop-filter: blur(12px);
}
.countdown-shell::before,
.countdown-shell::after {
  content: "";
  position: absolute;
  width: 20px;
  height: 20px;
  pointer-events: none;
}
.countdown-shell::before { left: -1px; top: -1px; border-left: 2px solid var(--cyan); border-top: 2px solid var(--cyan); }
.countdown-shell::after { right: -1px; bottom: -1px; border-right: 2px solid var(--cyan); border-bottom: 2px solid var(--cyan); }

.countdown-topline {
  display: flex;
  justify-content: space-between;
  gap: 15px;
  color: #5e7e8e;
  font-size: 8px;
  font-weight: 900;
  letter-spacing: .18em;
  margin: 0 2px 13px;
}
.countdown-topline span:last-child { color: #78aabb; }

.countdown {
  display: grid;
  grid-template-columns: 1.3fr auto 1fr auto 1fr auto 1fr;
  gap: clamp(7px, 1.1vw, 16px);
  align-items: center;
}
.time-card {
  min-width: 0;
  display: grid;
  gap: 4px;
}
.time-card strong {
  font-variant-numeric: tabular-nums;
  color: #e8fbff;
  font-size: clamp(31px, 4.1vw, 58px);
  line-height: 1;
  font-weight: 850;
  letter-spacing: -.04em;
  text-shadow: 0 0 28px rgba(73, 209, 255, .13);
}
.time-card span { color: #688492; font-size: 8px; font-weight: 900; letter-spacing: .22em; }
.separator { align-self: start; margin-top: clamp(7px, .7vw, 11px); color: rgba(115,221,255,.38); font-size: clamp(24px, 2.6vw, 40px); font-weight: 300; }

.cta-row {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 27px;
}
.primary-cta {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  min-width: 216px;
  padding: 14px 17px;
  text-decoration: none;
  color: #031019;
  background: linear-gradient(110deg, #8ee8ff 0%, #4fd1f5 45%, #65dff7 100%);
  font-size: 10px;
  font-weight: 950;
  letter-spacing: .15em;
  box-shadow: 0 0 40px rgba(64, 204, 244, .14);
  transition: transform .25s ease, box-shadow .25s ease;
  clip-path: polygon(0 0, calc(100% - 13px) 0, 100% 13px, 100% 100%, 13px 100%, 0 calc(100% - 13px));
}
.primary-cta:hover { transform: translateY(-2px); box-shadow: 0 0 46px rgba(64, 204, 244, .27); }
.primary-cta svg { width: 20px; height: 20px; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.availability { color: #526b79; font-size: 8px; font-weight: 900; letter-spacing: .18em; }

.mascot-stage {
  position: relative;
  justify-self: end;
  width: min(100%, 595px);
  aspect-ratio: .83;
  display: grid;
  place-items: center;
  isolation: isolate;
}
.mascot-stage::before {
  content: "";
  position: absolute;
  inset: 8% 4% 1%;
  border: 1px solid rgba(96, 199, 232, .09);
  background: linear-gradient(145deg, rgba(20, 69, 94, .08), rgba(2, 7, 13, .02));
  clip-path: polygon(14% 0, 86% 0, 100% 14%, 100% 86%, 86% 100%, 14% 100%, 0 86%, 0 14%);
  z-index: -5;
}

.mascot-card {
  position: relative;
  margin: 0;
  width: 80%;
  height: 87%;
  overflow: hidden;
  border: 1px solid rgba(104, 206, 241, .20);
  background: #06101d;
  box-shadow: var(--shadow), 0 0 85px rgba(16, 171, 222, .09);
  clip-path: polygon(13% 0, 100% 0, 100% 89%, 88% 100%, 0 100%, 0 11%);
}
.mascot-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  background: linear-gradient(135deg, rgba(99,220,255,.10), transparent 28%, transparent 70%, rgba(43,92,255,.11));
  pointer-events: none;
}
.mascot-card img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: 51% 29%;
  filter: saturate(.92) contrast(1.04) brightness(.91);
  transform: scale(1.01);
}
.mascot-vignette {
  position: absolute;
  inset: 0;
  z-index: 3;
  background:
    linear-gradient(to top, rgba(0, 7, 14, .82) 0%, transparent 34%),
    radial-gradient(circle at 50% 40%, transparent 34%, rgba(0, 7, 14, .18) 90%);
  pointer-events: none;
}

.mascot-glow {
  position: absolute;
  z-index: -6;
  width: 66%;
  height: 66%;
  border-radius: 50%;
  background: rgba(21, 182, 234, .18);
  filter: blur(85px);
  animation: breathe 4s ease-in-out infinite alternate;
}

.orbit {
  position: absolute;
  border: 1px solid rgba(113, 217, 251, .08);
  border-radius: 50%;
  pointer-events: none;
  z-index: -7;
}
.orbit::after {
  content: "";
  position: absolute;
  top: 50%;
  right: -3px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #77e2ff;
  box-shadow: 0 0 14px #77e2ff;
}
.orbit-1 { width: 94%; aspect-ratio: 1; animation: spin 30s linear infinite; }
.orbit-2 { width: 112%; aspect-ratio: 1; opacity: .55; animation: spinReverse 46s linear infinite; }

.scanline {
  position: absolute;
  z-index: 8;
  width: 76%;
  height: 1px;
  top: 18%;
  background: linear-gradient(90deg, transparent, rgba(123, 228, 255, .7), transparent);
  box-shadow: 0 0 14px rgba(123, 228, 255, .45);
  opacity: .42;
  animation: scan 7s ease-in-out infinite;
  pointer-events: none;
}

.hud {
  position: absolute;
  z-index: 9;
  min-width: 146px;
  padding: 10px 12px;
  border-left: 1px solid rgba(115, 221, 255, .62);
  background: linear-gradient(90deg, rgba(3, 12, 21, .78), rgba(3, 12, 21, .12));
  backdrop-filter: blur(7px);
  display: grid;
  gap: 3px;
}
.hud span { color: #5d8292; font-size: 7px; font-weight: 900; letter-spacing: .23em; }
.hud strong { color: #cceef7; font-size: 10px; letter-spacing: .13em; }
.hud-top { right: 1%; top: 15%; }
.hud-bottom { left: 2%; bottom: 12%; }
.hud-kicker::after { content: " •"; color: #64f5d2; }
.coordinate {
  position: absolute;
  right: -7px;
  bottom: 6%;
  color: rgba(116, 177, 197, .56);
  font-size: 7px;
  font-weight: 800;
  letter-spacing: .2em;
  writing-mode: vertical-rl;
  transform: rotate(180deg);
}

.site-footer {
  width: min(1500px, calc(100% - 72px));
  margin: -42px auto 0;
  padding: 0 0 28px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 18px;
  align-items: center;
  color: #405a68;
  font-size: 7px;
  font-weight: 900;
  letter-spacing: .17em;
}
.site-footer p { margin: 0; }
.footer-line { height: 1px; background: linear-gradient(90deg, rgba(100,190,220,.11), rgba(100,190,220,.34), rgba(100,190,220,.05)); }
.footer-status { display: flex; align-items: center; gap: 7px; }
.footer-status span { width: 4px; height: 4px; background: #45c9ef; border-radius: 50%; box-shadow: 0 0 8px #45c9ef; }

@keyframes pulse { 0%, 100% { opacity: .45; transform: scale(.82); } 50% { opacity: 1; transform: scale(1); } }
@keyframes breathe { from { opacity: .14; transform: scale(.92); } to { opacity: .29; transform: scale(1.08); } }
@keyframes spin { to { transform: rotate(360deg); } }
@keyframes spinReverse { to { transform: rotate(-360deg); } }
@keyframes scan { 0%, 14% { transform: translateY(0); opacity: 0; } 25% { opacity: .45; } 62% { transform: translateY(445px); opacity: .3; } 75%, 100% { transform: translateY(445px); opacity: 0; } }
@keyframes driftA { to { transform: translate(-3vw, 3vh) scale(1.08); } }
@keyframes driftB { to { transform: translate(4vw, -4vh) scale(.92); } }

@media (max-width: 1080px) {
  .hero {
    grid-template-columns: 1fr .78fr;
    gap: 30px;
  }
  h1 { font-size: clamp(52px, 7.3vw, 82px); }
  .mascot-stage { width: min(100%, 480px); }
  .site-footer { margin-top: -25px; }
}

@media (max-width: 820px) {
  body { overflow-x: hidden; }
  .site-header, .hero, .site-footer { width: min(100% - 34px, 720px); }
  .site-header { padding-top: 23px; }
  .signal-pill { display: none; }
  .hero {
    min-height: auto;
    grid-template-columns: 1fr;
    gap: 26px;
    padding-top: 46px;
  }
  .hero-copy { max-width: none; }
  .mascot-stage { grid-row: 1; justify-self: center; width: min(92vw, 480px); aspect-ratio: 1; margin-top: -12px; }
  .mascot-card { width: 72%; height: 92%; }
  .mascot-card img { object-position: 51% 25%; }
  .hud-top { right: 3%; top: 12%; }
  .hud-bottom { left: 4%; bottom: 10%; }
  .scanline { width: 70%; }
  h1 { font-size: clamp(52px, 14vw, 85px); }
  .lead { margin-top: 24px; }
  .countdown-shell { max-width: none; }
  .site-footer { margin-top: 10px; grid-template-columns: 1fr auto; }
  .footer-line { display: none; }
}

@media (max-width: 520px) {
  .brand-mark { width: 42px; height: 42px; }
  .brand-copy strong { font-size: 17px; }
  .hero { padding-top: 28px; }
  .mascot-stage { width: 105%; left: -2.5%; }
  .mascot-card { width: 76%; height: 92%; }
  .hud { min-width: 126px; }
  .eyebrow { font-size: 9px; margin-bottom: 18px; }
  h1 { font-size: clamp(47px, 14.4vw, 72px); }
  .lead { font-size: 14px; line-height: 1.66; }
  .platform-row { gap: 8px; }
  .countdown-shell { padding: 14px 12px 16px; }
  .countdown-topline { font-size: 6.5px; letter-spacing: .12em; }
  .countdown { gap: 5px; grid-template-columns: 1.28fr auto 1fr auto 1fr auto 1fr; }
  .time-card strong { font-size: clamp(27px, 9.6vw, 42px); }
  .time-card span { font-size: 6px; letter-spacing: .14em; }
  .separator { font-size: 22px; margin-top: 5px; }
  .cta-row { align-items: stretch; flex-direction: column; gap: 12px; }
  .primary-cta { width: 100%; }
  .availability { padding-left: 2px; }
  .site-footer { font-size: 6px; grid-template-columns: 1fr; gap: 9px; }
}

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