* {
  box-sizing: border-box;
}

:root {
  --ink: #07102f;
  --blue: #168df2;
  --cyan: #1db9ec;
  --violet: #5536ee;
  --pink: #ff2671;
  --soft: #eef5ff;
}

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

body {
  font-family: "Plus Jakarta Sans", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: #f8faff;
  overflow: hidden;
}

.page {
  position: relative;
  min-height: 100vh;
  isolation: isolate;
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 45%, rgba(255,255,255,.98) 0 25%, rgba(247,250,255,.94) 55%, rgba(241,246,255,.96) 100%);
}

.page::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background-image:
    linear-gradient(rgba(30, 80, 160, .025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(30, 80, 160, .025) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(circle at center, black 0%, transparent 78%);
}

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

.aurora {
  position: absolute;
  z-index: -1;
  width: 48vw;
  height: 48vw;
  border-radius: 50%;
  filter: blur(70px);
  opacity: .25;
  pointer-events: none;
  animation: drift 14s ease-in-out infinite alternate;
}

.aurora-a {
  top: -25%;
  left: -13%;
  background: #53c9ff;
}

.aurora-b {
  right: -18%;
  bottom: -30%;
  background: #ff76b0;
  animation-delay: -4s;
}

.aurora-c {
  left: 38%;
  top: 28%;
  width: 24vw;
  height: 24vw;
  background: #7259ff;
  opacity: .10;
  animation-duration: 18s;
}

.topbar {
  position: absolute;
  top: 30px;
  left: 42px;
  right: 42px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  z-index: 10;
  animation: fadeDown .9s ease both;
}

.brand-mini {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .28em;
}

.brand-mini img {
  width: 27px;
  height: 27px;
  object-fit: contain;
}

.status {
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 9px 14px;
  border: 1px solid rgba(8, 31, 78, .08);
  border-radius: 999px;
  background: rgba(255,255,255,.55);
  backdrop-filter: blur(16px);
  color: #56617a;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  box-shadow: 0 8px 30px rgba(30, 80, 160, .06);
}

.status-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #27cf91;
  box-shadow: 0 0 0 5px rgba(39,207,145,.12), 0 0 18px rgba(39,207,145,.5);
  animation: breathe 2s ease-in-out infinite;
}

.hero {
  min-height: 100vh;
  max-width: 1380px;
  margin: 0 auto;
  padding: 100px 7vw 90px;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(380px, .95fr);
  align-items: center;
  gap: 4vw;
}

.hero-copy {
  position: relative;
  z-index: 2;
  padding-top: 20px;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 14px;
  color: #8d9ab2;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .42em;
  text-transform: uppercase;
  margin-bottom: 24px;
}

.eyebrow span {
  width: 25px;
  height: 1px;
  background: linear-gradient(90deg, transparent, #aebbd0);
}

.logo-wrap {
  width: min(680px, 92vw);
  margin-bottom: 18px;
}

.logo {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 16px 28px rgba(35, 71, 145, .11));
}

.hero-divider {
  width: 42px;
  height: 3px;
  margin: 3px 0 22px;
  border-radius: 999px;
  background: linear-gradient(90deg, #17aef0, #5638ed, #f52e75);
}

h1 {
  margin: 4px 0 20px;
  font-size: clamp(40px, 4.3vw, 66px);
  line-height: .98;
  letter-spacing: -.055em;
  font-weight: 800;
}

h1 span {
  background: linear-gradient(90deg, #118fe9 0%, #5436ef 48%, #ed3b8d 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  background-size: 180% 100%;
  animation: gradientShift 7s ease-in-out infinite alternate;
}

.lead {
  max-width: 580px;
  margin: 0;
  color: #68758e;
  font-size: clamp(15px, 1.25vw, 18px);
  line-height: 1.8;
  font-weight: 500;
}

.coming {
  margin-top: 32px;
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 12px 17px 12px 12px;
  border-radius: 18px;
  border: 1px solid rgba(22, 93, 183, .09);
  background: rgba(255,255,255,.62);
  backdrop-filter: blur(20px);
  box-shadow: 0 20px 55px rgba(38, 77, 150, .09);
}

.coming strong,
.coming small {
  display: block;
}

.coming strong {
  font-size: 13px;
  margin-bottom: 3px;
}

.coming small {
  color: #8994a9;
  font-size: 11px;
}

.pulse-ring {
  width: 36px;
  height: 36px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, #1db8ed, #4a43ef 55%, #ff2872);
  box-shadow: 0 7px 20px rgba(64, 77, 239, .22);
}

.pulse-ring i {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: white;
  box-shadow: 0 0 0 7px rgba(255,255,255,.16);
  animation: breathe 1.8s ease-in-out infinite;
}

.orbital {
  position: relative;
  width: min(37vw, 540px);
  aspect-ratio: 1;
  justify-self: center;
  display: grid;
  place-items: center;
}

.orbital::before {
  content: "";
  position: absolute;
  inset: 11%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,255,255,.96), rgba(240,246,255,.65) 48%, transparent 72%);
  box-shadow:
    0 0 120px rgba(47, 119, 255, .13),
    inset 0 0 90px rgba(47, 119, 255, .06);
}

.core {
  position: relative;
  z-index: 3;
  width: 27%;
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  border-radius: 32%;
  background: rgba(255,255,255,.8);
  border: 1px solid rgba(255,255,255,.95);
  box-shadow:
    0 35px 80px rgba(28, 76, 164, .15),
    0 0 0 18px rgba(255,255,255,.22),
    inset 0 0 35px rgba(255,255,255,.8);
  backdrop-filter: blur(20px);
  animation: float 5s ease-in-out infinite;
}

.core img {
  width: 72%;
  height: 72%;
  object-fit: contain;
}

.orbit {
  position: absolute;
  border: 1px solid rgba(65, 113, 198, .13);
  border-radius: 50%;
  transform: rotate(-22deg);
}

.orbit-1 { inset: 10%; animation: orbit 17s linear infinite; }
.orbit-2 { inset: 22%; transform: rotate(62deg); animation: orbitReverse 12s linear infinite; }
.orbit-3 { inset: 2%; transform: rotate(105deg); border-color: rgba(93, 70, 239, .08); animation: orbit 24s linear infinite; }

.orbit-1::after,
.orbit-2::after,
.orbit-3::after {
  content: "";
  position: absolute;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  top: 8%;
  left: 12%;
  background: #19a9ed;
  box-shadow: 0 0 22px rgba(25,169,237,.6);
}

.orbit-2::after {
  top: auto;
  left: auto;
  right: 7%;
  bottom: 12%;
  background: #ff2c74;
  box-shadow: 0 0 22px rgba(255,44,116,.55);
}

.orbit-3::after {
  top: 38%;
  left: auto;
  right: -4px;
  background: #5836ef;
  box-shadow: 0 0 22px rgba(88,54,239,.5);
}

.spark {
  position: absolute;
  border-radius: 50%;
  z-index: 4;
  animation: sparkle 3s ease-in-out infinite;
}

.spark-1 { width: 8px; height: 8px; top: 20%; right: 22%; background: #ff2b76; animation-delay: -.7s; }
.spark-2 { width: 6px; height: 6px; bottom: 18%; left: 20%; background: #1bb8ed; animation-delay: -1.3s; }
.spark-3 { width: 5px; height: 5px; top: 34%; left: 12%; background: #5836ef; animation-delay: -2s; }
.spark-4 { width: 7px; height: 7px; bottom: 29%; right: 11%; background: #1c91ee; animation-delay: -2.4s; }

.footer {
  position: absolute;
  left: 42px;
  right: 42px;
  bottom: 28px;
  display: flex;
  justify-content: space-between;
  color: #9ba6ba;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .22em;
  text-transform: uppercase;
  z-index: 10;
  animation: fadeUp 1s .5s ease both;
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  animation: reveal .9s cubic-bezier(.2,.75,.2,1) forwards;
}

.reveal-1 { animation-delay: .15s; }
.reveal-2 { animation-delay: .28s; }
.reveal-3 { animation-delay: .42s; }
.reveal-4 { animation-delay: .56s; }
.reveal-5 { animation-delay: .70s; }

@keyframes reveal {
  to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeDown {
  from { opacity: 0; transform: translateY(-12px); }
  to { opacity: 1; transform: translateY(0); }
}

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

@keyframes drift {
  from { transform: translate3d(-2%, -1%, 0) scale(1); }
  to { transform: translate3d(5%, 5%, 0) scale(1.12); }
}

@keyframes float {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-13px) rotate(1.5deg); }
}

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

@keyframes orbitReverse {
  to { transform: rotate(-298deg); }
}

@keyframes sparkle {
  0%, 100% { transform: scale(.7); opacity: .35; }
  50% { transform: scale(1.5); opacity: 1; }
}

@keyframes breathe {
  0%, 100% { transform: scale(.85); opacity: .75; }
  50% { transform: scale(1.15); opacity: 1; }
}

@keyframes gradientShift {
  0% { background-position: 0% 50%; }
  100% { background-position: 100% 50%; }
}

@media (max-width: 900px) {
  body { overflow: auto; }
  .page { min-height: 100svh; }
  .hero {
    min-height: 100svh;
    grid-template-columns: 1fr;
    padding: 110px 28px 100px;
    gap: 15px;
  }
  .hero-copy { text-align: center; padding-top: 20px; }
  .eyebrow { justify-content: center; }
  .logo-wrap { margin-inline: auto; width: min(680px, 94vw); }
  .lead { margin-inline: auto; }
  .coming { text-align: left; }
  .orbital {
    width: min(72vw, 420px);
    margin: -5px auto 0;
  }
  .footer { left: 24px; right: 24px; bottom: 20px; }
}

@media (max-width: 560px) {
  .topbar { top: 20px; left: 20px; right: 20px; }
  .status { padding: 7px 10px; font-size: 9px; }
  .brand-mini { font-size: 10px; }
  .brand-mini img { width: 22px; height: 22px; }
  .hero { padding-inline: 20px; }
  h1 { font-size: clamp(40px, 12vw, 58px); }
  .lead { font-size: 14px; line-height: 1.65; }
  .orbital { width: min(78vw, 340px); }
  .footer span:nth-child(2) { display: none; }
}
