:root {
  --black: #020407;
  --white: #ffffff;
  --muted: rgba(255, 255, 255, 0.72);
  --line: rgba(255, 255, 255, 0.12);
  --blue: #00aeef;
  --green: #72df36;
  --yellow: #ffd33d;
  --orange: #ff8a1d;
  --red: #ff3f62;
}

* { box-sizing: border-box; }

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

body {
  margin: 0;
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: var(--black);
  color: var(--white);
}

.page {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 24px;
  background:
    radial-gradient(circle at 20% 20%, rgba(0, 174, 239, 0.18), transparent 28%),
    radial-gradient(circle at 85% 30%, rgba(255, 63, 98, 0.12), transparent 26%),
    radial-gradient(circle at 50% 100%, rgba(114, 223, 54, 0.12), transparent 32%),
    #020407;
}

.hero {
  position: relative;
  overflow: hidden;
  width: min(1160px, 100%);
  min-height: min(760px, calc(100vh - 48px));
  border: 1px solid var(--line);
  border-radius: 34px;
  padding: clamp(28px, 5vw, 64px);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.02)),
    rgba(255, 255, 255, 0.025);
  box-shadow: 0 40px 120px rgba(0, 0, 0, 0.45);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px),
    linear-gradient(rgba(255,255,255,0.035) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: radial-gradient(circle at center, black, transparent 72%);
  opacity: 0.5;
  pointer-events: none;
}

.glow {
  position: absolute;
  border-radius: 999px;
  filter: blur(80px);
  opacity: 0.42;
  pointer-events: none;
}

.glow-blue {
  width: 340px;
  height: 340px;
  background: var(--blue);
  left: -120px;
  top: -90px;
}

.glow-green {
  width: 260px;
  height: 260px;
  background: var(--green);
  right: 10%;
  top: 12%;
}

.glow-orange {
  width: 300px;
  height: 300px;
  background: var(--orange);
  right: -100px;
  bottom: -100px;
}

.brand, .content, .footer {
  position: relative;
  z-index: 2;
}

.brand {
  display: flex;
  justify-content: center;
}

.brand-logo {
  width: min(360px, 78vw);
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 0 28px rgba(0, 174, 239, 0.22));
}

.content {
  max-width: 920px;
  margin: 48px auto;
  text-align: center;
}

.eyebrow {
  margin: 0 0 18px;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--blue);
}

h1 {
  margin: 0;
  font-size: clamp(44px, 8vw, 104px);
  line-height: 0.94;
  letter-spacing: -0.07em;
  font-weight: 900;
}

.lead {
  width: min(760px, 100%);
  margin: 28px auto 0;
  color: var(--muted);
  font-size: clamp(18px, 2.2vw, 26px);
  line-height: 1.45;
  font-weight: 500;
}

.journey {
  margin: 38px auto 0;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
}

.journey span {
  padding: 12px 16px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.06);
  font-size: 13px;
  font-weight: 800;
  color: rgba(255, 255, 255, 0.9);
}

.journey span:nth-child(1) { box-shadow: inset 0 -2px 0 var(--blue); }
.journey span:nth-child(2) { box-shadow: inset 0 -2px 0 var(--green); }
.journey span:nth-child(3) { box-shadow: inset 0 -2px 0 var(--yellow); }
.journey span:nth-child(4) { box-shadow: inset 0 -2px 0 var(--orange); }
.journey span:nth-child(5) { box-shadow: inset 0 -2px 0 var(--red); }

.coming-soon {
  margin: 38px auto 0;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 15px 20px;
  border-radius: 999px;
  border: 1px solid rgba(0, 174, 239, 0.28);
  background: rgba(0, 174, 239, 0.08);
  color: rgba(255, 255, 255, 0.92);
}

.pulse {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: var(--blue);
  animation: pulse 1.6s infinite;
}

@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(0, 174, 239, 0.6); }
  70% { box-shadow: 0 0 0 13px rgba(0, 174, 239, 0); }
  100% { box-shadow: 0 0 0 0 rgba(0, 174, 239, 0); }
}

.footer {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px 24px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
  color: rgba(255, 255, 255, 0.52);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

@media (max-width: 680px) {
  .page { padding: 12px; }
  .hero {
    min-height: calc(100vh - 24px);
    border-radius: 24px;
  }
  .content { margin: 34px auto; }
  .footer { letter-spacing: 0.08em; }
}
