:root {
  --brand-yellow: #ffd400;
  --brand-yellow-dark: #e7bf00;
  --ink: #080808;
  --surface: rgba(18, 18, 18, 0.86);
  --surface-border: rgba(255, 255, 255, 0.12);
  --text-soft: rgba(255, 255, 255, 0.72);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  background: var(--ink);
  color: #fff;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.landing-shell {
  position: relative;
  min-height: 100vh;
  isolation: isolate;
  overflow: hidden;
}

.hero-backdrop {
  position: fixed;
  inset: 0;
  z-index: -3;
  background:
    radial-gradient(circle at 78% 20%, rgba(255, 212, 0, 0.18), transparent 24rem),
    radial-gradient(circle at 12% 80%, rgba(255, 212, 0, 0.08), transparent 24rem),
    linear-gradient(115deg, #030303 0%, #111 45%, #070707 100%);
}

/* Replace this background later with:
   background-image: url("/assets/img/hero.jpg");
   background-size: cover;
   background-position: center;
*/
.hero-backdrop::after {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.23;
  background-image:
    repeating-linear-gradient(
      128deg,
      transparent 0 42px,
      rgba(255,255,255,.04) 43px 44px,
      transparent 45px 88px
    );
}

.hero-overlay {
  position: fixed;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(0,0,0,.94) 0%, rgba(0,0,0,.72) 52%, rgba(0,0,0,.45) 100%),
    linear-gradient(180deg, rgba(0,0,0,.05), rgba(0,0,0,.72));
}

.brand-logo {
  display: block;
  width: min(330px, 78vw);
  height: auto;
  filter: drop-shadow(0 20px 35px rgba(0, 0, 0, 0.55));
}

.eyebrow {
  color: var(--brand-yellow);
  font-size: 0.77rem;
  font-weight: 800;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.display-title {
  max-width: 820px;
  font-size: clamp(3rem, 8vw, 7rem);
  font-weight: 950;
  letter-spacing: -0.055em;
  line-height: 0.88;
  text-transform: uppercase;
}

.display-title span {
  color: var(--brand-yellow);
}

.lead-copy {
  max-width: 670px;
  color: var(--text-soft);
  font-size: clamp(1.05rem, 1.6vw, 1.3rem);
  line-height: 1.65;
}

.service-list span {
  padding: 0.55rem 0.85rem;
  border: 1px solid rgba(255, 212, 0, 0.26);
  border-radius: 999px;
  background: rgba(255, 212, 0, 0.06);
  color: rgba(255,255,255,.88);
  font-size: 0.82rem;
  font-weight: 650;
}

.btn-brand {
  border-color: var(--brand-yellow);
  background: var(--brand-yellow);
  color: #101010;
  font-weight: 850;
}

.btn-brand:hover,
.btn-brand:focus {
  border-color: var(--brand-yellow-dark);
  background: var(--brand-yellow-dark);
  color: #101010;
  transform: translateY(-1px);
}

.btn {
  border-radius: 0.35rem;
  transition: 180ms ease;
}

.launch-card {
  max-width: 470px;
  margin-left: auto;
  padding: clamp(1.5rem, 4vw, 2.75rem);
  border: 1px solid var(--surface-border);
  border-radius: 1rem;
  background: var(--surface);
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.45);
  backdrop-filter: blur(14px);
}

.launch-icon {
  display: grid;
  width: 3.5rem;
  height: 3.5rem;
  margin-bottom: 1.5rem;
  place-items: center;
  border-radius: 50%;
  background: var(--brand-yellow);
  color: #111;
  font-size: 1.65rem;
}

.launch-label {
  margin-bottom: 0.65rem;
  color: var(--brand-yellow);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.text-secondary {
  color: var(--text-soft) !important;
}

.progress-track {
  height: 0.42rem;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.09);
}

.progress-fill {
  width: 66%;
  height: 100%;
  border-radius: inherit;
  background: var(--brand-yellow);
  box-shadow: 0 0 26px rgba(255, 212, 0, 0.45);
}

.site-footer {
  position: relative;
  z-index: 2;
  padding: 1.35rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(0, 0, 0, 0.56);
  color: rgba(255, 255, 255, 0.56);
  font-size: 0.9rem;
}

.site-footer a {
  color: var(--brand-yellow);
  font-size: 1.15rem;
  transition: 160ms ease;
}

.site-footer a:hover {
  color: #fff;
  transform: translateY(-1px);
}

@media (max-width: 991.98px) {
  .container.min-vh-100 {
    min-height: auto !important;
    padding-top: 2rem !important;
    padding-bottom: 3rem !important;
  }

  .launch-card {
    max-width: none;
    margin-left: 0;
  }

  .display-title {
    line-height: 0.94;
  }

  .hero-overlay {
    background:
      linear-gradient(180deg, rgba(0,0,0,.65) 0%, rgba(0,0,0,.9) 72%, #080808 100%);
  }
}

@media (max-width: 575.98px) {
  .brand-logo {
    width: min(265px, 82vw);
  }

  .display-title {
    font-size: clamp(2.7rem, 15vw, 4.4rem);
  }

  .btn-lg {
    width: 100%;
  }

  .site-footer {
    text-align: center;
  }
}
