/* ============================================================
   Desire — Minecraft cheat client landing
   ============================================================ */

:root {
  --bg: #04060b;
  --bg-alt: #070b12;
  --surface: rgba(255, 255, 255, 0.045);
  --surface-hover: rgba(255, 255, 255, 0.075);
  --border: rgba(255, 255, 255, 0.09);
  --border-strong: rgba(255, 255, 255, 0.16);
  --text: #f2f5fa;
  --muted: #98a2b3;
  --accent: #ffc06a;
  --nav-bg: rgba(8, 11, 18, 0.55);
  --invert-bg: #ffffff;
  --invert-text: #0a0d13;
  --shadow: 0 20px 60px rgba(0, 0, 0, 0.45);
  --radius: 20px;
  --feat-panel: rgba(255, 255, 255, 0.04);
  --feat-menu: rgba(3, 5, 10, 0.55);
  --gui-bg: #0a0f19;
}

html[data-theme="light"] {
  --bg: #f4f6f9;
  --bg-alt: #eceff4;
  --surface: rgba(255, 255, 255, 0.85);
  --surface-hover: #ffffff;
  --border: rgba(12, 18, 30, 0.1);
  --border-strong: rgba(12, 18, 30, 0.2);
  --text: #0c1017;
  --muted: #5b6472;
  --nav-bg: rgba(255, 255, 255, 0.72);
  --invert-bg: #10141c;
  --invert-text: #ffffff;
  --shadow: 0 20px 60px rgba(20, 30, 50, 0.12);
  --feat-panel: rgba(255, 255, 255, 0.75);
  --feat-menu: rgba(12, 18, 30, 0.045);
  --gui-bg: #ffffff;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: 110px;
}

body {
  font-family: "Inter", -apple-system, "Segoe UI", Roboto, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  transition: background 0.4s ease, color 0.4s ease;
}

img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { font: inherit; background: none; border: none; cursor: pointer; color: inherit; }

.container { max-width: 1100px; margin: 0 auto; padding: 0 24px; }
.container--narrow { max-width: 780px; }

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 13px 24px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 15px;
  white-space: nowrap;
  transition: transform 0.2s ease, background 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}
.btn svg { width: 17px; height: 17px; }
.btn:active { transform: scale(0.96); }
.btn--lg { padding: 15px 28px; font-size: 15.5px; }
.btn--block { width: 100%; }

.btn--light {
  background: #ffffff;
  color: #0a0d13;
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.35);
}
.btn--light:hover { transform: translateY(-2px); box-shadow: 0 10px 32px rgba(0, 0, 0, 0.45); }

.btn--ghost {
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid var(--border-strong);
  color: #fff;
}
.btn--ghost:hover { background: rgba(255, 255, 255, 0.13); transform: translateY(-2px); }
html[data-theme="light"] .section .btn--ghost,
html[data-theme="light"] .price-card .btn--ghost {
  background: rgba(12, 18, 30, 0.05);
  color: var(--text);
}
html[data-theme="light"] .section .btn--ghost:hover { background: rgba(12, 18, 30, 0.09); }

.btn--invert {
  background: var(--invert-bg);
  color: var(--invert-text);
}
.btn--invert:hover { transform: translateY(-2px); box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3); }

/* ============================================================
   NAVBAR
   ============================================================ */
.navbar {
  position: fixed;
  top: 14px;
  left: 50%;
  transform: translateX(-50%);
  width: min(1060px, calc(100% - 24px));
  z-index: 100;
  border-radius: 18px;
  background: var(--nav-bg);
  backdrop-filter: blur(20px) saturate(160%);
  -webkit-backdrop-filter: blur(20px) saturate(160%);
  border: 1px solid var(--border);
  transition: box-shadow 0.3s ease, background 0.3s ease;
}
.navbar.scrolled { box-shadow: 0 12px 40px rgba(0, 0, 0, 0.35); }

.navbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 9px 12px 9px 16px;
}

.brand { display: flex; align-items: center; gap: 10px; }
.brand__logo {
  width: 26px;
  height: 26px;
  object-fit: contain;
  transition: transform 0.5s cubic-bezier(0.22, 0.8, 0.3, 1);
}
.brand:hover .brand__logo { transform: rotate(180deg) scale(1.1); }
.brand__name { font-weight: 700; font-size: 17px; letter-spacing: -0.02em; }

.nav-links { display: flex; gap: 2px; }
.nav-links a {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 8px 13px;
  border-radius: 11px;
  font-size: 14px;
  font-weight: 550;
  color: var(--muted);
  transition: color 0.2s, background 0.2s;
}
.nav-links a svg { width: 15px; height: 15px; opacity: 0.85; }
.nav-links a:hover { color: var(--text); background: var(--surface); }
.nav-links a.active { color: var(--text); background: var(--surface); }

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

.theme-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 10px;
  color: var(--muted);
  transition: color 0.2s, background 0.2s;
}
.theme-toggle:hover { color: var(--text); background: var(--surface); }
.theme-toggle svg { width: 17px; height: 17px; }
html[data-theme="dark"] .icon-sun { display: none; }
html[data-theme="light"] .icon-moon { display: none; }

.lang-switch {
  display: inline-flex;
  align-items: center;
  gap: 3px;
  padding: 3px;
  border-radius: 999px;
  background: var(--surface);
  border: 1px solid var(--border);
}
.lang-switch__btn {
  padding: 4px 9px;
  border-radius: 999px;
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: var(--muted);
  transition: color 0.2s, background 0.2s;
}
.lang-switch__btn:hover { color: var(--text); }
.lang-switch__btn.active {
  background: var(--invert-bg);
  color: var(--invert-text);
}

.nav-discord {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 13.5px;
  font-weight: 600;
  color: var(--text);
  background: var(--surface);
  border: 1px solid var(--border);
  transition: background 0.2s, transform 0.2s;
}
.nav-discord svg { width: 15px; height: 15px; }
.nav-discord:hover { background: var(--surface-hover); transform: translateY(-1px); }

.nav-avatar {
  position: relative;
  width: 32px;
  height: 32px;
  padding: 0;
  border-radius: 50%;
  background: #0b0f16;
  border: 1px solid var(--border-strong);
  cursor: pointer;
  flex-shrink: 0;
  transition: transform 0.2s, box-shadow 0.2s;
}
.nav-avatar:hover { transform: translateY(-1px); box-shadow: 0 0 0 3px var(--surface); }
.nav-avatar img { width: 100%; height: 100%; border-radius: 50%; object-fit: cover; }
.nav-avatar__dot {
  position: absolute;
  right: -1px;
  bottom: -1px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #8b93a1;
  border: 2px solid var(--bg);
  transition: background 0.3s, box-shadow 0.3s;
}
.nav-avatar.is-online .nav-avatar__dot {
  background: #3fbf6f;
  box-shadow: 0 0 8px rgba(63, 191, 111, 0.9);
}

.burger { display: none; flex-direction: column; gap: 4.5px; padding: 9px; }
.burger span { display: block; width: 18px; height: 2px; border-radius: 2px; background: var(--text); transition: 0.3s; }
.burger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.burger.open span:nth-child(2) { opacity: 0; }
.burger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* ============================================================
   HERO + SCENE
   ============================================================ */
.hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  place-items: center;
  text-align: center;
  padding: 140px 24px 120px;
  overflow: hidden;
  color: #fff;
}

.scene { position: absolute; inset: 0; z-index: 0; }
.scene__bg {
  position: absolute;
  inset: -2%;
  background: url("../assets/fon/glavniyfon.jpg") center 32% / cover no-repeat;
  animation:
    bgIntro 2.2s cubic-bezier(0.22, 0.8, 0.3, 1) both,
    bgDrift 26s ease-in-out 2.2s infinite alternate;
}
@keyframes bgIntro {
  from { transform: scale(1.08); }
  to { transform: scale(1); }
}
@keyframes bgDrift {
  from { transform: scale(1) translateY(0); }
  to { transform: scale(1.07) translateY(-1.2%); }
}

.scene__overlay {
  position: absolute;
  inset: 0;
  z-index: 3;
  background:
    radial-gradient(58% 46% at 50% 42%, rgba(4, 5, 12, 0.55), transparent 74%),
    linear-gradient(to bottom, rgba(4, 5, 12, 0.55) 0%, rgba(4, 5, 12, 0.18) 26%, rgba(4, 5, 12, 0.26) 62%, var(--bg) 100%);
}

.hero__content {
  position: relative;
  z-index: 4;
  max-width: 960px;
  animation: heroIn 1s cubic-bezier(0.22, 0.8, 0.3, 1) both;
}
@keyframes heroIn {
  from { opacity: 0; transform: translateY(26px); }
  to { opacity: 1; transform: none; }
}

.hero__tag {
  font-size: 15px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.95);
  margin-bottom: 18px;
  text-shadow: 0 2px 18px rgba(0, 0, 0, 0.6);
}

.hero__title {
  font-size: clamp(46px, 7.6vw, 88px);
  font-weight: 700;
  letter-spacing: -0.035em;
  line-height: 1.04;
  color: #fff;
  text-shadow: 0 4px 40px rgba(0, 0, 0, 0.55);
}

.hero__sub {
  margin: 28px auto 0;
  max-width: 640px;
  font-size: clamp(16.5px, 2.2vw, 21px);
  font-weight: 500;
  line-height: 1.55;
  color: rgba(226, 235, 249, 0.8);
  text-shadow: 0 2px 16px rgba(0, 0, 0, 0.6);
}

.hero__cta {
  margin-top: 36px;
  display: flex;
  justify-content: center;
  gap: 13px;
  flex-wrap: wrap;
}

/* ============================================================
   STATS
   ============================================================ */
.stats { padding: 26px 0 10px; }
.stats__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--surface);
  overflow: hidden;
}
.stats__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  padding: 30px 12px;
}
.stats__item + .stats__item { border-left: 1px solid var(--border); }
.stats__value {
  font-size: clamp(26px, 3.4vw, 38px);
  font-weight: 800;
  letter-spacing: -0.03em;
  background: linear-gradient(180deg, var(--text) 55%, var(--muted));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.stats__label { font-size: 13.5px; color: var(--muted); font-weight: 550; }

/* ============================================================
   SECTIONS
   ============================================================ */
.section { padding: 100px 0; }
.section--alt { background: var(--bg-alt); }

.section__head { max-width: 640px; margin-bottom: 52px; }
.kicker {
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--accent);
  margin-bottom: 14px;
}
.section__head h2 {
  font-size: clamp(30px, 4.6vw, 46px);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.12;
}
.section__head p { margin-top: 16px; font-size: 16.5px; color: var(--muted); }
.section__head--center {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}
.section__head--center p { margin-left: auto; margin-right: auto; }

/* ============================================================
   FEATURES — text + ClickGUI panel
   ============================================================ */
.feat {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 60px;
  align-items: center;
}
.feat__kicker {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-size: 14.5px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 22px;
}
.feat__kicker svg { width: 16px; height: 16px; color: var(--accent); }
.feat__title {
  font-size: clamp(34px, 4.8vw, 56px);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.08;
}
.feat__title-dim { color: var(--muted); }
.feat__desc {
  margin-top: 24px;
  max-width: 500px;
  font-size: 16.5px;
  color: var(--muted);
  line-height: 1.65;
}
.feat__cta {
  margin-top: 34px;
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.feat__panel {
  padding: 26px;
  border-radius: 26px;
  background: var(--feat-panel);
  border: 1px solid var(--border);
}
.feat__menu {
  padding: 20px 20px 18px;
  border-radius: 18px;
  background: var(--feat-menu);
  border: 1px solid var(--border);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.25);
  transition: border-radius 0.35s cubic-bezier(0.22, 0.8, 0.3, 1);
}
.feat__menu--corners { border-radius: 4px; }
.feat__menu--rounded { border-radius: 36px; }

.feat__row {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 12px 6px;
}
.feat__row-info { flex: 1; min-width: 0; }
.feat__row h3 {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 15.5px;
  font-weight: 700;
}
.feat__row h3 svg { width: 15px; height: 15px; color: var(--text); opacity: 0.9; }
.feat__row p {
  margin-top: 3px;
  font-size: 13.5px;
  color: var(--muted);
}

.feat__switch {
  position: relative;
  flex-shrink: 0;
  width: 38px;
  height: 22px;
  border-radius: 999px;
  background: rgba(128, 136, 155, 0.35);
  transition: background 0.25s ease;
}
.feat__switch::after {
  content: "";
  position: absolute;
  top: 3px;
  left: 3px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: #8b93a1;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.4);
  transition: transform 0.25s cubic-bezier(0.22, 0.8, 0.3, 1), background 0.25s ease;
}
.feat__switch.on { background: #dfe3ec; }
.feat__switch.on::after { transform: translateX(16px); background: #ffffff; }
html[data-theme="light"] .feat__switch { background: rgba(12, 18, 30, 0.18); }
html[data-theme="light"] .feat__switch.on { background: #10141c; }
html[data-theme="light"] .feat__switch.on::after { background: #ffffff; }

.feat__seg {
  display: flex;
  gap: 4px;
  margin-top: 16px;
  padding: 4px;
  border-radius: 12px;
  background: rgba(128, 136, 155, 0.14);
  border: 1px solid var(--border);
}
.feat__seg-btn {
  flex: 1;
  padding: 8px 6px;
  border-radius: 9px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--muted);
  white-space: nowrap;
  transition: background 0.2s, color 0.2s;
}
.feat__seg-btn:hover { color: var(--text); }
.feat__seg-btn.active {
  background: #dfe3ec;
  color: #10141c;
}
.feat__menu--rounded .feat__seg { border-radius: 999px; }
.feat__menu--rounded .feat__seg-btn { border-radius: 999px; }
.feat__menu--corners .feat__seg { border-radius: 3px; }
.feat__menu--corners .feat__seg-btn { border-radius: 2px; }

/* ============================================================
   PRICING
   ============================================================ */
.pricing {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 18px;
  align-items: stretch;
}
.price-card {
  display: flex;
  flex-direction: column;
  padding: 16px 16px 22px;
  border-radius: 22px;
  background: var(--surface);
  border: 1px solid var(--border);
  transition: transform 0.3s cubic-bezier(0.22, 0.8, 0.3, 1), border-color 0.3s ease, box-shadow 0.3s ease;
}
.price-card:hover {
  transform: translateY(-6px);
  border-color: var(--border-strong);
  box-shadow: 0 26px 70px rgba(0, 0, 0, 0.45);
}
.price-card__banner {
  position: relative;
  overflow: hidden;
  border-radius: 14px;
  aspect-ratio: 16 / 7.4;
  margin-bottom: 20px;
}
.price-card__banner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.22, 0.8, 0.3, 1);
}
.price-card:hover .price-card__banner img { transform: scale(1.07); }
.price-card__banner::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(4, 6, 11, 0.6), rgba(4, 6, 11, 0.08) 55%, rgba(4, 6, 11, 0.22));
}
.price-card__banner-label {
  position: absolute;
  inset: 0;
  z-index: 1;
  display: grid;
  place-items: center;
  font-size: 32px;
  font-weight: 800;
  letter-spacing: -0.01em;
  color: #fff;
  text-shadow: 0 4px 26px rgba(0, 0, 0, 0.65), 0 1px 4px rgba(0, 0, 0, 0.5);
}
.price-card h3 { font-size: 19px; font-weight: 700; padding: 0 10px; }
.price-card__desc { font-size: 14px; color: var(--muted); margin-top: 4px; padding: 0 10px; }
.price-card__value {
  margin: 22px 10px 8px;
  font-size: 42px;
  font-weight: 800;
  letter-spacing: -0.03em;
}
.price-card__value span {
  font-size: 15px;
  font-weight: 550;
  color: var(--muted);
  letter-spacing: 0;
  margin-left: 5px;
}
.price-card ul { margin: 18px 0 26px; display: grid; gap: 12px; flex-grow: 1; padding: 0 10px; }
.price-card li {
  position: relative;
  padding-left: 29px;
  font-size: 14.5px;
  color: var(--muted);
}
.price-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 2px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: rgba(139, 147, 161, 0.14) url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="%239aa3b2" stroke-width="3.2" stroke-linecap="round" stroke-linejoin="round"><path d="m5 13 4 4L19 7"/></svg>') center/10px no-repeat;
  border: 1px solid rgba(139, 147, 161, 0.4);
}

.btn--buy {
  gap: 8px;
  border-radius: 12px;
  background: #ffffff;
  color: #0a0d13;
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.35);
}
.btn--buy:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.45);
}
.btn--buy:active { transform: scale(0.97); }
.btn--buy svg { width: 15px; height: 15px; }

/* ============================================================
   STEPS
   ============================================================ */
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.step {
  position: relative;
  text-align: center;
  padding: 0 14px;
}
.step__icon {
  display: grid;
  place-items: center;
  height: 42px;
  margin-bottom: 20px;
  color: var(--muted);
  transition: color 0.25s ease, transform 0.25s ease;
}
.step__icon svg { width: 27px; height: 27px; }
.step h3 { font-size: 20px; font-weight: 700; letter-spacing: -0.01em; }
.step p {
  margin: 12px auto 0;
  max-width: 320px;
  font-size: 14.5px;
  line-height: 1.65;
  color: var(--muted);
}
.step:not(:last-child)::before {
  content: "";
  position: absolute;
  top: 20px;
  right: -42px;
  width: 56px;
  height: 1px;
  background: var(--border-strong);
}
.step:hover .step__icon { color: var(--text); transform: translateY(-3px); }

@media (max-width: 880px) {
  .steps { grid-template-columns: 1fr; gap: 44px; }
  .step:not(:last-child)::before { display: none; }
}

/* ============================================================
   CTA
   ============================================================ */
.cta {
  position: relative;
  overflow: hidden;
  padding: 84px 32px;
  border-radius: 28px;
  text-align: center;
  color: #fff;
  background:
    radial-gradient(70% 90% at 50% 0%, #12263f 0%, #0a1626 55%, #071019 100%);
  border: 1px solid rgba(255, 255, 255, 0.1);
}
.cta__stars {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(1.5px 1.5px at 12% 22%, rgba(255,255,255,0.8) 50%, transparent 51%),
    radial-gradient(1px 1px at 28% 68%, rgba(255,255,255,0.55) 50%, transparent 51%),
    radial-gradient(1.6px 1.6px at 44% 14%, rgba(255,255,255,0.7) 50%, transparent 51%),
    radial-gradient(1px 1px at 62% 44%, rgba(255,255,255,0.5) 50%, transparent 51%),
    radial-gradient(1.4px 1.4px at 76% 20%, rgba(255,255,255,0.75) 50%, transparent 51%),
    radial-gradient(1px 1px at 88% 60%, rgba(255,255,255,0.5) 50%, transparent 51%),
    radial-gradient(1.2px 1.2px at 8% 80%, rgba(255,255,255,0.45) 50%, transparent 51%),
    radial-gradient(1.3px 1.3px at 94% 12%, rgba(255,255,255,0.65) 50%, transparent 51%);
  animation: starsPulse 5s ease-in-out infinite;
}
@keyframes starsPulse {
  0%, 100% { opacity: 0.55; }
  50% { opacity: 1; }
}
.cta__logo {
  position: absolute;
  right: -60px;
  bottom: -80px;
  width: 340px;
  opacity: 0.06;
  pointer-events: none;
  animation: ctaFloat 9s ease-in-out infinite alternate;
}
@keyframes ctaFloat {
  from { transform: translateY(0) rotate(0deg); }
  to { transform: translateY(-18px) rotate(5deg); }
}
.cta h2 {
  position: relative;
  font-size: clamp(30px, 5vw, 50px);
  font-weight: 700;
  letter-spacing: -0.03em;
}
.cta p {
  position: relative;
  margin: 18px auto 32px;
  max-width: 480px;
  color: rgba(226, 235, 249, 0.75);
  font-size: 16.5px;
}
.cta .btn { position: relative; }
.cta__note {
  position: relative;
  display: block;
  margin-top: 18px;
  font-size: 13px;
  color: rgba(200, 212, 232, 0.55);
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  border-top: 1px solid var(--border);
  padding: 64px 0 34px;
  background: var(--bg-alt);
}
.footer__grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 44px;
}
.footer__brand p { margin-top: 16px; font-size: 14.5px; color: var(--muted); }
.footer__col { display: flex; flex-direction: column; gap: 11px; }
.footer__col h4 {
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text);
  margin-bottom: 6px;
}
.footer__col a { font-size: 14.5px; color: var(--muted); transition: color 0.2s; }
.footer__col a:hover { color: var(--text); }
.footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  padding-top: 26px;
  border-top: 1px solid var(--border);
  font-size: 13px;
  color: var(--muted);
}
.footer__disclaimer { opacity: 0.75; }

/* ============================================================
   REVEAL ANIMATIONS
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.7s cubic-bezier(0.22, 0.8, 0.3, 1), transform 0.7s cubic-bezier(0.22, 0.8, 0.3, 1);
}
.reveal.visible { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .scene__bg, .cta__stars, .cta__logo { animation: none !important; }
  html { scroll-behavior: auto; }
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 880px) {
  .nav-links {
    position: absolute;
    top: calc(100% + 10px);
    left: 0;
    right: 0;
    flex-direction: column;
    gap: 4px;
    padding: 10px;
    border-radius: 16px;
    background: rgba(7, 10, 16, 0.92);
    backdrop-filter: blur(20px) saturate(160%);
    -webkit-backdrop-filter: blur(20px) saturate(160%);
    border: 1px solid var(--border);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-8px);
    transition: opacity 0.25s ease, transform 0.25s ease;
  }
  .nav-links.open { opacity: 1; pointer-events: auto; transform: none; }
  .nav-links a { padding: 12px 14px; font-size: 15px; }
  .nav-discord span { display: none; }
  .nav-discord { padding: 9px; border-radius: 10px; }
  .burger { display: flex; }
  .feat { grid-template-columns: 1fr; gap: 44px; }
  .stats__grid { grid-template-columns: 1fr 1fr; }
  .stats__item:nth-child(3) { border-left: none; }
  .stats__item:nth-child(n+3) { border-top: 1px solid var(--border); }

  .footer__grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .section { padding: 72px 0; }
}

@media (max-width: 560px) {
  .hero { padding-top: 120px; }
  .hero__title { font-size: clamp(31px, 8.6vw, 44px); }
  .hero__cta .btn { width: 100%; }
  .br-desktop { display: none; }
  .footer__grid { grid-template-columns: 1fr; }
}

/* ============================================================
   AUTH MODAL
   ============================================================ */
[hidden] { display: none !important; }

.auth-overlay {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: grid;
  place-items: center;
  padding: 20px;
  background: rgba(3, 5, 10, 0.62);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
}
.auth-overlay.open { opacity: 1; pointer-events: auto; }

.auth-modal {
  position: relative;
  width: min(400px, 100%);
  max-height: calc(100svh - 40px);
  overflow-y: auto;
  border-radius: 26px;
  padding: 30px 28px 26px;
  background: linear-gradient(180deg, #171d2a 0%, #0b101a 100%);
  border: 1px solid var(--border-strong);
  box-shadow: 0 40px 120px rgba(0, 0, 0, 0.6);
  color: #f2f5fa;
  transform: translateY(16px) scale(0.96);
  transition: transform 0.3s cubic-bezier(0.22, 0.8, 0.3, 1);
}
.auth-overlay.open .auth-modal { transform: none; }

.auth-modal__close {
  position: absolute;
  top: 14px;
  right: 14px;
  display: grid;
  place-items: center;
  width: 32px;
  height: 32px;
  border-radius: 10px;
  color: #98a2b3;
  transition: background 0.2s, color 0.2s;
}
.auth-modal__close:hover { background: rgba(255, 255, 255, 0.08); color: #fff; }
.auth-modal__close svg { width: 16px; height: 16px; }

.auth-modal__head { display: grid; justify-items: center; margin-bottom: 18px; }
.auth-modal__avatar {
  width: 68px;
  height: 68px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid rgba(255, 255, 255, 0.16);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

.auth-tabs {
  display: flex;
  gap: 4px;
  padding: 4px;
  margin-bottom: 20px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.09);
}
.auth-tab {
  flex: 1;
  padding: 9px 0;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 600;
  color: #98a2b3;
  transition: background 0.2s, color 0.2s;
}
.auth-tab:hover { color: #fff; }
.auth-tab.active { background: #ffffff; color: #0a0d13; }

.auth-form { display: none; }
.auth-form.active { display: block; }

.field { display: grid; gap: 7px; margin-bottom: 14px; }
.field span { font-size: 13px; font-weight: 600; color: #98a2b3; }
.field input {
  width: 100%;
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.05);
  color: #f2f5fa;
  font: inherit;
  font-size: 14.5px;
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s, background 0.2s;
}
.field input::placeholder { color: rgba(152, 162, 179, 0.55); }
.field input:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(255, 192, 106, 0.16);
  background: rgba(255, 255, 255, 0.07);
}

.auth-form__error { min-height: 18px; margin: -2px 0 10px; font-size: 13px; color: #ff8080; }
.auth-form__note {
  margin-top: 14px;
  font-size: 12.5px;
  line-height: 1.5;
  text-align: center;
  color: rgba(152, 162, 179, 0.75);
}

.auth-account { text-align: center; }
.auth-account__avatar {
  width: 78px;
  height: 78px;
  margin: 4px auto 16px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid rgba(255, 255, 255, 0.16);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}
.auth-account__name { font-size: 20px; font-weight: 700; letter-spacing: -0.01em; }
.auth-account__email { margin-top: 3px; font-size: 14px; color: #98a2b3; }
.auth-account__status {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin: 12px 0 22px;
  padding: 6px 13px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
  color: #3fbf6f;
  background: rgba(63, 191, 111, 0.1);
  border: 1px solid rgba(63, 191, 111, 0.25);
}
.auth-account__status::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #3fbf6f;
  box-shadow: 0 0 8px rgba(63, 191, 111, 0.9);
}
.auth-modal .btn--ghost {
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.16);
  color: #fff;
}
.auth-modal .btn--ghost:hover { background: rgba(255, 255, 255, 0.13); }

html[data-theme="light"] .auth-modal {
  background: linear-gradient(180deg, #ffffff 0%, #f1f4f9 100%);
  color: #0c1017;
}
html[data-theme="light"] .auth-modal__close { color: #5b6472; }
html[data-theme="light"] .auth-modal__close:hover { background: rgba(12, 18, 30, 0.06); color: #0c1017; }
html[data-theme="light"] .auth-tabs {
  background: rgba(12, 18, 30, 0.05);
  border-color: rgba(12, 18, 30, 0.1);
}
html[data-theme="light"] .auth-tab { color: #5b6472; }
html[data-theme="light"] .auth-tab:hover { color: #0c1017; }
html[data-theme="light"] .auth-tab.active { background: #10141c; color: #ffffff; }
html[data-theme="light"] .field span { color: #5b6472; }
html[data-theme="light"] .field input {
  border-color: rgba(12, 18, 30, 0.18);
  background: rgba(12, 18, 30, 0.04);
  color: #0c1017;
}
html[data-theme="light"] .field input::placeholder { color: rgba(91, 100, 114, 0.55); }
html[data-theme="light"] .auth-form__error { color: #d64545; }
html[data-theme="light"] .auth-form__note { color: rgba(91, 100, 114, 0.85); }
html[data-theme="light"] .auth-modal__avatar,
html[data-theme="light"] .auth-account__avatar { border-color: rgba(12, 18, 30, 0.15); }
html[data-theme="light"] .auth-account__email { color: #5b6472; }
html[data-theme="light"] .auth-modal .btn--ghost {
  background: rgba(12, 18, 30, 0.05);
  border-color: rgba(12, 18, 30, 0.18);
  color: #0c1017;
}
html[data-theme="light"] .auth-modal .btn--ghost:hover { background: rgba(12, 18, 30, 0.09); }
