:root {
  --navy: #071525;
  --navy-soft: #0d2338;
  --aqua: #45d6c8;
  --aqua-dark: #1c9e96;
  --gold: #d8a43a;
  --white: #f7fbff;
  --muted: #a8bacd;
  --line: rgba(69, 214, 200, 0.22);
  --shadow: 0 30px 90px rgba(0, 0, 0, 0.32);
}

* {
  box-sizing: border-box;
}

html {
  min-height: 100%;
}

body {
  min-height: 100vh;
  margin: 0;
  color: var(--white);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  background:
    radial-gradient(circle at 74% 20%, rgba(69, 214, 200, 0.18), transparent 28%),
    radial-gradient(circle at 20% 82%, rgba(216, 164, 58, 0.14), transparent 30%),
    linear-gradient(135deg, #040b15 0%, var(--navy) 48%, #0b1c2f 100%);
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -1;
  content: "";
  background-image:
    linear-gradient(rgba(69, 214, 200, 0.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(69, 214, 200, 0.07) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.95), transparent 86%);
}

.page-shell {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 420px);
  align-items: center;
  gap: 56px;
  width: min(1140px, calc(100% - 40px));
  min-height: 100vh;
  margin: 0 auto;
  padding: 64px 0;
}

.hero {
  max-width: 760px;
}

.brand-row {
  width: min(330px, 78vw);
  margin-bottom: 72px;
}

.brand-logo {
  display: block;
  width: 100%;
  height: auto;
  filter: drop-shadow(0 18px 36px rgba(69, 214, 200, 0.16));
}

.eyebrow {
  width: fit-content;
  margin: 0 0 18px;
  padding: 8px 13px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--aqua);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
  background: rgba(69, 214, 200, 0.08);
}

h1 {
  max-width: 820px;
  margin: 0;
  font-size: clamp(3rem, 7vw, 6.2rem);
  line-height: 0.96;
  letter-spacing: 0;
}

.intro {
  max-width: 660px;
  margin: 28px 0 0;
  color: var(--muted);
  font-size: clamp(1.05rem, 2vw, 1.24rem);
  line-height: 1.7;
}

.actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
  margin-top: 36px;
}

.primary-action,
.secondary-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 22px;
  border-radius: 8px;
  font-weight: 800;
  text-decoration: none;
  transition:
    transform 160ms ease,
    border-color 160ms ease,
    background 160ms ease,
    color 160ms ease;
}

.primary-action {
  color: #031118;
  background: var(--aqua);
  box-shadow: 0 18px 40px rgba(69, 214, 200, 0.24);
}

.secondary-action {
  border: 1px solid var(--line);
  color: var(--white);
  background: rgba(255, 255, 255, 0.04);
}

.primary-action:hover,
.primary-action:focus-visible,
.secondary-action:hover,
.secondary-action:focus-visible {
  transform: translateY(-2px);
}

.primary-action:hover,
.primary-action:focus-visible {
  background: #7af5ea;
}

.secondary-action:hover,
.secondary-action:focus-visible {
  border-color: rgba(69, 214, 200, 0.55);
  color: var(--aqua);
}

.launch-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(7, 21, 37, 0.72);
  box-shadow: var(--shadow);
}

.launch-art {
  display: block;
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  background: var(--navy-soft);
}

.launch-details {
  padding: 22px;
}

.status {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
  color: var(--aqua);
  font-weight: 800;
}

.pulse {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: var(--gold);
  box-shadow: 0 0 0 0 rgba(216, 164, 58, 0.55);
  animation: pulse 1.8s infinite;
}

ul {
  display: grid;
  gap: 11px;
  padding: 0;
  margin: 0;
  color: var(--muted);
  list-style: none;
}

li {
  position: relative;
  padding-left: 20px;
  font-weight: 700;
}

li::before {
  position: absolute;
  top: 0.62em;
  left: 0;
  width: 7px;
  height: 7px;
  content: "";
  background: var(--aqua);
}

@keyframes pulse {
  70% {
    box-shadow: 0 0 0 12px rgba(216, 164, 58, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(216, 164, 58, 0);
  }
}

@media (max-width: 900px) {
  .page-shell {
    grid-template-columns: 1fr;
    gap: 38px;
    width: min(100% - 32px, 680px);
    padding: 34px 0;
  }

  .brand-row {
    margin-bottom: 56px;
  }

  h1 {
    font-size: clamp(2.7rem, 15vw, 4.8rem);
  }
}

@media (max-width: 480px) {
  .brand-row {
    width: min(270px, 82vw);
    margin-bottom: 44px;
  }

  .actions,
  .primary-action,
  .secondary-action {
    width: 100%;
  }
}
