:root {
  color-scheme: light;
  --ink: #1a202d;
  --muted: #4a5669;
  --quiet: #718097;
  --line: #e2e8f1;
  --line-strong: #b8c5d6;
  --paper: #ffffff;
  --canvas: #f7fafd;
  --surface-soft: #f8fbfd;
  --surface-tint: #edf3f8;
  --surface-teal: #e6fffb;
  --brand: #3282ce;
  --brand-dark: #2c6cb0;
  --teal: #329795;
  --teal-dark: #2d7a7b;
  --teal-deep: #234e53;
  --orange: #c65a00;
  --orange-soft: #fff3e0;
  --shadow: 0 18px 42px rgba(26, 32, 44, 0.08);
  --shadow-focus: 0 0 0 3px rgba(50, 151, 149, 0.18);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  background:
    linear-gradient(180deg, #ffffff 0%, #f8fbfd 34%, #edf3f8 100%);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

a {
  color: inherit;
}

button {
  font: inherit;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
  gap: 18px;
  align-items: center;
  border-bottom: 1px solid rgba(230, 255, 251, 0.2);
  padding: 14px clamp(16px, 4vw, 48px);
  background: linear-gradient(90deg, var(--teal-deep) 0%, var(--teal-dark) 58%, var(--brand) 100%);
  box-shadow: 0 12px 30px rgba(35, 78, 83, 0.16);
  backdrop-filter: blur(12px);
}

.brand {
  display: inline-flex;
  grid-column: 2;
  justify-self: center;
  min-width: 0;
  align-items: center;
  gap: 14px;
  text-decoration: none;
}

.brand-mark {
  display: inline-grid;
  width: 50px;
  height: 50px;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 8px 18px rgba(26, 32, 44, 0.16);
}

.brand-mark img {
  width: 50px;
  height: 50px;
}

.brand strong,
.brand small {
  display: block;
}

.brand strong {
  color: #fff;
  font-size: clamp(24px, 4vw, 38px);
  line-height: 1;
}

.brand-copy-gradient strong {
  background: linear-gradient(90deg, #ffffff 0%, #f1fffd 28%, #c7f4ed 62%, #8de1d6 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.brand small {
  margin-top: 4px;
  color: #e6fffb;
  font-size: 13px;
  font-weight: 800;
}

.brand-copy-gradient small {
  color: #e6fffb;
  font-weight: 900;
}

.top-nav {
  grid-column: 3;
  justify-self: end;
  display: flex;
  gap: 18px;
  align-items: center;
}

.top-nav a {
  color: #e6fffb;
  font-size: 14px;
  font-weight: 800;
  text-decoration: none;
}

.top-nav a:hover {
  color: #ffffff;
}

.button,
.header-subscribe,
.donation-row,
.discord-card-link,
.company-card-link,
.reddit-card-link,
.subscribe-card-link,
.footer-email,
.download-option,
.download-select,
.download-selected {
  transition: border-color 0.16s ease, box-shadow 0.16s ease, background-color 0.16s ease, color 0.16s ease;
}

.button {
  display: inline-flex;
  min-height: 40px;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  border-radius: 6px;
  padding: 0 16px;
  font-size: 14px;
  font-weight: 900;
  text-decoration: none;
  white-space: nowrap;
}

.button.primary {
  background: linear-gradient(180deg, #38b2ad 0%, var(--teal) 100%);
  border-color: #2d8d8d;
  color: #ffffff;
  box-shadow: 0 10px 22px rgba(50, 151, 149, 0.18);
}

.button.primary:hover {
  background: linear-gradient(180deg, var(--teal) 0%, var(--teal-dark) 100%);
}

.button.secondary {
  border-color: var(--line-strong);
  background: linear-gradient(180deg, #ffffff 0%, var(--surface-soft) 100%);
  color: var(--teal-deep);
}

.button.secondary:hover {
  border-color: var(--teal);
  box-shadow: var(--shadow-focus);
}

.button.discord-button {
  gap: 8px;
  border-color: rgba(255, 255, 255, 0.52);
  background: rgba(255, 255, 255, 0.18);
  color: #fff;
}

.header-subscribe {
  grid-column: 1;
  justify-self: start;
  min-height: 36px;
  border-color: rgba(230, 255, 251, 0.38);
  background: rgba(255, 255, 255, 0.13);
  color: #ffffff;
  box-shadow: none;
}

.header-subscribe:hover {
  border-color: rgba(255, 255, 255, 0.62);
  background: rgba(255, 255, 255, 0.22);
}

.discord-icon {
  width: 18px;
  height: 18px;
}

main {
  width: min(1180px, 100%);
  margin: 0 auto;
  padding: 0 clamp(16px, 4vw, 40px) 56px;
}

.hero {
  position: relative;
  min-height: min(640px, calc(100vh - 80px));
  display: grid;
  align-items: end;
  margin-inline: clamp(-40px, -4vw, -16px);
  overflow: hidden;
  background: #121826;
  box-shadow: 0 18px 42px rgba(26, 32, 44, 0.12);
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(12, 18, 32, 0.9) 0%, rgba(12, 18, 32, 0.66) 43%, rgba(12, 18, 32, 0.2) 100%),
    linear-gradient(0deg, rgba(12, 18, 32, 0.46), rgba(12, 18, 32, 0.1));
  pointer-events: none;
}

.hero.is-clean-slide {
  align-items: stretch;
  background: #e8eef5;
}

.hero.is-clean-slide::after {
  display: none;
}

.hero-media {
  position: absolute;
  inset: 0;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0.82;
}

.hero.is-clean-slide .hero-media img {
  object-fit: contain;
  opacity: 1;
}

.hero.is-clean-slide .hero-copy {
  display: none;
}

.hero-carousel-button {
  position: absolute;
  top: 50%;
  z-index: 2;
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.58);
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.48);
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.22);
  cursor: pointer;
  transform: translateY(-50%);
  transition: background-color 0.16s ease, border-color 0.16s ease, box-shadow 0.16s ease;
}

.hero-carousel-button.previous {
  left: clamp(14px, 2.5vw, 30px);
}

.hero-carousel-button.next {
  right: clamp(14px, 2.5vw, 30px);
}

.hero-carousel-button::before {
  content: "";
  width: 13px;
  height: 13px;
  border-top: 3px solid #ffffff;
  border-right: 3px solid #ffffff;
}

.hero-carousel-button.previous::before {
  margin-left: 5px;
  transform: rotate(-135deg);
}

.hero-carousel-button.next::before {
  margin-right: 5px;
  transform: rotate(45deg);
}

.hero-carousel-button:hover,
.hero-carousel-button:focus-visible {
  border-color: #ffffff;
  background: rgba(45, 122, 123, 0.76);
  box-shadow: 0 0 0 4px rgba(230, 255, 251, 0.22);
  outline: none;
}

.hero-carousel-button:disabled {
  opacity: 0.38;
  cursor: default;
}

.hero-carousel-button:disabled:hover,
.hero-carousel-button:disabled:focus-visible {
  border-color: rgba(255, 255, 255, 0.58);
  background: rgba(15, 23, 42, 0.48);
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.22);
}

.hero-fullscreen-button {
  position: absolute;
  top: clamp(14px, 2.5vw, 30px);
  right: clamp(14px, 2.5vw, 30px);
  z-index: 2;
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.62);
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.48);
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.22);
  cursor: pointer;
  transition: background-color 0.16s ease, border-color 0.16s ease, box-shadow 0.16s ease;
}

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

.hero-fullscreen-button::before {
  content: "";
  width: 18px;
  height: 18px;
  border: 2px solid #ffffff;
  border-radius: 2px;
}

.hero-fullscreen-button:hover,
.hero-fullscreen-button:focus-visible {
  border-color: #ffffff;
  background: rgba(45, 122, 123, 0.76);
  box-shadow: 0 0 0 4px rgba(230, 255, 251, 0.22);
  outline: none;
}

.hero-media:fullscreen {
  position: fixed;
  inset: 0;
  background: #080d16;
}

.hero-media:fullscreen img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  opacity: 1;
}

.hero-media:fullscreen .hero-carousel-button.previous {
  left: clamp(18px, 3vw, 36px);
}

.hero-media:fullscreen .hero-carousel-button.next {
  right: clamp(18px, 3vw, 36px);
}

.hero-media:fullscreen .hero-fullscreen-button {
  top: clamp(18px, 3vw, 36px);
  right: clamp(18px, 3vw, 36px);
}

.hero-copy {
  position: relative;
  z-index: 1;
  max-width: 700px;
  padding: clamp(34px, 7vw, 88px) clamp(18px, 5vw, 64px);
  color: #fff;
}

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

h1,
h2,
h3 {
  letter-spacing: 0;
}

h1 {
  max-width: 16ch;
  margin-bottom: 16px;
  font-size: clamp(34px, 5.6vw, 58px);
  line-height: 1.06;
}

.hero-copy p {
  max-width: 610px;
  color: rgba(255, 255, 255, 0.86);
  font-size: clamp(16px, 2vw, 20px);
  line-height: 1.5;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.fine-print {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.5;
}

.hero .fine-print {
  color: rgba(255, 255, 255, 0.68);
}

.section,
.split-section {
  margin-top: 42px;
}

.download-section {
  margin-inline: clamp(-20px, -2vw, -10px);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: clamp(18px, 3vw, 28px);
  background: linear-gradient(180deg, #ffffff 0%, var(--surface-soft) 100%);
  box-shadow: var(--shadow);
}

#download,
#donations {
  scroll-margin-top: 150px;
}

.section-head {
  max-width: 760px;
  margin-bottom: 18px;
}

.section-head.compact {
  margin-bottom: 16px;
}

.section-head h2 {
  margin-bottom: 8px;
  font-size: clamp(28px, 4vw, 42px);
  line-height: 1.08;
  color: var(--teal-deep);
}

.section-head.compact h2 {
  font-size: 28px;
}

.section-head p {
  color: var(--muted);
  line-height: 1.58;
}

.security-notices {
  display: flex;
  flex-wrap: nowrap;
  gap: 8px 12px;
  align-items: center;
  margin: -2px 0 16px;
}

.security-review {
  display: flex;
  flex-wrap: nowrap;
  gap: 8px 12px;
  align-items: center;
  width: fit-content;
  max-width: none;
  margin: 0;
  border: 1px solid rgba(50, 151, 149, 0.34);
  border-radius: 8px;
  padding: 10px 12px;
  background: var(--surface-teal);
  color: #0f172a;
  font-size: 14px;
  white-space: nowrap;
}

.security-review strong {
  color: var(--teal-deep);
}

.security-review span {
  color: var(--muted);
  line-height: 1.45;
}

.security-review a {
  color: var(--brand);
  font-weight: 800;
  text-decoration: none;
}

.security-review a:hover {
  text-decoration: underline;
}

.download-options,
.download-picker {
  display: grid;
  gap: 10px;
}

.download-picker {
  grid-template-columns: minmax(170px, 230px) minmax(220px, 1fr) auto;
  align-items: end;
  margin-bottom: 10px;
}

.download-field {
  display: grid;
  gap: 6px;
}

.download-field span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.download-select {
  width: 100%;
  min-height: 44px;
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 0 12px;
  background: #ffffff;
  color: var(--ink);
  font: inherit;
  font-weight: 800;
}

.download-select:hover,
.download-select:focus {
  border-color: var(--teal);
  outline: none;
  box-shadow: var(--shadow-focus);
}

.download-select:disabled {
  background: #eef2f7;
  color: var(--muted);
}

.download-actions {
  display: flex;
  gap: 8px;
  align-items: center;
}

.download-action,
.download-changelog {
  min-height: 44px;
}

.download-option {
  display: grid;
  grid-template-columns: 58px minmax(0, 1fr);
  gap: 14px;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 14px;
  background: var(--paper);
  color: var(--ink);
  text-decoration: none;
  box-shadow: 0 2px 10px rgba(17, 24, 39, 0.04);
}

.download-option:hover {
  border-color: var(--brand);
  box-shadow: var(--shadow);
}

.download-selected {
  display: grid;
  grid-template-columns: 58px minmax(0, 1fr);
  gap: 14px;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 14px;
  background: #ffffff;
  color: var(--ink);
  box-shadow: 0 8px 18px rgba(26, 32, 44, 0.06);
}

.download-selected.is-empty {
  grid-template-columns: 1fr;
  background: var(--surface-soft);
}

.download-option-icon {
  display: block;
  width: 58px;
  height: 58px;
  border-radius: 8px;
  overflow: hidden;
  background: #08294a;
  box-shadow: 0 8px 18px rgba(8, 41, 74, 0.18);
}

.download-option-icon img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.download-option strong,
.download-option small,
.download-selected strong,
.download-selected small,
.download-filename,
.download-version,
.download-size,
.download-hash {
  display: block;
}

.download-option small,
.download-selected small {
  margin-top: 4px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.4;
}

.download-filename,
.download-version,
.download-size,
.download-hash,
code {
  font-family: "Cascadia Mono", "SFMono-Regular", Consolas, monospace;
}

.download-filename {
  margin-top: 7px;
  overflow: hidden;
  color: #53657c;
  font-size: 12px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.download-hash {
  margin-top: 5px;
  color: var(--teal-deep);
  font-size: 11px;
  line-height: 1.35;
  overflow-wrap: anywhere;
}

.download-size {
  margin-top: 5px;
  color: var(--muted);
  font-size: 12px;
}

.download-version {
  margin-top: 5px;
  color: var(--muted);
  font-size: 12px;
}

.split-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 18px;
}

.panel {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 20px;
  background: var(--paper);
  box-shadow: var(--shadow);
}

.panel::before {
  content: "";
  display: block;
  height: 5px;
  margin: -20px -20px 16px;
}

#donations {
  background: #ffffff;
}

#donations::before {
  background: var(--orange);
}

.community-panel {
  background: #ffffff;
}

.community-panel::before {
  background: var(--teal);
}

.donation-list {
  display: grid;
  gap: 10px;
}

.donation-row {
  display: grid;
  grid-template-columns: 46px minmax(0, 1fr);
  gap: 12px;
  align-items: center;
  min-height: 76px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 12px;
  background: var(--surface-soft);
  color: var(--ink);
  text-align: left;
  text-decoration: none;
  cursor: pointer;
}

.donation-row:hover {
  border-color: var(--teal);
  background: #ffffff;
  box-shadow: var(--shadow-focus);
}

.donation-row strong,
.donation-row small {
  display: block;
}

.donation-row small {
  margin-top: 3px;
  color: var(--muted);
  line-height: 1.4;
}

.donation-icon {
  display: inline-block;
  width: 46px;
  height: 46px;
  border-radius: 8px;
  padding: 7px;
  box-shadow: 0 8px 18px rgba(26, 32, 44, 0.08);
}

.donation-icon.paypal {
  background: linear-gradient(145deg, #003087 0%, #0070e0 100%);
}

.donation-icon.interac {
  background: linear-gradient(145deg, var(--teal-deep) 0%, var(--brand) 100%);
}

.donation-icon.crypto {
  background: linear-gradient(145deg, #08294a 0%, var(--teal-deep) 58%, var(--teal) 100%);
}

.discord-card-link,
.company-card-link,
.reddit-card-link,
.subscribe-card-link {
  display: grid;
  grid-template-columns: 46px minmax(0, 1fr);
  gap: 12px;
  align-items: center;
  min-height: 76px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 12px;
  background: var(--surface-soft);
  color: var(--ink);
  text-decoration: none;
}

.company-card-link,
.reddit-card-link,
.subscribe-card-link {
  margin-top: 10px;
}

.discord-card-link:hover {
  border-color: #5865f2;
  background: #fff;
  box-shadow: 0 0 0 3px rgba(88, 101, 242, 0.12);
}

.company-card-link:hover {
  border-color: var(--teal);
  background: #fff;
  box-shadow: var(--shadow-focus);
}

.reddit-card-link:hover {
  border-color: #ff4500;
  background: #fff;
  box-shadow: 0 0 0 3px rgba(255, 69, 0, 0.12);
}

.subscribe-card-link:hover {
  border-color: var(--orange);
  background: #fff;
  box-shadow: 0 0 0 3px rgba(198, 90, 0, 0.12);
}

.discord-card-icon,
.company-card-icon,
.reddit-card-icon,
.subscribe-card-icon {
  width: 46px;
  height: 46px;
  border-radius: 8px;
  color: #fff;
}

.discord-card-icon,
.company-card-icon,
.reddit-card-icon {
  padding: 9px;
}

.discord-card-icon {
  background: #5865f2;
}

.company-card-icon {
  background: #0a66c2;
}

.reddit-card-icon {
  background: #ff4500;
}

.subscribe-card-icon {
  background: var(--orange);
  padding: 9px;
}

.discord-card-link strong,
.discord-card-link small,
.company-card-link strong,
.company-card-link small,
.reddit-card-link strong,
.reddit-card-link small,
.subscribe-card-link strong,
.subscribe-card-link small {
  display: block;
}

.discord-card-link small,
.company-card-link small,
.reddit-card-link small,
.subscribe-card-link small {
  margin-top: 4px;
  color: var(--muted);
}

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

.faq-grid article {
  min-height: 170px;
  border: 1px solid var(--line);
  border-top: 4px solid var(--teal);
  border-radius: 8px;
  padding: 16px;
  background: #ffffff;
  box-shadow: 0 8px 18px rgba(26, 32, 44, 0.05);
}

.faq-grid article:nth-child(1) {
  border-top-color: var(--teal);
}

.faq-grid article:nth-child(2) {
  border-top-color: var(--brand);
}

.faq-grid article:nth-child(3) {
  border-top-color: var(--orange);
}

.faq-grid article:nth-child(4) {
  border-top-color: var(--teal-dark);
}

.faq-grid article:nth-child(5) {
  border-top-color: var(--brand-dark);
}

.faq-grid article:nth-child(6) {
  border-top-color: var(--orange);
}

.faq-grid h3 {
  margin: 0 0 8px;
  color: var(--teal-deep);
  font-size: 16px;
  line-height: 1.3;
}

.faq-grid p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.5;
}

.legal-section {
  max-width: 920px;
  margin-inline: auto;
}

.legal-document {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: clamp(20px, 4vw, 36px);
  background: #ffffff;
  box-shadow: var(--shadow);
}

.legal-document h1 {
  max-width: none;
  margin-bottom: 8px;
  color: var(--teal-deep);
  font-size: clamp(34px, 5vw, 48px);
}

.legal-updated {
  margin-bottom: 24px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 800;
}

.legal-document h2 {
  margin: 26px 0 8px;
  color: var(--teal-deep);
  font-size: 20px;
  line-height: 1.3;
}

.legal-document p,
.legal-document li {
  color: var(--muted);
  line-height: 1.65;
}

.legal-document ul {
  display: grid;
  gap: 8px;
  margin: 10px 0 0;
  padding-left: 22px;
}

.site-footer {
  display: grid;
  grid-template-columns: minmax(150px, 1fr) minmax(0, 640px) minmax(150px, 1fr);
  gap: 18px 28px;
  align-items: center;
  margin-top: 44px;
  border-top: 1px solid rgba(230, 255, 251, 0.2);
  padding: 22px clamp(16px, 4vw, 40px);
  background: linear-gradient(90deg, var(--teal-deep) 0%, var(--teal-dark) 58%, var(--brand) 100%);
  color: #e6fffb;
  font-size: 14px;
}

.footer-contact {
  justify-self: center;
  max-width: 640px;
  text-align: center;
}

.footer-contact p {
  margin: 0 0 10px;
  line-height: 1.5;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
  justify-content: center;
}

.footer-links a {
  color: #ffffff;
}

.footer-email {
  color: #ffffff;
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 2px;
  overflow-wrap: anywhere;
}

.footer-email:hover {
  color: #e6fffb;
}

.footer-copyright {
  justify-self: start;
}

.footer-top {
  justify-self: end;
}

.site-footer a {
  font-weight: 800;
  text-decoration: none;
}

.site-footer a:hover {
  color: #ffffff;
}

.crypto-dialog {
  width: min(720px, calc(100% - 28px));
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 0;
  color: var(--ink);
}

.crypto-dialog::backdrop {
  background: rgba(15, 23, 42, 0.42);
}

.dialog-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  border-bottom: 1px solid var(--line);
  background: var(--surface-tint);
  padding: 18px;
}

.dialog-head h2 {
  margin: 0;
  font-size: 22px;
}

.icon-button {
  display: inline-grid;
  width: 36px;
  height: 36px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
  color: var(--ink);
  cursor: pointer;
  font-weight: 800;
}

.crypto-list {
  display: grid;
  gap: 10px;
  padding: 18px;
}

.crypto-row {
  display: grid;
  grid-template-columns: 82px minmax(0, 1fr);
  gap: 12px;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 12px;
  background: var(--surface-soft);
}

.crypto-row strong {
  font-size: 14px;
}

.crypto-address {
  overflow-wrap: anywhere;
  color: var(--muted);
  font-family: "Cascadia Mono", "SFMono-Regular", Consolas, monospace;
  font-size: 13px;
}

.is-disabled {
  opacity: 0.56;
  cursor: not-allowed;
}

@media (max-width: 980px) {
  .site-header,
  .split-section,
  .site-footer {
    grid-template-columns: 1fr;
  }

  .header-subscribe,
  .brand,
  .top-nav {
    grid-column: 1;
    justify-self: center;
  }

  .header-subscribe {
    order: 1;
  }

  .brand {
    order: 2;
  }

  .top-nav {
    order: 3;
  }

  .footer-contact {
    order: 1;
  }

  .footer-copyright {
    order: 2;
  }

  .footer-top {
    justify-self: start;
    order: 3;
  }

  .top-nav {
    flex-wrap: wrap;
  }

  .hero {
    min-height: 560px;
  }

  .hero.is-clean-slide {
    aspect-ratio: 1600 / 875;
    min-height: 0;
  }

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

@media (max-width: 640px) {
  .site-header {
    position: static;
    padding-inline: 14px;
  }

  #download,
  #donations {
    scroll-margin-top: 18px;
  }

  main {
    padding-inline: 14px;
  }

  .brand-mark,
  .brand-mark img {
    width: 44px;
    height: 44px;
  }

  .hero {
    min-height: 520px;
    margin-inline: -14px;
  }

  .hero-carousel-button {
    width: 40px;
    height: 40px;
  }

  .hero-carousel-button.previous {
    left: 10px;
  }

  .hero-carousel-button.next {
    right: 10px;
  }

  .hero-fullscreen-button {
    top: 10px;
    right: 10px;
    width: 40px;
    height: 40px;
  }

  .hero-copy {
    padding: 34px 14px;
  }

  .security-notices,
  .security-review {
    flex-wrap: wrap;
  }

  .security-review {
    width: 100%;
    white-space: normal;
  }

  .download-option,
  .download-selected,
  .donation-row,
  .discord-card-link,
  .company-card-link,
  .reddit-card-link,
  .subscribe-card-link,
  .crypto-row {
    grid-template-columns: 1fr;
  }

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

  .download-action {
    width: 100%;
  }

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

  .download-action,
  .download-changelog {
    width: 100%;
  }

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

  .site-footer {
    align-items: flex-start;
  }
}
