:root {
  color-scheme: dark;
  --cursor-x: 50vw;
  --cursor-y: 50vh;
  --ink: #fbfdff;
  --muted: #aab4c5; --line: rgba(255, 255, 255, 0.18); --accent: #8ff7d1;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  overflow: hidden;
  font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "SF Pro Display",
    "Inter", "Segoe UI", Roboto, Arial, sans-serif;
  background: radial-gradient(circle at 18% 12%, rgba(119, 90, 255, 0.42), transparent 30%),
    radial-gradient(circle at 85% 18%, rgba(37, 211, 179, 0.3), transparent 28%),
    radial-gradient(circle at 55% 90%, rgba(255, 91, 139, 0.28), transparent 34%),
    linear-gradient(145deg, #080713 0%, #12172a 48%, #041b24 100%);
  color: var(--ink);
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background: radial-gradient(460px circle at var(--cursor-x) var(--cursor-y),
    rgba(75, 58, 145, 0.34), rgba(10, 42, 52, 0.24) 34%, transparent 70%);
  filter: blur(24px);
}

body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: 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: 44px 44px;
  mask-image: radial-gradient(circle at center, rgba(0, 0, 0, 0.75), transparent 72%);
}

main {
  min-height: 100vh;
  width: 100%;
  display: grid;
  place-items: center;
  padding: clamp(24px, 5vw, 72px);
  position: relative;
  z-index: 2;
}

.stage {
  width: min(1120px, 100%);
  display: grid;
  place-items: center;
  gap: clamp(34px, 6vw, 76px);
  text-align: center;
}

.label {
  margin: 0 0 clamp(18px, 3vw, 34px);
  color: var(--accent);
  font-size: clamp(0.82rem, 1.3vw, 1.05rem);
  font-weight: 780;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.phrase-text {
  margin: 0;
  max-width: 12ch;
  font-size: clamp(4.6rem, 15vw, 13.5rem);
  line-height: 0.88;
  font-weight: 860;
  letter-spacing: 0;
  overflow-wrap: anywhere;
  text-wrap: balance;
  text-shadow: 0 28px 90px rgba(0, 0, 0, 0.52);
}

.meta {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(16px, 3vw, 34px);
  width: min(760px, 100%);
}

.metric {
  min-width: 0;
  padding-top: 16px;
  border-top: 1px solid var(--line);
}

.metric span {
  display: block;
  color: var(--muted);
  font-size: 0.74rem;
  font-weight: 760;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.metric strong {
  display: block;
  margin-top: 8px;
  color: rgba(251, 253, 255, 0.95);
  font-size: clamp(1rem, 1.7vw, 1.24rem);
  font-weight: 680;
  overflow-wrap: anywhere;
}

@media (max-width: 680px) {
  .stage {
    gap: 36px;
  }

  .phrase-text {
    font-size: clamp(4rem, 21vw, 7.6rem);
  }

  .meta {
    grid-template-columns: 1fr;
  }
}
