:root {
  color-scheme: dark;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont,
    "Segoe UI", sans-serif;
  color: #f7fbff;
  background: #020817;
}

* {
  box-sizing: border-box;
}

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

body {
  position: relative;
  overflow-x: hidden;
  background:
    radial-gradient(circle at 20% 20%, rgb(0 218 255 / 12%), transparent 28rem),
    linear-gradient(145deg, #020817 0%, #05142f 52%, #020817 100%);
}

body::before {
  position: fixed;
  inset: 0;
  pointer-events: none;
  content: "";
  opacity: 0.16;
  background-image: linear-gradient(rgb(255 255 255 / 4%) 1px, transparent 1px),
    linear-gradient(90deg, rgb(255 255 255 / 4%) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: linear-gradient(to bottom, black, transparent 78%);
}

.glow {
  position: fixed;
  width: 34rem;
  height: 34rem;
  border-radius: 50%;
  filter: blur(110px);
  pointer-events: none;
}

.glow--top {
  top: -20rem;
  right: -10rem;
  background: rgb(22 122 255 / 28%);
}

.glow--bottom {
  bottom: -22rem;
  left: -12rem;
  background: rgb(0 229 238 / 19%);
}

.page {
  position: relative;
  z-index: 1;
  width: min(1120px, calc(100% - 40px));
  min-height: 100vh;
  margin: 0 auto;
  display: grid;
  grid-template-rows: auto 1fr auto;
}

.header,
.footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.header {
  padding: 30px 0;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  color: inherit;
  text-decoration: none;
  font-size: 1.35rem;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.brand img {
  border-radius: 16px;
  box-shadow: 0 0 32px rgb(0 208 255 / 25%);
}

.status,
.locations span {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: #aabbd7;
  font-size: 0.9rem;
}

.status__dot,
.locations i {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #26e8b4;
  box-shadow: 0 0 18px #26e8b4;
}

.hero {
  align-self: center;
  padding: 70px 0 100px;
}

.eyebrow {
  margin: 0 0 24px;
  color: #25dbea;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

h1 {
  max-width: 980px;
  margin: 0;
  font-size: clamp(3.4rem, 8.8vw, 7.8rem);
  line-height: 0.94;
  letter-spacing: -0.065em;
}

h1 em {
  color: transparent;
  font-style: normal;
  background: linear-gradient(90deg, #39eff1, #268cff);
  background-clip: text;
  -webkit-background-clip: text;
}

.lead {
  max-width: 680px;
  margin: 34px 0 0;
  color: #b9c8df;
  font-size: clamp(1.05rem, 2vw, 1.28rem);
  line-height: 1.65;
}

.locations {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 34px;
}

.footer {
  border-top: 1px solid rgb(255 255 255 / 10%);
  padding: 22px 0 28px;
  color: #69809f;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

@media (max-width: 640px) {
  .page {
    width: min(100% - 28px, 1120px);
  }

  .header {
    padding-top: 20px;
  }

  .brand img {
    width: 46px;
    height: 46px;
  }

  .status {
    font-size: 0;
  }

  .hero {
    padding: 54px 0 80px;
  }

  h1 {
    font-size: clamp(3rem, 17vw, 5.2rem);
  }

  .footer {
    align-items: flex-start;
    gap: 12px;
    flex-direction: column;
  }
}
