* {
  box-sizing: border-box;
}

html, body {
  margin: 0;
  min-height: 100%;
  font-family: Inter, Arial, sans-serif;
  color: #ffffff;
  background: #041427;
}

body {
  overflow-x: hidden;
}

.page {
  min-height: 100vh;
  background:
    radial-gradient(circle at 50% 18%, rgba(80, 210, 255, .28), transparent 30%),
    radial-gradient(circle at 15% 85%, rgba(18, 104, 207, .35), transparent 32%),
    linear-gradient(135deg, #03111f 0%, #062b52 45%, #020813 100%);
}

.hero {
  min-height: 100vh;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 34px 18px;
  isolation: isolate;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.045) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: radial-gradient(circle at center, black, transparent 72%);
  z-index: -2;
}

.glow {
  position: absolute;
  width: 360px;
  height: 360px;
  border-radius: 50%;
  filter: blur(48px);
  opacity: .45;
  z-index: -1;
}

.glow-one {
  top: 10%;
  right: 12%;
  background: #24c7ff;
}

.glow-two {
  bottom: 10%;
  left: 10%;
  background: #0b64d8;
}

.card {
  width: min(740px, 100%);
  padding: clamp(32px, 6vw, 64px);
  text-align: center;
  border: 1px solid rgba(151, 222, 255, .34);
  border-radius: 34px;
  background: linear-gradient(180deg, rgba(8, 37, 69, .78), rgba(2, 14, 29, .9));
  box-shadow:
    0 30px 90px rgba(0, 0, 0, .55),
    inset 0 1px 0 rgba(255, 255, 255, .16);
  backdrop-filter: blur(18px);
}

.logo-wrap {
  width: 190px;
  height: 150px;
  margin: 0 auto 18px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(72, 213, 255, .35), rgba(5, 30, 59, .04) 62%);
}

.ship {
  width: 165px;
  max-width: 100%;
  filter: drop-shadow(0 22px 24px rgba(20, 205, 255, .22));
  animation: floatShip 4.5s ease-in-out infinite;
}

.eyebrow {
  margin: 0 0 10px;
  font-size: 13px;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: #9fe9ff;
  font-weight: 800;
}

h1 {
  margin: 0;
  font-size: clamp(52px, 10vw, 104px);
  line-height: .9;
  font-weight: 900;
  letter-spacing: -.06em;
  text-transform: uppercase;
  text-shadow: 0 0 30px rgba(89, 211, 255, .4);
}

h1 span {
  color: #65ddff;
}

h2 {
  margin: 18px 0 12px;
  font-size: clamp(24px, 5vw, 42px);
  letter-spacing: .12em;
  text-transform: uppercase;
  color: #dff8ff;
}

.intro {
  max-width: 570px;
  margin: 0 auto 28px;
  color: #b8d7ec;
  font-size: 18px;
  line-height: 1.65;
}

.launch-box {
  display: flex;
  gap: 18px;
  align-items: center;
  justify-content: space-between;
  margin: 0 auto;
  padding: 16px;
  max-width: 560px;
  border-radius: 20px;
  border: 1px solid rgba(140, 222, 255, .3);
  background: rgba(255, 255, 255, .07);
}

.launch-box div {
  text-align: left;
}

.launch-box strong,
.launch-box small {
  display: block;
}

.launch-box strong {
  font-size: 16px;
}

.launch-box small {
  margin-top: 5px;
  color: #a9cce2;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border-radius: 999px;
  color: #02101f;
  text-decoration: none;
  font-weight: 900;
  background: linear-gradient(135deg, #eafcff, #4bd6ff 45%, #1a8fff);
  box-shadow: 0 14px 35px rgba(36, 188, 255, .32);
}

.footer {
  margin: 24px 0 0;
  color: rgba(207, 238, 255, .62);
  font-size: 13px;
}

@keyframes floatShip {
  0%, 100% { transform: translateY(0) rotate(-1.5deg); }
  50% { transform: translateY(-14px) rotate(1.5deg); }
}

@media (max-width: 620px) {
  .card {
    border-radius: 26px;
  }

  .launch-box {
    flex-direction: column;
    align-items: stretch;
    text-align: center;
  }

  .launch-box div {
    text-align: center;
  }
}
