:root {
  --bg: #100F12;
  --bg-deep: #0b0a0d;
  --surface: #1C1A22;
  --surface-2: #211F28;
  --surface-3: #282431;
  --line: rgba(255, 255, 255, 0.08);
  --line-strong: rgba(157, 78, 221, 0.3);
  --text: #FFFFFF;
  --muted: #8A8A93;
  --muted-2: #70707A;
  --accent: #7B2CBF;
  --accent-bright: #9D4EDD;
  --accent-soft: rgba(157, 78, 221, 0.12);
  --accent-glow: rgba(157, 78, 221, 0.25);
  --red: var(--accent);
  --red-bright: var(--accent-bright);
  --red-dark: #5A189A;
  --red-soft: var(--accent-soft);
  --green: #3ee58b;
  --shadow-red: 0 0 45px var(--accent-glow);
  --font: "Outfit", "Inter", "Segoe UI", sans-serif;
  --container: 1240px;
  --header-height: 78px;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 24px);
}

body {
  margin: 0;
  min-width: 320px;
  color: var(--text);
  background: var(--bg);
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.5;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body::selection {
  color: #fff;
  background: var(--red);
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input {
  font: inherit;
}

button {
  color: inherit;
}

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

h1,
h2,
h3,
p {
  margin-top: 0;
}

button,
a,
input {
  -webkit-tap-highlight-color: transparent;
}

:focus-visible {
  outline: 2px solid var(--accent-bright);
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  z-index: 9999;
  top: 14px;
  left: 14px;
  padding: 12px 18px;
  color: #fff;
  background: var(--red);
  font-weight: 700;
  transform: translateY(-140%);
  transition: transform 180ms ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.container {
  width: min(calc(100% - 48px), var(--container));
  margin-inline: auto;
}

.section-pad {
  padding: 118px 0;
}

.section-grid {
  position: relative;
  isolation: isolate;
}

.section-grid::before {
  position: absolute;
  z-index: -2;
  inset: 0;
  content: "";
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.022) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.022) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: linear-gradient(to bottom, transparent, #000 15%, #000 85%, transparent);
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 9px;
  margin: 0 0 18px;
  color: #d2cecf;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.eyebrow-dot {
  width: 7px;
  height: 7px;
  background: var(--red-bright);
  box-shadow: 0 0 12px rgba(157, 78, 221, 0.9);
  transform: rotate(45deg);
}

.reveal {
  opacity: 1;
  transform: none;
}

.js-ready .reveal:not(.is-visible) {
  opacity: 0;
  transform: translateY(24px);
}

.js-ready .reveal {
  transition: opacity 650ms ease, transform 650ms cubic-bezier(0.2, 0.75, 0.25, 1);
}

/* Shared brand and buttons */
.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  min-height: 44px;
}

.brand-mark {
  position: relative;
  display: grid;
  width: 32px;
  height: 32px;
  place-items: center;
  border: 1px solid rgba(157, 78, 221, 0.5);
  background: linear-gradient(145deg, rgba(157, 78, 221, 0.22), rgba(157, 78, 221, 0.03));
  box-shadow: inset 0 0 18px rgba(123, 44, 191, 0.14), 0 0 18px rgba(123, 44, 191, 0.1);
  transform: rotate(45deg);
}

.brand-mark::before,
.brand-mark::after,
.brand-mark span::before,
.brand-mark span::after {
  position: absolute;
  content: "";
  background: var(--red-bright);
  box-shadow: 0 0 6px rgba(157, 78, 221, 0.75);
}

.brand-mark::before {
  top: 5px;
  bottom: 5px;
  left: 50%;
  width: 1px;
}

.brand-mark::after {
  top: 50%;
  right: 5px;
  left: 5px;
  height: 1px;
}

.brand-mark span {
  width: 6px;
  height: 6px;
  border: 1px solid #fff;
  border-radius: 50%;
}

.brand-word {
  color: #fff;
  font-size: 1.22rem;
  font-weight: 800;
  letter-spacing: -0.04em;
}

.brand-word span {
  color: var(--red-bright);
}

.brand-product {
  margin-left: 2px;
  padding: 3px 6px;
  border: 1px solid rgba(157, 78, 221, 0.28);
  color: #C77DFF;
  background: rgba(123, 44, 191, 0.08);
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.14em;
}

.button {
  position: relative;
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  gap: 12px;
  border: 1px solid transparent;
  padding: 0 22px;
  cursor: pointer;
  font-weight: 700;
  line-height: 1;
  overflow: hidden;
  transition: border-color 220ms ease, background 220ms ease, color 220ms ease, transform 220ms ease, box-shadow 220ms ease;
}

.button::after {
  position: absolute;
  top: -80%;
  left: -50%;
  width: 38%;
  height: 250%;
  content: "";
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.25), transparent);
  transform: rotate(22deg);
  transition: left 520ms ease;
}

.button:hover::after {
  left: 120%;
}

.button:hover {
  transform: translateY(-2px);
}

.button--primary {
  color: #fff;
  background: linear-gradient(135deg, #9D4EDD, #7B2CBF);
  border-color: rgba(157, 78, 221, 0.55);
  box-shadow: 0 10px 35px rgba(123, 44, 191, 0.25), inset 0 1px 0 rgba(255, 255, 255, 0.18);
}

.button--primary:hover,
.button--primary:focus-visible {
  background: linear-gradient(135deg, #AD60E6, #7B2CBF);
  box-shadow: 0 14px 42px rgba(123, 44, 191, 0.38), 0 0 0 1px rgba(157, 78, 221, 0.24);
}

.button--primary:focus-visible {
  outline-color: #fff;
}

.button--ghost {
  color: #ddd9da;
  border-color: var(--line-strong);
  background: rgba(255, 255, 255, 0.035);
}

.button--ghost:hover,
.button--ghost:focus-visible {
  color: #fff;
  border-color: rgba(157, 78, 221, 0.45);
  background: rgba(123, 44, 191, 0.08);
}

.button--compact {
  min-height: 42px;
  padding: 0 17px;
  font-size: 0.88rem;
}

.button--small {
  min-height: 44px;
  padding-inline: 16px;
  font-size: 0.78rem;
  letter-spacing: 0.04em;
}

.button-arrow {
  display: grid;
  width: 24px;
  height: 24px;
  place-items: center;
  border-left: 1px solid rgba(255, 255, 255, 0.2);
  padding-left: 10px;
}

/* Header */
.site-header {
  position: fixed;
  z-index: 1000;
  top: 0;
  right: 0;
  left: 0;
  height: var(--header-height);
  border-bottom: 1px solid transparent;
  transition: height 220ms ease, background 220ms ease, border-color 220ms ease, backdrop-filter 220ms ease;
}

.site-header.is-scrolled,
.site-header.menu-open {
  height: 68px;
  border-color: var(--line);
  background: rgba(16, 15, 18, 0.84);
  backdrop-filter: blur(20px);
}

.nav-shell {
  display: flex;
  height: 100%;
  align-items: center;
  justify-content: space-between;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 34px;
}

.desktop-nav a {
  position: relative;
  min-height: 44px;
  padding-top: 12px;
  color: #8A8A93;
  font-size: 0.88rem;
  font-weight: 500;
  transition: color 180ms ease;
}

.desktop-nav a::after {
  position: absolute;
  right: 0;
  bottom: 7px;
  left: 0;
  height: 1px;
  content: "";
  background: var(--red-bright);
  box-shadow: 0 0 8px var(--red-bright);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 220ms ease;
}

.desktop-nav a:hover,
.desktop-nav a:focus-visible {
  color: #fff;
}

.desktop-nav a:hover::after,
.desktop-nav a:focus-visible::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.mobile-menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: 1px solid var(--line-strong);
  padding: 0;
  background: rgba(255, 255, 255, 0.035);
  cursor: pointer;
}

.mobile-menu-toggle span {
  display: block;
  width: 18px;
  height: 1px;
  margin: 5px auto;
  background: #fff;
  transition: transform 220ms ease;
}

.site-header.menu-open .mobile-menu-toggle span:first-child {
  transform: translateY(3px) rotate(45deg);
}

.site-header.menu-open .mobile-menu-toggle span:last-child {
  transform: translateY(-3px) rotate(-45deg);
}

.mobile-menu {
  display: none;
}

/* Crosshair component */
.crosshair {
  --ch-color: #9D4EDD;
  --ch-size: 58px;
  --ch-line: 2px;
  --ch-gap-start: 36%;
  --ch-gap-end: 64%;
  position: relative;
  display: block;
  width: var(--ch-size);
  height: var(--ch-size);
  flex: 0 0 auto;
  color: var(--ch-color);
  filter: drop-shadow(0 0 5px color-mix(in srgb, var(--ch-color) 78%, transparent));
  opacity: var(--ch-opacity, 1);
  transition: width 200ms ease, height 200ms ease, color 200ms ease, opacity 200ms ease, filter 200ms ease;
}

.crosshair::before,
.crosshair::after {
  position: absolute;
  z-index: 1;
  content: "";
  background: currentColor;
}

.crosshair::before {
  top: calc(50% - var(--ch-line) / 2);
  left: 0;
  width: 100%;
  height: var(--ch-line);
  background: linear-gradient(90deg, currentColor 0 var(--ch-gap-start), transparent var(--ch-gap-start) var(--ch-gap-end), currentColor var(--ch-gap-end));
}

.crosshair::after {
  top: 0;
  left: calc(50% - var(--ch-line) / 2);
  width: var(--ch-line);
  height: 100%;
  background: linear-gradient(0deg, currentColor 0 var(--ch-gap-start), transparent var(--ch-gap-start) var(--ch-gap-end), currentColor var(--ch-gap-end));
}

.crosshair--asset {
  filter: none;
}

.crosshair--asset::before,
.crosshair--asset::after {
  display: none;
}

.crosshair--asset img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 7px 16px rgba(0, 0, 0, .34)) drop-shadow(0 0 10px rgba(157, 78, 221, .16));
  pointer-events: none;
  user-select: none;
}

.crosshair img[hidden] {
  display: none;
}

.crosshair--asset .crosshair__center,
.crosshair--asset .crosshair__accent {
  display: none;
}

.crosshair__center,
.crosshair__accent {
  position: absolute;
  z-index: 3;
  top: 50%;
  left: 50%;
  display: block;
  transform: translate(-50%, -50%);
}

.crosshair--dot .crosshair__center {
  width: 7px;
  height: 7px;
  border: 1px solid rgba(255, 255, 255, 0.45);
  border-radius: 50%;
  background: currentColor;
  box-shadow: 0 0 8px currentColor;
}

.crosshair--halo {
  --ch-gap-start: 26%;
  --ch-gap-end: 74%;
}

.crosshair--halo .crosshair__center {
  width: 24px;
  height: 24px;
  border: 2px solid currentColor;
  border-radius: 50%;
  box-shadow: inset 0 0 7px color-mix(in srgb, currentColor 35%, transparent);
}

.crosshair--heart {
  --ch-gap-start: 34%;
  --ch-gap-end: 66%;
}

.crosshair--heart .crosshair__center {
  width: 10px;
  height: 10px;
  background: currentColor;
  transform: translate(-50%, -35%) rotate(45deg);
}

.crosshair--heart .crosshair__center::before,
.crosshair--heart .crosshair__center::after {
  position: absolute;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  content: "";
  background: currentColor;
}

.crosshair--heart .crosshair__center::before {
  left: -5px;
}

.crosshair--heart .crosshair__center::after {
  top: -5px;
}

.crosshair--x::before,
.crosshair--x::after {
  top: calc(50% - var(--ch-line) / 2);
  left: 0;
  width: 100%;
  height: var(--ch-line);
  background: linear-gradient(90deg, currentColor 0 38%, transparent 38% 62%, currentColor 62%);
  transform-origin: center;
}

.crosshair--x::before {
  transform: rotate(45deg);
}

.crosshair--x::after {
  transform: rotate(-45deg);
}

.crosshair--x .crosshair__center {
  width: 6px;
  height: 6px;
  border: 1px solid currentColor;
  transform: translate(-50%, -50%) rotate(45deg);
}

.crosshair--diamond {
  --ch-gap-start: 30%;
  --ch-gap-end: 70%;
}

.crosshair--diamond .crosshair__center {
  width: 15px;
  height: 15px;
  border: 2px solid currentColor;
  transform: translate(-50%, -50%) rotate(45deg);
}

.crosshair--diamond .crosshair__center::after {
  position: absolute;
  top: 4px;
  left: 4px;
  width: 3px;
  height: 3px;
  content: "";
  background: currentColor;
}

.crosshair--star {
  --ch-gap-start: 42%;
  --ch-gap-end: 58%;
}

.crosshair--star .crosshair__center {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 0 7px #fff, 0 0 15px currentColor;
}

.crosshair--star .crosshair__accent {
  z-index: 2;
  width: 68%;
  height: 68%;
}

.crosshair--star .crosshair__accent::before,
.crosshair--star .crosshair__accent::after {
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  height: 1px;
  content: "";
  background: linear-gradient(90deg, currentColor 0 38%, transparent 38% 62%, currentColor 62%);
}

.crosshair--star .crosshair__accent::before {
  transform: rotate(45deg);
}

.crosshair--star .crosshair__accent::after {
  transform: rotate(-45deg);
}

/* Roblox / MM2 presets: compact glowing symbols without FPS-style long arms */
:is(
  .crosshair--cherry,
  .crosshair--kitty,
  .crosshair--bunny,
  .crosshair--flower,
  .crosshair--heart,
  .crosshair--star,
  .crosshair--ring-pink,
  .crosshair--ring-red,
  .crosshair--ring-lime,
  .crosshair--ring-cyan,
  .crosshair--orbit-blue,
  .crosshair--moon
)::before,
:is(
  .crosshair--cherry,
  .crosshair--kitty,
  .crosshair--bunny,
  .crosshair--flower,
  .crosshair--heart,
  .crosshair--star,
  .crosshair--ring-pink,
  .crosshair--ring-red,
  .crosshair--ring-lime,
  .crosshair--ring-cyan,
  .crosshair--orbit-blue,
  .crosshair--moon
)::after {
  top: 50%;
  left: 50%;
  width: auto;
  height: auto;
  background: none;
  transform: translate(-50%, -50%);
}

:is(
  .crosshair--cherry,
  .crosshair--kitty,
  .crosshair--bunny,
  .crosshair--flower,
  .crosshair--heart,
  .crosshair--star,
  .crosshair--ring-pink,
  .crosshair--ring-red,
  .crosshair--ring-lime,
  .crosshair--ring-cyan,
  .crosshair--orbit-blue,
  .crosshair--moon
)::after {
  display: none;
}

:is(
  .crosshair--cherry,
  .crosshair--kitty,
  .crosshair--bunny,
  .crosshair--flower,
  .crosshair--heart,
  .crosshair--star,
  .crosshair--ring-pink,
  .crosshair--ring-red,
  .crosshair--ring-lime,
  .crosshair--ring-cyan,
  .crosshair--orbit-blue,
  .crosshair--moon
) .crosshair__center {
  z-index: 7;
  width: clamp(3px, calc(var(--ch-size) * .06), 5px);
  height: clamp(3px, calc(var(--ch-size) * .06), 5px);
  border: 1px solid rgba(255, 255, 255, .8);
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 0 5px #fff, 0 0 10px currentColor;
  transform: translate(-50%, -50%);
}

:is(
  .crosshair--cherry,
  .crosshair--kitty,
  .crosshair--bunny,
  .crosshair--flower,
  .crosshair--heart,
  .crosshair--star,
  .crosshair--ring-pink,
  .crosshair--ring-red,
  .crosshair--ring-lime,
  .crosshair--ring-cyan,
  .crosshair--orbit-blue,
  .crosshair--moon
) .crosshair__center::before,
:is(
  .crosshair--cherry,
  .crosshair--kitty,
  .crosshair--bunny,
  .crosshair--flower,
  .crosshair--heart,
  .crosshair--star,
  .crosshair--ring-pink,
  .crosshair--ring-red,
  .crosshair--ring-lime,
  .crosshair--ring-cyan,
  .crosshair--orbit-blue,
  .crosshair--moon
) .crosshair__center::after {
  display: none;
}

.crosshair--cherry { --ch-color: #ff4f71; }
.crosshair--cherry::before {
  content: "🍒";
  font-family: "Segoe UI Emoji", sans-serif;
  font-size: clamp(21px, calc(var(--ch-size) * .43), 39px);
  line-height: 1;
  filter: drop-shadow(0 0 6px rgba(255, 79, 113, .95));
}

.crosshair--kitty { --ch-color: #ffd65c; }
.crosshair--kitty::before {
  content: "🐱";
  font-family: "Segoe UI Emoji", sans-serif;
  font-size: clamp(21px, calc(var(--ch-size) * .43), 39px);
  line-height: 1;
  filter: drop-shadow(0 0 7px rgba(255, 214, 92, .9));
}

/* Original cute cat-with-bow preset; no branded character asset */
.crosshair--bow-kitty {
  --ch-color: #9D4EDD;
  --kitty-ink: #33262e;
}

.crosshair--bow-kitty::before {
  position: absolute;
  z-index: 2;
  top: 50%;
  left: 50%;
  display: block;
  width: calc(var(--ch-size) * .64);
  height: calc(var(--ch-size) * .56);
  content: "";
  background:
    radial-gradient(ellipse at 34% 57%, var(--kitty-ink) 0 4.2%, transparent 5.2%),
    radial-gradient(ellipse at 66% 57%, var(--kitty-ink) 0 4.2%, transparent 5.2%),
    radial-gradient(ellipse at 19% 68%, color-mix(in srgb, currentColor 28%, #fff) 0 7%, transparent 8%),
    radial-gradient(ellipse at 81% 68%, color-mix(in srgb, currentColor 28%, #fff) 0 7%, transparent 8%),
    radial-gradient(ellipse at 15% 20%, color-mix(in srgb, currentColor 24%, #fff) 0 8%, transparent 9%),
    radial-gradient(ellipse at 85% 20%, color-mix(in srgb, currentColor 24%, #fff) 0 8%, transparent 9%),
    linear-gradient(180deg, #fff 0%, #fffafd 70%, #f7eaf0 100%);
  clip-path: polygon(2% 39%, 7% 3%, 30% 20%, 50% 15%, 70% 20%, 93% 3%, 98% 39%, 100% 55%, 92% 79%, 72% 95%, 50% 100%, 28% 95%, 8% 79%, 0 55%);
  filter: drop-shadow(0 0 1px rgba(35, 25, 31, .9)) drop-shadow(0 0 calc(var(--ch-size) * .09) color-mix(in srgb, currentColor 58%, transparent));
  transform: translate(-50%, -50%);
}

.crosshair--bow-kitty::after {
  position: absolute;
  z-index: 4;
  top: 29%;
  left: 70%;
  display: block;
  width: calc(var(--ch-size) * .29);
  height: calc(var(--ch-size) * .20);
  content: "";
  background: linear-gradient(90deg, currentColor 0 40%, color-mix(in srgb, currentColor 62%, #fff) 41% 59%, currentColor 60% 100%);
  clip-path: polygon(0 8%, 42% 33%, 50% 22%, 58% 33%, 100% 8%, 82% 50%, 100% 92%, 58% 67%, 50% 78%, 42% 67%, 0 92%, 18% 50%);
  filter: drop-shadow(0 0 1px rgba(85, 15, 48, .75)) drop-shadow(0 0 calc(var(--ch-size) * .07) currentColor);
  transform: translate(-50%, -50%) rotate(9deg);
}

.crosshair--bow-kitty .crosshair__center {
  z-index: 5;
  width: max(3px, calc(var(--ch-size) * .065));
  height: max(3px, calc(var(--ch-size) * .065));
  border: 1px solid rgba(255, 255, 255, .95);
  border-radius: 50%;
  background: currentColor;
  box-shadow: 0 0 4px #fff, 0 0 9px currentColor;
  transform: translate(-50%, -50%);
}

.crosshair--bow-kitty .crosshair__center::before,
.crosshair--bow-kitty .crosshair__center::after {
  display: none;
}

.crosshair--bunny { --ch-color: #fff0b4; }
.crosshair--bunny::before {
  content: "🐰";
  font-family: "Segoe UI Emoji", sans-serif;
  font-size: clamp(21px, calc(var(--ch-size) * .43), 39px);
  line-height: 1;
  filter: drop-shadow(0 0 7px rgba(255, 240, 180, .9));
}

.crosshair--flower { --ch-color: #ff66b7; }
.crosshair--flower::before,
.crosshair--heart::before,
.crosshair--star::before,
.crosshair--moon::before {
  color: currentColor;
  font-family: Arial, sans-serif;
  font-size: clamp(24px, calc(var(--ch-size) * .49), 44px);
  font-weight: 700;
  line-height: 1;
  text-shadow: 0 0 7px currentColor, 0 0 15px currentColor;
}
.crosshair--flower::before { content: "✿"; }

.crosshair--heart { --ch-color: #ff4fa3; }
.crosshair--heart::before { content: "♡"; }

.crosshair--star { --ch-color: #ffd84a; }
.crosshair--star::before { content: "☆"; }
.crosshair--star .crosshair__accent { display: none; }

.crosshair--moon { --ch-color: #c7b5ff; }
.crosshair--moon::before {
  content: "☾";
  font-family: Georgia, serif;
  transform: translate(-50%, -54%) rotate(-12deg);
}

.crosshair--ring-pink { --ch-color: #ff2fb3; }
.crosshair--ring-red { --ch-color: #ff232f; }
.crosshair--ring-lime { --ch-color: #24f05a; }
.crosshair--ring-cyan { --ch-color: #26e7d0; }

:is(.crosshair--ring-pink, .crosshair--ring-red, .crosshair--ring-lime, .crosshair--ring-cyan)::before,
.crosshair--orbit-blue::before {
  width: 34%;
  height: 34%;
  border: 2px solid currentColor;
  border-radius: 50%;
  content: "";
  box-shadow: inset 0 0 7px color-mix(in srgb, currentColor 32%, transparent), 0 0 9px currentColor;
}

.crosshair--orbit-blue { --ch-color: #3286ff; }
.crosshair--orbit-blue::before {
  width: 35%;
  height: 35%;
}
.crosshair--orbit-blue::after {
  display: block;
  width: 58%;
  height: 58%;
  content: "";
  background: conic-gradient(from -4deg, currentColor 0 8deg, transparent 8deg 82deg, currentColor 82deg 98deg, transparent 98deg 172deg, currentColor 172deg 188deg, transparent 188deg 262deg, currentColor 262deg 278deg, transparent 278deg 352deg, currentColor 352deg 360deg);
  mask: radial-gradient(circle, transparent 0 62%, #000 64% 74%, transparent 76%);
  transform: translate(-50%, -50%);
}

.crosshair.no-glow,
.no-glow .crosshair {
  filter: none;
}

.crosshair.no-glow::before,
.crosshair.no-glow::after,
.crosshair.no-glow .crosshair__center {
  box-shadow: none;
  filter: none;
  text-shadow: none;
}

.crosshair.hide-center .crosshair__center,
.hide-center .crosshair__center {
  opacity: 0;
}

.crosshair-pop {
  animation: crosshair-pop 320ms cubic-bezier(0.2, 0.85, 0.25, 1);
}

@keyframes crosshair-pop {
  0% { transform: scale(0.72); opacity: 0.25; }
  65% { transform: scale(1.12); }
  100% { transform: scale(1); opacity: 1; }
}

/* Landing hero */
.hero {
  min-height: 815px;
  padding: calc(var(--header-height) + 86px) 0 92px;
  border-bottom: 1px solid var(--line);
  background:
    radial-gradient(circle at 70% 44%, rgba(157, 78, 221, 0.18), transparent 31%),
    radial-gradient(circle at 16% 8%, rgba(123, 44, 191, 0.09), transparent 24%),
    linear-gradient(145deg, #100F12 0%, #100F12 57%, #1C1A22 130%);
  overflow: hidden;
}

.hero::after {
  position: absolute;
  z-index: -1;
  right: -10%;
  bottom: -32%;
  width: 56%;
  height: 65%;
  content: "";
  border-radius: 50%;
  background: rgba(123, 44, 191, 0.11);
  filter: blur(120px);
}

.hero-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(470px, 0.98fr);
  align-items: center;
  gap: 66px;
}

.hero-copy {
  position: relative;
  z-index: 2;
}

.hero-copy h1 {
  max-width: 720px;
  margin-bottom: 25px;
  color: #f4f1f1;
  font-size: clamp(4rem, 6vw, 6.35rem);
  font-weight: 800;
  letter-spacing: -0.065em;
  line-height: 0.93;
}

.hero-copy h1 span,
.features h2 span,
.centered-heading h2 span,
.showcase-heading h2 span,
.cta-panel h2 span,
.dashboard-topbar h1 span {
  color: var(--red-bright);
  text-shadow: 0 0 34px rgba(123, 44, 191, 0.2);
}

.hero-subtitle {
  max-width: 620px;
  margin-bottom: 32px;
  color: #8A8A93;
  font-size: 1.07rem;
  line-height: 1.78;
}

.hero-actions {
  display: flex;
  align-items: stretch;
  gap: 12px;
  margin-bottom: 27px;
}

.button--hero {
  min-height: 66px;
  padding: 0 24px;
  min-width: 260px;
}

.button--hero > span:nth-child(2) {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 5px;
  font-size: 1rem;
}

.button--hero small {
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.13em;
  opacity: 0.72;
  text-transform: uppercase;
}

.chrome-mark {
  position: relative;
  display: block;
  width: 25px;
  height: 25px;
  border: 2px solid rgba(255, 255, 255, 0.92);
  border-radius: 50%;
}

.chrome-mark::before,
.chrome-mark::after,
.chrome-mark i {
  position: absolute;
  content: "";
}

.chrome-mark i {
  top: 50%;
  left: 50%;
  width: 7px;
  height: 7px;
  border: 1px solid #fff;
  border-radius: 50%;
  transform: translate(-50%, -50%);
}

.chrome-mark::before {
  top: -1px;
  left: 10px;
  width: 2px;
  height: 9px;
  background: #fff;
  transform: rotate(-32deg);
  transform-origin: bottom;
}

.chrome-mark::after {
  right: 1px;
  bottom: 2px;
  width: 9px;
  height: 2px;
  background: #fff;
  transform: rotate(2deg);
}

.hero-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin: 0;
  padding: 0;
  color: #8A8A93;
  font-size: 0.76rem;
  list-style: none;
}

.hero-proof li {
  display: flex;
  align-items: center;
  gap: 7px;
}

.hero-proof span {
  color: var(--red-bright);
  font-weight: 800;
}

.hero-visual {
  position: relative;
  display: grid;
  min-height: 530px;
  place-items: center;
}

.hero-glow {
  position: absolute;
  z-index: -1;
  top: 42%;
  right: 9%;
  width: 470px;
  height: 470px;
  border-radius: 50%;
  background: rgba(123, 44, 191, 0.14);
  filter: blur(90px);
  transform: translateY(-50%);
}

.hero-slash {
  position: absolute;
  z-index: -1;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(157, 78, 221, 0.32), transparent);
  transform: rotate(-55deg);
}

.hero-slash--one {
  top: 38%;
  right: 2%;
  width: 50%;
}

.hero-slash--two {
  right: 13%;
  bottom: 14%;
  width: 34%;
}

.visual-orbit {
  position: absolute;
  border: 1px solid rgba(157, 78, 221, 0.1);
  border-radius: 50%;
  pointer-events: none;
}

.visual-orbit::before,
.visual-orbit::after {
  position: absolute;
  width: 6px;
  height: 6px;
  content: "";
  border-radius: 50%;
  background: var(--red-bright);
  box-shadow: 0 0 12px var(--red-bright);
}

.visual-orbit--outer {
  width: 530px;
  height: 530px;
  animation: slow-spin 28s linear infinite;
}

.visual-orbit--outer::before { top: 12%; left: 18%; }
.visual-orbit--outer::after { right: 8%; bottom: 26%; }

.visual-orbit--inner {
  width: 440px;
  height: 440px;
  border-style: dashed;
  animation: slow-spin-reverse 24s linear infinite;
}

.visual-orbit--inner::before { top: 50%; left: -3px; }
.visual-orbit--inner::after { top: 7%; right: 20%; }

@keyframes slow-spin { to { transform: rotate(360deg); } }
@keyframes slow-spin-reverse { to { transform: rotate(-360deg); } }

.extension-window {
  position: relative;
  z-index: 2;
  width: min(100%, 476px);
  border: 1px solid rgba(255, 255, 255, 0.13);
  background: rgba(28, 26, 34, 0.88);
  box-shadow: 0 32px 100px rgba(0, 0, 0, 0.58), 0 0 90px rgba(157, 78, 221, 0.14), inset 0 1px rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(18px);
  clip-path: polygon(0 0, calc(100% - 16px) 0, 100% 16px, 100% 100%, 16px 100%, 0 calc(100% - 16px));
}

.window-bar,
.window-controls {
  display: flex;
  min-height: 62px;
  align-items: center;
  justify-content: space-between;
  padding: 0 20px;
  border-bottom: 1px solid var(--line);
}

.window-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.81rem;
  font-weight: 600;
}

.window-brand strong {
  margin-left: 5px;
  padding: 2px 5px;
  color: #C77DFF;
  border: 1px solid rgba(157, 78, 221, 0.32);
  font-size: 0.55rem;
  letter-spacing: 0.12em;
}

.mini-brand-mark {
  width: 17px;
  height: 17px;
  border: 1px solid var(--red-bright);
  background: var(--red-soft);
  transform: rotate(45deg);
}

.window-status,
.ready-badge,
.sync-status {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: #bcb9ba;
  font-size: 0.66rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.window-status i,
.ready-badge i,
.sync-status i {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 9px rgba(62, 229, 139, 0.8);
}

.mock-game-screen {
  position: relative;
  height: 350px;
  background:
    linear-gradient(to bottom, rgba(16, 15, 18, 0.35), rgba(16, 15, 18, 0.8)),
    radial-gradient(circle at 50% 55%, rgba(123, 44, 191, 0.11), transparent 30%),
    linear-gradient(145deg, #282431 0 35%, #1C1A22 35% 68%, #211F28 68%);
  overflow: hidden;
}

.mock-game-screen::before,
.mock-game-screen::after {
  position: absolute;
  content: "";
  opacity: 0.18;
}

.mock-game-screen::before {
  inset: 0;
  background-image: linear-gradient(rgba(255,255,255,.08) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.08) 1px, transparent 1px);
  background-size: 36px 36px;
  transform: perspective(400px) rotateX(58deg) scale(1.5) translateY(44%);
}

.mock-game-screen::after {
  right: -20%;
  bottom: -48%;
  width: 140%;
  height: 70%;
  background: linear-gradient(90deg, #1C1A22, #282431, #100F12);
  transform: perspective(300px) rotateX(60deg);
}

.scene-horizon {
  position: absolute;
  z-index: 1;
  top: 55%;
  right: 0;
  left: 0;
  height: 1px;
  background: rgba(255, 255, 255, 0.1);
}

.scene-block {
  position: absolute;
  z-index: 1;
  bottom: 38%;
  background: linear-gradient(140deg, #211F28, #211F28);
  border: 1px solid rgba(255,255,255,.04);
}

.scene-block--one { left: -4%; width: 27%; height: 42%; }
.scene-block--two { right: 7%; width: 25%; height: 52%; }
.scene-block--three { right: 31%; width: 14%; height: 28%; }

.screen-tag {
  position: absolute;
  z-index: 3;
  top: 18px;
  left: 18px;
  padding: 5px 8px;
  color: #8A8A93;
  border: 1px solid var(--line);
  background: rgba(0,0,0,.28);
  font-size: .55rem;
  font-weight: 700;
  letter-spacing: .16em;
}

.focus-ring {
  position: absolute;
  z-index: 2;
  top: 50%;
  left: 50%;
  width: 190px;
  height: 190px;
  border: 1px solid rgba(157, 78, 221, 0.09);
  border-radius: 50%;
  transform: translate(-50%, -50%);
}

.focus-ring::before,
.focus-ring::after {
  position: absolute;
  content: "";
  background: rgba(157, 78, 221, 0.18);
}

.focus-ring::before { top: 50%; left: -28px; width: calc(100% + 56px); height: 1px; }
.focus-ring::after { top: -28px; left: 50%; width: 1px; height: calc(100% + 56px); }

.hero-crosshair {
  --ch-size: 80px;
  --ch-line: 2px;
  position: absolute;
  z-index: 4;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  animation: crosshair-breathe 3.4s ease-in-out infinite;
}

@keyframes crosshair-breathe {
  0%, 100% { filter: drop-shadow(0 0 5px rgba(157, 78, 221,.75)); }
  50% { filter: drop-shadow(0 0 13px rgba(157, 78, 221,.95)); }
}

.target-ping {
  position: absolute;
  z-index: 4;
  top: 40%;
  right: 27%;
  width: 7px;
  height: 7px;
  border: 1px solid rgba(157, 78, 221,.8);
  border-radius: 50%;
}

.screen-readout {
  position: absolute;
  z-index: 4;
  right: 18px;
  bottom: 18px;
  display: flex;
  align-items: center;
  gap: 10px;
  color: #8A8A93;
  font-size: .55rem;
  letter-spacing: .12em;
}

.screen-readout strong { color: #e1dddd; font-size: .7rem; }

.window-controls {
  min-height: 76px;
  border-top: 1px solid var(--line);
  border-bottom: 0;
}

.window-controls > div:first-child {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.control-label {
  color: #8A8A93;
  font-size: .58rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.window-controls strong { font-size: .84rem; }

.mini-presets {
  display: flex;
  gap: 7px;
}

.mini-preset {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border: 1px solid var(--line);
  background: #100F12;
}

.mini-preset.is-active { border-color: rgba(157, 78, 221,.65); background: rgba(123, 44, 191,.1); }
.mini-preset i { width: 8px; height: 8px; border: 1px solid var(--red-bright); border-radius: 50%; }
.mini-preset:nth-child(2) i { border-radius: 0; transform: rotate(45deg); }
.mini-preset:nth-child(3) i { width: 12px; height: 1px; background: var(--red-bright); border: 0; }
.mini-preset:nth-child(4) i { width: 5px; height: 5px; background: var(--red-bright); border: 0; border-radius: 50%; }

.floating-chip {
  position: absolute;
  z-index: 5;
  display: flex;
  min-height: 42px;
  align-items: center;
  gap: 8px;
  border: 1px solid rgba(255,255,255,.1);
  padding: 0 13px;
  color: #c5c1c2;
  background: rgba(16, 15, 18,.86);
  box-shadow: 0 16px 40px rgba(0,0,0,.45);
  backdrop-filter: blur(14px);
  font-size: .68rem;
  font-weight: 600;
  letter-spacing: .02em;
}

.floating-chip--top { top: 55px; right: -12px; }
.floating-chip--bottom { bottom: 47px; left: -15px; }
.floating-chip i { width: 6px; height: 6px; border-radius: 50%; background: var(--green); box-shadow: 0 0 8px var(--green); }
.floating-chip span { color: var(--red-bright); font-size: .96rem; font-weight: 800; }

/* Trust and features */
.trust-strip {
  border-bottom: 1px solid var(--line);
  background: linear-gradient(90deg, #100F12, rgba(28, 26, 34, .86), #100F12);
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.trust-item {
  display: flex;
  min-height: 112px;
  align-items: center;
  gap: 18px;
  padding: 0 34px;
  border-right: 1px solid var(--line);
}

.trust-item:first-child { border-left: 1px solid var(--line); }
.trust-number { color: #C77DFF; font-size: .64rem; font-weight: 700; letter-spacing: .12em; }
.trust-item div { display: flex; flex-direction: column; gap: 4px; }
.trust-item strong { font-size: .9rem; font-weight: 600; }
.trust-item small { color: #8A8A93; font-size: .7rem; }

.features {
  background:
    radial-gradient(circle at 92% 18%, rgba(157, 78, 221, .07), transparent 28%),
    linear-gradient(180deg, #100F12, #1C1A22 145%);
}

.section-intro {
  display: grid;
  grid-template-columns: 1.1fr .65fr;
  align-items: end;
  gap: 80px;
  margin-bottom: 56px;
}

.section-intro h2,
.centered-heading h2,
.showcase-heading h2,
.cta-panel h2 {
  margin: 0;
  font-size: clamp(2.55rem, 4.4vw, 4.55rem);
  font-weight: 800;
  letter-spacing: -.055em;
  line-height: 1.02;
}

.section-intro > p {
  margin: 0 0 8px;
  color: var(--muted);
  line-height: 1.8;
}

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

.feature-card {
  position: relative;
  min-height: 294px;
  border: 1px solid var(--line);
  padding: 27px;
  background: linear-gradient(145deg, rgba(28, 26, 34,.92), rgba(16, 15, 18,.88));
  box-shadow: inset 0 1px rgba(255, 255, 255, .025);
  overflow: hidden;
  transition: border-color 260ms ease, transform 260ms ease, box-shadow 260ms ease;
  clip-path: polygon(0 0, calc(100% - 12px) 0, 100% 12px, 100% 100%, 0 100%);
}

.feature-card::before {
  position: absolute;
  top: 0;
  left: 0;
  width: 1px;
  height: 0;
  content: "";
  background: var(--red-bright);
  box-shadow: 0 0 12px var(--red-bright);
  transition: height 260ms ease;
}

.feature-card::after {
  position: absolute;
  right: -80px;
  bottom: -90px;
  width: 170px;
  height: 170px;
  content: "";
  border-radius: 50%;
  background: rgba(123, 44, 191,.08);
  filter: blur(45px);
  opacity: 0;
  transition: opacity 260ms ease;
}

.feature-card:hover,
.feature-card:focus-within {
  border-color: rgba(157, 78, 221,.32);
  box-shadow: 0 20px 52px rgba(0,0,0,.3), inset 0 0 35px rgba(123, 44, 191,.035);
  transform: translateY(-5px);
}

.feature-card:hover::before { height: 100%; }
.feature-card:hover::after { opacity: 1; }
.feature-card--wide { grid-column: span 2; }

.feature-topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 58px;
}

.feature-index {
  color: #8A8A93;
  font-size: .61rem;
  font-weight: 700;
  letter-spacing: .15em;
}

.feature-tag,
.feature-badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  border: 1px solid rgba(157, 78, 221,.22);
  padding: 4px 7px;
  color: #C77DFF;
  background: rgba(123, 44, 191,.055);
  font-size: .52rem;
  font-weight: 700;
  letter-spacing: .12em;
}

.feature-card h3 {
  margin-bottom: 11px;
  font-size: 1.34rem;
  letter-spacing: -.02em;
}

.feature-card p {
  max-width: 440px;
  margin-bottom: 0;
  color: #8A8A93;
  font-size: .88rem;
  line-height: 1.72;
}

.feature-icon-text {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border: 1px solid rgba(157, 78, 221,.25);
  color: var(--red-bright);
  background: rgba(123, 44, 191,.07);
  font-size: .75rem;
  font-weight: 700;
}

.feature-icon-text--shield {
  clip-path: polygon(50% 0, 92% 15%, 86% 70%, 50% 100%, 14% 70%, 8% 15%);
}

.feature-visual {
  position: absolute;
  top: 73px;
  right: 24px;
  display: flex;
  align-items: center;
  gap: 18px;
}

.feature-visual .crosshair { --ch-size: 62px; opacity: .55; }
.feature-visual .crosshair:nth-child(2) { opacity: 1; transform: scale(1.14); }

.performance-line {
  position: absolute;
  right: 26px;
  bottom: 34px;
  display: flex;
  align-items: end;
  gap: 4px;
  height: 34px;
  opacity: .52;
}

.performance-line i { width: 3px; background: var(--red-bright); box-shadow: 0 0 5px rgba(157, 78, 221,.6); }
.performance-line i:nth-child(1), .performance-line i:nth-child(8) { height: 7px; }
.performance-line i:nth-child(2), .performance-line i:nth-child(7) { height: 14px; }
.performance-line i:nth-child(3), .performance-line i:nth-child(6) { height: 23px; }
.performance-line i:nth-child(4), .performance-line i:nth-child(5) { height: 32px; }

.feature-badge {
  position: absolute;
  right: 24px;
  bottom: 28px;
  color: #74d99f;
  border-color: rgba(62,229,139,.16);
  background: rgba(62,229,139,.04);
}

.feature-badge i { width: 5px; height: 5px; border-radius: 50%; background: var(--green); box-shadow: 0 0 7px var(--green); }

/* How it works */
.how {
  position: relative;
  background: #100F12;
  border-block: 1px solid var(--line);
}

.centered-heading {
  max-width: 760px;
  margin: 0 auto 64px;
  text-align: center;
}

.centered-heading .eyebrow { justify-content: center; }

.steps-list {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.steps-list::before {
  position: absolute;
  top: 80px;
  right: 16%;
  left: 16%;
  height: 1px;
  content: "";
  background: linear-gradient(90deg, transparent, rgba(157, 78, 221,.35), transparent);
}

.step-card {
  position: relative;
  z-index: 1;
  min-height: 300px;
  border: 1px solid var(--line);
  padding: 25px;
  background: linear-gradient(180deg, rgba(28, 26, 34,.85), rgba(16, 15, 18,.88));
  text-align: center;
  transition: border-color 220ms ease, transform 220ms ease;
}

.step-card:hover { border-color: rgba(157, 78, 221,.28); transform: translateY(-4px); }
.step-number { position: absolute; top: 17px; left: 18px; color: #8A8A93; font-size: .58rem; font-weight: 700; letter-spacing: .14em; }

.step-glyph {
  display: grid;
  width: 72px;
  height: 72px;
  margin: 20px auto 28px;
  place-items: center;
  border: 1px solid rgba(157, 78, 221,.35);
  color: var(--red-bright);
  background: rgba(123, 44, 191,.07);
  box-shadow: 0 0 25px rgba(123, 44, 191,.08);
  font-size: 1.6rem;
  transform: rotate(45deg);
}

.step-glyph::first-line { transform: rotate(-45deg); }
.step-card h3 { margin-bottom: 10px; font-size: 1.2rem; }
.step-card p { max-width: 260px; margin: 0 auto; color: #8A8A93; font-size: .84rem; line-height: 1.65; }

/* Developer mode install guide */
.install-guide {
  position: relative;
  border-bottom: 1px solid var(--line);
  background:
    radial-gradient(circle at 82% 12%, rgba(157, 78, 221, .12), transparent 28%),
    linear-gradient(180deg, #1C1A22, #100F12 88%);
}

.install-intro { margin-bottom: 46px; }

.install-steps {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 12px;
  margin: 0;
  padding: 0;
  counter-reset: install-step;
  list-style: none;
}

.install-step {
  position: relative;
  min-height: 270px;
  border: 1px solid var(--line);
  padding: 22px;
  background:
    linear-gradient(rgba(255,255,255,.018) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.018) 1px, transparent 1px),
    linear-gradient(145deg, rgba(28, 26, 34, .96), rgba(16, 15, 18, .94));
  background-size: 30px 30px, 30px 30px, auto;
  overflow: hidden;
  clip-path: polygon(0 0, calc(100% - 11px) 0, 100% 11px, 100% 100%, 0 100%);
  transition: border-color 220ms ease, box-shadow 220ms ease, transform 220ms ease;
}

.install-step::after {
  position: absolute;
  right: -24px;
  bottom: -24px;
  width: 72px;
  height: 72px;
  border: 1px solid rgba(157, 78, 221, .14);
  content: "";
  transform: rotate(45deg);
}

.install-step:hover {
  border-color: rgba(157, 78, 221, .42);
  box-shadow: 0 18px 45px rgba(0, 0, 0, .22), inset 0 0 28px rgba(157, 78, 221, .035);
  transform: translateY(-4px);
}

.install-step__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 56px;
}

.install-step__top > span {
  color: #8A8A93;
  font-size: .56rem;
  font-weight: 700;
  letter-spacing: .16em;
}

.install-step__top i {
  display: grid;
  width: 39px;
  height: 39px;
  place-items: center;
  border: 1px solid rgba(157, 78, 221, .32);
  color: #fff;
  background: linear-gradient(145deg, rgba(157, 78, 221, .24), rgba(123, 44, 191, .08));
  box-shadow: 0 0 24px rgba(157, 78, 221, .12);
  font-size: .55rem;
  font-style: normal;
  font-weight: 700;
  letter-spacing: .08em;
}

.install-step h3 { margin-bottom: 11px; font-size: 1rem; line-height: 1.2; }
.install-step p { margin: 0; color: #8A8A93; font-size: .75rem; line-height: 1.65; }
.install-step code { color: #fff; font: 600 .7rem/1.5 "Outfit", sans-serif; overflow-wrap: anywhere; }

.install-note {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 15px;
  margin-top: 14px;
  border: 1px solid rgba(157, 78, 221, .22);
  padding: 17px 18px;
  background: rgba(157, 78, 221, .055);
}

.install-note > span {
  display: grid;
  width: 30px;
  height: 30px;
  place-items: center;
  color: #fff;
  background: #7B2CBF;
  font-size: .7rem;
  font-weight: 800;
}

.install-note p { margin: 0; color: #8A8A93; font-size: .76rem; }
.install-note strong { color: #fff; }
.install-note a { display: inline-flex; min-height: 44px; align-items: center; gap: 8px; color: #fff; font-size: .72rem; font-weight: 600; }
.install-note a span { color: #C77DFF; transition: transform 180ms ease; }
.install-note a:hover span { transform: translate(2px, -2px); }

/* Showcase and carousel */
.showcase {
  background: radial-gradient(circle at 50% 42%, rgba(123, 44, 191,.09), transparent 34%), #100F12;
}

.showcase-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 30px;
  margin-bottom: 42px;
}

.carousel-actions {
  display: flex;
  gap: 8px;
}

.carousel-actions button {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  border: 1px solid var(--line-strong);
  color: #b6b2b3;
  background: rgba(255,255,255,.035);
  cursor: pointer;
  transition: color 180ms ease, border-color 180ms ease, background 180ms ease, transform 180ms ease;
}

.carousel-actions button:hover,
.carousel-actions button:focus-visible {
  color: #fff;
  border-color: rgba(157, 78, 221,.5);
  background: rgba(123, 44, 191,.1);
  transform: translateY(-2px);
}

.carousel-actions button:disabled,
.carousel-actions button:disabled:hover {
  color: #8A8A93;
  border-color: var(--line);
  background: rgba(255, 255, 255, .018);
  box-shadow: none;
  cursor: not-allowed;
  opacity: .42;
  transform: none;
}

.showcase-stage {
  position: relative;
  display: grid;
  height: 390px;
  margin-bottom: 20px;
  place-items: center;
  border: 1px solid var(--line);
  background:
    radial-gradient(circle at center, rgba(123, 44, 191,.11), transparent 25%),
    linear-gradient(rgba(255,255,255,.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.025) 1px, transparent 1px),
    #1C1A22;
  background-size: auto, 40px 40px, 40px 40px, auto;
  overflow: hidden;
  touch-action: pan-y;
}

.showcase-stage::before,
.showcase-stage::after {
  position: absolute;
  content: "";
  background: linear-gradient(90deg, transparent, rgba(157, 78, 221,.17), transparent);
}

.showcase-stage::before { top: 50%; left: 8%; width: 84%; height: 1px; }
.showcase-stage::after { top: 8%; left: 50%; width: 1px; height: 84%; background: linear-gradient(0deg, transparent, rgba(157, 78, 221,.17), transparent); }

.stage-preset-carousel {
  position: absolute;
  z-index: 3;
  inset: 48px 36px 44px;
  overflow: hidden;
}

.stage-preset-slot {
  position: absolute;
  top: 50%;
  left: 50%;
  display: flex;
  width: clamp(130px, 18vw, 220px);
  flex-direction: column;
  align-items: center;
  gap: 16px;
  opacity: 1;
  pointer-events: none;
  transform: translate(-50%, -50%) scale(1);
  transform-origin: center;
  transition:
    left 560ms cubic-bezier(.2,.78,.22,1),
    opacity 420ms ease,
    transform 560ms cubic-bezier(.2,.78,.22,1),
    filter 420ms ease;
  will-change: left, opacity, transform;
}

.stage-preset-slot .crosshair {
  --ch-size: 102px;
  --ch-line: 2px;
}

.stage-preset-slot .crosshair--asset {
  --ch-size: 158px;
}

.stage-preset-slot--previous {
  left: 20%;
  opacity: .42;
  filter: saturate(.72);
  transform: translate(-50%, -50%) scale(.58);
}

.stage-preset-slot--current {
  left: 50%;
  opacity: 1;
  filter: saturate(1.08);
  transform: translate(-50%, -50%) scale(1);
}

.stage-preset-slot--next {
  left: 80%;
  opacity: .42;
  filter: saturate(.72);
  transform: translate(-50%, -50%) scale(.58);
}

.stage-preset-slot--incoming {
  left: 106%;
  opacity: 0;
  filter: saturate(.65);
  transform: translate(-50%, -50%) scale(.48);
}

.stage-preset-name {
  max-width: 160px;
  overflow: hidden;
  color: var(--muted);
  font-size: .61rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-overflow: ellipsis;
  text-transform: uppercase;
  white-space: nowrap;
}

.stage-preset-slot--current .stage-preset-name {
  color: #fff;
  font-size: .67rem;
}

.stage-preset-carousel.is-preparing .stage-preset-slot,
.stage-preset-carousel.is-resetting .stage-preset-slot {
  transition: none;
}

.stage-preset-carousel[data-direction="previous"] .stage-preset-slot--incoming {
  left: -6%;
}

.stage-preset-carousel.is-moving[data-direction="next"] .stage-preset-slot--previous {
  left: -6%;
  opacity: 0;
  transform: translate(-50%, -50%) scale(.48);
}

.stage-preset-carousel.is-moving[data-direction="next"] .stage-preset-slot--current {
  left: 20%;
  opacity: .42;
  filter: saturate(.72);
  transform: translate(-50%, -50%) scale(.58);
}

.stage-preset-carousel.is-moving[data-direction="next"] .stage-preset-slot--next {
  left: 50%;
  opacity: 1;
  filter: saturate(1.08);
  transform: translate(-50%, -50%) scale(1);
}

.stage-preset-carousel.is-moving[data-direction="next"] .stage-preset-slot--incoming {
  left: 80%;
  opacity: .42;
  filter: saturate(.72);
  transform: translate(-50%, -50%) scale(.58);
}

.stage-preset-carousel.is-moving[data-direction="previous"] .stage-preset-slot--incoming {
  left: 20%;
  opacity: .42;
  filter: saturate(.72);
  transform: translate(-50%, -50%) scale(.58);
}

.stage-preset-carousel.is-moving[data-direction="previous"] .stage-preset-slot--previous {
  left: 50%;
  opacity: 1;
  filter: saturate(1.08);
  transform: translate(-50%, -50%) scale(1);
}

.stage-preset-carousel.is-moving[data-direction="previous"] .stage-preset-slot--current {
  left: 80%;
  opacity: .42;
  filter: saturate(.72);
  transform: translate(-50%, -50%) scale(.58);
}

.stage-preset-carousel.is-moving[data-direction="previous"] .stage-preset-slot--next {
  left: 106%;
  opacity: 0;
  transform: translate(-50%, -50%) scale(.48);
}

.stage-coordinates {
  position: absolute;
  top: 16px;
  right: 18px;
  left: 18px;
  display: flex;
  justify-content: space-between;
  color: #8A8A93;
  font-size: .55rem;
  font-weight: 600;
  letter-spacing: .16em;
}

.stage-caption {
  position: absolute;
  right: 22px;
  bottom: 20px;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 3px;
}

.stage-caption span { color: #8A8A93; font-size: .54rem; font-weight: 700; letter-spacing: .14em; }
.stage-caption strong { font-size: .84rem; }

.stage-bracket {
  position: absolute;
  width: 24px;
  height: 24px;
  border-color: rgba(157, 78, 221,.55);
}

.stage-bracket--tl { top: 17px; left: 17px; border-top: 1px solid; border-left: 1px solid; }
.stage-bracket--tr { top: 17px; right: 17px; border-top: 1px solid; border-right: 1px solid; }
.stage-bracket--bl { bottom: 17px; left: 17px; border-bottom: 1px solid; border-left: 1px solid; }
.stage-bracket--br { right: 17px; bottom: 17px; border-right: 1px solid; border-bottom: 1px solid; }

.preset-marquee {
  position: relative;
  margin-top: 0;
  overflow: hidden;
}

.preset-marquee::before,
.preset-marquee::after {
  position: absolute;
  z-index: 5;
  top: 0;
  bottom: 0;
  width: clamp(42px, 7vw, 92px);
  content: "";
  pointer-events: none;
}

.preset-marquee::before {
  left: 0;
  background: linear-gradient(90deg, #100F12, transparent);
}

.preset-marquee::after {
  right: 0;
  background: linear-gradient(90deg, transparent, #100F12);
}

.preset-marquee__viewport {
  overflow: hidden;
}

.preset-marquee__track {
  display: flex;
  width: max-content;
  will-change: transform;
}

.preset-marquee.is-ready .preset-marquee__track {
  animation: preset-marquee-scroll var(--marquee-duration, 36s) linear infinite;
}

.preset-marquee__group {
  display: flex;
  flex: 0 0 auto;
  gap: 11px;
  padding: 2px 11px 14px 0;
}

.preset-marquee__card {
  cursor: default;
  pointer-events: none;
  scroll-snap-align: none;
  user-select: none;
}

.preset-marquee__card:hover {
  border-color: var(--line);
  background: linear-gradient(145deg, rgba(28, 26, 34,.85), rgba(16, 15, 18,.9));
  box-shadow: none;
  transform: none;
}

.preset-marquee.is-ready:hover .preset-marquee__track {
  animation-play-state: paused;
}

@keyframes preset-marquee-scroll {
  to { transform: translate3d(-50%, 0, 0); }
}

.crosshair-rail-wrap { position: relative; }
.crosshair-rail-wrap::before,
.crosshair-rail-wrap::after {
  position: absolute;
  z-index: 5;
  top: 0;
  bottom: 0;
  width: 70px;
  content: "";
  pointer-events: none;
  opacity: 0;
  transition: opacity 180ms ease;
}
.crosshair-rail-wrap::before { left: 0; background: linear-gradient(90deg, #100F12, transparent); }
.crosshair-rail-wrap::after { right: 0; background: linear-gradient(90deg, transparent, #100F12); }
.crosshair-rail-wrap.can-scroll-left::before,
.crosshair-rail-wrap.can-scroll-right::after { opacity: 1; }

.crosshair-rail {
  display: flex;
  gap: 11px;
  padding: 2px 2px 14px;
  overflow-x: auto;
  overscroll-behavior-inline: contain;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  touch-action: pan-x pan-y pinch-zoom;
}

.crosshair-rail::-webkit-scrollbar { display: none; }

.crosshair-card {
  position: relative;
  display: flex;
  min-width: 175px;
  min-height: 178px;
  flex: 0 0 175px;
  flex-direction: column;
  align-items: stretch;
  border: 1px solid var(--line);
  padding: 0;
  color: var(--text);
  background: linear-gradient(145deg, rgba(28, 26, 34,.85), rgba(16, 15, 18,.9));
  cursor: pointer;
  scroll-snap-align: start;
  scroll-snap-stop: always;
  text-align: left;
  transition: border-color 220ms ease, background 220ms ease, box-shadow 220ms ease, transform 220ms ease;
}

.crosshair-card:hover,
.crosshair-card:focus-visible {
  border-color: rgba(157, 78, 221,.38);
  background: linear-gradient(145deg, rgba(28, 26, 34,.85), rgba(16, 15, 18,.95));
  transform: translateY(-3px);
}

.crosshair-card.is-active {
  border-color: rgba(157, 78, 221,.72);
  background: linear-gradient(145deg, rgba(123, 44, 191,.2), rgba(28, 26, 34,.96));
  box-shadow: 0 0 28px rgba(157, 78, 221,.17), inset 0 0 28px rgba(123, 44, 191,.08);
}

.crosshair-card__visual {
  display: grid;
  min-height: 112px;
  flex: 1;
  place-items: center;
  border-bottom: 1px solid var(--line);
  background-image: linear-gradient(rgba(255,255,255,.02) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.02) 1px, transparent 1px);
  background-size: 22px 22px;
}

.crosshair-card__visual .crosshair { --ch-size: 54px; }
.preset-marquee__card .crosshair--asset { --ch-size: 82px; }

.crosshair-card__meta {
  display: flex;
  min-height: 57px;
  flex-direction: column;
  justify-content: center;
  gap: 2px;
  padding: 8px 12px;
}

.crosshair-card__meta strong { font-size: .8rem; font-weight: 600; }
.crosshair-card__meta small { color: #8A8A93; font-size: .51rem; font-weight: 700; letter-spacing: .13em; }

.selected-check {
  position: absolute;
  top: 9px;
  right: 9px;
  display: grid;
  width: 20px;
  height: 20px;
  place-items: center;
  border: 1px solid rgba(157, 78, 221,.55);
  color: #fff;
  background: var(--red);
  box-shadow: 0 0 10px rgba(123, 44, 191,.4);
  font-size: .62rem;
  opacity: 0;
  transform: scale(.7);
  transition: opacity 180ms ease, transform 180ms ease;
}

.crosshair-card.is-active .selected-check { opacity: 1; transform: scale(1); }

/* Roblox player reviews */
.reviews {
  border-top: 1px solid var(--line);
  background:
    radial-gradient(circle at 14% 24%, rgba(123, 44, 191, .09), transparent 25%),
    linear-gradient(180deg, #100F12, #1C1A22 150%);
}

.reviews-intro { margin-bottom: 44px; }

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

.review-card {
  position: relative;
  display: flex;
  min-height: 270px;
  flex-direction: column;
  border: 1px solid var(--line);
  padding: 24px;
  background: linear-gradient(145deg, rgba(28, 26, 34, .94), rgba(16, 15, 18, .9));
  box-shadow: inset 0 1px rgba(255, 255, 255, .025);
  overflow: hidden;
  clip-path: polygon(0 0, calc(100% - 12px) 0, 100% 12px, 100% 100%, 0 100%);
  transition: border-color 220ms ease, transform 220ms ease, box-shadow 220ms ease;
}

.review-card::before {
  position: absolute;
  right: 18px;
  bottom: -28px;
  color: rgba(157, 78, 221, .07);
  content: "“";
  font-family: Georgia, serif;
  font-size: 9rem;
  line-height: 1;
}

.review-card:hover {
  border-color: rgba(157, 78, 221, .32);
  box-shadow: 0 18px 44px rgba(0, 0, 0, .24), inset 0 0 28px rgba(123, 44, 191, .035);
  transform: translateY(-4px);
}

.review-top {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 27px;
}

.review-label {
  border: 1px solid rgba(157, 78, 221, .25);
  padding: 4px 6px;
  color: #C77DFF;
  background: rgba(123, 44, 191, .06);
  font-size: .49rem;
  font-weight: 700;
  letter-spacing: .13em;
}

.review-stars {
  color: #9D4EDD;
  font-size: .68rem;
  letter-spacing: .1em;
  text-shadow: 0 0 9px rgba(157, 78, 221, .42);
}

.review-card blockquote {
  position: relative;
  z-index: 1;
  flex: 1;
  margin: 0 0 28px;
  color: #d5d1d2;
  font-size: .9rem;
  line-height: 1.75;
}

.review-author {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 11px;
  padding-top: 17px;
  border-top: 1px solid var(--line);
}

.review-avatar {
  display: block;
  width: 48px;
  height: 48px;
  flex: 0 0 48px;
  border: 1px solid rgba(157, 78, 221, .35);
  padding: 2px;
  background: linear-gradient(145deg, rgba(157, 78, 221, .25), rgba(28, 26, 34, .96));
  box-shadow: 0 0 20px rgba(157, 78, 221, .12);
  overflow: hidden;
  clip-path: polygon(0 0, calc(100% - 9px) 0, 100% 9px, 100% 100%, 0 100%);
}

.review-avatar img { width: 100%; height: 100%; object-fit: contain; object-position: center; }

.review-author > div {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.review-author strong { font-size: .72rem; }
.review-author small { color: #8A8A93; font-size: .57rem; }

/* Final CTA and footer */
.final-cta { background: #100F12; }

.cta-panel {
  position: relative;
  min-height: 480px;
  border: 1px solid rgba(157, 78, 221,.25);
  padding: 76px;
  background: radial-gradient(circle at 78% 50%, rgba(123, 44, 191,.2), transparent 26%), linear-gradient(135deg, #1C1A22, #100F12 58%, #1C1A22);
  box-shadow: 0 24px 80px rgba(0,0,0,.32), inset 0 0 80px rgba(123, 44, 191,.025);
  overflow: hidden;
  clip-path: polygon(0 0, calc(100% - 28px) 0, 100% 28px, 100% 100%, 28px 100%, 0 calc(100% - 28px));
}

.cta-panel h2 { position: relative; z-index: 2; margin-bottom: 17px; font-size: clamp(3rem, 5vw, 5rem); }
.cta-panel > p:not(.eyebrow) { position: relative; z-index: 2; margin-bottom: 29px; color: #8A8A93; }
.cta-panel .button { z-index: 2; }

.cta-grid {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(255,255,255,.022) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.022) 1px, transparent 1px);
  background-size: 46px 46px;
  mask-image: linear-gradient(90deg, transparent 30%, #000);
}

.cta-target {
  position: absolute;
  top: 50%;
  right: 13%;
  width: 260px;
  height: 260px;
  border: 1px solid rgba(157, 78, 221,.2);
  border-radius: 50%;
  transform: translateY(-50%);
}

.cta-target::before,
.cta-target::after {
  position: absolute;
  top: 50%;
  left: 50%;
  content: "";
  border: 1px solid rgba(157, 78, 221,.28);
  border-radius: 50%;
  transform: translate(-50%,-50%);
}

.cta-target::before { width: 170px; height: 170px; }
.cta-target::after { width: 72px; height: 72px; background: rgba(123, 44, 191,.07); box-shadow: 0 0 50px rgba(123, 44, 191,.15); }
.cta-target i { position: absolute; top: 50%; left: 50%; z-index: 2; display: block; background: var(--red-bright); transform: translate(-50%,-50%); box-shadow: 0 0 10px var(--red-bright); }
.cta-target i:nth-child(1) { width: 100%; height: 1px; }
.cta-target i:nth-child(2) { width: 1px; height: 100%; }
.cta-target i:nth-child(3) { width: 9px; height: 9px; border-radius: 50%; }

.site-footer { border-top: 1px solid var(--line); background: #100F12; }
.footer-main { display: grid; grid-template-columns: 1fr 1fr; gap: 70px; padding-block: 72px; }
.footer-brand p { max-width: 440px; margin: 24px 0 0; color: #8A8A93; font-size: .82rem; line-height: 1.7; }
.footer-links { display: grid; grid-template-columns: repeat(2, 150px); justify-content: end; gap: 50px; }
.footer-links > div { display: flex; flex-direction: column; align-items: flex-start; gap: 10px; }
.footer-links strong { margin-bottom: 5px; color: #e2dfe0; font-size: .72rem; letter-spacing: .08em; text-transform: uppercase; }
.footer-links a { min-height: 32px; color: #8A8A93; font-size: .78rem; transition: color 180ms ease; }
.footer-links a:hover { color: var(--red-bright); }
.footer-bottom { display: flex; min-height: 72px; align-items: center; justify-content: space-between; border-top: 1px solid var(--line); color: #8A8A93; font-size: .65rem; }
.footer-bottom p { margin: 0; }

/* Dashboard */
.dashboard-page {
  background:
    radial-gradient(circle at 78% 10%, rgba(123, 44, 191, .09), transparent 27%),
    #100F12;
}

.dashboard-page::before {
  position: fixed;
  z-index: -1;
  inset: 0;
  content: "";
  pointer-events: none;
  background-image: linear-gradient(rgba(255,255,255,.016) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.016) 1px, transparent 1px);
  background-size: 52px 52px;
}

.dashboard-shell { min-height: 100vh; }

.dashboard-sidebar {
  position: fixed;
  z-index: 1200;
  top: 0;
  bottom: 0;
  left: 0;
  display: flex;
  width: 264px;
  flex-direction: column;
  border-right: 1px solid var(--line);
  padding: 24px 18px 20px;
  background: rgba(16, 15, 18,.94);
  box-shadow: 18px 0 60px rgba(0,0,0,.18);
  backdrop-filter: blur(22px);
}

.sidebar-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 28px; padding: 0 7px; }
.sidebar-close { display: none; width: 44px; height: 44px; border: 1px solid var(--line); color: #bdb9ba; background: transparent; cursor: pointer; font-size: 1.35rem; }

.sidebar-product {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 32px;
  border: 1px solid rgba(157, 78, 221,.16);
  padding: 13px;
  background: linear-gradient(135deg, rgba(123, 44, 191,.09), rgba(255,255,255,.018));
  clip-path: polygon(0 0, calc(100% - 9px) 0, 100% 9px, 100% 100%, 0 100%);
}

.sidebar-product-icon { display: grid; width: 36px; height: 36px; flex: 0 0 auto; place-items: center; border: 1px solid rgba(157, 78, 221,.34); color: var(--red-bright); background: rgba(123, 44, 191,.08); }
.sidebar-product div { display: flex; min-width: 0; flex-direction: column; gap: 3px; }
.sidebar-product strong { overflow: hidden; font-size: .73rem; text-overflow: ellipsis; white-space: nowrap; }
.sidebar-product small { display: flex; align-items: center; gap: 6px; color: #8A8A93; font-size: .55rem; letter-spacing: .04em; }
.sidebar-product small i { width: 5px; height: 5px; border-radius: 50%; background: var(--green); box-shadow: 0 0 7px var(--green); }

.sidebar-nav { display: flex; flex-direction: column; gap: 5px; }
.sidebar-label { margin: 0 10px 9px; color: #8A8A93; font-size: .55rem; font-weight: 700; letter-spacing: .16em; text-transform: uppercase; }

.sidebar-link {
  position: relative;
  display: grid;
  min-height: 49px;
  grid-template-columns: 30px 1fr 8px;
  align-items: center;
  gap: 6px;
  border: 1px solid transparent;
  padding: 0 12px;
  color: #8A8A93;
  font-size: .79rem;
  font-weight: 500;
  transition: color 180ms ease, border-color 180ms ease, background 180ms ease;
}

.sidebar-link > i { width: 5px; height: 5px; border-radius: 50%; background: transparent; }
.sidebar-icon { color: #8A8A93; font-size: 1rem; }
.sidebar-link:hover { color: #dddada; background: rgba(255,255,255,.025); }
.sidebar-link.is-active { color: #fff; border-color: rgba(157, 78, 221,.18); background: linear-gradient(90deg, rgba(123, 44, 191,.12), rgba(123, 44, 191,.025)); }
.sidebar-link.is-active::before { position: absolute; top: 9px; bottom: 9px; left: -1px; width: 2px; content: ""; background: var(--red-bright); box-shadow: 0 0 8px var(--red-bright); }
.sidebar-link.is-active .sidebar-icon { color: var(--red-bright); }
.sidebar-link.is-active > i { background: var(--red-bright); box-shadow: 0 0 7px var(--red-bright); }

.sidebar-tip { margin-top: auto; border: 1px solid var(--line); padding: 17px; background: rgba(255,255,255,.018); }
.tip-kicker { display: block; margin-bottom: 9px; color: #C77DFF; font-size: .52rem; font-weight: 700; letter-spacing: .16em; }
.sidebar-tip strong { display: block; margin-bottom: 7px; font-size: .74rem; }
.sidebar-tip p { margin: 0; color: #8A8A93; font-size: .65rem; line-height: 1.55; }

.sidebar-footer { display: flex; flex-direction: column; gap: 8px; margin-top: 17px; padding: 0 6px; }
.sidebar-footer a { display: inline-flex; min-height: 36px; align-items: center; gap: 9px; color: #8A8A93; font-size: .7rem; transition: color 180ms ease; }
.sidebar-footer a:hover { color: #fff; }
.version { color: #8A8A93; font-size: .54rem; letter-spacing: .08em; }

.sidebar-overlay { position: fixed; z-index: 1100; inset: 0; display: none; border: 0; padding: 0; background: rgba(0,0,0,.65); backdrop-filter: blur(3px); cursor: pointer; }

.dashboard-main { width: calc(100% - 264px); max-width: 1540px; margin-left: 264px; padding: 34px 40px 24px; }

.dashboard-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  margin-bottom: 30px;
}

.topbar-copy { display: flex; align-items: flex-start; gap: 15px; }
.topbar-copy .eyebrow { margin-bottom: 8px; font-size: .62rem; }
.dashboard-topbar h1 { margin-bottom: 4px; font-size: clamp(1.9rem, 3vw, 2.55rem); letter-spacing: -.045em; line-height: 1.05; }
.dashboard-topbar p:last-child { margin: 0; color: #8A8A93; font-size: .82rem; }
.sidebar-toggle { display: none; width: 46px; height: 46px; flex: 0 0 auto; border: 1px solid var(--line-strong); padding: 0; background: rgba(255,255,255,.035); cursor: pointer; }
.sidebar-toggle span { display: block; width: 18px; height: 1px; margin: 4px auto; background: #fff; }

.topbar-actions { display: flex; align-items: center; gap: 13px; }
.ready-badge { min-height: 40px; border: 1px solid rgba(62,229,139,.12); padding: 0 13px; color: #8A8A93; background: rgba(62,229,139,.025); }

.profile-chip {
  display: flex;
  min-height: 49px;
  align-items: center;
  gap: 10px;
  border: 1px solid var(--line);
  padding: 5px 11px 5px 6px;
  color: #8A8A93;
  background: rgba(255,255,255,.025);
  cursor: default;
}

.profile-avatar { display: grid; width: 36px; height: 36px; place-items: center; color: #fff; background: linear-gradient(145deg, #9D4EDD, #7B2CBF); font-size: .78rem; font-weight: 700; }
.profile-copy { display: flex; flex-direction: column; align-items: flex-start; gap: 1px; min-width: 82px; }
.profile-copy strong { color: #e6e2e3; font-size: .7rem; }
.profile-copy small { color: #8A8A93; font-size: .56rem; }

.stats-grid { display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: 13px; margin-bottom: 15px; }

.stat-card {
  position: relative;
  min-height: 178px;
  border: 1px solid var(--line);
  padding: 20px 21px;
  background: linear-gradient(140deg, rgba(28, 26, 34,.78), rgba(16, 15, 18,.9));
  overflow: hidden;
  clip-path: polygon(0 0, calc(100% - 12px) 0, 100% 12px, 100% 100%, 0 100%);
  transition: border-color 220ms ease, transform 220ms ease, box-shadow 220ms ease;
}

.stat-card::before { position: absolute; top: 0; right: 18px; left: 18px; height: 1px; content: ""; background: linear-gradient(90deg, transparent, rgba(157, 78, 221,.8), transparent); opacity: .55; }
.stat-card:hover { border-color: rgba(157, 78, 221,.26); transform: translateY(-3px); box-shadow: 0 16px 38px rgba(0,0,0,.22); }
.stat-card__top { display: flex; align-items: center; justify-content: space-between; margin-bottom: 21px; }
.stat-icon { display: grid; width: 34px; height: 34px; place-items: center; border: 1px solid rgba(157, 78, 221,.19); color: var(--red-bright); background: rgba(123, 44, 191,.055); }
.stat-status, .stat-change { color: #8A8A93; font-size: .52rem; font-weight: 700; letter-spacing: .11em; }
.stat-status { display: flex; align-items: center; gap: 5px; color: #8bcdaa; }
.stat-status i { width: 5px; height: 5px; border-radius: 50%; background: var(--green); box-shadow: 0 0 6px var(--green); }
.stat-card > p { margin-bottom: 3px; color: #8A8A93; font-size: .68rem; }
.stat-card > strong { display: block; margin-bottom: 4px; color: #f2eeee; font-size: 1.48rem; letter-spacing: -.025em; }
.stat-card > small { color: #8A8A93; font-size: .58rem; }
.accuracy-track { display: block; width: 100%; height: 3px; margin-top: 11px; border: 0; appearance: none; background: rgba(255,255,255,.055); }
.accuracy-track::-webkit-progress-bar { background: rgba(255,255,255,.055); }
.accuracy-track::-webkit-progress-value { background: linear-gradient(90deg, #7B2CBF, var(--red-bright)); box-shadow: 0 0 7px rgba(157, 78, 221,.45); }
.accuracy-track::-moz-progress-bar { background: linear-gradient(90deg, #7B2CBF, var(--red-bright)); box-shadow: 0 0 7px rgba(157, 78, 221,.45); }

.dashboard-panel {
  border: 1px solid var(--line);
  background: linear-gradient(145deg, rgba(28, 26, 34,.83), rgba(16, 15, 18,.91));
  box-shadow: 0 18px 55px rgba(0,0,0,.22), inset 0 1px rgba(255,255,255,.025);
}

.crosshair-workspace { margin-bottom: 15px; padding: 26px; }

.panel-header { display: flex; align-items: flex-start; justify-content: space-between; gap: 24px; margin-bottom: 22px; }
.panel-header .eyebrow { margin-bottom: 6px; font-size: .58rem; }
.panel-header h2 { margin-bottom: 4px; font-size: 1.42rem; letter-spacing: -.03em; }
.panel-header p:last-child { margin: 0; color: #8A8A93; font-size: .72rem; }
.panel-header-actions { display: flex; align-items: center; gap: 15px; }
.sync-status { color: #8A8A93; font-size: .52rem; }
.carousel-actions--small button { width: 41px; height: 41px; }

.dashboard-stage {
  position: relative;
  display: grid;
  height: 430px;
  place-items: center;
  border: 1px solid rgba(255,255,255,.1);
  background:
    radial-gradient(circle at center, rgba(123, 44, 191,.1), transparent 24%),
    linear-gradient(145deg, #1C1A22, #100F12 52%, #1C1A22);
  overflow: hidden;
}

.stage-grid-lines {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(255,255,255,.025) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.025) 1px, transparent 1px);
  background-size: 46px 46px;
  mask-image: radial-gradient(circle at center, #000, transparent 78%);
}

.stage-grid-lines::before {
  position: absolute;
  right: -12%;
  bottom: -70%;
  left: -12%;
  height: 120%;
  content: "";
  background-image: linear-gradient(rgba(255,255,255,.04) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.04) 1px, transparent 1px);
  background-size: 46px 46px;
  transform: perspective(420px) rotateX(66deg);
}

.stage-scenery { position: absolute; bottom: 30%; display: flex; align-items: end; gap: 3px; opacity: .52; }
.stage-scenery i { display: block; border: 1px solid rgba(255,255,255,.04); background: linear-gradient(140deg, #1C1A22, #1C1A22); }
.stage-scenery--left { left: -2%; }
.stage-scenery--right { right: -2%; }
.stage-scenery--left i:nth-child(1) { width: 90px; height: 180px; }
.stage-scenery--left i:nth-child(2) { width: 120px; height: 126px; }
.stage-scenery--left i:nth-child(3) { width: 65px; height: 210px; }
.stage-scenery--right i:nth-child(1) { width: 140px; height: 155px; }
.stage-scenery--right i:nth-child(2) { width: 80px; height: 225px; }

.stage-hud { position: absolute; z-index: 4; color: #8A8A93; font-size: .5rem; font-weight: 700; letter-spacing: .16em; }
.stage-hud--top-left { top: 16px; left: 17px; }
.stage-hud--top-right { top: 16px; right: 17px; display: flex; align-items: center; gap: 6px; }
.stage-hud--top-right i { width: 5px; height: 5px; border-radius: 50%; background: var(--green); box-shadow: 0 0 6px var(--green); }
.stage-hud--bottom-left { bottom: 16px; left: 17px; }
.stage-hud--bottom-right { right: 17px; bottom: 16px; }

.focus-line { position: absolute; z-index: 2; background: linear-gradient(90deg, transparent, rgba(157, 78, 221,.14), transparent); }
.focus-line--horizontal { top: 50%; left: 16%; width: 68%; height: 1px; }
.focus-line--vertical { top: 16%; left: 50%; width: 1px; height: 68%; background: linear-gradient(0deg, transparent, rgba(157, 78, 221,.14), transparent); }

.dashboard-preview-crosshair {
  --ch-size: 72px;
  --ch-line: 2px;
  position: relative;
  z-index: 5;
}

.preview-callout {
  position: absolute;
  z-index: 4;
  right: 20px;
  bottom: 44px;
  display: flex;
  min-width: 135px;
  flex-direction: column;
  gap: 2px;
  border-right: 2px solid var(--red-bright);
  padding-right: 10px;
  text-align: right;
}

.preview-callout span { color: #8A8A93; font-size: .5rem; font-weight: 700; letter-spacing: .14em; }
.preview-callout strong { font-size: .76rem; }

.gallery-toolbar { display: flex; align-items: center; justify-content: space-between; margin: 21px 2px 12px; }
.gallery-toolbar > div { display: flex; align-items: center; gap: 9px; }
.gallery-toolbar strong { font-size: .78rem; }
.gallery-toolbar span { color: #8A8A93; font-size: .6rem; }
.swipe-hint { display: flex; align-items: center; gap: 6px; }
.swipe-hint i { color: var(--red-bright); font-style: normal; }
.dashboard-rail { padding-bottom: 2px; }
.dashboard-rail .crosshair-card { min-width: 158px; min-height: 160px; flex-basis: 158px; }
.dashboard-rail .crosshair-card__visual { min-height: 102px; }

.settings-panel { padding: 26px; }
.settings-header { align-items: center; }
.settings-grid { display: grid; grid-template-columns: 1.1fr 1.35fr 1.2fr; gap: 12px; }
.setting-block { min-width: 0; min-height: 158px; margin: 0; border: 1px solid var(--line); padding: 18px; background: rgba(255,255,255,.018); }
.setting-block legend { padding: 0 7px 0 0; color: #e1ddde; font-size: .72rem; font-weight: 600; }
.setting-block > p { margin: 1px 0 18px; color: #8A8A93; font-size: .62rem; }

.color-swatches { display: flex; flex-wrap: wrap; gap: 8px; }
.color-swatch { position: relative; display: grid; width: 44px; height: 44px; place-items: center; border: 1px solid transparent; padding: 0; background: transparent; cursor: pointer; }
.color-swatch::before { width: 28px; height: 28px; content: ""; border: 3px solid #100F12; background: var(--swatch); box-shadow: 0 0 0 1px rgba(255,255,255,.12); }
.color-swatch span { position: absolute; color: #1C1A22; font-size: .58rem; font-weight: 800; opacity: 0; }
.color-swatch.is-active { border-color: rgba(255,255,255,.18); background: rgba(255,255,255,.025); }
.color-swatch.is-active::before { box-shadow: 0 0 0 1px rgba(255,255,255,.24), 0 0 18px color-mix(in srgb, var(--swatch) 68%, transparent); }
.color-swatch.is-active span { opacity: 1; }
.color-swatch--purple { --swatch: #9D4EDD; }
.color-swatch--deep-purple { --swatch: #7B2CBF; }
.color-swatch--pink { --swatch: #ff4fa3; }
.color-swatch--white { --swatch: #ffffff; }
.color-swatch--cyan { --swatch: #22d3ee; }
.color-swatch--lime { --swatch: #a3e635; }

.range-controls { display: flex; flex-direction: column; justify-content: center; gap: 20px; }
.range-row { display: flex; flex-direction: column; gap: 10px; }
.range-row > span { display: flex; align-items: center; justify-content: space-between; }
.range-row strong,
.range-row label { color: var(--text); font-size: .7rem; font-weight: 600; }
.range-row output { color: #C77DFF; font-size: .62rem; font-weight: 700; }
input[type="range"] { width: 100%; height: 20px; appearance: none; border-radius: 0; background: linear-gradient(90deg, var(--red-bright) 0 var(--range-progress, 47%), rgba(255,255,255,.08) var(--range-progress, 47%)); background-position: center; background-repeat: no-repeat; background-size: 100% 3px; cursor: pointer; }
input[type="range"]::-webkit-slider-thumb { width: 14px; height: 14px; appearance: none; border: 3px solid #100F12; border-radius: 50%; background: var(--red-bright); box-shadow: 0 0 0 1px rgba(157, 78, 221,.65), 0 0 9px rgba(157, 78, 221,.35); }
input[type="range"]::-moz-range-thumb { width: 10px; height: 10px; border: 3px solid #100F12; border-radius: 50%; background: var(--red-bright); box-shadow: 0 0 0 1px rgba(157, 78, 221,.65), 0 0 9px rgba(157, 78, 221,.35); }

.toggle-controls { display: flex; flex-direction: column; justify-content: center; gap: 10px; }
.toggle-row { display: flex; min-height: 55px; align-items: center; justify-content: space-between; gap: 14px; cursor: pointer; }
.toggle-row > span { display: flex; flex-direction: column; gap: 2px; }
.toggle-row strong { font-size: .69rem; font-weight: 600; }
.toggle-row small { color: #8A8A93; font-size: .56rem; }
.toggle-row input { position: absolute; width: 1px; height: 1px; opacity: 0; }
.toggle-row i { position: relative; width: 38px; height: 21px; flex: 0 0 auto; border: 1px solid rgba(255,255,255,.12); background: #100F12; transition: background 180ms ease, border-color 180ms ease; }
.toggle-row i::after { position: absolute; top: 3px; left: 3px; width: 13px; height: 13px; content: ""; background: #666; transition: left 180ms ease, background 180ms ease, box-shadow 180ms ease; }
.toggle-row input:checked + i { border-color: rgba(157, 78, 221,.45); background: rgba(123, 44, 191,.14); }
.toggle-row input:checked + i::after { left: 20px; background: var(--red-bright); box-shadow: 0 0 8px rgba(157, 78, 221,.6); }
.toggle-row input:focus-visible + i { outline: 2px solid #C77DFF; outline-offset: 3px; }

.dashboard-footer { display: flex; min-height: 70px; align-items: center; justify-content: space-between; gap: 30px; color: #8A8A93; font-size: .58rem; }
.dashboard-footer p { margin: 0; }

.toast {
  position: fixed;
  z-index: 2000;
  right: 22px;
  bottom: 22px;
  display: flex;
  min-width: 260px;
  align-items: center;
  gap: 11px;
  border: 1px solid rgba(157, 78, 221,.28);
  padding: 12px 14px;
  background: rgba(28, 26, 34,.94);
  box-shadow: 0 18px 50px rgba(0,0,0,.45), 0 0 25px rgba(123, 44, 191,.08);
  backdrop-filter: blur(16px);
  opacity: 0;
  pointer-events: none;
  transform: translateY(18px);
  transition: opacity 220ms ease, transform 220ms ease;
}

.toast.is-visible { opacity: 1; transform: translateY(0); }
.toast > span { display: grid; width: 30px; height: 30px; place-items: center; color: #fff; background: var(--red); font-size: .7rem; }
.toast p { display: flex; flex-direction: column; gap: 1px; margin: 0; }
.toast strong { font-size: .7rem; }
.toast small { color: #8A8A93; font-size: .58rem; }

/* Responsive */
@media (max-width: 1180px) {
  .hero-layout { grid-template-columns: minmax(0, .95fr) minmax(420px, 1.05fr); gap: 38px; }
  .hero-copy h1 { font-size: clamp(3.65rem, 6.3vw, 5.1rem); }
  .visual-orbit--outer { width: 470px; height: 470px; }
  .visual-orbit--inner { width: 405px; height: 405px; }
  .floating-chip--top { right: 0; }
  .floating-chip--bottom { left: 0; }
  .settings-grid { grid-template-columns: 1fr 1.2fr; }
  .toggle-controls { grid-column: span 2; flex-direction: row; }
  .toggle-row { flex: 1; }
}

@media (max-width: 1024px) {
  .container { width: min(calc(100% - 36px), var(--container)); }
  .section-pad { padding: 94px 0; }
  .hero { min-height: auto; padding-top: 138px; }
  .hero-layout { grid-template-columns: 1fr 420px; gap: 20px; }
  .hero-copy h1 { font-size: clamp(3.3rem, 6vw, 4.4rem); }
  .hero-subtitle { font-size: .96rem; }
  .hero-actions { flex-direction: column; align-items: flex-start; }
  .hero-actions .button { width: min(100%, 330px); }
  .extension-window { width: 390px; }
  .mock-game-screen { height: 310px; }
  .visual-orbit--outer { width: 420px; height: 420px; }
  .visual-orbit--inner { width: 365px; height: 365px; }
  .feature-grid { grid-template-columns: repeat(2, 1fr); }
  .feature-card--wide { grid-column: span 2; }
  .feature-card:last-child { grid-column: span 2; }
  .install-steps { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .install-step:last-child { grid-column: span 2; }
  .review-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .cta-target { right: 7%; opacity: .62; }

  .dashboard-main { padding-inline: 26px; }
  .ready-badge { display: none; }
  .dashboard-stage { height: 390px; }
}

@media (max-width: 900px) {
  .dashboard-sidebar { transform: translateX(-104%); visibility: hidden; transition: transform 260ms cubic-bezier(.2,.75,.25,1), visibility 0s linear 260ms; }
  .dashboard-page.sidebar-open .dashboard-sidebar { transform: translateX(0); visibility: visible; transition-delay: 0s; }
  .dashboard-page.sidebar-open .sidebar-overlay { display: block; }
  .sidebar-close, .sidebar-toggle { display: block; }
  .dashboard-main { width: 100%; margin-left: 0; }
  .dashboard-page.sidebar-open { overflow: hidden; }
}

@media (max-width: 780px) {
  :root { --header-height: 68px; }
  .container { width: min(calc(100% - 28px), var(--container)); }
  .section-pad { padding: 76px 0; }
  .desktop-nav, .desktop-download { display: none; }
  .mobile-menu-toggle { display: block; }
  .mobile-menu {
    position: absolute;
    top: 68px;
    right: 14px;
    left: 14px;
    display: flex;
    flex-direction: column;
    gap: 4px;
    border: 1px solid var(--line-strong);
    padding: 11px;
    background: rgba(16, 15, 18,.97);
    box-shadow: 0 24px 70px rgba(0,0,0,.55);
    backdrop-filter: blur(22px);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-10px);
    visibility: hidden;
    transition: opacity 180ms ease, transform 180ms ease, visibility 0s linear 180ms;
  }
  .site-header.menu-open .mobile-menu { opacity: 1; pointer-events: auto; transform: translateY(0); visibility: visible; transition-delay: 0s; }
  .mobile-menu > a:not(.button) { display: flex; min-height: 48px; align-items: center; border-bottom: 1px solid var(--line); padding: 0 10px; color: #8A8A93; font-size: .86rem; }
  .mobile-menu .button { margin-top: 8px; }

  .hero { padding: 126px 0 72px; }
  .hero-layout { grid-template-columns: 1fr; gap: 70px; }
  .hero-copy { text-align: center; }
  .hero-copy .eyebrow, .hero-proof { justify-content: center; }
  .hero-copy h1 { max-width: 620px; margin-inline: auto; font-size: clamp(3.4rem, 12vw, 5.2rem); }
  .hero-subtitle { margin-inline: auto; }
  .hero-actions { flex-direction: row; align-items: stretch; justify-content: center; }
  .hero-actions .button { width: auto; }
  .hero-visual { min-height: 510px; }
  .extension-window { width: min(100%, 476px); }
  .mock-game-screen { height: 330px; }
  .hero-glow { top: 68%; right: 50%; transform: translate(50%,-50%); }

  .trust-grid { grid-template-columns: 1fr; }
  .trust-item { min-height: 86px; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); }
  .trust-item:last-child { border-bottom: 0; }

  .section-intro { grid-template-columns: 1fr; gap: 22px; }
  .feature-grid { grid-template-columns: 1fr; }
  .feature-card--wide, .feature-card:last-child { grid-column: auto; }
  .feature-visual { position: relative; top: auto; right: auto; justify-content: flex-end; margin: -20px 0 18px; }
  .feature-card--wide .feature-topline { margin-bottom: 30px; }

  .steps-list { grid-template-columns: 1fr; }
  .steps-list::before { top: 12%; bottom: 12%; left: 50%; width: 1px; height: auto; background: linear-gradient(0deg, transparent, rgba(157, 78, 221,.28), transparent); }
  .step-card { min-height: 280px; }
  .install-note { grid-template-columns: auto minmax(0, 1fr); }
  .install-note a { grid-column: 2; justify-self: start; }

  .showcase-stage { height: 330px; }
  .stage-preset-carousel { inset: 42px 14px 38px; }
  .stage-preset-slot--previous { left: 18%; }
  .stage-preset-slot--next { left: 82%; }
  .stage-preset-carousel.is-moving[data-direction="next"] .stage-preset-slot--current,
  .stage-preset-carousel.is-moving[data-direction="previous"] .stage-preset-slot--incoming { left: 18%; }
  .stage-preset-carousel.is-moving[data-direction="next"] .stage-preset-slot--incoming,
  .stage-preset-carousel.is-moving[data-direction="previous"] .stage-preset-slot--current { left: 82%; }
  .review-card { min-height: 270px; }
  .cta-panel { min-height: 520px; padding: 58px 38px; }
  .cta-target { right: -75px; bottom: -75px; top: auto; transform: none; opacity: .42; }
  .footer-main { grid-template-columns: 1fr; gap: 44px; }
  .footer-links { justify-content: start; }

  .dashboard-main { padding: 24px 18px 18px; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .stat-card:last-child { grid-column: span 2; }
  .panel-header { flex-direction: column; }
  .panel-header-actions { width: 100%; justify-content: space-between; }
  .dashboard-stage { height: 350px; }
  .settings-grid { grid-template-columns: 1fr; }
  .toggle-controls { grid-column: auto; flex-direction: column; }
  .dashboard-footer { flex-direction: column; align-items: flex-start; justify-content: center; gap: 4px; padding-block: 18px; }
}

@media (max-width: 600px) {
  .brand-product { display: none; }
  .section-pad { padding: 66px 0; }
  .hero-copy h1 { font-size: clamp(3.05rem, 15vw, 4.5rem); line-height: .95; }
  .hero-copy h1 br { display: none; }
  .hero-subtitle { font-size: .91rem; line-height: 1.68; }
  .hero-actions { flex-direction: column; }
  .hero-actions .button { width: 100%; }
  .hero-proof { gap: 9px 15px; font-size: .68rem; }
  .hero-visual { min-height: 455px; }
  .extension-window { width: 100%; }
  .window-bar { min-height: 55px; padding-inline: 14px; }
  .window-brand { font-size: .72rem; }
  .mock-game-screen { height: 285px; }
  .visual-orbit--outer { width: 380px; height: 380px; }
  .visual-orbit--inner { width: 325px; height: 325px; }
  .floating-chip--top { top: 25px; right: -4px; }
  .floating-chip--bottom { bottom: 14px; left: -4px; }

  .section-intro h2, .centered-heading h2, .showcase-heading h2, .cta-panel h2 { font-size: clamp(2.45rem, 12vw, 3.5rem); }
  .feature-card { min-height: 270px; padding: 23px; }
  .feature-topline { margin-bottom: 42px; }
  .feature-visual .crosshair { --ch-size: 50px; }
  .install-steps { grid-template-columns: 1fr; }
  .install-step, .install-step:last-child { min-height: 235px; grid-column: auto; }
  .install-step__top { margin-bottom: 38px; }
  .install-note { grid-template-columns: auto minmax(0, 1fr); align-items: start; }
  .install-note a { grid-column: 1 / -1; }

  .showcase-heading { align-items: flex-end; flex-wrap: wrap; }
  .showcase-heading .carousel-actions button { width: 44px; height: 44px; }
  .showcase-stage { height: 280px; }
  .stage-preset-carousel { inset: 36px 4px 30px; }
  .stage-preset-slot { width: 118px; gap: 10px; }
  .stage-preset-slot .crosshair { --ch-size: 82px; }
  .stage-preset-slot .crosshair--asset { --ch-size: 124px; }
  .stage-preset-slot--previous { left: 17%; transform: translate(-50%, -50%) scale(.54); }
  .stage-preset-slot--next { left: 83%; transform: translate(-50%, -50%) scale(.54); }
  .stage-preset-carousel.is-moving[data-direction="next"] .stage-preset-slot--current,
  .stage-preset-carousel.is-moving[data-direction="previous"] .stage-preset-slot--incoming { left: 17%; transform: translate(-50%, -50%) scale(.54); }
  .stage-preset-carousel.is-moving[data-direction="next"] .stage-preset-slot--incoming,
  .stage-preset-carousel.is-moving[data-direction="previous"] .stage-preset-slot--current { left: 83%; transform: translate(-50%, -50%) scale(.54); }
  .stage-preset-slot--previous .stage-preset-name,
  .stage-preset-slot--next .stage-preset-name,
  .stage-preset-slot--incoming .stage-preset-name { display: none; }
  .crosshair-card { min-width: 154px; min-height: 162px; flex-basis: 154px; }
  .crosshair-card__visual { min-height: 104px; }
  .review-grid { grid-template-columns: 1fr; }
  .review-card { min-height: 248px; }

  .cta-panel { min-height: 500px; padding: 46px 25px; }
  .cta-panel .button { width: 100%; min-width: 0; }
  .footer-main { padding-block: 54px; }
  .footer-links { grid-template-columns: 1fr 1fr; gap: 24px; }
  .footer-bottom { min-height: 96px; flex-direction: column; align-items: flex-start; justify-content: center; gap: 6px; }

  .dashboard-topbar { align-items: flex-start; }
  .dashboard-topbar .eyebrow { margin-bottom: 6px; }
  .dashboard-topbar h1 { font-size: 1.72rem; }
  .dashboard-topbar p:last-child { display: none; }
  .profile-copy, .profile-chip > span:last-child { display: none; }
  .profile-chip { padding: 5px; }
  .stats-grid { grid-template-columns: 1fr; }
  .stat-card:last-child { grid-column: auto; }
  .stat-card { min-height: 160px; }
  .crosshair-workspace, .settings-panel { padding: 18px; }
  .panel-header h2 { font-size: 1.25rem; }
  .sync-status { display: none; }
  .panel-header-actions { justify-content: flex-end; }
  .dashboard-stage { height: 300px; }
  .stage-scenery { opacity: .32; transform: scale(.75); transform-origin: bottom; }
  .stage-scenery--left { left: -18%; }
  .stage-scenery--right { right: -18%; }
  .dashboard-preview-crosshair { --ch-size: 64px; }
  .preview-callout { display: none; }
  .stage-hud--bottom-right, .stage-hud--bottom-left { display: none; }
  .gallery-toolbar { align-items: flex-start; }
  .swipe-hint { max-width: 120px; text-align: right; }
  .dashboard-rail .crosshair-card { min-width: 140px; flex-basis: 140px; }
  .settings-header .button { width: 100%; }
  .setting-block { min-height: 148px; }
  .toast { right: 14px; bottom: 14px; left: 14px; min-width: 0; }
}

@media (max-width: 390px) {
  .container { width: min(calc(100% - 22px), var(--container)); }
  .site-header .brand-word { font-size: 1.08rem; }
  .hero-copy h1 { font-size: 2.85rem; }
  .hero-proof { flex-direction: column; align-items: center; }
  .floating-chip { font-size: .6rem; }
  .window-status { display: none; }
  .trust-item { padding-inline: 22px; }
  .showcase-stage { height: 250px; }
  .stage-preset-slot .crosshair { --ch-size: 74px; }
  .stage-preset-slot .crosshair--asset { --ch-size: 108px; }
  .stage-preset-slot--previous { left: 15%; transform: translate(-50%, -50%) scale(.5); }
  .stage-preset-slot--next { left: 85%; transform: translate(-50%, -50%) scale(.5); }
  .stage-preset-carousel.is-moving[data-direction="next"] .stage-preset-slot--current,
  .stage-preset-carousel.is-moving[data-direction="previous"] .stage-preset-slot--incoming { left: 15%; transform: translate(-50%, -50%) scale(.5); }
  .stage-preset-carousel.is-moving[data-direction="next"] .stage-preset-slot--incoming,
  .stage-preset-carousel.is-moving[data-direction="previous"] .stage-preset-slot--current { left: 85%; transform: translate(-50%, -50%) scale(.5); }
  .dashboard-main { padding-inline: 12px; }
  .dashboard-topbar { gap: 10px; }
  .sidebar-toggle { width: 42px; height: 42px; }
  .dashboard-topbar h1 { font-size: 1.5rem; }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .reveal,
  .js-ready .reveal:not(.is-visible) {
    opacity: 1 !important;
    transform: none !important;
  }

  .preset-marquee__track {
    animation: none !important;
    transform: none !important;
  }

  .preset-marquee__group[aria-hidden="true"] {
    display: none;
  }
}
