:root {
  --bg: #050a14;
  --bg-2: #07101f;
  --surface: #0a1426;
  --surface-2: #0e1b32;
  --line: rgba(138, 170, 240, 0.11);
  --line-2: rgba(138, 170, 240, 0.2);
  --text: #eaf1ff;
  --muted: #94a3c0;
  --dim: #64738f;
  --blue: #3b82f6;
  --blue-deep: #1d4ed8;
  --blue-2: #60a5fa;
  --blue-3: #93c5fd;
  --live: #34d399;
  --grad: linear-gradient(100deg, #3b82f6 0%, #60a5fa 45%, #c7defe 100%);
  --ease: cubic-bezier(0.2, 0.7, 0.2, 1);
  --radius: 22px;
  --wrap: 1180px;
  --gutter: 16px;
  --font: "Plus Jakarta Sans", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  --mono: "JetBrains Mono", ui-monospace, "Cascadia Code", Consolas, monospace;
  color-scheme: dark;
}

@media (min-width: 768px) {
  :root {
    --gutter: 32px;
  }
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 100px;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  min-height: 100vh;
  background: var(--bg);
  color: var(--text);
  font: 400 1rem/1.6 var(--font);
  -webkit-font-smoothing: antialiased;
  overflow-x: clip;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  background:
    radial-gradient(900px 620px at 85% -8%, rgba(59, 130, 246, 0.2), transparent 62%),
    radial-gradient(760px 520px at -12% 18%, rgba(29, 78, 216, 0.14), transparent 60%),
    radial-gradient(900px 700px at 50% 120%, rgba(37, 99, 235, 0.1), transparent 60%);
}

body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(138, 170, 240, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(138, 170, 240, 0.06) 1px, transparent 1px);
  background-size: 72px 72px;
  -webkit-mask-image: radial-gradient(ellipse 80% 60% at 50% 0%, #000 10%, transparent 75%);
  mask-image: radial-gradient(ellipse 80% 60% at 50% 0%, #000 10%, transparent 75%);
}

img,
svg {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
}

ul,
ol {
  margin: 0;
  padding: 0;
  list-style: none;
}

p,
dl,
dd {
  margin: 0;
}

h1,
h2,
h3 {
  margin: 0;
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.05;
  text-wrap: balance;
}

button {
  font: inherit;
  color: inherit;
}

:focus-visible {
  outline: 2px solid var(--blue-3);
  outline-offset: 3px;
  border-radius: 6px;
}

::selection {
  background: rgba(96, 165, 250, 0.35);
}

.sprite {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
}

.skip {
  position: absolute;
  left: 16px;
  top: -60px;
  z-index: 100;
  padding: 0.7rem 1rem;
  border-radius: 10px;
  background: var(--blue);
  color: #fff;
  font-weight: 700;
  text-decoration: none;
  transition: top 0.2s;
}

.skip:focus {
  top: 16px;
}

.wrap {
  width: min(var(--wrap), 100% - var(--gutter) * 2);
  margin-inline: auto;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--blue-2);
  font: 600 0.72rem/1 var(--mono);
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 26px;
  height: 1px;
  background: var(--grad);
}

.display {
  margin-top: 1.4rem;
  font-size: clamp(2.9rem, 7.6vw, 6.2rem);
  line-height: 0.95;
  letter-spacing: -0.045em;
}

.display > span {
  display: block;
  width: fit-content;
}

.stop {
  margin-left: -0.04em;
}

.h2 {
  max-width: 20ch;
  margin-top: 0.9rem;
  font-size: clamp(2rem, 4.4vw, 3.4rem);
  letter-spacing: -0.04em;
}

.grad {
  padding-bottom: 0.06em;
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  min-height: 48px;
  padding: 0.8rem 1.35rem;
  border: 1px solid var(--line-2);
  border-radius: 999px;
  background: rgba(96, 165, 250, 0.06);
  color: var(--text);
  font-weight: 700;
  font-size: 0.95rem;
  line-height: 1;
  text-decoration: none;
  white-space: nowrap;
  cursor: pointer;
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease), background-color 0.25s, border-color 0.25s;
}

.btn:hover {
  transform: translateY(-2px);
  border-color: rgba(147, 197, 253, 0.45);
  background-color: rgba(96, 165, 250, 0.1);
}

.btn:active {
  transform: translateY(0);
}

.btn svg {
  width: 16px;
  height: 16px;
  flex: none;
}

.btn--primary {
  border-color: transparent;
  background: linear-gradient(135deg, #2563eb 0%, #3b82f6 55%, #60a5fa 100%);
  box-shadow: 0 12px 30px -12px rgba(59, 130, 246, 0.75), inset 0 1px 0 rgba(255, 255, 255, 0.22);
}

.btn--primary:hover {
  border-color: transparent;
  box-shadow: 0 18px 40px -14px rgba(59, 130, 246, 0.95), inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.btn--sm {
  min-height: 40px;
  padding: 0.6rem 1.05rem;
  font-size: 0.86rem;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: var(--text);
  font-weight: 700;
  font-size: 0.95rem;
  text-decoration: none;
}

.link-arrow svg {
  width: 16px;
  height: 16px;
  color: var(--blue-2);
  transition: transform 0.25s var(--ease);
}

.link-arrow:hover svg {
  transform: translate(2px, -2px);
}

.live {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  color: var(--live);
}

.live-dot {
  width: 7px;
  height: 7px;
  flex: none;
  border-radius: 50%;
  background: var(--live);
  animation: pulse 2.2s ease-out infinite;
}

@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(52, 211, 153, 0.55);
  }
  70%,
  100% {
    box-shadow: 0 0 0 8px rgba(52, 211, 153, 0);
  }
}

.is-tick {
  animation: tick 0.9s var(--ease);
}

@keyframes tick {
  0% {
    color: var(--blue-3);
    text-shadow: 0 0 18px rgba(96, 165, 250, 0.8);
  }
}

.nav {
  position: fixed;
  top: 12px;
  left: 0;
  right: 0;
  z-index: 50;
  padding-inline: var(--gutter);
  pointer-events: none;
}

.nav__bar {
  position: relative;
  display: flex;
  align-items: center;
  gap: 1rem;
  max-width: var(--wrap);
  margin-inline: auto;
  padding: 8px 8px 8px 16px;
  border: 1px solid var(--line-2);
  border-radius: 999px;
  background: rgba(7, 14, 28, 0.6);
  -webkit-backdrop-filter: blur(18px) saturate(150%);
  backdrop-filter: blur(18px) saturate(150%);
  box-shadow: 0 16px 40px -24px rgba(0, 0, 0, 0.9);
  pointer-events: auto;
  transition: background-color 0.3s;
}

.nav.is-scrolled .nav__bar {
  background: rgba(7, 14, 28, 0.86);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  color: var(--text);
  font-weight: 800;
  font-size: 1.02rem;
  letter-spacing: -0.02em;
  text-decoration: none;
  white-space: nowrap;
}

.brand__mark {
  width: 30px;
  height: 30px;
  flex: none;
}

.brand__name span {
  color: var(--blue-2);
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 0.15rem;
  margin-inline: auto;
}

.nav__links a {
  position: relative;
  padding: 0.55rem 0.85rem;
  border-radius: 999px;
  color: var(--muted);
  font-weight: 600;
  font-size: 0.9rem;
  text-decoration: none;
  transition: color 0.2s, background-color 0.2s;
}

.nav__links a:hover {
  color: var(--text);
  background: rgba(96, 165, 250, 0.08);
}

.nav__links a[aria-current="page"] {
  color: var(--text);
}

.nav__links a[aria-current="page"]::after {
  content: "";
  position: absolute;
  left: 0.85rem;
  right: 0.85rem;
  bottom: 0.25rem;
  height: 2px;
  border-radius: 2px;
  background: var(--grad);
}

.nav__links .nav__links-cta {
  display: none;
}

.nav__cta {
  flex: none;
}

.nav__toggle {
  display: none;
  place-items: center;
  width: 44px;
  height: 44px;
  margin-left: auto;
  border: 1px solid var(--line-2);
  border-radius: 50%;
  background: rgba(96, 165, 250, 0.06);
  cursor: pointer;
}

.nav__toggle svg {
  width: 20px;
  height: 20px;
}

.nav__toggle .ic-close,
.nav.is-open .nav__toggle .ic-open {
  display: none;
}

.nav.is-open .nav__toggle .ic-close {
  display: block;
}

@media (max-width: 880px) {
  .nav__cta {
    display: none;
  }

  .nav__toggle {
    display: grid;
  }

  .nav__links {
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0.2rem;
    margin: 0;
    padding: 0.5rem;
    border: 1px solid var(--line-2);
    border-radius: 22px;
    background: rgba(7, 14, 28, 0.97);
    box-shadow: 0 30px 60px -30px rgba(0, 0, 0, 0.9);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-6px);
    transition: opacity 0.25s var(--ease), transform 0.25s var(--ease), visibility 0.25s;
  }

  .nav.is-open .nav__links {
    opacity: 1;
    visibility: visible;
    transform: none;
  }

  .nav__links a {
    padding: 0.9rem 1rem;
    border-radius: 14px;
    font-size: 1rem;
  }

  .nav__links a[aria-current="page"]::after {
    left: 1rem;
    right: auto;
    width: 18px;
    bottom: 0.5rem;
  }

  .nav__links .nav__links-cta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 0.3rem;
    background: linear-gradient(135deg, #2563eb, #3b82f6);
    color: #fff;
  }

  .nav__links .nav__links-cta svg {
    width: 16px;
    height: 16px;
  }
}

.hero {
  padding: clamp(120px, 16vh, 170px) 0 clamp(60px, 8vw, 100px);
}

.hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: clamp(2.5rem, 5vw, 4.5rem);
  align-items: center;
}

.hero__lead {
  max-width: 34rem;
  margin: 1.6rem 0 2.1rem;
  color: var(--muted);
  font-size: clamp(1rem, 1.4vw, 1.12rem);
}

.facts {
  display: flex;
  flex-wrap: wrap;
  gap: 1.4rem 2.6rem;
  margin-top: 2.8rem;
}

.facts b {
  display: block;
  font-weight: 700;
}

.facts small {
  color: var(--dim);
  font-size: 0.82rem;
}

@media (max-width: 960px) {
  .hero__grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .stage {
    width: 100%;
    max-width: 560px;
  }
}

.stage {
  --sway: 0deg;
  --aim: 0;
  position: relative;
  isolation: isolate;
  aspect-ratio: 1 / 1.04;
  overflow: hidden;
  border: 1px solid var(--line-2);
  border-radius: 28px;
  background: radial-gradient(120% 75% at 50% -5%, #11285a 0%, #0a1733 45%, #060d1c 100%);
  box-shadow: 0 50px 120px -50px rgba(37, 99, 235, 0.55), inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.stage__top {
  position: absolute;
  top: 20px;
  left: 22px;
  right: 22px;
  z-index: 4;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--dim);
  font: 600 0.7rem/1 var(--mono);
  letter-spacing: 0.18em;
}

.stage__lamp {
  position: absolute;
  top: -26px;
  left: 50%;
  z-index: 2;
  width: 120px;
  height: 52px;
  transform: translateX(-50%);
  border-radius: 50%;
  background: radial-gradient(closest-side, #f0f7ff, rgba(147, 197, 253, 0.55) 55%, transparent);
  filter: blur(3px);
}

.stage__beam {
  position: absolute;
  top: -6%;
  left: 50%;
  z-index: 1;
  width: 84%;
  height: 86%;
  transform: translateX(-50%) rotate(var(--sway));
  transform-origin: 50% 0;
  background: linear-gradient(180deg, rgba(219, 234, 254, 0.6) 0%, rgba(147, 197, 253, 0.22) 45%, rgba(59, 130, 246, 0.05) 85%, transparent 100%);
  clip-path: polygon(45% 0, 55% 0, 100% 100%, 0 100%);
  filter: blur(12px);
  mix-blend-mode: screen;
}

.stage__floor {
  position: absolute;
  left: 6%;
  right: 6%;
  bottom: 17%;
  z-index: 1;
  height: 24%;
  transform: translateX(calc(var(--aim) * 1%));
  border-radius: 50%;
  background: radial-gradient(closest-side, rgba(191, 219, 254, 0.5), rgba(96, 165, 250, 0.2) 45%, transparent 78%);
  filter: blur(4px);
}

.stage__edge {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 28.5%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(147, 197, 253, 0.35), transparent);
}

.stage__dust {
  position: absolute;
  inset: 0;
  z-index: 2;
  width: 100%;
  height: 100%;
}

.stage__mark {
  position: absolute;
  left: 50%;
  top: 44%;
  z-index: 3;
  width: 34%;
  transform: translate(-50%, -50%);
  filter: drop-shadow(0 0 28px rgba(96, 165, 250, 0.55)) drop-shadow(0 18px 20px rgba(2, 6, 23, 0.6));
  animation: bob 7s ease-in-out infinite;
}

@keyframes bob {
  50% {
    transform: translate(-50%, calc(-50% - 10px));
  }
}

.stage__hint {
  position: absolute;
  left: 50%;
  bottom: 146px;
  z-index: 4;
  padding: 0.4rem 0.75rem;
  transform: translateX(-50%);
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(5, 10, 20, 0.5);
  color: var(--dim);
  font: 600 0.6rem/1 var(--mono);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  white-space: nowrap;
  transition: opacity 0.5s;
}

.stage.is-aimed .stage__hint {
  opacity: 0;
}

@media (hover: none), (max-width: 420px) {
  .stage__hint {
    display: none;
  }
}

.stage__panel {
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 14px;
  z-index: 4;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 1rem;
  padding: 16px 18px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(5, 10, 22, 0.72);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
}

.stage__panel small {
  display: block;
  color: var(--dim);
  font-size: 0.75rem;
}

.stage__count {
  display: block;
  margin: 0.15rem 0;
  font-size: clamp(1.6rem, 3vw, 2.1rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.1;
  font-variant-numeric: tabular-nums;
}

.stage__focus {
  text-align: right;
}

.stage__focus b {
  display: block;
  margin-top: 0.2rem;
  font-size: 0.92rem;
}

.section {
  padding: clamp(52px, 7.5vw, 92px) 0;
}

.section__head {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-end;
  gap: 1.2rem 2rem;
  margin-bottom: clamp(1.8rem, 3vw, 2.6rem);
}

.sync {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.55rem 0.9rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--muted);
  font: 500 0.74rem/1 var(--mono);
}

.stats {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.stat {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  overflow: hidden;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: linear-gradient(180deg, var(--surface) 0%, var(--bg-2) 100%);
  transition: border-color 0.3s, transform 0.3s var(--ease);
}

.stat::after {
  content: "";
  position: absolute;
  top: -40%;
  right: -30%;
  width: 70%;
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(closest-side, rgba(59, 130, 246, 0.16), transparent);
  pointer-events: none;
}

.stat:hover {
  border-color: rgba(96, 165, 250, 0.35);
  transform: translateY(-3px);
}

.stat__label {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--muted);
  font: 600 0.68rem/1.2 var(--mono);
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.stat__label svg {
  width: 15px;
  height: 15px;
  flex: none;
  color: var(--blue-2);
}

.stat b {
  margin-top: 0.6rem;
  font-size: clamp(1.7rem, 3.2vw, 2.5rem);
  font-weight: 800;
  letter-spacing: -0.035em;
  line-height: 1.05;
  font-variant-numeric: tabular-nums;
}

.stat small {
  color: var(--dim);
  font-size: 0.8rem;
}

@media (max-width: 900px) {
  .stats {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 400px) {
  .stat {
    padding: 18px 16px;
  }
}

.games {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(310px, 100%), 1fr));
  gap: 18px;
}

.gcard {
  position: relative;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(180deg, var(--surface) 0%, var(--bg-2) 100%);
  transition: transform 0.35s var(--ease), border-color 0.3s, box-shadow 0.35s var(--ease);
}

.gcard.is-loading {
  min-height: 440px;
}

.gcard.is-ready:hover {
  transform: translateY(-6px);
  border-color: rgba(96, 165, 250, 0.4);
  box-shadow: 0 30px 60px -30px rgba(37, 99, 235, 0.6);
}

.gcard__media {
  position: relative;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: radial-gradient(120% 120% at 30% 0%, #15305f, #0a1428 70%);
}

.gcard__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s var(--ease);
}

.gcard.is-ready:hover .gcard__media img {
  transform: scale(1.05);
}

.gcard__media::after {
  content: "";
  position: absolute;
  inset: 40% 0 0;
  background: linear-gradient(180deg, transparent, rgba(10, 20, 38, 0.95));
  pointer-events: none;
}

.badge {
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.42rem 0.72rem;
  border: 1px solid var(--line-2);
  border-radius: 999px;
  background: rgba(5, 10, 20, 0.72);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  font: 600 0.72rem/1 var(--mono);
  letter-spacing: 0.04em;
}

.gcard__body {
  position: relative;
  z-index: 1;
  display: flex;
  flex: 1;
  flex-direction: column;
  gap: 14px;
  margin-top: -34px;
  padding: 0 20px 20px;
}

.gcard__head {
  display: flex;
  align-items: flex-end;
  gap: 14px;
}

.gcard__head > div {
  min-width: 0;
}

.gcard__icon {
  position: relative;
  flex: none;
  width: 66px;
  height: 66px;
  overflow: hidden;
  border: 3px solid var(--surface);
  border-radius: 18px;
  background: var(--surface-2);
  box-shadow: 0 10px 24px -10px rgba(0, 0, 0, 0.7);
}

.gcard__icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gcard__title {
  display: -webkit-box;
  overflow: hidden;
  font-size: 1.08rem;
  font-weight: 800;
  letter-spacing: -0.015em;
  line-height: 1.25;
  overflow-wrap: anywhere;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.gcard__creator {
  display: block;
  margin-top: 2px;
  overflow: hidden;
  color: var(--dim);
  font-size: 0.8rem;
  font-weight: 500;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.gcard__stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
}

.gstat {
  padding: 10px 12px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: rgba(96, 165, 250, 0.045);
}

.gstat b {
  display: block;
  font-size: 1.05rem;
  font-weight: 800;
  font-variant-numeric: tabular-nums;
}

.gstat small {
  display: block;
  margin-top: 1px;
  color: var(--dim);
  font: 500 0.64rem/1.4 var(--mono);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.meter {
  height: 4px;
  overflow: hidden;
  border-radius: 4px;
  background: rgba(96, 165, 250, 0.12);
}

.meter i {
  display: block;
  width: var(--pct, 0%);
  height: 100%;
  border-radius: inherit;
  background: var(--grad);
  transition: width 1.2s var(--ease);
}

.gcard__desc {
  display: -webkit-box;
  overflow: hidden;
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.55;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.gcard__foot {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  margin-top: auto;
  padding-top: 4px;
}

.gcard__genre {
  color: var(--dim);
  font: 500 0.68rem/1.3 var(--mono);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-align: right;
}

.gcard__error {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 1rem;
  color: var(--muted);
  font-size: 0.9rem;
  text-align: center;
}

.sk {
  display: block;
  height: 0.9rem;
  margin-top: 0.45rem;
  border-radius: 6px;
  background: linear-gradient(90deg, rgba(96, 165, 250, 0.06) 0%, rgba(96, 165, 250, 0.14) 50%, rgba(96, 165, 250, 0.06) 100%);
  background-size: 200% 100%;
  animation: shimmer 1.4s linear infinite;
}

.sk--box {
  height: 54px;
  margin: 0;
  border-radius: 12px;
}

.grow {
  flex: 1;
}

@keyframes shimmer {
  to {
    background-position: -200% 0;
  }
}

.soon {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1.1rem;
  min-height: 280px;
  padding: 48px 24px;
  border: 1px dashed var(--line-2);
  border-radius: var(--radius);
  background: radial-gradient(60% 90% at 50% 0%, rgba(59, 130, 246, 0.14), transparent 70%), var(--bg-2);
  text-align: center;
}

.soon__mark {
  width: 56px;
  height: 56px;
  filter: drop-shadow(0 0 22px rgba(96, 165, 250, 0.45));
}

.soon__title {
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  font-weight: 800;
  letter-spacing: -0.035em;
  line-height: 1.1;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  gap: 1.4rem 4rem;
  align-items: end;
  margin-bottom: clamp(1.8rem, 3vw, 2.8rem);
}

.split__lead {
  max-width: 34rem;
  color: var(--muted);
  font-size: 1.05rem;
}

.values {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

@media (max-width: 860px) {
  .split,
  .values {
    grid-template-columns: minmax(0, 1fr);
  }
}

.vcard {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 250px;
  overflow: hidden;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(180deg, var(--surface), var(--bg-2));
  transition: border-color 0.3s, transform 0.3s var(--ease);
}

.vcard::after {
  content: "";
  position: absolute;
  right: -30%;
  bottom: -60%;
  width: 80%;
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(closest-side, rgba(59, 130, 246, 0.18), transparent);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s;
}

.vcard:hover {
  border-color: rgba(96, 165, 250, 0.35);
  transform: translateY(-4px);
}

.vcard:hover::after {
  opacity: 1;
}

.vcard__n {
  color: var(--dim);
  font: 600 0.74rem/1 var(--mono);
  letter-spacing: 0.1em;
}

.vcard__icon {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  margin: auto 0 1.2rem;
  border: 1px solid rgba(96, 165, 250, 0.22);
  border-radius: 13px;
  background: rgba(59, 130, 246, 0.12);
  color: var(--blue-2);
}

.vcard__icon svg {
  width: 22px;
  height: 22px;
}

.vcard h3 {
  font-size: 1.22rem;
  letter-spacing: -0.02em;
}

.vcard p {
  margin-top: 0.55rem;
  color: var(--muted);
  font-size: 0.93rem;
}

.vcard--step {
  min-height: 0;
}

.vcard--step .vcard__icon {
  margin-top: 1.4rem;
}

.team {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(240px, 100%), 1fr));
  gap: 14px;
}

.member {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--surface);
  transition: border-color 0.3s, transform 0.3s var(--ease);
}

.member:hover {
  border-color: rgba(96, 165, 250, 0.35);
  transform: translateY(-3px);
}

.member__avatar {
  position: relative;
  display: grid;
  place-items: center;
  flex: none;
  width: 54px;
  height: 54px;
  overflow: hidden;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--blue-deep), var(--blue-2));
  box-shadow: 0 0 0 3px rgba(96, 165, 250, 0.15);
  color: #fff;
  font-weight: 800;
  font-size: 0.95rem;
  letter-spacing: 0.02em;
}

.member b {
  display: block;
  font-size: 1.02rem;
}

.member small {
  display: block;
  color: var(--muted);
  font-size: 0.85rem;
}

.chipcard__icon img,
.member__avatar img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.jobs {
  border-top: 1px solid var(--line);
}

.job {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 0.6rem 1.5rem;
  align-items: center;
  padding: 22px 8px;
  border-bottom: 1px solid var(--line);
  text-decoration: none;
  transition: background-color 0.25s, padding 0.3s var(--ease);
}

.job:hover {
  padding-left: 16px;
  background: linear-gradient(90deg, rgba(59, 130, 246, 0.09), transparent 70%);
}

.job[hidden] {
  display: none;
}

.job h3 {
  font-size: clamp(1.1rem, 2vw, 1.35rem);
  font-weight: 700;
  letter-spacing: -0.02em;
}

.job__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin-top: 0.6rem;
}

.tag {
  padding: 0.34rem 0.65rem;
  border: 1px solid var(--line-2);
  border-radius: 999px;
  color: var(--muted);
  font: 500 0.72rem/1 var(--mono);
}

.job__go {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line-2);
  border-radius: 50%;
  transition: background-color 0.25s, border-color 0.25s, transform 0.25s var(--ease);
}

.job__go svg {
  width: 18px;
  height: 18px;
}

.job:hover .job__go {
  border-color: var(--blue);
  background: var(--blue);
  transform: rotate(45deg);
}

.jobs-bar {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.2rem;
}

.jobs-count {
  color: var(--dim);
  font: 500 0.78rem/1 var(--mono);
}

.chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.chip {
  padding: 0.55rem 1rem;
  border: 1px solid var(--line-2);
  border-radius: 999px;
  background: transparent;
  color: var(--muted);
  font-weight: 600;
  font-size: 0.86rem;
  cursor: pointer;
  transition: background-color 0.2s, color 0.2s, border-color 0.2s;
}

.chip:hover {
  border-color: rgba(147, 197, 253, 0.45);
  color: var(--text);
}

.chip[aria-pressed="true"] {
  border-color: var(--blue);
  background: var(--blue);
  color: #fff;
}

.cta-card {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(0, 0.75fr);
  gap: 2rem 3rem;
  align-items: center;
  overflow: hidden;
  padding: clamp(28px, 5vw, 56px);
  border: 1px solid rgba(96, 165, 250, 0.28);
  border-radius: 30px;
  background:
    radial-gradient(70% 120% at 100% 0%, rgba(59, 130, 246, 0.3), transparent 60%),
    radial-gradient(60% 100% at 0% 100%, rgba(29, 78, 216, 0.18), transparent 60%),
    linear-gradient(180deg, #0b1830, #070f20);
}

.cta-card__lead {
  max-width: 36rem;
  margin: 1.2rem 0 1.8rem;
  color: var(--muted);
}

.cta-card__side {
  display: grid;
  gap: 12px;
}

@media (max-width: 860px) {
  .cta-card {
    grid-template-columns: minmax(0, 1fr);
  }
}

.chipcard {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 16px;
  border: 1px solid var(--line-2);
  border-radius: 18px;
  background: rgba(5, 10, 22, 0.55);
  text-decoration: none;
  transition: transform 0.25s var(--ease), border-color 0.25s, background-color 0.25s;
}

.chipcard:hover {
  transform: translateY(-2px);
  border-color: rgba(147, 197, 253, 0.45);
  background: rgba(10, 20, 40, 0.7);
}

.chipcard__icon {
  position: relative;
  display: grid;
  place-items: center;
  flex: none;
  width: 48px;
  height: 48px;
  overflow: hidden;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--blue-deep), var(--blue-2));
  color: #fff;
}

.chipcard__icon svg {
  width: 22px;
  height: 22px;
}

.chipcard__icon.has-image svg {
  visibility: hidden;
}

.chipcard__text {
  flex: 1;
  min-width: 0;
}

.chipcard__text b {
  display: block;
  overflow: hidden;
  font-size: 0.98rem;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.chipcard__text small {
  display: block;
  color: var(--muted);
  font-size: 0.82rem;
}

.chipcard__text .chipcard__meta,
.chipcard.has-data .chipcard__cta {
  display: none;
}

.chipcard.has-data .chipcard__meta {
  display: block;
}

.chipcard__go {
  flex: none;
  width: 18px;
  height: 18px;
  color: var(--blue-2);
  transition: transform 0.25s var(--ease);
}

.chipcard:hover .chipcard__go {
  transform: translate(2px, -2px);
}

.contact__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.contact__inner .h2 {
  max-width: 22ch;
}

.contact__inner p {
  max-width: 36rem;
  margin: 1.1rem 0 1.8rem;
  color: var(--muted);
}

.page-hero {
  padding: clamp(130px, 18vh, 180px) 0 clamp(40px, 6vw, 70px);
}

.page-hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 0.8fr);
  gap: 2.5rem 4rem;
  align-items: end;
}

.page-hero .display {
  font-size: clamp(2.6rem, 6.4vw, 5.2rem);
}

@media (max-width: 900px) {
  .page-hero__grid {
    grid-template-columns: minmax(0, 1fr);
  }
}

.board {
  padding: 20px;
  border: 1px solid var(--line-2);
  border-radius: 24px;
  background: radial-gradient(120% 90% at 100% 0%, rgba(59, 130, 246, 0.16), transparent 60%), var(--surface);
}

.board__top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--dim);
  font: 600 0.7rem/1 var(--mono);
  letter-spacing: 0.18em;
}

.board__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin: 18px 0 14px;
}

.board__grid div {
  min-width: 0;
  padding: 14px 16px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(5, 10, 20, 0.35);
}

.board dt {
  color: var(--dim);
  font-size: 0.78rem;
}

.board dd {
  overflow-wrap: anywhere;
  margin-top: 0.25rem;
  font-size: 1.55rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.2;
  font-variant-numeric: tabular-nums;
}

.board__sync {
  color: var(--dim);
  font: 500 0.72rem/1.4 var(--mono);
}

.footer {
  margin-top: 2rem;
  padding: 56px 0 28px;
  border-top: 1px solid var(--line);
  background: linear-gradient(180deg, transparent, rgba(5, 10, 20, 0.6));
}

.footer__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.6fr) repeat(2, minmax(0, 1fr));
  gap: 2rem;
}

.footer__brand p {
  max-width: 22rem;
  margin-top: 0.9rem;
  color: var(--muted);
  font-size: 0.92rem;
}

.footer__title {
  margin-bottom: 0.9rem;
  color: var(--dim);
  font: 600 0.7rem/1 var(--mono);
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.footer li + li {
  margin-top: 0.55rem;
}

.footer li a {
  color: var(--muted);
  font-size: 0.93rem;
  text-decoration: none;
  transition: color 0.2s;
}

.footer li a:hover {
  color: var(--text);
}

.footer__base {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.6rem 2rem;
  margin-top: 44px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
  color: var(--dim);
  font-size: 0.82rem;
}

@media (max-width: 700px) {
  .footer__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .footer__brand {
    grid-column: 1 / -1;
  }
}

.lost {
  display: grid;
  place-items: center;
  min-height: 78vh;
  padding: 140px 0 60px;
  text-align: center;
}

.lost__code {
  width: fit-content;
  margin: 1.2rem auto 0;
  font: 800 clamp(5rem, 18vw, 11rem)/0.9 var(--font);
  letter-spacing: -0.06em;
}

.lost__text {
  max-width: 30rem;
  margin: 1rem auto 2rem;
  color: var(--muted);
}

.js .reveal:not(.is-in) {
  opacity: 0;
}

.reveal.is-in {
  animation: rise 0.85s var(--ease) backwards;
  animation-delay: calc(var(--d, 0) * 90ms);
}

@keyframes rise {
  from {
    opacity: 0;
    transform: translateY(26px);
  }
}

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

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

  .js .reveal:not(.is-in) {
    opacity: 1;
  }
}
