:root {
  color-scheme: dark;
  --ink: #020b13;
  --deep: #031b2a;
  --cyan: #2ed7e5;
  --orange: #ff9d4d;
  --paper: #f4f5f2;
  --muted: #a8bac3;
}

* { box-sizing: border-box; }

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

body {
  overflow: hidden;
  background: var(--ink);
  color: var(--paper);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.launch {
  position: relative;
  display: grid;
  min-height: 100svh;
  place-items: center;
  isolation: isolate;
  overflow: hidden;
  padding: clamp(24px, 4vw, 60px);
  background:
    radial-gradient(circle at 50% 8%, rgba(40, 182, 207, .20), transparent 28%),
    linear-gradient(180deg, #041d2c 0%, #031522 47%, #020910 100%);
}

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

.launch::before {
  top: -58vh;
  left: 50%;
  width: min(1280px, 120vw);
  height: 84vh;
  border: 1px solid rgba(87, 222, 237, .18);
  box-shadow: 0 0 120px rgba(32, 182, 207, .10), inset 0 -80px 120px rgba(56, 211, 224, .06);
  transform: translateX(-50%);
}

.launch::after {
  bottom: -45vw;
  left: 50%;
  width: 90vw;
  height: 55vw;
  border: 1px solid rgba(255, 157, 77, .11);
  box-shadow: 0 0 160px rgba(255, 120, 53, .08);
  transform: translateX(-50%);
}

.launch__grain {
  position: absolute;
  inset: 0;
  z-index: -1;
  opacity: .17;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 160 160' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.16'/%3E%3C/svg%3E");
}

.launch__light { position: absolute; z-index: -1; border-radius: 50%; filter: blur(80px); opacity: .16; }
.launch__light--cyan { width: 32vw; height: 32vw; left: -13vw; top: 20%; background: var(--cyan); }
.launch__light--orange { width: 26vw; height: 26vw; right: -11vw; bottom: 7%; background: var(--orange); }

.launch__content {
  width: min(1040px, 100%);
  text-align: center;
  animation: rise 1.25s cubic-bezier(.2,.8,.2,1) both;
}

.launch__mark {
  display: grid;
  gap: 5px;
  width: 62px;
  height: 62px;
  margin: 0 auto 14px;
  place-content: center;
  border: 1px solid rgba(46, 215, 229, .75);
  border-radius: 50%;
  box-shadow: 0 0 35px rgba(46, 215, 229, .13);
}

.launch__mark span {
  display: block;
  width: 29px;
  height: 3px;
  border-radius: 50%;
  background: linear-gradient(90deg, transparent, var(--orange) 18% 82%, transparent);
}

.launch__brand { margin: 0; font-size: 13px; font-weight: 900; letter-spacing: .35em; }
.launch__eyebrow { margin: clamp(32px, 5vh, 56px) 0 12px; color: var(--cyan); font-size: 11px; font-weight: 800; letter-spacing: .42em; }

h1 {
  margin: 0;
  font-size: clamp(50px, 8.8vw, 118px);
  line-height: .87;
  letter-spacing: -.065em;
}

h1 span, h1 em { display: block; }
h1 span { font-weight: 900; }
h1 em {
  color: #ff634d;
  font-family: Georgia, "Times New Roman", serif;
  font-size: .84em;
  font-weight: 400;
  letter-spacing: -.045em;
}

.launch__intro { margin: 23px auto 0; color: var(--muted); font-size: clamp(14px, 1.4vw, 18px); letter-spacing: .025em; }

.countdown {
  display: grid;
  grid-template-columns: minmax(95px, 1fr) auto minmax(95px, 1fr) auto minmax(95px, 1fr) auto minmax(95px, 1fr);
  align-items: center;
  width: min(790px, 100%);
  margin: clamp(30px, 5vh, 58px) auto 0;
  padding: clamp(20px, 3vw, 32px);
  border: 1px solid rgba(173, 225, 231, .17);
  border-radius: 28px;
  background: linear-gradient(135deg, rgba(11, 45, 60, .82), rgba(2, 13, 22, .72));
  box-shadow: 0 25px 80px rgba(0, 0, 0, .28), inset 0 1px rgba(255, 255, 255, .05);
  backdrop-filter: blur(14px);
}

.countdown__unit { min-width: 0; }
.countdown__unit strong {
  display: block;
  font-size: clamp(38px, 6vw, 69px);
  font-variant-numeric: tabular-nums;
  font-weight: 800;
  line-height: 1;
  letter-spacing: -.055em;
  text-shadow: 0 0 28px rgba(46, 215, 229, .13);
}
.countdown__unit--seconds strong { color: var(--orange); }
.countdown__unit span { display: block; margin-top: 9px; color: #88a5af; font-size: 10px; font-weight: 800; letter-spacing: .2em; text-transform: uppercase; }
.countdown b { align-self: start; margin-top: .13em; color: rgba(136, 202, 211, .42); font-size: clamp(32px, 4.6vw, 55px); font-weight: 300; }

.launch__date { display: flex; align-items: center; justify-content: center; gap: 16px; margin-top: 25px; }
.launch__date span { width: clamp(30px, 7vw, 90px); height: 1px; background: linear-gradient(90deg, transparent, rgba(46, 215, 229, .65)); }
.launch__date span:last-child { transform: scaleX(-1); }
.launch__date p { margin: 0; color: #c4d2d6; font-size: 11px; font-weight: 700; letter-spacing: .21em; }
.launch__signature { margin: 18px 0 0; color: rgba(211, 226, 229, .5); font-family: Georgia, serif; font-size: 13px; font-style: italic; letter-spacing: .08em; }

.launch__depth { position: absolute; right: clamp(13px, 3vw, 45px); top: 50%; display: flex; flex-direction: column; align-items: center; gap: 15px; color: rgba(138, 199, 208, .43); font-size: 8px; font-weight: 700; letter-spacing: .14em; transform: translateY(-50%); }
.launch__depth::before { content: ""; position: absolute; top: 28px; bottom: 28px; width: 1px; background: rgba(80, 194, 209, .18); }
.launch__depth i { z-index: 1; width: 5px; height: 5px; border-radius: 50%; background: #3ccedb; box-shadow: 0 0 14px #2ed7e5; }

.launch__bubbles i { position: absolute; bottom: -20px; width: 5px; height: 5px; border: 1px solid rgba(120, 222, 235, .35); border-radius: 50%; animation: bubble 13s linear infinite; }
.launch__bubbles i:nth-child(1) { left: 8%; animation-delay: -3s; }
.launch__bubbles i:nth-child(2) { left: 18%; width: 9px; height: 9px; animation-delay: -8s; animation-duration: 16s; }
.launch__bubbles i:nth-child(3) { left: 33%; animation-delay: -1s; animation-duration: 11s; }
.launch__bubbles i:nth-child(4) { left: 48%; width: 7px; height: 7px; animation-delay: -10s; }
.launch__bubbles i:nth-child(5) { left: 61%; animation-delay: -6s; animation-duration: 15s; }
.launch__bubbles i:nth-child(6) { left: 73%; width: 10px; height: 10px; animation-delay: -12s; animation-duration: 18s; }
.launch__bubbles i:nth-child(7) { left: 86%; animation-delay: -4s; }
.launch__bubbles i:nth-child(8) { left: 94%; width: 7px; height: 7px; animation-delay: -9s; animation-duration: 17s; }

@keyframes rise { from { opacity: 0; transform: translateY(24px) scale(.985); } to { opacity: 1; transform: none; } }
@keyframes bubble { 0% { transform: translateY(0) scale(.5); opacity: 0; } 15% { opacity: .8; } 100% { transform: translateY(-110vh) translateX(22px) scale(1.25); opacity: 0; } }

@media (max-width: 680px) {
  .launch { padding: 22px 14px; }
  .launch__eyebrow { margin-top: 24px; }
  .launch__intro { max-width: 320px; line-height: 1.5; }
  .countdown { grid-template-columns: repeat(4, 1fr); gap: 5px; padding: 20px 8px; border-radius: 22px; }
  .countdown b { display: none; }
  .countdown__unit span { font-size: 8px; letter-spacing: .1em; }
  .launch__depth { display: none; }
}

@media (max-height: 690px) and (min-width: 681px) {
  .launch__mark { width: 48px; height: 48px; margin-bottom: 9px; }
  .launch__eyebrow { margin-top: 19px; }
  .launch__intro { margin-top: 14px; }
  .countdown { margin-top: 20px; padding-block: 17px; }
  .launch__date { margin-top: 15px; }
  .launch__signature { margin-top: 9px; }
}

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