@import url("https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600&display=swap");

:root {
  color-scheme: dark;
  font-family: Inter, Arial, sans-serif;
  background: #080808;
  color: #f0eee9;
  font-synthesis: none;
}

* {
  box-sizing: border-box;
}

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

body {
  min-height: 100svh;
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 48%, rgba(255, 255, 255, 0.035), transparent 34%),
    #080808;
}

body::before {
  position: fixed;
  inset: 0;
  pointer-events: none;
  content: "";
  opacity: 0.16;
  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='.92' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.28'/%3E%3C/svg%3E");
}

.stage {
  position: relative;
  display: grid;
  min-height: 100svh;
  place-items: center;
  isolation: isolate;
}

.frame {
  position: absolute;
  inset: clamp(14px, 2.4vw, 34px);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.frame::before,
.frame::after {
  position: absolute;
  width: 7px;
  height: 7px;
  content: "";
}

.frame::before {
  top: -1px;
  left: -1px;
  border-top: 1px solid #c8ff31;
  border-left: 1px solid #c8ff31;
}

.frame::after {
  right: -1px;
  bottom: -1px;
  border-right: 1px solid #c8ff31;
  border-bottom: 1px solid #c8ff31;
}

.identity {
  position: relative;
  z-index: 2;
  width: min(92vw, 980px);
  text-align: center;
}

.eyebrow {
  margin: 0 0 clamp(18px, 3vw, 34px);
  color: rgba(240, 238, 233, 0.5);
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.32em;
  text-transform: uppercase;
}

h1 {
  margin: 0;
  font-size: clamp(56px, 13.5vw, 186px);
  font-weight: 600;
  letter-spacing: -0.075em;
  line-height: 0.78;
  text-indent: -0.075em;
  text-shadow: 0 0 60px rgba(255, 255, 255, 0.04);
}

.status {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-top: clamp(28px, 4vw, 50px);
  color: rgba(240, 238, 233, 0.64);
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.status-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #c8ff31;
  box-shadow: 0 0 12px rgba(200, 255, 49, 0.7);
  animation: pulse 2.8s ease-in-out infinite;
}

.signal {
  position: absolute;
  z-index: 1;
  width: 1px;
  height: 13vh;
  background: linear-gradient(transparent, rgba(200, 255, 49, 0.45), transparent);
  opacity: 0.34;
}

.signal-a {
  top: 0;
  left: 23%;
}

.signal-b {
  right: 19%;
  bottom: 0;
}

footer {
  position: absolute;
  right: clamp(27px, 4vw, 57px);
  bottom: clamp(27px, 4vw, 57px);
  left: clamp(27px, 4vw, 57px);
  z-index: 2;
  display: flex;
  justify-content: space-between;
  color: rgba(240, 238, 233, 0.34);
  font-size: 8px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

@keyframes pulse {
  0%,
  100% {
    opacity: 0.45;
  }
  50% {
    opacity: 1;
  }
}

@media (max-width: 600px) {
  .identity {
    width: 88vw;
  }

  h1 {
    font-size: 20.5vw;
    letter-spacing: -0.08em;
  }

  .eyebrow {
    font-size: 8px;
  }

  footer {
    bottom: 29px;
    font-size: 7px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .status-dot {
    animation: none;
  }
}
