:root {
  --bg: #070811;
  --panel: #10121e;
  --panel-2: #161827;
  --text: #f7f7fb;
  --muted: #a6a8b8;
  --pink: #ff2a9b;
  --cyan: #04d8eb;
  --line: rgba(255, 255, 255, 0.1);
  --display: "Outfit", sans-serif;
  --body: "DM Sans", sans-serif;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--body);
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
}
a {
  color: inherit;
  text-decoration: none;
}
img {
  max-width: 100%;
  display: block;
}
.wrap {
  width: min(1180px, calc(100% - 48px));
  margin: auto;
}
.ambient {
  position: fixed;
  border-radius: 50%;
  filter: blur(120px);
  pointer-events: none;
  opacity: 0.12;
  z-index: -1;
}
.ambient-one {
  width: 540px;
  height: 540px;
  background: var(--pink);
  top: -180px;
  right: -120px;
}
.ambient-two {
  width: 460px;
  height: 460px;
  background: var(--cyan);
  top: 45vh;
  left: -260px;
}
.site-header {
  height: 78px;
  width: min(1260px, calc(100% - 40px));
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--line);
  position: relative;
  z-index: 20;
}
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--display);
  font-size: 21px;
  font-weight: 700;
}
.brand img {
  width: 34px;
  height: 34px;
}
.site-header nav {
  display: flex;
  gap: 34px;
  color: var(--muted);
  font-size: 14px;
}
.site-header nav a:hover {
  color: #fff;
}
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 11px;
  border-radius: 12px;
  font-weight: 700;
  line-height: 1.1;
  transition:
    transform 0.2s,
    box-shadow 0.2s,
    border-color 0.2s;
}
.button:hover {
  transform: translateY(-2px);
}
.button-small {
  padding: 11px 18px;
  font-size: 14px;
}
.button-ghost {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.04);
}
.hero {
  min-height: 750px;
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 64px;
  align-items: center;
  padding: 96px 0 86px;
}
.eyebrow {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #d8d9e3;
}
.eyebrow span {
  width: 25px;
  height: 2px;
  background: linear-gradient(90deg, var(--cyan), var(--pink));
  display: inline-block;
  vertical-align: middle;
  margin-right: 10px;
}
.hero h1,
.section h2 {
  font-family: var(--display);
  font-size: clamp(52px, 6vw, 82px);
  line-height: 0.98;
  letter-spacing: -0.045em;
  margin: 20px 0 28px;
}
.hero h1 em,
.section h2 em {
  font-style: normal;
  background: linear-gradient(90deg, var(--cyan), #a98cff 46%, var(--pink));
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
}
.hero-lede {
  font-size: 19px;
  line-height: 1.65;
  color: var(--muted);
  max-width: 580px;
}
.hero-actions {
  display: flex;
  gap: 12px;
  margin: 34px 0 17px;
}
.button-primary,
.button-secondary {
  padding: 13px 20px;
  min-width: 180px;
}
.button-primary {
  background: linear-gradient(115deg, #ff3aa4, #d91686);
  box-shadow: 0 12px 34px rgba(255, 42, 155, 0.23);
}
.button-secondary {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.055);
}
.button svg {
  width: 25px;
  height: 25px;
  fill: currentColor;
}
.button span {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  font-size: 15px;
}
.button small {
  font-size: 10px;
  font-weight: 500;
  opacity: 0.72;
  margin-bottom: 3px;
}
.download-meta {
  font-size: 12px;
  color: #7f8191;
  display: flex;
  gap: 8px;
  align-items: center;
}
.status-dot {
  width: 7px;
  height: 7px;
  background: #5be49b;
  border-radius: 50%;
  box-shadow: 0 0 12px #5be49b;
}
.hero-visual {
  position: relative;
}
.hero-orbit {
  position: absolute;
  width: 110%;
  aspect-ratio: 1;
  left: -5%;
  top: -18%;
  background: radial-gradient(
    circle,
    rgba(255, 42, 155, 0.15),
    transparent 62%
  );
  border: 1px solid rgba(255, 255, 255, 0.04);
  border-radius: 50%;
}
.game-window {
  position: relative;
  background: #0d101a;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 16px;
  overflow: hidden;
  box-shadow:
    0 40px 100px rgba(0, 0, 0, 0.55),
    0 0 45px rgba(4, 216, 235, 0.08);
  transform: perspective(1000px) rotateY(-4deg) rotateX(2deg);
}
.window-bar {
  height: 38px;
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 0 12px;
  background: #151725;
  border-bottom: 1px solid var(--line);
}
.window-bar > span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #3c3f50;
}
.window-bar > span:first-child {
  background: #ff5f57;
}
.window-bar > span:nth-child(2) {
  background: #febc2e;
}
.window-bar > span:nth-child(3) {
  background: #28c840;
}
.window-bar p {
  font-size: 9px;
  letter-spacing: 0.14em;
  color: #777a8c;
  margin: auto;
}
.window-bar kbd {
  font: 700 10px var(--body);
  border: 1px solid #5b5e70;
  border-bottom-width: 2px;
  border-radius: 4px;
  padding: 2px 7px;
}
.game-window img {
  width: 100%;
  min-height: 380px;
  object-fit: cover;
}
.live-pill {
  position: absolute;
  top: 58px;
  left: -25px;
  background: #161927;
  border: 1px solid var(--line);
  border-radius: 50px;
  padding: 9px 13px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  box-shadow: 0 14px 35px rgba(0, 0, 0, 0.4);
}
.live-pill i {
  display: inline-block;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #ff3b7b;
  margin-right: 7px;
  box-shadow: 0 0 0 5px rgba(255, 59, 123, 0.12);
}
.mini-card {
  position: absolute;
  background: rgba(19, 21, 34, 0.94);
  border: 1px solid var(--line);
  border-left: 2px solid var(--cyan);
  border-radius: 10px;
  padding: 11px 15px;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.45);
  font-size: 11px;
}
.mini-card b,
.mini-card span {
  display: block;
}
.mini-card span {
  color: var(--muted);
}
.mini-card-top {
  right: -26px;
  top: 130px;
}
.mini-card-bottom {
  left: -12px;
  bottom: 28px;
  border-left-color: var(--pink);
}
.proof-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.018);
}
.proof-strip div {
  padding: 27px 20px;
  text-align: center;
  border-right: 1px solid var(--line);
}
.proof-strip div:last-child {
  border: 0;
}
.proof-strip strong,
.proof-strip span {
  display: block;
}
.proof-strip strong {
  font-family: var(--display);
  font-size: 18px;
}
.proof-strip span {
  color: var(--muted);
  font-size: 12px;
  margin-top: 2px;
}
.section {
  padding: 120px 0;
}
.section-heading {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 52px;
}
.section-heading h2 {
  font-size: clamp(42px, 5vw, 68px);
  margin: 0;
}
.feature-stage {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 22px;
  overflow: hidden;
}
.feature-tabs {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-bottom: 1px solid var(--line);
}
.feature-tab {
  appearance: none;
  border: 0;
  border-right: 1px solid var(--line);
  background: transparent;
  color: #777a8c;
  padding: 20px;
  font: 700 13px var(--body);
  cursor: pointer;
  position: relative;
}
.feature-tab:last-child {
  border: 0;
}
.feature-tab.active {
  color: #fff;
  background: rgba(255, 255, 255, 0.035);
}
.feature-tab.active:after {
  content: "";
  position: absolute;
  left: 20%;
  right: 20%;
  bottom: -1px;
  height: 2px;
  background: linear-gradient(90deg, var(--cyan), var(--pink));
}
.feature-body {
  display: grid;
  grid-template-columns: 1.45fr 0.55fr;
  min-height: 480px;
}
.feature-screen {
  margin: 34px;
  border: 1px solid var(--line);
  border-radius: 12px;
  overflow: hidden;
  align-self: center;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.3);
}
.screen-chrome {
  height: 28px;
  background: #181b29;
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 0 10px;
}
.screen-chrome span {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #3e4152;
}
.feature-screen img {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
}
.feature-copy {
  border-left: 1px solid var(--line);
  padding: 50px 38px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.feature-kicker {
  font-size: 11px;
  letter-spacing: 0.15em;
  color: var(--cyan);
  font-weight: 700;
}
.feature-copy h3 {
  font: 600 37px/1.1 var(--display);
  letter-spacing: -0.03em;
  margin: 16px 0;
}
.feature-copy > p:last-child {
  color: var(--muted);
}
.overlay-section {
  background: linear-gradient(180deg, #0b0c16, #080910);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.overlay-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 100px;
  align-items: center;
}
.overlay-copy h2 {
  font-size: clamp(48px, 5.5vw, 74px);
}
.overlay-copy > p {
  color: var(--muted);
  max-width: 620px;
}
.check-list {
  list-style: none;
  padding: 0;
  margin: 36px 0 0;
}
.check-list li {
  position: relative;
  padding: 17px 0 17px 35px;
  border-top: 1px solid var(--line);
}
.check-list li:before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--cyan);
  font-weight: 700;
}
.check-list b,
.check-list span {
  display: block;
}
.check-list span {
  color: var(--muted);
  font-size: 14px;
  margin-top: 2px;
}
.overlay-poster {
  min-height: 480px;
  border: 1px solid var(--line);
  border-radius: 28px;
  background:
    radial-gradient(
      circle at 50% 48%,
      rgba(255, 42, 155, 0.19),
      transparent 35%
    ),
    linear-gradient(145deg, #141626, #090a12);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.overlay-poster:before,
.overlay-poster:after {
  content: "";
  position: absolute;
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 50%;
  width: 330px;
  height: 330px;
}
.overlay-poster:after {
  width: 460px;
  height: 460px;
}
.overlay-poster kbd {
  font: 700 68px var(--display);
  padding: 14px 44px;
  border: 2px solid rgba(255, 255, 255, 0.28);
  border-bottom-width: 8px;
  border-radius: 16px;
  background: #1b1d2c;
  box-shadow: 0 0 50px rgba(255, 42, 155, 0.22);
  z-index: 1;
}
.poster-label {
  font-size: 10px;
  letter-spacing: 0.3em;
  color: var(--pink);
  margin-bottom: 22px;
  z-index: 1;
}
.overlay-poster p {
  text-align: center;
  color: #c0c2ce;
  font-size: 15px;
  margin-top: 28px;
  z-index: 1;
}
.profile-card {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 24px;
  min-height: 530px;
  display: grid;
  grid-template-columns: 0.75fr 1.25fr;
  overflow: hidden;
}
.profile-copy {
  padding: 70px 50px;
  align-self: center;
}
.profile-copy h2 {
  font-size: 52px;
}
.profile-copy > p {
  color: var(--muted);
}
.badge-row {
  display: flex;
  gap: 7px;
  flex-wrap: wrap;
  margin-top: 30px;
}
.badge-row span {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.08em;
  border: 1px solid rgba(255, 42, 155, 0.35);
  background: rgba(255, 42, 155, 0.08);
  padding: 5px 8px;
  border-radius: 5px;
  color: #ff72bd;
}
.profile-images {
  position: relative;
  background: radial-gradient(
    circle at 70% 45%,
    rgba(4, 216, 235, 0.11),
    transparent 55%
  );
  min-height: 530px;
}
.profile-main {
  position: absolute;
  width: 84%;
  right: -7%;
  top: 13%;
  border: 1px solid var(--line);
  border-radius: 12px;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.45);
}
.profile-float {
  position: absolute;
  width: 53%;
  left: 3%;
  bottom: 8%;
  border: 1px solid var(--line);
  border-radius: 10px;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.6);
}
.download-card {
  text-align: center;
  padding: 84px 30px;
  border: 1px solid var(--line);
  border-radius: 28px;
  background:
    radial-gradient(circle at 50% 0, rgba(255, 42, 155, 0.16), transparent 46%),
    var(--panel);
  position: relative;
  overflow: hidden;
}
.download-card > img {
  width: 90px;
  margin: 0 auto 25px;
  filter: drop-shadow(0 12px 25px rgba(255, 42, 155, 0.25));
}
.download-card h2 {
  font-size: clamp(48px, 6vw, 76px);
  margin: 18px 0;
}
.download-summary {
  max-width: 590px;
  margin: 0 auto;
  color: var(--muted);
}
.centered {
  justify-content: center;
}
.faq {
  max-width: 850px;
}
.faq h2 {
  font-size: 48px;
}
.faq details {
  border-top: 1px solid var(--line);
  padding: 20px 2px;
}
.faq details:last-child {
  border-bottom: 1px solid var(--line);
}
.faq summary {
  font: 600 18px var(--display);
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
}
.faq summary::-webkit-details-marker {
  display: none;
}
.faq summary span {
  color: var(--pink);
  font-size: 25px;
  line-height: 1;
}
.faq details[open] summary span {
  transform: rotate(45deg);
}
.faq details p {
  color: var(--muted);
  max-width: 720px;
  margin: 13px 0 2px;
}
footer {
  border-top: 1px solid var(--line);
  padding: 42px 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 20px;
  align-items: center;
}
.footer-links {
  display: flex;
  gap: 24px;
  font-size: 13px;
  color: var(--muted);
}
.footer-grid > p {
  grid-column: 1/-1;
  color: #666979;
  font-size: 11px;
  max-width: 850px;
}
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 0.7s ease,
    transform 0.7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: none;
}
@media (max-width: 900px) {
  .site-header nav {
    display: none;
  }
  .hero {
    grid-template-columns: 1fr;
    padding-top: 70px;
  }
  .hero-copy {
    text-align: center;
  }
  .hero-lede {
    margin-left: auto;
    margin-right: auto;
  }
  .hero-actions,
  .download-meta {
    justify-content: center;
  }
  .hero-visual {
    margin: 20px auto;
    width: 94%;
  }
  .feature-body,
  .overlay-grid,
  .profile-card {
    grid-template-columns: 1fr;
  }
  .feature-copy {
    border-left: 0;
    border-top: 1px solid var(--line);
  }
  .overlay-grid {
    gap: 55px;
  }
  .profile-images {
    min-height: 470px;
  }
  .profile-copy {
    padding-bottom: 30px;
  }
  .mini-card-top {
    right: -10px;
  }
}
@media (max-width: 620px) {
  .wrap {
    width: min(100% - 28px, 1180px);
  }
  .site-header {
    width: calc(100% - 28px);
  }
  .site-header > .button {
    display: none;
  }
  .hero {
    min-height: auto;
    padding: 62px 0 70px;
    gap: 42px;
  }
  .hero h1 {
    font-size: 50px;
  }
  .hero-lede {
    font-size: 17px;
  }
  .hero-actions {
    flex-direction: column;
  }
  .button-primary,
  .button-secondary {
    width: 100%;
  }
  .game-window {
    transform: none;
  }
  .game-window img {
    min-height: 230px;
  }
  .live-pill,
  .mini-card {
    display: none;
  }
  .proof-strip {
    grid-template-columns: 1fr 1fr;
  }
  .proof-strip div:nth-child(2) {
    border-right: 0;
  }
  .proof-strip div:nth-child(-n + 2) {
    border-bottom: 1px solid var(--line);
  }
  .section {
    padding: 82px 0;
  }
  .section-heading {
    display: block;
  }
  .section-heading h2 {
    font-size: 43px;
  }
  .feature-tabs {
    overflow: auto;
    grid-template-columns: repeat(4, 110px);
  }
  .feature-body {
    min-height: 0;
  }
  .feature-screen {
    margin: 15px;
  }
  .feature-copy {
    padding: 32px 24px;
  }
  .feature-copy h3 {
    font-size: 32px;
  }
  .overlay-poster {
    min-height: 390px;
  }
  .overlay-poster kbd {
    font-size: 52px;
  }
  .profile-copy {
    padding: 45px 25px 20px;
  }
  .profile-copy h2 {
    font-size: 40px;
  }
  .profile-images {
    min-height: 360px;
  }
  .profile-main {
    width: 96%;
    right: -8%;
  }
  .profile-float {
    width: 65%;
    left: -4%;
  }
  .download-card {
    padding: 60px 20px;
  }
  .faq h2 {
    font-size: 40px;
  }
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .footer-links {
    grid-row: 2;
  }
  .footer-grid > p {
    grid-row: 3;
  }
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
  .button {
    transition: none;
  }
}
