:root {
  color-scheme: dark;
  --bg: #0c1116;
  --ink: #f7f4ec;
  --muted: #b8c2c5;
  --quiet: #7f8b8f;
  --line: rgba(255, 255, 255, 0.14);
  --teal: #48d6c5;
  --amber: #e8ad5f;
  --panel: rgba(12, 17, 22, 0.7);
}

* {
  box-sizing: border-box;
}

html {
  min-height: 100%;
  background: var(--bg);
}

body {
  min-height: 100%;
  margin: 0;
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--bg);
}

a {
  color: inherit;
}

.launch-shell {
  min-height: 100vh;
  overflow: hidden;
  background:
    radial-gradient(circle at 12% 24%, rgba(72, 214, 197, 0.16), transparent 28rem),
    radial-gradient(circle at 88% 72%, rgba(232, 173, 95, 0.12), transparent 30rem),
    var(--bg);
}

.hero {
  position: relative;
  min-height: 76vh;
  display: grid;
  align-items: center;
  padding: clamp(2rem, 5vw, 5rem);
  isolation: isolate;
}

.hero__image,
.hero__overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero__image {
  z-index: -2;
  object-fit: cover;
  object-position: center;
  filter: saturate(0.95) contrast(1.08);
}

.hero__overlay {
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(12, 17, 22, 0.96) 0%, rgba(12, 17, 22, 0.82) 42%, rgba(12, 17, 22, 0.34) 100%),
    linear-gradient(0deg, var(--bg) 0%, rgba(12, 17, 22, 0) 34%),
    rgba(12, 17, 22, 0.16);
}

.hero__content {
  width: min(44rem, 100%);
  padding-top: 2rem;
}

.eyebrow {
  width: fit-content;
  margin: 0 0 1.25rem;
  padding: 0.5rem 0.75rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  color: var(--teal);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

h1 {
  max-width: 12ch;
  margin: 0;
  font-size: clamp(3.25rem, 9vw, 7.7rem);
  line-height: 0.92;
  letter-spacing: 0;
  text-wrap: balance;
}

.hero__copy {
  max-width: 38rem;
  margin: 1.5rem 0 0;
  color: var(--muted);
  font-size: clamp(1rem, 1.7vw, 1.25rem);
  line-height: 1.7;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.9rem;
  margin-top: 2rem;
}

.button,
.status-pill {
  min-height: 3rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  font-weight: 700;
  white-space: nowrap;
}

.button {
  padding: 0 1.15rem;
  text-decoration: none;
  transition:
    transform 180ms ease,
    background 180ms ease,
    border-color 180ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button--primary {
  border: 1px solid rgba(72, 214, 197, 0.42);
  background: var(--teal);
  color: #06100f;
  box-shadow: 0 18px 48px rgba(72, 214, 197, 0.18);
}

.status-pill {
  gap: 0.55rem;
  padding: 0 1rem;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.07);
  color: var(--ink);
}

.status-pill__dot {
  width: 0.58rem;
  height: 0.58rem;
  border-radius: 50%;
  background: var(--amber);
  box-shadow: 0 0 0 0 rgba(232, 173, 95, 0.45);
  animation: pulse 1.9s ease-out infinite;
}

.preview-band {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  padding: 0 clamp(1rem, 5vw, 5rem) clamp(1rem, 4vw, 3rem);
}

.preview-band article {
  min-height: 13rem;
  padding: clamp(1.25rem, 3vw, 2rem);
  border: 1px solid var(--line);
  background: var(--panel);
  backdrop-filter: blur(18px);
}

.preview-band article:first-child {
  border-radius: 8px 0 0 8px;
}

.preview-band article:last-child {
  border-radius: 0 8px 8px 0;
}

.preview-band span {
  color: var(--amber);
  font-weight: 800;
  font-size: 0.82rem;
}

.preview-band h2 {
  margin: 1.1rem 0 0.65rem;
  font-size: 1rem;
  letter-spacing: 0;
}

.preview-band p {
  max-width: 24rem;
  margin: 0;
  color: var(--quiet);
  line-height: 1.6;
}

@keyframes pulse {
  70% {
    box-shadow: 0 0 0 0.7rem rgba(232, 173, 95, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(232, 173, 95, 0);
  }
}

@media (max-width: 860px) {
  .hero {
    min-height: 70svh;
    align-items: center;
    padding: 1.5rem;
  }

  .hero__overlay {
    background:
      linear-gradient(0deg, var(--bg) 0%, rgba(12, 17, 22, 0.74) 54%, rgba(12, 17, 22, 0.2) 100%),
      rgba(12, 17, 22, 0.26);
  }

  .hero__content {
    max-width: 34rem;
    padding-top: 5rem;
  }

  h1 {
    max-width: 14ch;
    font-size: clamp(2.45rem, 11vw, 4.15rem);
    line-height: 1;
  }

  .hero__copy {
    max-width: 31rem;
    margin-top: 1.15rem;
    font-size: clamp(0.98rem, 3.4vw, 1.12rem);
    line-height: 1.58;
  }

  .hero__actions {
    margin-top: 1.5rem;
  }

  .eyebrow {
    margin-bottom: 1rem;
    font-size: 0.72rem;
  }

  .preview-band {
    grid-template-columns: 1fr;
    gap: 0.75rem;
    padding: 0 1.5rem 1.5rem;
  }

  .preview-band article,
  .preview-band article:first-child,
  .preview-band article:last-child {
    min-height: auto;
    padding: 1.15rem;
    border-radius: 8px;
  }

  .preview-band h2 {
    margin-top: 0.85rem;
  }
}

@media (max-width: 460px) {
  .hero {
    min-height: 68svh;
    padding: 1.15rem;
  }

  .hero__content {
    padding-top: 3.5rem;
  }

  h1 {
    font-size: clamp(2.15rem, 10.8vw, 3rem);
  }

  .hero__actions {
    align-items: stretch;
    flex-direction: column;
    gap: 0.7rem;
  }

  .button,
  .status-pill {
    width: 100%;
    min-height: 2.85rem;
  }

  .preview-band {
    padding: 0 1.15rem 1.15rem;
  }
}
