:root {
  --ink: #05070b;
  --line: #20242d;
  --white: #f5f7fb;
  --muted: #969eac;
  --blue: #087cff;
  --blue-light: #42a5ff;
  --display: "Space Grotesk", Arial, sans-serif;
  --body: "DM Sans", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

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

body {
  min-height: 100vh;
  background: var(--ink);
  color: var(--white);
  font-family: var(--body);
}

.page-shell {
  position: relative;
  display: grid;
  grid-template-rows: auto 1fr auto;
  min-height: 100vh;
  min-height: 100svh;
  overflow: hidden;
  padding: 0 max(6vw, 24px);
}

.page-shell::before,
.page-shell::after {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 1px;
  background: #11151d;
  content: "";
}

.page-shell::before {
  left: max(6vw, 24px);
}

.page-shell::after {
  right: max(6vw, 24px);
}

.coming-header,
footer {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 94px;
  border-bottom: 1px solid var(--line);
}

.brand-mark {
  display: block;
  width: 126px;
  height: 62px;
  object-fit: cover;
  object-position: center;
}

.status,
.eyebrow,
.hero-detail span,
footer p:last-child {
  font-family: var(--display);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.status {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0;
  color: #aab1bd;
}

.status span {
  width: 7px;
  height: 7px;
  background: var(--blue);
  border-radius: 50%;
  box-shadow: 0 0 16px rgba(8, 124, 255, 0.8);
  animation: status-pulse 2.4s ease-in-out infinite;
}

main {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  min-height: 620px;
  padding: 80px 0;
}

.hero {
  position: relative;
  z-index: 2;
  width: min(100%, 1050px);
  padding-left: clamp(0px, 5vw, 78px);
}

.eyebrow {
  margin: 0 0 34px;
  color: var(--blue-light);
}

h1 {
  max-width: 1050px;
  margin: 0;
  font-family: var(--display);
  font-size: 88px;
  font-weight: 500;
  line-height: 0.98;
  letter-spacing: 0;
}

h1 em {
  color: transparent;
  font-style: normal;
  -webkit-text-stroke: 1px #677080;
}

.hero-detail {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  width: min(100%, 650px);
  margin: 52px 0 0 33%;
  gap: 48px;
}

.hero-detail p {
  max-width: 450px;
  margin: 0;
  color: #aab1bd;
  font-size: 17px;
  line-height: 1.7;
}

.hero-detail span {
  flex: 0 0 auto;
  padding-bottom: 4px;
  color: var(--white);
  border-bottom: 1px solid var(--blue);
}

.orbit {
  position: absolute;
  top: 50%;
  right: -110px;
  width: 520px;
  height: 520px;
  border: 1px solid #161d2b;
  border-radius: 50%;
  transform: translateY(-50%);
}

.orbit::before,
.orbit::after,
.orbit-ring {
  position: absolute;
  border: 1px solid rgba(8, 124, 255, 0.24);
  border-radius: 50%;
  content: "";
}

.orbit::before {
  inset: 64px;
}

.orbit::after {
  inset: 138px;
  border-style: dashed;
  animation: orbit-spin 18s linear infinite;
}

.orbit-ring-inner {
  inset: 204px;
  border-color: #2b3545;
}

.orbit-core {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  color: var(--blue);
  font-family: var(--display);
  font-size: 72px;
  font-weight: 700;
  text-shadow: 0 0 22px rgba(8, 124, 255, 0.55);
}

.orbit-node {
  position: absolute;
  top: 48px;
  left: 258px;
  width: 9px;
  height: 9px;
  background: var(--blue);
  border-radius: 50%;
  box-shadow: 0 0 18px var(--blue);
}

footer {
  min-height: 86px;
  border-top: 1px solid var(--line);
  border-bottom: 0;
  color: #747d8b;
}

footer p {
  margin: 0;
  font-size: 13px;
}

footer p:first-child {
  color: #c2c8d1;
}

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

@keyframes status-pulse {
  50% {
    opacity: 0.45;
    transform: scale(0.75);
  }
}

@media (max-width: 900px) {
  main {
    min-height: 600px;
  }

  .hero {
    padding-left: 28px;
  }

  h1 {
    font-size: 64px;
  }

  .hero-detail {
    margin-left: 18%;
  }

  .orbit {
    right: -290px;
    opacity: 0.65;
  }
}

@media (max-width: 560px) {
  .coming-header {
    min-height: 78px;
  }

  .brand-mark {
    width: 104px;
    height: 52px;
  }

  .status {
    font-size: 9px;
    letter-spacing: 0.12em;
  }

  main {
    align-items: flex-end;
    min-height: 570px;
    padding: 88px 0 68px;
  }

  .hero {
    padding-left: 0;
  }

  .eyebrow {
    max-width: 250px;
    margin-bottom: 26px;
    font-size: 9px;
    line-height: 1.6;
  }

  h1 {
    font-size: 46px;
    line-height: 1.02;
  }

  .hero-detail {
    display: block;
    margin: 34px 0 0;
  }

  .hero-detail p {
    max-width: 330px;
    font-size: 15px;
    line-height: 1.6;
  }

  .hero-detail span {
    display: inline-block;
    margin-top: 30px;
  }

  .orbit {
    top: 34%;
    right: -220px;
    width: 390px;
    height: 390px;
  }

  .orbit::before {
    inset: 48px;
  }

  .orbit::after {
    inset: 106px;
  }

  .orbit-ring-inner {
    inset: 155px;
  }

  .orbit-core {
    font-size: 52px;
  }

  .orbit-node {
    top: 33px;
    left: 194px;
  }

  footer {
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
    min-height: 100px;
    gap: 9px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation: none !important;
  }
}
