:root {
  --bg: #06040a;
  --bg-soft: #0c0811;
  --surface: #110d17;
  --surface-2: #181020;
  --surface-3: #21122e;
  --text: #f1eff5;
  --muted: #aaa6b2;
  --muted-2: #797480;
  --purple: #9400ff;
  --purple-bright: #c43cff;
  --purple-deep: #4e078e;
  --success: #59d9a2;
  --warning: #f2bb62;
  --danger: #ff6d89;
  --line: rgba(213, 186, 235, .14);
  --line-bright: rgba(196, 60, 255, .34);
  --shadow: 0 28px 90px rgba(0, 0, 0, .46);
  --radius: 18px;
  --font-display: "Trebuchet MS", "Segoe UI", sans-serif;
  --font-body: Inter, "Segoe UI", Arial, sans-serif;
  --font-mono: "Cascadia Code", "SFMono-Regular", Consolas, monospace;
}

* { box-sizing: border-box; }
html { color-scheme: dark; scroll-behavior: smooth; }
body {
  margin: 0;
  min-width: 320px;
  color: var(--text);
  background:
    radial-gradient(circle at 78% -10%, rgba(148, 0, 255, .16), transparent 34rem),
    radial-gradient(circle at 7% 43%, rgba(96, 0, 190, .08), transparent 30rem),
    var(--bg);
  font-family: var(--font-body);
  line-height: 1.6;
  overflow-x: hidden;
  isolation: isolate;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -3;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255,255,255,.018) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.018) 1px, transparent 1px);
  background-size: 46px 46px;
  mask-image: linear-gradient(to bottom, black, transparent 76%);
}

::selection { background: rgba(155, 92, 255, .4); color: white; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
img { max-width: 100%; display: block; }

:focus-visible { outline: 3px solid var(--purple-bright); outline-offset: 4px; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0, 0, 0, 0); white-space: nowrap; border: 0; }
.container { width: min(1720px, calc(100% - 48px)); margin-inline: auto; }
.narrow { width: min(1060px, 100%); margin-inline: auto; }
.section { padding: 118px 0; position: relative; }

.nexaura-motion-field {
  position: fixed;
  inset: 0;
  width: 100vw;
  height: 100vh;
  pointer-events: none;
  z-index: 0;
  opacity: .9;
  contain: layout style paint;
}


/* Click ripple. Position is set inline (top/left in CSS px matching clientX/Y).
   Translate -50%,-50% centers on the click point. z-index sits above content
   so clicks near cards still show. Removed via animationend by JS. */
.click-ripple {
  position: fixed;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  border: 2px solid rgba(196, 120, 255, 0.65);
  transform: translate(-50%, -50%) scale(0.4);
  pointer-events: none;
  z-index: 100;
  animation: clickRippleOut 0.7s ease-out forwards;
  will-change: transform, opacity;
}
@keyframes clickRippleOut {
  0%   { transform: translate(-50%, -50%) scale(0.4); opacity: 1;   border-width: 2px; }
  100% { transform: translate(-50%, -50%) scale(6);   opacity: 0;   border-width: 0.5px; }
}
@media (prefers-reduced-motion: reduce) {
  .click-ripple { display: none; }
}

/* Product features shelf on the pricing page. Renders under each product's
   plan cards. Same visual language as the homepage highlights, slightly
   tighter spacing since it sits inside a product block. */
.product-features { margin: 44px 0 8px; padding-top: 34px; border-top: 1px solid var(--line); }
.product-features-header { margin-bottom: 22px; }
.product-features-header .section-kicker { margin: 0 0 8px; }
.product-features-header h3 { margin: 0; font-size: 24px; color: var(--text); }
.product-features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 18px;
}
.product-feature-card {
  position: relative;
  padding: 26px 24px 24px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: linear-gradient(160deg, rgba(24,18,40,.68), rgba(11,9,18,.88));
  transition: border-color .25s ease, transform .25s ease;
}
.product-feature-card:hover { border-color: var(--purple); transform: translateY(-2px); }
.product-feature-card h4 { margin: 0 0 10px; font-size: 18px; color: var(--text); }
.product-feature-card p { margin: 0; color: var(--muted); font-size: 13.5px; line-height: 1.7; }
.product-feature-card .highlight-tag { margin-bottom: 12px; }

/* "View features ↓" chip in each product block header — anchors to the
   features grid further down the same product block. Uses the pill shape
   pattern from status-pill / eyebrow. */
.product-features-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 9px 16px;
  border: 1px solid var(--line-bright);
  border-radius: 999px;
  color: var(--text);
  background: rgba(24, 18, 40, .5);
  font: 700 12px/1 var(--font-mono);
  letter-spacing: .12em;
  text-transform: uppercase;
  text-decoration: none;
  transition: border-color .2s ease, background .2s ease, transform .2s ease;
}
.product-features-link:hover { border-color: var(--purple); background: rgba(52, 34, 77, .7); transform: translateY(-1px); }
.product-features-link span { color: var(--purple-bright); }

/* Feature highlights (carbonx-style card grid). Used on the homepage to
   spotlight the current flagship product. Cards are dark with a purple tag
   ribbon and no external images. */
.highlights-section .section-heading { margin-bottom: 44px; }
.highlights-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 22px;
}
.highlight-card {
  position: relative;
  padding: 32px 28px 30px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: linear-gradient(160deg, rgba(24, 18, 40, 0.7), rgba(11, 9, 18, 0.9));
  overflow: hidden;
  transition: border-color .25s ease, transform .25s ease;
}
.highlight-card:hover { border-color: var(--purple); transform: translateY(-3px); }
.highlight-card::after {
  content: "";
  position: absolute;
  inset: -50% -30% auto auto;
  width: 220px;
  height: 220px;
  background: radial-gradient(circle, rgba(167, 23, 255, 0.18) 0%, transparent 60%);
  pointer-events: none;
}
.highlight-tag {
  display: inline-block;
  padding: 5px 10px;
  margin-bottom: 14px;
  border-radius: 6px;
  background: linear-gradient(100deg, #7740d0, #a45fff);
  color: white;
  font: 850 9px/1 var(--font-mono);
  letter-spacing: .16em;
}
.highlight-card h3 {
  margin: 0 0 12px;
  font-size: 21px;
  color: var(--text);
}
.highlight-card p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.7;
}

main, .site-footer { position: relative; z-index: 1; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 15;
  border-bottom: 1px solid transparent;
  transition: background .25s ease, border-color .25s ease;
}
.site-header::before { content: ""; position: fixed; top: 0; left: 0; z-index: 30; width: 100%; height: 2px; background: linear-gradient(90deg, #7400ff, #d93cff, #eee7ff); box-shadow: 0 0 13px rgba(196,60,255,.7); transform: scaleX(0); transform-origin: left; }
@supports (animation-timeline: scroll()) {
  .site-header::before { animation: pageProgress linear both; animation-timeline: scroll(root block); }
}
@keyframes pageProgress { to { transform: scaleX(1); } }
.site-header.scrolled { background: rgba(6, 4, 10, .96); border-color: var(--line); }
.nav-shell { height: 84px; display: flex; align-items: center; gap: 44px; }
.brand { display: inline-flex; align-items: center; gap: 10px; font-family: var(--font-display); font-weight: 900; letter-spacing: .16em; }
.brand img { width: 40px; height: 40px; object-fit: contain; }
.brand small { align-self: flex-end; margin: 0 0 9px -5px; color: var(--muted-2); font: 600 8px/1 var(--font-mono); letter-spacing: .2em; }
.site-nav { display: flex; align-items: center; gap: 34px; margin-left: auto; }
.site-nav a { position: relative; color: var(--muted); font-size: 14px; font-weight: 650; transition: color .2s ease; }
.site-nav a::after { content: ""; position: absolute; left: 0; right: 100%; bottom: -10px; height: 2px; border-radius: 50%; background: var(--purple-bright); transform: rotate(-2deg); transition: right .2s ease; }
.site-nav a:hover, .site-nav a.active { color: var(--text); }
.site-nav a.active::after { right: 15%; }
.nav-cta { margin-left: 2px; }
.menu-toggle { display: none; margin-left: auto; width: 44px; height: 44px; border: 1px solid var(--line); border-radius: 12px; background: var(--surface); padding: 11px; color: white; }
.menu-toggle > span:not(.sr-only) { display: block; height: 2px; margin: 4px 0; border-radius: 2px; background: currentColor; transition: transform .2s, opacity .2s; }

.button {
  min-height: 52px;
  padding: 0 24px;
  border: 1px solid rgba(215, 188, 255, .28);
  border-radius: 12px 15px 11px 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 13px;
  color: #fff;
  background: linear-gradient(135deg, #a866ff, #7338d2);
  box-shadow: 0 10px 32px rgba(121, 57, 220, .24), inset 0 1px rgba(255,255,255,.18);
  font-weight: 750;
  font-size: 14px;
  cursor: pointer;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.button:hover { transform: translateY(-3px) rotate(-.25deg); box-shadow: 0 16px 38px rgba(121, 57, 220, .35), inset 0 1px rgba(255,255,255,.2); }
.button-small { min-height: 43px; padding-inline: 19px; font-size: 13px; }
.button-light { color: #24133d; background: #faf6ff; border-color: white; box-shadow: 0 12px 35px rgba(33, 12, 58, .2); }
.button-outline { background: rgba(255,255,255,.025); border-color: var(--line-bright); box-shadow: none; }
.button-outline:hover { background: rgba(155, 92, 255, .1); }
.text-link { display: inline-flex; align-items: center; gap: 9px; color: var(--text); font-size: 14px; font-weight: 700; border-bottom: 1px solid rgba(255,255,255,.2); padding-bottom: 4px; transition: color .2s, border-color .2s; }
.text-link:hover { color: var(--purple-bright); border-color: var(--purple-bright); }
.discord-glyph { display: inline-grid; place-items: center; width: 25px; height: 25px; background: #7053e8; border-radius: 9px 7px 8px 6px; }

.hero { padding: 94px 0 100px; min-height: 720px; display: grid; align-items: center; }
.hero-grid { display: grid; grid-template-columns: 1.04fr .96fr; gap: 70px; align-items: center; }
.eyebrow, .section-kicker { color: var(--purple-bright); font: 700 11px/1.2 var(--font-mono); letter-spacing: .15em; }
.eyebrow { width: fit-content; min-height: 32px; padding: 0 12px; border: 1px solid var(--line-bright); border-radius: 50px; display: flex; align-items: center; gap: 9px; background: rgba(155,92,255,.05); }
.status-dot { display: inline-block; width: 7px; height: 7px; border-radius: 50%; background: var(--success); box-shadow: 0 0 0 4px rgba(89,217,162,.1), 0 0 14px rgba(89,217,162,.7); animation: statusPulse 2.4s ease-in-out infinite; }
[data-service-status="degraded"] .status-dot { background: var(--warning); box-shadow: 0 0 0 4px rgba(242,187,98,.1), 0 0 14px rgba(242,187,98,.7); }
[data-service-status="maintenance"] .status-dot, [data-service-status="offline"] .status-dot { background: var(--danger); box-shadow: 0 0 0 4px rgba(255,109,137,.1), 0 0 14px rgba(255,109,137,.7); }
@keyframes statusPulse { 50% { opacity: .55; transform: scale(.86); } }

h1, h2, h3 { margin: 0; font-family: var(--font-display); line-height: 1.06; letter-spacing: -.045em; }
.hero h1 { max-width: 730px; margin-top: 25px; font-size: clamp(53px, 6.2vw, 86px); }
.ink-underline { white-space: nowrap; color: var(--purple-bright); }
.hero-lede { max-width: 610px; margin: 29px 0 0; color: var(--muted); font-size: 18px; line-height: 1.75; }
.hero-actions { margin-top: 36px; display: flex; align-items: center; gap: 28px; }
.trust-row { margin-top: 37px; display: flex; flex-wrap: wrap; gap: 20px; color: var(--muted-2); font-size: 11px; font-weight: 700; letter-spacing: .035em; }
.trust-row i { display: inline-grid; place-items: center; width: 16px; height: 16px; margin-right: 4px; border: 1px solid rgba(89,217,162,.35); border-radius: 50%; color: var(--success); font-style: normal; font-size: 9px; }

.hero-visual { position: relative; min-height: 500px; display: grid; place-items: center; perspective: 1100px; }
.loader-window { position: relative; z-index: 2; width: min(100%, 455px); overflow: hidden; border: 1px solid rgba(215,190,255,.22); border-radius: 19px 23px 18px 22px; background: linear-gradient(150deg, rgba(27,22,37,.97), rgba(11,10,17,.98)); box-shadow: 0 35px 100px rgba(0,0,0,.58), 0 0 80px rgba(126,61,222,.1); transform: rotateY(-4deg) rotateZ(1deg); animation: windowFloat 7s ease-in-out infinite; }
.loader-window::after { content: ""; position: absolute; inset: 0; border-radius: inherit; pointer-events: none; box-shadow: inset 0 1px rgba(255,255,255,.08); }
.window-bar { height: 51px; padding: 0 17px; display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; border-bottom: 1px solid var(--line); color: var(--muted-2); font: 650 9px/1 var(--font-mono); letter-spacing: .13em; }
.window-dots { display: flex; gap: 6px; }
.window-dots span { width: 7px; height: 7px; border-radius: 50%; background: #312a3c; }
.window-dots span:first-child { background: #925ae7; }
.window-version { justify-self: end; }
.loader-body { padding: 42px 45px 35px; text-align: center; }
.loader-mark { position: relative; width: 72px; height: 72px; margin: 0 auto 22px; display: grid; place-items: center; border: 1px solid var(--line-bright); border-radius: 20px 23px 18px 24px; background: rgba(155,92,255,.06); }
.loader-mark img { position: relative; z-index: 1; width: 58px; height: 58px; object-fit: contain; }
.pulse-ring { position: absolute; inset: -8px; border: 1px solid rgba(155,92,255,.18); border-radius: 25px 20px 24px 22px; animation: ringPulse 3s ease-out infinite; }
.micro-label { margin: 0 0 9px; color: var(--purple-bright) !important; font: 700 9px/1 var(--font-mono) !important; letter-spacing: .2em; }
.loader-body h2 { font-size: 27px; }
.loader-body > p { margin: 10px auto 24px; max-width: 310px; color: var(--muted); font-size: 12px; }
.demo-input { display: block; padding: 12px 14px 13px; border: 1px solid var(--line); border-radius: 10px 12px 9px 11px; background: #0b0910; text-align: left; }
.demo-input > span:first-child { display: block; margin-bottom: 6px; color: var(--muted-2); font: 650 8px/1 var(--font-mono); letter-spacing: .13em; }
.key-placeholder { display: block; overflow: hidden; color: #d8cee5; font: 500 10px/1.4 var(--font-mono); white-space: nowrap; text-overflow: ellipsis; }
.demo-button { width: 100%; height: 45px; margin-top: 12px; border: 0; border-radius: 10px; color: white; background: linear-gradient(100deg, #7740d0, #a45fff); font-size: 12px; font-weight: 750; }
.secure-note { margin-top: 17px; color: var(--muted-2); font: 600 9px/1 var(--font-mono); letter-spacing: .05em; }
.secure-note span { color: var(--success); }
.orbit { position: absolute; border: 1px solid rgba(160,98,255,.13); border-radius: 50%; transform: rotate(-15deg); }
.orbit::before { content: ""; position: absolute; top: 16%; left: 2%; width: 8px; height: 8px; border-radius: 50%; background: var(--purple-bright); box-shadow: 0 0 18px var(--purple); }
.orbit-one { width: 510px; height: 350px; animation: orbitWobble 12s ease-in-out infinite alternate; }
.orbit-two { width: 400px; height: 525px; opacity: .55; transform: rotate(50deg); animation: orbitWobble 15s ease-in-out -5s infinite alternate-reverse; }
.spark { position: absolute; z-index: 3; color: var(--purple-bright); text-shadow: 0 0 17px var(--purple); animation: sparkFloat 4s ease-in-out infinite; }
.spark-one { top: 10%; right: 3%; font-size: 21px; }
.spark-two { bottom: 13%; left: 2%; font-size: 12px; animation-delay: -2s; }
.hand-note { position: absolute; z-index: 4; right: -28px; bottom: 26px; color: var(--muted-2); font: italic 12px/1.2 Georgia, serif; transform: rotate(-7deg); }
.hand-note span { display: inline-block; color: var(--purple-bright); font-size: 22px; transform: rotate(-35deg); }
@keyframes windowFloat { 50% { transform: rotateY(-2deg) rotateZ(.2deg) translateY(-10px); } }
@keyframes ringPulse { 70%,100% { inset: -20px; opacity: 0; } }
@keyframes orbitWobble { to { transform: rotate(-5deg) scale(1.04); } }
@keyframes sparkFloat { 50% { transform: translateY(-9px) rotate(15deg); opacity: .55; } }

.status-strip { border-block: 1px solid var(--line); background: rgba(255,255,255,.012); }
.status-grid { min-height: 92px; display: grid; grid-template-columns: 1.25fr repeat(3, 1fr); align-items: stretch; }
.status-grid > div { padding: 22px 28px; border-right: 1px solid var(--line); display: grid; grid-template-columns: auto 1fr; align-content: center; gap: 5px 12px; }
.status-grid > div:first-child { padding-left: 0; grid-template-columns: auto 1fr; }
.status-grid > div:last-child { border-right: 0; }
.status-grid .status-dot { grid-row: 1 / 3; align-self: center; }
.status-grid small { color: var(--muted-2); font: 650 8px/1 var(--font-mono); letter-spacing: .13em; }
.status-grid strong { font-size: 12px; font-weight: 680; }
.server-clock { font-family: var(--font-mono); font-variant-numeric: tabular-nums; }

.philosophy { text-align: center; }
.section-kicker { margin: 0 0 21px; }
.section-kicker span { margin-left: 8px; }
.philosophy h2, .center-heading h2 { font-size: clamp(38px, 5.2vw, 65px); }
.large-copy { margin: 32px auto 0; max-width: 790px; color: var(--muted); font: 400 clamp(18px, 2.1vw, 24px)/1.65 Georgia, serif; }

.features-section { padding-top: 65px; }
.section-heading { display: grid; grid-template-columns: 1fr 390px; align-items: end; gap: 70px; margin-bottom: 53px; }
.section-heading h2 { font-size: clamp(39px, 5vw, 62px); }
.section-heading h2 span { color: var(--muted-2); }
.section-heading > p { margin: 0 0 6px; color: var(--muted); font-size: 15px; }
.feature-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
.feature-card { position: relative; min-height: 330px; overflow: hidden; padding: 42px; border: 1px solid var(--line); border-radius: 19px 22px 17px 24px; background: linear-gradient(145deg, rgba(25,21,34,.86), rgba(14,12,20,.84)); transition: transform .25s, border-color .25s, background .25s; }
.feature-card:nth-child(2) { border-radius: 24px 17px 22px 19px; }
.feature-card:hover { transform: translateY(-5px) rotate(-.15deg); border-color: var(--line-bright); background: linear-gradient(145deg, rgba(31,25,44,.96), rgba(15,13,22,.92)); }
.card-number { position: absolute; top: 24px; right: 28px; color: #494052; font: 600 11px/1 var(--font-mono); }
.feature-icon { width: 58px; height: 58px; margin-bottom: 53px; display: grid; place-items: center; border: 1px solid var(--line-bright); border-radius: 17px 20px 15px 19px; color: var(--purple-bright); background: rgba(155,92,255,.06); font-size: 31px; }
.feature-card h3 { font-size: 25px; letter-spacing: -.025em; }
.feature-card p { max-width: 450px; margin: 13px 0 0; color: var(--muted); font-size: 14px; }
.key-icon span { position: relative; display: block; width: 27px; height: 13px; border: 3px solid var(--purple-bright); border-radius: 50%; transform: rotate(-37deg); }
.key-icon span::after { content: ""; position: absolute; width: 24px; height: 3px; top: 7px; left: 19px; background: var(--purple-bright); box-shadow: 8px 5px 0 -1px var(--purple-bright); }
.scribble { position: absolute; width: 140px; height: 80px; right: 35px; bottom: -25px; border: 2px solid rgba(155,92,255,.17); border-radius: 50%; transform: rotate(-12deg); }
.feature-wide { grid-column: 1 / -1; min-height: 255px; display: grid; grid-template-columns: 1fr 1.05fr; align-items: center; gap: 70px; }
.feature-wide h3 { font-size: 34px; }
.mini-timeline { position: relative; display: grid; grid-template-columns: 1fr 1fr; gap: 30px; padding: 27px 25px 18px; border: 1px solid var(--line); border-radius: 15px 18px 14px 20px; background: rgba(0,0,0,.2); }
.mini-timeline::before { content: ""; position: absolute; top: 55px; left: 25%; right: 25%; height: 1px; border-top: 1px dashed rgba(199,154,255,.3); }
.mini-timeline div { display: grid; text-align: center; gap: 9px; }
.mini-timeline span { font: 700 16px/1 var(--font-mono); }
.mini-timeline i { position: relative; z-index: 1; width: 9px; height: 9px; margin: auto; border-radius: 50%; background: var(--purple-bright); box-shadow: 0 0 0 5px rgba(155,92,255,.12); }
.mini-timeline small { color: var(--muted-2); font-size: 10px; }
.mini-timeline strong { grid-column: 1 / -1; justify-self: center; margin-top: 12px; padding: 6px 11px; border: 1px solid rgba(89,217,162,.25); border-radius: 30px; color: var(--success); font: 650 10px/1 var(--font-mono); }

.process-section { overflow: hidden; }
.center-heading { text-align: center; }
.center-heading > p:not(.section-kicker) { max-width: 610px; margin: 25px auto 0; color: var(--muted); }
.process-list { margin: 70px 0 0; padding: 0; display: grid; grid-template-columns: 1fr auto 1fr auto 1fr; align-items: center; gap: 26px; list-style: none; }
.process-list li:not(.process-arrow) { min-height: 205px; padding: 31px 28px; border: 1px solid var(--line); border-radius: 17px 21px 16px 22px; display: flex; gap: 20px; background: rgba(255,255,255,.016); }
.process-list li > span { flex: 0 0 39px; height: 39px; display: grid; place-items: center; border-radius: 50%; color: var(--purple-bright); background: rgba(155,92,255,.1); font: 700 13px/1 var(--font-mono); }
.process-list small { color: var(--muted-2); font: 700 8px/1 var(--font-mono); letter-spacing: .16em; }
.process-list h3 { margin-top: 14px; font-size: 21px; }
.process-list p { margin: 9px 0 0; color: var(--muted); font-size: 13px; }
.process-arrow { color: var(--purple); font-size: 24px; opacity: .55; }

.pricing-preview { padding-top: 55px; }
.preview-card { position: relative; min-height: 510px; padding: 74px 78px; overflow: hidden; border: 1px solid rgba(224,204,255,.22); border-radius: 32px 23px 29px 25px; display: grid; grid-template-columns: .86fr 1.14fr; align-items: center; background: linear-gradient(135deg, #7b3ed0 0%, #4c218e 100%); box-shadow: 0 35px 90px rgba(55,19,105,.25); }
.preview-card::before { content: ""; position: absolute; inset: 0; opacity: .13; background-image: radial-gradient(circle at 25% 30%, white 0 1px, transparent 1.5px); background-size: 25px 25px; mask-image: linear-gradient(90deg, black, transparent); }
.preview-copy { position: relative; z-index: 2; }
.preview-copy .section-kicker { color: rgba(255,255,255,.67); }
.preview-copy h2 { font-size: clamp(42px, 5.2vw, 67px); }
.preview-copy > p:not(.section-kicker) { max-width: 390px; margin: 23px 0 31px; color: rgba(255,255,255,.72); }
.ticket-stack { position: relative; height: 360px; }
.ticket { position: absolute; width: 220px; height: 305px; padding: 29px; border: 1px solid rgba(255,255,255,.25); border-radius: 19px 23px 16px 21px; display: flex; flex-direction: column; color: #27143d; background: #f5ecff; box-shadow: 0 25px 60px rgba(30,9,57,.25); }
.ticket::before, .ticket::after { content: ""; position: absolute; top: 67%; width: 24px; height: 24px; border-radius: 50%; background: #6029a8; }
.ticket::before { left: -13px; }.ticket::after { right: -13px; }
.ticket small { font: 750 9px/1 var(--font-mono); letter-spacing: .13em; }
.ticket strong { margin-top: auto; font: 900 106px/.75 var(--font-display); letter-spacing: -.1em; }
.ticket > span { margin-top: 14px; font: 750 11px/1 var(--font-mono); letter-spacing: .16em; }
.ticket-back { top: 42px; left: 10%; opacity: .55; transform: rotate(-13deg); }
.ticket-middle { top: 18px; left: 37%; opacity: .78; transform: rotate(3deg); background: #d8baff; }
.ticket-front { top: 43px; right: 1%; transform: rotate(13deg); background: white; }

.community-section { padding-top: 65px; }
.community-card { min-height: 235px; padding: 54px 58px; border-block: 1px solid var(--line); display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 38px; background: linear-gradient(90deg, rgba(155,92,255,.06), transparent 40%, rgba(155,92,255,.04)); }
.community-mark { width: 76px; height: 76px; border: 1px solid var(--line-bright); border-radius: 25px 20px 23px 19px; display: grid; place-items: center; color: var(--purple-bright); background: rgba(155,92,255,.08); font-size: 43px; transform: rotate(-3deg); }
.community-card h2 { font-size: 38px; }
.community-card p:not(.section-kicker) { max-width: 600px; margin: 10px 0 0; color: var(--muted); font-size: 14px; }

.site-footer { margin-top: 35px; border-top: 1px solid var(--line); background: #06050a; }
.footer-top { min-height: 150px; display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; gap: 30px; }
.footer-top > p { color: var(--muted-2); font: italic 16px Georgia, serif; }
.footer-top nav { justify-self: end; display: flex; gap: 27px; color: var(--muted); font-size: 12px; }
.footer-top nav a:hover { color: white; }
.footer-bottom { min-height: 66px; border-top: 1px solid var(--line); display: flex; align-items: center; justify-content: space-between; color: #635d6d; font: 600 9px/1 var(--font-mono); letter-spacing: .08em; }
.footer-status { display: flex; align-items: center; gap: 9px; }

/* Pricing */
.pricing-hero { padding: 95px 0 72px; text-align: center; }
.pricing-hero .eyebrow { margin: 0 auto 27px; }
.pricing-hero h1 { font-size: clamp(50px, 7vw, 82px); }
.pricing-hero .center-heading > p { max-width: 640px; margin-inline: auto; font-size: 20px; line-height: 1.7; color: var(--muted); }
.pricing-live { width: fit-content; margin: 28px auto 0; padding: 9px 14px; border: 1px solid var(--line); border-radius: 50px; display: flex; align-items: center; gap: 10px; color: var(--muted); font-size: 10px; }
.pricing-live i { width: 1px; height: 13px; background: var(--line-bright); }
.pricing-live strong { color: var(--text); font-size: 10px; }
.pricing-main { padding: 40px 0 100px; }
.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 17px; align-items: center; }
.price-card { position: relative; min-height: 610px; padding: 38px 36px; border: 1px solid var(--line); border-radius: 21px 25px 19px 27px; background: linear-gradient(150deg, rgba(25,21,35,.95), rgba(12,11,17,.95)); transition: transform .25s, border-color .25s; }
.price-card:hover { transform: translateY(-6px) rotate(-.15deg); border-color: var(--line-bright); }
.price-card.featured { min-height: 660px; padding-top: 63px; border-color: rgba(199,154,255,.4); background: linear-gradient(155deg, rgba(52,34,77,.96), rgba(19,14,29,.98)); box-shadow: 0 28px 80px rgba(56,23,104,.28); }
.popular-ribbon { position: absolute; top: 0; left: 24px; right: 24px; height: 46px; display: flex; align-items: center; justify-content: center; gap: 8px; border-radius: 0 0 12px 12px; color: #1b0c30; background: linear-gradient(100deg, #b567ff, #d93cff); box-shadow: 0 12px 32px -12px rgba(217, 60, 255, .65); font: 850 13px/1 var(--font-mono); letter-spacing: .22em; }
.price-top { display: flex; align-items: center; justify-content: space-between; }
.plan-tag { color: var(--purple-bright); font: 750 9px/1 var(--font-mono); letter-spacing: .14em; }
.plan-sketch { color: #4d4359; font: italic 18px Georgia, serif; }
.price-card h2 { margin-top: 38px; font-size: 42px; }
.price-card > p { min-height: 52px; margin: 13px 0 29px; color: var(--muted); font-size: 13px; }
.price { height: 86px; display: flex; align-items: flex-start; }
.price sup { margin: 10px 6px 0 0; color: var(--purple-bright); font: 750 17px/1 var(--font-mono); }
.price strong { font: 850 55px/.95 var(--font-display); letter-spacing: -.06em; }
.price span { align-self: flex-end; margin: 0 0 20px 8px; color: var(--muted-2); font-size: 11px; }
.price-card .button { width: 100%; margin: 22px 0 30px; min-height: 60px; font-size: 15px; letter-spacing: .03em; }
.price-card ul { margin: 0; padding: 25px 0 0; border-top: 1px solid var(--line); list-style: none; }
.price-card li { position: relative; margin: 13px 0; padding-left: 25px; color: #c8c0d3; font-size: 12px; }
.price-card li::before { content: "✓"; position: absolute; left: 0; color: var(--success); font-size: 10px; }
.purchase-note { margin: 34px auto 0; text-align: center; color: var(--muted-2); font: italic 13px Georgia, serif; }
.purchase-note span { margin-right: 7px; color: var(--purple-bright); font-size: 22px; }

.comparison-section { padding-top: 55px; }
.comparison-card { padding: 60px 65px; border: 1px solid var(--line); border-radius: 25px 20px 28px 22px; display: grid; grid-template-columns: .8fr 1.2fr; align-items: center; gap: 80px; background: rgba(255,255,255,.017); }
.comparison-card h2 { font-size: 40px; }
.included-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.included-grid span { min-height: 48px; padding: 0 15px; border: 1px solid var(--line); border-radius: 10px 13px 9px 12px; display: flex; align-items: center; gap: 10px; color: var(--muted); font-size: 12px; background: rgba(0,0,0,.14); }
.included-grid i { width: 19px; height: 19px; border-radius: 50%; display: grid; place-items: center; color: var(--success); background: rgba(89,217,162,.08); font-style: normal; font-size: 9px; }

.faq-layout { display: grid; grid-template-columns: .75fr 1.25fr; gap: 100px; align-items: start; }
.faq-heading { position: sticky; top: 130px; }
.faq-heading h2 { font-size: 46px; }
.faq-heading > p:not(.section-kicker) { margin: 18px 0 26px; color: var(--muted); }
.faq-list details { border-bottom: 1px solid var(--line); }
.faq-list summary { min-height: 81px; display: flex; align-items: center; justify-content: space-between; gap: 20px; cursor: pointer; list-style: none; font-family: var(--font-display); font-size: 17px; font-weight: 700; }
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary span { width: 29px; height: 29px; border: 1px solid var(--line); border-radius: 50%; display: grid; place-items: center; color: var(--purple-bright); transition: transform .2s; }
.faq-list details[open] summary span { transform: rotate(45deg); }
.faq-list details p { margin: -5px 55px 26px 0; color: var(--muted); font-size: 13px; }

/* Staged page entrance: the page stays visible while its real content settles into place. */
.hero-line { display: inline-block; }
.js body:not(.page-ready) .site-header .brand,
.js body:not(.page-ready) .site-header .site-nav a,
.js body:not(.page-ready) .site-header .nav-cta { opacity: 0; transform: translateY(-13px); }
.js body:not(.page-ready) .hero-copy .eyebrow,
.js body:not(.page-ready) .pricing-hero .eyebrow { opacity: 0; transform: translateY(15px) scale(.96); }
.js body:not(.page-ready) .hero-line { opacity: 0; clip-path: inset(0 0 100% 0); transform: translateY(40px) scale(.985); }
.js body:not(.page-ready) .hero-copy .hero-lede,
.js body:not(.page-ready) .hero-copy .hero-actions,
.js body:not(.page-ready) .hero-copy .trust-row,
.js body:not(.page-ready) .pricing-hero .center-heading > p,
.js body:not(.page-ready) .pricing-live { opacity: 0; transform: translateY(22px); }
.js body:not(.page-ready) .hero-visual { opacity: 0; transform: translateX(42px) scale(.965); }
.js body.page-ready .site-header .brand { animation: navEnter .72s cubic-bezier(.2,.8,.25,1) .03s both; }
.js body.page-ready .site-header .site-nav a:nth-child(1) { animation: navEnter .72s cubic-bezier(.2,.8,.25,1) .1s both; }
.js body.page-ready .site-header .site-nav a:nth-child(2) { animation: navEnter .72s cubic-bezier(.2,.8,.25,1) .17s both; }
.js body.page-ready .site-header .site-nav a:nth-child(3) { animation: navEnter .72s cubic-bezier(.2,.8,.25,1) .24s both; }
.js body.page-ready .site-header .nav-cta { animation: navEnter .72s cubic-bezier(.2,.8,.25,1) .31s both; }
.js body.page-ready .hero-copy .eyebrow,
.js body.page-ready .pricing-hero .eyebrow { animation: softEnter .78s cubic-bezier(.2,.8,.25,1) .12s both; }
.js body.page-ready .hero-line:nth-of-type(1) { animation: heroLineEnter 1s cubic-bezier(.16,.86,.22,1) .2s both; }
.js body.page-ready .hero-line:nth-of-type(2) { animation: heroLineEnter 1s cubic-bezier(.16,.86,.22,1) .34s both; }
.js body.page-ready .hero-line:nth-of-type(3) { animation: heroLineEnter 1s cubic-bezier(.16,.86,.22,1) .48s both; }
.js body.page-ready .hero-copy .hero-lede,
.js body.page-ready .pricing-hero .center-heading > p { animation: softEnter .85s cubic-bezier(.2,.8,.25,1) .58s both; }
.js body.page-ready .hero-copy .hero-actions,
.js body.page-ready .pricing-live { animation: softEnter .85s cubic-bezier(.2,.8,.25,1) .72s both; }
.js body.page-ready .hero-copy .trust-row { animation: softEnter .85s cubic-bezier(.2,.8,.25,1) .84s both; }
.js body.page-ready .hero-visual { animation: visualEnter 1.05s cubic-bezier(.16,.86,.22,1) .38s both; }
@keyframes navEnter { from { opacity: 0; transform: translateY(-17px); } to { opacity: 1; transform: translateY(0); } }
@keyframes softEnter { from { opacity: 0; transform: translateY(26px) scale(.98); } to { opacity: 1; transform: translateY(0) scale(1); } }
@keyframes heroLineEnter { from { opacity: 0; clip-path: inset(0 0 100% 0); transform: translateY(52px) scale(.98); } to { opacity: 1; clip-path: inset(0 0 0 0); transform: translateY(0) scale(1); } }
@keyframes visualEnter { from { opacity: 0; transform: translateX(56px) scale(.95); } to { opacity: 1; transform: translateX(0) scale(1); } }

.reveal { opacity: 1; transform: none; }
.js .reveal { opacity: 0; transform: translateY(34px) scale(.985); transition: opacity .7s ease var(--reveal-delay, 0s), transform .7s cubic-bezier(.2,.75,.25,1) var(--reveal-delay, 0s); will-change: opacity, transform; }
.js .reveal.revealed { opacity: 1; transform: translateY(0) scale(1); will-change: auto; }
.reveal-late { --reveal-delay: .13s; }
.feature-grid .reveal:nth-child(2), .pricing-grid .reveal:nth-child(2) { --reveal-delay: .08s; }
.feature-grid .reveal:nth-child(3), .pricing-grid .reveal:nth-child(3) { --reveal-delay: .16s; }
.feature-grid .reveal:nth-child(4) { --reveal-delay: .24s; }

@media (max-width: 1050px) {
  .hero-grid { gap: 30px; }
  .hero h1 { font-size: clamp(48px, 6.7vw, 70px); }
  .hand-note { right: 0; }
  .status-grid { grid-template-columns: repeat(2, 1fr); }
  .status-grid > div:nth-child(2) { border-right: 0; }
  .status-grid > div:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
  .status-grid > div:nth-child(3) { padding-left: 0; }
  .price-card { padding-inline: 25px; }
  .price strong { font-size: 47px; }
  .ticket { width: 195px; }
  .comparison-card, .faq-layout { gap: 50px; }
}

@media (max-width: 820px) {
  .container { width: min(100% - 40px, 680px); }
  .section { padding: 90px 0; }
  .nav-shell { height: 74px; }
  .menu-toggle { display: block; }
  .nav-cta { display: none; }
  .site-nav { position: absolute; top: 68px; left: 20px; right: 20px; margin: 0; padding: 15px; border: 1px solid var(--line-bright); border-radius: 14px; display: grid; gap: 4px; background: rgba(14,12,20,.97); box-shadow: var(--shadow); opacity: 0; visibility: hidden; transform: translateY(-8px); transition: opacity .2s, transform .2s, visibility .2s; }
  .site-nav.open { opacity: 1; visibility: visible; transform: translateY(0); }
  .site-nav a { min-height: 46px; padding: 0 14px; display: flex; align-items: center; border-radius: 9px; }
  .site-nav a:hover { background: rgba(155,92,255,.08); }
  .site-nav a::after { display: none; }
  .hero { padding-top: 70px; }
  .hero-grid { grid-template-columns: 1fr; }
  .hero-copy { text-align: center; }
  .hero-copy .eyebrow { margin-inline: auto; }
  .hero-lede { margin-inline: auto; }
  .hero-actions, .trust-row { justify-content: center; }
  .hero-visual { margin-top: 50px; }
  .section-heading { grid-template-columns: 1fr; gap: 25px; }
  .feature-grid { grid-template-columns: 1fr; }
  .feature-wide { grid-column: auto; grid-template-columns: 1fr; gap: 35px; }
  .process-list { grid-template-columns: 1fr; gap: 14px; }
  .process-arrow { transform: rotate(90deg); text-align: center; }
  .preview-card { min-height: 750px; padding: 55px 45px; grid-template-columns: 1fr; text-align: center; }
  .preview-copy > p:not(.section-kicker) { margin-inline: auto; }
  .ticket-stack { width: min(520px, 100%); margin: 15px auto 0; }
  .ticket-back { left: 5%; }.ticket-middle { left: 31%; }.ticket-front { right: 2%; }
  .community-card { grid-template-columns: auto 1fr; }
  .community-card .button { grid-column: 1 / -1; }
  .pricing-grid { grid-template-columns: 1fr; max-width: 550px; }
  .price-card, .price-card.featured { min-height: 0; padding: 38px; }
  .price-card.featured { padding-top: 63px; }
  .comparison-card { grid-template-columns: 1fr; }
  .faq-layout { grid-template-columns: 1fr; }
  .faq-heading { position: static; }
}

@media (max-width: 560px) {
  .container { width: min(100% - 32px, 480px); }
  .section { padding: 74px 0; }
  .brand small { display: none; }
  .hero { padding-top: 55px; }
  .hero h1 { font-size: 46px; }
  .hero-lede { font-size: 16px; }
  .hero-actions { flex-direction: column; align-items: stretch; gap: 20px; }
  .hero-actions .text-link { align-self: center; }
  .trust-row { gap: 12px; }
  .hero-visual { min-height: 420px; }
  .loader-window { transform: none; animation-name: windowFloatMobile; }
  .loader-body { padding: 34px 25px 28px; }
  .orbit-one { width: 410px; height: 290px; }.orbit-two { width: 330px; height: 430px; }
  .hand-note { display: none; }
  .status-grid { grid-template-columns: 1fr; }
  .status-grid > div { border-right: 0; border-bottom: 1px solid var(--line); padding-left: 0; }
  .status-grid > div:last-child { border-bottom: 0; }
  .philosophy h2, .center-heading h2 { font-size: 39px; }
  .feature-card { min-height: 300px; padding: 32px 28px; }
  .feature-icon { margin-bottom: 40px; }
  .feature-wide { min-height: 440px; }
  .preview-card { min-height: 735px; padding: 48px 24px; }
  .ticket-stack { transform: scale(.8); transform-origin: center top; width: 520px; left: 50%; margin-left: -260px; }
  .community-card { padding: 42px 25px; grid-template-columns: 1fr; text-align: center; }
  .community-mark { margin: auto; }
  .footer-top { padding: 40px 0; grid-template-columns: 1fr; text-align: center; }
  .footer-top .brand, .footer-top nav { justify-self: center; }
  .footer-top > p { margin: 0; }.footer-bottom { padding: 22px 0; flex-direction: column; gap: 15px; }
  .pricing-hero h1 { font-size: 40px; }
  .pricing-hero .ink-underline { white-space: normal; }
  .pricing-live { flex-wrap: wrap; justify-content: center; }
  .price-card, .price-card.featured { padding-inline: 27px; }
  .comparison-card { padding: 40px 27px; }
  .included-grid { grid-template-columns: 1fr; }
  .faq-heading h2 { font-size: 39px; }
}

@keyframes windowFloatMobile { 50% { transform: translateY(-8px); } }

.features-section,
.process-section,
.pricing-preview,
.community-section,
.comparison-section,
.faq-section {
  content-visibility: auto;
  contain-intrinsic-block-size: 760px;
}

/* Games grid (homepage catalog) */
.games-section { padding-top: 65px; }
.games-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.game-card { position: relative; display: flex; flex-direction: column; min-height: 380px; overflow: hidden; border: 1px solid var(--line); border-radius: 21px 25px 19px 24px; background: linear-gradient(150deg, rgba(25,21,35,.95), rgba(12,11,17,.95)); transition: transform .25s, border-color .25s, background .25s; text-decoration: none; color: inherit; }
a.game-card { cursor: pointer; }
a.game-card:hover { transform: translateY(-6px) rotate(-.15deg); border-color: var(--line-bright); background: linear-gradient(150deg, rgba(31,25,44,.96), rgba(15,13,22,.92)); }
.game-card-media { position: relative; height: 168px; overflow: hidden; border-bottom: 1px solid var(--line); background: linear-gradient(140deg, rgba(76,33,142,.35), rgba(19,13,33,.9)); display: grid; place-items: center; }
.game-card-media::after { content: ""; position: absolute; inset: 0; background-image: radial-gradient(circle at 25% 30%, rgba(255,255,255,.06) 0 1px, transparent 1.5px); background-size: 22px 22px; mask-image: linear-gradient(90deg, black, transparent); pointer-events: none; }
.game-card-glow { position: absolute; width: 220px; height: 220px; border-radius: 50%; background: radial-gradient(circle, rgba(196,60,255,.35), transparent 65%); filter: blur(6px); animation: cardGlow 6s ease-in-out infinite; }
@keyframes cardGlow { 50% { transform: translate(18px, -8px) scale(1.06); opacity: .8; } }
.game-card-mark { position: relative; z-index: 1; width: 84px; height: 84px; display: grid; place-items: center; border: 1px solid var(--line-bright); border-radius: 22px 18px 24px 20px; background: rgba(9,7,16,.72); color: var(--text); font: 900 38px/1 var(--font-display); letter-spacing: -.04em; box-shadow: 0 12px 32px rgba(76,33,142,.35); }
.game-card-lock { position: absolute; top: 14px; right: 16px; color: var(--purple-bright); font-size: 18px; opacity: .75; }
.game-card-body { flex: 1; display: flex; flex-direction: column; padding: 26px 28px 30px; }
.game-card-tag { color: var(--purple-bright); font: 750 9px/1 var(--font-mono); letter-spacing: .16em; }
.game-card-tag-coming-soon { color: var(--muted-2); }
.game-card-body h3 { margin: 14px 0 0; font-size: 24px; letter-spacing: -.03em; }
.game-card-tagline { margin: 10px 0 0; color: var(--purple-bright); font: 650 12px/1.5 var(--font-mono); letter-spacing: .04em; }
.game-card-body p { margin: 10px 0 0; color: var(--muted); font-size: 13px; }
.game-card-cta { margin-top: auto; padding-top: 22px; display: inline-flex; align-items: center; gap: 8px; color: var(--text); font-weight: 700; font-size: 13px; }
a.game-card:hover .game-card-cta { color: var(--purple-bright); }
.game-card-cta-muted { color: var(--muted-2); }
.game-card-coming-soon, .game-card-placeholder-slot { border-style: dashed; background: linear-gradient(150deg, rgba(20,16,29,.78), rgba(11,9,17,.88)); }
.game-card-coming-soon .game-card-media, .game-card-placeholder-slot .game-card-media { background: linear-gradient(140deg, rgba(40,28,68,.28), rgba(14,10,22,.9)); }
.game-card-placeholder { border-style: dashed; }

/* Pricing: product selector + product blocks */
.product-selector-section { padding: 40px 0 14px; }
.product-selector { display: flex; flex-wrap: wrap; justify-content: center; gap: 12px; margin-top: 26px; }
.product-chip { display: inline-flex; align-items: center; gap: 12px; min-height: 46px; padding: 0 20px; border: 1px solid var(--line-bright); border-radius: 12px 15px 11px 14px; background: rgba(155,92,255,.06); color: var(--text); font-size: 13px; font-weight: 700; text-decoration: none; cursor: pointer; transition: transform .2s, background .2s, border-color .2s; }
.product-chip:hover { transform: translateY(-2px); background: rgba(155,92,255,.14); }
.product-chip-name { letter-spacing: -.01em; }
.product-chip-game { color: var(--purple-bright); font: 700 10px/1 var(--font-mono); letter-spacing: .16em; }
.product-chip-locked { border-style: dashed; background: transparent; color: var(--muted-2); cursor: not-allowed; }
.product-chip-locked:hover { transform: none; background: transparent; }
.product-chip-placeholder { border-style: dashed; background: transparent; color: var(--muted-2); }

.product-loading { padding: 60px 0; text-align: center; color: var(--muted-2); font: 650 12px/1 var(--font-mono); letter-spacing: .13em; }
.product-block { padding: 60px 0; border-top: 1px solid var(--line); }
.product-block:first-of-type { border-top: 0; padding-top: 20px; }
.product-block-head { display: grid; grid-template-columns: 1fr auto; align-items: end; gap: 40px; margin-bottom: 40px; }
.product-block-headings h2 { font-size: clamp(34px, 4vw, 52px); }
.product-block-tagline { margin: 14px 0 0; color: var(--purple-bright); font: 650 13px/1.5 var(--font-mono); letter-spacing: .04em; }
.product-block-description { margin: 12px 0 0; max-width: 640px; color: var(--muted); font-size: 15px; }
.product-block-badge { display: inline-flex; align-items: center; gap: 10px; padding: 8px 14px; border: 1px solid var(--line); border-radius: 40px; color: var(--muted); font: 650 10px/1 var(--font-mono); letter-spacing: .13em; background: rgba(255,255,255,.02); }
.product-plan-grid { align-items: stretch; }
.product-block-coming-soon .product-block-headings h2 { color: var(--muted); }
.price-card-locked { min-height: 380px; border-style: dashed; background: linear-gradient(150deg, rgba(20,16,29,.72), rgba(11,9,17,.86)); display: flex; flex-direction: column; align-items: flex-start; justify-content: center; gap: 14px; text-align: left; }
.price-card-locked h2 { margin: 0; font-size: 42px; color: var(--muted-2); }
.price-card-locked p { margin: 0; color: var(--muted); font-size: 13px; }
.price-card-locked .locked-glyph { color: var(--purple-bright); font-size: 26px; }
.price-card-locked .locked-note { margin-top: 8px; color: var(--muted-2); font: 650 10px/1.4 var(--font-mono); letter-spacing: .1em; }

@media (max-width: 1050px) {
  .games-grid { grid-template-columns: repeat(2, 1fr); }
  .product-block-head { grid-template-columns: 1fr; }
}
@media (max-width: 820px) {
  .games-grid { grid-template-columns: 1fr; }
  .product-block { padding: 40px 0; }
  .product-selector { flex-direction: column; align-items: stretch; }
  .product-chip { justify-content: space-between; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .loader-window, .pulse-ring, .orbit, .spark, .status-dot { animation: none !important; }
  .js .reveal { transition-duration: .25s; }
  .nexaura-motion-field { opacity: .58; }
  .game-card-glow { animation: none; }
}
