:root {
  color-scheme: dark;
  --bg: #05070d;
  --ink: #f7fbff;
  --muted: #a9b6c9;
  --cyan: #46e6ff;
  --lime: #c8ff6a;
  --rose: #ff6aa2;
  --line: rgba(255, 255, 255, 0.18);
}

* {
  box-sizing: border-box;
}

html {
  min-height: 100%;
  background: var(--bg);
}

body {
  min-height: 100vh;
  margin: 0;
  overflow-x: hidden;
  color: var(--ink);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  letter-spacing: 0;
  background:
    radial-gradient(circle at 22% 18%, rgba(70, 230, 255, 0.23), transparent 30%),
    radial-gradient(circle at 82% 58%, rgba(255, 106, 162, 0.16), transparent 28%),
    linear-gradient(135deg, #05070d 0%, #0b1220 42%, #130d1b 100%);
}

body::before {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  content: "";
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.9), transparent 84%);
}

#field {
  position: fixed;
  inset: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
}

.shell {
  position: relative;
  z-index: 2;
  min-height: 100vh;
  padding: clamp(20px, 4vw, 56px);
}

.hero {
  display: grid;
  min-height: calc(100vh - clamp(40px, 8vw, 112px));
  grid-template-rows: auto 1fr auto;
  align-items: center;
  max-width: 1180px;
  margin: 0 auto;
}

.brand-mark {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  width: max-content;
  color: rgba(247, 251, 255, 0.94);
  font-size: clamp(1rem, 1.5vw, 1.18rem);
  font-weight: 720;
}

.sigil {
  position: relative;
  display: inline-grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border: 1px solid rgba(70, 230, 255, 0.55);
  border-radius: 50%;
  background: rgba(5, 7, 13, 0.54);
  box-shadow:
    0 0 28px rgba(70, 230, 255, 0.36),
    inset 0 0 18px rgba(200, 255, 106, 0.14);
}

.sigil::before,
.sigil::after {
  position: absolute;
  content: "";
}

.sigil::before {
  width: 12px;
  height: 12px;
  border: 2px solid var(--lime);
  border-right-color: transparent;
  border-bottom-color: transparent;
  transform: rotate(45deg);
}

.sigil::after {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 18px var(--cyan);
}

.hero-copy {
  max-width: 920px;
  padding: 10vh 0 8vh;
}

.kicker {
  margin: 0 0 18px;
  color: var(--lime);
  font-size: clamp(0.82rem, 1.3vw, 0.98rem);
  font-weight: 740;
  text-transform: uppercase;
}

h1 {
  max-width: 980px;
  margin: 0;
  font-size: clamp(3.05rem, 10vw, 9.2rem);
  line-height: 0.88;
  font-weight: 820;
  text-wrap: balance;
}

.subcopy {
  max-width: 620px;
  margin: clamp(22px, 3vw, 34px) 0 0;
  color: var(--muted);
  font-size: clamp(1rem, 2vw, 1.32rem);
  line-height: 1.55;
}

.status-panel {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  width: min(100%, 760px);
  padding: 18px 0 0;
  border-top: 1px solid var(--line);
  color: rgba(247, 251, 255, 0.82);
  font-size: 0.95rem;
}

.status-panel div {
  display: inline-flex;
  align-items: center;
  min-width: 0;
  gap: 10px;
}

.status-dot {
  width: 10px;
  height: 10px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: var(--lime);
  box-shadow: 0 0 18px rgba(200, 255, 106, 0.86);
  animation: pulse 1.8s ease-in-out infinite;
}

.domain {
  color: var(--cyan);
  font-family: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
}

@keyframes pulse {
  0%,
  100% {
    opacity: 0.55;
    transform: scale(0.92);
  }

  50% {
    opacity: 1;
    transform: scale(1.12);
  }
}

@media (max-width: 680px) {
  .shell {
    padding: 22px;
  }

  .hero {
    min-height: calc(100vh - 44px);
  }

  .hero-copy {
    padding: 8vh 0 6vh;
  }

  h1 {
    font-size: clamp(3.05rem, 17vw, 5.9rem);
  }

  .status-panel {
    align-items: flex-start;
    flex-direction: column;
    gap: 10px;
    font-size: 0.9rem;
  }
}

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