:root {
  --bg: #050606;
  --bg-elevated: #0b0c0b;
  --surface: rgba(16, 17, 16, 0.82);
  --surface-strong: rgba(21, 20, 18, 0.94);
  --surface-soft: rgba(255, 255, 255, 0.055);
  --text: #f6f0e7;
  --text-soft: #d8d0c4;
  --muted: #9d9c95;
  --line: rgba(230, 206, 162, 0.26);
  --line-soft: rgba(255, 255, 255, 0.12);
  --gold: #d8aa58;
  --gold-strong: #f1c978;
  --teal: #6bb9a9;
  --steel: #9eb0c2;
  --rose: #d78986;
  --shadow: 0 28px 90px rgba(0, 0, 0, 0.38);
  --max: 92rem;
}

* {
  box-sizing: border-box;
}

html {
  color-scheme: dark;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  overflow-x: hidden;
  background:
    linear-gradient(90deg, rgba(216, 170, 88, 0.07) 1px, transparent 1px),
    linear-gradient(180deg, #030404 0%, #0c0c0a 42%, #050606 100%);
  background-size: 112px 112px, auto;
  color: var(--text);
  font-family: "Inter", "Segoe UI", sans-serif;
  letter-spacing: 0;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(115deg, rgba(216, 170, 88, 0.13), transparent 22%),
    linear-gradient(250deg, rgba(107, 185, 169, 0.11), transparent 24%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.03), transparent 38%);
  pointer-events: none;
}

body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  opacity: 0.28;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
  background-size: 32px 32px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.86), transparent 82%);
}

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

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

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

.masthead {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
  width: min(var(--max), calc(100% - 2rem));
  margin: 0 auto;
  padding: 0.9rem 0;
  background: rgba(5, 6, 6, 0.74);
  border-bottom: 1px solid rgba(216, 170, 88, 0.18);
  backdrop-filter: blur(18px);
}

.brand-lockup {
  display: inline-flex;
  align-items: center;
  gap: 0.78rem;
  min-width: 0;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 2.7rem;
  height: 2.7rem;
  border: 1px solid rgba(216, 170, 88, 0.5);
  border-radius: 8px;
  background:
    linear-gradient(150deg, rgba(216, 170, 88, 0.26), rgba(255, 255, 255, 0.04)),
    #0e0e0c;
  color: var(--gold-strong);
  font-family: "Cormorant Garamond", serif;
  font-size: 1.7rem;
  font-weight: 700;
  line-height: 1;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.16);
}

.brand-copy {
  display: grid;
  gap: 0.12rem;
  min-width: 0;
}

.brand-copy strong {
  font-size: 0.95rem;
  font-weight: 800;
}

.brand-copy span {
  color: var(--muted);
  font-size: 0.74rem;
  font-weight: 600;
}

.masthead-nav {
  display: flex;
  align-items: center;
  gap: 0.35rem;
}

.masthead-nav a {
  min-height: 2.55rem;
  padding: 0.75rem 0.9rem;
  border: 1px solid transparent;
  border-radius: 8px;
  color: var(--text-soft);
  font-size: 0.82rem;
  font-weight: 700;
  transition: border-color 180ms ease, background 180ms ease, color 180ms ease;
}

.masthead-nav a:hover,
.masthead-nav a:focus-visible {
  border-color: var(--line);
  background: rgba(255, 255, 255, 0.06);
  color: var(--text);
}

.hero-section {
  position: relative;
  min-height: 47rem;
  overflow: hidden;
  border-bottom: 1px solid rgba(216, 170, 88, 0.22);
}

.hero-section::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  background:
    linear-gradient(90deg, rgba(5, 6, 6, 0.98) 0%, rgba(5, 6, 6, 0.86) 36%, rgba(5, 6, 6, 0.35) 70%, rgba(5, 6, 6, 0.72) 100%),
    linear-gradient(180deg, rgba(5, 6, 6, 0.08), rgba(5, 6, 6, 0.9) 92%);
  pointer-events: none;
}

.hero-art {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.hero-art img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center right;
  opacity: 0.92;
}

.hero-content {
  position: relative;
  z-index: 3;
  display: grid;
  align-content: end;
  width: min(var(--max), calc(100% - 2rem));
  min-height: 47rem;
  margin: 0 auto;
  padding: 6rem 0 2.2rem;
}

.hero-copy {
  max-width: 48rem;
}

.hero-copy h1,
.hero-statement,
.downloads-heading h2 {
  font-family: "Cormorant Garamond", Georgia, serif;
}

.hero-copy h1 {
  margin: 0;
  color: #fbf4ea;
  font-size: 6.6rem;
  font-weight: 600;
  line-height: 0.9;
  text-wrap: balance;
  text-shadow: 0 18px 50px rgba(0, 0, 0, 0.52);
}

.hero-statement {
  max-width: 44rem;
  margin: 1.15rem 0 0;
  color: var(--gold-strong);
  font-size: 2.15rem;
  font-weight: 600;
  line-height: 1.05;
  text-wrap: balance;
}

.hero-lede {
  max-width: 42rem;
  margin: 1.4rem 0 0;
  color: var(--text-soft);
  font-size: 1.05rem;
  line-height: 1.8;
}

.route-selector {
  margin-top: 2.3rem;
  padding: 1rem 0 0;
  border-top: 1px solid var(--line);
}

.selector-header,
.downloads-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(18rem, 0.64fr);
  gap: 2rem;
  align-items: end;
}

.section-label {
  margin: 0;
  color: var(--gold-strong);
  font-size: 0.78rem;
  font-weight: 800;
}

.selector-header h2 {
  margin: 0.45rem 0 0;
  font-size: 1.3rem;
  font-weight: 700;
}

.selector-header p,
.downloads-heading p,
.release-panel p,
.proof-section p,
.platform-note,
.platform-caution,
.assurance-strip span {
  color: var(--text-soft);
  line-height: 1.65;
}

.selector-header > p,
.downloads-heading > p {
  margin: 0;
  font-size: 0.95rem;
}

.route-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.7rem;
  margin-top: 1rem;
}

.route-link {
  position: relative;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: 1rem;
  align-items: center;
  min-height: 6rem;
  padding: 1rem;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.025)),
    rgba(10, 12, 12, 0.82);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.12);
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.route-link::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 180ms ease;
  pointer-events: none;
}

.route-link-vercel::before {
  background: linear-gradient(90deg, rgba(158, 176, 194, 0.18), transparent 70%);
}

.route-link-netlify::before {
  background: linear-gradient(90deg, rgba(107, 185, 169, 0.18), transparent 70%);
}

.route-link-aws::before {
  background: linear-gradient(90deg, rgba(216, 170, 88, 0.2), transparent 70%);
}

.route-link:hover,
.route-link:focus-visible {
  transform: translateY(-2px);
  border-color: rgba(216, 170, 88, 0.52);
  background:
    linear-gradient(135deg, rgba(216, 170, 88, 0.11), rgba(255, 255, 255, 0.035)),
    rgba(12, 13, 12, 0.92);
}

.route-link:hover::before,
.route-link:focus-visible::before {
  opacity: 1;
}

.route-icon {
  position: relative;
  width: 2.9rem;
  height: 2.9rem;
  border: 1px solid rgba(216, 170, 88, 0.44);
  border-radius: 8px;
  background: rgba(216, 170, 88, 0.09);
}

.route-icon::before,
.route-icon::after {
  content: "";
  position: absolute;
  inset: 0.78rem;
  border: 1px solid var(--gold-strong);
  border-radius: 999px;
}

.route-icon::after {
  inset: 1.25rem 0.8rem;
  border-left: 0;
  border-right: 0;
  border-radius: 0;
}

.route-link-netlify .route-icon::before {
  inset: 0.76rem;
  border-radius: 3px;
  transform: rotate(45deg);
}

.route-link-netlify .route-icon::after {
  display: none;
}

.route-link-aws .route-icon::before {
  inset: 0.72rem 0.82rem;
  border-radius: 3px;
  border-color: var(--gold-strong);
}

.route-link-aws .route-icon::after {
  inset: 1.05rem 0.64rem;
  border-left: 0;
  border-right: 0;
  border-radius: 0;
}

.route-link strong {
  position: relative;
  z-index: 1;
  display: block;
  color: var(--text);
  font-size: 1.42rem;
  font-weight: 700;
  overflow-wrap: anywhere;
}

.route-link small {
  position: relative;
  z-index: 1;
  display: block;
  margin-top: 0.24rem;
  color: var(--gold-strong);
  font-size: 0.82rem;
  font-weight: 800;
}

.route-arrow {
  position: relative;
  z-index: 1;
  width: 0.78rem;
  height: 0.78rem;
  border-right: 2px solid var(--gold-strong);
  border-top: 2px solid var(--gold-strong);
  transform: rotate(45deg);
}

.route-assurance {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin-top: 0.8rem;
  color: var(--text-soft);
  font-size: 0.85rem;
}

.route-assurance span {
  display: inline-flex;
  align-items: center;
  min-height: 2rem;
  padding: 0.42rem 0.68rem;
  border: 1px solid rgba(216, 170, 88, 0.24);
  border-radius: 999px;
  background: rgba(216, 170, 88, 0.07);
}

.proof-section,
.downloads-section,
.assurance-strip {
  width: min(var(--max), calc(100% - 2rem));
  margin: 0 auto;
}

.proof-section {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  padding: 1px;
  margin-top: 1.2rem;
  border: 1px solid var(--line-soft);
  border-radius: 8px;
  background: var(--line-soft);
  box-shadow: var(--shadow);
}

.proof-section article {
  min-height: 13rem;
  padding: 1.3rem;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.025)),
    rgba(10, 11, 10, 0.92);
}

.proof-section article:first-child {
  border-radius: 7px 0 0 7px;
}

.proof-section article:last-child {
  border-radius: 0 7px 7px 0;
}

.proof-section span {
  color: var(--gold-strong);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.45rem;
  font-weight: 700;
}

.proof-section h2 {
  margin: 0.62rem 0 0;
  font-size: 1.05rem;
}

.proof-section p {
  margin: 0.7rem 0 0;
  font-size: 0.92rem;
}

.downloads-section {
  padding: 5.2rem 0 0;
}

.downloads-heading {
  padding-bottom: 1.15rem;
  border-bottom: 1px solid var(--line);
}

.downloads-heading h2 {
  max-width: 52rem;
  margin: 0.45rem 0 0;
  font-size: 4rem;
  font-weight: 600;
  line-height: 0.96;
  text-wrap: balance;
}

.release-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(17rem, 0.62fr) auto;
  gap: 1.2rem;
  align-items: center;
  margin-top: 1.25rem;
  padding: 1rem;
  border: 1px solid rgba(216, 170, 88, 0.28);
  border-radius: 8px;
  background:
    linear-gradient(120deg, rgba(216, 170, 88, 0.13), rgba(255, 255, 255, 0.035) 42%, rgba(107, 185, 169, 0.08)),
    rgba(12, 13, 12, 0.86);
}

.release-panel strong {
  color: var(--gold-strong);
  font-size: 0.92rem;
  font-weight: 800;
}

.release-panel p {
  margin: 0.34rem 0 0;
  font-size: 0.9rem;
}

.release-statuses {
  display: grid;
  gap: 0.55rem;
}

.release-statuses p {
  margin: 0;
  padding: 0.62rem 0.72rem;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.045);
  color: var(--text);
  font-size: 0.78rem;
  font-weight: 700;
}

.release-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.9rem;
  padding: 0.8rem 0.95rem;
  border: 1px solid rgba(216, 170, 88, 0.42);
  border-radius: 8px;
  background: rgba(216, 170, 88, 0.12);
  color: #fff6df;
  font-size: 0.82rem;
  font-weight: 800;
  white-space: nowrap;
}

.download-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 0.82rem;
  margin-top: 1rem;
}

.download-card {
  position: relative;
  min-height: 26rem;
  overflow: hidden;
  grid-column: span 4;
  padding: 1rem;
  border: 1px solid var(--line-soft);
  border-radius: 8px;
  background:
    linear-gradient(150deg, rgba(255, 255, 255, 0.075), rgba(255, 255, 255, 0.025)),
    var(--surface);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.download-card::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.platform-windows::before {
  background: linear-gradient(150deg, rgba(158, 176, 194, 0.13), transparent 48%);
}

.platform-macos::before {
  background: linear-gradient(150deg, rgba(216, 170, 88, 0.12), transparent 48%);
}

.platform-linux::before {
  background: linear-gradient(150deg, rgba(107, 185, 169, 0.13), transparent 48%);
}

.platform-android::before {
  background: linear-gradient(150deg, rgba(186, 148, 82, 0.16), transparent 48%);
}

.platform-ios::before {
  background: linear-gradient(150deg, rgba(158, 176, 194, 0.14), transparent 48%);
}

.platform-web::before {
  background: linear-gradient(150deg, rgba(111, 160, 205, 0.14), transparent 48%);
}

.platform-rtos::before {
  background: linear-gradient(150deg, rgba(215, 137, 134, 0.14), transparent 48%);
}

.platform-india-os::before {
  background: linear-gradient(150deg, rgba(107, 185, 169, 0.16), rgba(216, 170, 88, 0.07) 46%, transparent 68%);
}

.platform-specialized::before {
  background: linear-gradient(150deg, rgba(158, 176, 194, 0.15), rgba(215, 137, 134, 0.08) 48%, transparent 70%);
}

.platform-europe-os::before {
  background: linear-gradient(150deg, rgba(158, 176, 194, 0.13), rgba(107, 185, 169, 0.08) 46%, transparent 70%);
}

.platform-regional-os::before {
  background: linear-gradient(150deg, rgba(215, 137, 134, 0.13), rgba(158, 176, 194, 0.08) 46%, transparent 70%);
}

.platform-asia-os::before {
  background: linear-gradient(150deg, rgba(216, 170, 88, 0.14), rgba(215, 137, 134, 0.08) 48%, transparent 70%);
}

.platform-heading,
.platform-note,
.platform-caution,
.download-actions {
  position: relative;
  z-index: 1;
}

.platform-heading {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 0.85rem;
  align-items: center;
}

.platform-icon {
  position: relative;
  display: block;
  width: 3rem;
  height: 3rem;
  border: 1px solid rgba(216, 170, 88, 0.38);
  border-radius: 8px;
  background: rgba(216, 170, 88, 0.09);
}

.platform-icon::before,
.platform-icon::after {
  content: "";
  position: absolute;
}

.platform-icon-windows::before {
  inset: 0.73rem;
  background:
    linear-gradient(90deg, transparent 48%, rgba(5, 6, 6, 0.9) 48%, rgba(5, 6, 6, 0.9) 54%, transparent 54%),
    linear-gradient(180deg, transparent 48%, rgba(5, 6, 6, 0.9) 48%, rgba(5, 6, 6, 0.9) 54%, transparent 54%),
    var(--gold-strong);
}

.platform-icon-macos::before,
.platform-icon-ios::before {
  inset: 0.72rem;
  border-radius: 999px 999px 840px 840px;
  background: var(--gold-strong);
}

.platform-icon-linux::before {
  left: 0.82rem;
  right: 0.82rem;
  top: 0.58rem;
  bottom: 0.58rem;
  border-radius: 999px 999px 9px 9px;
  background: var(--gold-strong);
}

.platform-icon-android::before {
  inset: 0.92rem 0.78rem 0.64rem;
  border-radius: 8px 8px 4px 4px;
  background: var(--gold-strong);
}

.platform-icon-tablet::before {
  inset: 0.58rem 0.78rem;
  border: 2px solid var(--gold-strong);
  border-radius: 7px;
}

.platform-icon-tablet::after {
  left: 50%;
  bottom: 0.78rem;
  width: 0.26rem;
  height: 0.26rem;
  border-radius: 999px;
  background: var(--gold-strong);
  transform: translateX(-50%);
}

.platform-icon-chromeos::before {
  inset: 0.68rem;
  border: 2px solid var(--gold-strong);
  border-radius: 999px;
}

.platform-icon-chromeos::after {
  inset: 1.1rem;
  border-radius: 999px;
  background: var(--gold-strong);
}

.platform-icon-unix::before {
  left: 0.82rem;
  right: 0.82rem;
  top: 0.62rem;
  height: 0.42rem;
  border-radius: 999px;
  background: var(--gold-strong);
  box-shadow: 0 0.7rem 0 var(--gold-strong), 0 1.4rem 0 var(--gold-strong);
}

.platform-icon-harmony::before {
  inset: 0.76rem;
  border: 2px solid var(--gold-strong);
  border-radius: 50% 50% 50% 8px;
  transform: rotate(-45deg);
}

.platform-icon-rtos::before {
  inset: 0.82rem;
  border: 2px solid var(--gold-strong);
  border-radius: 5px;
}

.platform-icon-rtos::after {
  left: 0.58rem;
  right: 0.58rem;
  top: 50%;
  height: 2px;
  background: var(--gold-strong);
  transform: translateY(-50%);
}

.platform-icon-india::before {
  left: 0.76rem;
  right: 0.76rem;
  top: 0.72rem;
  height: 0.48rem;
  border-radius: 999px;
  background: var(--gold-strong);
  box-shadow: 0 0.68rem 0 var(--teal), 0 1.36rem 0 var(--steel);
}

.platform-icon-shield::before {
  inset: 0.58rem 0.78rem;
  border: 2px solid var(--gold-strong);
  border-radius: 999px 999px 10px 10px;
}

.platform-icon-shield::after {
  left: 50%;
  top: 0.88rem;
  bottom: 0.8rem;
  width: 2px;
  background: var(--gold-strong);
  transform: translateX(-50%);
}

.platform-icon-garuda::before {
  left: 0.72rem;
  right: 0.72rem;
  top: 0.78rem;
  height: 1.55rem;
  border: 2px solid var(--gold-strong);
  border-top-color: transparent;
  border-radius: 50%;
  transform: rotate(-18deg);
}

.platform-icon-tv::before {
  inset: 0.78rem 0.58rem 0.94rem;
  border: 2px solid var(--gold-strong);
  border-radius: 6px;
}

.platform-icon-tv::after {
  left: 1rem;
  right: 1rem;
  bottom: 0.58rem;
  height: 2px;
  background: var(--gold-strong);
}

.platform-icon-watch::before {
  inset: 0.74rem 0.92rem;
  border: 2px solid var(--gold-strong);
  border-radius: 999px;
}

.platform-icon-watch::after {
  left: 1.18rem;
  right: 1.18rem;
  top: 0.4rem;
  bottom: 0.4rem;
  border-top: 2px solid var(--gold-strong);
  border-bottom: 2px solid var(--gold-strong);
}

.platform-icon-enterprise::before {
  inset: 0.76rem;
  border: 2px solid var(--gold-strong);
  border-radius: 6px;
}

.platform-icon-enterprise::after {
  left: 0.96rem;
  right: 0.96rem;
  top: 1.1rem;
  height: 0.74rem;
  border-top: 2px solid var(--gold-strong);
  border-bottom: 2px solid var(--gold-strong);
}

.platform-icon-chip::before {
  inset: 0.82rem;
  border: 2px solid var(--gold-strong);
  border-radius: 5px;
}

.platform-icon-chip::after {
  inset: 0.52rem;
  border: 1px dashed rgba(241, 201, 120, 0.75);
  border-radius: 8px;
}

.platform-icon-mobile::before {
  inset: 0.56rem 0.94rem;
  border: 2px solid var(--gold-strong);
  border-radius: 8px;
}

.platform-icon-mobile::after {
  left: 50%;
  bottom: 0.76rem;
  width: 0.3rem;
  height: 0.3rem;
  border-radius: 999px;
  background: var(--gold-strong);
  transform: translateX(-50%);
}

.platform-icon-research::before {
  inset: 0.68rem;
  border: 2px solid var(--gold-strong);
  border-radius: 999px;
}

.platform-icon-research::after {
  left: 50%;
  top: 0.62rem;
  bottom: 0.62rem;
  width: 2px;
  background: var(--gold-strong);
  box-shadow: -0.58rem 0 0 var(--gold-strong), 0.58rem 0 0 var(--gold-strong);
  transform: translateX(-50%);
}

.platform-icon-cloud::before {
  left: 0.58rem;
  right: 0.58rem;
  top: 1rem;
  height: 0.86rem;
  border: 2px solid var(--gold-strong);
  border-radius: 999px;
}

.platform-icon-cloud::after {
  left: 1rem;
  right: 1rem;
  bottom: 0.66rem;
  height: 2px;
  background: var(--gold-strong);
}

.platform-heading h3 {
  margin: 0;
  color: var(--gold-strong);
  font-size: 0.98rem;
  font-weight: 800;
}

.platform-heading p {
  margin: 0.2rem 0 0;
  color: var(--text-soft);
  font-size: 0.9rem;
}

.platform-note {
  margin: 1rem 0 0;
  font-size: 0.9rem;
}

.platform-caution {
  margin: 0.8rem 0 0;
  padding: 0.7rem;
  border: 1px solid rgba(216, 170, 88, 0.26);
  border-radius: 8px;
  background: rgba(216, 170, 88, 0.08);
  color: #ffe5ac;
  font-size: 0.8rem;
  font-weight: 700;
}

.download-actions {
  display: grid;
  gap: 0.52rem;
  margin-top: 1rem;
}

.download-actions.split {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.download-subhead {
  grid-column: 1 / -1;
  margin-top: 0.2rem;
  color: var(--muted);
  font-size: 0.76rem;
  font-weight: 800;
}

.download-button {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 0.75rem;
  align-items: center;
  min-height: 2.8rem;
  padding: 0.72rem 0.76rem;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.045);
  color: var(--text);
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.download-button span {
  overflow-wrap: anywhere;
  font-size: 0.82rem;
  font-weight: 800;
}

.download-button small {
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 800;
  white-space: nowrap;
}

.download-button.primary {
  border-color: rgba(216, 170, 88, 0.38);
  background: rgba(216, 170, 88, 0.12);
}

.download-button.muted {
  color: var(--text-soft);
}

.download-button:hover,
.download-button:focus-visible {
  transform: translateY(-1px);
  border-color: rgba(216, 170, 88, 0.55);
  background: rgba(255, 255, 255, 0.075);
}

.download-button[data-download-state="ready"] small {
  color: #a8f5d9;
}

.download-button[data-download-state="pending"] {
  border-style: dashed;
}

.platform-linux {
  grid-column: span 4;
}

.platform-android,
.platform-ios {
  grid-column: span 6;
  min-height: 21rem;
}

.platform-web,
.platform-rtos {
  grid-column: span 4;
  min-height: 18rem;
}

.platform-india-os,
.platform-specialized,
.platform-europe-os,
.platform-regional-os,
.platform-asia-os {
  grid-column: span 4;
  min-height: 20rem;
}

.assurance-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  padding: 1px;
  margin-top: 1rem;
  margin-bottom: 2.2rem;
  border: 1px solid var(--line-soft);
  border-radius: 8px;
  background: var(--line-soft);
}

.assurance-strip div {
  padding: 1rem;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.02)),
    rgba(9, 10, 9, 0.92);
}

.assurance-strip div:first-child {
  border-radius: 7px 0 0 7px;
}

.assurance-strip div:last-child {
  border-radius: 0 7px 7px 0;
}

.assurance-strip strong {
  display: block;
  font-size: 0.95rem;
}

.assurance-strip span {
  display: block;
  margin-top: 0.28rem;
  font-size: 0.88rem;
}

@media (max-width: 1180px) {
  .hero-copy h1 {
    font-size: 5.4rem;
  }

  .hero-statement {
    font-size: 1.85rem;
  }

  .download-card,
  .platform-android,
  .platform-ios,
  .platform-web,
  .platform-rtos,
  .platform-india-os,
  .platform-specialized,
  .platform-europe-os,
  .platform-regional-os,
  .platform-asia-os {
    grid-column: span 6;
  }

  .platform-linux {
    grid-column: 1 / -1;
  }
}

@media (max-width: 860px) {
  .masthead {
    position: relative;
    align-items: flex-start;
    flex-direction: column;
  }

  .masthead-nav {
    width: 100%;
    overflow-x: auto;
    padding-bottom: 0.1rem;
  }

  .hero-section,
  .hero-content {
    min-height: 0;
  }

  .hero-section::before {
    background:
      linear-gradient(180deg, rgba(5, 6, 6, 0.75), rgba(5, 6, 6, 0.98) 58%),
      linear-gradient(90deg, rgba(5, 6, 6, 0.96), rgba(5, 6, 6, 0.58));
  }

  .hero-art {
    height: 24rem;
    inset: 0 0 auto;
  }

  .hero-art img {
    object-position: center right;
  }

  .hero-content {
    padding: 16rem 0 1.4rem;
  }

  .hero-copy h1 {
    font-size: 4.3rem;
  }

  .hero-statement {
    font-size: 1.55rem;
  }

  .selector-header,
  .downloads-heading,
  .release-panel {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .route-grid,
  .proof-section,
  .assurance-strip {
    grid-template-columns: 1fr;
  }

  .proof-section article,
  .proof-section article:first-child,
  .proof-section article:last-child,
  .assurance-strip div,
  .assurance-strip div:first-child,
  .assurance-strip div:last-child {
    border-radius: 0;
  }

  .proof-section article:first-child,
  .assurance-strip div:first-child {
    border-radius: 7px 7px 0 0;
  }

  .proof-section article:last-child,
  .assurance-strip div:last-child {
    border-radius: 0 0 7px 7px;
  }

  .downloads-section {
    padding-top: 3.6rem;
  }

  .downloads-heading h2 {
    font-size: 3rem;
  }

  .download-card,
  .platform-linux,
  .platform-android,
  .platform-ios,
  .platform-web,
  .platform-rtos,
  .platform-india-os,
  .platform-specialized,
  .platform-europe-os,
  .platform-regional-os,
  .platform-asia-os {
    grid-column: 1 / -1;
    min-height: 0;
  }
}

@media (max-width: 560px) {
  .masthead,
  .hero-content,
  .proof-section,
  .downloads-section,
  .assurance-strip {
    width: min(100% - 1rem, var(--max));
  }

  .brand-mark {
    width: 2.4rem;
    height: 2.4rem;
  }

  .masthead-nav a {
    padding-inline: 0.72rem;
  }

  .hero-content {
    padding-top: 13.5rem;
  }

  .hero-art {
    height: 21rem;
  }

  .hero-copy h1 {
    font-size: 3.3rem;
  }

  .hero-statement {
    font-size: 1.35rem;
  }

  .hero-lede {
    font-size: 0.96rem;
  }

  .route-link {
    grid-template-columns: auto minmax(0, 1fr);
    min-height: 5.4rem;
  }

  .route-link strong {
    font-size: 1.08rem;
  }

  .route-arrow {
    display: none;
  }

  .downloads-heading h2 {
    font-size: 2.45rem;
  }

  .release-link {
    width: 100%;
  }

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

  .download-button {
    grid-template-columns: 1fr;
    gap: 0.28rem;
  }

  .download-button small {
    white-space: normal;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}
