:root {
  --bg: #08111f;
  --panel: #0f1b2d;
  --panel-border: rgba(111, 196, 255, 0.22);
  --text: #f7fbff;
  --muted: #9fb0c6;
  --blue: #1f7aff;
  --cyan: #39d5ff;
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  background:
    radial-gradient(circle at 24% 18%, rgba(57, 213, 255, 0.16), transparent 34%),
    radial-gradient(circle at 78% 72%, rgba(31, 122, 255, 0.18), transparent 32%),
    linear-gradient(135deg, #060b14 0%, var(--bg) 54%, #0a1729 100%);
  color: var(--text);
  font-family: "Segoe UI", system-ui, -apple-system, BlinkMacSystemFont, Arial, sans-serif;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.045) 1px, transparent 1px) 0 0 / 48px 48px,
    linear-gradient(0deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px) 0 0 / 48px 48px;
  mask-image: linear-gradient(to bottom, black, transparent 84%);
}

.lander {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 100vh;
  padding: 32px;
}

.launch-panel {
  width: min(720px, 100%);
  padding: clamp(34px, 6vw, 64px);
  background: linear-gradient(180deg, rgba(15, 27, 45, 0.92), rgba(10, 20, 35, 0.88));
  border: 1px solid var(--panel-border);
  border-radius: 18px;
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.36);
  text-align: center;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 44px;
}

.logo-mark {
  position: relative;
  display: block;
  width: 54px;
  height: 54px;
  border: 1px solid rgba(57, 213, 255, 0.46);
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(31, 122, 255, 0.28), rgba(57, 213, 255, 0.12));
  box-shadow: 0 0 34px rgba(57, 213, 255, 0.2);
}

.logo-bar {
  position: absolute;
  left: 14px;
  width: 26px;
  height: 5px;
  border-radius: 999px;
  background: var(--cyan);
}

.logo-bar-one {
  top: 18px;
  transform: rotate(-28deg);
}

.logo-bar-two {
  top: 30px;
  background: var(--blue);
  transform: rotate(28deg);
}

.logo-dot {
  position: absolute;
  right: 11px;
  bottom: 10px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--cyan);
}

.logo-text {
  font-size: clamp(28px, 5vw, 42px);
  font-weight: 800;
  letter-spacing: -0.03em;
}

.status {
  margin: 0 0 16px;
  color: var(--cyan);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

h1 {
  max-width: 620px;
  margin: 0 auto 18px;
  font-size: clamp(36px, 7vw, 68px);
  line-height: 0.98;
  letter-spacing: -0.045em;
}

.summary {
  max-width: 560px;
  margin: 0 auto 34px;
  color: var(--muted);
  font-size: clamp(17px, 2vw, 20px);
  line-height: 1.55;
}

.email-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 20px;
  border: 1px solid rgba(57, 213, 255, 0.38);
  border-radius: 999px;
  background: rgba(57, 213, 255, 0.08);
  color: var(--text);
  font-weight: 700;
  text-decoration: none;
}

.email-link:hover {
  border-color: rgba(57, 213, 255, 0.72);
  background: rgba(57, 213, 255, 0.14);
}

@media (max-width: 560px) {
  .lander {
    padding: 18px;
  }

  .launch-panel {
    border-radius: 14px;
  }

  .logo {
    flex-direction: column;
    margin-bottom: 34px;
  }
}
