:root {
  --blue-dark: #0B1F4A;
  --blue-mid: #1A3A7A;
  --blue-light: #2E5FBE;
  --blue-glow: #4A80E8;
  --yellow: #F5C200;
  --yellow-light: #FFD740;
  --white: #FFFFFF;
}

*, *::before, *::after { box-sizing: border-box; }

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

body {
  margin: 0;
  min-height: 100svh;
  overflow: hidden;
  color: var(--white);
  background: linear-gradient(135deg, var(--blue-dark) 0%, var(--blue-mid) 62%, #1E4A9A 100%);
  font-family: "Nunito", "Segoe UI", Arial, sans-serif;
}

.grid {
  position: fixed;
  inset: -60px;
  pointer-events: none;
  opacity: .8;
  background-image:
    linear-gradient(rgba(255,255,255,.026) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.026) 1px, transparent 1px);
  background-size: 60px 60px;
  animation: grid-drift 24s linear infinite;
}

.glow {
  position: fixed;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(1px);
}

.glow-one {
  width: 68vw;
  height: 68vw;
  right: -20vw;
  top: -26vw;
  background: radial-gradient(circle, rgba(74,128,232,.24), transparent 68%);
}

.glow-two {
  width: 42vw;
  height: 42vw;
  left: -18vw;
  bottom: -25vw;
  background: radial-gradient(circle, rgba(245,194,0,.09), transparent 68%);
}

.site-header {
  position: relative;
  z-index: 2;
  height: 86px;
  display: flex;
  align-items: center;
  padding: 0 clamp(24px, 5vw, 80px);
  background: rgba(11,31,74,.82);
  border-bottom: 1px solid rgba(245,194,0,.14);
  backdrop-filter: blur(14px);
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: inherit;
  text-decoration: none;
  animation: enter .65s ease both;
}

.logo-icon {
  width: 38px;
  height: 38px;
  display: inline-grid;
  place-items: center;
  border-radius: 10px;
  background: var(--yellow);
  color: var(--blue-dark);
  font-family: "Barlow Condensed", "Arial Narrow", sans-serif;
  font-size: 20px;
  font-weight: 900;
}

.logo-text {
  font-family: "Barlow Condensed", "Arial Narrow", sans-serif;
  font-size: 24px;
  font-weight: 800;
  line-height: 1;
}

.logo-text span { color: var(--yellow); }

main { position: relative; z-index: 1; }

.hero {
  width: min(1440px, 100%);
  min-height: calc(100svh - 156px);
  margin: 0 auto;
  padding: clamp(56px, 9vh, 112px) clamp(24px, 5vw, 80px) 54px;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(330px, .95fr);
  align-items: center;
  gap: clamp(48px, 8vw, 128px);
}

.hero-copy { max-width: 730px; }

.status {
  width: fit-content;
  margin: 0 0 28px;
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--yellow-light);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  animation: enter .7s .08s ease both;
}

.status span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--yellow);
  box-shadow: 0 0 0 0 rgba(245,194,0,.4);
  animation: pulse 2.4s ease-out infinite;
}

h1 {
  margin: 0;
  max-width: 760px;
  font-family: "Barlow Condensed", "Arial Narrow", sans-serif;
  font-size: clamp(58px, 8.3vw, 122px);
  font-weight: 900;
  line-height: .88;
  letter-spacing: -.025em;
  text-wrap: balance;
  animation: enter .75s .16s ease both;
}

h1 em { color: var(--yellow); font-style: normal; }

.intro {
  max-width: 610px;
  margin: 30px 0 0;
  color: rgba(255,255,255,.72);
  font-size: clamp(16px, 1.45vw, 20px);
  line-height: 1.65;
  animation: enter .75s .26s ease both;
}

.brand-orbit {
  position: relative;
  justify-self: center;
  width: min(34vw, 470px);
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  animation: orbit-enter .9s .2s cubic-bezier(.2,.8,.2,1) both;
}

.orbit {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,.13);
}

.orbit-outer { inset: 0; animation: rotate 28s linear infinite; }
.orbit-outer::before {
  content: "";
  position: absolute;
  width: 10px;
  height: 10px;
  top: 12%;
  left: 17%;
  border-radius: 50%;
  background: var(--yellow);
  box-shadow: 0 0 28px rgba(245,194,0,.75);
}

.orbit-inner { inset: 15%; border-color: rgba(74,128,232,.45); }

.hero-mark {
  width: 42%;
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  border-radius: 25%;
  background: var(--yellow);
  color: var(--blue-dark);
  box-shadow: 0 30px 90px rgba(0,0,0,.28), 0 0 80px rgba(245,194,0,.11);
  font-family: "Barlow Condensed", "Arial Narrow", sans-serif;
  font-size: clamp(72px, 9vw, 132px);
  font-weight: 900;
}

footer {
  position: fixed;
  z-index: 2;
  left: clamp(24px, 5vw, 80px);
  right: clamp(24px, 5vw, 80px);
  bottom: 26px;
  color: rgba(255,255,255,.42);
  font-size: 12px;
}

footer p { margin: 0; }
footer span { padding: 0 6px; color: var(--yellow); }

@keyframes enter {
  from { opacity: 0; transform: translateY(22px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes orbit-enter {
  from { opacity: 0; transform: scale(.82) rotate(-8deg); }
  to { opacity: 1; transform: scale(1) rotate(0); }
}

@keyframes rotate { to { transform: rotate(360deg); } }

@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(245,194,0,.42); }
  75%, 100% { box-shadow: 0 0 0 12px rgba(245,194,0,0); }
}

@keyframes grid-drift { to { transform: translate3d(60px,60px,0); } }

@media (max-width: 760px) {
  body { overflow-y: auto; }
  .site-header { height: 74px; }
  .hero {
    min-height: calc(100svh - 74px);
    padding-top: 58px;
    grid-template-columns: 1fr;
    align-content: center;
    gap: 44px;
  }
  .status { margin-bottom: 22px; font-size: 11px; }
  h1 { font-size: clamp(54px, 18vw, 88px); }
  .intro { margin-top: 24px; }
  .brand-orbit { width: min(68vw, 320px); }
  footer { position: relative; margin-top: -30px; padding-bottom: 24px; bottom: auto; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; }
}
