:root {
  --bg: #080b14;
  --bg-2: #0d1220;
  --panel: rgba(14, 20, 35, 0.78);
  --panel-strong: rgba(18, 25, 42, 0.94);
  --line: rgba(132, 151, 190, 0.22);
  --text: #f5f7ff;
  --muted: #a9b3cc;
  --blue: #5865f2;
  --violet: #6d72d8;
  --cyan: #8fb7d8;
  --acid: #9cc7a3;
  --danger: #d56f8c;
  --shadow: 0 1.6rem 4rem rgba(0, 0, 0, 0.42);
  --radius: 0.5rem;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  min-height: 100%;
}

body {
  min-height: 100vh;
  margin: 0;
  color: var(--text);
  font-family: "Manrope", "Trebuchet MS", sans-serif;
  background:
    radial-gradient(circle at 18% 18%, rgba(88, 101, 242, 0.24), transparent 30rem),
    radial-gradient(circle at 82% 24%, rgba(85, 110, 210, 0.18), transparent 26rem),
    linear-gradient(140deg, #081026, #0b1020 44%, #060812);
  background-size:
    120% 120%,
    130% 130%,
    100% 100%;
  animation: atmosphere-shift 18s ease-in-out infinite alternate;
  overflow-x: hidden;
}

body.intro-running {
  overflow: hidden;
}

body.intro-complete .page-shell {
  animation: page-reveal 720ms cubic-bezier(0.2, 0.8, 0.2, 1) both;
}

.intro-overlay {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: grid;
  place-items: center;
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 45%, rgba(88, 101, 242, 0.18), transparent 18rem),
    radial-gradient(circle at 30% 72%, rgba(143, 183, 216, 0.1), transparent 16rem),
    #050713;
  animation: intro-exit 2900ms cubic-bezier(0.76, 0, 0.24, 1) forwards;
}

.intro-overlay::before,
.intro-overlay::after {
  position: absolute;
  inset: 0;
  content: "";
  pointer-events: none;
}

.intro-overlay::before {
  background-image:
    linear-gradient(rgba(143, 183, 216, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(143, 183, 216, 0.045) 1px, transparent 1px);
  background-size: 2rem 2rem;
  animation: intro-grid 1200ms linear infinite;
}

.intro-overlay::after {
  background:
    linear-gradient(115deg, transparent 0 45%, rgba(132, 151, 190, 0.12) 45.2%, transparent 45.55%),
    repeating-linear-gradient(0deg, rgba(255, 255, 255, 0.025) 0 1px, transparent 1px 5px);
  mix-blend-mode: screen;
  opacity: 0.8;
}

.intro-core {
  position: relative;
  z-index: 1;
  width: min(82vw, 24rem);
  padding: 1.2rem;
  border: 1px solid rgba(137, 165, 255, 0.28);
  border-radius: var(--radius);
  background: linear-gradient(145deg, rgba(17, 25, 54, 0.9), rgba(8, 11, 26, 0.82));
  box-shadow:
    0 2rem 5rem rgba(0, 0, 0, 0.54),
    0 0 2rem rgba(88, 101, 242, 0.12);
  animation: intro-core-pop 2700ms cubic-bezier(0.2, 0.8, 0.2, 1) both;
}

.intro-logo-frame {
  display: grid;
  min-height: 5rem;
  place-items: center;
  border: 1px solid rgba(132, 151, 190, 0.22);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 50% 35%, rgba(88, 101, 242, 0.12), transparent 10rem),
    rgba(255, 255, 255, 0.035);
}

.intro-logo-frame img {
  width: min(76%, 15rem);
  height: auto;
  filter: drop-shadow(0 0 0.85rem rgba(88, 101, 242, 0.32));
  animation: intro-logo-glitch 950ms steps(2, end) 2;
}

.intro-status {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  margin: 0.85rem 0 0.65rem;
  color: var(--muted);
  font-size: 0.68rem;
  font-weight: 900;
  text-transform: uppercase;
}

.intro-status span:last-child {
  color: var(--cyan);
}

.intro-progress {
  overflow: hidden;
  height: 0.45rem;
  border-radius: 999rem;
  background: rgba(255, 255, 255, 0.08);
}

.intro-progress span {
  display: block;
  width: 100%;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, #5865f2, #7681f5);
  transform-origin: left;
  animation: intro-load 2100ms cubic-bezier(0.2, 0.8, 0.2, 1) both;
}

.intro-scan {
  position: absolute;
  inset: -20% 0 auto;
  height: 30%;
  background: linear-gradient(180deg, transparent, rgba(132, 151, 190, 0.1), transparent);
  animation: intro-scan 1400ms ease-in-out 2;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -2;
  content: "";
  background-image:
    linear-gradient(90deg, transparent 0 11rem, rgba(88, 101, 242, 0.07) 11.05rem, transparent 11.12rem),
    linear-gradient(0deg, transparent 0 8rem, rgba(88, 101, 242, 0.045) 8.05rem, transparent 8.12rem),
    linear-gradient(rgba(132, 151, 190, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(132, 151, 190, 0.045) 1px, transparent 1px);
  background-size:
    18rem 18rem,
    18rem 18rem,
    2.25rem 2.25rem,
    2.25rem 2.25rem;
  background-position:
    0 0,
    0 0,
    0 0,
    0 0;
  mask-image: linear-gradient(to bottom, black, transparent 78%);
  animation: grid-pan 28s linear infinite;
}

body::after {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  content: "";
  background:
    linear-gradient(115deg, transparent 0 18%, rgba(88, 101, 242, 0.11) 18.2%, transparent 18.7% 62%, rgba(104, 125, 230, 0.065) 62.2%, transparent 62.7%),
    linear-gradient(65deg, transparent 0 38%, rgba(88, 101, 242, 0.045) 38.1%, transparent 38.45%),
    linear-gradient(115deg, transparent 0 42%, rgba(88, 101, 242, 0.07) 42% 42.4%, transparent 42.4%),
    linear-gradient(180deg, transparent 0 46%, rgba(143, 183, 216, 0.04) 46.1%, transparent 46.55%),
    repeating-linear-gradient(
      0deg,
      rgba(255, 255, 255, 0.012) 0,
      rgba(255, 255, 255, 0.012) 1px,
      transparent 1px,
      transparent 5px
    );
  background-size:
    100% 100%,
    100% 100%,
    100% 100%,
    100% 180%,
    100% 5px;
  mix-blend-mode: soft-light;
  animation: scanline-sweep 9s ease-in-out infinite;
}

a {
  color: inherit;
  text-decoration: none;
}

.page-shell {
  width: min(100%, 75rem);
  margin: 0 auto;
  padding: 0.9rem;
}

.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  padding: 0.35rem 0;
}

.cta-row,
.button,
.console-top,
.server-panel,
.bot-card {
  display: flex;
  align-items: center;
}

.brand {
  display: inline-flex;
  align-items: center;
  width: min(58vw, 10.8rem);
  height: 2.85rem;
}

.brand img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.button {
  min-height: 2.75rem;
  border-radius: var(--radius);
  font-weight: 800;
}

.hero {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.9rem;
  padding: 2.2rem 0 1.6rem;
  align-items: center;
}

.hero-copy {
  max-width: 44rem;
}

.eyebrow,
.section-kicker,
.label {
  margin: 0;
  color: #9eb7ff;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.55rem 0.75rem;
  border: 1px solid rgba(132, 151, 190, 0.24);
  border-radius: 999rem;
  background: rgba(18, 24, 54, 0.72);
  max-width: 100%;
  line-height: 1.35;
}

.status-dot {
  width: 0.55rem;
  height: 0.55rem;
  border-radius: 50%;
  background: #5865f2;
  box-shadow: 0 0 0 1px rgba(88, 101, 242, 0.34);
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 10.5ch;
  margin-bottom: 1rem;
  margin-top: 1.25rem;
  font-family: "Audiowide", "Manrope", sans-serif;
  font-size: 2.28rem;
  line-height: 1;
  letter-spacing: 0;
  text-transform: uppercase;
  text-wrap: balance;
  text-shadow: 0 0.9rem 2.4rem rgba(0, 0, 0, 0.26);
}

.scramble-word {
  display: inline-block;
  min-width: 7.6ch;
  color: inherit;
  text-shadow: inherit;
}

.scramble-word[data-scramble-text="chat."] {
  min-width: 5ch;
}

.hero-text {
  max-width: 40rem;
  margin-bottom: 1.35rem;
  color: var(--muted);
  font-size: 0.98rem;
  line-height: 1.68;
}

.cta-row {
  align-items: stretch;
  flex-wrap: wrap;
  gap: 0.7rem;
}

.button {
  justify-content: center;
  gap: 0.65rem;
  width: 100%;
  padding: 0.9rem 1.15rem;
  border: 1px solid transparent;
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    background 180ms ease,
    box-shadow 180ms ease;
}

.button svg {
  width: 1.2rem;
  height: 1.2rem;
  fill: currentColor;
}

.button:hover {
  transform: translateY(-2px);
}

.button:focus-visible,
.learn-more:focus-visible {
  outline: 3px solid rgba(88, 101, 242, 0.65);
  outline-offset: 4px;
}

.primary {
  color: #06101e;
  background: linear-gradient(135deg, #eef2ff, #dbe2ff);
  box-shadow: 0 1rem 2rem rgba(88, 101, 242, 0.18);
}

.learn-more {
  position: relative;
  display: inline-block;
  width: 100%;
  height: 3.15rem;
  flex: 0 0 auto;
  color: var(--text);
  font-family: inherit;
  font-size: 0.94rem;
  font-weight: 800;
  line-height: 1.5;
  text-decoration: none;
}

.learn-more .circle {
  position: relative;
  display: block;
  width: 3.15rem;
  height: 3.15rem;
  margin: 0;
  border: 1px solid rgba(137, 165, 255, 0.34);
  border-radius: 1.75rem;
  background: linear-gradient(135deg, #151d3f, #282936);
  box-shadow: 0 0.9rem 2.1rem rgba(0, 0, 0, 0.26);
  transition: all 450ms cubic-bezier(0.65, 0, 0.076, 1);
}

.learn-more .icon {
  position: absolute;
  inset: 0 auto 0 0.68rem;
  width: 1.15rem;
  height: 0.125rem;
  margin: auto;
  transition: all 450ms cubic-bezier(0.65, 0, 0.076, 1);
}

.learn-more .icon.arrow {
  background: transparent;
}

.learn-more .icon.arrow::before {
  position: absolute;
  top: -0.25rem;
  right: 0.06rem;
  width: 0.625rem;
  height: 0.625rem;
  content: "";
  border-top: 0.125rem solid #ffffff;
  border-right: 0.125rem solid #ffffff;
  transform: rotate(45deg);
}

.learn-more .button-text {
  position: absolute;
  inset: 0;
  padding: 0.77rem 0;
  margin-left: 1.9rem;
  color: var(--text);
  line-height: 1.6;
  text-align: center;
  text-transform: uppercase;
  transition: all 450ms cubic-bezier(0.65, 0, 0.076, 1);
}

.learn-more:hover .circle {
  width: 100%;
  border-color: rgba(88, 101, 242, 0.64);
  background: linear-gradient(135deg, #252b63, #5865f2);
}

.learn-more:hover .icon.arrow {
  background: #ffffff;
  transform: translateX(1rem);
}

.learn-more:hover .button-text {
  color: #ffffff;
}

.blob-btn {
  position: relative;
  z-index: 1;
  overflow: hidden;
  min-height: 3.15rem;
  width: 100%;
  border: 0;
  border-radius: 999rem;
  color: #5865f2;
  background: transparent;
  box-shadow: none;
  isolation: isolate;
  transition:
    color 500ms ease,
    transform 180ms ease,
    box-shadow 220ms ease;
}

.blob-btn::before {
  position: absolute;
  inset: 0;
  z-index: 2;
  content: "";
  border: 2px solid #5865f2;
  border-radius: inherit;
  pointer-events: none;
}

.blob-btn::after {
  position: absolute;
  inset: 3px -3px -3px 3px;
  z-index: -2;
  content: "";
  border-radius: inherit;
  transition: inset 300ms ease;
}

.blob-btn:hover {
  color: #ffffff;
  box-shadow: 0 1rem 2.2rem rgba(88, 101, 242, 0.18);
}

.blob-btn:hover::after {
  inset: 0;
}

.blob-btn__content {
  position: relative;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
}

.blob-btn__inner {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  border-radius: inherit;
  background: #ffffff;
}

.blob-btn__blobs {
  position: relative;
  display: block;
  height: 100%;
  filter: url("#goo");
}

.blob-btn__blob {
  position: absolute;
  top: 2px;
  width: 25%;
  height: 100%;
  border-radius: 100%;
  background: #5865f2;
  transform: translate3d(0, 150%, 0) scale(1.4);
  transition: transform 450ms ease;
}

.blob-btn__blob:nth-child(1) {
  left: 0;
  transition-delay: 0ms;
}

.blob-btn__blob:nth-child(2) {
  left: 30%;
  transition-delay: 80ms;
}

.blob-btn__blob:nth-child(3) {
  left: 60%;
  transition-delay: 160ms;
}

.blob-btn__blob:nth-child(4) {
  left: 90%;
  transition-delay: 240ms;
}

.blob-btn:hover .blob-btn__blob {
  transform: translateZ(0) scale(1.55);
}

.goo-filter {
  position: absolute;
  width: 0;
  height: 0;
}

.hero-visual {
  position: relative;
  min-height: auto;
  --shift-x: 0rem;
  --shift-y: 0rem;
  --spin: -1deg;
}

.orbit-ring {
  position: absolute;
  inset: 12% 2% auto auto;
  width: 12rem;
  aspect-ratio: 1;
  border: 1px solid rgba(132, 151, 190, 0.18);
  border-radius: 50%;
  animation: drift 9s ease-in-out infinite;
}

.ring-two {
  inset: 22% auto auto 2%;
  width: 10rem;
  border-color: rgba(88, 101, 242, 0.18);
  animation-delay: -4s;
}

.game-card-swiper {
  position: absolute;
  inset: 2.2rem 0 auto;
  z-index: 4;
  display: none;
  justify-content: center;
  pointer-events: none;
}

.game-card-group,
.game-card {
  aspect-ratio: 5 / 7;
}

.game-card-group,
.big-game-card {
  width: min(38vw, 11.2rem);
}

.game-card-group {
  position: relative;
  opacity: 0;
  transform: translateY(1.2rem) scale(0.82);
  transition:
    opacity 320ms ease,
    transform 400ms ease;
}

.game-card {
  position: absolute;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 0.45rem;
  padding: 0.85rem;
  border: 1px solid rgba(132, 151, 190, 0.22);
  color: rgba(245, 247, 255, 0.88);
  font-size: 0.78rem;
  font-weight: 900;
  background:
    linear-gradient(145deg, rgba(18, 25, 42, 0.94), rgba(8, 11, 26, 0.86)),
    radial-gradient(circle at 28% 18%, rgba(88, 101, 242, 0.28), transparent 34%),
    radial-gradient(circle at 78% 82%, rgba(86, 112, 210, 0.18), transparent 36%);
  background-position: center;
  background-size: cover;
  box-shadow: -0.9rem 1rem 2rem rgba(0, 0, 0, 0.28);
  text-shadow: 0 0 1rem rgba(0, 0, 0, 0.58);
  transition:
    opacity 260ms ease,
    box-shadow 300ms ease,
    transform 800ms cubic-bezier(0.05, 0.43, 0.25, 0.95);
}

.game-title {
  display: block;
}

.game-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 0.32rem;
}

.game-stats span,
.game-meta {
  display: inline-flex;
  width: fit-content;
  padding: 0.28rem 0.42rem;
  border: 1px solid rgba(132, 151, 190, 0.24);
  border-radius: 999rem;
  color: rgba(245, 247, 255, 0.82);
  font-size: 0.58rem;
  font-weight: 900;
  line-height: 1;
  background: rgba(7, 9, 20, 0.48);
  backdrop-filter: blur(0.55rem);
}

.big-game-card {
  border-radius: var(--radius);
}

.little-game-card {
  left: 50%;
  top: 50%;
  width: min(14vw, 4.2rem);
  padding: 0.5rem;
  border-radius: var(--radius);
  transform: translate(-50%, -50%);
}

.little-game-card .game-title {
  font-size: 0.62rem;
}

.little-game-card .game-meta {
  padding: 0.2rem 0.28rem;
  font-size: 0.46rem;
  white-space: nowrap;
}

.big-game-card:nth-child(2) {
  transform: translateX(-10%) rotate(-1deg);
}

.big-game-card:nth-child(4) {
  background:
    linear-gradient(145deg, rgba(18, 25, 42, 0.94), rgba(8, 11, 26, 0.86)),
    radial-gradient(circle at 24% 20%, rgba(88, 101, 242, 0.22), transparent 34%),
    radial-gradient(circle at 78% 82%, rgba(104, 125, 230, 0.2), transparent 36%);
  transform: rotate(2deg);
}

.big-game-card:nth-child(6) {
  background:
    linear-gradient(145deg, rgba(18, 25, 42, 0.94), rgba(8, 11, 26, 0.86)),
    radial-gradient(circle at 28% 18%, rgba(86, 112, 210, 0.2), transparent 34%),
    radial-gradient(circle at 78% 82%, rgba(88, 101, 242, 0.24), transparent 36%);
  transform: translateX(-6%) rotate(-3deg);
}

.big-game-card:nth-child(8) {
  transform: translate(10%, 3%) rotate(5deg);
}

.hero-visual:hover .game-card-group,
.hero-visual:focus-within .game-card-group {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.hero-visual:hover .console-card,
.hero-visual:focus-within .console-card {
  opacity: 0.38;
  filter: blur(0.08rem);
}

.hero-visual:hover .game-card,
.hero-visual:focus-within .game-card {
  box-shadow:
    -1.2rem 1.5rem 2.4rem rgba(0, 0, 0, 0.42),
    0 0 1.2rem rgba(88, 101, 242, 0.08);
}

.hero-visual:hover .big-game-card:nth-child(2),
.hero-visual:focus-within .big-game-card:nth-child(2) {
  transform: translate(-108%, 22%) rotate(-25deg);
}

.hero-visual:hover .big-game-card:nth-child(4),
.hero-visual:focus-within .big-game-card:nth-child(4) {
  transform: translate(-38%, 6%) rotate(-9deg);
}

.hero-visual:hover .big-game-card:nth-child(6),
.hero-visual:focus-within .big-game-card:nth-child(6) {
  transform: translate(38%, 6%) rotate(9deg);
}

.hero-visual:hover .big-game-card:nth-child(8),
.hero-visual:focus-within .big-game-card:nth-child(8) {
  transform: translate(108%, 22%) rotate(25deg);
}

.hero-visual:hover .little-game-card:nth-child(1),
.hero-visual:focus-within .little-game-card:nth-child(1) {
  transform: translate(245%, -175%) rotate(-15deg);
}

.hero-visual:hover .little-game-card:nth-child(3),
.hero-visual:focus-within .little-game-card:nth-child(3) {
  transform: translate(220%, 175%) rotate(15deg);
}

.hero-visual:hover .little-game-card:nth-child(5),
.hero-visual:focus-within .little-game-card:nth-child(5) {
  transform: translate(-250%, -175%) rotate(15deg);
}

.hero-visual:hover .little-game-card:nth-child(7),
.hero-visual:focus-within .little-game-card:nth-child(7) {
  transform: translate(-310%, 150%) rotate(-15deg);
}

.console-card,
.bot-card,
.benefit-card,
.beta-band {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(145deg, rgba(20, 29, 58, 0.9), rgba(8, 11, 26, 0.78)),
    radial-gradient(circle at 16% 0%, rgba(88, 101, 242, 0.1), transparent 12rem);
  box-shadow: var(--shadow);
  backdrop-filter: blur(1.25rem);
}

.console-card {
  position: relative;
  z-index: 2;
  padding: 0.85rem;
  transition:
    opacity 260ms ease,
    filter 260ms ease,
    transform 220ms ease;
}

.console-card::after {
  position: absolute;
  inset: auto 1.1rem -0.65rem;
  height: 0.65rem;
  content: "";
  border-radius: 0 0 var(--radius) var(--radius);
  background: linear-gradient(90deg, rgba(88, 101, 242, 0.95), rgba(74, 222, 128, 0.62));
  filter: blur(0.16rem);
  opacity: 0.68;
}

.console-top {
  gap: 0.42rem;
  padding-bottom: 1rem;
  color: var(--muted);
  font-size: 0.78rem;
}

.console-top span {
  width: 0.62rem;
  height: 0.62rem;
  border-radius: 50%;
  background: #ff5c8a;
  box-shadow: 0 0 0 1px rgba(255, 92, 138, 0.16);
}

.console-top span:nth-child(2) {
  background: #ffd166;
  box-shadow: 0 0 0 1px rgba(255, 209, 102, 0.16);
}

.console-top span:nth-child(3) {
  background: #4ade80;
  box-shadow: 0 0 0 1px rgba(74, 222, 128, 0.16);
}

.console-top strong {
  margin-left: auto;
  font-weight: 800;
}

.server-frame {
  transition:
    opacity 280ms ease,
    transform 280ms ease;
}

.server-frame.is-exiting {
  opacity: 0;
  transform: translateY(-1.25rem);
}

.server-frame.is-entering {
  opacity: 0;
  transform: translateY(1.25rem);
}

.server-panel {
  justify-content: space-between;
  gap: 1rem;
  min-height: 7rem;
  padding: 0.85rem;
  border: 1px solid rgba(88, 101, 242, 0.28);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(88, 101, 242, 0.24), transparent 45%),
    radial-gradient(circle at 88% 20%, rgba(74, 222, 128, 0.16), transparent 8rem),
    radial-gradient(circle at 18% 88%, rgba(96, 165, 250, 0.12), transparent 9rem),
  #0b1229;
}

.server-copy {
  overflow: hidden;
}

.server-panel h2 {
  margin: 0.35rem 0 0;
  font-size: 1.18rem;
  line-height: 1.12;
}

.live-pill {
  padding: 0.45rem 0.65rem;
  border: 1px solid rgba(74, 222, 128, 0.46);
  border-radius: 999rem;
  color: #86efac;
  font-size: 0.75rem;
  font-weight: 800;
  background: rgba(34, 197, 94, 0.1);
  box-shadow: inset 0 0 0 1px rgba(74, 222, 128, 0.08);
}

.metric-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.45rem;
  margin: 0.65rem 0;
}

.metric-grid div {
  min-height: 4rem;
  padding: 0.7rem 0.55rem;
  border: 1px solid rgba(137, 165, 255, 0.2);
  border-radius: var(--radius);
  background:
    linear-gradient(160deg, rgba(88, 101, 242, 0.08), rgba(255, 255, 255, 0.035)),
    rgba(255, 255, 255, 0.04);
}

.metric-grid span {
  display: block;
  color: var(--muted);
  font-size: 0.76rem;
  font-weight: 700;
}

.metric-grid strong {
  display: block;
  margin-top: 0.35rem;
  font-size: 1rem;
}

.deploy-bar {
  overflow: hidden;
  height: 0.72rem;
  border-radius: 999rem;
  background: rgba(255, 255, 255, 0.08);
}

.deploy-bar span:first-child {
  display: block;
  width: 68%;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, #5865f2, #7d89c8);
  animation: deploy 2.8s ease-in-out infinite;
}

.bot-card {
  position: relative;
  z-index: 2;
  right: auto;
  bottom: auto;
  gap: 0.8rem;
  width: min(100%, 19rem);
  margin: 0.9rem 0 0 auto;
  padding: 0.85rem;
  animation: float 4.6s ease-in-out infinite;
}

.bot-avatar {
  display: grid;
  flex: 0 0 auto;
  width: 2.65rem;
  height: 2.65rem;
  place-items: center;
  border-radius: var(--radius);
  color: #08101e;
  font-family: "Audiowide", "Manrope", sans-serif;
  background: #c7d2fe;
}

.bot-card p {
  margin: 0 0 0.1rem;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 800;
}

.bot-card strong {
  font-size: 1rem;
}

.bot-check {
  width: 0.85rem;
  height: 0.85rem;
  margin-left: auto;
  border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 0 1px rgba(143, 183, 216, 0.28);
}

.beta-band {
  margin: 1.2rem 0;
  padding: 1.15rem;
}

.beta-band h2 {
  max-width: 58rem;
  margin: 0.45rem 0 0.7rem;
  font-size: 1.42rem;
  line-height: 1.12;
  letter-spacing: 0;
}

.beta-band p:last-child {
  max-width: 50rem;
  margin-bottom: 0;
  color: var(--muted);
  line-height: 1.7;
}

.benefits {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.85rem;
  padding: 0.8rem 0 3rem;
}

.benefit-card {
  min-height: 10.5rem;
  padding: 1rem;
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    background 180ms ease;
}

.benefit-card:hover {
  transform: translateY(-3px);
  border-color: rgba(132, 151, 190, 0.38);
  background: linear-gradient(145deg, rgba(25, 36, 76, 0.9), rgba(8, 11, 26, 0.8));
}

.benefit-icon {
  display: inline-grid;
  min-width: 2.35rem;
  height: 2.1rem;
  margin-bottom: 1.7rem;
  place-items: center;
  border: 1px solid rgba(132, 151, 190, 0.25);
  border-radius: var(--radius);
  color: var(--cyan);
  font-size: 0.75rem;
  font-weight: 900;
  background: rgba(132, 151, 190, 0.07);
}

.benefit-card h3 {
  margin-bottom: 0.45rem;
  font-size: 1.12rem;
}

.benefit-card p {
  margin-bottom: 0;
  color: var(--muted);
  line-height: 1.6;
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-0.7rem);
  }
}

@keyframes drift {
  0%,
  100% {
    transform: translate3d(0, 0, 0) rotate(0deg);
  }

  50% {
    transform: translate3d(-1rem, 0.8rem, 0) rotate(12deg);
  }
}

@keyframes deploy {
  0%,
  100% {
    width: 42%;
  }

  50% {
    width: 78%;
  }
}

@keyframes atmosphere-shift {
  0% {
    background-position:
      0% 0%,
      100% 0%,
      center;
  }

  100% {
    background-position:
      12% 7%,
      86% 12%,
      center;
  }
}

@keyframes grid-pan {
  from {
    background-position:
      0 0,
      0 0,
      0 0,
      0 0;
  }

  to {
    background-position:
      18rem 9rem,
      -9rem 18rem,
      2.25rem 2.25rem,
      2.25rem 2.25rem;
  }
}

@keyframes scanline-sweep {
  0%,
  100% {
    background-position:
      0 0,
      0 0,
      0 0,
      0 -80%,
      0 0;
    opacity: 0.72;
  }

  50% {
    background-position:
      0 0,
      0 0,
      0 0,
      0 120%,
      0 0;
    opacity: 0.95;
  }
}

@keyframes intro-grid {
  from {
    background-position: 0 0, 0 0;
  }

  to {
    background-position: 2rem 2rem, 2rem 2rem;
  }
}

@keyframes intro-core-pop {
  0% {
    opacity: 0;
    transform: translateY(0.8rem) scale(0.96);
  }

  22%,
  96% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }

  100% {
    opacity: 0;
    transform: translateY(-0.6rem) scale(0.985);
  }
}

@keyframes intro-logo-glitch {
  0%,
  100% {
    transform: translateX(0);
  }

  35% {
    transform: translateX(-0.18rem);
  }

  70% {
    transform: translateX(0.18rem);
  }
}

@keyframes intro-load {
  from {
    transform: scaleX(0);
  }

  to {
    transform: scaleX(1);
  }
}

@keyframes intro-scan {
  from {
    transform: translateY(-120%);
  }

  to {
    transform: translateY(430%);
  }
}

@keyframes intro-exit {
  0%,
  82% {
    opacity: 1;
    visibility: visible;
  }

  100% {
    opacity: 0;
    visibility: hidden;
  }
}

@keyframes page-reveal {
  from {
    opacity: 0;
    transform: translateY(0.9rem);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (min-width: 640px) {
  .page-shell {
    padding: 1.25rem;
  }

  h1 {
    font-size: 3.6rem;
  }

  .brand {
    width: 13rem;
    height: 3.35rem;
  }

  .button {
    width: auto;
    min-width: 11.5rem;
  }

  .blob-btn,
  .learn-more {
    width: auto;
    min-width: 11.5rem;
  }

  .learn-more {
    width: 13.2rem;
  }

  .hero-text {
    font-size: 1.04rem;
    line-height: 1.75;
  }

  .metric-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 0.8rem;
    margin: 0.85rem 0;
  }

  .metric-grid div {
    min-height: 4.5rem;
    padding: 0.9rem;
  }

  .metric-grid strong {
    font-size: 1.3rem;
  }

  .beta-band {
    padding: 2rem;
  }

  .beta-band h2 {
    font-size: 2.4rem;
  }

  .benefits {
    grid-template-columns: repeat(2, 1fr);
  }

  .benefit-card {
    min-height: 12rem;
    padding: 1.15rem;
  }
}

@media (min-width: 768px) {
  .hero {
    grid-template-columns: minmax(0, 1fr) minmax(18rem, 0.78fr);
    gap: 2rem;
    padding-top: 2.6rem;
  }

  .hero-visual {
    min-height: 29rem;
  }

  .game-card-swiper {
    display: flex;
  }

  .orbit-ring {
    width: 17rem;
  }

  .ring-two {
    width: 13rem;
  }

  .console-card {
    padding: 1rem;
    transform: translate3d(var(--shift-x), var(--shift-y), 0) rotate(var(--spin));
  }

  .server-panel {
    min-height: 8.2rem;
    padding: 1rem;
  }

  .server-panel h2 {
    font-size: 1.45rem;
  }

  .bot-card {
    position: absolute;
    right: 0.8rem;
    bottom: 2.2rem;
    width: min(100%, 19rem);
    margin-top: 0;
  }
}

@media (min-width: 1024px) {
  .page-shell {
    padding: 1.5rem;
  }

  .hero {
    grid-template-columns: minmax(0, 1fr) minmax(25rem, 0.82fr);
    gap: 3rem;
    padding-top: 2rem;
  }

  .hero-visual {
    min-height: 34rem;
  }

  h1 {
    font-size: 5.65rem;
  }

  .console-card {
    margin-top: 4.2rem;
  }

  .bot-card {
    right: 1.8rem;
    bottom: 3rem;
  }

  .benefits {
    grid-template-columns: repeat(4, 1fr);
  }

  .beta-band h2 {
    font-size: 3.2rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .intro-overlay {
    display: none;
  }

  body.intro-running .page-shell {
    opacity: 1;
    transform: none;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
