@font-face {
  font-family: "Poppins";
  src: url("/assets/Poppins-Bold.ttf") format("truetype");
  font-style: normal;
  font-weight: 700;
  font-display: swap;
}

:root {
  color-scheme: dark;
  --ink: #071c2c;
  --ivory: #f4efe5;
  --mint: #2bd98a;
  --blue: #1e9bff;
  --violet: #7e5bea;
  --pink: #f0419e;
  --line: rgba(244, 239, 229, 0.16);
  --quiet: rgba(244, 239, 229, 0.62);
  --mouse-x: 50%;
  --mouse-y: 50%;
}

* {
  box-sizing: border-box;
}

html {
  min-width: 320px;
  background: var(--ink);
}

body {
  margin: 0;
  min-height: 100svh;
  overflow-x: hidden;
  background:
    radial-gradient(circle at var(--mouse-x) var(--mouse-y), rgba(43, 217, 138, 0.075), transparent 22rem),
    var(--ink);
  color: var(--ivory);
  font-family: "Helvetica Neue", Helvetica, sans-serif;
  -webkit-font-smoothing: antialiased;
}

a {
  color: inherit;
  text-decoration: none;
}

.ambient,
.ambient > * {
  position: fixed;
  inset: 0;
  pointer-events: none;
}

.ambient {
  z-index: 0;
  overflow: hidden;
}

.ambient::before,
.ambient::after {
  position: absolute;
  width: min(52rem, 62vw);
  aspect-ratio: 1;
  border-radius: 50%;
  content: "";
  filter: blur(120px);
  opacity: 0.12;
}

.ambient::before {
  top: -32rem;
  left: -18rem;
  background: var(--blue);
}

.ambient::after {
  right: -24rem;
  bottom: -38rem;
  background: var(--pink);
}

.ambient__beam {
  opacity: 0.55;
}

.ambient__beam--left {
  background: linear-gradient(118deg, transparent 0 26%, rgba(30, 155, 255, 0.07) 26.1%, transparent 44%);
}

.ambient__beam--right {
  background: linear-gradient(292deg, transparent 0 18%, rgba(126, 91, 234, 0.065) 18.1%, transparent 38%);
}

.ambient__grid {
  background-image:
    linear-gradient(rgba(244, 239, 229, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(244, 239, 229, 0.025) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: radial-gradient(circle at center, black 0%, transparent 68%);
}

.ambient__grain {
  opacity: 0.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='.7'/%3E%3C/svg%3E");
}

.page-shell {
  position: relative;
  z-index: 1;
  display: grid;
  overflow: clip;
  min-height: 100svh;
  grid-template-rows: auto 1fr auto;
  padding: 34px clamp(24px, 4.5vw, 76px) 28px;
}

.topline,
.footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  font-size: 0.68rem;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.topline {
  padding-bottom: 23px;
  border-bottom: 1px solid var(--line);
  color: rgba(244, 239, 229, 0.72);
}

.domain,
.status {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.domain__signal {
  display: inline-block;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--mint);
  box-shadow: 0 0 0 5px rgba(43, 217, 138, 0.09), 0 0 22px rgba(43, 217, 138, 0.7);
  animation: signal 2.4s ease-in-out infinite;
}

.status i {
  width: 34px;
  height: 1px;
  background: linear-gradient(90deg, var(--blue), var(--mint));
}

.hero {
  position: relative;
  display: grid;
  min-height: 600px;
  place-items: center;
  isolation: isolate;
}

.hero::before {
  position: absolute;
  z-index: -2;
  width: min(48rem, 92vw);
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(7, 28, 44, 0.86) 0 36%, rgba(7, 28, 44, 0.56) 53%, transparent 72%);
  content: "";
}

.hero__content {
  position: relative;
  z-index: 2;
  display: flex;
  width: min(920px, 100%);
  flex-direction: column;
  align-items: center;
  padding: clamp(60px, 9vh, 104px) 0;
  text-align: center;
}

.eyebrow {
  margin: 0 0 24px;
  color: var(--mint);
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  font-size: 0.66rem;
  letter-spacing: 0.34em;
  text-transform: uppercase;
}

.brand {
  position: relative;
  width: min(470px, 68vw);
  background: var(--ink);
  box-shadow: 0 24px 80px rgba(1, 12, 22, 0.34);
  line-height: 0;
}

.brand::before,
.brand::after {
  position: absolute;
  width: 18px;
  height: 18px;
  content: "";
  opacity: 0.72;
}

.brand::before {
  top: -7px;
  left: -7px;
  border-top: 1px solid var(--blue);
  border-left: 1px solid var(--blue);
}

.brand::after {
  right: -7px;
  bottom: -7px;
  border-right: 1px solid var(--pink);
  border-bottom: 1px solid var(--pink);
}

.brand img {
  display: block;
  width: 100%;
  height: auto;
}

.ownership {
  max-width: 520px;
  margin: 24px 0 34px;
  color: var(--quiet);
  font-size: clamp(0.82rem, 1vw, 0.96rem);
  font-weight: 400;
  letter-spacing: 0.035em;
  line-height: 1.65;
}

.ownership strong {
  color: var(--ivory);
  font-weight: 500;
  white-space: nowrap;
}

.coming-soon {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0 0.2em;
  margin: 0;
  font-family: "Poppins", sans-serif;
  font-size: clamp(4.2rem, 11vw, 9.6rem);
  font-weight: 700;
  letter-spacing: -0.065em;
  line-height: 0.82;
  text-transform: lowercase;
}

.coming-soon__accent {
  color: transparent;
  background: linear-gradient(105deg, var(--blue) 0%, var(--mint) 34%, #59c7bd 51%, var(--violet) 75%, var(--pink) 100%);
  background-clip: text;
  -webkit-background-clip: text;
}

.period {
  color: var(--mint);
  -webkit-text-fill-color: var(--mint);
}

.orbit {
  position: absolute;
  z-index: -1;
  width: min(700px, 82vw);
  aspect-ratio: 1;
}

.orbit__ring {
  position: absolute;
  inset: 0;
  border: 1px solid rgba(244, 239, 229, 0.1);
  border-radius: 50%;
}

.orbit__ring--outer {
  transform: rotate(-18deg) scaleY(0.47);
  border-color: rgba(43, 217, 138, 0.16);
  box-shadow: inset 0 1px rgba(30, 155, 255, 0.14);
}

.orbit__ring--inner {
  inset: 12%;
  transform: rotate(21deg) scaleY(0.58);
  border-style: dashed;
  border-color: rgba(244, 239, 229, 0.11);
  animation: orbit-turn 34s linear infinite;
}

.orbit__node {
  position: absolute;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  box-shadow: 0 0 24px currentColor;
}

.orbit__node--one {
  top: 49%;
  left: 0;
  color: var(--blue);
  background: currentColor;
}

.orbit__node--two {
  top: 49%;
  right: 0;
  color: var(--pink);
  background: currentColor;
}

.footer {
  gap: 22px;
  color: rgba(244, 239, 229, 0.42);
}

.footer p {
  margin: 0;
  white-space: nowrap;
}

.footer__rule {
  position: relative;
  flex: 1;
  height: 1px;
  overflow: hidden;
  background: var(--line);
}

.footer__rule span {
  position: absolute;
  top: 0;
  left: -25%;
  width: 25%;
  height: 100%;
  background: linear-gradient(90deg, transparent, var(--mint), transparent);
  animation: scan 8s ease-in-out infinite;
}

.enter {
  opacity: 0;
  transform: translateY(14px);
  animation: enter 0.9s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.enter--1 { animation-delay: 0.05s; }
.enter--2 { animation-delay: 0.18s; }
.enter--3 { animation-delay: 0.28s; }
.enter--4 { animation-delay: 0.38s; }
.enter--5 { animation-delay: 0.48s; }
.enter--6 { animation-delay: 0.62s; }

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

@keyframes signal {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(0.72); opacity: 0.65; }
}

@keyframes orbit-turn {
  to { transform: rotate(381deg) scaleY(0.58); }
}

@keyframes scan {
  0%, 20% { transform: translateX(0); opacity: 0; }
  30% { opacity: 1; }
  70% { opacity: 1; }
  80%, 100% { transform: translateX(500%); opacity: 0; }
}

@media (max-width: 700px) {
  .page-shell {
    padding: 24px 20px 22px;
  }

  .status span,
  .footer > p:first-child {
    display: none;
  }

  .status i {
    width: 26px;
  }

  .hero {
    min-height: 560px;
  }

  .hero__content {
    padding-block: 64px;
  }

  .eyebrow {
    margin-bottom: 18px;
    font-size: 0.57rem;
    letter-spacing: 0.28em;
  }

  .brand {
    width: min(330px, 76vw);
  }

  .ownership {
    max-width: 320px;
    margin: 18px 0 32px;
    font-size: 0.77rem;
  }

  .ownership strong {
    display: block;
  }

  .coming-soon {
    display: grid;
    gap: 0.05em;
    font-size: clamp(4.2rem, 20vw, 6.3rem);
    line-height: 0.76;
  }

  .orbit {
    width: 130vw;
  }

  .footer {
    justify-content: stretch;
    font-size: 0.58rem;
    letter-spacing: 0.08em;
  }

  .footer p:last-child {
    white-space: normal;
  }
}

@media (max-height: 720px) and (min-width: 701px) {
  .page-shell {
    padding-top: 24px;
    padding-bottom: 20px;
  }

  .hero {
    min-height: 500px;
  }

  .hero__content {
    padding-block: 42px;
  }

  .brand {
    width: min(390px, 62vw);
  }

  .ownership {
    margin: 15px 0 24px;
  }

  .coming-soon {
    font-size: clamp(4rem, 9.5vw, 7.6rem);
  }
}

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