@font-face {
  font-family: "Google Sans Flex";
  src: url("/fonts/GoogleSansFlex-Regular.ttf") format("truetype");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: "Google Sans Flex";
  src: url("/fonts/GoogleSansFlex-Semibold.ttf") format("truetype");
  font-style: normal;
  font-weight: 600;
  font-display: swap;
}

:root {
  --graphite: #07090c;
  --bone: #f3f0e8;
  --muted: #a9adb5;
  --gold: #c9a86a;
  --blue: #6f93b8;
  --line: rgba(243, 240, 232, 0.13);
}

* { box-sizing: border-box; }

html { background: var(--graphite); color-scheme: dark; }

body {
  margin: 0;
  min-height: 100svh;
  overflow-x: hidden;
  background:
    radial-gradient(circle at 78% 34%, rgba(86, 121, 158, 0.12), transparent 28rem),
    radial-gradient(circle at 22% 76%, rgba(201, 168, 106, 0.09), transparent 30rem),
    var(--graphite);
  color: var(--bone);
  font-family: "Google Sans Flex", "Helvetica Neue", Arial, sans-serif;
}

.noise {
  position: fixed;
  inset: 0;
  z-index: 4;
  pointer-events: none;
  opacity: 0.035;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 220 220' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.95' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.65'/%3E%3C/svg%3E");
}

.aurora {
  position: fixed;
  width: 38rem;
  aspect-ratio: 1;
  border-radius: 50%;
  filter: blur(110px);
  opacity: 0.09;
  pointer-events: none;
}

.aurora-one { right: -18rem; top: -20rem; background: var(--blue); }
.aurora-two { left: -22rem; bottom: -22rem; background: var(--gold); }

.site-header,
main,
footer {
  position: relative;
  z-index: 2;
  width: min(100% - 72px, 1480px);
  margin-inline: auto;
}

.site-header {
  min-height: 112px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--line);
}

.wordmark { width: clamp(154px, 13vw, 210px); height: auto; }

.status {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #c7c9ce;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.status span {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 18px rgba(201, 168, 106, 0.85);
}

main {
  min-height: calc(100svh - 204px);
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(390px, 0.95fr);
  align-items: center;
  gap: clamp(48px, 8vw, 140px);
  padding: 80px 0;
}

.hero { max-width: 790px; }

.eyebrow {
  margin-bottom: 24px;
  color: var(--gold);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.19em;
  text-transform: uppercase;
}

h1 {
  max-width: 820px;
  margin: 0;
  font-size: clamp(54px, 6.6vw, 108px);
  line-height: 0.94;
  letter-spacing: -0.065em;
  font-weight: 500;
  text-wrap: balance;
}

.lead {
  max-width: 660px;
  margin: 35px 0 0;
  color: #c4c6cb;
  font-size: clamp(18px, 1.6vw, 25px);
  line-height: 1.52;
  letter-spacing: -0.018em;
}

.rule {
  width: min(100%, 530px);
  height: 1px;
  margin-top: 44px;
  background: var(--line);
}

.rule span { display: block; width: 31%; height: 1px; background: var(--gold); }

.coming {
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.32em;
}

.continuum {
  position: relative;
  width: min(42vw, 610px);
  aspect-ratio: 1;
  justify-self: end;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(111, 147, 184, 0.1), transparent 57%);
}

.continuum::before,
.continuum::after,
.orbit {
  content: "";
  position: absolute;
  border: 1px solid rgba(243, 240, 232, 0.09);
  border-radius: 50%;
}

.continuum::before { inset: 12%; }
.continuum::after { inset: 27%; }
.orbit-a { inset: 7%; transform: rotate(22deg) scaleY(0.68); border-color: rgba(201, 168, 106, 0.2); }
.orbit-b { inset: 18%; transform: rotate(-35deg) scaleX(0.74); border-color: rgba(111, 147, 184, 0.2); }

.nexus {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 23%;
  transform: translate(-50%, -50%);
  filter: drop-shadow(0 0 34px rgba(201, 168, 106, 0.17));
}

.stage {
  position: absolute;
  display: grid;
  gap: 4px;
  min-width: 120px;
}

.stage::before {
  content: "";
  position: absolute;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 12px rgba(201,168,106,.6);
}

.stage strong { font-size: 13px; font-weight: 600; letter-spacing: 0.02em; }
.stage span { color: var(--muted); font-size: 11px; }
.stage-one { left: -2%; top: 21%; text-align: right; }
.stage-one::before { right: -19px; top: 7px; }
.stage-two { right: -2%; top: 22%; }
.stage-two::before { left: -19px; top: 7px; }
.stage-three { left: 3%; bottom: 17%; text-align: right; }
.stage-three::before { right: -19px; top: 7px; }
.stage-four { right: 1%; bottom: 19%; }
.stage-four::before { left: -19px; top: 7px; }

footer {
  min-height: 92px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  border-top: 1px solid var(--line);
  color: #858a93;
  font-size: 12px;
}

footer p { margin: 0; }
footer span { margin-left: 14px; }

@media (max-width: 980px) {
  main { grid-template-columns: 1fr; padding: 76px 0 110px; }
  .continuum { width: min(76vw, 570px); justify-self: center; }
}

@media (max-width: 620px) {
  .site-header, main, footer { width: min(100% - 36px, 1480px); }
  .site-header { min-height: 88px; }
  .status { font-size: 9px; letter-spacing: 0.11em; }
  main { min-height: auto; gap: 68px; padding: 64px 0 100px; }
  h1 { font-size: clamp(48px, 15vw, 74px); }
  .lead { font-size: 18px; }
  .continuum { width: min(88vw, 440px); }
  .stage { min-width: 96px; }
  .stage strong { font-size: 11px; }
  .stage span { font-size: 9px; }
  footer { min-height: 110px; align-items: flex-start; justify-content: center; flex-direction: column; gap: 8px; }
}

@media (prefers-reduced-motion: no-preference) {
  .orbit-a { animation: drift-a 22s linear infinite; }
  .orbit-b { animation: drift-b 28s linear infinite; }
  .nexus { animation: breathe 5s ease-in-out infinite; }
  @keyframes drift-a { to { transform: rotate(382deg) scaleY(0.68); } }
  @keyframes drift-b { to { transform: rotate(-395deg) scaleX(0.74); } }
  @keyframes breathe { 50% { transform: translate(-50%, -50%) scale(1.035); filter: drop-shadow(0 0 48px rgba(201, 168, 106, 0.25)); } }
}
