:root {
  --bg: #070708;
  --surface: #0d0d10;
  --surface-2: #121217;
  --text: #f5f3f8;
  --muted: #8f8b98;
  --line: rgba(255,255,255,.1);
  --purple: #a855f7;
  --purple-bright: #c478ff;
  --container: 1240px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--text);
  background: var(--bg);
  font-family: Inter, sans-serif;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
.container { width: min(calc(100% - 48px), var(--container)); margin-inline: auto; }
.noise {
  position: fixed; inset: 0; z-index: 50; pointer-events: none; opacity: .025;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.6'/%3E%3C/svg%3E");
}

.header {
  position: fixed; inset: 0 0 auto; z-index: 40; height: 82px;
  border-bottom: 1px solid transparent;
  transition: background .35s ease, border-color .35s ease, backdrop-filter .35s ease, box-shadow .35s ease;
}
.header.scrolled {
  background: rgba(9,9,12,.73); border-color: rgba(255,255,255,.085);
  -webkit-backdrop-filter: blur(16px) saturate(125%);
  backdrop-filter: blur(16px) saturate(125%);
  box-shadow: 0 12px 40px rgba(0,0,0,.16);
}
.header__inner { height: 100%; display: flex; align-items: center; justify-content: space-between; }
.logo { display: flex; align-items: center; gap: 12px; font: 800 15px/1 Manrope; letter-spacing: .13em; }
.logo__mark {
  width: 34px; height: 34px; display: grid; place-items: center; font-size: 15px; color: #09090a;
  background: var(--text); clip-path: polygon(50% 0, 100% 22%, 87% 83%, 50% 100%, 13% 83%, 0 22%);
}
.logo__muted { color: #77727e; }
.nav { display: flex; gap: 34px; font-size: 13px; color: #aaa6b0; }
.nav a {
  position: relative; padding: 10px 0;
  transition: color .3s ease, text-shadow .3s ease;
}
.nav a::after {
  content: ""; position: absolute; left: 50%; right: 50%; bottom: 2px; height: 1px;
  background: linear-gradient(90deg, transparent, var(--purple-bright), transparent);
  box-shadow: 0 0 9px rgba(192,132,252,.45);
  transition: left .3s ease, right .3s ease, opacity .3s ease; opacity: 0;
}
.nav a:hover { color: #f2eafb; text-shadow: 0 0 16px rgba(192,132,252,.2); }
.nav a.active { color: #fff; text-shadow: 0 0 18px rgba(192,132,252,.24); }
.nav a.active::after { left: 0; right: 0; opacity: 1; }
.button {
  min-height: 52px; padding: 0 25px; display: inline-flex; align-items: center; justify-content: center; gap: 22px;
  border: 1px solid var(--purple); background: var(--purple); color: #fff; font-size: 13px; font-weight: 600;
  transition: transform .25s, box-shadow .25s, background .25s;
}
.button:hover { transform: translateY(-2px); box-shadow: 0 10px 36px rgba(168,85,247,.3); background: #b366f9; }
.button--small { min-height: 39px; padding-inline: 18px; font-size: 12px; }
.header__cta {
  box-shadow: 0 8px 26px rgba(147,51,234,.18);
  transition: transform .3s ease, box-shadow .3s ease, background .3s ease;
}
.header__cta:hover { transform: translateY(-1px) scale(1.025); box-shadow: 0 11px 34px rgba(168,85,247,.3); }
.button--ghost { border-color: var(--line); background: transparent; color: #c8c4ce; }
.button--ghost:hover { border-color: rgba(196,120,255,.5); background: rgba(168,85,247,.06); }
.menu-button { display: none; width: 40px; height: 40px; padding: 11px 8px; border: 0; background: transparent; }
.menu-button span { display: block; height: 1px; margin: 6px 0; background: #fff; transition: .25s; }

.hero {
  position: relative; min-height: 800px; height: 100svh; max-height: 960px; overflow: hidden;
  border-bottom: 1px solid var(--line);
  background:
    radial-gradient(circle at 55% 48%, rgba(168,85,247,.075), transparent 60%),
    radial-gradient(ellipse 48% 56% at 82% 51%, rgba(61,65,255,.15), transparent 64%),
    radial-gradient(ellipse 50% 62% at 76% 49%, rgba(156,55,235,.16), transparent 70%),
    linear-gradient(115deg, #0b0b0f 0%, #101016 54%, #15151c 100%);
}
.hero::before {
  content: ""; position: absolute; z-index: 2; inset: 0; pointer-events: none; opacity: .25;
  background-image:
    linear-gradient(rgba(255,255,255,.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.035) 1px, transparent 1px);
  background-size: 80px 80px;
  -webkit-mask-image: linear-gradient(to right, #000, rgba(0,0,0,.7) 48%, transparent 92%);
  mask-image: linear-gradient(to right, #000, rgba(0,0,0,.7) 48%, transparent 92%);
}
.hero::after {
  content: ""; position: absolute; z-index: 3; inset: 0; pointer-events: none;
  background:
    linear-gradient(90deg, rgba(11,11,15,.22) 0%, transparent 55%, rgba(11,11,15,.12) 100%),
    linear-gradient(180deg, rgba(11,11,15,.26) 0%, transparent 18%, transparent 74%, rgba(11,11,15,.7) 100%);
}
.hero__glow {
  position: absolute; z-index: 1; width: 46%; height: 56%; right: 2%; top: 22%; pointer-events: none;
  border-radius: 50%;
  background:
    radial-gradient(ellipse at 52% 58%, rgba(192,132,252,.12), transparent 43%),
    radial-gradient(ellipse at 50% 50%, rgba(168,85,247,.095), rgba(147,51,234,.035) 50%, transparent 72%);
  filter: blur(42px);
  animation: heroGlowBreath 8s ease-in-out infinite alternate;
}
.hero__particles { position: absolute; z-index: 4; inset: 12% 2% 10% 51%; overflow: hidden; pointer-events: none; opacity: .36; }
.hero__particles i {
  position: absolute; width: 2px; height: 2px; border-radius: 50%;
  background: rgba(218,190,255,.72); box-shadow: 0 0 8px rgba(168,85,247,.48);
  animation: heroParticleDrift 12s ease-in-out infinite alternate;
}
.hero__particles i:nth-child(1) { left: 17%; top: 67%; animation-duration: 14s; }
.hero__particles i:nth-child(2) { left: 37%; top: 25%; animation-delay: -4s; animation-duration: 17s; }
.hero__particles i:nth-child(3) { left: 57%; top: 73%; animation-delay: -8s; animation-duration: 15s; }
.hero__particles i:nth-child(4) { left: 72%; top: 33%; animation-delay: -2s; animation-duration: 18s; }
.hero__particles i:nth-child(5) { left: 84%; top: 61%; animation-delay: -10s; animation-duration: 16s; }
.hero__particles i:nth-child(6) { left: 47%; top: 48%; animation-delay: -6s; animation-duration: 19s; }
.hero__inner { position: relative; z-index: 5; height: 100%; display: grid; grid-template-columns: .92fr 1.08fr; align-items: center; padding-top: 72px; }
.hero__content { position: relative; z-index: 6; }
.eyebrow { display: flex; align-items: center; gap: 10px; text-transform: uppercase; letter-spacing: .16em; font-size: 10px; font-weight: 600; color: #99949f; }
.eyebrow > span { width: 22px; height: 1px; background: var(--purple-bright); box-shadow: 0 0 8px var(--purple); }
h1, h2, h3 { margin: 0; font-family: Manrope, sans-serif; }
h1 { margin-top: 28px; font-size: clamp(64px, 7.4vw, 108px); line-height: .91; letter-spacing: -.065em; font-weight: 700; }
h1 span, h2 span { color: var(--purple-bright); }
.hero__content > p { max-width: 540px; margin: 30px 0 0; color: #a8a3ae; font-size: 17px; line-height: 1.75; }
.hero__actions { display: flex; gap: 12px; margin-top: 38px; }
.button--hero {
  box-shadow: 0 11px 34px rgba(147,51,234,.2), inset 0 1px 0 rgba(255,255,255,.14);
  transition: transform .32s cubic-bezier(.2,.7,.2,1), box-shadow .32s ease, background .32s ease;
}
.button--hero:hover { transform: translateY(-3px) scale(1.018); box-shadow: 0 15px 46px rgba(168,85,247,.34), inset 0 1px 0 rgba(255,255,255,.18); }
.hero__meta { display: grid; grid-template-columns: repeat(3, max-content); gap: 42px; margin-top: 70px; }
.hero__meta div {
  display: flex; flex-direction: column; gap: 7px; padding: 8px 0;
  transition: transform .3s ease, filter .3s ease;
}
.hero__meta strong { color: #fff; font: 700 16px Manrope; letter-spacing: -.015em; }
.hero__meta span { color: #918c98; font-size: 10px; font-weight: 600; text-transform: uppercase; letter-spacing: .11em; }
.hero__meta div:hover { transform: translateY(-3px); filter: drop-shadow(0 0 11px rgba(192,132,252,.22)); }
.hero__visual {
  position: absolute; z-index: 1; inset: 0;
  overflow: hidden; pointer-events: none;
}
.hero__visual::before {
  content: ""; position: absolute; z-index: 4; inset: 0; pointer-events: none;
  background:
    linear-gradient(90deg, #0b0b0f 0%, rgba(11,11,15,.99) 27%, rgba(11,11,15,.88) 39%, rgba(11,11,15,.42) 55%, rgba(11,11,15,.06) 78%, transparent 100%),
    linear-gradient(180deg, #0b0b0f 0%, transparent 17%, transparent 76%, #0b0b0f 100%);
}
.hero__visual::after {
  content: ""; position: absolute; z-index: 1; width: 51%; height: 56%; right: 2%; top: 22%;
  border-radius: 50%; pointer-events: none;
  background: radial-gradient(ellipse, rgba(61,91,255,.15) 0%, rgba(168,85,247,.09) 44%, transparent 74%);
  filter: blur(58px);
  animation: heroLightShift 10s ease-in-out infinite alternate;
}
.hero__media {
  position: absolute; z-index: 2; width: 59%; height: 72%; right: 0; top: 14%;
  object-fit: cover; object-position: 48% 48%; mix-blend-mode: normal;
  filter: saturate(.93) contrast(1.07) brightness(.91);
  transform: scale(.97);
  transform-origin: center;
  overflow: hidden;
  isolation: isolate;
  -webkit-mask-image: radial-gradient(ellipse 68% 70% at 51% 48%, #000 41%, rgba(0,0,0,.96) 56%, rgba(0,0,0,.68) 72%, rgba(0,0,0,.22) 88%, transparent 100%);
  mask-image: radial-gradient(ellipse 68% 70% at 51% 48%, #000 41%, rgba(0,0,0,.96) 56%, rgba(0,0,0,.68) 72%, rgba(0,0,0,.22) 88%, transparent 100%);
}
.hero__media::after {
  content: ""; position: absolute; z-index: 2; inset: -1px; pointer-events: none;
  background:
    linear-gradient(90deg, rgba(11,11,15,.78) 0%, rgba(11,11,15,.22) 13%, transparent 28%),
    linear-gradient(270deg, rgba(18,18,24,.9) 0%, rgba(18,18,24,.28) 10%, transparent 24%),
    linear-gradient(180deg, rgba(11,11,15,.82) 0%, rgba(11,11,15,.18) 12%, transparent 27%),
    linear-gradient(0deg, rgba(11,11,15,.94) 0%, rgba(11,11,15,.32) 13%, transparent 30%);
}
.hero__video {
  position: absolute; z-index: 1; inset: 0; width: 100%; height: 100%;
  object-fit: cover; object-position: 48% 48%;
  mix-blend-mode: normal;
  transform: translate3d(2.5%, 1.5%, 0) scale(1.11);
  transform-origin: center;
  opacity: 0;
  will-change: opacity;
}
.hero__video--active { opacity: 1; }
.scroll-hint { position: absolute; z-index: 7; bottom: 35px; left: 50%; display: flex; align-items: center; gap: 12px; color: #716d77; text-transform: uppercase; letter-spacing: .16em; font-size: 9px; }
.scroll-hint span { display: block; width: 1px; height: 30px; background: linear-gradient(var(--purple), transparent); animation: pulse 1.8s infinite; }

.section { padding: 130px 0; }
.section-heading { max-width: 680px; margin-bottom: 60px; }
.section-heading > div:first-child { display: flex; align-items: center; gap: 18px; }
.index { color: var(--purple-bright); font: 600 10px Manrope; }
.section-heading h2 { margin-top: 20px; font-size: clamp(40px, 5vw, 66px); line-height: 1.05; letter-spacing: -.05em; }
.section-heading > p, .section-heading--row > p { color: var(--muted); font-size: 14px; line-height: 1.75; }
.section-heading > p { max-width: 560px; margin: 22px 0 0; }
.section-heading--row { max-width: none; display: flex; align-items: end; justify-content: space-between; }
.section-heading--row > p { width: 370px; margin: 0 0 5px; }
.section-heading--center { margin-inline: auto; text-align: center; }
.section-heading--center > div { justify-content: center; }
.section-heading--center > p { margin-inline: auto; }

.features {
  display: grid; grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line); border-bottom: 1px solid var(--line);
}
.feature {
  position: relative; min-height: 350px; padding: 32px 30px 36px;
  display: flex; flex-direction: column; justify-content: space-between;
  border-right: 1px solid var(--line); overflow: hidden;
  transition: transform .36s cubic-bezier(.2,.7,.2,1), background .36s, box-shadow .36s, border-color .36s;
}
.feature:last-child { border-right: 0; }
.feature::before {
  content: ""; position: absolute; inset: auto 10% -55% 10%; height: 62%;
  background: radial-gradient(ellipse, rgba(142,52,222,.22), transparent 68%);
  filter: blur(36px); opacity: 0; transition: opacity .36s;
}
.feature__top { display: flex; align-items: center; justify-content: space-between; }
.feature__number { color: var(--purple-bright); font: 600 10px Manrope; letter-spacing: .12em; }
.feature__type { color: #514d58; font-size: 8px; text-transform: uppercase; letter-spacing: .16em; }
.feature h3 {
  position: relative; margin: auto 0 27px; color: #f4f1f7;
  font-size: clamp(35px, 3.25vw, 48px); line-height: .94; letter-spacing: -.055em;
  transition: color .36s, text-shadow .36s;
}
.feature h3 span { color: #827d89; transition: color .36s; }
.feature__title--cpu { font-size: clamp(29px, 2.7vw, 41px) !important; line-height: 1.02 !important; }
.feature__title--ps { font-size: clamp(29px, 2.7vw, 40px) !important; }
.feature p {
  position: relative; min-height: 64px; margin: 0; padding-top: 19px;
  border-top: 1px solid rgba(255,255,255,.08);
  color: #77727e; font-size: 11px; line-height: 1.7;
  transition: color .36s, border-color .36s;
}
.feature:hover {
  z-index: 2; transform: translateY(-7px);
  border-color: rgba(196,120,255,.28);
  background: linear-gradient(155deg, rgba(160,62,233,.1), rgba(12,12,15,.35) 62%);
  box-shadow: 0 16px 45px rgba(0,0,0,.3), 0 0 32px rgba(154,55,226,.12);
}
.feature:hover::before { opacity: 1; }
.feature:hover h3 { color: #fff; text-shadow: 0 0 25px rgba(196,120,255,.12); }
.feature:hover h3 span { color: var(--purple-bright); }
.feature:hover p { color: #aaa5af; border-color: rgba(196,120,255,.25); }

.section--zones { background: #09090b; border-block: 1px solid var(--line); }
.section--zones .section-heading { margin-bottom: 48px; }
.zones {
  display: grid; grid-template-columns: 1.35fr .65fr; grid-template-rows: 265px 265px 330px;
  gap: 14px;
}
.zone {
  position: relative; min-height: 0; overflow: hidden; isolation: isolate;
  border: 1px solid rgba(255,255,255,.1); background: #0c0b0f;
  transition: transform .38s cubic-bezier(.2,.7,.2,1), border-color .38s, box-shadow .38s;
}
.zone--arena { grid-row: 1 / 3; }
.zone--tournament { grid-column: 1 / 3; }
.zone img {
  position: absolute; z-index: -2; inset: 0; width: 100%; height: 100%;
  object-fit: cover; transition: transform .55s cubic-bezier(.2,.7,.2,1), filter .4s;
}
.zone--arena img { object-position: center; }
.zone--console img { object-position: 58% center; }
.zone--vip img { object-position: 67% center; }
.zone--tournament img { object-position: center 57%; }
.zone__shade {
  position: absolute; z-index: -1; inset: 0;
  background:
    linear-gradient(180deg, rgba(4,4,7,.08) 25%, rgba(5,5,8,.3) 55%, rgba(5,5,8,.96) 100%),
    linear-gradient(90deg, rgba(7,7,10,.38), transparent 58%);
}
.zone__content { position: absolute; inset: auto 0 0; padding: 30px; }
.zone__index {
  display: block; margin-bottom: 10px; color: rgba(214,180,255,.72);
  font: 600 9px Manrope; text-transform: uppercase; letter-spacing: .16em;
}
.zone h3 { font-size: clamp(22px, 2.3vw, 34px); letter-spacing: -.04em; }
.zone p {
  display: flex; flex-wrap: wrap; align-items: center; gap: 9px; margin: 10px 0 0;
  color: #bbb6c2; font-size: 11px; line-height: 1.5;
}
.zone p i { width: 3px; height: 3px; border-radius: 50%; background: var(--purple-bright); box-shadow: 0 0 8px var(--purple); }
.zone:hover {
  z-index: 2; transform: translateY(-6px); border-color: rgba(196,120,255,.42);
  box-shadow: 0 18px 55px rgba(0,0,0,.45), 0 0 35px rgba(151,54,225,.17);
}
.zone:hover img { transform: scale(1.045); filter: saturate(1.08) contrast(1.03); }

.section--pricing {
  position: relative; overflow: hidden;
  background:
    radial-gradient(ellipse 44% 42% at 50% 64%, rgba(127,42,199,.11), transparent 72%),
    #070708;
}
.section--pricing .section-heading { margin-bottom: 76px; }
.pricing { display: grid; grid-template-columns: repeat(3, 1fr); align-items: stretch; gap: 18px; }
.price-card {
  position: relative; min-height: 570px; padding: 44px 40px 40px;
  display: flex; flex-direction: column;
  border: 1px solid rgba(255,255,255,.11);
  background: linear-gradient(160deg, rgba(20,20,25,.96), rgba(10,10,13,.98));
  transition: transform .36s cubic-bezier(.2,.7,.2,1), border-color .36s, box-shadow .36s, background .36s;
}
.price-card::before {
  content: ""; position: absolute; inset: 0; pointer-events: none; opacity: 0;
  background: linear-gradient(145deg, rgba(168,85,247,.09), transparent 42%);
  transition: opacity .36s;
}
.price-card--featured {
  z-index: 2; margin-block: -18px; padding-top: 66px; min-height: 606px;
  border-color: rgba(196,120,255,.58);
  background: linear-gradient(145deg, rgba(143,51,211,.18), rgba(17,14,23,.98) 42%, #0c0c10 100%);
  box-shadow: 0 26px 90px rgba(0,0,0,.48), 0 0 52px rgba(150,52,224,.16);
}
.popular {
  position: absolute; inset: 0 0 auto; height: 32px; display: grid; place-items: center;
  background: linear-gradient(90deg, #9238dc, #bd62fa, #9238dc);
  color: #fff; font-size: 9px; font-weight: 700; text-transform: uppercase; letter-spacing: .18em;
}
.price-card__top { position: relative; display: flex; justify-content: space-between; color: #625d69; font: 600 10px Manrope; }
.price-card__top > span:first-child { color: var(--purple-bright); }
.status { color: #77727e; text-transform: uppercase; letter-spacing: .12em; }
.price-card h3 { position: relative; margin-top: 45px; font-size: 34px; letter-spacing: -.04em; }
.price-card > p { position: relative; min-height: 48px; margin: 12px 0 34px; color: #96919d; font-size: 13px; line-height: 1.65; }
.price {
  position: relative; display: flex; align-items: end; gap: 10px;
  padding-bottom: 34px; border-bottom: 1px solid rgba(255,255,255,.11);
}
.price strong { font: 700 clamp(40px, 3.6vw, 52px) Manrope; line-height: .95; letter-spacing: -.055em; }
.price span { padding-bottom: 5px; color: #77727e; font-size: 11px; }
.price-card ul { position: relative; flex: 1; list-style: none; padding: 25px 0 31px; margin: 0; }
.price-card li { position: relative; padding: 8px 0 8px 22px; color: #b3aeba; font-size: 12px; line-height: 1.45; }
.price-card li::before { content: "✓"; position: absolute; left: 0; color: var(--purple-bright); text-shadow: 0 0 12px rgba(196,120,255,.5); }
.price-card .button { position: relative; width: 100%; min-height: 54px; justify-content: space-between; }
.price-card:hover {
  z-index: 3; transform: translateY(-8px); border-color: rgba(196,120,255,.42);
  background: linear-gradient(155deg, rgba(30,20,39,.98), rgba(11,11,15,.98) 58%);
  box-shadow: 0 22px 65px rgba(0,0,0,.48), 0 0 34px rgba(151,54,225,.13);
}
.price-card:hover::before { opacity: 1; }
.price-card--featured:hover {
  transform: translateY(-8px) scale(1.012); border-color: rgba(205,139,255,.78);
  box-shadow: 0 30px 95px rgba(0,0,0,.52), 0 0 65px rgba(151,54,225,.23);
}

.cta { position: relative; overflow: hidden; padding: 140px 0; text-align: center; border-top: 1px solid var(--line); background: #0b080e; }
.cta::before { content: ""; position: absolute; inset: 0; background: radial-gradient(circle at 50% 100%, rgba(156,50,245,.25), transparent 48%); }
.cta__glow { position: absolute; width: 500px; height: 500px; left: calc(50% - 250px); bottom: -350px; border-radius: 50%; background: #8c2cdb; filter: blur(100px); }
.cta__inner { position: relative; }
.cta .eyebrow { justify-content: center; }
.cta h2 { margin: 22px 0 17px; font-size: clamp(45px, 6vw, 76px); letter-spacing: -.055em; }
.cta p { margin: 0 auto 33px; color: var(--muted); font-size: 14px; }
.button--light { border-color: #fff; background: #fff; color: #0a090b; }
.button--light:hover { background: #eee9f1; box-shadow: 0 10px 40px rgba(255,255,255,.15); }

.footer { padding: 75px 0 25px; border-top: 1px solid var(--line); }
.footer__main { display: grid; grid-template-columns: 1.7fr 1fr 1.35fr .8fr; gap: 50px; padding-bottom: 60px; }
.logo--footer { margin-bottom: 24px; }
.footer__main > div:first-child p, .footer__col p { color: #706c76; font-size: 11px; line-height: 1.8; }
.footer__col { display: flex; flex-direction: column; align-items: start; gap: 13px; }
.footer__col > span { margin-bottom: 8px; color: #66616d; font-size: 8px; text-transform: uppercase; letter-spacing: .16em; }
.footer__col a { color: #aaa5af; font-size: 11px; transition: color .2s; }.footer__col a:hover { color: var(--purple-bright); }
.footer__col p { margin: 0; }
.footer__bottom { display: flex; justify-content: space-between; padding-top: 22px; border-top: 1px solid var(--line); color: #55515a; font-size: 9px; text-transform: uppercase; letter-spacing: .07em; }
.online { color: #77727e; }.online i { display: inline-block; width: 5px; height: 5px; margin-right: 7px; border-radius: 50%; background: #6be585; box-shadow: 0 0 8px #6be585; }

.reveal { opacity: 0; transform: translateY(26px); transition: opacity .8s ease, transform .8s cubic-bezier(.2,.7,.2,1); transition-delay: var(--delay, 0ms); }
.reveal.visible { opacity: 1; transform: translateY(0); }
@keyframes pulse { 50% { opacity: .3; transform: translateY(5px); } }
@keyframes heroGlowBreath {
  0% { opacity: .62; transform: scale(.97); filter: blur(44px); }
  100% { opacity: .9; transform: scale(1.035); filter: blur(50px); }
}
@keyframes heroLightShift {
  0% { opacity: .68; transform: translate3d(-1%, 1%, 0) scale(.98); }
  100% { opacity: .92; transform: translate3d(1.5%, -1%, 0) scale(1.025); }
}
@keyframes heroParticleDrift {
  0% { opacity: .08; transform: translate3d(-5px, 12px, 0) scale(.8); }
  45% { opacity: .55; }
  100% { opacity: .16; transform: translate3d(15px, -20px, 0) scale(1.15); }
}

@media (max-width: 980px) {
  .nav { display: none; position: fixed; inset: 82px 0 auto; padding: 25px 24px 35px; flex-direction: column; background: rgba(7,7,8,.97); border-bottom: 1px solid var(--line); }
  .nav.open { display: flex; }.header__cta { display: none; }.menu-button { display: block; }
  .hero__inner { grid-template-columns: 1fr; }.hero__content { width: 62%; }
  .hero__visual::before { background: linear-gradient(90deg, #0b0b0f 0%, rgba(11,11,15,.96) 28%, rgba(11,11,15,.54) 58%, rgba(11,11,15,.08) 100%); }
  .hero__media { width: 68%; height: 69%; right: -9%; top: 16%; }
  .hero__glow { width: 55%; right: -3%; }
  .hero__particles { left: 47%; }
  .features { grid-template-columns: repeat(2,1fr); }
  .feature { min-height: 310px; }
  .feature:nth-child(2) { border-right: 0; }
  .feature:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
  .zones { grid-template-columns: 1fr 1fr; grid-template-rows: 390px 245px 285px; }
  .zone--arena { grid-column: 1 / 3; grid-row: auto; }
  .zone--tournament { grid-column: 1 / 3; }
  .pricing { grid-template-columns: repeat(2, 1fr); }
  .price-card--featured {
    grid-column: 1 / 3; order: -1; min-height: 535px; margin-block: 0;
  }
}

@media (max-width: 700px) {
  .container { width: min(calc(100% - 32px), var(--container)); }
  .header { height: 70px; }.nav { top: 70px; }
  .hero { min-height: 760px; height: 100svh; max-height: 880px; }
  .hero::before { background-size: 50px 50px; -webkit-mask-image: linear-gradient(to bottom,#000,transparent 78%); mask-image: linear-gradient(to bottom,#000,transparent 78%); }
  .hero::after { background: linear-gradient(180deg, rgba(11,11,15,.18) 0%, rgba(11,11,15,.42) 44%, rgba(11,11,15,.9) 100%); }
  .hero__inner { display: block; padding-top: 145px; }.hero__content { width: 100%; }
  h1 { font-size: clamp(58px, 18vw, 78px); }.hero__content > p { max-width: 92%; margin-top: 22px; font-size: 14px; line-height: 1.65; }
  .hero__actions { margin-top: 27px; flex-direction: column; align-items: stretch; width: 100%; max-width: 360px; }
  .hero__meta { grid-template-columns: repeat(3, minmax(0,1fr)); gap: 12px; margin-top: 34px; }
  .hero__meta strong { font-size: 10px; line-height: 1.25; }.hero__meta span { font-size: 7px; }
  .hero__visual {
    inset: 0; opacity: .76;
  }
  .hero__visual::before {
    background:
      linear-gradient(180deg, #0b0b0f 0%, rgba(11,11,15,.98) 23%, rgba(11,11,15,.7) 53%, rgba(11,11,15,.94) 100%),
      linear-gradient(90deg, rgba(11,11,15,.74) 0%, rgba(11,11,15,.3) 66%, rgba(11,11,15,.12) 100%);
  }
  .hero__glow { width: 94%; height: 47%; right: -31%; top: 41%; opacity: .58; }
  .hero__particles { inset: 37% 0 8% 37%; opacity: .22; }
  .hero__visual::after { width: 95%; height: 53%; right: -30%; top: 41%; filter: blur(42px); }
  .hero__media {
    width: 108%; height: 53%; right: -35%; top: 39%; object-position: 50% 50%; transform: scale(.97);
    -webkit-mask-image: radial-gradient(ellipse 67% 69% at 51% 49%, #000 39%, rgba(0,0,0,.94) 54%, rgba(0,0,0,.58) 73%, transparent 100%);
    mask-image: radial-gradient(ellipse 67% 69% at 51% 49%, #000 39%, rgba(0,0,0,.94) 54%, rgba(0,0,0,.58) 73%, transparent 100%);
  }
  .hero__media::after {
    background:
      linear-gradient(90deg, rgba(11,11,15,.86) 0%, rgba(11,11,15,.28) 15%, transparent 31%),
      linear-gradient(270deg, rgba(15,15,20,.92) 0%, rgba(15,15,20,.3) 11%, transparent 25%),
      linear-gradient(180deg, rgba(11,11,15,.9) 0%, rgba(11,11,15,.24) 14%, transparent 29%),
      linear-gradient(0deg, rgba(11,11,15,.97) 0%, rgba(11,11,15,.4) 15%, transparent 32%);
  }
  .hero__video { object-position: 50% 50%; transform: translate3d(2.5%, 1.8%, 0) scale(1.12); }
  .scroll-hint { display: none; }
  .section { padding: 90px 0; }.section-heading { margin-bottom: 40px; }.section-heading h2 { font-size: 42px; }
  .section-heading--row { display: block; }.section-heading--row > p { width: auto; margin-top: 20px; }
  .features { grid-template-columns: 1fr; }
  .feature { min-height: 260px; padding: 27px 24px 28px; border-right: 0; border-bottom: 1px solid var(--line) !important; }
  .feature:last-child { border-bottom: 0 !important; }
  .feature h3 { margin: 55px 0 23px; font-size: 40px; }
  .feature__title--cpu, .feature__title--ps { font-size: 35px !important; }
  .feature p { min-height: 0; }
  .zones { display: grid; grid-template-columns: 1fr; grid-template-rows: 360px 265px 265px 300px; gap: 12px; }
  .zone--arena, .zone--tournament { grid-column: auto; grid-row: auto; }
  .zone__content { padding: 22px; }
  .zone h3 { font-size: 25px; }
  .zone p { gap: 7px; font-size: 10px; }
  .section--pricing .section-heading { margin-bottom: 48px; }
  .pricing { grid-template-columns: 1fr; gap: 14px; }
  .price-card { min-height: 0; padding: 34px 28px 28px; }
  .price-card--featured { grid-column: auto; order: -1; min-height: 0; margin-block: 0; padding-top: 58px; }
  .price-card h3 { margin-top: 34px; }
  .price-card > p { min-height: 0; margin-bottom: 28px; }
  .cta { padding: 100px 0; }.cta h2 { font-size: 46px; }
  .footer__main { grid-template-columns: 1fr 1fr; gap: 40px 25px; }.footer__main > div:first-child { grid-column: 1 / 3; }
  .footer__bottom { gap: 12px; flex-wrap: wrap; }.footer__bottom > span:nth-child(2) { display: none; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  .reveal { opacity: 1; transform: none; }
}
