/* MOBILE WORLD production styles */
:root {
  --font-display: "Oswald";
  --font-text: "Roboto Condensed";
}

.mw-fill-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  color: transparent;
}

.no-js .reveal {
  opacity: 1;
  transform: none;
}

.menu-toggle__close { display: none; }
.menu-toggle[aria-expanded="true"] .menu-toggle__open { display: none; }
.menu-toggle[aria-expanded="true"] .menu-toggle__close { display: block; }

@view-transition { navigation: auto; }
::view-transition-old(root) { animation: mw-page-old 180ms ease both; }
::view-transition-new(root) { animation: mw-page-new 360ms cubic-bezier(.2,.8,.2,1) both; }
@keyframes mw-page-old { to { opacity: 0; transform: translateY(-7px); filter: blur(2px); } }
@keyframes mw-page-new { from { opacity: 0; transform: translateY(10px); filter: blur(3px); } }

:root {
  --page-bg: #041008;
  --page-bg-soft: #07170d;
  --surface: #0a1d11;
  --surface-strong: #0c2415;
  --surface-light: #102b1a;
  --surface-glass: rgba(11, 32, 18, 0.72);
  --line: rgba(181, 255, 191, 0.13);
  --line-strong: rgba(181, 255, 191, 0.25);
  --text: #f5f8f4;
  --text-soft: #d6dfd7;
  --muted: #95a599;
  --green: #68f329;
  --green-bright: #7cff2f;
  --green-mid: #21d244;
  --green-deep: #0f8c34;
  --green-glow: rgba(80, 245, 52, 0.24);
  --red: #ff4d61;
  --font-display-fallback: "Arial Narrow", "Roboto Condensed", sans-serif;
  --font-text-fallback: "Arial Narrow", Arial, sans-serif;
  --container: 1440px;
  --header-height: 104px;
  --radius-sm: 12px;
  --radius: 20px;
  --radius-lg: 30px;
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.32);
  --ease-out: cubic-bezier(0.2, 0.8, 0.2, 1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 20px);
  background: var(--page-bg);
}

body {
  min-width: 320px;
  margin: 0;
  overflow-x: hidden;
  background:
    radial-gradient(circle at 80% 12%, rgba(36, 169, 58, 0.08), transparent 28rem),
    var(--page-bg);
  color: var(--text);
  font-family: var(--font-text), var(--font-text-fallback);
  font-size: 16px;
  line-height: 1.5;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body.menu-is-open {
  overflow: hidden;
}

/* Page transitions */
.route-transition {
  position: relative;
  min-height: 1px;
}

.route-transition__page {
  animation: route-page-enter 480ms var(--ease-out) both;
  transition:
    opacity 220ms ease,
    transform 220ms var(--ease-out),
    filter 220ms ease;
  will-change: opacity, transform, filter;
}

.route-transition.is-leaving .route-transition__page {
  opacity: 0;
  filter: blur(3px);
  transform: translateY(-9px) scale(0.997);
  pointer-events: none;
}

.route-transition__bar {
  position: fixed;
  z-index: 2200;
  top: 0;
  right: 0;
  left: 0;
  height: 3px;
  pointer-events: none;
  opacity: 0;
  background: linear-gradient(90deg, var(--green-deep), var(--green-bright));
  box-shadow: 0 0 20px var(--green-glow);
  transform: scaleX(0);
  transform-origin: left;
}

.route-transition.is-leaving .route-transition__bar {
  opacity: 1;
  animation: route-progress 650ms var(--ease-out) both;
}

@keyframes route-page-enter {
  from {
    opacity: 0;
    filter: blur(4px);
    transform: translateY(12px) scale(0.997);
  }
  to {
    opacity: 1;
    filter: blur(0);
    transform: translateY(0) scale(1);
  }
}

@keyframes route-progress {
  0% {
    transform: scaleX(0);
  }
  65% {
    transform: scaleX(0.78);
  }
  100% {
    transform: scaleX(1);
  }
}

::selection {
  background: var(--green);
  color: #061208;
}

::-webkit-scrollbar {
  width: 11px;
}

::-webkit-scrollbar-track {
  background: #031008;
}

::-webkit-scrollbar-thumb {
  min-height: 40px;
  border: 3px solid #031008;
  border-radius: 999px;
  background: #214c2c;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--green-deep);
}

img,
svg {
  display: block;
}

img {
  max-width: 100%;
}

button,
input,
textarea,
select {
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button {
  color: inherit;
}

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

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

h1,
h2,
h3 {
  text-wrap: balance;
}

p {
  text-wrap: pretty;
}

code {
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
}

.page-container {
  width: min(calc(100% - 64px), var(--container));
  margin-inline: auto;
}

.skip-link {
  position: fixed;
  z-index: 9999;
  top: 10px;
  left: 10px;
  padding: 12px 18px;
  border-radius: 10px;
  background: var(--green);
  color: #041108;
  font-weight: 800;
  transform: translateY(-150%);
  transition: transform 180ms var(--ease-out);
}

.skip-link:focus {
  transform: translateY(0);
}

:focus-visible {
  outline: 3px solid rgba(113, 251, 55, 0.85);
  outline-offset: 4px;
}

/* Header */
.site-header {
  position: fixed;
  z-index: 1000;
  inset: 0 0 auto;
  height: var(--header-height);
  border-bottom: 1px solid transparent;
  background: linear-gradient(to bottom, rgba(2, 12, 6, 0.38), transparent);
  transition:
    height 300ms var(--ease-out),
    background-color 300ms ease,
    border-color 300ms ease,
    box-shadow 300ms ease,
    backdrop-filter 300ms ease;
}

.site-header--solid {
  height: 86px;
  border-color: var(--line);
  background: rgba(4, 17, 9, 0.88);
  box-shadow: 0 16px 44px rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(18px) saturate(130%);
}

.site-header__inner {
  display: flex;
  align-items: center;
  height: 100%;
  gap: clamp(22px, 3vw, 54px);
}

.site-header__brand {
  position: relative;
  z-index: 3;
  display: flex;
  flex: 0 0 auto;
  align-items: center;
  width: 128px;
  min-height: 58px;
}

.site-header__brand img {
  width: 100%;
  height: auto;
  filter: drop-shadow(0 0 16px rgba(108, 255, 36, 0.2));
  transition: transform 250ms var(--ease-out), filter 250ms ease;
}

.site-header__brand:hover img {
  transform: scale(1.045);
  filter: drop-shadow(0 0 22px rgba(108, 255, 36, 0.38));
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(18px, 2vw, 34px);
  margin-right: auto;
}

.site-nav__link {
  position: relative;
  display: inline-flex;
  align-items: center;
  min-height: 48px;
  gap: 8px;
  color: rgba(255, 255, 255, 0.82);
  font-family: var(--font-display), var(--font-display-fallback);
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.055em;
  text-transform: uppercase;
  transition: color 180ms ease;
}

.site-nav__link::after {
  position: absolute;
  right: 0;
  bottom: 5px;
  left: 0;
  height: 2px;
  border-radius: 99px;
  background: linear-gradient(90deg, var(--green), var(--green-mid));
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 250ms var(--ease-out);
}

.site-nav__link:hover,
.site-nav__link.is-active {
  color: #fff;
}

.site-nav__link:hover::after,
.site-nav__link.is-active::after {
  transform: scaleX(1);
  transform-origin: left;
}

.site-nav__badge {
  display: grid;
  min-width: 29px;
  height: 29px;
  place-items: center;
  border: 1px solid rgba(126, 255, 74, 0.33);
  border-radius: 9px;
  background: linear-gradient(145deg, rgba(90, 244, 47, 0.96), rgba(22, 170, 54, 0.96));
  box-shadow: 0 0 22px rgba(71, 239, 52, 0.22);
  color: #071509;
  font-family: var(--font-text), var(--font-text-fallback);
  font-size: 13px;
  line-height: 1;
}

.site-header__actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

.support-shortcut {
  display: flex;
  align-items: center;
  max-width: 210px;
  gap: 10px;
  color: var(--text-soft);
  transition: color 180ms ease;
}

.support-shortcut > svg {
  width: 30px;
  height: 30px;
  flex: 0 0 auto;
  color: var(--green-bright);
  filter: drop-shadow(0 0 12px var(--green-glow));
}

.support-shortcut span {
  display: grid;
  font-size: 10px;
  line-height: 1.25;
  text-transform: uppercase;
}

.support-shortcut b {
  color: #fff;
  font-size: 9px;
  font-weight: 800;
}

.support-shortcut:hover {
  color: #fff;
}

.social-links {
  display: flex;
  align-items: center;
  gap: 10px;
}

.social-link {
  display: grid;
  width: 44px;
  height: 44px;
  flex: 0 0 auto;
  padding: 0;
  cursor: default;
  appearance: none;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 13px;
  background: rgba(255, 255, 255, 0.055);
  color: #fff;
  transition:
    transform 220ms var(--ease-out),
    background-color 220ms ease,
    border-color 220ms ease,
    box-shadow 220ms ease;
}

.social-link svg {
  width: 21px;
  height: 21px;
}

.social-link:hover {
  transform: translateY(-3px);
}

.social-link--telegram:hover {
  border-color: rgba(43, 174, 226, 0.5);
  background: rgba(43, 174, 226, 0.25);
  box-shadow: 0 10px 30px rgba(43, 174, 226, 0.15);
}

.social-link--youtube:hover {
  border-color: rgba(255, 32, 32, 0.5);
  background: rgba(255, 32, 32, 0.23);
  box-shadow: 0 10px 30px rgba(255, 32, 32, 0.14);
}

.social-link--vk:hover {
  border-color: rgba(0, 119, 255, 0.5);
  background: rgba(0, 119, 255, 0.23);
  box-shadow: 0 10px 30px rgba(0, 119, 255, 0.14);
}

.menu-toggle {
  position: relative;
  z-index: 1003;
  display: none;
  width: 48px;
  height: 48px;
  flex: 0 0 auto;
  cursor: pointer;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.06);
}

.menu-toggle svg {
  width: 24px;
  height: 24px;
}

.mobile-menu,
.mobile-menu__backdrop {
  display: none;
}

/* Shared primary button */
.download-button,
.primary-link {
  position: relative;
  isolation: isolate;
  display: inline-flex;
  min-height: 62px;
  align-items: center;
  justify-content: center;
  gap: 14px;
  overflow: hidden;
  border: 1px solid rgba(167, 255, 128, 0.42);
  border-radius: 15px;
  background: linear-gradient(120deg, #1cae33 0%, #5fe52d 52%, #16c83b 100%);
  background-size: 160% 100%;
  box-shadow:
    0 15px 36px rgba(31, 198, 55, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.24);
  color: #061407;
  font-family: var(--font-display), var(--font-display-fallback);
  font-size: 19px;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  transition:
    transform 250ms var(--ease-out),
    box-shadow 250ms ease,
    background-position 350ms ease;
}

.download-button {
  padding: 8px 22px 8px 10px;
}

.download-button:hover,
.primary-link:hover {
  background-position: 100% 0;
  box-shadow:
    0 18px 48px rgba(45, 231, 66, 0.3),
    0 0 0 5px rgba(84, 245, 51, 0.075),
    inset 0 1px 0 rgba(255, 255, 255, 0.3);
  transform: translateY(-3px);
}

.download-button:active,
.primary-link:active {
  transform: translateY(0) scale(0.985);
}

.download-button__logo {
  z-index: 1;
  width: 78px;
  height: 44px;
  padding: 9px 8px;
  object-fit: contain;
  border: 1px solid rgba(149, 255, 111, 0.15);
  border-radius: 10px;
  background: rgba(1, 18, 6, 0.84);
}

.download-button > span:not(.download-button__shine) {
  position: relative;
  z-index: 1;
  white-space: nowrap;
}

.download-button__shine {
  position: absolute;
  z-index: 0;
  top: -50%;
  bottom: -50%;
  left: -35%;
  width: 22%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.38), transparent);
  transform: rotate(16deg);
  transition: left 700ms var(--ease-out);
}

.download-button:hover .download-button__shine {
  left: 120%;
}

.download-button--compact {
  min-height: 48px;
  padding: 0 18px;
  border-radius: 12px;
  font-size: 14px;
}

.download-button__download-icon {
  z-index: 1;
  width: 20px;
  height: 20px;
}

.primary-link {
  min-height: 54px;
  padding: 0 22px;
  font-size: 16px;
}

.primary-link svg {
  width: 20px;
  height: 20px;
}

/* Hero */
.hero {
  position: relative;
  min-height: max(780px, 100svh);
  overflow: hidden;
  background: #07150b;
}

.hero__media,
.hero__overlay,
.hero__noise {
  position: absolute;
  inset: 0;
}

.hero__media img {
  object-fit: cover;
  object-position: 50% 52%;
  animation: hero-media 18s var(--ease-out) both;
  filter: saturate(0.9) contrast(1.02);
}

.hero__overlay {
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(2, 15, 7, 0.94) 0%, rgba(3, 18, 8, 0.78) 45%, rgba(4, 25, 11, 0.72) 100%),
    linear-gradient(180deg, rgba(1, 10, 5, 0.18) 0%, transparent 45%, rgba(3, 16, 8, 0.92) 100%),
    radial-gradient(circle at 70% 45%, rgba(30, 158, 46, 0.16), transparent 35%);
}

.hero__noise {
  z-index: 2;
  opacity: 0.24;
  background-image:
    radial-gradient(rgba(255, 255, 255, 0.13) 0.55px, transparent 0.7px),
    radial-gradient(rgba(101, 255, 66, 0.08) 0.45px, transparent 0.6px);
  background-position: 0 0, 11px 11px;
  background-size: 18px 18px, 22px 22px;
  mix-blend-mode: soft-light;
  pointer-events: none;
}

.hero__orb {
  position: absolute;
  z-index: 2;
  width: 420px;
  height: 420px;
  border-radius: 999px;
  background: rgba(55, 236, 55, 0.08);
  filter: blur(90px);
  pointer-events: none;
  animation: orb-float 9s ease-in-out infinite alternate;
}

.hero__orb--one {
  top: 8%;
  right: 7%;
}

.hero__orb--two {
  bottom: -24%;
  left: 34%;
  width: 520px;
  height: 520px;
  animation-delay: -4s;
}

.hero__content {
  position: relative;
  z-index: 3;
  display: grid;
  min-height: max(780px, 100svh);
  align-items: center;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 430px);
  gap: clamp(44px, 6vw, 110px);
  padding-top: calc(var(--header-height) + 58px);
  padding-bottom: 90px;
}

.hero__copy {
  max-width: 850px;
}

.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
  color: var(--green-bright);
  font-family: var(--font-display), var(--font-display-fallback);
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.hero__eyebrow i {
  display: block;
  width: 31px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  box-shadow: 0 0 14px var(--green-glow);
}

.hero__title {
  max-width: 900px;
  margin-bottom: 25px;
  color: #fff;
  font-family: var(--font-display), var(--font-display-fallback);
  font-size: clamp(58px, 5.2vw, 92px);
  font-weight: 700;
  letter-spacing: -0.035em;
  line-height: 0.98;
  text-transform: uppercase;
  text-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.hero__title span {
  display: block;
}

.hero__title span:last-child {
  display: flex;
  align-items: baseline;
  gap: 16px;
  font-size: 0.75em;
  letter-spacing: -0.04em;
}

.hero__title b {
  color: var(--green);
  font-weight: 500;
}

.hero__lead {
  max-width: 720px;
  margin-bottom: 14px;
  color: #fff;
  font-size: clamp(20px, 1.55vw, 26px);
  font-weight: 600;
  line-height: 1.32;
}

.hero__description {
  max-width: 640px;
  margin-bottom: 31px;
  color: rgba(229, 237, 230, 0.74);
  font-size: 18px;
  line-height: 1.45;
}

.hero__actions {
  display: flex;
  align-items: stretch;
  gap: 15px;
}

.hero__install-link {
  display: flex;
  min-width: 270px;
  align-items: center;
  gap: 13px;
  padding: 8px 13px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 15px;
  background: rgba(255, 255, 255, 0.055);
  color: var(--text-soft);
  backdrop-filter: blur(14px);
  transition:
    border-color 220ms ease,
    background-color 220ms ease,
    transform 220ms var(--ease-out);
}

.hero__install-link:hover {
  border-color: rgba(119, 249, 68, 0.27);
  background: rgba(86, 231, 50, 0.08);
  transform: translateY(-2px);
}

.hero__android-badge {
  display: grid;
  width: 48px;
  height: 48px;
  flex: 0 0 auto;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
}

.hero__android-badge svg {
  width: 22px;
  height: 22px;
  margin-bottom: -7px;
}

.hero__android-badge b {
  font-size: 8px;
  line-height: 1;
}

.hero__install-link > span:nth-child(2) {
  display: grid;
  flex: 1;
  font-size: 12px;
  line-height: 1.28;
}

.hero__install-link > span:nth-child(2) b {
  color: #fff;
  font-size: 14px;
}

.hero__install-link > svg {
  width: 18px;
  height: 18px;
  transition: transform 180ms var(--ease-out);
}

.hero__install-link:hover > svg {
  transform: translateX(3px);
}

.hero__meta {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-top: 19px;
  color: rgba(229, 237, 230, 0.68);
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
}

.hero__online,
.hero__secure {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.hero__online i {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 5px rgba(104, 243, 41, 0.1), 0 0 15px var(--green);
  animation: live-pulse 1.8s ease-in-out infinite;
}

.hero__online b {
  color: var(--green-bright);
}

.hero__secure svg {
  width: 16px;
  height: 16px;
  color: var(--green);
}

.hero__servers {
  align-self: center;
}

.hero__servers-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 14px;
  color: var(--text-soft);
  font-family: var(--font-display), var(--font-display-fallback);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero__servers-heading span {
  font-size: 14px;
}

.hero__servers-heading b {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: var(--green-bright);
  font-size: 11px;
}

.hero__servers-heading b::before {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: currentColor;
  content: "";
  box-shadow: 0 0 10px currentColor;
}

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

.server-card {
  position: relative;
  min-height: 268px;
  overflow: hidden;
  padding: 22px 20px 19px;
  border: 1px solid rgba(185, 255, 193, 0.12);
  border-radius: 22px;
  background:
    linear-gradient(160deg, rgba(19, 51, 28, 0.76), rgba(5, 21, 10, 0.92)),
    rgba(4, 22, 10, 0.86);
  box-shadow: 0 24px 54px rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(18px);
  transition:
    transform 280ms var(--ease-out),
    border-color 280ms ease,
    box-shadow 280ms ease;
}

.server-card::before {
  position: absolute;
  width: 150px;
  height: 150px;
  top: -75px;
  right: -65px;
  border-radius: 50%;
  background: rgba(77, 238, 50, 0.12);
  filter: blur(20px);
  content: "";
}

.server-card:hover {
  z-index: 1;
  border-color: rgba(119, 249, 68, 0.34);
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.34), 0 0 30px rgba(61, 216, 54, 0.08);
  transform: translateY(-8px);
}

.server-card__topline {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}

.server-card__number {
  color: #fff;
  font-family: var(--font-display), var(--font-display-fallback);
  font-size: 67px;
  font-weight: 600;
  letter-spacing: -0.06em;
  line-height: 0.9;
}

.server-card__live {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  margin-top: 3px;
  color: var(--green-bright);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.server-card__live i {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: currentColor;
  box-shadow: 0 0 9px currentColor;
}

.server-card__label {
  margin: 10px 0 31px;
  color: #fff;
  font-family: var(--font-display), var(--font-display-fallback);
  font-size: 27px;
  font-weight: 600;
  line-height: 1;
  text-transform: uppercase;
}

.server-card__population {
  display: flex;
  align-items: center;
  gap: 7px;
  margin-bottom: 9px;
  color: var(--muted);
  font-size: 12px;
}

.server-card__population svg {
  width: 15px;
  height: 15px;
  color: var(--green);
}

.server-card__population b {
  color: #fff;
}

.server-card__progress {
  height: 5px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.09);
}

.server-card__progress span {
  display: block;
  width: var(--server-load);
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--green-deep), var(--green-bright));
  box-shadow: 0 0 12px rgba(100, 247, 49, 0.75);
  animation: progress-grow 1.1s 900ms var(--ease-out) both;
  transform-origin: left;
}

.server-card__status {
  display: block;
  margin-top: 8px;
  color: rgba(224, 233, 225, 0.58);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.hero__scroll {
  position: absolute;
  z-index: 4;
  bottom: 25px;
  left: 50%;
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(236, 243, 237, 0.47);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transform: translateX(-50%);
  transition: color 180ms ease;
}

.hero__scroll span {
  position: relative;
  width: 21px;
  height: 34px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 999px;
}

.hero__scroll span::after {
  position: absolute;
  top: 7px;
  left: 50%;
  width: 3px;
  height: 7px;
  border-radius: 999px;
  background: var(--green);
  content: "";
  transform: translateX(-50%);
  animation: scroll-dot 1.7s ease-in-out infinite;
}

.hero__scroll:hover {
  color: #fff;
}

.hero-enter {
  opacity: 0;
  animation: hero-enter 750ms var(--ease-out) forwards;
}

.hero-enter--1 { animation-delay: 100ms; }
.hero-enter--2 { animation-delay: 180ms; }
.hero-enter--3 { animation-delay: 280ms; }
.hero-enter--4 { animation-delay: 360ms; }
.hero-enter--5 { animation-delay: 450ms; }
.hero-enter--6 { animation-delay: 540ms; }

/* Main sections */
.section {
  position: relative;
  padding: 116px 0;
}

.section--about {
  overflow: hidden;
  background:
    radial-gradient(circle at 8% 10%, rgba(69, 224, 63, 0.08), transparent 28rem),
    linear-gradient(180deg, #06150b 0%, #07190e 100%);
}

.section--about::before {
  position: absolute;
  top: -1px;
  right: 0;
  left: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(118, 255, 81, 0.28), transparent);
  content: "";
}

.section--news {
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(5, 18, 9, 0.95), rgba(4, 15, 8, 0.98)),
    var(--page-bg);
}

.section--news::after {
  position: absolute;
  z-index: 0;
  width: 520px;
  height: 520px;
  right: -260px;
  bottom: -260px;
  border-radius: 50%;
  background: rgba(61, 210, 62, 0.06);
  filter: blur(70px);
  content: "";
}

.section--download {
  padding-top: 64px;
  padding-bottom: 64px;
  background: #041008;
}

.section--faq {
  background:
    radial-gradient(circle at 15% 70%, rgba(49, 201, 58, 0.07), transparent 24rem),
    #06150b;
}

.section--compact {
  padding-top: 36px;
  padding-bottom: 90px;
}

.internal-section {
  min-height: 400px;
  background:
    radial-gradient(circle at 88% 8%, rgba(48, 200, 57, 0.07), transparent 28rem),
    linear-gradient(180deg, #06150b, #041008);
}

.section-title {
  max-width: 760px;
}

.section-title--center {
  margin-inline: auto;
  text-align: center;
}

.section-title__eyebrow,
.page-hero__eyebrow,
.article-hero__category,
.download-file-card__eyebrow,
.download-cta__copy > span,
.support-contact > div:nth-child(2) > span {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 14px;
  color: var(--green-bright);
  font-family: var(--font-display), var(--font-display-fallback);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.section-title__eyebrow::before,
.page-hero__eyebrow::before,
.download-file-card__eyebrow::before,
.download-cta__copy > span::before,
.support-contact > div:nth-child(2) > span::before {
  width: 27px;
  height: 2px;
  border-radius: 99px;
  background: currentColor;
  content: "";
  box-shadow: 0 0 12px var(--green-glow);
}

.section-title h2 {
  margin-bottom: 18px;
  color: #fff;
  font-family: var(--font-display), var(--font-display-fallback);
  font-size: clamp(40px, 4.2vw, 68px);
  font-weight: 650;
  letter-spacing: -0.035em;
  line-height: 1.02;
  text-transform: uppercase;
}

.section-title p {
  max-width: 700px;
  margin-bottom: 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.55;
}

.about-intro {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 40px;
}

.about-intro__badge {
  display: flex;
  min-width: 265px;
  align-items: center;
  gap: 13px;
  padding: 15px 18px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.035);
  color: var(--muted);
}

.about-intro__badge svg {
  width: 32px;
  height: 32px;
  flex: 0 0 auto;
  color: var(--green);
}

.about-intro__badge span {
  display: grid;
  font-size: 13px;
}

.about-intro__badge b {
  color: #fff;
  font-size: 15px;
}

.project-stats {
  display: grid;
  margin-top: 68px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border: 1px solid var(--line);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.025);
}

.project-stats > .reveal:not(:last-child) {
  border-right: 1px solid var(--line);
}

.project-stat {
  position: relative;
  min-height: 140px;
  padding: 25px 28px;
}

.project-stat::after {
  position: absolute;
  right: 24px;
  bottom: 22px;
  width: 34px;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--green));
  content: "";
  opacity: 0.65;
}

.project-stat strong {
  display: block;
  margin-bottom: 4px;
  color: #fff;
  font-family: var(--font-display), var(--font-display-fallback);
  font-size: clamp(38px, 3.2vw, 56px);
  font-weight: 650;
  letter-spacing: -0.04em;
  line-height: 1;
}

.project-stat span {
  color: var(--muted);
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
}

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

.feature-card {
  position: relative;
  min-height: 310px;
  height: 100%;
  overflow: hidden;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background:
    linear-gradient(160deg, rgba(15, 43, 24, 0.72), rgba(6, 24, 12, 0.92)),
    var(--surface);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.13);
  transition:
    transform 280ms var(--ease-out),
    border-color 280ms ease,
    background-color 280ms ease,
    box-shadow 280ms ease;
}

.feature-card::before {
  position: absolute;
  width: 150px;
  height: 150px;
  right: -70px;
  bottom: -75px;
  border-radius: 50%;
  background: rgba(90, 240, 55, 0.1);
  filter: blur(30px);
  content: "";
  transition: transform 400ms var(--ease-out), opacity 300ms ease;
}

.feature-card:hover {
  border-color: rgba(112, 248, 69, 0.32);
  box-shadow: 0 26px 70px rgba(0, 0, 0, 0.25), 0 0 30px rgba(54, 219, 54, 0.06);
  transform: translateY(-8px);
}

.feature-card:hover::before {
  opacity: 1.4;
  transform: scale(1.35);
}

.feature-card__number {
  position: absolute;
  top: 23px;
  right: 25px;
  color: rgba(255, 255, 255, 0.055);
  font-family: var(--font-display), var(--font-display-fallback);
  font-size: 64px;
  font-weight: 700;
  line-height: 1;
}

.feature-card__icon,
.support-card__icon,
.support-contact__icon,
.download-cta__icon,
.download-file-card__mark {
  display: grid;
  width: 62px;
  height: 62px;
  place-items: center;
  border: 1px solid rgba(127, 255, 81, 0.18);
  border-radius: 18px;
  background: linear-gradient(145deg, rgba(97, 240, 52, 0.15), rgba(13, 84, 34, 0.12));
  color: var(--green);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08), 0 12px 32px rgba(0, 0, 0, 0.14);
}

.feature-card__icon svg,
.support-card__icon svg,
.support-contact__icon svg,
.download-file-card__mark svg {
  width: 29px;
  height: 29px;
}

.feature-card h3 {
  margin: 68px 0 12px;
  color: #fff;
  font-family: var(--font-display), var(--font-display-fallback);
  font-size: 28px;
  font-weight: 600;
  line-height: 1.1;
  text-transform: uppercase;
}

.feature-card p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.55;
}

.section-heading-row {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 36px;
  margin-bottom: 48px;
}

.outline-link,
.text-link,
.news-card__more,
.back-link,
.support-card a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: #fff;
  font-family: var(--font-display), var(--font-display-fallback);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: color 180ms ease, transform 180ms var(--ease-out);
}

.outline-link {
  min-height: 48px;
  padding: 0 18px;
  border: 1px solid var(--line-strong);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.025);
}

.outline-link svg,
.text-link svg,
.news-card__more svg,
.support-card a svg {
  width: 17px;
  height: 17px;
  transition: transform 180ms var(--ease-out);
}

.outline-link:hover,
.text-link:hover,
.news-card__more:hover,
.support-card a:hover {
  color: var(--green-bright);
}

.outline-link:hover svg,
.text-link:hover svg,
.news-card__more:hover svg,
.support-card a:hover svg {
  transform: translateX(3px);
}

.news-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.news-card {
  height: 100%;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: linear-gradient(180deg, rgba(13, 39, 21, 0.86), rgba(6, 23, 12, 0.95));
  box-shadow: 0 20px 58px rgba(0, 0, 0, 0.17);
  transition:
    border-color 280ms ease,
    transform 280ms var(--ease-out),
    box-shadow 280ms ease;
}

.news-card:hover {
  border-color: rgba(111, 247, 67, 0.3);
  box-shadow: 0 28px 76px rgba(0, 0, 0, 0.28);
  transform: translateY(-7px);
}

.news-card__image {
  position: relative;
  display: block;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: #0b1b10;
}

.news-card__image::after {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, transparent 30%, rgba(4, 20, 10, 0.82) 100%),
    linear-gradient(90deg, rgba(6, 30, 13, 0.12), rgba(30, 137, 40, 0.12));
  content: "";
}

.news-card__image img {
  object-fit: cover;
  transition: transform 600ms var(--ease-out), filter 400ms ease;
}

.news-card:hover .news-card__image img {
  transform: scale(1.055);
  filter: saturate(1.08);
}

.news-card__category {
  position: absolute;
  z-index: 1;
  top: 17px;
  left: 17px;
  padding: 7px 10px;
  border: 1px solid rgba(133, 255, 91, 0.25);
  border-radius: 9px;
  background: rgba(5, 24, 11, 0.75);
  color: var(--green-bright);
  font-family: var(--font-display), var(--font-display-fallback);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  backdrop-filter: blur(10px);
}

.news-card__body {
  display: flex;
  min-height: 280px;
  flex-direction: column;
  padding: 24px 25px 25px;
}

.news-card time,
.article-hero time {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin-bottom: 14px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
}

.news-card time svg,
.article-hero time svg {
  width: 15px;
  height: 15px;
  color: var(--green);
}

.news-card h3 {
  margin-bottom: 12px;
  font-family: var(--font-display), var(--font-display-fallback);
  font-size: 28px;
  font-weight: 600;
  line-height: 1.12;
  text-transform: uppercase;
}

.news-card h3 a {
  transition: color 180ms ease;
}

.news-card h3 a:hover {
  color: var(--green-bright);
}

.news-card p {
  margin-bottom: 24px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.55;
}

.news-card__more {
  justify-content: flex-start;
  margin-top: auto;
  color: var(--green-bright);
  font-size: 12px;
}

/* Download CTA */
.download-cta {
  position: relative;
  display: grid;
  min-height: 270px;
  align-items: center;
  overflow: hidden;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: 32px;
  padding: 38px 42px;
  border: 1px solid rgba(129, 255, 86, 0.22);
  border-radius: var(--radius-lg);
  background:
    linear-gradient(110deg, rgba(14, 55, 25, 0.94), rgba(5, 23, 11, 0.97)),
    var(--surface);
  box-shadow: var(--shadow), inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.download-cta::before {
  position: absolute;
  top: 0;
  left: 0;
  width: 42%;
  height: 2px;
  background: linear-gradient(90deg, var(--green), transparent);
  content: "";
}

.download-cta__glow {
  position: absolute;
  width: 400px;
  height: 400px;
  right: 10%;
  bottom: -280px;
  border-radius: 50%;
  background: rgba(79, 236, 55, 0.16);
  filter: blur(60px);
}

.download-cta__icon {
  position: relative;
  z-index: 1;
  width: 110px;
  height: 110px;
  border-radius: 28px;
}

.download-cta__icon svg {
  width: 52px;
  height: 52px;
}

.download-cta__copy,
.download-cta__action {
  position: relative;
  z-index: 1;
}

.download-cta__copy > span {
  margin-bottom: 8px;
  font-size: 11px;
}

.download-cta__copy h2 {
  margin-bottom: 10px;
  font-family: var(--font-display), var(--font-display-fallback);
  font-size: clamp(34px, 3vw, 50px);
  font-weight: 650;
  line-height: 1.04;
  text-transform: uppercase;
}

.download-cta__copy p {
  max-width: 670px;
  margin-bottom: 16px;
  color: var(--muted);
  font-size: 16px;
}

.download-cta__facts {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 20px;
}

.download-cta__facts span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: var(--text-soft);
  font-size: 12px;
  font-weight: 600;
}

.download-cta__facts svg {
  width: 16px;
  height: 16px;
  color: var(--green);
}

.download-cta__action {
  display: grid;
  justify-items: center;
  gap: 10px;
}

.download-cta__action small {
  color: var(--muted);
  font-size: 11px;
  text-transform: uppercase;
}

/* FAQ */
.faq-layout {
  display: grid;
  align-items: start;
  grid-template-columns: minmax(280px, 0.72fr) minmax(0, 1.28fr);
  gap: clamp(54px, 8vw, 120px);
}

.faq-layout .text-link {
  margin-top: 30px;
  color: var(--green-bright);
}

.faq-list {
  border-top: 1px solid var(--line);
}

.faq-item {
  border-bottom: 1px solid var(--line);
}

.faq-item summary {
  display: grid;
  min-height: 82px;
  align-items: center;
  grid-template-columns: auto 1fr auto;
  gap: 18px;
  cursor: pointer;
  color: #fff;
  font-family: var(--font-display), var(--font-display-fallback);
  font-size: 21px;
  font-weight: 550;
  list-style: none;
  text-transform: uppercase;
  transition: color 180ms ease;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary > span {
  color: var(--green);
  font-size: 12px;
  letter-spacing: 0.08em;
}

.faq-item summary > i {
  position: relative;
  width: 26px;
  height: 26px;
  border: 1px solid var(--line);
  border-radius: 8px;
  transition: border-color 180ms ease, background-color 180ms ease;
}

.faq-item summary > i::before,
.faq-item summary > i::after {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 10px;
  height: 1.5px;
  border-radius: 99px;
  background: currentColor;
  content: "";
  transform: translate(-50%, -50%);
  transition: transform 220ms var(--ease-out);
}

.faq-item summary > i::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.faq-item[open] summary {
  color: var(--green-bright);
}

.faq-item[open] summary > i {
  border-color: rgba(111, 247, 67, 0.3);
  background: rgba(93, 234, 55, 0.08);
}

.faq-item[open] summary > i::after {
  transform: translate(-50%, -50%) rotate(0deg);
}

.faq-item > p {
  max-width: 760px;
  margin: -4px 44px 27px 50px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.65;
}

/* Reveal */
.reveal {
  height: 100%;
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 720ms var(--ease-out) var(--reveal-delay, 0ms),
    transform 720ms var(--ease-out) var(--reveal-delay, 0ms);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (scripting: none) {
  .reveal {
    opacity: 1;
    transform: none;
  }
}

/* Internal page hero */
.page-hero {
  position: relative;
  min-height: 520px;
  overflow: hidden;
  background: #07170d;
}

.page-hero--compact {
  min-height: 430px;
}

.page-hero__media,
.page-hero__overlay {
  position: absolute;
  inset: 0;
}

.page-hero__media img {
  object-fit: cover;
  object-position: center 45%;
  filter: saturate(0.72) contrast(1.04);
  transform: scale(1.04);
}

.page-hero__overlay {
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(2, 16, 7, 0.96) 0%, rgba(4, 23, 10, 0.78) 56%, rgba(4, 22, 10, 0.82) 100%),
    linear-gradient(180deg, rgba(2, 10, 5, 0.25) 0%, rgba(3, 16, 8, 0.95) 100%);
}

.page-hero__content {
  position: relative;
  z-index: 2;
  display: flex;
  min-height: inherit;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding-top: calc(var(--header-height) + 40px);
  padding-bottom: 70px;
}

.breadcrumbs {
  display: flex;
  max-width: 100%;
  align-items: center;
  gap: 8px;
  margin-bottom: 33px;
  color: rgba(232, 239, 233, 0.56);
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
}

.breadcrumbs a {
  transition: color 180ms ease;
}

.breadcrumbs a:hover {
  color: var(--green-bright);
}

.breadcrumbs svg {
  width: 14px;
  height: 14px;
  flex: 0 0 auto;
}

.breadcrumbs span {
  overflow: hidden;
  color: rgba(255, 255, 255, 0.76);
  text-overflow: ellipsis;
  white-space: nowrap;
}

.page-hero__content h1 {
  max-width: 940px;
  margin-bottom: 18px;
  color: #fff;
  font-family: var(--font-display), var(--font-display-fallback);
  font-size: clamp(58px, 6.3vw, 102px);
  font-weight: 650;
  letter-spacing: -0.045em;
  line-height: 0.98;
  text-transform: uppercase;
}

.page-hero--compact .page-hero__content h1 {
  font-size: clamp(48px, 5.2vw, 78px);
}

.page-hero__content > p {
  max-width: 700px;
  margin-bottom: 0;
  color: rgba(230, 238, 231, 0.74);
  font-size: 20px;
  line-height: 1.5;
}

/* Download page */
.download-layout {
  display: grid;
  align-items: start;
  grid-template-columns: minmax(320px, 0.74fr) minmax(0, 1.26fr);
  gap: 26px;
}

.download-file-card,
.content-card,
.support-card,
.support-contact,
.legal-document__notice,
.help-banner {
  border: 1px solid var(--line);
  border-radius: 24px;
  background: linear-gradient(155deg, rgba(14, 42, 23, 0.78), rgba(5, 22, 11, 0.95));
  box-shadow: 0 22px 65px rgba(0, 0, 0, 0.18);
}

.download-file-card {
  position: sticky;
  top: 116px;
  overflow: hidden;
  padding: 35px;
}

.download-file-card::after {
  position: absolute;
  width: 260px;
  height: 260px;
  right: -140px;
  bottom: -150px;
  border-radius: 50%;
  background: rgba(70, 227, 60, 0.12);
  filter: blur(40px);
  content: "";
}

.download-file-card > * {
  position: relative;
  z-index: 1;
}

.download-file-card__mark {
  width: 78px;
  height: 78px;
  margin-bottom: 29px;
  border-radius: 22px;
}

.download-file-card__mark svg {
  width: 38px;
  height: 38px;
}

.download-file-card__eyebrow {
  margin-bottom: 8px;
  font-size: 10px;
}

.download-file-card h2 {
  margin-bottom: 11px;
  font-family: var(--font-display), var(--font-display-fallback);
  font-size: 48px;
  font-weight: 650;
  line-height: 1;
  text-transform: uppercase;
}

.download-file-card > p {
  margin-bottom: 27px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.6;
}

.file-meta {
  display: grid;
  margin: 0 0 27px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border: 1px solid var(--line);
  border-radius: 16px;
}

.file-meta div {
  padding: 15px 17px;
}

.file-meta div:nth-child(odd) {
  border-right: 1px solid var(--line);
}

.file-meta div:nth-child(-n + 2) {
  border-bottom: 1px solid var(--line);
}

.file-meta dt {
  margin-bottom: 4px;
  color: var(--muted);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.file-meta dd {
  margin: 0;
  color: #fff;
  font-family: var(--font-display), var(--font-display-fallback);
  font-size: 18px;
  font-weight: 600;
}

.download-file-card .download-button {
  width: 100%;
}

.download-file-card__hint {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  margin-top: 12px;
  color: var(--muted);
  font-size: 11px;
}

.download-file-card__hint svg {
  width: 14px;
  height: 14px;
  color: var(--green);
}

.download-content {
  display: grid;
  gap: 22px;
}

.content-card {
  padding: 32px;
}

.content-card__heading,
.donate-form__section-heading {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 28px;
}

.content-card__heading > span,
.donate-form__section-heading > span {
  display: grid;
  width: 46px;
  height: 46px;
  flex: 0 0 auto;
  place-items: center;
  border: 1px solid rgba(116, 251, 70, 0.22);
  border-radius: 13px;
  background: rgba(93, 229, 54, 0.08);
  color: var(--green-bright);
  font-family: var(--font-display), var(--font-display-fallback);
  font-size: 14px;
  font-weight: 600;
}

.content-card__heading h2,
.donate-form__section-heading h2 {
  margin: 0 0 2px;
  font-family: var(--font-display), var(--font-display-fallback);
  font-size: 28px;
  font-weight: 600;
  text-transform: uppercase;
}

.content-card__heading p,
.donate-form__section-heading p {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
}

.install-steps {
  display: grid;
  margin: 0;
  padding: 0;
  gap: 0;
  list-style: none;
}

.install-steps li {
  position: relative;
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 16px;
  padding: 0 0 26px;
}

.install-steps li:not(:last-child)::before {
  position: absolute;
  top: 36px;
  bottom: 5px;
  left: 18px;
  width: 1px;
  background: linear-gradient(var(--green-deep), rgba(78, 222, 59, 0.08));
  content: "";
}

.install-steps li > span {
  display: grid;
  width: 37px;
  height: 37px;
  place-items: center;
  border: 1px solid rgba(111, 247, 67, 0.26);
  border-radius: 50%;
  background: #0a2414;
  color: var(--green-bright);
  font-family: var(--font-display), var(--font-display-fallback);
  font-size: 11px;
}

.install-steps h3 {
  margin: 2px 0 5px;
  font-family: var(--font-display), var(--font-display-fallback);
  font-size: 20px;
  font-weight: 600;
  text-transform: uppercase;
}

.install-steps p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.55;
}

.checksum-card__value {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 13px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(1, 12, 5, 0.42);
}

.checksum-card__value code {
  overflow: hidden;
  flex: 1;
  color: var(--text-soft);
  font-size: 12px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.copy-button {
  display: inline-flex;
  min-height: 40px;
  align-items: center;
  gap: 7px;
  padding: 0 12px;
  cursor: pointer;
  border: 1px solid rgba(112, 248, 69, 0.2);
  border-radius: 10px;
  background: rgba(90, 228, 53, 0.08);
  color: var(--green-bright);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  transition: background-color 180ms ease, border-color 180ms ease;
}

.copy-button:hover {
  border-color: rgba(112, 248, 69, 0.4);
  background: rgba(90, 228, 53, 0.13);
}

.copy-button svg {
  width: 15px;
  height: 15px;
}

.checksum-card > p {
  margin: 15px 0 0;
  color: var(--muted);
  font-size: 13px;
}

.security-note {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  padding: 24px 26px;
  border: 1px solid rgba(111, 247, 67, 0.16);
  border-radius: 20px;
  background: rgba(45, 145, 47, 0.08);
}

.security-note > svg {
  width: 31px;
  height: 31px;
  flex: 0 0 auto;
  color: var(--green);
}

.security-note h2 {
  margin-bottom: 6px;
  font-family: var(--font-display), var(--font-display-fallback);
  font-size: 21px;
  font-weight: 600;
  text-transform: uppercase;
}

.security-note p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.55;
}

.help-banner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 24px 28px;
}

.help-banner > div {
  display: flex;
  align-items: center;
  gap: 14px;
}

.help-banner > div > svg {
  width: 28px;
  height: 28px;
  flex: 0 0 auto;
  color: var(--green);
}

.help-banner > div > span {
  display: grid;
  color: var(--muted);
  font-size: 13px;
}

.help-banner b {
  color: #fff;
  font-size: 16px;
}

/* Donate */
.donate-section {
  padding-top: 70px;
}

.donate-form {
  display: grid;
  align-items: start;
  grid-template-columns: minmax(360px, 0.92fr) minmax(0, 1.08fr);
  gap: 24px;
}

.donate-form__methods,
.donate-form__details {
  padding: 32px;
  border: 1px solid var(--line);
  border-radius: 25px;
  background: linear-gradient(155deg, rgba(14, 42, 23, 0.82), rgba(5, 22, 11, 0.96));
  box-shadow: 0 25px 70px rgba(0, 0, 0, 0.19);
}

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

.payment-methods button {
  position: relative;
  display: flex;
  min-height: 118px;
  align-items: center;
  gap: 13px;
  padding: 18px;
  cursor: pointer;
  text-align: left;
  border: 1px solid var(--line);
  border-radius: 17px;
  background: rgba(255, 255, 255, 0.025);
  color: var(--muted);
  transition:
    transform 220ms var(--ease-out),
    border-color 220ms ease,
    background-color 220ms ease,
    box-shadow 220ms ease;
}

.payment-methods button:hover {
  border-color: rgba(111, 247, 67, 0.24);
  transform: translateY(-3px);
}

.payment-methods button.is-selected {
  border-color: rgba(111, 247, 67, 0.48);
  background: linear-gradient(145deg, rgba(57, 190, 51, 0.19), rgba(10, 65, 27, 0.14));
  box-shadow: 0 12px 32px rgba(40, 201, 54, 0.1), inset 0 1px 0 rgba(255, 255, 255, 0.06);
  color: #fff;
}

.payment-methods button > svg {
  width: 32px;
  height: 32px;
  flex: 0 0 auto;
  color: var(--green);
}

.payment-methods button > span {
  display: grid;
  flex: 1;
  line-height: 1.2;
}

.payment-methods button b {
  color: #fff;
  font-family: var(--font-display), var(--font-display-fallback);
  font-size: 17px;
  font-weight: 600;
  text-transform: uppercase;
}

.payment-methods button small {
  margin-top: 4px;
  color: var(--muted);
  font-size: 11px;
}

.payment-methods button > i {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 10px;
  height: 10px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
}

.payment-methods button.is-selected > i {
  border-color: var(--green);
  background: var(--green);
  box-shadow: 0 0 0 4px rgba(95, 235, 57, 0.11), 0 0 12px var(--green);
}

.server-selector {
  min-width: 0;
  margin: 0 0 14px;
  padding: 0;
  border: 0;
}

.server-selector legend {
  margin-bottom: 9px;
  padding: 0;
  color: var(--text-soft);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

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

.server-selector__options button {
  position: relative;
  display: flex;
  min-height: 88px;
  align-items: center;
  gap: 13px;
  padding: 15px 17px;
  cursor: pointer;
  text-align: left;
  border: 1px solid var(--line);
  border-radius: 15px;
  background: rgba(255, 255, 255, 0.025);
  color: var(--muted);
  transition:
    border-color 200ms ease,
    background-color 200ms ease,
    box-shadow 200ms ease,
    transform 200ms var(--ease-out);
}

.server-selector__options button:hover {
  border-color: rgba(111, 247, 67, 0.27);
  transform: translateY(-2px);
}

.server-selector__options button.is-selected {
  border-color: rgba(111, 247, 67, 0.48);
  background: linear-gradient(145deg, rgba(57, 190, 51, 0.18), rgba(10, 65, 27, 0.14));
  box-shadow: 0 12px 30px rgba(40, 201, 54, 0.09), inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.server-selector__options button > strong {
  display: grid;
  width: 48px;
  height: 48px;
  flex: 0 0 auto;
  place-items: center;
  border: 1px solid rgba(111, 247, 67, 0.2);
  border-radius: 13px;
  background: rgba(90, 228, 53, 0.07);
  color: var(--green-bright);
  font-family: var(--font-display), var(--font-display-fallback);
  font-size: 20px;
  font-weight: 650;
}

.server-selector__options button > span {
  display: grid;
  min-width: 0;
  flex: 1;
  line-height: 1.15;
}

.server-selector__options button b {
  color: #fff;
  font-family: var(--font-display), var(--font-display-fallback);
  font-size: 17px;
  font-weight: 600;
  text-transform: uppercase;
}

.server-selector__options button > i {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 10px;
  height: 10px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
}

.server-selector__options button.is-selected > i {
  border-color: var(--green);
  background: var(--green);
  box-shadow: 0 0 0 4px rgba(95, 235, 57, 0.11), 0 0 12px var(--green);
}

.donate-summary {
  display: grid;
  margin-bottom: 14px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 13px;
}

.donate-summary label {
  display: grid;
  min-height: 112px;
  align-content: center;
  padding: 18px 20px;
  border: 1px solid var(--line);
  border-radius: 17px;
  background: rgba(255, 255, 255, 0.025);
}

.donate-summary label > span {
  margin-bottom: 7px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.donate-summary strong {
  font-family: var(--font-display), var(--font-display-fallback);
  font-size: 31px;
  font-weight: 600;
  line-height: 1;
  text-transform: uppercase;
}

.donate-summary__coins {
  border-color: rgba(119, 248, 72, 0.39) !important;
  background: linear-gradient(125deg, rgba(23, 149, 42, 0.9), rgba(42, 229, 55, 0.88)) !important;
  box-shadow: 0 15px 36px rgba(42, 215, 55, 0.17);
}

.donate-summary__coins > span,
.donate-summary__coins strong {
  color: #061407 !important;
}

.donate-rate {
  display: flex;
  min-height: 42px;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin: -1px 0 14px;
  border: 1px solid rgba(111, 247, 67, 0.14);
  border-radius: 11px;
  background: rgba(90, 228, 53, 0.055);
  color: var(--green-bright);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.035em;
  text-transform: uppercase;
}

.donate-rate svg {
  width: 18px;
  height: 18px;
}

.amount-presets {
  display: grid;
  margin-bottom: 14px;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 8px;
}

.amount-presets button {
  min-height: 40px;
  cursor: pointer;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.025);
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
  transition: border-color 180ms ease, color 180ms ease, background-color 180ms ease;
}

.amount-presets button:hover,
.amount-presets button.is-active {
  border-color: rgba(111, 247, 67, 0.35);
  background: rgba(91, 229, 53, 0.09);
  color: var(--green-bright);
}

.field-label {
  display: grid;
  margin-top: 13px;
  gap: 7px;
}

.field-label > span {
  color: var(--text-soft);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.field-label input {
  width: 100%;
  min-height: 61px;
  padding: 0 17px;
  border: 1px solid var(--line);
  border-radius: 14px;
  outline: none;
  background: rgba(2, 14, 6, 0.45);
  color: #fff;
  transition: border-color 180ms ease, box-shadow 180ms ease, background-color 180ms ease;
}

.field-label input::placeholder {
  color: #68786b;
}

.field-label input:focus {
  border-color: rgba(111, 247, 67, 0.52);
  background: rgba(4, 20, 9, 0.72);
  box-shadow: 0 0 0 4px rgba(95, 235, 57, 0.08);
}

.donate-submit {
  position: relative;
  display: flex;
  width: 100%;
  min-height: 68px;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin-top: 18px;
  cursor: pointer;
  border: 1px solid rgba(164, 255, 125, 0.36);
  border-radius: 15px;
  background: linear-gradient(115deg, #148f2b, #63ed2d, #15c83a);
  background-size: 160% 100%;
  box-shadow: 0 17px 42px rgba(40, 211, 54, 0.2);
  color: #061407;
  font-family: var(--font-display), var(--font-display-fallback);
  font-size: 22px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  transition: transform 220ms var(--ease-out), box-shadow 220ms ease, background-position 300ms ease;
}

.donate-submit:hover {
  background-position: 100% 0;
  box-shadow: 0 21px 50px rgba(40, 211, 54, 0.3);
  transform: translateY(-2px);
}

.donate-submit span {
  font-size: 28px;
  transition: transform 180ms var(--ease-out);
}

.donate-submit:hover span {
  transform: translateX(4px);
}

.donate-form__legal {
  margin: 13px 0 0;
  color: #6f7f72;
  font-size: 10px;
  line-height: 1.45;
  text-align: center;
}

.donate-form__message {
  min-height: 20px;
  margin: 9px 0 0;
  color: var(--green-bright);
  font-size: 12px;
  font-weight: 600;
  text-align: center;
}

/* Support */
.support-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.support-card {
  position: relative;
  min-height: 320px;
  height: 100%;
  overflow: hidden;
  padding: 30px;
  transition: transform 260ms var(--ease-out), border-color 260ms ease, box-shadow 260ms ease;
}

.support-card::after {
  position: absolute;
  width: 170px;
  height: 170px;
  right: -90px;
  bottom: -100px;
  border-radius: 50%;
  background: rgba(79, 228, 60, 0.09);
  filter: blur(35px);
  content: "";
}

.support-card:hover {
  border-color: rgba(111, 247, 67, 0.3);
  box-shadow: 0 28px 72px rgba(0, 0, 0, 0.27);
  transform: translateY(-7px);
}

.support-card__icon {
  margin-bottom: 68px;
}

.support-card h2 {
  position: relative;
  z-index: 1;
  margin-bottom: 11px;
  font-family: var(--font-display), var(--font-display-fallback);
  font-size: 28px;
  font-weight: 600;
  line-height: 1.1;
  text-transform: uppercase;
}

.support-card p {
  position: relative;
  z-index: 1;
  margin-bottom: 23px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.55;
}

.support-card a {
  position: relative;
  z-index: 1;
  justify-content: flex-start;
  color: var(--green-bright);
  font-size: 12px;
}

.support-contact {
  display: grid;
  align-items: center;
  margin-top: 25px;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: 25px;
  padding: 30px;
}

.support-contact__icon {
  width: 76px;
  height: 76px;
  border-radius: 22px;
}

.support-contact__icon svg {
  width: 36px;
  height: 36px;
}

.support-contact > div:nth-child(2) > span {
  margin-bottom: 6px;
  font-size: 10px;
}

.support-contact h2 {
  margin-bottom: 7px;
  font-family: var(--font-display), var(--font-display-fallback);
  font-size: 30px;
  font-weight: 600;
  text-transform: uppercase;
}

.support-contact p {
  max-width: 760px;
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.55;
}

.support-contact .primary-link {
  max-width: 310px;
  font-family: var(--font-text), var(--font-text-fallback);
  font-size: 13px;
  text-transform: none;
}

.support-checklist {
  margin-top: 70px;
}

.support-checklist > .reveal > h2 {
  margin-bottom: 24px;
  font-family: var(--font-display), var(--font-display-fallback);
  font-size: 38px;
  font-weight: 600;
  text-transform: uppercase;
}

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

.support-checklist__grid .reveal > div {
  display: flex;
  min-height: 115px;
  height: 100%;
  align-items: center;
  gap: 13px;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 17px;
  background: rgba(255, 255, 255, 0.025);
  color: var(--text-soft);
  font-size: 13px;
}

.support-checklist__grid span {
  color: var(--green-bright);
  font-family: var(--font-display), var(--font-display-fallback);
  font-size: 13px;
}

/* Legal */
.legal-document {
  max-width: 960px;
}

.legal-document__notice {
  margin-bottom: 42px;
  padding: 23px 25px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.6;
}

.legal-document__notice b {
  display: block;
  margin-bottom: 3px;
  color: var(--green-bright);
}

.legal-document > section {
  padding: 31px 0;
  border-top: 1px solid var(--line);
}

.legal-document > section:last-child {
  border-bottom: 1px solid var(--line);
}

.legal-document h2 {
  margin-bottom: 16px;
  font-family: var(--font-display), var(--font-display-fallback);
  font-size: 32px;
  font-weight: 600;
  text-transform: uppercase;
}

.legal-document p {
  margin-bottom: 13px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.75;
}

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

.legal-document a {
  color: var(--green-bright);
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* Article */
.article-hero {
  position: relative;
  min-height: 650px;
  overflow: hidden;
  background: #07170d;
}

.article-hero > img {
  object-fit: cover;
  filter: saturate(0.8) contrast(1.04);
}

.article-hero__overlay {
  position: absolute;
  z-index: 1;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(2, 15, 7, 0.97) 0%, rgba(3, 18, 8, 0.78) 55%, rgba(3, 18, 8, 0.62) 100%),
    linear-gradient(180deg, rgba(2, 10, 5, 0.17), rgba(4, 16, 8, 0.98));
}

.article-hero__content {
  position: relative;
  z-index: 2;
  display: flex;
  min-height: 650px;
  max-width: 1440px;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-end;
  padding-top: calc(var(--header-height) + 50px);
  padding-bottom: 82px;
}

.article-hero__content .breadcrumbs {
  margin-bottom: auto;
  padding-top: 24px;
}

.article-hero__category {
  padding: 7px 11px;
  border: 1px solid rgba(120, 249, 76, 0.3);
  border-radius: 9px;
  background: rgba(4, 25, 11, 0.52);
  font-size: 10px;
  backdrop-filter: blur(10px);
}

.article-hero__category::before {
  display: none;
}

.article-hero h1 {
  max-width: 900px;
  margin-bottom: 18px;
  font-family: var(--font-display), var(--font-display-fallback);
  font-size: clamp(54px, 6vw, 92px);
  font-weight: 650;
  letter-spacing: -0.04em;
  line-height: 1;
  text-transform: uppercase;
}

.article-hero__content > p {
  max-width: 760px;
  margin-bottom: 20px;
  color: rgba(229, 237, 230, 0.75);
  font-size: 19px;
  line-height: 1.5;
}

.article-hero time {
  margin-bottom: 0;
}

.article-content {
  display: grid;
  max-width: 1120px;
  grid-template-columns: 190px minmax(0, 1fr);
  gap: 65px;
  padding-top: 82px;
  padding-bottom: 92px;
}

.back-link {
  position: sticky;
  top: 120px;
  align-self: start;
  justify-content: flex-start;
  color: var(--muted);
  font-size: 12px;
}

.back-link svg {
  width: 17px;
  height: 17px;
}

.back-link:hover {
  color: var(--green-bright);
  transform: translateX(-3px);
}

.article-content__body {
  max-width: 790px;
}

.article-content__body p {
  margin-bottom: 24px;
  color: #b8c5ba;
  font-size: 19px;
  line-height: 1.8;
}

.article-content__body p:first-child::first-letter {
  float: left;
  margin: 6px 10px 0 0;
  color: var(--green-bright);
  font-family: var(--font-display), var(--font-display-fallback);
  font-size: 72px;
  font-weight: 650;
  line-height: 0.78;
}

.related-news {
  border-top: 1px solid var(--line);
  background: #06150b;
}

/* Error */
.error-page {
  position: relative;
  display: flex;
  min-height: 78svh;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: calc(var(--header-height) + 80px) 24px 100px;
  background: radial-gradient(circle at 50% 50%, #0c2f19, #041008 65%);
  text-align: center;
}

.error-page__glow {
  position: absolute;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  background: rgba(69, 231, 55, 0.1);
  filter: blur(70px);
}

.error-page > span {
  position: relative;
  color: rgba(112, 248, 69, 0.14);
  font-family: var(--font-display), var(--font-display-fallback);
  font-size: clamp(130px, 22vw, 310px);
  font-weight: 700;
  letter-spacing: -0.08em;
  line-height: 0.72;
}

.error-page h1,
.error-page p,
.error-page a {
  position: relative;
}

.error-page h1 {
  margin: 30px 0 10px;
  font-family: var(--font-display), var(--font-display-fallback);
  font-size: clamp(38px, 5vw, 64px);
  text-transform: uppercase;
}

.error-page p {
  margin-bottom: 25px;
  color: var(--muted);
}

/* Footer */
.site-footer {
  position: relative;
  overflow: hidden;
  border-top: 1px solid var(--line);
  background: #031008;
}

.site-footer__glow {
  position: absolute;
  width: 560px;
  height: 300px;
  left: -280px;
  bottom: -190px;
  border-radius: 50%;
  background: rgba(62, 222, 56, 0.08);
  filter: blur(60px);
}

.site-footer__grid {
  position: relative;
  display: grid;
  grid-template-columns: 1.35fr 0.75fr 1fr 1fr;
  gap: clamp(36px, 6vw, 90px);
  padding-top: 74px;
  padding-bottom: 64px;
}

.site-footer__brand > a {
  display: inline-flex;
  width: 140px;
  margin-bottom: 24px;
}

.site-footer__brand img {
  width: 100%;
  height: auto;
}

.site-footer__brand p {
  max-width: 320px;
  margin-bottom: 22px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.6;
}

.site-footer__brand > span {
  color: #607064;
  font-size: 11px;
  text-transform: uppercase;
}

.site-footer__column,
.site-footer__contacts {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.site-footer h2 {
  margin-bottom: 24px;
  color: #fff;
  font-family: var(--font-display), var(--font-display-fallback);
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.site-footer__column > a {
  margin-bottom: 13px;
  color: var(--muted);
  font-size: 13px;
  transition: color 180ms ease, transform 180ms var(--ease-out);
}

.site-footer__column > a:hover {
  color: var(--green-bright);
  transform: translateX(3px);
}

.site-footer__contacts > a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 13px;
  color: var(--text-soft);
  font-size: 13px;
  transition: color 180ms ease;
}

.site-footer__contacts > a:hover {
  color: var(--green-bright);
}

.site-footer__contacts > a svg {
  width: 17px;
  height: 17px;
  color: var(--green);
}

.site-footer__contacts > p {
  max-width: 250px;
  margin-bottom: 22px;
  color: #68786b;
  font-size: 11px;
  line-height: 1.5;
}

.site-footer__bottom {
  position: relative;
  display: flex;
  min-height: 64px;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  border-top: 1px solid var(--line);
  color: #58685c;
  font-size: 10px;
  text-transform: uppercase;
}

/* Motion */
@keyframes hero-media {
  from { transform: scale(1.09); }
  to { transform: scale(1.03); }
}

@keyframes hero-enter {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes orb-float {
  from { transform: translate3d(-20px, -10px, 0) scale(0.92); }
  to { transform: translate3d(25px, 22px, 0) scale(1.08); }
}

@keyframes live-pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.65; transform: scale(0.82); }
}

@keyframes progress-grow {
  from { transform: scaleX(0); }
  to { transform: scaleX(1); }
}

@keyframes scroll-dot {
  0% { opacity: 0; transform: translate(-50%, -2px); }
  35% { opacity: 1; }
  100% { opacity: 0; transform: translate(-50%, 12px); }
}

/* Responsive */
@media (max-width: 1420px) {
  .page-container {
    width: min(calc(100% - 48px), var(--container));
  }

  .site-header__inner {
    gap: 28px;
  }

  .support-shortcut {
    display: none;
  }

  .hero__content {
    grid-template-columns: minmax(0, 1fr) minmax(340px, 400px);
    gap: 55px;
  }
}

@media (max-width: 1240px) {
  :root {
    --header-height: 92px;
  }

  .site-header__brand {
    width: 112px;
  }

  .social-links--header {
    display: none;
  }

  .hero__title {
    font-size: clamp(55px, 6vw, 78px);
  }

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

  .feature-card {
    min-height: 270px;
  }

  .feature-card h3 {
    margin-top: 54px;
  }

  .download-cta {
    grid-template-columns: auto minmax(0, 1fr);
  }

  .download-cta__action {
    grid-column: 2;
    justify-self: start;
  }

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

@media (max-width: 1120px) {
  .site-nav {
    display: none;
  }

  .site-header__actions {
    margin-left: auto;
  }

  .menu-toggle {
    display: grid;
  }

  .mobile-menu {
    position: fixed;
    z-index: 1002;
    top: 0;
    right: 0;
    display: flex;
    width: min(430px, 92vw);
    height: 100dvh;
    flex-direction: column;
    overflow-y: auto;
    padding: calc(var(--header-height) + 34px) 26px 28px;
    border-left: 1px solid var(--line);
    background:
      radial-gradient(circle at 80% 12%, rgba(65, 224, 58, 0.14), transparent 17rem),
      rgba(4, 18, 9, 0.98);
    box-shadow: -35px 0 90px rgba(0, 0, 0, 0.45);
    opacity: 0;
    pointer-events: none;
    transform: translateX(105%);
    transition: transform 380ms var(--ease-out), opacity 250ms ease;
  }

  .mobile-menu.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: translateX(0);
  }

  .mobile-menu__backdrop {
    position: fixed;
    z-index: 1001;
    inset: 0;
    display: block;
    cursor: default;
    border: 0;
    background: rgba(0, 5, 2, 0.64);
    opacity: 0;
    pointer-events: none;
    backdrop-filter: blur(4px);
    transition: opacity 260ms ease;
  }

  .mobile-menu__backdrop.is-open {
    opacity: 1;
    pointer-events: auto;
  }

  .mobile-menu__nav {
    display: grid;
    margin-bottom: 30px;
    border-top: 1px solid var(--line);
  }

  .mobile-menu__nav > a {
    display: flex;
    min-height: 62px;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    border-bottom: 1px solid var(--line);
    color: var(--text-soft);
    font-family: var(--font-display), var(--font-display-fallback);
    font-size: 20px;
    font-weight: 600;
    letter-spacing: 0.035em;
    text-transform: uppercase;
    opacity: 0;
    transform: translateX(18px);
    transition:
      color 180ms ease,
      opacity 350ms var(--ease-out),
      transform 350ms var(--ease-out);
    transition-delay: calc(var(--menu-index, 4) * 45ms + 90ms);
  }

  .mobile-menu.is-open .mobile-menu__nav > a {
    opacity: 1;
    transform: translateX(0);
  }

  .mobile-menu__nav > a:hover,
  .mobile-menu__nav > a.is-active {
    color: var(--green-bright);
  }

  .mobile-menu__nav b {
    display: grid;
    min-width: 31px;
    height: 31px;
    place-items: center;
    border-radius: 9px;
    background: var(--green);
    color: #071509;
    font-family: var(--font-text), var(--font-text-fallback);
    font-size: 12px;
  }

  .mobile-menu__download {
    width: 100%;
    margin-bottom: 32px;
  }

  .mobile-menu__footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    margin-top: auto;
    padding-top: 23px;
    border-top: 1px solid var(--line);
  }

  .mobile-menu__footer > span {
    max-width: 130px;
    color: var(--muted);
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
  }

  .hero {
    min-height: auto;
  }

  .hero__content {
    min-height: auto;
    grid-template-columns: 1fr;
    gap: 58px;
    padding-top: calc(var(--header-height) + 110px);
    padding-bottom: 120px;
  }

  .hero__copy {
    max-width: 820px;
  }

  .hero__servers {
    width: min(100%, 720px);
  }

  .server-card {
    min-height: 235px;
  }

  .hero__scroll {
    display: none;
  }

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

  .project-stats > .reveal:nth-child(2) {
    border-right: 0;
  }

  .project-stats > .reveal:nth-child(-n + 2) {
    border-bottom: 1px solid var(--line);
  }

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

  .faq-layout {
    grid-template-columns: 1fr;
    gap: 48px;
  }

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

  .download-file-card {
    position: relative;
    top: auto;
  }

  .donate-form {
    grid-template-columns: 1fr;
  }

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

  .support-contact {
    grid-template-columns: auto minmax(0, 1fr);
  }

  .support-contact .primary-link {
    grid-column: 2;
    justify-self: start;
  }

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

@media (max-width: 800px) {
  :root {
    --header-height: 78px;
  }

  .page-container {
    width: min(calc(100% - 32px), var(--container));
  }

  .section {
    padding: 84px 0;
  }

  .section--download {
    padding-top: 42px;
    padding-bottom: 42px;
  }

  .site-header,
  .site-header--solid {
    height: var(--header-height);
  }

  .site-header__brand {
    width: 99px;
  }

  .site-header__actions .download-button {
    min-height: 43px;
    padding-inline: 13px;
    font-size: 12px;
  }

  .site-header__actions .download-button__download-icon {
    width: 18px;
    height: 18px;
  }

  .hero__media img {
    object-position: 58% 52%;
  }

  .hero__overlay {
    background:
      linear-gradient(90deg, rgba(2, 14, 7, 0.95), rgba(3, 20, 9, 0.8)),
      linear-gradient(180deg, rgba(2, 10, 5, 0.15), rgba(3, 16, 8, 0.96));
  }

  .hero__content {
    gap: 45px;
    padding-top: calc(var(--header-height) + 76px);
    padding-bottom: 75px;
  }

  .hero__eyebrow {
    margin-bottom: 13px;
    font-size: 12px;
  }

  .hero__title {
    margin-bottom: 20px;
    font-size: clamp(48px, 11vw, 72px);
  }

  .hero__title span:last-child {
    gap: 10px;
    font-size: 0.67em;
  }

  .hero__lead {
    font-size: 19px;
  }

  .hero__description {
    font-size: 16px;
  }

  .hero__actions {
    flex-direction: column;
    align-items: stretch;
  }

  .hero__actions .download-button {
    width: 100%;
  }

  .hero__install-link {
    min-width: 0;
  }

  .hero__meta {
    flex-direction: column;
    align-items: flex-start;
    gap: 9px;
    font-size: 12px;
  }

  .server-card__number {
    font-size: 58px;
  }

  .about-intro {
    align-items: flex-start;
    flex-direction: column;
  }

  .about-intro__badge {
    min-width: 0;
  }

  .project-stat {
    min-height: 125px;
    padding: 23px;
  }

  .section-title h2 {
    font-size: clamp(38px, 8vw, 56px);
  }

  .section-title p {
    font-size: 16px;
  }

  .section-heading-row {
    align-items: flex-start;
    flex-direction: column;
    margin-bottom: 35px;
  }

  .download-cta {
    grid-template-columns: 1fr;
    gap: 23px;
    padding: 30px;
  }

  .download-cta__icon {
    width: 82px;
    height: 82px;
    border-radius: 22px;
  }

  .download-cta__icon svg {
    width: 39px;
    height: 39px;
  }

  .download-cta__action {
    grid-column: auto;
  }

  .download-cta__action,
  .download-cta__action .download-button {
    width: 100%;
  }

  .page-hero {
    min-height: 460px;
  }

  .page-hero--compact {
    min-height: 390px;
  }

  .page-hero__content {
    padding-top: calc(var(--header-height) + 55px);
    padding-bottom: 55px;
  }

  .breadcrumbs {
    margin-bottom: 24px;
  }

  .page-hero__content h1 {
    font-size: clamp(48px, 12vw, 78px);
  }

  .page-hero__content > p {
    font-size: 17px;
  }

  .article-hero,
  .article-hero__content {
    min-height: 560px;
  }

  .article-hero__content {
    padding-bottom: 60px;
  }

  .article-hero h1 {
    font-size: clamp(46px, 11vw, 70px);
  }

  .article-content {
    grid-template-columns: 1fr;
    gap: 30px;
    padding-top: 55px;
    padding-bottom: 65px;
  }

  .back-link {
    position: static;
  }

  .support-contact {
    grid-template-columns: 1fr;
  }

  .support-contact .primary-link {
    grid-column: auto;
  }

  .site-footer__bottom {
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
    padding-block: 18px;
  }
}

@media (max-width: 650px) {
  .site-header__actions .download-button > span:not(.download-button__shine) {
    display: none;
  }

  .site-header__actions .download-button {
    width: 44px;
    padding: 0;
  }

  .site-header__inner {
    gap: 12px;
  }

  .menu-toggle {
    width: 44px;
    height: 44px;
  }

  .mobile-menu {
    width: 100%;
    padding-right: 18px;
    padding-left: 18px;
    border-left: 0;
  }

  .hero__content {
    padding-top: calc(var(--header-height) + 60px);
  }

  .hero__title {
    font-size: clamp(43px, 13vw, 62px);
  }

  .hero__title span:last-child {
    display: block;
    margin-top: 5px;
    line-height: 1.08;
  }

  .hero__title b {
    margin-right: 7px;
  }

  .hero__lead {
    font-size: 18px;
  }

  .hero__description {
    margin-bottom: 25px;
  }

  .download-button {
    min-height: 59px;
    font-size: 16px;
  }

  .download-button__logo {
    width: 66px;
    height: 41px;
  }

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

  .server-card {
    min-height: 225px;
    padding: 18px 15px;
    border-radius: 17px;
  }

  .server-card__number {
    font-size: 47px;
  }

  .server-card__label {
    font-size: 23px;
  }

  .server-card__live {
    display: none;
  }

  .project-stats,
  .features-grid,
  .news-grid,
  .support-grid,
  .support-checklist__grid,
  .site-footer__grid {
    grid-template-columns: 1fr;
  }

  .project-stats > .reveal {
    border-right: 0 !important;
    border-bottom: 1px solid var(--line);
  }

  .project-stats > .reveal:last-child {
    border-bottom: 0;
  }

  .feature-card {
    min-height: 260px;
  }

  .news-card__body {
    min-height: 250px;
  }

  .faq-item summary {
    min-height: 75px;
    gap: 12px;
    font-size: 18px;
  }

  .faq-item > p {
    margin-right: 15px;
    margin-left: 38px;
  }

  .download-file-card,
  .content-card,
  .donate-form__methods,
  .donate-form__details {
    padding: 24px;
    border-radius: 20px;
  }

  .file-meta,
  .payment-methods,
  .donate-summary {
    grid-template-columns: 1fr;
  }

  .file-meta div {
    border-right: 0 !important;
    border-bottom: 1px solid var(--line);
  }

  .file-meta div:last-child {
    border-bottom: 0;
  }

  .payment-methods button {
    min-height: 92px;
  }

  .server-selector__options {
    grid-template-columns: 1fr;
  }

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

  .checksum-card__value {
    align-items: stretch;
    flex-direction: column;
  }

  .checksum-card__value code {
    white-space: normal;
    word-break: break-all;
  }

  .copy-button {
    justify-content: center;
  }

  .help-banner {
    align-items: stretch;
    flex-direction: column;
  }

  .support-contact .primary-link {
    max-width: 100%;
    overflow: hidden;
    font-size: 12px;
    text-overflow: ellipsis;
  }

  .article-content__body p {
    font-size: 17px;
    line-height: 1.75;
  }

  .site-footer__grid {
    gap: 38px;
    padding-top: 58px;
    padding-bottom: 48px;
  }
}

@media (max-width: 420px) {
  .page-container {
    width: min(calc(100% - 24px), var(--container));
  }

  .hero__title {
    font-size: 42px;
  }

  .hero__eyebrow {
    font-size: 10px;
  }

  .hero__servers-heading {
    font-size: 11px;
  }

  .server-card {
    min-height: 211px;
    padding: 16px 13px;
  }

  .server-card__number {
    font-size: 42px;
  }

  .server-card__label {
    font-size: 20px;
  }

  .server-card__population {
    font-size: 10px;
  }

  .section-title h2 {
    font-size: 36px;
  }

  .page-hero__content h1 {
    font-size: 43px;
  }

  .download-cta,
  .support-card,
  .support-contact {
    padding: 23px;
  }

  .content-card__heading h2,
  .donate-form__section-heading h2 {
    font-size: 23px;
  }

  .donate-summary strong {
    font-size: 27px;
  }

  .article-hero h1 {
    font-size: 43px;
  }
}

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

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

  .reveal,
  .hero-enter,
  .route-transition__page {
    opacity: 1;
    filter: none;
    transform: none;
  }

  .route-transition__bar {
    display: none;
  }
}
