body {
  margin: 0;
  background: #070707;
  color: #fff;
  font-family: Inter, Manrope, Arial, sans-serif;
  overflow-x: hidden;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 999;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px max(24px, calc((100vw - 1200px) / 2));
  background: rgba(7,7,7,.9);
  border-bottom: 1px solid rgba(255,255,255,.12);
  backdrop-filter: blur(22px);
}

.brand,
.logo-link {
  display: flex;
  align-items: center;
  gap: 16px;
  color: #fff;
  text-decoration: none;
  font-weight: 900;
}

.brand img,
.logo-link img,
.logo {
  width: 56px !important;
  height: 56px !important;
  object-fit: contain !important;
  border-radius: 18px;
  padding: 7px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.16);
  box-shadow: 0 0 34px rgba(118,183,255,.22);
}

.brand span,
.logo-link span {
  color: #fff;
  font-size: 20px;
  font-weight: 900;
}

.site-header nav,
.nav {
  display: flex;
  align-items: center;
  gap: 26px;
}

.site-header nav a,
.nav a {
  color: rgba(255,255,255,.72);
  text-decoration: none;
  font-weight: 800;
}

.site-header nav a:hover,
.nav a:hover {
  color: #fff;
}

.nav-cta {
  padding: 12px 18px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.16);
  color: #fff;
  text-decoration: none;
  font-weight: 800;
  background: rgba(255,255,255,.08);
}

.section {
  max-width: 1200px;
  margin: 0 auto;
  padding: 92px 24px;
}

.page {
  max-width: 1180px;
  margin: 0 auto;
  padding: 120px 24px 80px;
}

.eyebrow {
  color: rgba(255,255,255,.55);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .22em;
  text-transform: uppercase;
}

h1 {
  font-size: clamp(42px, 7vw, 86px);
  line-height: .95;
  letter-spacing: -.06em;
}

.lead {
  max-width: 780px;
  color: rgba(255,255,255,.72);
  font-size: clamp(18px, 2vw, 24px);
  line-height: 1.45;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 22px;
  border-radius: 999px;
  background: #fff;
  color: #111;
  text-decoration: none;
  font-weight: 900;
}

.footer {
  max-width: 1200px;
  margin: 0 auto;
  padding: 34px 24px 60px;
  display: flex;
  justify-content: space-between;
  color: rgba(255,255,255,.55);
  border-top: 1px solid rgba(255,255,255,.12);
}

@media (max-width: 900px) {
  .site-header nav,
  .nav {
    display: none;
  }

  .brand img,
  .logo-link img,
  .logo {
    width: 46px !important;
    height: 46px !important;
  }

  .brand span,
  .logo-link span {
    font-size: 15px;
  }
}
