:root {
  --bg: #12081f;
  --panel: #201034;
  --text: #fff7fd;
  --muted: #c4b7d5;
  --pink: #ff4fc3;
  --blue: #48d7ff;
  --yellow: #ffe15a;
  --mint: #63ffc6;
  --line: rgba(255, 255, 255, 0.16);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: radial-gradient(circle at 20% 0%, rgba(255, 79, 195, 0.28), transparent 34%),
    radial-gradient(circle at 80% 12%, rgba(72, 215, 255, 0.22), transparent 34%), var(--bg);
  color: var(--text);
  font-family: "Segoe UI", Arial, sans-serif;
}

a {
  color: inherit;
  text-decoration: none;
}

.header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: grid;
  grid-template-columns: 140px 1fr auto;
  align-items: center;
  gap: 20px;
  padding: 18px 30px;
  border-bottom: 1px solid var(--line);
  background: rgba(18, 8, 31, 0.82);
  backdrop-filter: blur(18px);
}

.brand {
  font-size: 1.5rem;
  font-weight: 950;
  letter-spacing: -0.06em;
}

.brand span {
  color: var(--pink);
}

nav {
  display: flex;
  justify-content: center;
  gap: 26px;
  color: var(--muted);
  font-weight: 800;
}

button {
  border: 1px solid var(--line);
  border-radius: 999px;
  background: linear-gradient(135deg, var(--pink), var(--blue));
  color: white;
  padding: 11px 17px;
  cursor: pointer;
  font-weight: 950;
}

.hero {
  width: min(1220px, calc(100% - 36px));
  margin: 70px auto 105px;
  display: grid;
  grid-template-columns: 1fr 520px;
  gap: 44px;
  align-items: center;
}

.label {
  margin: 0 0 18px;
  color: var(--mint);
  font-size: 0.78rem;
  font-weight: 950;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  margin-bottom: 24px;
  font-size: clamp(3rem, 7.6vw, 7.8rem);
  line-height: 0.86;
  letter-spacing: -0.09em;
}

.hero-copy > p:not(.label),
.showroom-copy p,
.product-card p,
.systems-grid p,
.launch li span,
footer p {
  color: var(--muted);
  line-height: 1.72;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 32px;
}

.hero-actions a {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  padding: 0 21px;
  border-radius: 999px;
  font-weight: 950;
}

.hero-actions a:first-child {
  background: var(--yellow);
  color: #160c23;
}

.hero-actions a:last-child {
  border: 1px solid var(--line);
}

.room {
  position: relative;
  min-height: 540px;
  border: 1px solid var(--line);
  border-radius: 40px;
  overflow: hidden;
  background: linear-gradient(160deg, rgba(255, 79, 195, 0.18), rgba(72, 215, 255, 0.16)),
    linear-gradient(180deg, #281344, #160c23);
  box-shadow: 0 40px 120px rgba(0, 0, 0, 0.42);
}

.room::before {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 34%;
  background: repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.08) 0 2px, transparent 3px 60px),
    linear-gradient(180deg, rgba(255, 225, 90, 0.14), rgba(255, 255, 255, 0.03));
}

.screen {
  position: absolute;
  left: 50px;
  right: 50px;
  top: 52px;
  min-height: 230px;
  padding: 26px;
  border: 5px solid #0b0514;
  border-radius: 30px;
  background: #090413;
  box-shadow: 0 0 44px rgba(72, 215, 255, 0.42);
  display: grid;
  gap: 12px;
}

.screen span {
  display: block;
  font-size: 3rem;
  line-height: 0.9;
  font-weight: 950;
  letter-spacing: -0.08em;
}

.screen span:nth-child(1) {
  color: var(--pink);
}

.screen span:nth-child(2) {
  color: var(--blue);
}

.screen span:nth-child(3) {
  color: var(--yellow);
}

.lamp {
  position: absolute;
  width: 82px;
  height: 190px;
  right: 58px;
  bottom: 88px;
  border-radius: 80px 80px 16px 16px;
  background: var(--yellow);
  box-shadow: 0 0 55px rgba(255, 225, 90, 0.72);
}

.table {
  position: absolute;
  left: 52px;
  bottom: 85px;
  width: 260px;
  height: 35px;
  border-radius: 999px;
  background: var(--mint);
}

.table::before,
.table::after {
  content: "";
  position: absolute;
  top: 28px;
  width: 18px;
  height: 96px;
  background: var(--mint);
}

.table::before {
  left: 42px;
}

.table::after {
  right: 42px;
}

.console {
  position: absolute;
  left: 130px;
  bottom: 135px;
  width: 110px;
  height: 48px;
  border-radius: 20px;
  background: var(--pink);
}

.showroom,
.products,
.systems,
.launch,
footer {
  width: min(1220px, calc(100% - 36px));
  margin: 0 auto 105px;
}

.showroom {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 22px;
}

.showroom-heading,
.showroom-copy,
.product-card,
.systems-grid article,
.launch,
footer {
  border: 1px solid var(--line);
  border-radius: 34px;
  background: rgba(255, 255, 255, 0.06);
}

.showroom-heading,
.showroom-copy {
  padding: 34px;
}

.showroom-heading h2,
.systems-intro h2,
.launch h2,
footer h2 {
  margin: 0;
  font-size: clamp(2.3rem, 5vw, 5.6rem);
  line-height: 0.9;
  letter-spacing: -0.08em;
}

.showroom-copy {
  display: grid;
  align-content: center;
  gap: 16px;
}

.products {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.product-card {
  min-height: 360px;
  padding: 28px;
}

.product-card span {
  display: inline-flex;
  margin-bottom: 80px;
  color: var(--mint);
  font-weight: 950;
}

.product-card h3,
.systems-grid h3 {
  font-size: 1.8rem;
  line-height: 1;
  letter-spacing: -0.05em;
}

.game {
  background: linear-gradient(180deg, rgba(255, 79, 195, 0.3), rgba(255, 255, 255, 0.06));
}

.software {
  background: linear-gradient(180deg, rgba(72, 215, 255, 0.26), rgba(255, 255, 255, 0.06));
}

.portal {
  background: linear-gradient(180deg, rgba(99, 255, 198, 0.24), rgba(255, 255, 255, 0.06));
}

.retail {
  background: linear-gradient(180deg, rgba(255, 225, 90, 0.26), rgba(255, 255, 255, 0.06));
}

.systems-intro {
  max-width: 840px;
  margin-bottom: 30px;
}

.systems-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.systems-grid article {
  padding: 28px;
  min-height: 300px;
}

.launch {
  padding: 36px;
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 34px;
  background: linear-gradient(135deg, rgba(255, 79, 195, 0.22), rgba(72, 215, 255, 0.14));
}

.launch ol {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 14px;
}

.launch li {
  display: grid;
  grid-template-columns: 62px 1fr;
  gap: 16px;
  padding: 20px;
  border-radius: 22px;
  background: rgba(0, 0, 0, 0.22);
}

.launch b {
  color: var(--yellow);
}

footer {
  margin-bottom: 28px;
  padding: 36px;
  display: flex;
  justify-content: space-between;
  gap: 30px;
  background: #fff7fd;
  color: #160c23;
}

footer .label {
  color: var(--pink);
}

footer p {
  color: #5f536c;
}

address {
  display: grid;
  gap: 12px;
  align-content: center;
  font-style: normal;
  font-weight: 950;
}

@media (max-width: 980px) {
  .header,
  .hero,
  .showroom,
  .products,
  .systems-grid,
  .launch {
    grid-template-columns: 1fr;
  }

  nav {
    justify-content: flex-start;
    flex-wrap: wrap;
  }

  .room {
    min-height: 500px;
  }

  footer {
    display: grid;
  }
}
