/* =========================================================
   CHORUS
   Dark, blocky, high-contrast. Torchlight + End purple.
   ========================================================= */

:root {
  /* Surfaces — neutral black, not tinted violet */
  --ink:     #08080a;
  --ink-2:   #0b0b0e;
  --panel:   #101013;
  --panel-2: #15151a;
  --panel-3: #1c1c22;
  --line:    #212128;
  --line-2:  #33333d;

  /* Text */
  --text:  #f2f0f5;
  --muted: #a3a0ac;
  --faint: #6d6a78;

  /* Brand */
  --purple:      #a35bff;
  --purple-hi:   #c9a6ff;
  --purple-deep: #5a2eab;
  --torch:       #ffad3d;
  --grass:       #7ddb63;

  /* Blocky radii — nothing rounder than a chamfer */
  --r-xs: 3px; --r-sm: 6px; --r: 10px; --r-lg: 14px;

  --lift:  0 20px 44px -32px rgba(0,0,0,.95);
  --lift-2:0 40px 90px -50px rgba(0,0,0,1);

  --maxw: 1240px;
  --gutter: clamp(20px, 5vw, 48px);
  --sec-y: clamp(80px, 12vh, 148px);
  --ease: cubic-bezier(.2,.7,.3,1);
  --ease-out: cubic-bezier(.16,1,.3,1);

  --font-display: 'Archivo', system-ui, -apple-system, 'Segoe UI', sans-serif;
  --font-body: 'Archivo', system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
  --font-mono: 'JetBrains Mono', ui-monospace, 'SF Mono', Menlo, monospace;
}

/* ---------- Reset & base ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; scroll-padding-top: 90px; }
body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--ink);
  line-height: 1.6;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  position: relative;
}
body::before {
  content: "";
  position: fixed; inset: 0; z-index: -2;
  background:
    radial-gradient(1000px 700px at 50% -12%, #191128, transparent 68%),
    linear-gradient(180deg, var(--ink), var(--ink-2) 55%, var(--ink));
}
img, svg, video { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; cursor: pointer; border: 0; background: none; }
ul { list-style: none; padding: 0; }
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 700; font-stretch: 125%;
  line-height: 1.02; letter-spacing: -0.035em;
}
::selection { background: var(--purple); color: #0b0810; }

:focus-visible { outline: 2px solid var(--purple-hi); outline-offset: 3px; border-radius: 2px; }
:focus:not(:focus-visible) { outline: none; }

.svg-sprite { position: absolute; width: 0; height: 0; overflow: hidden; }
/* Grain, dialled way back — texture, not a filter */
.bg-grain {
  position: fixed; inset: 0; z-index: -1; pointer-events: none; opacity: .35;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.04'/%3E%3C/svg%3E");
}

/* ---------- Layout primitives ---------- */
.container { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: var(--gutter); }
.section { padding-block: var(--sec-y); position: relative; }

.skip-link {
  position: fixed; top: 12px; left: 12px; z-index: 300;
  background: var(--purple); color: #0b0810; font-weight: 700;
  font-family: var(--font-mono); font-size: .82rem;
  padding: 10px 16px; border-radius: var(--r-sm); transform: translateY(-200%);
  transition: transform .2s var(--ease);
}
.skip-link:focus { transform: translateY(0); }

/* Mono kicker with an index number, set by CSS counters */
.eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--font-mono); font-size: .72rem; font-weight: 500;
  letter-spacing: .18em; text-transform: uppercase; color: var(--purple-hi);
}
.eyebrow::before {
  content: ""; width: 7px; height: 7px; flex: 0 0 auto;
  background: var(--purple); box-shadow: 6px 0 0 -1px var(--purple-deep);
}

.section-head { max-width: 660px; margin-bottom: clamp(40px, 6vh, 72px); }
.section-head--center { margin-inline: auto; text-align: center; }
.section-head--center .eyebrow { justify-content: center; }
.section-head--split { max-width: none; display: flex; align-items: flex-end; justify-content: space-between; gap: 24px; flex-wrap: wrap; }
.section-title {
  font-size: clamp(2rem, 5.4vw, 3.6rem);
  margin-top: 18px;
}
.section-lead { margin-top: 18px; color: var(--muted); font-size: 1.05rem; max-width: 56ch; }
.section-head--center .section-lead { margin-inline: auto; }

.pill {
  display: inline-flex; align-items: center; gap: 7px;
  font-family: var(--font-mono); font-size: .72rem; font-weight: 500; letter-spacing: .06em;
  padding: 6px 12px; border-radius: var(--r-xs);
  background: var(--panel-2); border: 1px solid var(--line); color: var(--muted);
}
.pill--soon { color: var(--torch); border-color: rgba(255,173,61,.3); background: rgba(255,173,61,.08); }

/* ---------- Buttons — flat, solid, no glassy sheen ---------- */
.btn {
  --btn-py: 12px; --btn-px: 22px;
  position: relative; overflow: hidden;
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  font-family: var(--font-display); font-weight: 700; font-stretch: 112%;
  font-size: .92rem; letter-spacing: -.01em;
  padding: var(--btn-py) var(--btn-px); border-radius: var(--r-sm);
  border: 1px solid transparent; white-space: nowrap;
  transition: transform .16s var(--ease), background .2s var(--ease),
              border-color .2s var(--ease), color .16s var(--ease);
}
.btn svg { flex: 0 0 auto; position: relative; }
.btn--sm { --btn-py: 9px; --btn-px: 15px; font-size: .84rem; }
.btn--lg { --btn-py: 15px; --btn-px: 28px; font-size: 1rem; }
.btn--block { display: flex; width: 100%; }

.btn--primary { color: #150a26; background: var(--purple); }
/* Torch sweep on hover instead of a drop shadow bloom */
.btn--primary::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(100deg, transparent 20%, rgba(255,255,255,.5) 50%, transparent 80%);
  transform: translateX(-120%); transition: transform .55s var(--ease-out);
}
.btn--primary:hover { background: var(--purple-hi); transform: translateY(-2px); }
.btn--primary:hover::after { transform: translateX(120%); }
.btn--primary:active { transform: translateY(0); }
.btn--primary > * { position: relative; z-index: 1; }

.btn--ghost { color: var(--text); background: transparent; border-color: var(--line-2); }
.btn--ghost:hover { transform: translateY(-2px); background: var(--panel-2); border-color: var(--purple); }

.btn[disabled], .btn:disabled { cursor: not-allowed; opacity: .5; }

/* ---------- Reveal ---------- */
/* Hidden only once JS is around to un-hide it. No JS, no blank page. */
.js .reveal {
  opacity: 0; transform: translateY(20px); clip-path: inset(0 0 100% 0);
  transition: opacity .6s var(--ease-out), transform .6s var(--ease-out), clip-path .7s var(--ease-out);
  transition-delay: var(--d, 0ms);
}
.js .reveal.is-visible { opacity: 1; transform: none; clip-path: inset(-120px); }

/* ---------- Toast ---------- */
.toast {
  position: fixed; left: 50%; bottom: 26px; z-index: 300;
  transform: translate(-50%, 160%); opacity: 0; pointer-events: none;
  max-width: min(92vw, 460px);
  display: flex; align-items: center; gap: 11px;
  padding: 13px 18px; border-radius: var(--r-sm);
  background: #16161c; border: 1px solid var(--line-2);
  color: var(--text); font-size: .9rem; box-shadow: var(--lift-2);
  transition: transform .35s var(--ease-out), opacity .35s var(--ease-out);
}
.toast.is-open { transform: translate(-50%, 0); opacity: 1; }
.toast::before { content: ""; width: 4px; align-self: stretch; background: var(--torch); flex: 0 0 auto; }

/* ---------- Scroll progress ---------- */
.progress {
  position: fixed; top: 0; left: 0; right: 0; height: 2px; z-index: 110; pointer-events: none;
  background: var(--purple);
  transform: scaleX(var(--p, 0)); transform-origin: 0 50%;
}

/* ---------- Navbar ---------- */
.nav {
  position: fixed; inset: 0 0 auto 0; z-index: 100;
  border-bottom: 1px solid transparent;
  transition: background .25s var(--ease), border-color .25s var(--ease);
}
.nav--scrolled { background: rgba(8,8,10,.82); backdrop-filter: blur(12px); border-bottom-color: var(--line); }
.nav__inner { display: flex; align-items: center; gap: 22px; height: 72px; }

.nav__logo { display: inline-flex; align-items: center; gap: 11px; }
.nav__mark { transition: transform .5s var(--ease-out); }
.nav__logo:hover .nav__mark { transform: rotate(90deg); }
.nav__word {
  font-family: var(--font-display); font-weight: 800; font-stretch: 125%;
  letter-spacing: .14em; font-size: 1.05rem;
}

/* Sliding indicator instead of five independent underlines */
.nav__links { position: relative; display: flex; align-items: center; gap: 2px; margin-left: 14px; }
.nav__link {
  position: relative; z-index: 1; padding: 9px 14px; border-radius: var(--r-xs);
  font-size: .88rem; font-weight: 600; color: var(--muted);
  transition: color .18s var(--ease);
}
.nav__link:hover, .nav__link.is-active { color: var(--text); }
.nav__ind {
  position: absolute; left: 0; bottom: 6px; height: 2px; width: 1px;
  background: var(--purple); opacity: 0; pointer-events: none;
  transform: translateX(var(--x, 0)) scaleX(var(--w, 1)); transform-origin: 0 50%;
  transition: transform .34s var(--ease-out), opacity .2s var(--ease);
}
.nav__ind.is-on { opacity: 1; }

.nav__actions { margin-left: auto; display: flex; align-items: center; gap: 12px; }
.nav__toggle { display: none; width: 42px; height: 42px; border-radius: var(--r-xs); border: 1px solid var(--line-2); position: relative; }
.nav__toggle span { position: absolute; left: 11px; right: 11px; height: 2px; background: var(--text); transition: transform .28s var(--ease), opacity .18s var(--ease); }
.nav__toggle span:nth-child(1) { top: 14px; }
.nav__toggle span:nth-child(2) { top: 20px; }
.nav__toggle span:nth-child(3) { top: 26px; }
.nav__toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.nav__toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav__toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

/* ---------- Mobile menu ---------- */
.mobile-menu {
  position: fixed; inset: 72px 0 0 0; z-index: 90;
  display: flex; flex-direction: column; padding: 24px var(--gutter) 40px;
  background: var(--ink); border-bottom: 1px solid var(--line);
  opacity: 0; visibility: hidden; pointer-events: none;
  clip-path: inset(0 0 100% 0);
  transition: opacity .28s var(--ease), clip-path .38s var(--ease-out), visibility .38s;
}
.mobile-menu.is-open { opacity: 1; visibility: visible; pointer-events: auto; clip-path: inset(0); }
.mobile-menu__links { display: flex; flex-direction: column; }
.mobile-menu__links a {
  font-family: var(--font-display); font-size: 1.6rem; font-weight: 700; font-stretch: 118%;
  letter-spacing: -.03em;
  padding: 15px 2px; border-bottom: 1px solid var(--line); color: var(--text);
  display: flex; justify-content: space-between; align-items: center;
}
.mobile-menu__links a::after { content: "→"; color: var(--purple); font-size: 1.1rem; }
.mobile-menu .btn { margin-top: 24px; }
body.menu-open { overflow: hidden; }

/* ---------- Hero ---------- */
.hero {
  position: relative; min-height: 100svh; display: flex; align-items: center;
  overflow: hidden; padding-top: 72px;
  border-bottom: 1px solid var(--line);
}
.hero__bg { position: absolute; inset: 0; z-index: 0; }
.hero__sky {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, #08080a 0%, #0c0a14 34%, #150f26 66%, #0a0810 100%);
}
/* One light source, top right. Not four overlapping orbs. */
.hero__glow {
  position: absolute; top: -18%; right: -6%; width: 62vw; height: 62vw; max-width: 820px; max-height: 820px;
  background: radial-gradient(circle, rgba(255,173,61,.13), rgba(163,91,255,.09) 38%, transparent 66%);
  border-radius: 50%;
}
.hero__vignette {
  position: absolute; inset: 0; pointer-events: none;
  background:
    radial-gradient(130% 95% at 50% 38%, transparent 46%, rgba(4,3,8,.72) 100%),
    linear-gradient(180deg, transparent 60%, var(--ink) 100%);
}
.hero__layer { position: absolute; left: -4%; right: -4%; bottom: 0; background-repeat: no-repeat; background-position: bottom center; background-size: 100% 100%; will-change: transform; }
.hero__layer--far {
  height: 34%; opacity: .5;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 400' preserveAspectRatio='none'%3E%3Cpath fill='%23261d3a' d='M0 400V300H120V340H240V260H360V320H480V220H600V300H720V170H840V280H960V240H1080V320H1200V250H1320V300H1440V400Z'/%3E%3C/svg%3E");
}
.hero__layer--mid {
  height: 41%; opacity: .9;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 400' preserveAspectRatio='none'%3E%3Cpath fill='%2316102a' d='M0 400V320H90V280H210V330H330V240H450V300H560V200H690V290H810V250H930V310H1050V230H1170V300H1290V270H1440V400Z'/%3E%3C/svg%3E");
}
.hero__layer--near {
  height: 47%;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 400' preserveAspectRatio='none'%3E%3Cpath fill='%230c0817' d='M0 400V340H80V300H160V350H280V280H360V330H460V250H560V320H660V290H780V340H900V270H1010V330H1120V300H1240V340H1330V310H1440V400Z'/%3E%3C/svg%3E");
}
.hero__islands {
  position: absolute; right: 9%; top: 30%; width: 190px; height: 150px; will-change: transform;
  background: no-repeat center/contain url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 190 150'%3E%3Cg fill='%234a3b2c'%3E%3Crect x='40' y='90' width='110' height='26'/%3E%3Crect x='58' y='116' width='74' height='16'/%3E%3C/g%3E%3Crect x='50' y='78' width='90' height='14' fill='%235aa84b'/%3E%3Cg fill='%23a35bff'%3E%3Crect x='86' y='36' width='12' height='42'/%3E%3Crect x='72' y='44' width='12' height='12'/%3E%3Crect x='100' y='50' width='12' height='12'/%3E%3Crect x='82' y='18' width='16' height='16'/%3E%3C/g%3E%3C/svg%3E");
  animation: floaty 9s ease-in-out infinite;
}
@keyframes floaty { 0%,100%{ translate: 0 0; } 50%{ translate: 0 -16px; } }
/* The island lives in the right-hand margin. Below ~1230px that margin is
   narrower than the island, so it sits on top of the wordmark. Decoration
   loses. */
@media (max-width: 1230px) { .hero__islands { display: none; } }

/* Scanlines, not light beams */
.hero__beams {
  position: absolute; inset: 0; pointer-events: none; opacity: .5;
  background: repeating-linear-gradient(0deg, rgba(0,0,0,.18) 0 1px, transparent 1px 3px);
}
.hero__particles { position: absolute; inset: 0; overflow: hidden; pointer-events: none; }
.particle {
  position: absolute; bottom: -10px; background: var(--purple-hi);
  opacity: 0; animation: rise linear infinite;
}
@keyframes rise {
  0%   { transform: translateY(0); opacity: 0; }
  12%  { opacity: .55; }
  88%  { opacity: .3; }
  100% { transform: translateY(-108vh); opacity: 0; }
}

/* Hero content */
.hero__content { position: relative; z-index: 2; max-width: 800px; padding-block: 40px; container-type: inline-size; }
.hero .eyebrow { margin-bottom: 22px; }

/* Solid, huge, tight. No gradient fill. Sized off its own box so the
   expanded face always fits on one line instead of losing the S. */
.hero__title {
  font-size: clamp(3.2rem, 17.5cqi, 8rem);
  line-height: .88; letter-spacing: -.05em; font-weight: 800; font-stretch: 125%;
  color: var(--text);
  display: flex; flex-wrap: wrap; overflow: hidden;
}
/* Clipping exists only so the letters can rise from below. Once they've landed
   it stops earning its keep and starts eating the wordmark whenever the
   container query resolves narrow. */
.hero__title.is-in { overflow: visible; }
.hero__title .ch { display: block; transform: translateY(105%); }
.hero__title.is-in .ch {
  transform: none;
  transition: transform .9s var(--ease-out);
  transition-delay: calc(var(--i) * 55ms);
}
.hero__title .ch:nth-child(even) { color: var(--purple-hi); }

.hero__tagline {
  font-family: var(--font-display); font-weight: 700; font-stretch: 112%;
  font-size: clamp(1.3rem, 3.2vw, 2rem); margin-top: 20px;
  color: var(--text); letter-spacing: -.03em;
}
.hero__sub { margin-top: 16px; font-size: clamp(1rem, 1.5vw, 1.14rem); color: var(--muted); max-width: 52ch; }
.hero__cta { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 34px; }

.hero__platforms {
  display: flex; flex-wrap: wrap; gap: 20px; margin-top: 30px;
  color: var(--faint); font-family: var(--font-mono); font-size: .78rem; letter-spacing: .06em;
}
.hero__platforms li { display: inline-flex; align-items: center; gap: 8px; }
.hero__pf-ico { width: 15px; height: 15px; background: var(--purple-hi); -webkit-mask: center/contain no-repeat var(--m); mask: center/contain no-repeat var(--m); }
.hero__pf-ico[data-ico="windows"] { --m: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M3 5.7 10.4 4.6V11.4H3zM10.4 12.6V19.4L3 18.3V12.6zM11.6 4.4 21 3V11.4H11.6zM21 12.6V21L11.6 19.6V12.6z'/%3E%3C/svg%3E"); }

.hero__scroll {
  position: absolute; bottom: 24px; left: 50%; translate: -50% 0; z-index: 2;
  width: 22px; height: 36px; border: 2px solid rgba(255,255,255,.28); border-radius: 2px;
  display: flex; justify-content: center;
}
.hero__scroll span { width: 3px; height: 8px; background: var(--purple-hi); margin-top: 6px; animation: scrolldot 1.8s var(--ease) infinite; }
@keyframes scrolldot { 0%{ transform: translateY(0); opacity: 1; } 70%{ transform: translateY(14px); opacity: 0; } 100%{ opacity: 0; } }

/* ---------- Ticker ---------- */
.ticker {
  border-bottom: 1px solid var(--line); background: var(--ink-2);
  overflow: hidden; padding-block: 13px;
  -webkit-mask: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
  mask: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}
.ticker__track { display: flex; width: max-content; animation: slide 38s linear infinite; }
.ticker:hover .ticker__track { animation-play-state: paused; }
.ticker__track > span {
  display: inline-flex; align-items: center; gap: 34px; padding-right: 34px;
  font-family: var(--font-mono); font-size: .78rem; letter-spacing: .12em;
  text-transform: uppercase; color: var(--faint); white-space: nowrap;
}
.ticker__track b { color: var(--text); font-weight: 500; }
.ticker__track i { color: var(--purple); font-style: normal; }
@keyframes slide { to { transform: translateX(-50%); } }

/* ---------- Cursor spotlight (cards) ---------- */
.spot { position: relative; }
.spot::before {
  content: ""; position: absolute; inset: 0; z-index: 0; pointer-events: none;
  border-radius: inherit; opacity: 0; transition: opacity .3s var(--ease);
  background: radial-gradient(240px circle at var(--mx, 50%) var(--my, 50%), rgba(163,91,255,.16), transparent 70%);
}
.spot:hover::before { opacity: 1; }
.spot > * { position: relative; z-index: 1; }

/* ---------- Features (bento) ---------- */
.features__grid { display: grid; grid-template-columns: repeat(12, 1fr); gap: 14px; }
.feature-card {
  grid-column: span 4; position: relative; overflow: hidden;
  display: flex; flex-direction: column;
  background: var(--panel);
  border: 1px solid var(--line); border-radius: var(--r);
  transition: transform .3s var(--ease), border-color .3s var(--ease), background .3s var(--ease);
}
.feature-card:hover { transform: translateY(-3px); border-color: var(--line-2); background: var(--panel-2); }
.feature-card__visual { position: relative; background: #0a0a10; overflow: hidden; border-bottom: 1px solid var(--line); }
.feature-card__visual .viz { width: 100%; height: 100%; display: block; transition: transform .6s var(--ease-out); }
.feature-card:hover .feature-card__visual .viz { transform: scale(1.03); }
.feature-card__body { padding: 22px 24px 26px; }
.feature-card__body h3 { font-size: 1.3rem; }
.feature-card__body p { margin-top: 10px; color: var(--muted); font-size: .95rem; }

.feature-card:not(.feature-card--wide) .feature-card__visual { aspect-ratio: 40 / 26; }

.feature-card--wide { grid-column: span 8; flex-direction: row; align-items: stretch; }
.feature-card--wide .feature-card__body { flex: 1; align-self: center; padding: clamp(24px, 3vw, 44px); }
.feature-card--wide .feature-card__visual { flex: 1.25; min-height: 270px; border-bottom: 0; border-left: 1px solid var(--line); }
.feature-card--wide .feature-card__body h3 { font-size: clamp(1.5rem, 2.6vw, 2.1rem); }
.feature-card--wide .feature-card__body p { font-size: 1rem; max-width: 40ch; }
.feature-card--reverse { grid-column: span 12; }
.feature-card--reverse .feature-card__visual { order: -1; border-left: 0; border-right: 1px solid var(--line); }
.feature-card--reverse .feature-card__body { max-width: 480px; }

/* viz internals */
.viz text { font-family: var(--font-body); }
.viz-chip > rect:first-child { fill: #16161c; stroke: #2a2a33; }
.viz-chip--accent > rect:first-child { fill: rgba(163,91,255,.14); stroke: var(--purple); }
.viz-dot { fill: #4d4a5c; }
.viz-dot--accent { fill: var(--purple); animation: pulse 2.6s var(--ease) infinite; transform-box: fill-box; transform-origin: center; }
@keyframes pulse { 0%,100%{ opacity: 1; } 50%{ opacity: .35; } }
.viz-bar { fill: #6e6a80; } .viz-bar--dim { fill: #3b3849; }
.viz-label { fill: #f2f0f5; font-family: var(--font-display); font-weight: 800; font-size: 15px; letter-spacing: 1.5px; }
.viz-sub { fill: var(--purple-hi); font-family: var(--font-mono); font-size: 10px; }

.hud-lg { fill: var(--text); font-family: var(--font-mono); font-weight: 700; font-size: 21px; }
.hud-unit { fill: var(--grass); font-size: 12px; }
.hud-sm { fill: #b6b2c4; font-family: var(--font-mono); font-size: 11px; }
.hud-graph { fill: none; stroke: var(--grass); stroke-width: 2.5; stroke-linejoin: round; stroke-linecap: round; }

.mod rect { fill: #16161c; stroke: #33333d; stroke-dasharray: 3 3; }
.mod text { fill: #b6b2c4; font-family: var(--font-mono); font-size: 11px; }
.mod--active rect { fill: rgba(163,91,255,.16); stroke: var(--purple); stroke-dasharray: none; }
.mod--active text { fill: #e9e2ff; }
.panel rect:first-child { fill: #15151b; stroke: #2a2a33; }
.p-bar { fill: #3b3849; } .p-track { fill: #26262e; } .p-knob { fill: var(--purple); }
.p-toggle { fill: rgba(163,91,255,.4); }

.vsel-row rect { fill: #14141a; stroke: #26262e; }
.vsel-row text { fill: #b6b2c4; font-family: var(--font-mono); font-size: 13px; }
.vsel-row--on rect { fill: rgba(163,91,255,.14); stroke: var(--purple); }
.vsel-row--on text { fill: #f2f0f5; }
.vsel-tag { fill: var(--torch) !important; font-size: 10px !important; text-anchor: end; }

.cos-cape { transform-box: fill-box; transform-origin: top center; animation: capeSway 6s ease-in-out infinite; }
@keyframes capeSway { 0%,100%{ transform: rotate(-1.4deg); } 50%{ transform: rotate(1.4deg); } }

.hb-slot rect { fill: #1b1b23; stroke: #3a3a46; }
.hb-slot--sel rect { stroke: var(--purple-hi); stroke-width: 3; }
.hud-xp { fill: var(--grass); font-family: var(--font-mono); font-weight: 700; font-size: 12px; }

/* ---------- Why ---------- */
.why { padding-block: clamp(52px, 8vh, 96px); }
.why__grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 0; border: 1px solid var(--line); border-radius: var(--r); overflow: hidden; }
.why-item {
  padding: 30px 24px; background: var(--panel);
  border-right: 1px solid var(--line);
  transition: background .25s var(--ease);
}
.why-item:last-child { border-right: 0; }
.why-item:hover { background: var(--panel-2); }
.why-item__ico {
  display: inline-flex; align-items: center; justify-content: center; width: 40px; height: 40px;
  border-radius: var(--r-xs); margin-bottom: 18px; color: var(--purple-hi);
  background: rgba(163,91,255,.1); border: 1px solid rgba(163,91,255,.22);
  transition: color .25s var(--ease), background .25s var(--ease), transform .3s var(--ease-out);
}
.why-item:hover .why-item__ico { color: var(--torch); background: rgba(255,173,61,.1); border-color: rgba(255,173,61,.28); transform: translateY(-3px); }
.why-item h3 { font-size: 1.05rem; }
.why-item p { margin-top: 6px; color: var(--faint); font-size: .88rem; line-height: 1.5; }

/* ---------- Download ---------- */
.download { position: relative; overflow: hidden; }
.download__ambient {
  position: absolute; inset: 0; z-index: 0; pointer-events: none;
  background: radial-gradient(60% 45% at 50% 0%, rgba(163,91,255,.1), transparent 62%);
}
.download .container { position: relative; z-index: 1; }

.download__meta { display: flex; flex-wrap: wrap; justify-content: center; align-items: stretch; gap: 8px; margin-bottom: 36px; }
.download__meta li, .download__meta a { display: inline-flex; align-items: center; gap: 10px; }
.download__meta li {
  padding: 9px 15px; border-radius: var(--r-xs); background: var(--panel);
  border: 1px solid var(--line); font-family: var(--font-mono); font-size: .76rem; letter-spacing: .04em;
}
.download__meta-k { color: var(--faint); text-transform: uppercase; }
.download__meta-v { color: var(--text); font-weight: 700; }
.download__meta-link {
  padding: 9px 15px; border-radius: var(--r-xs); border: 1px solid rgba(163,91,255,.32);
  color: var(--purple-hi); font-family: var(--font-mono); font-size: .76rem; letter-spacing: .04em;
  transition: background .2s var(--ease), border-color .2s var(--ease);
}
.download__meta-link:hover { background: rgba(163,91,255,.12); border-color: var(--purple); }

.download__grid { display: grid; grid-template-columns: minmax(0, 400px); gap: 18px; justify-content: center; margin-inline: auto; }
.dl-card {
  position: relative; overflow: hidden; isolation: isolate;
  display: flex; flex-direction: column; justify-content: space-between;
  padding: clamp(22px, 3vw, 32px);
  border-radius: var(--r); border: 1px solid var(--line-2);
  background: var(--panel);
  transition: transform .3s var(--ease), border-color .3s var(--ease), background .3s var(--ease);
}
.dl-card__texture {
  position: absolute; inset: 0; z-index: 0; opacity: .8;
  background-image:
    linear-gradient(rgba(255,255,255,.028) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.028) 1px, transparent 1px);
  background-size: 22px 22px;
}
.dl-card__glow {
  position: absolute; inset: 0; z-index: 0; opacity: .55; transition: opacity .35s var(--ease);
  background: radial-gradient(70% 55% at 80% 6%, var(--pf, rgba(163,91,255,.24)), transparent 64%);
}
.dl-card > *:not(.dl-card__texture):not(.dl-card__glow) { position: relative; z-index: 1; }
.dl-card__head { display: flex; align-items: flex-start; justify-content: space-between; }
.dl-card__badge {
  font-family: var(--font-mono); font-size: .68rem; font-weight: 500; letter-spacing: .08em;
  text-transform: uppercase; padding: 5px 10px; border-radius: var(--r-xs);
  color: var(--grass); background: rgba(125,219,99,.1); border: 1px solid rgba(125,219,99,.28);
}
.dl-card__ico {
  display: inline-flex; align-items: center; justify-content: center; width: 62px; height: 62px;
  border-radius: var(--r-sm); color: var(--pf-ico, var(--purple-hi));
  background: #17171e; border: 1px solid var(--line-2);
  transition: transform .35s var(--ease-out), color .3s var(--ease);
}
.dl-card__body { margin-top: 34px; }
.dl-card__name { font-size: clamp(1.6rem, 3vw, 2.1rem); }
.dl-card__arch { color: var(--faint); margin-top: 5px; font-family: var(--font-mono); font-size: .78rem; }
.dl-card__stats { display: flex; gap: 28px; margin: 20px 0; }
.dl-card__stats dt { font-family: var(--font-mono); font-size: .66rem; text-transform: uppercase; letter-spacing: .1em; color: var(--faint); }
.dl-card__stats dd { font-family: var(--font-display); font-weight: 700; font-stretch: 112%; font-size: 1.05rem; margin-top: 4px; }
.dl-card__btn svg { transition: transform .3s var(--ease); }

.dl-card--windows { --pf: rgba(96,152,255,.24); --pf-ico: #bcd2ff; }

.dl-card:hover { transform: translateY(-4px); border-color: var(--purple); background: var(--panel-2); }
.dl-card:hover .dl-card__glow { opacity: 1; }
.dl-card:hover .dl-card__ico { transform: translateY(-3px); }
.dl-card:hover .dl-card__btn svg { transform: translateY(3px); }

.download__note {
  display: flex; align-items: center; justify-content: center; gap: 9px; margin-top: 26px;
  color: var(--faint); font-family: var(--font-mono); font-size: .78rem; letter-spacing: .03em;
}
.download__note svg { color: var(--torch); }

/* Unsigned-build disclosure + checksum. A <details> because the browser already
   has the open/close behaviour and the a11y semantics; no JS involved. */
.dl-verify {
  max-width: 760px; margin: 18px auto 0;
  border: 1px solid var(--line); border-radius: var(--r-sm); background: var(--panel);
}
.dl-verify summary {
  cursor: pointer; padding: 14px 18px; color: var(--muted);
  font-family: var(--font-mono); font-size: .76rem; letter-spacing: .03em;
  transition: color .2s var(--ease);
}
.dl-verify summary:hover { color: var(--text); }
.dl-verify summary::marker { color: var(--torch); }
.dl-verify[open] summary { color: var(--text); border-bottom: 1px solid var(--line); }
.dl-verify__body { display: grid; gap: 12px; padding: 16px 18px 20px; color: var(--muted); font-size: .92rem; }
.dl-verify__body b { color: var(--text); font-weight: 700; }
.dl-verify__body a { color: var(--purple-hi); text-decoration: underline; text-underline-offset: 3px; }
.dl-verify__body a:hover { color: var(--text); }
.dl-verify pre { margin: 0; }
.dl-verify code {
  display: block; padding: 10px 12px; overflow-x: auto;
  font-family: var(--font-mono); font-size: .72rem; line-height: 1.7; color: var(--purple-hi);
  background: var(--ink-2); border: 1px solid var(--line); border-radius: var(--r-xs);
  overflow-wrap: anywhere;
}

/* ---------- Launcher ---------- */
.launcher__grid { display: grid; grid-template-columns: 1.15fr .85fr; gap: clamp(30px, 5vw, 68px); align-items: center; }
.launcher__frame {
  position: relative; border-radius: var(--r); overflow: hidden;
  border: 1px solid var(--line-2); background: #0f0f14; box-shadow: var(--lift-2);
}
.launcher__frame .viz--launcher { width: 100%; height: auto; display: block; }
.launcher__text .eyebrow { margin-bottom: 18px; }
.launcher__list { margin: 28px 0 32px; display: grid; gap: 0; border-top: 1px solid var(--line); }
.launcher__list li {
  display: flex; align-items: center; gap: 14px; color: var(--muted); font-size: .96rem;
  padding: 13px 2px; border-bottom: 1px solid var(--line);
  transition: color .2s var(--ease), padding-left .25s var(--ease);
}
.launcher__list li:hover { color: var(--text); padding-left: 8px; }
.tick { flex: 0 0 auto; width: 18px; height: 18px; border-radius: 2px; background: rgba(163,91,255,.12); border: 1px solid rgba(163,91,255,.32); position: relative; }
.tick::after { content: ""; position: absolute; left: 6px; top: 2px; width: 4px; height: 9px; border: solid var(--purple-hi); border-width: 0 2px 2px 0; transform: rotate(45deg); }

/* ---------- In-game ---------- */
.ingame__stage { position: relative; }
.ingame__screen {
  position: relative; z-index: 1; border-radius: var(--r); overflow: hidden;
  border: 1px solid var(--line-2); box-shadow: var(--lift-2);
}
.ingame__screen .viz--scene { width: 100%; height: auto; display: block; }
.ingame__screen::after {
  content: ""; position: absolute; inset: 0; pointer-events: none; border-radius: inherit;
  background: repeating-linear-gradient(0deg, rgba(0,0,0,.14) 0 1px, transparent 1px 3px);
}

/* ---------- Cosmetics ---------- */
.cosmetics { position: relative; overflow: hidden; }
.cosmetics__ambient { position: absolute; inset: 0; pointer-events: none; background: radial-gradient(50% 55% at 18% 42%, rgba(163,91,255,.1), transparent 62%); }
.cosmetics .container { position: relative; z-index: 1; }
.cosmetics__layout { display: grid; grid-template-columns: .92fr 1.08fr; gap: clamp(24px, 4vw, 48px); align-items: stretch; }

.cosmetics__showcase { display: flex; flex-direction: column; }
.char-stage {
  position: relative; flex: 1; display: flex; align-items: center; justify-content: center;
  border-radius: var(--r); overflow: hidden; padding: 20px;
  background: var(--panel); border: 1px solid var(--line);
}
.char-stage::before {
  content: ""; position: absolute; inset: 0;
  background-image: linear-gradient(rgba(255,255,255,.03) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.03) 1px, transparent 1px);
  background-size: 24px 24px;
}
.char { width: 100%; max-width: 340px; height: auto; position: relative; z-index: 1; }
.char-body { transform-box: fill-box; transform-origin: center bottom; animation: charBob 6s ease-in-out infinite; }
@keyframes charBob { 0%,100%{ transform: translateY(0); } 50%{ transform: translateY(-7px); } }
.char-cape { transform-box: fill-box; transform-origin: top center; animation: capeSway 6s ease-in-out infinite .3s; }
.char-wing { transform-box: fill-box; animation: wingFlap 4.5s ease-in-out infinite; }
.char-wing--l { transform-origin: right center; }
.char-wing--r { transform-origin: left center; }
@keyframes wingFlap { 0%,100%{ transform: scaleX(1) rotate(0); } 50%{ transform: scaleX(.9) rotate(-2deg); } }

.cosmetics__cta { display: flex; flex-wrap: wrap; align-items: center; gap: 14px; margin-top: 20px; }

.cos-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; align-content: start; }
.cos-card {
  aspect-ratio: 1 / 1; display: flex; flex-direction: column; justify-content: flex-end; gap: 2px;
  padding: 20px; border-radius: var(--r); overflow: hidden; position: relative;
  background: var(--panel); border: 1px solid var(--line);
  transition: transform .28s var(--ease), border-color .28s var(--ease), background .28s var(--ease);
}
.cos-card__art { position: absolute; top: 18px; left: 20px; color: var(--purple-hi); transition: transform .4s var(--ease-out), color .3s var(--ease); }
.cos-card:hover { transform: translateY(-3px); border-color: var(--line-2); background: var(--panel-2); }
.cos-card:hover .cos-card__art { transform: scale(1.15) rotate(-6deg); color: var(--torch); }
.cos-card h3 { font-size: 1rem; }
.cos-card p { color: var(--faint); font-family: var(--font-mono); font-size: .72rem; letter-spacing: .03em; }

/* ---------- Versions ---------- */
.versions__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
.ver-card {
  position: relative; overflow: hidden;
  display: flex; flex-direction: column; padding: 22px 24px;
  border-radius: var(--r); border: 1px solid var(--line);
  background: var(--panel);
  transition: transform .28s var(--ease), border-color .28s var(--ease), background .28s var(--ease);
}
.ver-card:hover { transform: translateY(-3px); border-color: var(--line-2); background: var(--panel-2); }
.ver-card__status {
  align-self: flex-start; font-family: var(--font-mono); font-size: .66rem; font-weight: 500;
  letter-spacing: .1em; text-transform: uppercase;
  padding: 5px 10px; border-radius: var(--r-xs);
  color: var(--torch); background: rgba(255,173,61,.1); border: 1px solid rgba(255,173,61,.28);
}
.ver-card__status--ok { color: var(--grass); background: rgba(125,219,99,.08); border-color: rgba(125,219,99,.24); }
.ver-card__status--legacy { color: var(--faint); background: var(--panel-2); border-color: var(--line-2); }
.ver-card__num { margin: 26px 0 8px; font-family: var(--font-display); font-weight: 800; font-stretch: 125%; font-size: clamp(2.3rem, 5vw, 3.1rem); letter-spacing: -.05em; line-height: 1; }
.ver-card__num span { color: var(--faint); font-size: .48em; }
.ver-card__meta { display: flex; gap: 24px; }
.ver-card__meta dt { font-family: var(--font-mono); font-size: .64rem; text-transform: uppercase; letter-spacing: .1em; color: var(--faint); }
.ver-card__meta dd { font-size: .86rem; font-weight: 600; margin-top: 3px; color: var(--muted); }
.ver-card--latest { border-color: rgba(163,91,255,.42); background: linear-gradient(180deg, rgba(163,91,255,.1), var(--panel) 70%); }
.ver-card--latest .ver-card__status { color: var(--purple-hi); background: rgba(163,91,255,.14); border-color: rgba(163,91,255,.34); }
.ver-card--legacy { opacity: .8; }

/* ---------- News ---------- */
.news__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.news-card {
  display: flex; flex-direction: column; overflow: hidden;
  border-radius: var(--r); border: 1px solid var(--line); background: var(--panel);
  transition: transform .3s var(--ease), border-color .3s var(--ease), background .3s var(--ease);
}
.news-card:hover { transform: translateY(-4px); border-color: var(--line-2); background: var(--panel-2); }
.news-card__media { display: block; aspect-ratio: 16 / 9; overflow: hidden; position: relative; border-bottom: 1px solid var(--line); }
.news-card__media svg { width: 100%; height: 100%; display: block; transition: transform .6s var(--ease-out); }
.news-card:hover .news-card__media svg { transform: scale(1.05); }
.news-card__body { display: flex; flex-direction: column; gap: 9px; padding: 20px 22px 24px; flex: 1; }
.news-card__cat {
  align-self: flex-start; font-family: var(--font-mono); font-size: .64rem; font-weight: 500;
  letter-spacing: .12em; text-transform: uppercase; color: var(--purple-hi);
  padding: 4px 9px; border-radius: var(--r-xs); background: rgba(163,91,255,.1); border: 1px solid rgba(163,91,255,.22);
}
.news-card__title { font-family: var(--font-display); font-size: 1.2rem; font-weight: 700; font-stretch: 112%; letter-spacing: -.03em; line-height: 1.2; }
.news-card__date { font-family: var(--font-mono); font-size: .72rem; color: var(--faint); }
.news-card__desc { font-size: .9rem; color: var(--muted); line-height: 1.55; }
.news-card__more {
  margin-top: auto; display: inline-flex; align-items: center; gap: 6px; padding-top: 12px;
  font-size: .84rem; font-weight: 700; color: var(--purple-hi);
}
.news-card__more svg { transition: transform .28s var(--ease); }
.news-card__more:hover svg { transform: translateX(4px); }

/* ---------- Community ---------- */
.community { position: relative; overflow: hidden; }
.community__ambient { position: absolute; inset: 0; z-index: -1; pointer-events: none; background: radial-gradient(55% 50% at 50% 0%, rgba(163,91,255,.08), transparent 68%); }
.community__grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 12px; }
.social-card {
  --brand: var(--purple);
  position: relative; aspect-ratio: 1 / 1; overflow: hidden;
  display: flex; flex-direction: column; justify-content: center; align-items: center; gap: 5px; text-align: center;
  padding: 20px; border-radius: var(--r); border: 1px solid var(--line); background: var(--panel);
  transition: transform .28s var(--ease), border-color .28s var(--ease), background .28s var(--ease);
}
.social-card:hover { transform: translateY(-4px); border-color: color-mix(in srgb, var(--brand) 50%, var(--line)); background: var(--panel-2); }
.social-card__ico {
  display: grid; place-items: center; width: 54px; height: 54px; margin-bottom: 8px;
  border-radius: var(--r-sm); color: var(--brand);
  background: color-mix(in srgb, var(--brand) 10%, var(--panel-2));
  border: 1px solid color-mix(in srgb, var(--brand) 26%, var(--line));
  transition: transform .3s var(--ease-out);
}
.social-card:hover .social-card__ico { transform: translateY(-3px); }
.social-card h3 { font-family: var(--font-display); font-size: 1rem; font-weight: 700; font-stretch: 112%; }
.social-card p { font-family: var(--font-mono); font-size: .68rem; letter-spacing: .04em; color: var(--faint); line-height: 1.4; }
.social-card__go { position: absolute; top: 12px; right: 14px; color: var(--faint); opacity: 0; transform: translate(-4px, 4px); transition: opacity .25s var(--ease), transform .25s var(--ease); }
.social-card:hover .social-card__go { opacity: 1; transform: none; color: var(--brand); }
.social-card--discord { --brand: #7d8bff; }
.social-card--youtube { --brand: #ff5a5a; }
.social-card--x { --brand: #d9d9e6; }
.social-card--github { --brand: #c9a6ff; }
.social-card--reddit { --brand: #ff7a45; }
.community__note { margin-top: 20px; text-align: center; font-family: var(--font-mono); font-size: .76rem; letter-spacing: .04em; color: var(--faint); }

/* ---------- Support ---------- */
.support { margin-top: 40px; }
.support__inner {
  display: flex; align-items: center; justify-content: space-between; gap: 28px; flex-wrap: wrap;
  padding: 34px clamp(24px, 4vw, 44px);
  border-radius: var(--r); border: 1px solid var(--line-2);
  background: linear-gradient(110deg, var(--panel-2), var(--panel) 55%);
}
.support__inner h3 { font-size: clamp(1.5rem, 3vw, 1.9rem); }
.support__inner > div:first-child p { margin-top: 8px; color: var(--muted); }
.support__actions { display: flex; gap: 10px; flex-wrap: wrap; }

/* ---------- Footer ---------- */
.footer { border-top: 1px solid var(--line); padding-top: clamp(56px, 7vh, 84px); }
.footer__grid { display: grid; grid-template-columns: 1.7fr 1fr 1fr 1fr; gap: 40px 32px; padding-bottom: 48px; }
.footer__brand .nav__logo { display: inline-flex; }
.footer__tag { margin: 16px 0 18px; max-width: 30ch; color: var(--muted); font-size: .92rem; line-height: 1.55; }
.footer__platforms { display: flex; gap: 8px; flex-wrap: wrap; }
.footer__platforms li {
  font-family: var(--font-mono); font-size: .7rem; letter-spacing: .06em; color: var(--faint);
  padding: 5px 10px; border-radius: var(--r-xs); border: 1px solid var(--line);
}
.footer__col { display: flex; flex-direction: column; gap: 11px; }
.footer__col h4 { font-family: var(--font-mono); font-size: .68rem; font-weight: 500; letter-spacing: .16em; text-transform: uppercase; color: var(--faint); margin-bottom: 6px; }
.footer__col a { font-size: .9rem; color: var(--muted); transition: color .18s var(--ease); width: fit-content; }
.footer__col a:hover { color: var(--purple-hi); }
.footer__bottom {
  display: flex; align-items: center; justify-content: space-between; gap: 18px; flex-wrap: wrap;
  padding: 22px 0 32px; border-top: 1px solid var(--line);
}
.footer__disclaimer { font-size: .76rem; color: var(--faint); line-height: 1.5; max-width: 62ch; }
.footer__copy { font-family: var(--font-mono); font-size: .74rem; color: var(--faint); white-space: nowrap; }

/* ================= RESPONSIVE ================= */
@media (max-width: 1080px) {
  .features__grid { grid-template-columns: repeat(6, 1fr); }
  .feature-card { grid-column: span 3; }
  .feature-card--wide, .feature-card--reverse { grid-column: span 6; }
  .feature-card--reverse .feature-card__visual { order: 0; border-right: 0; border-left: 1px solid var(--line); }
  .why__grid { grid-template-columns: repeat(3, 1fr); }
  .why-item { border-bottom: 1px solid var(--line); }
  .why-item:nth-child(3n) { border-right: 0; }
  .launcher__grid { grid-template-columns: 1fr; gap: 34px; }
  .cosmetics__layout { grid-template-columns: 1fr; gap: 40px; }
  .char-stage { max-width: 460px; margin-inline: auto; }
  .news__grid { grid-template-columns: repeat(2, 1fr); }
  .community__grid { grid-template-columns: repeat(3, 1fr); }
  .footer__grid { grid-template-columns: 1.4fr 1fr 1fr; }
  .footer__brand { grid-column: 1 / -1; }
}
@media (max-width: 720px) {
  .nav__links, .nav__cta { display: none; }
  .nav__toggle { display: block; }
  .features__grid { grid-template-columns: 1fr; }
  .feature-card, .feature-card--wide, .feature-card--reverse { grid-column: 1 / -1; }
  .feature-card--wide { flex-direction: column; }
  .feature-card--wide .feature-card__visual { border-left: 0; border-bottom: 1px solid var(--line); min-height: 0; aspect-ratio: 40 / 22; }
  .feature-card--reverse .feature-card__visual { border-left: 0; }
  .why__grid { grid-template-columns: repeat(2, 1fr); }
  .why-item:nth-child(3n) { border-right: 1px solid var(--line); }
  .why-item:nth-child(2n) { border-right: 0; }
  .versions__grid { grid-template-columns: repeat(2, 1fr); }
  .news__grid { grid-template-columns: 1fr; }
  .cos-grid { grid-template-columns: repeat(2, 1fr); }
  .community__grid { grid-template-columns: repeat(2, 1fr); }
  .support__inner { flex-direction: column; align-items: flex-start; }
  .footer__grid { grid-template-columns: 1fr 1fr; }
  .footer__brand { grid-column: 1 / -1; }
  .footer__bottom { flex-direction: column; align-items: flex-start; }
  .footer__copy { white-space: normal; }
  .section-head--split { flex-direction: column; align-items: flex-start; gap: 16px; }
}
@media (max-width: 480px) {
  .why__grid { grid-template-columns: 1fr; }
  .why-item { border-right: 0; }
  .versions__grid, .footer__grid { grid-template-columns: 1fr; }
  .hero__cta { flex-direction: column; align-items: stretch; }
  .hero__cta .btn { width: 100%; }
}

/* ================= REDUCED MOTION ================= */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .001ms !important;
    scroll-behavior: auto !important;
  }
  .hero__title .ch { transform: none !important; }
  .ticker__track { animation: none !important; }
  [data-parallax] { transform: none !important; }
  .hero__particles { display: none; }
}
