:root {
  --bg0: #070a12;
  --bg1: #0b1220;
  --fg: #e8eefc;
  --muted: rgba(232, 238, 252, 0.72);
  --card: rgba(255, 255, 255, 0.06);
  --card2: rgba(255, 255, 255, 0.08);
  --stroke: rgba(255, 255, 255, 0.12);
  --shadow: 0 22px 90px rgba(0, 0, 0, 0.55);
  --r: 18px;
  --r2: 26px;
}

* {
  box-sizing: border-box;
}

html,
body {
  height: 100%;
}

body {
  margin: 0;
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, sans-serif;
  color: var(--fg);
  /* Base fill (real background lives on body::before for a stable scroll look) */
  background: var(--bg1);
  position: relative;
  min-height: 100vh;
}

/* Fixed background layer so the “nice top-of-page” look doesn’t fade as you scroll */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    radial-gradient(900px 500px at 15% 15%, rgba(124, 58, 237, 0.28), transparent 55%),
    radial-gradient(700px 400px at 78% 20%, rgba(34, 197, 94, 0.18), transparent 60%),
    radial-gradient(900px 600px at 60% 95%, rgba(56, 189, 248, 0.12), transparent 55%),
    linear-gradient(180deg, var(--bg0), var(--bg1));
}

body.modal-open {
  overflow: hidden;
}

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

.container {
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(14px);
  background: rgba(8, 10, 18, 0.6);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
  gap: 18px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 220px;
}

.mark {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.mark svg {
  width: 32px;
  height: 32px;
  display: block;
}

.logo-img {
  width: 44px;
  height: 44px;
  display: block;
  border-radius: 12px;
  object-fit: cover;
}

.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.brand-name {
  font-weight: 780;
  letter-spacing: 0.2px;
}

.brand-tag {
  font-size: 12px;
  color: var(--muted);
  margin-top: 2px;
}

.nav {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.nav-link {
  font-size: 14px;
  color: var(--muted);
  padding: 8px 10px;
  border-radius: 10px;
}

.nav-link:hover {
  color: var(--fg);
  background: rgba(255, 255, 255, 0.06);
}

.nav-cta {
  color: var(--fg);
  background: linear-gradient(135deg, rgba(124, 58, 237, 0.7), rgba(34, 197, 94, 0.65));
  border: 1px solid rgba(255, 255, 255, 0.18);
}

.nav-cta:hover {
  background: linear-gradient(135deg, rgba(124, 58, 237, 0.85), rgba(34, 197, 94, 0.8));
}

.hero {
  padding: 56px 0 22px;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 36px;
  align-items: center;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  color: rgba(232, 238, 252, 0.78);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin: 0 0 10px 0;
}

h1 {
  margin: 0 0 14px 0;
  font-size: clamp(34px, 4.3vw, 58px);
  letter-spacing: -0.02em;
  line-height: 1.02;
}

.subtitle {
  margin: 0 0 22px 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.55;
  max-width: 56ch;
}

.cta-row {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  align-items: center;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 16px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.06);
  color: var(--fg);
  font-weight: 680;
  font-size: 14px;
  letter-spacing: 0.2px;
  transition: transform 160ms ease, background 160ms ease, border-color 160ms ease;
}

.btn:hover {
  transform: translateY(-1px);
  background: rgba(255, 255, 255, 0.09);
  border-color: rgba(255, 255, 255, 0.24);
}

.btn.primary {
  background: linear-gradient(135deg, rgba(124, 58, 237, 0.75), rgba(34, 197, 94, 0.55));
  border-color: rgba(255, 255, 255, 0.22);
}

.btn.primary:hover {
  background: linear-gradient(135deg, rgba(124, 58, 237, 0.9), rgba(34, 197, 94, 0.72));
}

.btn.secondary {
  background: rgba(255, 255, 255, 0.07);
}

.btn.ghost {
  background: transparent;
}

.microcopy {
  margin: 12px 0 0 0;
  color: rgba(232, 238, 252, 0.62);
  font-size: 13px;
}

.hero-media {
  display: grid;
  gap: 14px;
}

.hero-media .shot {
  /* Keep the hero screenshot from dominating the fold on tall/narrow screens */
  max-height: min(62vh, 640px);
  display: grid;
  place-items: center;
}

.hero-carousel {
  position: relative;
  width: 100%;
  height: min(62vh, 640px);
  max-height: min(62vh, 640px);
}

.hero-carousel .hero-slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  opacity: 0;
  transition: opacity 800ms ease;
}

.hero-carousel .hero-slide.is-active {
  opacity: 1;
}

.hero-dots {
  position: absolute;
  bottom: 10px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  padding: 8px 10px;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.28);
  border: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(10px);
}

.hero-dot {
  border: 0;
  padding: 0;
  width: 7px;
  height: 7px;
  border-radius: 99px;
  background: rgba(232, 238, 252, 0.35);
  cursor: pointer;
}

.hero-dot.is-active {
  background: rgba(232, 238, 252, 0.9);
}

.hero-dot:focus-visible {
  outline: 2px solid rgba(124, 58, 237, 0.9);
  outline-offset: 3px;
}

@media (prefers-reduced-motion: reduce) {
  .hero-carousel .hero-slide {
    transition: none;
  }
  .hero-dots {
    display: none;
  }
  .hero-carousel .hero-slide:not(.is-active) {
    display: none;
  }
}

.shot {
  border-radius: var(--r2);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.04);
  box-shadow: var(--shadow);
}

.shot img {
  width: 100%;
  height: auto;
  display: block;
}

.stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

.stat {
  padding: 12px 12px;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.05);
}

.stat-k {
  color: rgba(232, 238, 252, 0.7);
  font-size: 12px;
  margin-bottom: 6px;
}

.stat-v {
  font-weight: 740;
  font-size: 14px;
}

.section {
  padding: 46px 0;
}

.section-alt {
  background: rgba(255, 255, 255, 0.03);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

h2 {
  margin: 0 0 14px 0;
  font-size: clamp(24px, 2.5vw, 34px);
  letter-spacing: -0.01em;
}

.lead {
  margin: 0 0 18px 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.55;
  max-width: 70ch;
}

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

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

.card {
  padding: 16px 16px;
  border-radius: var(--r);
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: var(--card);
}

.card:hover {
  background: var(--card2);
}

.card h3 {
  margin: 0 0 8px 0;
  font-size: 16px;
  letter-spacing: -0.01em;
}

.card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.5;
}

.privacy-content h2 {
  margin-top: 28px;
  margin-bottom: 10px;
}

.privacy-content h2:first-of-type {
  margin-top: 0;
}

.privacy-content p {
  margin: 0 0 14px 0;
  line-height: 1.6;
  max-width: 65ch;
}

.privacy-content a {
  color: rgba(232, 238, 252, 0.9);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.privacy-content a:hover {
  color: var(--fg);
}

.muted {
  color: rgba(232, 238, 252, 0.6);
}

.link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  color: rgba(232, 238, 252, 0.9);
  border-bottom: 1px solid rgba(232, 238, 252, 0.35);
  padding-bottom: 2px;
}

.link[aria-disabled='true'] {
  opacity: 0.6;
  cursor: not-allowed;
  border-bottom-style: dashed;
}

.pill-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 8px;
}

.pill {
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.06);
  color: rgba(232, 238, 252, 0.86);
  padding: 8px 10px;
  border-radius: 999px;
  font-size: 13px;
  white-space: nowrap;
}

.challenger-list {
  display: grid;
  gap: 14px;
  margin-top: 12px;
}

.challenger-row {
  display: flex;
  gap: 18px;
  align-items: center;
  padding: 18px;
  border-radius: var(--r2);
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.05);
}

.challenger-row:hover {
  background: rgba(255, 255, 255, 0.08);
}

/* Alternate left/right for visual rhythm */
.challenger-row:nth-child(even) {
  flex-direction: row-reverse;
}

.challenger-row img {
  /* Preserve original portrait aspect ratio (most are 1024×1536 => 2:3) */
  height: clamp(160px, 18vw, 220px);
  width: auto;
  aspect-ratio: 2 / 3;
  border-radius: 22px;
  object-fit: contain;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(0, 0, 0, 0.2);
  box-shadow: 0 18px 70px rgba(0, 0, 0, 0.35);
  flex: 0 0 auto;
}

.portrait-btn {
  appearance: none;
  -webkit-appearance: none;
  border: 0;
  padding: 0;
  background: transparent;
  cursor: zoom-in;
  border-radius: 22px;
  line-height: 0;
  display: inline-flex;
}

.portrait-btn:focus-visible {
  outline: 2px solid rgba(124, 58, 237, 0.9);
  outline-offset: 3px;
}

.portrait-btn img {
  display: block;
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: none;
}

.lightbox.open {
  display: block;
}

.lightbox-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.72);
  backdrop-filter: blur(8px);
}

.lightbox-dialog {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: min(980px, calc(100% - 32px));
  max-height: calc(100% - 32px);
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background:
    radial-gradient(700px 260px at 15% 10%, rgba(124, 58, 237, 0.22), transparent 60%),
    radial-gradient(520px 220px at 80% 15%, rgba(34, 197, 94, 0.16), transparent 62%),
    rgba(10, 14, 26, 0.92);
  box-shadow: 0 22px 120px rgba(0, 0, 0, 0.7);
  overflow: hidden;
}

.lightbox-close {
  position: absolute;
  right: 12px;
  top: 12px;
  width: 40px;
  height: 40px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.06);
  color: rgba(232, 238, 252, 0.9);
  cursor: pointer;
}

.lightbox-close:hover {
  background: rgba(255, 255, 255, 0.1);
}

.lightbox-body {
  padding: 18px;
  padding-top: 56px;
  display: grid;
  gap: 12px;
  justify-items: center;
}

.lightbox-body img {
  max-width: 92vw;
  max-height: 78vh;
  width: auto;
  height: auto;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(0, 0, 0, 0.25);
}

.lightbox-caption {
  color: rgba(232, 238, 252, 0.86);
  font-weight: 760;
  text-align: center;
}

.challenger-row .challenger-body {
  flex: 1 1 auto;
  min-width: 0; /* prevents overflow weirdness in flex layouts */
}

.challenger-body h3 {
  margin: 0 0 8px 0;
  font-size: 20px;
  letter-spacing: -0.01em;
}

.challenger-body p {
  margin: 0 0 8px 0;
  color: var(--muted);
  line-height: 1.45;
}

.challenger-body p:last-child {
  margin-bottom: 0;
}

.quote {
  color: rgba(232, 238, 252, 0.86) !important;
  font-style: italic;
}

.fineprint {
  margin-top: 14px;
}

.legal {
  font-size: 12px;
  line-height: 1.45;
  color: rgba(232, 238, 252, 0.55);
}

.fineprint p {
  margin: 0 0 10px 0;
}

.fineprint p:last-child {
  margin-bottom: 0;
}

.callout {
  margin-top: 18px;
  padding: 16px;
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background:
    radial-gradient(500px 180px at 15% 10%, rgba(124, 58, 237, 0.22), transparent 60%),
    radial-gradient(420px 160px at 80% 15%, rgba(34, 197, 94, 0.16), transparent 62%),
    rgba(255, 255, 255, 0.04);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.callout h3 {
  margin: 0 0 6px 0;
  letter-spacing: -0.01em;
}

.callout p {
  margin: 0;
  color: var(--muted);
}

.foot-cta {
  margin-top: 18px;
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.site-footer {
  padding: 26px 0 40px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(0, 0, 0, 0.18);
}

.footer-inner {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.brand-mini {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 760;
}

.dot {
  width: 10px;
  height: 10px;
  border-radius: 99px;
  background: linear-gradient(135deg, #7c3aed, #22c55e);
  box-shadow: 0 0 0 6px rgba(124, 58, 237, 0.12);
}

.footer-right {
  display: flex;
  gap: 14px;
}

.footer-link {
  color: rgba(232, 238, 252, 0.7);
  font-size: 14px;
}

.footer-link:hover {
  color: rgba(232, 238, 252, 0.95);
}

/* ==========================================================================
   Downloads Section
   ========================================================================== */

.download-hero[hidden] {
  display: none;
}

.download-hero {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 24px;
  margin-bottom: 20px;
  border-radius: 22px;
  border: 1px solid rgba(124, 58, 237, 0.35);
  background:
    radial-gradient(600px 200px at 10% 20%, rgba(124, 58, 237, 0.22), transparent 60%),
    radial-gradient(500px 180px at 85% 30%, rgba(34, 197, 94, 0.16), transparent 55%),
    rgba(255, 255, 255, 0.05);
  box-shadow: 0 8px 32px rgba(124, 58, 237, 0.12);
}

.download-hero-content {
  display: flex;
  align-items: center;
  gap: 16px;
}

.download-hero-info h3 {
  margin: 0 0 4px 0;
  font-size: 18px;
  font-weight: 700;
}

.download-hero-info p {
  margin: 0;
  font-size: 14px;
}

.download-hero-btn {
  padding: 14px 22px;
  font-size: 15px;
  white-space: nowrap;
}

.download-hero-btn .download-icon {
  font-size: 16px;
}

.download-platforms {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  margin-bottom: 16px;
}

.download-card {
  padding: 18px;
  border-radius: var(--r2);
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.04);
  transition: border-color 200ms ease, background 200ms ease;
}

.download-card:hover {
  background: rgba(255, 255, 255, 0.06);
}

.download-card-recommended {
  border-color: rgba(124, 58, 237, 0.45);
  background: rgba(124, 58, 237, 0.08);
}

.download-card-recommended:hover {
  background: rgba(124, 58, 237, 0.12);
}

.download-card-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
}

.download-card-header h3 {
  margin: 0;
  font-size: 17px;
  font-weight: 700;
}

.download-card-body {
  min-height: 60px;
}

.download-store-badge {
  margin-bottom: 10px;
}

.download-store-badge:last-child {
  margin-bottom: 0;
}

.download-store-badge img {
  display: block;
  height: 34px;
  border-radius: 5px;
  transition: transform 150ms ease;
}

.download-store-badge img:hover {
  transform: translateY(-2px);
}

.download-arch-group {
  margin-bottom: 12px;
}

.download-arch-group:last-child {
  margin-bottom: 0;
}

.download-arch-label {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: rgba(232, 238, 252, 0.55);
  margin-bottom: 6px;
}

.download-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.download-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.06);
  font-size: 13px;
  transition: background 150ms ease, border-color 150ms ease, transform 150ms ease;
}

.download-link:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.22);
  transform: translateY(-1px);
}

.download-link-format {
  font-weight: 650;
  color: var(--fg);
}

.download-link-size {
  color: rgba(232, 238, 252, 0.55);
  font-size: 12px;
}


.badge {
  display: inline-block;
  padding: 4px 10px;
  border-radius: 99px;
  font-size: 12px;
  font-weight: 600;
}

.badge-soon {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(232, 238, 252, 0.7);
}

.version-history {
  margin-top: 8px;
  margin-bottom: 16px;
}

.version-history summary {
  cursor: pointer;
  padding: 12px 16px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.03);
  font-size: 14px;
  font-weight: 600;
  color: rgba(232, 238, 252, 0.75);
  transition: background 150ms ease;
}

.version-history summary:hover {
  background: rgba(255, 255, 255, 0.06);
}

.version-history summary::-webkit-details-marker {
  display: none;
}

.version-history summary::before {
  content: '▸ ';
  font-size: 12px;
}

.version-history[open] summary::before {
  content: '▾ ';
}

.version-history-content {
  padding: 16px;
  margin-top: 8px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.02);
}

.version-block {
  margin-bottom: 16px;
}

.version-block:last-child {
  margin-bottom: 0;
}

.version-block h4 {
  margin: 0 0 8px 0;
  font-size: 14px;
  font-weight: 700;
  color: rgba(232, 238, 252, 0.85);
}

.version-downloads {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.version-platform {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: rgba(232, 238, 252, 0.7);
}

.version-platform-name {
  font-weight: 600;
  min-width: 70px;
}

.version-download-link {
  color: rgba(124, 180, 255, 0.9);
  margin-right: 8px;
  text-decoration: underline;
  text-decoration-color: rgba(124, 180, 255, 0.3);
  text-underline-offset: 2px;
}

.version-download-link:hover {
  color: rgba(124, 180, 255, 1);
  text-decoration-color: rgba(124, 180, 255, 0.6);
}

/* ==========================================================================
   Support form
   ========================================================================== */

.support-form-wrapper {
  margin-top: 32px;
  padding-top: 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.support-form-wrapper h3 {
  margin: 0 0 8px 0;
  font-size: 20px;
  letter-spacing: -0.01em;
}

.support-form-wrapper .lead {
  margin-bottom: 20px;
}

.support-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 480px;
}

.form-row {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-row label {
  font-size: 13px;
  font-weight: 600;
  color: rgba(232, 238, 252, 0.8);
}

.support-form input,
.support-form textarea {
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.06);
  color: var(--fg);
  font-family: inherit;
  font-size: 15px;
  transition: border-color 160ms ease, background 160ms ease;
}

.support-form input::placeholder,
.support-form textarea::placeholder {
  color: rgba(232, 238, 252, 0.45);
}

.support-form input:focus,
.support-form textarea:focus {
  outline: none;
  border-color: rgba(124, 58, 237, 0.6);
  background: rgba(255, 255, 255, 0.08);
}

.support-form textarea {
  resize: vertical;
  min-height: 120px;
}

.support-form button[type='submit'] {
  align-self: flex-start;
}

/* ==========================================================================
   Acknowledgments
   ========================================================================== */

.acknowledgments-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.acknowledgments-list li {
  padding: 14px 16px;
  border-radius: var(--r);
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.03);
  color: var(--muted);
  line-height: 1.55;
  font-size: 14px;
}

.acknowledgments-list li strong {
  color: var(--fg);
}

.acknowledgments-list li a {
  color: rgba(124, 180, 255, 0.9);
}

.acknowledgments-list li a:hover {
  color: rgba(124, 180, 255, 1);
}

/* ==========================================================================
   Responsive
   ========================================================================== */

@media (max-width: 920px) {
  .hero-inner {
    grid-template-columns: 1fr;
  }
  .stats {
    grid-template-columns: 1fr;
  }
  .challenger-row,
  .challenger-row:nth-child(even) {
    flex-direction: column;
    align-items: flex-start;
  }

  .challenger-row img,
  .challenger-row:nth-child(even) img {
    width: 100%;
    height: auto;
    max-height: 320px;
    object-fit: contain;
  }
  .grid,
  .grid.grid-3 {
    grid-template-columns: 1fr;
  }
  .callout {
    flex-direction: column;
    align-items: flex-start;
  }
  .nav {
    gap: 8px;
  }

  /* Downloads responsive */
  .download-hero {
    flex-direction: column;
    align-items: stretch;
    text-align: center;
  }

  .download-hero-content {
    flex-direction: column;
    gap: 10px;
  }

  .download-platforms {
    grid-template-columns: 1fr;
  }

  .version-platform {
    flex-wrap: wrap;
  }
}
