:root {
  --bg: #060806;
  --bg-soft: #0a0d0a;
  --panel: rgba(15, 20, 15, 0.78);
  --panel-strong: #101510;
  --panel-lighter: #151c15;
  --line: rgba(255, 255, 255, 0.08);
  --line-green: rgba(144, 255, 109, 0.18);
  --text: #f4f7f3;
  --muted: #a6afa4;
  --muted-2: #727b70;
  --green: #8dff67;
  --green-2: #b9ff9f;
  --green-dark: #4dbb35;
  --shadow: 0 26px 80px rgba(0, 0, 0, 0.45);
  --radius: 22px;
  --radius-sm: 14px;
  --nav-height: 78px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: var(--bg);
}

body {
  margin: 0;
  min-width: 320px;
  color: var(--text);
  background:
    radial-gradient(circle at 75% 10%, rgba(89, 255, 58, 0.055), transparent 34rem),
    var(--bg);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

body.menu-open,
body.modal-open {
  overflow: hidden;
}

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

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

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

button {
  font: inherit;
}

img,
svg {
  display: block;
}

.container {
  width: min(1180px, calc(100% - 48px));
  margin-inline: auto;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 18px;
  color: var(--green-2);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 18px;
  height: 2px;
  content: "";
  border-radius: 20px;
  background: var(--green);
  box-shadow: 0 0 14px rgba(141, 255, 103, 0.65);
}

.section-heading {
  max-width: 690px;
  margin-bottom: 46px;
}

.section-heading h2 {
  margin: 0 0 15px;
  font-size: clamp(2.05rem, 4vw, 3.65rem);
  line-height: 1.03;
  letter-spacing: -0.055em;
}

.section-heading p {
  max-width: 620px;
  margin: 0;
  color: var(--muted);
  font-size: 1.02rem;
  line-height: 1.75;
}

.site-header {
  position: fixed;
  z-index: 100;
  top: 0;
  left: 0;
  width: 100%;
  border-bottom: 1px solid transparent;
  transition: background 180ms ease, border-color 180ms ease, backdrop-filter 180ms ease;
}

.site-header.scrolled {
  border-color: var(--line);
  background: rgba(6, 8, 6, 0.82);
  backdrop-filter: blur(18px);
}

.nav {
  display: flex;
  min-height: var(--nav-height);
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.brand-mark {
  position: relative;
  display: grid;
  width: 40px;
  height: 40px;
  place-items: center;
  overflow: hidden;
  border: 1px solid rgba(141, 255, 103, 0.28);
  border-radius: 12px;
  background:
    linear-gradient(145deg, rgba(141, 255, 103, 0.14), rgba(141, 255, 103, 0.02)),
    #0c100c;
  box-shadow: inset 0 0 20px rgba(141, 255, 103, 0.04), 0 0 28px rgba(111, 255, 76, 0.08);
}

.brand-mark::before {
  position: absolute;
  width: 17px;
  height: 17px;
  content: "";
  transform: rotate(45deg);
  border: 3px solid var(--green);
  border-radius: 4px;
  box-shadow: 0 0 18px rgba(141, 255, 103, 0.35);
}

.brand-mark::after {
  position: absolute;
  width: 6px;
  height: 6px;
  content: "";
  transform: rotate(45deg);
  border-radius: 1px;
  background: #0c100c;
}

.brand-copy {
  display: flex;
  align-items: baseline;
  gap: 8px;
}

.brand-name {
  font-size: 1.18rem;
  font-weight: 900;
  letter-spacing: -0.035em;
}

.brand-sub {
  color: var(--muted-2);
  font-size: 0.72rem;
  font-weight: 750;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 30px;
}

.nav-links a {
  position: relative;
  color: #c5cbc3;
  font-size: 0.86rem;
  font-weight: 730;
  transition: color 160ms ease;
}

.nav-links a::after {
  position: absolute;
  right: 0;
  bottom: -9px;
  left: 0;
  width: 0;
  height: 2px;
  margin: auto;
  content: "";
  border-radius: 99px;
  background: var(--green);
  transition: width 160ms ease;
}

.nav-links a:hover {
  color: #fff;
}

.nav-links a:hover::after {
  width: 100%;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 11px;
}

.version-pill {
  display: inline-flex;
  height: 38px;
  align-items: center;
  gap: 8px;
  padding: 0 13px;
  border: 1px solid var(--line);
  border-radius: 10px;
  color: #c2c9c0;
  background: rgba(255, 255, 255, 0.025);
  font-size: 0.74rem;
  font-weight: 760;
}

.version-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 12px rgba(141, 255, 103, 0.75);
}

.nav-download,
.button-primary,
.button-secondary,
.button-ghost {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  border: 0;
  cursor: pointer;
  font-weight: 850;
  transition: transform 160ms ease, background 160ms ease, border-color 160ms ease, box-shadow 160ms ease;
}

.nav-download {
  height: 42px;
  padding: 0 18px;
  border-radius: 11px;
  color: #091008;
  background: var(--green);
  box-shadow: 0 8px 28px rgba(110, 255, 73, 0.16);
  font-size: 0.82rem;
}

.nav-download:hover,
.button-primary:hover {
  transform: translateY(-2px);
  background: #a3ff82;
  box-shadow: 0 14px 36px rgba(110, 255, 73, 0.22);
}

.mobile-toggle {
  display: none;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 11px;
  color: #fff;
  background: rgba(255, 255, 255, 0.03);
  cursor: pointer;
}

.mobile-toggle span,
.mobile-toggle::before,
.mobile-toggle::after {
  display: block;
  width: 18px;
  height: 2px;
  content: "";
  border-radius: 20px;
  background: currentColor;
  transition: 160ms ease;
}

.mobile-toggle span {
  margin: 4px 0;
}

.hero {
  position: relative;
  min-height: 850px;
  padding: calc(var(--nav-height) + 88px) 0 90px;
  isolation: isolate;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
  background:
    radial-gradient(circle at 50% 32%, rgba(111, 255, 76, 0.15), transparent 23rem),
    radial-gradient(circle at 76% 28%, rgba(74, 181, 54, 0.08), transparent 20rem),
    linear-gradient(180deg, rgba(7, 10, 7, 0.02), #060806 93%);
}

.hero::before {
  position: absolute;
  z-index: -3;
  inset: 0;
  content: "";
  opacity: 0.62;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
  background-size: 52px 52px;
  mask-image: linear-gradient(to bottom, black, transparent 83%);
}

.hero::after {
  position: absolute;
  z-index: -2;
  top: -260px;
  left: 50%;
  width: 840px;
  height: 840px;
  content: "";
  transform: translateX(-50%);
  border: 1px solid rgba(141, 255, 103, 0.08);
  border-radius: 50%;
  box-shadow:
    0 0 0 90px rgba(141, 255, 103, 0.015),
    0 0 0 180px rgba(141, 255, 103, 0.01);
}

.hero-content {
  position: relative;
  z-index: 4;
  display: flex;
  max-width: 900px;
  margin: 0 auto;
  align-items: center;
  flex-direction: column;
  text-align: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 27px;
  padding: 7px 12px 7px 8px;
  border: 1px solid rgba(141, 255, 103, 0.17);
  border-radius: 99px;
  color: #c9d4c6;
  background: rgba(141, 255, 103, 0.045);
  backdrop-filter: blur(14px);
  font-size: 0.76rem;
  font-weight: 720;
}

.hero-badge strong {
  padding: 4px 8px;
  border-radius: 99px;
  color: #0a1108;
  background: var(--green);
  font-size: 0.68rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.hero-logo {
  position: relative;
  display: grid;
  width: 102px;
  height: 102px;
  margin-bottom: 25px;
  place-items: center;
  border: 1px solid rgba(141, 255, 103, 0.28);
  border-radius: 30px;
  background:
    linear-gradient(145deg, rgba(141, 255, 103, 0.13), rgba(141, 255, 103, 0.025)),
    rgba(10, 14, 10, 0.78);
  box-shadow:
    inset 0 0 34px rgba(141, 255, 103, 0.045),
    0 0 80px rgba(103, 255, 66, 0.14);
  backdrop-filter: blur(18px);
}

.hero-logo svg {
  width: 54px;
  height: 54px;
  filter: drop-shadow(0 0 16px rgba(141, 255, 103, 0.35));
}

.hero h1 {
  margin: 0;
  font-size: clamp(4rem, 9vw, 7.5rem);
  line-height: 0.92;
  letter-spacing: -0.075em;
}

.hero h1 .accent {
  color: var(--green);
}

.hero-lead {
  max-width: 670px;
  margin: 25px auto 0;
  color: #b0b9ad;
  font-size: clamp(1rem, 1.8vw, 1.18rem);
  line-height: 1.78;
}

.hero-actions {
  display: flex;
  margin-top: 34px;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}

.button-primary,
.button-secondary,
.button-ghost {
  min-height: 52px;
  padding: 0 22px;
  border-radius: 13px;
  font-size: 0.88rem;
}

.button-primary {
  color: #091008;
  background: var(--green);
}

.button-secondary {
  border: 1px solid rgba(255, 255, 255, 0.11);
  color: #f8faf7;
  background: rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(12px);
}

.button-secondary:hover,
.button-ghost:hover {
  transform: translateY(-2px);
  border-color: rgba(141, 255, 103, 0.28);
  background: rgba(141, 255, 103, 0.07);
}

.button-ghost {
  border: 1px solid var(--line);
  color: #d8ded6;
  background: rgba(255, 255, 255, 0.025);
}

.button-icon {
  width: 17px;
  height: 17px;
}

.hero-notes {
  display: flex;
  margin-top: 24px;
  align-items: center;
  justify-content: center;
  gap: 18px;
  color: var(--muted-2);
  font-size: 0.72rem;
  font-weight: 670;
  flex-wrap: wrap;
}

.hero-note {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.hero-note svg {
  width: 14px;
  height: 14px;
  color: #8f988d;
}

.particles {
  position: absolute;
  z-index: -1;
  inset: 0;
  pointer-events: none;
}

.particle {
  position: absolute;
  width: var(--size, 4px);
  height: var(--size, 4px);
  opacity: var(--opacity, 0.45);
  transform: rotate(45deg);
  border-radius: 1px;
  background: var(--particle, rgba(141, 255, 103, 0.8));
  box-shadow: 0 0 12px rgba(141, 255, 103, 0.22);
  animation: drift var(--duration, 10s) ease-in-out infinite alternate;
}

@keyframes drift {
  from { transform: translate3d(0, 0, 0) rotate(45deg); }
  to { transform: translate3d(var(--x, 20px), var(--y, -26px), 0) rotate(110deg); }
}

.voxel-scene {
  position: absolute;
  z-index: 0;
  right: 0;
  bottom: -80px;
  left: 0;
  height: 330px;
  opacity: 0.58;
  pointer-events: none;
  mask-image: linear-gradient(to bottom, transparent 0%, black 28%, black 70%, transparent 98%);
}

.voxel-layer {
  position: absolute;
  bottom: 0;
  left: 50%;
  width: min(1300px, 110vw);
  height: 230px;
  transform: translateX(-50%);
  background:
    linear-gradient(90deg, transparent 0 4%, #0b100b 4% 13%, transparent 13% 18%, #0d130d 18% 31%, transparent 31% 35%, #0d140d 35% 47%, transparent 47% 51%, #0c120c 51% 68%, transparent 68% 73%, #0e150e 73% 87%, transparent 87%),
    linear-gradient(#0b100b, #060806);
  clip-path: polygon(0 59%, 7% 59%, 7% 39%, 13% 39%, 13% 52%, 20% 52%, 20% 23%, 30% 23%, 30% 46%, 39% 46%, 39% 32%, 48% 32%, 48% 60%, 57% 60%, 57% 26%, 69% 26%, 69% 45%, 76% 45%, 76% 16%, 86% 16%, 86% 48%, 94% 48%, 94% 35%, 100% 35%, 100% 100%, 0 100%);
  filter: drop-shadow(0 -20px 50px rgba(84, 255, 49, 0.035));
}

.hero-bottom-line {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 4;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(141, 255, 103, 0.22), transparent);
}

.trust-strip {
  border-bottom: 1px solid var(--line);
  background: #070a07;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.trust-item {
  display: flex;
  min-height: 104px;
  align-items: center;
  justify-content: center;
  gap: 13px;
  padding: 20px;
  border-right: 1px solid var(--line);
  color: #b9c0b7;
}

.trust-item:last-child {
  border-right: 0;
}

.trust-item svg {
  width: 20px;
  height: 20px;
  color: var(--green);
}

.trust-copy strong {
  display: block;
  margin-bottom: 3px;
  color: #f1f4f0;
  font-size: 0.85rem;
}

.trust-copy span {
  color: var(--muted-2);
  font-size: 0.7rem;
}

.features {
  padding: 132px 0;
}

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

.feature-card {
  position: relative;
  min-height: 290px;
  padding: 30px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.035), transparent 45%),
    var(--panel);
  box-shadow: inset 0 1px rgba(255, 255, 255, 0.025);
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.feature-card::after {
  position: absolute;
  right: -85px;
  bottom: -95px;
  width: 190px;
  height: 190px;
  content: "";
  border-radius: 50%;
  background: rgba(141, 255, 103, 0.06);
  filter: blur(20px);
  transition: 180ms ease;
}

.feature-card:hover {
  transform: translateY(-5px);
  border-color: rgba(141, 255, 103, 0.2);
  background:
    linear-gradient(145deg, rgba(141, 255, 103, 0.055), transparent 48%),
    var(--panel);
}

.feature-card:hover::after {
  background: rgba(141, 255, 103, 0.1);
}

.feature-icon {
  display: grid;
  width: 48px;
  height: 48px;
  margin-bottom: 56px;
  place-items: center;
  border: 1px solid rgba(141, 255, 103, 0.16);
  border-radius: 14px;
  color: var(--green);
  background: rgba(141, 255, 103, 0.06);
}

.feature-icon svg {
  width: 22px;
  height: 22px;
}

.feature-card h3 {
  margin: 0 0 11px;
  font-size: 1.18rem;
  letter-spacing: -0.025em;
}

.feature-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.91rem;
  line-height: 1.7;
}

.showcase {
  position: relative;
  padding: 45px 0 140px;
}

.showcase::before {
  position: absolute;
  top: 10%;
  left: -280px;
  width: 600px;
  height: 600px;
  content: "";
  border-radius: 50%;
  background: rgba(91, 255, 53, 0.035);
  filter: blur(90px);
}

.showcase-grid {
  display: grid;
  align-items: center;
  grid-template-columns: 0.82fr 1.18fr;
  gap: 70px;
}

.showcase-copy h2 {
  margin: 0 0 20px;
  font-size: clamp(2.2rem, 4vw, 3.7rem);
  line-height: 1.04;
  letter-spacing: -0.055em;
}

.showcase-copy > p {
  margin: 0;
  color: var(--muted);
  line-height: 1.78;
}

.mini-list {
  display: grid;
  margin-top: 30px;
  gap: 15px;
}

.mini-list-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  color: #c1c8bf;
  font-size: 0.88rem;
  line-height: 1.6;
}

.mini-check {
  display: grid;
  width: 22px;
  height: 22px;
  flex: 0 0 22px;
  place-items: center;
  margin-top: 1px;
  border: 1px solid rgba(141, 255, 103, 0.2);
  border-radius: 7px;
  color: var(--green);
  background: rgba(141, 255, 103, 0.06);
}

.mini-check svg {
  width: 12px;
  height: 12px;
}

.launcher-window {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 24px;
  background: #0b0f0b;
  box-shadow: var(--shadow), 0 0 0 1px rgba(141, 255, 103, 0.025);
}

.launcher-window::before {
  position: absolute;
  z-index: 0;
  top: -40%;
  right: -20%;
  width: 400px;
  height: 400px;
  content: "";
  border-radius: 50%;
  background: rgba(110, 255, 72, 0.08);
  filter: blur(70px);
}

.launcher-titlebar {
  position: relative;
  z-index: 2;
  display: flex;
  height: 53px;
  align-items: center;
  justify-content: space-between;
  padding: 0 18px;
  border-bottom: 1px solid var(--line);
  background: #0d110d;
}

.launcher-dots {
  display: flex;
  gap: 7px;
}

.launcher-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #252b25;
}

.launcher-wordmark {
  color: #b5bdb3;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.04em;
}

.launcher-body {
  position: relative;
  z-index: 1;
  display: grid;
  min-height: 450px;
  grid-template-columns: 78px 1fr;
}

.launcher-sidebar {
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 13px;
  padding: 24px 14px;
  border-right: 1px solid var(--line);
  background: rgba(6, 8, 6, 0.65);
}

.launcher-side-icon {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border-radius: 13px;
  color: #6d756b;
}

.launcher-side-icon.active {
  border: 1px solid rgba(141, 255, 103, 0.17);
  color: var(--green);
  background: rgba(141, 255, 103, 0.06);
}

.launcher-side-icon svg {
  width: 19px;
  height: 19px;
}

.launcher-main {
  padding: 31px;
}

.launcher-main-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.launcher-heading span {
  display: block;
  margin-bottom: 5px;
  color: #727a70;
  font-size: 0.7rem;
  font-weight: 750;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.launcher-heading strong {
  font-size: 1.38rem;
  letter-spacing: -0.035em;
}

.launcher-profile {
  width: 38px;
  height: 38px;
  border: 1px solid rgba(141, 255, 103, 0.17);
  border-radius: 12px;
  background:
    linear-gradient(135deg, rgba(141, 255, 103, 0.18), rgba(141, 255, 103, 0.03)),
    #101510;
}

.launcher-hero-card {
  position: relative;
  min-height: 205px;
  margin-top: 26px;
  overflow: hidden;
  border: 1px solid rgba(141, 255, 103, 0.12);
  border-radius: 18px;
  background:
    radial-gradient(circle at 74% 35%, rgba(141, 255, 103, 0.16), transparent 11rem),
    linear-gradient(125deg, #121812, #090c09);
}

.launcher-hero-card::after {
  position: absolute;
  right: -25px;
  bottom: -68px;
  width: 260px;
  height: 200px;
  content: "";
  transform: rotate(-10deg);
  opacity: 0.65;
  background:
    linear-gradient(90deg, transparent 0 12%, #172217 12% 29%, transparent 29% 34%, #172217 34% 54%, transparent 54% 62%, #182318 62% 80%, transparent 80%),
    linear-gradient(#142014, #0b0f0b);
  clip-path: polygon(0 55%, 15% 55%, 15% 28%, 31% 28%, 31% 44%, 46% 44%, 46% 10%, 65% 10%, 65% 39%, 78% 39%, 78% 21%, 100% 21%, 100% 100%, 0 100%);
}

.launcher-hero-content {
  position: relative;
  z-index: 2;
  max-width: 65%;
  padding: 28px;
}

.launcher-hero-content small {
  color: var(--green);
  font-size: 0.67rem;
  font-weight: 820;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.launcher-hero-content h4 {
  margin: 8px 0 8px;
  font-size: 1.5rem;
  letter-spacing: -0.045em;
}

.launcher-hero-content p {
  margin: 0;
  color: #8f988d;
  font-size: 0.75rem;
  line-height: 1.6;
}

.launcher-play {
  display: inline-flex;
  height: 38px;
  margin-top: 17px;
  align-items: center;
  gap: 7px;
  padding: 0 14px;
  border-radius: 10px;
  color: #091008;
  background: var(--green);
  font-size: 0.72rem;
  font-weight: 850;
}

.launcher-cards {
  display: grid;
  margin-top: 14px;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.launcher-mini-card {
  min-height: 88px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 15px;
  background: rgba(255, 255, 255, 0.025);
}

.launcher-mini-card span {
  display: block;
  margin-bottom: 7px;
  color: #727a70;
  font-size: 0.65rem;
  font-weight: 750;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.launcher-mini-card strong {
  font-size: 0.85rem;
}

.changelog {
  padding: 128px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background:
    linear-gradient(180deg, rgba(141, 255, 103, 0.018), transparent 30%),
    #070907;
}

.changelog-layout {
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  gap: 72px;
}

.changelog-intro h2 {
  margin: 0 0 17px;
  font-size: clamp(2.2rem, 4vw, 3.55rem);
  line-height: 1.05;
  letter-spacing: -0.055em;
}

.changelog-intro p {
  margin: 0 0 28px;
  color: var(--muted);
  line-height: 1.75;
}

.changelog-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--panel);
}

.changelog-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 24px 26px;
  border-bottom: 1px solid var(--line);
}

.changelog-version {
  display: flex;
  align-items: center;
  gap: 11px;
}

.changelog-tag {
  padding: 5px 8px;
  border: 1px solid rgba(141, 255, 103, 0.17);
  border-radius: 7px;
  color: var(--green);
  background: rgba(141, 255, 103, 0.055);
  font-size: 0.66rem;
  font-weight: 850;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.changelog-version strong {
  font-size: 0.91rem;
}

.changelog-date {
  color: var(--muted-2);
  font-size: 0.72rem;
}

.changelog-list {
  display: grid;
  padding: 9px 26px 18px;
}

.change-item {
  display: grid;
  padding: 20px 0;
  border-bottom: 1px solid var(--line);
  grid-template-columns: 118px 1fr;
  gap: 19px;
}

.change-item:last-child {
  border-bottom: 0;
}

.change-type {
  color: var(--green-2);
  font-size: 0.67rem;
  font-weight: 850;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.change-copy strong {
  display: block;
  margin-bottom: 6px;
  font-size: 0.9rem;
}

.change-copy p {
  margin: 0;
  color: var(--muted);
  font-size: 0.82rem;
  line-height: 1.6;
}

.support {
  padding: 130px 0;
}

.support-card {
  position: relative;
  display: grid;
  min-height: 330px;
  padding: 60px;
  overflow: hidden;
  align-items: center;
  border: 1px solid rgba(141, 255, 103, 0.14);
  border-radius: 28px;
  background:
    radial-gradient(circle at 80% 25%, rgba(141, 255, 103, 0.11), transparent 19rem),
    linear-gradient(135deg, #0e140e, #080b08 65%);
  box-shadow: var(--shadow);
  grid-template-columns: 1fr auto;
  gap: 50px;
}

.support-card::before {
  position: absolute;
  top: -60px;
  right: 14%;
  width: 250px;
  height: 250px;
  content: "";
  transform: rotate(45deg);
  border: 1px solid rgba(141, 255, 103, 0.08);
  border-radius: 42px;
}

.support-copy {
  position: relative;
  z-index: 2;
  max-width: 650px;
}

.support-copy h2 {
  margin: 0 0 15px;
  font-size: clamp(2.2rem, 4vw, 3.6rem);
  line-height: 1.04;
  letter-spacing: -0.055em;
}

.support-copy p {
  margin: 0;
  color: var(--muted);
  line-height: 1.75;
}

.support-actions {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.site-footer {
  border-top: 1px solid var(--line);
  background: #050705;
}

.footer-top {
  display: grid;
  padding: 62px 0 50px;
  grid-template-columns: 1fr auto;
  gap: 50px;
}

.footer-brand {
  max-width: 420px;
}

.footer-brand .brand {
  margin-bottom: 18px;
}

.footer-brand p {
  margin: 0;
  color: var(--muted-2);
  font-size: 0.82rem;
  line-height: 1.7;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(2, minmax(120px, 1fr));
  gap: 56px;
}

.footer-column h4 {
  margin: 0 0 15px;
  color: #dce1db;
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.footer-column a {
  display: block;
  margin: 10px 0;
  color: var(--muted-2);
  font-size: 0.8rem;
  transition: color 160ms ease;
}

.footer-column a:hover {
  color: var(--green);
}

.footer-bottom {
  display: flex;
  min-height: 66px;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  border-top: 1px solid var(--line);
  color: #596057;
  font-size: 0.72rem;
}

.footer-bottom-links {
  display: flex;
  gap: 18px;
}

.modal-backdrop {
  position: fixed;
  z-index: 300;
  inset: 0;
  display: grid;
  padding: 24px;
  place-items: center;
  opacity: 0;
  visibility: hidden;
  background: rgba(0, 0, 0, 0.72);
  backdrop-filter: blur(12px);
  transition: opacity 180ms ease, visibility 180ms ease;
}

.modal-backdrop.open {
  opacity: 1;
  visibility: visible;
}

.modal {
  width: min(480px, 100%);
  padding: 30px;
  transform: translateY(12px) scale(0.985);
  border: 1px solid rgba(141, 255, 103, 0.16);
  border-radius: 22px;
  background: #0d120d;
  box-shadow: 0 35px 100px rgba(0, 0, 0, 0.65);
  transition: transform 180ms ease;
}

.modal-backdrop.open .modal {
  transform: translateY(0) scale(1);
}

.modal-icon {
  display: grid;
  width: 50px;
  height: 50px;
  margin-bottom: 20px;
  place-items: center;
  border: 1px solid rgba(141, 255, 103, 0.16);
  border-radius: 15px;
  color: var(--green);
  background: rgba(141, 255, 103, 0.06);
}

.modal-icon svg {
  width: 22px;
  height: 22px;
}

.modal h3 {
  margin: 0 0 10px;
  font-size: 1.55rem;
  letter-spacing: -0.04em;
}

.modal p {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.65;
}

.modal-actions {
  display: flex;
  margin-top: 24px;
  justify-content: flex-end;
}

.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 600ms ease, transform 600ms ease;
}

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

@media (max-width: 980px) {
  .nav-links,
  .version-pill {
    display: none;
  }

  .mobile-toggle {
    display: grid;
  }

  .nav-download {
    display: none;
  }

  .nav-links.mobile-open {
    position: fixed;
    top: var(--nav-height);
    right: 16px;
    left: 16px;
    display: grid;
    padding: 18px;
    border: 1px solid var(--line);
    border-radius: 18px;
    background: rgba(9, 12, 9, 0.96);
    box-shadow: 0 24px 70px rgba(0, 0, 0, 0.55);
    backdrop-filter: blur(18px);
    gap: 0;
  }

  .nav-links.mobile-open a {
    padding: 15px 10px;
    border-bottom: 1px solid var(--line);
    font-size: 0.95rem;
  }

  .nav-links.mobile-open a:last-child {
    border-bottom: 0;
  }

  .nav-links.mobile-open a::after {
    display: none;
  }

  .mobile-toggle.active::before {
    transform: translateY(6px) rotate(45deg);
  }

  .mobile-toggle.active span {
    opacity: 0;
  }

  .mobile-toggle.active::after {
    transform: translateY(-6px) rotate(-45deg);
  }

  .hero {
    min-height: 780px;
    padding-top: calc(var(--nav-height) + 75px);
  }

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

  .trust-item:nth-child(2) {
    border-right: 0;
  }

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

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

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

  .feature-icon {
    margin-bottom: 42px;
  }

  .showcase-grid,
  .changelog-layout {
    grid-template-columns: 1fr;
    gap: 55px;
  }

  .showcase-copy {
    max-width: 660px;
  }

  .support-card {
    padding: 46px;
    grid-template-columns: 1fr;
  }

  .support-actions {
    align-items: flex-start;
    flex-direction: row;
    flex-wrap: wrap;
  }
}

@media (max-width: 700px) {
  .container {
    width: min(100% - 30px, 1180px);
  }

  .brand-sub {
    display: none;
  }

  .hero {
    min-height: 730px;
    padding-bottom: 60px;
  }

  .hero-logo {
    width: 84px;
    height: 84px;
    border-radius: 25px;
  }

  .hero-logo svg {
    width: 44px;
    height: 44px;
  }

  .hero h1 {
    font-size: clamp(3.5rem, 17vw, 5.2rem);
  }

  .hero-lead {
    font-size: 0.95rem;
  }

  .hero-actions {
    width: 100%;
  }

  .hero-actions .button-primary,
  .hero-actions .button-secondary {
    width: 100%;
  }

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

  .trust-item {
    justify-content: flex-start;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .trust-item:last-child {
    border-bottom: 0;
  }

  .features,
  .changelog,
  .support {
    padding: 95px 0;
  }

  .showcase {
    padding-bottom: 105px;
  }

  .launcher-body {
    min-height: 390px;
    grid-template-columns: 58px 1fr;
  }

  .launcher-sidebar {
    padding: 18px 8px;
  }

  .launcher-side-icon {
    width: 38px;
    height: 38px;
  }

  .launcher-main {
    padding: 20px;
  }

  .launcher-hero-content {
    max-width: 90%;
    padding: 22px;
  }

  .launcher-cards {
    grid-template-columns: 1fr;
  }

  .launcher-mini-card:last-child {
    display: none;
  }

  .changelog-top {
    align-items: flex-start;
    flex-direction: column;
  }

  .change-item {
    grid-template-columns: 1fr;
    gap: 9px;
  }

  .support-card {
    padding: 34px 26px;
    border-radius: 22px;
  }

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

  .support-actions a,
  .support-actions button {
    width: 100%;
  }

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

  .footer-links {
    gap: 30px;
  }

  .footer-bottom {
    padding: 20px 0;
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}
