:root {
  color-scheme: dark;
  --blue: #4da6ff;
  --deep-blue: #0b4ea2;
}
* {
  box-sizing: border-box;
}
html,
body {
  margin: 0;
  min-height: 100%;
  background: #020407;
}
body {
  color: #f3f5f7;
  font-family: Arial, Helvetica, sans-serif;
}
.page-shell {
  position: relative;
  isolation: isolate;
  min-height: 100vh;
  min-height: 100svh;
  overflow: hidden;
  display: grid;
  place-items: center;
  padding: clamp(32px, 6vh, 64px) clamp(18px, 4vw, 40px) 54px;
  background:
    radial-gradient(
      circle at 50% 34%,
      rgba(20, 65, 108, 0.18),
      transparent 36%
    ),
    linear-gradient(160deg, #05080d 0%, #010204 62%, #06101a 100%);
}
.page-shell:before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  opacity: 0.32;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
  background-size: 58px 58px;
  mask-image: linear-gradient(
    to bottom,
    transparent,
    #000 25%,
    transparent 88%
  );
}
.glow {
  position: absolute;
  z-index: -1;
  border-radius: 999px;
  filter: blur(95px);
  opacity: 0.17;
}
.glow-one {
  width: 360px;
  height: 360px;
  background: var(--blue);
  top: -190px;
  right: -120px;
}
.glow-two {
  width: 260px;
  height: 260px;
  background: var(--deep-blue);
  bottom: -150px;
  left: -100px;
}
.content {
  width: min(780px, 100%);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.logo-crop {
  position: relative;
  width: min(700px, 94%);
  aspect-ratio: 1.72;
  margin: 0 auto clamp(4px, 1vh, 12px);
  overflow: hidden;
}
.logo-crop img,
.logo-art {
  position: absolute;
  width: 180.7%;
  max-width: none;
  height: auto;
  aspect-ratio: 1 / 1;
  left: -5.8%;
  top: -17.5%;
}
.logo-art {
  display: block;
  background: url("brand-master.png") left top / 100% auto no-repeat;
}
.rule {
  display: flex;
  align-items: center;
  gap: 14px;
  width: min(460px, 68%);
  margin: clamp(4px, 1vh, 10px) auto clamp(20px, 3vh, 28px);
}
.rule:before,
.rule:after {
  content: "";
  height: 1px;
  flex: 1;
  background: linear-gradient(90deg, transparent, #4da6ff);
}
.rule:after {
  transform: scaleX(-1);
}
.rule span {
  width: 5px;
  height: 5px;
  transform: rotate(45deg);
  background: var(--blue);
  box-shadow: 0 0 16px var(--blue);
}
.eyebrow {
  margin: 0 0 12px;
  color: var(--blue);
  font-size: clamp(0.75rem, 2vw, 0.88rem);
  font-weight: 700;
  letter-spacing: 0.3em;
  text-transform: uppercase;
}
h1 {
  margin: 0;
  font-size: clamp(2rem, 6vw, 4.1rem);
  font-weight: 500;
  letter-spacing: -0.025em;
  line-height: 1.08;
}
.message {
  max-width: 590px;
  margin: clamp(14px, 2.2vh, 20px) auto 0;
  color: #aeb5bd;
  font-size: clamp(0.98rem, 2.2vw, 1.15rem);
  line-height: 1.75;
}
.location {
  margin: clamp(18px, 3vh, 26px) 0 0;
  color: #777f88;
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}
footer {
  position: absolute;
  bottom: 20px;
  color: #505861;
  font-size: 0.72rem;
  letter-spacing: 0.08em;
}
@media (max-width: 640px) {
  .page-shell {
    padding: 28px 16px 56px;
  }
  .content {
    width: 100%;
  }
  .logo-crop {
    width: min(560px, 94vw);
    aspect-ratio: 1.72;
    margin-inline: auto;
  }
  .rule {
    width: min(360px, 64%);
    margin-top: 4px;
  }
  .message {
    max-width: 34ch;
  }
  footer {
    bottom: 15px;
  }
}
@media (prefers-reduced-motion: no-preference) {
  .content {
    animation: arrive 0.8s ease-out both;
  }
  @keyframes arrive {
    from {
      opacity: 0;
      transform: translateY(10px);
    }
    to {
      opacity: 1;
      transform: none;
    }
  }
}
