:root {
  --ink: #050910;
  --ink-2: #07111b;
  --panel: #0b1521;
  --panel-2: #111d2b;
  --line: rgba(158, 179, 198, 0.18);
  --line-strong: rgba(34, 211, 238, 0.35);
  --cream: #f3efe6;
  --muted: #a5b3c2;
  --dim: #667688;
  --hex: #22d3ee;
  --hex-soft: rgba(34, 211, 238, 0.12);
  color-scheme: dark;
  font-family:
    "Satoshi",
    "Geist",
    "Segoe UI",
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  color: var(--cream);
  background:
    linear-gradient(90deg, rgba(34, 211, 238, 0.045), transparent 26%, transparent 78%, rgba(34, 211, 238, 0.03)),
    linear-gradient(180deg, #09131e 0%, var(--ink) 48%, #03070c 100%);
}

body::before {
  position: fixed;
  inset: 0;
  pointer-events: none;
  content: "";
  opacity: 0.2;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(to bottom, black, transparent 78%);
}

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

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

h1,
h2,
h3,
p,
figure {
  margin: 0;
}

.site-shell {
  position: relative;
  z-index: 1;
  width: min(1240px, calc(100% - 40px));
  margin: 0 auto;
}

.topbar {
  position: sticky;
  top: 16px;
  z-index: 10;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 24px;
  min-height: 64px;
  margin-top: 16px;
  padding: 10px 12px;
  border: 1px solid rgba(158, 179, 198, 0.16);
  border-radius: 12px;
  background: rgba(5, 10, 18, 0.9);
  box-shadow: 0 18px 54px rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(18px);
  animation: rise-in 520ms ease both;
}

.brand,
.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
  color: var(--cream);
  font-weight: 950;
  letter-spacing: -0.01em;
}

.brand-pedia {
  color: var(--hex);
}

.brand img,
.footer-brand img {
  width: 32px;
  height: 32px;
}

.nav-links {
  display: inline-flex;
  justify-content: center;
  gap: 4px;
  padding: 4px;
  border: 1px solid rgba(158, 179, 198, 0.12);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.03);
}

.nav-links a {
  padding: 8px 12px;
  border-radius: 7px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 850;
  transition: background 180ms ease, color 180ms ease, transform 180ms ease;
}

.nav-links a:hover {
  color: var(--cream);
  background: rgba(255, 255, 255, 0.06);
  transform: translateY(-1px);
}

.nav-download {
  justify-self: end;
}

.nav-download,
.primary-button,
.secondary-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 17px;
  border-radius: 9px;
  font-size: 14px;
  font-weight: 950;
  white-space: nowrap;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease, filter 180ms ease;
}

.nav-download,
.primary-button {
  border: 1px solid rgba(34, 211, 238, 0.68);
  color: #041017;
  background: var(--hex);
  box-shadow: 0 12px 28px rgba(34, 211, 238, 0.1);
}

.secondary-button {
  border: 1px solid rgba(158, 179, 198, 0.28);
  color: var(--cream);
  background: rgba(255, 255, 255, 0.045);
}

.nav-download:hover,
.primary-button:hover,
.secondary-button:hover {
  transform: translateY(-1px);
}

.nav-download:active,
.primary-button:active,
.secondary-button:active {
  transform: translateY(0);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 0.74fr) minmax(560px, 1.26fr);
  align-items: center;
  gap: 48px;
  min-height: 760px;
  padding: 112px 0 96px;
}

.hero-copy {
  max-width: 600px;
  animation: rise-in 720ms 80ms ease both;
}

.launch-pill,
.section-label,
.showcase-copy span {
  display: inline-flex;
  align-items: center;
  color: var(--hex);
  font-size: 11px;
  font-weight: 950;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.launch-pill {
  padding: 7px 10px;
  border: 1px solid rgba(34, 211, 238, 0.24);
  border-radius: 999px;
  background: rgba(34, 211, 238, 0.07);
}

h1 {
  margin-top: 18px;
  max-width: 680px;
  color: var(--cream);
  font-size: clamp(42px, 4.45vw, 60px);
  font-weight: 950;
  line-height: 0.98;
  letter-spacing: -0.048em;
}

.hero-copy p {
  margin-top: 24px;
  max-width: 560px;
  color: var(--muted);
  font-size: 18px;
  font-weight: 560;
  line-height: 1.56;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.hero-meta span {
  padding: 7px 9px;
  border: 1px solid rgba(158, 179, 198, 0.16);
  border-radius: 8px;
  color: var(--muted);
  background: rgba(255, 255, 255, 0.025);
  font-size: 12px;
  font-weight: 850;
}

.hero-product {
  position: relative;
  min-width: 0;
  transform: perspective(1500px) rotateX(1deg) rotateY(-2.5deg);
  transform-origin: center;
  animation: product-in 900ms 160ms cubic-bezier(0.2, 0.9, 0.2, 1) both;
}

.hero-build {
  display: grid;
  align-items: center;
  min-height: 560px;
}

.build-card {
  position: relative;
  overflow: hidden;
  padding: 18px;
  border: 1px solid rgba(34, 211, 238, 0.34);
  border-radius: 22px;
  background:
    linear-gradient(135deg, rgba(34, 211, 238, 0.08), transparent 42%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.052), rgba(255, 255, 255, 0.016)),
    #0a1320;
  box-shadow:
    0 40px 100px rgba(0, 0, 0, 0.38),
    0 0 0 1px rgba(255, 255, 255, 0.035) inset;
}

.build-card-top {
  position: relative;
  display: grid;
  grid-template-columns: 118px minmax(0, 1fr) auto;
  align-items: center;
  gap: 18px;
  padding: 16px;
  border: 1px solid rgba(158, 179, 198, 0.18);
  border-radius: 16px;
  background: rgba(4, 10, 18, 0.46);
}

.champion-portrait {
  position: relative;
  overflow: hidden;
  width: 118px;
  height: 118px;
  border: 2px solid rgba(34, 211, 238, 0.42);
  border-radius: 18px;
  background: #07101a;
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.22);
}

.champion-portrait img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.build-card-top span,
.build-label,
.route-note span {
  display: block;
  color: var(--hex);
  font-size: 11px;
  font-weight: 950;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.build-card-top h2 {
  margin-top: 5px;
  color: var(--cream);
  font-size: clamp(42px, 5.4vw, 64px);
  font-weight: 950;
  line-height: 0.9;
  letter-spacing: -0.06em;
}

.build-card-top p {
  margin-top: 8px;
  color: var(--muted);
  font-size: 16px;
  font-weight: 850;
}

.build-card-top > strong {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border: 1px solid rgba(34, 211, 238, 0.45);
  border-radius: 12px;
  color: #041017;
  background: var(--hex);
  font-size: 21px;
  font-weight: 950;
}

.build-section {
  position: relative;
  margin-top: 14px;
  padding: 15px;
  border: 1px solid rgba(158, 179, 198, 0.16);
  border-radius: 15px;
  background: rgba(7, 16, 27, 0.58);
}

.augment-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin-top: 12px;
}

.augment-row figure {
  min-width: 0;
  padding: 10px;
  border: 1px solid rgba(158, 179, 198, 0.16);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.028);
  transition: border-color 180ms ease, transform 180ms ease, background 180ms ease;
}

.augment-row figure:hover {
  transform: translateY(-1px);
  border-color: rgba(34, 211, 238, 0.3);
  background: rgba(255, 255, 255, 0.04);
}

.augment-row img {
  width: 54px;
  height: 54px;
  border: 2px solid rgba(215, 184, 106, 0.62);
  border-radius: 12px;
  object-fit: cover;
}

.augment-row figcaption {
  margin-top: 8px;
  overflow: hidden;
  color: var(--cream);
  font-size: 12px;
  font-weight: 900;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.item-row {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 10px;
  margin-top: 12px;
}

.item-row img {
  width: 100%;
  aspect-ratio: 1;
  border: 1px solid rgba(158, 179, 198, 0.34);
  border-radius: 12px;
  background: #07101a;
  object-fit: cover;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.16);
  transition: transform 180ms ease, border-color 180ms ease;
}

.item-row img:hover {
  transform: translateY(-1px);
  border-color: rgba(34, 211, 238, 0.34);
}

.route-note {
  position: relative;
  margin-top: 14px;
  padding: 15px;
  border: 1px solid rgba(34, 211, 238, 0.2);
  border-radius: 15px;
  background: rgba(34, 211, 238, 0.055);
}

.route-note p {
  margin-top: 8px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.55;
}

.build-side-card {
  position: absolute;
  width: 210px;
  padding: 13px 14px;
  border: 1px solid rgba(34, 211, 238, 0.28);
  border-radius: 12px;
  background: rgba(8, 16, 26, 0.92);
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.35);
  backdrop-filter: blur(16px);
  animation: float-card 5.6s ease-in-out infinite;
}

.build-side-card span {
  color: var(--hex);
  font-size: 28px;
  font-weight: 950;
  letter-spacing: -0.04em;
}

.build-side-card strong {
  display: block;
  margin-top: 2px;
  color: var(--cream);
  font-size: 13px;
  line-height: 1.35;
}

.side-card-one {
  right: -20px;
  top: 64px;
}

.side-card-two {
  left: -22px;
  bottom: 92px;
  animation-delay: 480ms;
}

.product-window {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(34, 211, 238, 0.32);
  border-radius: 18px;
  background: #0b121c;
  box-shadow:
    0 58px 130px rgba(0, 0, 0, 0.5),
    0 0 0 1px rgba(255, 255, 255, 0.035) inset;
}

.product-window::after {
  position: absolute;
  inset: 0;
  pointer-events: none;
  content: "";
  border-radius: inherit;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.08), transparent 26%),
    linear-gradient(90deg, transparent, rgba(34, 211, 238, 0.075), transparent);
}

.window-bar {
  display: flex;
  align-items: center;
  gap: 7px;
  height: 36px;
  padding: 0 14px;
  border-bottom: 1px solid rgba(158, 179, 198, 0.16);
  background: rgba(255, 255, 255, 0.025);
}

.window-bar span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(158, 179, 198, 0.45);
}

.window-bar span:first-child {
  background: var(--hex);
}

.window-bar strong {
  margin-left: 8px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 900;
}

.product-window img {
  width: 100%;
  aspect-ratio: 16 / 10.55;
  object-fit: cover;
  object-position: left top;
}

.product-note {
  position: absolute;
  width: 236px;
  padding: 13px 14px;
  border: 1px solid rgba(34, 211, 238, 0.28);
  border-radius: 12px;
  background: rgba(8, 16, 26, 0.92);
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.35);
  backdrop-filter: blur(16px);
  animation: float-card 5.6s ease-in-out infinite;
}

.product-note span {
  display: block;
  color: var(--dim);
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.product-note strong {
  display: block;
  margin-top: 6px;
  color: var(--cream);
  font-size: 15px;
}

.note-top {
  right: 34px;
  top: -22px;
}

.note-bottom {
  left: -18px;
  bottom: 70px;
  animation-delay: 480ms;
}

.positioning {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(420px, 1.12fr);
  gap: 46px;
  align-items: start;
  padding: 38px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background:
    linear-gradient(135deg, rgba(34, 211, 238, 0.08), transparent 38%),
    rgba(13, 21, 32, 0.68);
  box-shadow: 0 28px 90px rgba(0, 0, 0, 0.18);
}

.positioning-copy h2,
.section-heading h2,
.workflow-copy h2,
.download-copy h2 {
  margin-top: 12px;
  color: var(--cream);
  font-size: clamp(34px, 4.7vw, 58px);
  font-weight: 950;
  line-height: 1;
  letter-spacing: -0.045em;
}

.positioning-copy p,
.section-heading p,
.showcase-copy p,
.workflow-rail p,
.download-copy p,
.footer p {
  margin-top: 14px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.62;
}

.download-copy .download-support {
  margin-top: 12px;
  max-width: 62ch;
  font-size: 13px;
  line-height: 1.55;
}

.download-support a,
.footer-links a,
.legal-copy a {
  color: var(--hex);
  text-decoration: none;
}

.download-support a:hover,
.footer-links a:hover,
.legal-copy a:hover {
  text-decoration: underline;
  text-underline-offset: 3px;
}

.edge-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 13px;
  background: var(--line);
}

.edge-list article {
  min-height: 142px;
  padding: 22px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.012)),
    rgba(7, 16, 27, 0.82);
}

.edge-list strong {
  display: block;
  color: var(--cream);
  font-size: 17px;
  font-weight: 950;
  letter-spacing: -0.02em;
}

.edge-list p {
  margin-top: 9px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.55;
}

.metrics-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  overflow: hidden;
  margin-top: 18px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--line);
}

.metrics-strip div {
  min-height: 122px;
  padding: 24px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.014)),
    rgba(13, 21, 32, 0.78);
}

.metrics-strip strong {
  display: block;
  color: var(--cream);
  font-size: clamp(24px, 3vw, 34px);
  font-weight: 950;
  letter-spacing: -0.04em;
}

.metrics-strip span {
  display: block;
  margin-top: 7px;
  max-width: 190px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 760;
  line-height: 1.35;
}

.product-stage,
.workflow,
.download-panel {
  margin-top: 108px;
}

.section-heading {
  max-width: 780px;
}

.showcase-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-top: 34px;
}

.showcase-card {
  display: grid;
  gap: 22px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 18px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.014)),
    rgba(13, 21, 32, 0.74);
  box-shadow: 0 28px 90px rgba(0, 0, 0, 0.18);
  animation: rise-in linear both;
  animation-timeline: view();
  animation-range: entry 0% cover 24%;
}

.showcase-wide {
  grid-column: 1 / -1;
  grid-template-columns: 0.54fr 1.46fr;
  align-items: stretch;
}

.showcase-copy {
  padding: 28px 28px 0;
}

.showcase-wide .showcase-copy {
  padding: 34px 0 34px 34px;
}

.showcase-copy h3 {
  margin-top: 12px;
  color: var(--cream);
  font-size: clamp(25px, 3vw, 37px);
  font-weight: 950;
  line-height: 1.03;
  letter-spacing: -0.04em;
}

.screenshot-frame {
  position: relative;
  margin: 0;
  overflow: hidden;
  aspect-ratio: 16 / 9;
  border: 0;
  border-top: 1px solid rgba(34, 211, 238, 0.24);
  border-radius: 0;
  background: #07101a;
  box-shadow: none;
}

.showcase-wide .screenshot-frame {
  height: 100%;
  min-height: 430px;
  margin: 0;
  border-top: 0;
  border-left: 1px solid rgba(34, 211, 238, 0.18);
}

.screenshot-frame::after {
  position: absolute;
  inset: 0;
  pointer-events: none;
  content: "";
  border-radius: inherit;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.08), transparent 28%);
}

.screenshot-frame img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: left top;
  transition: transform 500ms ease;
}

.showcase-card:hover .screenshot-frame img {
  transform: scale(1.018);
}

.workflow {
  display: grid;
  grid-template-columns: 0.62fr 1.38fr;
  gap: 56px;
  align-items: start;
}

.workflow-rail {
  display: grid;
  gap: 1px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--line);
}

.workflow-rail article {
  display: grid;
  grid-template-columns: 72px minmax(0, 1fr);
  gap: 22px;
  padding: 25px;
  background:
    linear-gradient(90deg, rgba(34, 211, 238, 0.075), transparent 32%),
    rgba(8, 17, 28, 0.82);
}

.workflow-rail span {
  display: inline-grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border: 1px solid rgba(34, 211, 238, 0.28);
  border-radius: 9px;
  color: var(--hex);
  background: rgba(34, 211, 238, 0.06);
  font-size: 13px;
  font-weight: 950;
}

.workflow-rail h3 {
  color: var(--cream);
  font-size: 22px;
  font-weight: 930;
  letter-spacing: -0.025em;
}

.download-panel {
  display: grid;
  grid-template-columns: minmax(320px, 1fr) minmax(250px, 0.52fr);
  gap: 30px;
  align-items: stretch;
  padding: 28px;
  border: 1px solid var(--line-strong);
  border-radius: 18px;
  background:
    linear-gradient(135deg, rgba(34, 211, 238, 0.12), transparent 42%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.014)),
    rgba(13, 21, 32, 0.82);
  box-shadow: 0 30px 100px rgba(0, 0, 0, 0.24);
}

.download-copy {
  align-self: center;
  padding: 10px 8px;
}

.download-notes {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 22px;
}

.download-notes span,
.download-meta span,
.install-steps span {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 10px;
  border: 1px solid rgba(158, 179, 198, 0.16);
  border-radius: 999px;
  color: var(--muted);
  background: rgba(255, 255, 255, 0.035);
  font-size: 12px;
  font-weight: 850;
}

.download-action {
  display: flex;
  min-height: 100%;
  flex-direction: column;
  justify-content: center;
  gap: 14px;
  padding-left: 30px;
  border-left: 1px solid rgba(145, 178, 204, 0.2);
}

.download-card {
  display: grid;
  align-content: space-between;
  gap: 20px;
  min-height: 286px;
  padding: 22px;
  border: 1px solid rgba(158, 179, 198, 0.18);
  border-radius: 14px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.012)),
    rgba(5, 12, 21, 0.68);
}

.download-card-primary {
  border-color: rgba(34, 211, 238, 0.42);
  background:
    linear-gradient(180deg, rgba(34, 211, 238, 0.12), rgba(255, 255, 255, 0.012)),
    rgba(6, 16, 27, 0.82);
}

.download-badge {
  display: inline-flex;
  width: fit-content;
  margin-bottom: 18px;
  padding: 6px 8px;
  border: 1px solid rgba(34, 211, 238, 0.3);
  border-radius: 999px;
  color: var(--hex);
  background: rgba(34, 211, 238, 0.08);
  font-size: 10px;
  font-weight: 950;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.download-badge.muted {
  border-color: rgba(158, 179, 198, 0.18);
  color: var(--muted);
  background: rgba(255, 255, 255, 0.035);
}

.download-card h3 {
  color: var(--cream);
  font-size: 24px;
  font-weight: 950;
  letter-spacing: -0.035em;
}

.download-card p {
  margin-top: 10px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.55;
}

.download-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}

.download-primary {
  min-height: 48px;
  justify-content: center;
}

.install-steps {
  display: grid;
  gap: 7px;
}

.install-steps span {
  min-height: 30px;
  border-radius: 8px;
  color: var(--dim);
  background: transparent;
}

.footer {
  display: grid;
  grid-template-columns: 240px minmax(0, 1fr);
  gap: 28px;
  margin-top: 90px;
  padding: 28px 0 42px;
  border-top: 1px solid var(--line);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  grid-column: 2;
  font-size: 12px;
  font-weight: 750;
}

.legal-page {
  max-width: 860px;
  margin: 72px auto 0;
}

.legal-copy {
  margin-top: 28px;
  border-top: 1px solid var(--line);
  color: var(--muted);
}

.legal-copy section {
  padding: 28px 0;
  border-bottom: 1px solid var(--line);
}

.legal-copy h2 {
  margin: 0;
  color: var(--cream);
  font-size: 22px;
  letter-spacing: 0;
}

.legal-copy p,
.legal-copy li {
  max-width: 72ch;
  font-size: 15px;
  line-height: 1.7;
}

.legal-copy ul {
  margin: 14px 0 0;
  padding-left: 20px;
}

.footer p {
  max-width: 850px;
  margin-top: 0;
  font-size: 12px;
  color: var(--dim);
}

@keyframes rise-in {
  from {
    transform: translateY(18px);
  }

  to {
    transform: translateY(0);
  }
}

@keyframes product-in {
  from {
    transform: perspective(1500px) rotateX(7deg) rotateY(-9deg) translateY(22px) scale(0.97);
  }

  to {
    transform: perspective(1500px) rotateX(1deg) rotateY(-2.5deg) translateY(0) scale(1);
  }
}

@keyframes float-card {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-7px);
  }
}

@media (max-width: 980px) {
  .site-shell {
    width: min(100% - 28px, 760px);
  }

  .topbar {
    grid-template-columns: 1fr auto;
  }

  .nav-links {
    display: none;
  }

  .hero,
  .positioning,
  .workflow,
  .download-panel {
    grid-template-columns: 1fr;
  }

  .hero {
    gap: 34px;
    min-height: auto;
    padding-top: 54px;
  }

  .hero-product {
    transform: none;
  }

  .hero-build {
    min-height: auto;
  }

  .showcase-grid,
  .showcase-wide {
    grid-template-columns: 1fr;
  }

  .showcase-wide {
    grid-column: auto;
  }

  .showcase-wide .showcase-copy,
  .showcase-copy {
    padding: 24px 24px 0;
  }

  .showcase-wide .screenshot-frame,
  .screenshot-frame {
    min-height: 0;
    margin: 0;
    border-left: 0;
    border-top: 1px solid rgba(34, 211, 238, 0.18);
  }

  .download-action {
    min-height: 0;
    padding: 22px 8px 0;
    border-top: 1px solid rgba(145, 178, 204, 0.2);
    border-left: 0;
  }

  .metrics-strip {
    grid-template-columns: repeat(2, 1fr);
  }

  .product-note,
  .build-side-card {
    display: none;
  }

  .footer {
    grid-template-columns: 1fr;
  }

  .footer-links {
    grid-column: auto;
  }
}

@media (max-width: 620px) {
  .site-shell {
    width: min(100% - 22px, 430px);
  }

  .topbar {
    top: 10px;
    min-height: 58px;
  }

  .brand span {
    display: none;
  }

  .nav-download {
    padding-inline: 12px;
    font-size: 12px;
  }

  h1 {
    font-size: 43px;
  }

  .hero-copy p {
    font-size: 16px;
  }

  .positioning,
  .download-panel {
    padding: 22px;
  }

  .build-card {
    padding: 12px;
    border-radius: 18px;
  }

  .build-card-top {
    grid-template-columns: 78px minmax(0, 1fr) auto;
    gap: 12px;
    padding: 12px;
  }

  .champion-portrait {
    width: 78px;
    height: 78px;
    border-radius: 14px;
  }

  .build-card-top h2 {
    font-size: 38px;
  }

  .build-card-top p {
    font-size: 13px;
  }

  .build-card-top > strong {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    font-size: 17px;
  }

  .augment-row {
    grid-template-columns: 1fr;
  }

  .augment-row figure {
    display: grid;
    grid-template-columns: 42px minmax(0, 1fr);
    align-items: center;
    gap: 10px;
  }

  .augment-row img {
    width: 42px;
    height: 42px;
    border-radius: 9px;
  }

  .augment-row figcaption {
    margin-top: 0;
  }

  .item-row {
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 6px;
  }

  .edge-list,
  .metrics-strip {
    grid-template-columns: 1fr;
  }

  .workflow-rail article {
    grid-template-columns: 44px minmax(0, 1fr);
    gap: 14px;
    padding: 20px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition: none !important;
    animation: none !important;
  }
}

/* Landing page redesign. Kept under .site-v2 so the privacy page stays quiet and legal-first. */
body.site-v2 {
  --landing-ink: #050a11;
  --landing-panel: #0a1420;
  --landing-panel-2: #0d1a28;
  --landing-line: rgba(156, 177, 195, 0.16);
  --landing-text: #f2efe8;
  --landing-muted: #9aabba;
  --landing-cyan: #55d4e3;
  --landing-gold: #d5b76a;
  background:
    linear-gradient(180deg, #0a131c 0%, #050a11 34%, #060c13 70%, #04080d 100%);
}

.site-v2::before {
  opacity: 0.34;
  background-image:
    linear-gradient(rgba(122, 164, 190, 0.038) 1px, transparent 1px),
    linear-gradient(90deg, rgba(122, 164, 190, 0.038) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: linear-gradient(to bottom, black 0%, rgba(0, 0, 0, 0.66) 45%, transparent 92%);
}

.site-v2 .landing-shell {
  position: relative;
  z-index: 1;
  width: min(1320px, calc(100% - 48px));
  margin: 0 auto;
}

.site-v2 .skip-link {
  position: fixed;
  z-index: 100;
  left: 20px;
  top: -50px;
  padding: 10px 14px;
  border-radius: 7px;
  color: #041017;
  background: var(--landing-cyan);
  font-weight: 800;
  transition: top 180ms ease;
}

.site-v2 .skip-link:focus { top: 20px; }

.site-v2 .landing-nav {
  position: sticky;
  top: 16px;
  z-index: 20;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  min-height: 58px;
  margin-top: 16px;
  padding: 7px 8px 7px 13px;
  border: 1px solid rgba(166, 190, 207, 0.14);
  border-radius: 10px;
  background: rgba(6, 12, 19, 0.72);
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.14), inset 0 1px rgba(255, 255, 255, 0.035);
  backdrop-filter: blur(20px);
  transition: background 220ms ease, border-color 220ms ease, transform 220ms ease;
}

.site-v2 .landing-nav.is-scrolled {
  border-color: rgba(85, 212, 227, 0.27);
  background: rgba(5, 10, 17, 0.9);
  transform: translateY(-2px);
}

.site-v2 .landing-brand {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  width: max-content;
  color: var(--landing-text);
  font-size: 14px;
  font-weight: 900;
  letter-spacing: -0.035em;
}

.site-v2 .landing-brand img { width: 28px; height: 28px; }
.site-v2 .landing-brand > span > span { color: var(--landing-cyan); }
.site-v2 .landing-brand small { display: block; margin-top: 1px; color: #6f8493; font-size: 8px; font-weight: 760; letter-spacing: 0.08em; text-transform: uppercase; }

.site-v2 .landing-links {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 3px;
  border: 1px solid rgba(157, 182, 201, 0.1);
  border-radius: 7px;
  background: rgba(255, 255, 255, 0.018);
}

.site-v2 .landing-links a,
.site-v2 .nav-cta,
.site-v2 .nav-build {
  font-size: 12px;
  font-weight: 760;
  transition: color 180ms ease, background 180ms ease, transform 180ms ease;
}

.site-v2 .landing-links a { padding: 8px 10px; border-radius: 5px; color: var(--landing-muted); }
.site-v2 .landing-links a:hover { color: var(--landing-text); background: rgba(255, 255, 255, 0.05); }
.site-v2 .discord-link, .site-v2 .discord-inline { display: inline-flex; align-items: center; gap: 6px; }
.site-v2 .discord-link img, .site-v2 .discord-inline img { width: 14px; height: 14px; flex: 0 0 auto; }
.site-v2 .nav-actions { display: flex; justify-self: end; align-items: center; gap: 10px; }
.site-v2 .nav-build { display: inline-flex; align-items: center; gap: 6px; color: #8599a8; font-size: 10px; white-space: nowrap; }
.site-v2 .nav-build i { width: 5px; height: 5px; border-radius: 50%; background: var(--landing-cyan); box-shadow: 0 0 0 3px rgba(85, 212, 227, 0.1); }
.site-v2 .nav-build b { padding-left: 6px; border-left: 1px solid rgba(156, 177, 195, 0.24); color: var(--landing-gold); font-size: 10px; }
.site-v2 .nav-cta { padding: 10px 12px; border-radius: 6px; color: #041017; background: var(--landing-cyan); }
.site-v2 .nav-cta:hover, .site-v2 .button-main:hover { transform: translateY(-2px); filter: brightness(1.06); }
.site-v2 .nav-cta:active, .site-v2 .button-main:active { transform: translateY(0); }

.site-v2 .launch-hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(360px, 0.83fr) minmax(580px, 1.17fr);
  gap: clamp(42px, 6vw, 94px);
  align-items: center;
  min-height: 720px;
  padding: 108px 16px 94px;
}

.site-v2 .hero-grid-lines {
  position: absolute;
  top: 0;
  left: 50%;
  width: 100vw;
  height: 100%;
  pointer-events: none;
  transform: translateX(-50%);
  background:
    linear-gradient(90deg, transparent 0 16.6%, rgba(85, 212, 227, 0.055) 16.6% calc(16.6% + 1px), transparent calc(16.6% + 1px) 83.3%, rgba(85, 212, 227, 0.055) 83.3% calc(83.3% + 1px), transparent calc(83.3% + 1px)),
    radial-gradient(ellipse at 72% 44%, rgba(69, 177, 200, 0.19), transparent 37%);
  mask-image: linear-gradient(to bottom, transparent, black 14%, black 78%, transparent);
}

.site-v2 .hero-copy, .site-v2 .hero-stage { position: relative; z-index: 1; }
.site-v2 .eyebrow {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--landing-cyan);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.site-v2 .status-dot { width: 7px; height: 7px; border-radius: 999px; background: var(--landing-cyan); box-shadow: 0 0 0 4px rgba(85, 212, 227, 0.11); animation: status-breathe 2.4s ease-in-out infinite; }
.site-v2 .eyebrow-divider { width: 1px; height: 12px; background: rgba(156, 177, 195, 0.38); }

.site-v2 .hero-copy h1 {
  max-width: 670px;
  margin-top: 21px;
  color: var(--landing-text);
  font-size: clamp(50px, 5.4vw, 78px);
  font-weight: 900;
  line-height: 0.91;
  letter-spacing: -0.07em;
  text-wrap: balance;
}

.site-v2 h1 em, .site-v2 h2 em { color: var(--landing-gold); font-style: normal; }
.site-v2 .hero-summary { max-width: 52ch; margin-top: 25px; color: var(--landing-muted); font-size: 17px; font-weight: 500; line-height: 1.6; }
.site-v2 .hero-actions { display: flex; flex-wrap: wrap; align-items: center; gap: 20px; margin-top: 31px; }

.site-v2 .button-main {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  min-height: 50px;
  padding: 0 17px;
  border: 1px solid rgba(85, 212, 227, 0.8);
  border-radius: 7px;
  color: #041017;
  background: var(--landing-cyan);
  box-shadow: 0 16px 42px rgba(20, 144, 161, 0.18);
  font-size: 13px;
  font-weight: 900;
  transition: transform 180ms ease, filter 180ms ease, box-shadow 180ms ease;
}

.site-v2 .button-main span, .site-v2 .story-link span { font-size: 16px; transition: transform 180ms ease; }
.site-v2 .button-main:hover span, .site-v2 .story-link:hover span { transform: translateX(3px); }
.site-v2 .button-text, .site-v2 .story-link { color: var(--landing-text); font-size: 13px; font-weight: 800; }
.site-v2 .button-text { border-bottom: 1px solid rgba(85, 212, 227, 0.48); padding-bottom: 4px; }

.site-v2 .hero-facts { display: flex; flex-wrap: wrap; gap: 0; margin-top: 54px; }
.site-v2 .hero-facts div { min-width: 126px; padding-right: 24px; margin-right: 24px; border-right: 1px solid var(--landing-line); }
.site-v2 .hero-facts div:last-child { padding-right: 0; margin-right: 0; border-right: 0; }
.site-v2 .hero-facts dt { color: var(--landing-text); font-size: 22px; font-weight: 900; letter-spacing: -0.04em; }
.site-v2 .hero-facts dd { margin: 4px 0 0; color: var(--landing-muted); font-size: 11px; font-weight: 650; }

.site-v2 .hero-stage { min-height: 530px; perspective: 1300px; }
.site-v2 .stage-halo { position: absolute; inset: 12% -7% 0 7%; background: radial-gradient(ellipse, rgba(47, 180, 200, 0.2), rgba(20, 62, 82, 0.08) 36%, transparent 70%); filter: blur(18px); animation: halo-shift 7s ease-in-out infinite; }
.site-v2 .hero-device { position: absolute; top: 10px; right: 3%; width: min(680px, 96%); margin: 0; overflow: hidden; border: 1px solid rgba(154, 195, 212, 0.38); border-radius: 12px; background: #08121d; box-shadow: 0 42px 90px rgba(0, 0, 0, 0.43), inset 0 1px rgba(255, 255, 255, 0.08); transform: rotateX(var(--rx, 0deg)) rotateY(var(--ry, 0deg)); transition: transform 190ms cubic-bezier(.2,.8,.2,1); will-change: transform; }
.site-v2 .hero-device::after { position: absolute; inset: 0; pointer-events: none; content: ''; background: linear-gradient(112deg, rgba(255,255,255,0.12), transparent 17%, transparent 67%, rgba(85,212,227,0.08)); }
.site-v2 .device-topbar { display: flex; align-items: center; gap: 6px; height: 30px; padding: 0 11px; border-bottom: 1px solid rgba(156,177,195,0.15); background: #09111a; }
.site-v2 .device-topbar span { width: 5px; height: 5px; border-radius: 50%; background: rgba(156,177,195,0.43); }
.site-v2 .device-topbar span:first-child { background: var(--landing-cyan); }
.site-v2 .device-topbar b { margin-left: 5px; color: #9baebd; font-size: 9px; font-weight: 800; letter-spacing: 0.07em; text-transform: uppercase; }
.site-v2 .hero-device img { width: 100%; aspect-ratio: 16 / 9; object-fit: cover; object-position: left top; }

.site-v2 .floating-readout { position: absolute; z-index: 2; width: 204px; padding: 13px; border: 1px solid rgba(178, 204, 218, 0.24); border-radius: 9px; background: rgba(7, 17, 27, 0.78); box-shadow: 0 20px 50px rgba(0,0,0,0.35), inset 0 1px rgba(255,255,255,0.04); backdrop-filter: blur(14px); transition: transform 190ms cubic-bezier(.2,.8,.2,1); }
.site-v2 .readout-augment { top: 3%; left: -4%; animation: float-y 5.8s ease-in-out infinite; }
.site-v2 .readout-items { right: -4%; bottom: 3%; animation: float-y 6.3s ease-in-out infinite reverse; }
.site-v2 .readout-kicker, .site-v2 .story-label { display: block; color: var(--landing-cyan); font-size: 9px; font-weight: 900; letter-spacing: 0.14em; text-transform: uppercase; }
.site-v2 .floating-readout strong { display: block; margin-top: 7px; color: var(--landing-text); font-size: 14px; font-weight: 850; line-height: 1.16; letter-spacing: -0.02em; }
.site-v2 .readout-icons, .site-v2 .micro-item-row { display: flex; align-items: center; gap: 6px; margin-top: 12px; }
.site-v2 .readout-icons img, .site-v2 .micro-item-row img { width: 34px; height: 34px; border: 1px solid rgba(85,212,227,0.46); border-radius: 6px; object-fit: cover; }
.site-v2 .micro-item-row i { width: 10px; height: 1px; background: rgba(156,177,195,0.45); }

.site-v2 .signal-band { position: relative; left: 50%; width: 100vw; overflow: hidden; border-top: 1px solid var(--landing-line); border-bottom: 1px solid var(--landing-line); transform: translateX(-50%); background: rgba(10, 22, 33, 0.48); }
.site-v2 .signal-track { width: max-content; padding: 14px 0; animation: slide-track 28s linear infinite; }
.site-v2 .signal-run { display: flex; align-items: center; gap: 18px; padding-left: 18px; color: #91a9b9; font-size: 11px; font-weight: 850; letter-spacing: 0.1em; text-transform: uppercase; white-space: nowrap; }
.site-v2 .signal-run i { width: 5px; height: 5px; border-radius: 50%; background: var(--landing-gold); }

.site-v2 .decision-intro { display: grid; grid-template-columns: 0.5fr 1.2fr; gap: clamp(45px, 10vw, 160px); padding: 142px 0 40px; }
.site-v2 .section-index { display: flex; align-items: flex-start; gap: 13px; color: var(--landing-muted); font-size: 10px; font-weight: 800; letter-spacing: 0.1em; line-height: 1.3; text-transform: uppercase; }
.site-v2 .section-index > span:first-child { display: grid; place-items: center; width: 29px; height: 29px; border: 1px solid rgba(213,183,106,0.45); border-radius: 6px; color: var(--landing-gold); font-size: 11px; }
.site-v2 .decision-head h2, .site-v2 .stories-heading h2, .site-v2 .trust-lead h2, .site-v2 .download-main h2 { margin: 22px 0 0; color: var(--landing-text); font-size: clamp(37px, 4vw, 59px); font-weight: 900; line-height: 0.96; letter-spacing: -0.06em; text-wrap: balance; }
.site-v2 .decision-head p { max-width: 54ch; margin: 21px 0 0; color: var(--landing-muted); font-size: 16px; line-height: 1.65; }
.site-v2 .decision-steps { grid-column: 2; display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; overflow: hidden; margin-top: 28px; border: 1px solid var(--landing-line); border-radius: 10px; background: var(--landing-line); }
.site-v2 .decision-steps article { min-height: 184px; padding: 21px; background: rgba(10, 21, 32, 0.74); }
.site-v2 .decision-steps article > span { color: var(--landing-gold); font-size: 11px; font-weight: 900; letter-spacing: 0.1em; }
.site-v2 .decision-steps h3 { margin-top: 30px; color: var(--landing-text); font-size: 17px; font-weight: 850; letter-spacing: -0.025em; }
.site-v2 .decision-steps p { margin-top: 9px; color: var(--landing-muted); font-size: 13px; line-height: 1.55; }

.site-v2 .app-stories { margin-top: 135px; }
.site-v2 .stories-heading { display: grid; grid-template-columns: 0.44fr 1.2fr; gap: clamp(45px, 10vw, 160px); align-items: start; margin-bottom: 42px; }
.site-v2 .stories-heading h2 { margin-top: 0; max-width: 800px; }
.site-v2 .story { display: grid; grid-template-columns: minmax(280px, 0.65fr) minmax(500px, 1.35fr); gap: clamp(26px, 4vw, 64px); align-items: center; margin-top: 20px; padding: 32px; border-top: 1px solid var(--landing-line); border-bottom: 1px solid var(--landing-line); }
.site-v2 .story-combat { grid-template-columns: minmax(500px, 1.35fr) minmax(280px, 0.65fr); background: rgba(12, 27, 39, 0.42); }
.site-v2 .story-copy { max-width: 420px; }
.site-v2 .story-number { color: rgba(213,183,106,0.76); font-size: 12px; font-weight: 900; letter-spacing: 0.13em; }
.site-v2 .story-copy h3 { margin-top: 15px; color: var(--landing-text); font-size: clamp(29px, 3.1vw, 43px); font-weight: 900; line-height: 1; letter-spacing: -0.055em; }
.site-v2 .story-copy > p:not(.story-label) { margin-top: 15px; color: var(--landing-muted); font-size: 14px; line-height: 1.65; }
.site-v2 .story-link { display: inline-flex; align-items: center; gap: 8px; margin-top: 23px; color: var(--landing-cyan); }
.site-v2 .story-screen { position: relative; overflow: hidden; margin: 0; border: 1px solid rgba(157,190,207,0.24); border-radius: 9px; background: #06101a; box-shadow: 0 30px 70px rgba(0,0,0,0.26); transition: transform 250ms cubic-bezier(.2,.8,.2,1), border-color 250ms ease; will-change: transform; }
.site-v2 .story-screen::after { position: absolute; inset: 0; pointer-events: none; content: ''; background: linear-gradient(120deg, rgba(255,255,255,0.08), transparent 18%, transparent 75%, rgba(85,212,227,0.045)); }
.site-v2 .story-screen:hover { border-color: rgba(85,212,227,0.5); }
.site-v2 .story-screen { aspect-ratio: 16 / 9; }
.site-v2 .story-screen img { display: block; width: 100%; height: 100%; object-fit: cover; object-position: left top; }
.site-v2 .combat-screen { aspect-ratio: 16 / 9; }
.site-v2 .combat-screen img { object-position: top center; }
.site-v2 .route-pulse { display: flex; align-items: center; flex-wrap: wrap; gap: 8px; margin-top: 23px; color: var(--landing-text); font-size: 10px; font-weight: 850; letter-spacing: 0.07em; text-transform: uppercase; }
.site-v2 .route-pulse span { padding: 7px 8px; border: 1px solid var(--landing-line); border-radius: 4px; background: rgba(255,255,255,0.026); }
.site-v2 .route-pulse i { width: 15px; height: 1px; background: rgba(85,212,227,0.52); }
.site-v2 .capture-note { display: flex; align-items: center; gap: 9px; margin-top: 23px; color: var(--landing-muted); font-size: 11px; font-weight: 740; }
.site-v2 .capture-note .status-dot { width: 5px; height: 5px; box-shadow: none; }

.site-v2 .trust-grid { display: grid; grid-template-columns: 0.92fr 1.08fr; gap: clamp(35px, 7vw, 120px); align-items: start; margin-top: 142px; padding: 50px 0; border-top: 1px solid var(--landing-line); border-bottom: 1px solid var(--landing-line); }
.site-v2 .trust-lead h2 { max-width: 590px; font-size: clamp(35px, 3.8vw, 52px); }
.site-v2 .trust-lead p { max-width: 54ch; margin-top: 17px; color: var(--landing-muted); font-size: 14px; line-height: 1.65; }
.site-v2 .trust-list { display: grid; gap: 1px; overflow: hidden; border: 1px solid var(--landing-line); border-radius: 9px; background: var(--landing-line); }
.site-v2 .trust-list article { min-height: 160px; padding: 22px; background: rgba(8, 17, 27, 0.76); }
.site-v2 .trust-list span { color: var(--landing-gold); font-size: 10px; font-weight: 900; letter-spacing: 0.14em; text-transform: uppercase; }
.site-v2 .trust-list p { max-width: 58ch; margin: 12px 0; color: var(--landing-text); font-size: 14px; line-height: 1.55; }
.site-v2 .trust-list a, .site-v2 .download-fineprint a, .site-v2 .landing-footer a { color: var(--landing-cyan); font-size: 12px; font-weight: 800; }

.site-v2 .download-landing { position: relative; display: grid; grid-template-columns: 1fr minmax(310px, 0.7fr); gap: 76px; overflow: hidden; margin-top: 120px; padding: clamp(34px, 5vw, 67px); border: 1px solid rgba(85,212,227,0.38); border-radius: 12px; background: rgba(11, 26, 37, 0.82); box-shadow: 0 28px 90px rgba(0,0,0,0.25), inset 0 1px rgba(255,255,255,0.05); }
.site-v2 .download-grid-glow { position: absolute; inset: 0; pointer-events: none; background: radial-gradient(circle at 17% 38%, rgba(85,212,227,0.16), transparent 32%), linear-gradient(90deg, rgba(85,212,227,0.06) 1px, transparent 1px), linear-gradient(rgba(85,212,227,0.05) 1px, transparent 1px); background-size: auto, 44px 44px, 44px 44px; mask-image: linear-gradient(90deg, black, transparent 90%); }
.site-v2 .download-main, .site-v2 .install-path { position: relative; z-index: 1; }
.site-v2 .download-main h2 { max-width: 680px; font-size: clamp(42px, 4.6vw, 64px); }
.site-v2 .download-main p:not(.download-fineprint) { max-width: 57ch; margin-top: 19px; color: var(--landing-muted); font-size: 15px; line-height: 1.6; }
.site-v2 .large-button { margin-top: 28px; padding-inline: 20px; }
.site-v2 .download-fineprint { margin: 17px 0 0; color: #8194a2; font-size: 11px; }
.site-v2 .download-fineprint span { padding: 0 7px; color: #566a79; }
.site-v2 .install-path { display: grid; align-content: center; gap: 1px; overflow: hidden; margin: 0; padding: 0; border: 1px solid rgba(156,177,195,0.18); border-radius: 8px; background: rgba(156,177,195,0.15); list-style: none; }
.site-v2 .install-path li { display: grid; grid-template-columns: 45px 1fr; gap: 13px; align-items: center; min-height: 86px; padding: 15px; background: rgba(5, 12, 19, 0.54); }
.site-v2 .install-path li > span { display: grid; place-items: center; width: 31px; height: 31px; border: 1px solid rgba(85,212,227,0.42); border-radius: 5px; color: var(--landing-cyan); font-size: 11px; font-weight: 900; }
.site-v2 .install-path strong { display: block; color: var(--landing-text); font-size: 14px; font-weight: 840; }
.site-v2 .install-path small { display: block; margin-top: 4px; color: var(--landing-muted); font-size: 11px; }

.site-v2 .landing-footer { display: grid; grid-template-columns: 0.6fr 1.45fr auto; gap: 34px; align-items: start; margin-top: 70px; padding: 30px 0 44px; border-top: 1px solid var(--landing-line); }
.site-v2 .landing-footer p { max-width: 72ch; margin: 0; color: #738695; font-size: 11px; line-height: 1.6; }
.site-v2 .landing-footer nav { display: flex; gap: 14px; }

body.site-v2.motion-ready [data-reveal] { opacity: 0; transform: translateY(22px); transition: opacity 620ms cubic-bezier(.2,.8,.2,1), transform 620ms cubic-bezier(.2,.8,.2,1); transition-delay: calc(var(--reveal-delay, 0) * 1ms); }
body.site-v2.motion-ready [data-reveal].is-visible { opacity: 1; transform: translateY(0); }
.site-v2 [data-delay="80"] { --reveal-delay: 80; }
.site-v2 [data-delay="90"] { --reveal-delay: 90; }
.site-v2 [data-delay="120"] { --reveal-delay: 120; }
.site-v2 [data-delay="180"] { --reveal-delay: 180; }

@keyframes status-breathe { 50% { opacity: 0.48; box-shadow: 0 0 0 7px rgba(85,212,227,0.02); } }
@keyframes halo-shift { 50% { transform: scale(1.08) translate3d(-1%, 2%, 0); opacity: 0.72; } }
@keyframes float-y { 50% { translate: 0 -8px; } }
@keyframes slide-track { to { transform: translateX(-50%); } }

@media (max-width: 1050px) {
  .site-v2 .landing-shell { width: min(100% - 34px, 840px); }
  .site-v2 .launch-hero, .site-v2 .decision-intro, .site-v2 .stories-heading, .site-v2 .trust-grid, .site-v2 .download-landing { grid-template-columns: 1fr; }
  .site-v2 .launch-hero { gap: 46px; min-height: auto; padding-top: 82px; }
  .site-v2 .hero-stage { min-height: 500px; max-width: 760px; width: 100%; margin: 0 auto; }
  .site-v2 .decision-steps { grid-column: auto; }
  .site-v2 .story, .site-v2 .story-combat { grid-template-columns: 1fr; }
  .site-v2 .story-combat .story-screen { order: 2; }
  .site-v2 .story-combat .story-copy { order: 1; }
  .site-v2 .landing-footer { grid-template-columns: 0.55fr 1.45fr; }
  .site-v2 .landing-footer nav { grid-column: 2; }
}

@media (max-width: 680px) {
  .site-v2 .landing-shell { width: min(100% - 24px, 520px); }
  .site-v2 .landing-nav { grid-template-columns: 1fr auto; top: 10px; margin-top: 10px; }
  .site-v2 .landing-links { display: none; }
  .site-v2 .nav-build { display: none; }
  .site-v2 .nav-cta { padding-inline: 10px; }
  .site-v2 .launch-hero { padding: 67px 0 62px; }
  .site-v2 .hero-copy h1 { font-size: clamp(44px, 13vw, 61px); }
  .site-v2 .hero-summary { font-size: 15px; }
  .site-v2 .hero-facts { margin-top: 37px; }
  .site-v2 .hero-facts div { min-width: 0; flex: 1; padding-right: 11px; margin-right: 11px; }
  .site-v2 .hero-facts dt { font-size: 18px; }
  .site-v2 .hero-stage { min-height: 312px; }
  .site-v2 .hero-device { top: 20px; right: 0; width: 100%; }
  .site-v2 .floating-readout { display: none; }
  .site-v2 .decision-intro, .site-v2 .app-stories { margin-top: 86px; padding-top: 0; }
  .site-v2 .decision-steps { grid-template-columns: 1fr; }
  .site-v2 .decision-steps article { min-height: 0; }
  .site-v2 .decision-steps h3 { margin-top: 16px; }
  .site-v2 .stories-heading { margin-bottom: 25px; }
  .site-v2 .story { gap: 26px; margin-top: 12px; padding: 24px 0; }
  .site-v2 .story-copy h3 { font-size: 32px; }
  .site-v2 .trust-grid { margin-top: 84px; padding: 35px 0; }
  .site-v2 .download-landing { gap: 35px; margin-top: 78px; padding: 27px; }
  .site-v2 .download-main h2 { font-size: 42px; }
  .site-v2 .landing-footer { grid-template-columns: 1fr; gap: 20px; margin-top: 50px; }
  .site-v2 .landing-footer nav { grid-column: auto; flex-wrap: wrap; }
}

@media (prefers-reduced-motion: reduce) {
  .site-v2 .signal-track { animation: none; }
}
