:root {
  --bg: #060b10;
  --panel: rgba(10, 15, 20, 0.82);
  --line: rgba(148, 176, 187, 0.16);
  --text: #eef4f6;
  --muted: #98adb8;
  --soft: #6ee0bf;
  --warm: #f1c68a;
  --mono: "Cascadia Code", "Consolas", "Courier New", monospace;
  --body: "Aptos", "Segoe UI", sans-serif;
  --display: "Bahnschrift", "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  color: var(--text);
  font-family: var(--body);
  background:
    radial-gradient(circle at top left, rgba(110, 224, 191, 0.08), transparent 32%),
    radial-gradient(circle at bottom right, rgba(241, 198, 138, 0.08), transparent 26%),
    linear-gradient(180deg, #05080c 0%, #091018 100%);
}

.splash {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 24px;
  position: relative;
  overflow: hidden;
}

.background {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

.background::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at center, rgba(6, 11, 16, 0), rgba(6, 11, 16, 0.5) 58%, rgba(6, 11, 16, 0.88) 100%);
  pointer-events: none;
}

.card {
  width: min(560px, 100%);
  padding: 34px 32px 28px;
  position: relative;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: var(--panel);
  backdrop-filter: blur(18px);
  box-shadow: 0 20px 80px rgba(0, 0, 0, 0.34);
  z-index: 1;
}

.card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 24px;
  right: 24px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(110, 224, 191, 0.7), transparent);
}

.eyebrow,
.links a,
.notes span,
.status {
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--warm);
  font-size: 0.72rem;
  font-weight: 700;
}

h1 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(2.8rem, 9vw, 4.6rem);
  line-height: 0.94;
}

.copy {
  margin-top: 18px;
  display: grid;
  gap: 10px;
}

.copy p,
.notes p {
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
}

.links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 24px;
}

.links a {
  color: var(--text);
  text-decoration: none;
  font-size: 0.8rem;
  position: relative;
}

.links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -5px;
  width: 100%;
  height: 1px;
  background: rgba(255, 255, 255, 0.28);
  transform: scaleX(0.4);
  transform-origin: left;
  transition: transform 180ms ease, background 180ms ease;
}

.links a:hover::after,
.links a:focus-visible::after {
  transform: scaleX(1);
  background: var(--soft);
}

.notes {
  margin-top: 24px;
  display: grid;
  gap: 10px;
}

.notes p {
  padding-left: 14px;
  border-left: 1px solid rgba(255, 255, 255, 0.12);
}

.notes span {
  color: var(--soft);
  font-size: 0.72rem;
  font-weight: 700;
  margin-right: 8px;
}

.status {
  margin: 26px 0 0;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--muted);
  font-family: var(--mono);
  font-size: 0.72rem;
}

.status-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--soft);
  box-shadow: 0 0 14px rgba(110, 224, 191, 0.6);
  animation: pulse 2.2s ease-in-out infinite;
}

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

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

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }
}

@media (max-width: 520px) {
  .splash {
    padding: 16px;
  }

  .card {
    padding: 28px 22px 24px;
    border-radius: 20px;
  }

  .links {
    gap: 14px;
  }
}
