:root {
  color-scheme: dark;
  --bg: #080b12;
  --surface: rgba(13, 18, 31, 0.76);
  --ink: #f6f8fb;
  --muted: #9aa6bb;
  --line: rgba(150, 164, 190, 0.2);
  --accent: #3fbab0;
  --accent-bright: #74d7cf;
  --signal: #d5a052;
  --violet: #8b7ad9;
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.34);
  --font-body: "DM Sans", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-display: "Poppins", "DM Sans", ui-sans-serif, system-ui, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  min-height: 100%;
}

body {
  min-height: 100vh;
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background:
    linear-gradient(rgba(255, 255, 255, 0.018) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.018) 1px, transparent 1px),
    radial-gradient(circle at 22% 20%, rgba(68, 215, 199, 0.07), transparent 24rem),
    radial-gradient(circle at 78% 74%, rgba(156, 124, 255, 0.06), transparent 26rem),
    linear-gradient(145deg, #080b12 0%, #101625 52%, #090d16 100%);
  background-size: 44px 44px, 44px 44px, auto, auto, auto;
  overflow-x: hidden;
}

.page-shell {
  display: grid;
  min-height: 100vh;
  padding: clamp(1.25rem, 4vw, 4rem);
  place-items: center;
}

.notice {
  display: grid;
  grid-template-columns: minmax(18rem, 0.88fr) minmax(0, 1.12fr);
  align-items: center;
  width: min(100%, 68rem);
  min-height: min(34rem, calc(100vh - 2.5rem));
  gap: clamp(1.4rem, 4vw, 3.4rem);
  padding: clamp(1.25rem, 4vw, 3.6rem);
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.08), transparent 42%),
    var(--surface);
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
}

.notice::before {
  display: none;
}

.domain-stage {
  position: relative;
  display: grid;
  width: min(100%, 26rem);
  aspect-ratio: 1;
  place-items: center;
  justify-self: center;
  overflow: hidden;
  border: 1px solid rgba(116, 215, 207, 0.2);
  border-radius: 8px;
  background:
    radial-gradient(circle at 50% 52%, rgba(68, 215, 199, 0.055), transparent 48%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.052), rgba(255, 255, 255, 0.014));
  box-shadow: var(--shadow);
}

.domain-stage::before,
.domain-stage::after {
  position: absolute;
  content: "";
  border-radius: 999px;
  pointer-events: none;
}

.domain-stage::before {
  inset: 14%;
  border: 1px dashed rgba(154, 166, 187, 0.15);
  animation: rotate-slow 42s linear infinite;
  will-change: transform;
}

.domain-stage::after {
  width: 0.7rem;
  height: 0.7rem;
  background: rgba(116, 215, 207, 0.78);
  box-shadow: none;
  left: 50%;
  top: 50%;
  animation: trace 18s linear infinite;
  will-change: transform;
}

.scanline {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent, rgba(116, 215, 207, 0.035), transparent);
  transform: translateY(-100%);
  animation: scan 9s ease-in-out infinite;
  will-change: transform;
}

.orbit {
  position: absolute;
  border: 1px solid rgba(156, 124, 255, 0.14);
  border-radius: 999px;
}

.orbit--one {
  width: 72%;
  height: 34%;
  animation: orbit-one 30s linear infinite;
  will-change: transform;
}

.orbit--two {
  width: 46%;
  height: 82%;
  border-color: rgba(68, 215, 199, 0.12);
  animation: orbit-two 38s linear infinite;
  will-change: transform;
}

.domain-word {
  position: absolute;
  inset: 0;
  z-index: 1;
  display: block;
  width: auto;
  min-width: 0;
  color: var(--ink);
  font-family: var(--font-display);
  font-size: clamp(1.25rem, 2.95vw, 2.2rem);
  font-weight: 800;
  letter-spacing: 0;
  text-shadow: none;
  transform: translate3d(0, 0, 0);
  -webkit-font-smoothing: antialiased;
  text-rendering: geometricprecision;
}

.domain-word span {
  position: absolute;
  left: 0;
  top: 0;
  display: inline-grid;
  width: 0.78em;
  height: 1.22em;
  place-items: center;
  border: 0;
  border-radius: 999px;
  background: transparent;
  filter: none;
  opacity: 0;
  backface-visibility: hidden;
  transform: translateZ(0);
  transform-origin: center;
  translate: 0 0;
  will-change: transform, opacity;
}

.domain-word.is-ready span {
  opacity: 1;
}

.domain-word .dot {
  color: var(--signal);
  filter: none;
}

.notice__content {
  position: relative;
  z-index: 1;
  min-width: 0;
  max-width: 100%;
}

.status-label {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  margin: 0 0 1rem;
  color: var(--accent-bright);
  font-size: 0.86rem;
  font-weight: 750;
  letter-spacing: 0;
  text-transform: uppercase;
}

.status-label span {
  display: inline-block;
  width: 0.68rem;
  height: 0.68rem;
  border-radius: 999px;
  background: var(--signal);
  box-shadow: 0 0 0 0.28rem rgba(213, 160, 82, 0.11);
  animation: pulse 2.2s ease-in-out infinite;
}

h1 {
  max-width: 100%;
  margin: 0;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(2.25rem, 4.25vw, 3.85rem);
  line-height: 1.02;
  letter-spacing: 0;
  white-space: nowrap;
}

.lead {
  max-width: 29rem;
  margin: 0.8rem 0 0;
  color: #e7ecf5;
  font-size: clamp(1.08rem, 1.8vw, 1.32rem);
  line-height: 1.5;
}

.supporting {
  max-width: 30rem;
  margin: 0.85rem 0 0;
  color: var(--muted);
  font-size: 0.98rem;
  line-height: 1.65;
}

@keyframes pulse {
  0%,
  100% {
    opacity: 0.72;
  }

  50% {
    opacity: 1;
  }
}

@keyframes scan {
  0%,
  18% {
    transform: translateY(-100%);
  }

  56%,
  100% {
    transform: translateY(100%);
  }
}

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

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

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

@keyframes trace {
  from {
    transform: translate(-50%, -50%) rotate(0deg) translateX(clamp(7rem, 34vw, 11rem));
  }

  to {
    transform: translate(-50%, -50%) rotate(360deg) translateX(clamp(7rem, 34vw, 11rem));
  }
}

@media (max-width: 760px) {
  .page-shell {
    min-height: 100svh;
    padding: 1rem;
    place-items: stretch;
  }

  .notice {
    grid-template-columns: 1fr;
    align-content: center;
    justify-items: center;
    min-height: calc(100svh - 2rem);
    gap: 1.35rem;
    padding: clamp(1rem, 5vw, 1.35rem);
  }

  .domain-stage {
    order: -1;
    width: min(100%, 20rem);
    box-shadow: 0 18px 48px rgba(0, 0, 0, 0.28);
  }

  .domain-word {
    font-size: clamp(1.02rem, 6vw, 1.55rem);
  }

  .notice__content {
    width: min(100%, 24rem);
    text-align: left;
  }

  .status-label {
    margin-bottom: 0.65rem;
    font-size: 0.78rem;
  }

  h1 {
    max-width: 100%;
    font-size: clamp(2rem, 10vw, 3rem);
  }

  .lead {
    margin-top: 0;
    font-size: clamp(1.02rem, 4.7vw, 1.18rem);
  }

  .supporting {
    font-size: 0.94rem;
    line-height: 1.58;
  }
}

@media (max-width: 430px) {
  .page-shell {
    padding: 0.75rem;
  }

  .notice {
    min-height: calc(100svh - 1.5rem);
  }

  .domain-stage {
    width: min(100%, 17.5rem);
  }

  .domain-word {
    font-size: clamp(0.9rem, 5.6vw, 1.18rem);
  }

  .lead {
    font-size: 1rem;
  }
}

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