:root {
  color-scheme: dark;
  --bg: #030713;
  --bg-soft: #060b1f;
  --bg-deep: #050315;
  --panel: rgba(10, 17, 42, 0.72);
  --panel-strong: rgba(12, 21, 52, 0.92);
  --panel-soft: rgba(19, 28, 68, 0.5);
  --text: #f6f7ff;
  --muted: #aab3d6;
  --muted-2: #7882aa;
  --purple: #8b4dff;
  --violet: #b45cff;
  --cyan: #18e6ff;
  --blue: #2f7bff;
  --pink: #ff3e73;
  --green: #7cff2b;
  --gold: #ffd35a;
  --line: rgba(137, 92, 255, 0.34);
  --line-cyan: rgba(24, 230, 255, 0.34);
  --shadow-purple: 0 0 44px rgba(139, 77, 255, 0.22);
  --shadow-cyan: 0 0 44px rgba(24, 230, 255, 0.16);
  --radius-lg: 22px;
  --radius-md: 16px;
  --container: 1060px;
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  min-height: 100vh;
  color: var(--text);
  background:
    radial-gradient(circle at 16% 10%, rgba(139, 77, 255, 0.35), transparent 24rem),
    radial-gradient(circle at 86% 6%, rgba(24, 230, 255, 0.16), transparent 22rem),
    radial-gradient(circle at 54% 42%, rgba(47, 123, 255, 0.11), transparent 32rem),
    linear-gradient(145deg, var(--bg), var(--bg-soft) 52%, var(--bg-deep));
  font-family: Inter, Manrope, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  letter-spacing: 0;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -2;
  content: "";
  background:
    linear-gradient(rgba(255, 255, 255, 0.018) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.014) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(circle at center, black, transparent 76%);
}

body::after {
  position: fixed;
  inset: 0;
  z-index: -1;
  content: "";
  pointer-events: none;
  background:
    radial-gradient(circle at 12% 22%, rgba(24, 230, 255, 0.75) 0 1px, transparent 2px),
    radial-gradient(circle at 31% 18%, rgba(139, 77, 255, 0.9) 0 1px, transparent 2px),
    radial-gradient(circle at 78% 32%, rgba(24, 230, 255, 0.8) 0 1px, transparent 2px),
    radial-gradient(circle at 86% 70%, rgba(139, 77, 255, 0.9) 0 1px, transparent 2px),
    radial-gradient(circle at 18% 78%, rgba(47, 123, 255, 0.9) 0 1px, transparent 2px);
  opacity: 0.65;
}

body.nav-open {
  overflow: hidden;
}

a {
  color: inherit;
}

img {
  max-width: 100%;
}

.landing-shell {
  overflow: hidden;
}

.site-header {
  position: fixed;
  top: 18px;
  left: 50%;
  z-index: 20;
  display: grid;
  grid-template-columns: auto 1fr auto auto;
  align-items: center;
  gap: 22px;
  width: min(var(--container), calc(100% - 32px));
  min-height: 66px;
  padding: 10px 12px 10px 18px;
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 999px;
  background: rgba(3, 7, 19, 0.72);
  box-shadow: 0 0 50px rgba(24, 230, 255, 0.12), inset 0 0 24px rgba(139, 77, 255, 0.08);
  transform: translateX(-50%);
  backdrop-filter: blur(20px);
}

.brand,
.site-nav {
  display: flex;
  align-items: center;
}

.brand {
  gap: 11px;
  font-size: 18px;
  font-weight: 950;
  text-decoration: none;
}

.brand__mark {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  gap: 3px;
  padding: 8px;
  border: 1px solid rgba(24, 230, 255, 0.42);
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(139, 77, 255, 0.88), rgba(24, 230, 255, 0.68));
  box-shadow: 0 0 26px rgba(139, 77, 255, 0.48);
}

.brand__mark span {
  display: block;
  width: 21px;
  height: 5px;
  border-radius: 999px;
  background: linear-gradient(90deg, #cf75ff, #39f4ff);
  transform: skewX(-28deg);
}

.site-nav {
  justify-content: center;
  gap: 24px;
}

.site-nav a {
  color: var(--muted);
  font-size: 14px;
  font-weight: 800;
  text-decoration: none;
  transition: color 160ms ease, text-shadow 160ms ease;
}

.site-nav a:hover,
.site-nav a.is-active {
  color: var(--text);
  text-shadow: 0 0 16px rgba(24, 230, 255, 0.65);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 14px;
  background: rgba(11, 18, 43, 0.8);
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: var(--text);
  box-shadow: 0 0 12px rgba(24, 230, 255, 0.7);
}

.menu-toggle span + span {
  margin-top: 5px;
}

.section {
  position: relative;
  width: min(var(--container), calc(100% - 48px));
  margin: 0 auto;
  padding: 82px 0;
}

.section::before {
  position: absolute;
  inset: 38px -54px auto;
  height: 1px;
  content: "";
  background: linear-gradient(90deg, transparent, rgba(139, 77, 255, 0.28), rgba(24, 230, 255, 0.22), transparent);
  opacity: 0.7;
}

.section--hero,
.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(320px, 0.86fr);
  align-items: center;
  gap: 34px;
  min-height: clamp(680px, 88vh, 820px);
  padding-top: 116px;
}

.hero::before,
.hero::after {
  position: absolute;
  content: "";
  border: 1px solid rgba(24, 230, 255, 0.16);
  border-radius: 999px;
  pointer-events: none;
}

.hero::before {
  inset: 14% 42% 13% -20%;
  transform: rotate(-18deg);
  box-shadow: 0 0 88px rgba(47, 123, 255, 0.18);
}

.hero::after {
  inset: 26% -26% 24% 40%;
  border-color: rgba(139, 77, 255, 0.18);
  transform: rotate(16deg);
}

.hero__content,
.hero__visual,
.section__header,
.problem-grid,
.solution-grid,
.why-grid,
.steps-grid,
.features-grid,
.comparison-grid,
.market-grid,
.team-grid,
.final-cta > * {
  position: relative;
  z-index: 1;
}

.eyebrow {
  display: inline-flex;
  width: max-content;
  margin: 0 0 18px;
  color: var(--cyan);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
  text-shadow: 0 0 18px rgba(24, 230, 255, 0.46);
}

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

h1 {
  margin: 0;
  font-size: clamp(64px, 8vw, 96px);
  line-height: 0.9;
  font-weight: 950;
  text-shadow: 0 0 36px rgba(139, 77, 255, 0.54);
}

h2 {
  max-width: 860px;
  margin: 0;
  font-size: clamp(36px, 5vw, 52px);
  line-height: 1.03;
  font-weight: 950;
}

h3 {
  margin: 0;
  font-size: 22px;
  line-height: 1.16;
  font-weight: 900;
}

p {
  line-height: 1.48;
}

.hero__lead {
  max-width: 620px;
  margin: 22px 0 0;
  color: var(--text);
  font-size: clamp(25px, 3vw, 30px);
  font-weight: 750;
  line-height: 1.16;
}

.hero__copy,
.section-copy,
.section__header p,
.final-cta p {
  max-width: 680px;
  color: var(--muted);
  font-size: 18px;
}

.hero__copy {
  margin-top: 18px;
}

.gradient-text,
.hero-card strong,
.section__header h2 strong {
  background: linear-gradient(90deg, var(--violet), var(--blue), var(--cyan));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

.button {
  display: inline-flex;
  position: relative;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 22px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  color: var(--text);
  font-size: 15px;
  font-weight: 900;
  text-decoration: none;
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button--small {
  min-height: 42px;
  padding: 0 17px;
}

.button--primary {
  border-color: rgba(24, 230, 255, 0.68);
  background: linear-gradient(135deg, var(--purple), var(--blue) 48%, var(--cyan));
  box-shadow: 0 0 34px rgba(24, 230, 255, 0.24), 0 0 44px rgba(139, 77, 255, 0.18);
}

.button--ghost {
  background: rgba(11, 18, 43, 0.56);
  box-shadow: inset 0 0 24px rgba(139, 77, 255, 0.16);
}

.metric-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.metric-strip span,
.pill {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0 15px;
  border: 1px solid rgba(24, 230, 255, 0.28);
  border-radius: 999px;
  color: var(--text);
  background: rgba(11, 18, 43, 0.58);
  box-shadow: inset 0 0 20px rgba(139, 77, 255, 0.18), 0 0 18px rgba(24, 230, 255, 0.08);
  font-size: 14px;
  font-weight: 850;
}

.pill {
  margin-bottom: 8px;
  border-color: rgba(180, 92, 255, 0.54);
  box-shadow: 0 0 30px rgba(139, 77, 255, 0.24), inset 0 0 20px rgba(24, 230, 255, 0.1);
}

.hero__visual {
  display: grid;
  min-height: 470px;
  place-items: center;
}

.hero__visual::before {
  position: absolute;
  width: min(92%, 470px);
  aspect-ratio: 1;
  content: "";
  border: 1px solid rgba(24, 230, 255, 0.22);
  border-radius: 50%;
  background:
    radial-gradient(circle, rgba(24, 230, 255, 0.24), transparent 58%),
    radial-gradient(circle at 34% 32%, rgba(139, 77, 255, 0.48), transparent 44%);
  box-shadow: inset 0 0 80px rgba(139, 77, 255, 0.2), 0 0 80px rgba(24, 230, 255, 0.12);
  filter: blur(4px);
}

.hero__visual::after {
  position: absolute;
  width: min(108%, 540px);
  aspect-ratio: 1.45;
  content: "";
  border: 1px solid rgba(139, 77, 255, 0.25);
  border-radius: 50%;
  transform: rotate(-18deg);
}

.hero__visual img {
  position: relative;
  z-index: 1;
  width: min(100%, 470px);
  border-radius: 36px;
  filter: drop-shadow(0 0 38px rgba(139, 77, 255, 0.62));
  mix-blend-mode: screen;
  -webkit-mask-image: radial-gradient(ellipse at center, black 58%, rgba(0, 0, 0, 0.82) 70%, transparent 84%);
  mask-image: radial-gradient(ellipse at center, black 58%, rgba(0, 0, 0, 0.82) 70%, transparent 84%);
}

.hero-card {
  position: absolute;
  right: 0;
  bottom: 42px;
  z-index: 2;
  display: grid;
  gap: 4px;
  min-width: 240px;
}

.hero-card span {
  color: var(--muted);
}

.hero-card strong {
  font-size: 24px;
}

.section__header {
  display: grid;
  gap: 14px;
  margin-bottom: 34px;
}

.section__header--center {
  justify-items: center;
  text-align: center;
}

.glass-card,
.telegram-mockup {
  position: relative;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background:
    linear-gradient(135deg, rgba(139, 77, 255, 0.13), rgba(24, 230, 255, 0.055)),
    var(--panel);
  box-shadow:
    inset 0 0 30px rgba(139, 77, 255, 0.14),
    0 0 34px rgba(47, 123, 255, 0.08);
  backdrop-filter: blur(18px);
}

.glass-card::before,
.telegram-mockup::before {
  position: absolute;
  inset: 0;
  content: "";
  border-radius: inherit;
  pointer-events: none;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.11), transparent 28%, rgba(24, 230, 255, 0.08));
  opacity: 0.75;
}

.glass-card > *,
.telegram-mockup > * {
  position: relative;
  z-index: 1;
}

.glass-card {
  padding: 22px;
}

.glass-card:hover {
  border-color: rgba(24, 230, 255, 0.42);
  box-shadow:
    inset 0 0 32px rgba(139, 77, 255, 0.18),
    0 0 42px rgba(24, 230, 255, 0.12);
}

.problem-grid,
.solution-grid,
.why-grid,
.market-grid,
.team-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: 28px;
  align-items: center;
}

.why-grid {
  grid-template-columns: 0.84fr 0.86fr 0.92fr;
}

.card-stack,
.benefit-list,
.features-grid,
.comparison-grid,
.steps-grid {
  display: grid;
  gap: 14px;
}

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

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

.card-stack .glass-card,
.benefit-list .glass-card {
  min-height: 104px;
}

.card-stack p,
.features-grid p,
.comparison-grid p,
.market-grid p,
.team-list,
.step-card p {
  color: var(--muted);
  font-size: 16px;
}

.card-index,
.step-card span,
.feature-card span {
  display: inline-grid;
  width: 36px;
  height: 36px;
  margin-bottom: 10px;
  place-items: center;
  border: 1px solid rgba(24, 230, 255, 0.22);
  border-radius: 50%;
  background: linear-gradient(135deg, var(--purple), var(--blue));
  box-shadow: 0 0 18px rgba(139, 77, 255, 0.42);
  font-weight: 950;
}

.stat-orb {
  display: grid;
  position: relative;
  min-height: 420px;
  place-items: center;
  align-content: center;
  overflow: hidden;
  border: 12px solid rgba(255, 62, 115, 0.82);
  border-radius: 50%;
  color: var(--text);
  text-align: center;
  background:
    radial-gradient(circle at center, rgba(255, 62, 115, 0.12), transparent 44%),
    radial-gradient(circle at 30% 30%, rgba(139, 77, 255, 0.2), transparent 32%);
  box-shadow: 0 0 58px rgba(255, 62, 115, 0.42), inset 0 0 78px rgba(255, 62, 115, 0.1);
}

.stat-orb::before {
  position: absolute;
  inset: 9%;
  content: "";
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 50%;
  background:
    radial-gradient(circle at 24% 34%, rgba(255, 255, 255, 0.08) 0 18px, transparent 19px),
    radial-gradient(circle at 72% 28%, rgba(255, 255, 255, 0.07) 0 18px, transparent 19px),
    radial-gradient(circle at 70% 74%, rgba(255, 255, 255, 0.06) 0 18px, transparent 19px);
}

.stat-orb strong {
  color: var(--pink);
  font-size: 84px;
  line-height: 0.92;
  text-shadow: 0 0 30px rgba(255, 62, 115, 0.72);
}

.stat-orb span {
  font-size: 23px;
  font-weight: 950;
}

.stat-orb small {
  margin-top: 14px;
  padding: 8px 14px;
  border: 1px solid rgba(24, 230, 255, 0.22);
  border-radius: 999px;
  color: var(--cyan);
  background: rgba(3, 7, 19, 0.56);
  font-size: 15px;
}

.stat-orb__active {
  position: absolute;
  top: 34px;
  right: -8px;
  color: var(--cyan);
  text-transform: uppercase;
  text-shadow: 0 0 22px rgba(24, 230, 255, 0.72);
}

.statement {
  max-width: 900px;
  margin: 26px auto 0;
  color: var(--text);
  font-size: 26px;
  font-weight: 900;
  text-align: center;
}

.telegram-mockup {
  display: grid;
  min-height: 440px;
  gap: 12px;
  padding: 24px;
  overflow: visible;
  border-color: rgba(24, 230, 255, 0.36);
  border-radius: 30px;
  background:
    linear-gradient(180deg, rgba(9, 15, 35, 0.97), rgba(5, 9, 24, 0.94)),
    var(--panel-strong);
  box-shadow: 0 0 48px rgba(24, 230, 255, 0.14), inset 0 0 36px rgba(139, 77, 255, 0.14);
}

.telegram-mockup::after {
  position: absolute;
  inset: -7px;
  z-index: 0;
  content: "";
  border: 2px solid rgba(139, 77, 255, 0.42);
  border-radius: 36px;
  opacity: 0.65;
}

.telegram-mockup__top,
.chat-message {
  border-radius: 18px;
  background: rgba(18, 31, 68, 0.78);
}

.telegram-mockup__top {
  display: grid;
  gap: 4px;
  padding: 15px;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.telegram-mockup__top strong {
  font-size: 20px;
}

.telegram-mockup__top span,
.chat-message span {
  color: var(--muted);
}

.chat-message {
  display: grid;
  gap: 6px;
  padding: 14px 16px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: inset 0 0 18px rgba(255, 255, 255, 0.02);
}

.chat-message strong {
  font-size: 17px;
}

.chat-message--hot {
  border-color: rgba(139, 77, 255, 0.82);
  box-shadow: 0 0 24px rgba(139, 77, 255, 0.24);
}

.chat-message--cyan {
  border-color: rgba(24, 230, 255, 0.78);
  box-shadow: 0 0 24px rgba(24, 230, 255, 0.14);
}

.chat-message--gold {
  border-color: rgba(255, 211, 90, 0.78);
  box-shadow: 0 0 24px rgba(255, 211, 90, 0.12);
}

.reward-badge {
  position: absolute;
  right: -18px;
  min-width: 132px;
  padding: 10px 14px;
  border: 1px solid currentColor;
  border-radius: 16px;
  background: rgba(11, 18, 43, 0.92);
  font-size: 19px;
  font-weight: 950;
  box-shadow: 0 0 24px currentColor;
}

.reward-badge--sol {
  top: 126px;
  color: var(--violet);
}

.reward-badge--meme {
  top: 214px;
  color: var(--cyan);
}

.benefit-list .glass-card {
  display: flex;
  align-items: center;
  min-height: 76px;
}

.benefit-list .glass-card::after {
  position: absolute;
  right: 24px;
  content: ">";
  color: var(--muted);
  font-size: 28px;
}

.orbit-map {
  position: relative;
  display: grid;
  min-height: 360px;
  place-items: center;
  border: 1px solid rgba(24, 230, 255, 0.16);
  border-radius: 50%;
  background:
    radial-gradient(circle, rgba(24, 230, 255, 0.08), transparent 44%),
    radial-gradient(circle at 38% 28%, rgba(139, 77, 255, 0.18), transparent 30%);
  box-shadow: inset 0 0 86px rgba(47, 123, 255, 0.16), 0 0 64px rgba(139, 77, 255, 0.16);
}

.orbit-map::before,
.orbit-map::after {
  position: absolute;
  content: "";
  border: 1px solid rgba(139, 77, 255, 0.22);
  border-radius: 50%;
}

.orbit-map::before {
  inset: 14%;
  transform: rotate(-18deg);
}

.orbit-map::after {
  inset: 27%;
  border-color: rgba(24, 230, 255, 0.2);
  transform: rotate(22deg);
}

.orbit-map span {
  display: grid;
  z-index: 1;
  width: 72px;
  height: 72px;
  place-items: center;
  border: 1px solid rgba(24, 230, 255, 0.36);
  border-radius: 50%;
  background: rgba(11, 18, 43, 0.86);
  color: var(--cyan);
  box-shadow: 0 0 24px rgba(24, 230, 255, 0.14);
  font-weight: 950;
  font-size: 13px;
}

.orbit-map span:not(.orbit-map__center) {
  position: absolute;
}

.orbit-map span:nth-child(2) { top: 26px; left: 43%; }
.orbit-map span:nth-child(3) { right: 22px; top: 42%; }
.orbit-map span:nth-child(4) { bottom: 26px; left: 41%; }
.orbit-map span:nth-child(5) { left: 18px; top: 42%; }

.orbit-map__center {
  width: 124px;
  height: 124px;
  color: var(--text);
  background: linear-gradient(135deg, rgba(139, 77, 255, 0.72), rgba(24, 230, 255, 0.36));
  box-shadow: 0 0 52px rgba(24, 230, 255, 0.34), inset 0 0 34px rgba(255, 255, 255, 0.08);
  font-size: 28px;
}

.step-card,
.feature-card,
.comparison-grid__winner {
  min-height: 176px;
}

.step-card,
.feature-card {
  display: grid;
  align-content: start;
}

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

.comparison-grid__winner {
  border-color: rgba(24, 230, 255, 0.58);
  background:
    linear-gradient(135deg, rgba(139, 77, 255, 0.28), rgba(24, 230, 255, 0.11)),
    var(--panel-strong);
  box-shadow: 0 0 50px rgba(24, 230, 255, 0.16), inset 0 0 36px rgba(139, 77, 255, 0.18);
}

.result-card {
  border-color: rgba(24, 230, 255, 0.45);
}

.result-card strong {
  display: block;
  margin-top: 12px;
  color: var(--cyan);
  font-size: 18px;
}

.price {
  display: block;
  margin-bottom: 10px;
  font-size: 46px;
  line-height: 1;
  font-weight: 950;
}

.team-grid {
  grid-template-columns: 0.8fr 1.2fr;
}

.team-avatar {
  display: grid;
  min-height: 410px;
  place-items: center;
  overflow: hidden;
  border-radius: 50%;
}

.team-avatar img {
  width: min(88%, 380px);
  border-radius: 34px;
  filter: drop-shadow(0 0 34px rgba(139, 77, 255, 0.48));
  mix-blend-mode: screen;
  -webkit-mask-image: radial-gradient(ellipse at center, black 58%, rgba(0, 0, 0, 0.8) 70%, transparent 84%);
  mask-image: radial-gradient(ellipse at center, black 58%, rgba(0, 0, 0, 0.8) 70%, transparent 84%);
}

.team-list {
  display: grid;
  gap: 12px;
  margin: 24px 0 0;
  padding-left: 24px;
}

.team-list li::marker {
  color: var(--cyan);
}

.social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.social-links a {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0 14px;
  border: 1px solid rgba(24, 230, 255, 0.28);
  border-radius: 999px;
  color: var(--text);
  background: rgba(11, 18, 43, 0.58);
  box-shadow: inset 0 0 18px rgba(139, 77, 255, 0.14), 0 0 16px rgba(24, 230, 255, 0.08);
  font-size: 14px;
  font-weight: 850;
  text-decoration: none;
  transition: border-color 160ms ease, box-shadow 160ms ease, transform 160ms ease;
}

.social-links a:hover {
  border-color: rgba(24, 230, 255, 0.48);
  box-shadow: inset 0 0 18px rgba(139, 77, 255, 0.2), 0 0 18px rgba(24, 230, 255, 0.14);
  transform: translateY(-1px);
}

.final-cta {
  display: grid;
  min-height: 420px;
  align-content: center;
  justify-items: center;
  text-align: center;
}

.final-cta::after {
  position: absolute;
  inset: 48px 0;
  content: "";
  border: 1px solid rgba(24, 230, 255, 0.2);
  border-radius: 42px;
  background:
    radial-gradient(circle at 18% 50%, rgba(139, 77, 255, 0.24), transparent 24rem),
    radial-gradient(circle at 82% 48%, rgba(24, 230, 255, 0.18), transparent 22rem);
  box-shadow: inset 0 0 56px rgba(139, 77, 255, 0.1), 0 0 42px rgba(24, 230, 255, 0.08);
}

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

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

@media (max-width: 1120px) {
  h1 {
    font-size: 78px;
  }

  h2 {
    font-size: 46px;
  }

  .section {
    padding: 72px 0;
  }

  .section--hero,
  .hero {
    grid-template-columns: minmax(0, 1fr) minmax(300px, 0.82fr);
    gap: 26px;
  }

  .why-grid,
  .steps-grid {
    grid-template-columns: 1fr 1fr;
  }

  .features-grid,
  .comparison-grid {
    gap: 14px;
  }

  .orbit-map {
    min-height: 320px;
  }

  .reward-badge {
    right: 16px;
  }
}

@media (max-width: 980px) {
  .site-nav {
    gap: 16px;
  }

  .site-nav a {
    font-size: 13px;
  }

  .site-header {
    gap: 16px;
  }

  .button--small {
    padding: 0 14px;
  }

  .hero__visual {
    min-height: 420px;
  }

  .hero__visual img {
    width: min(100%, 420px);
  }

  .stat-orb {
    min-height: 370px;
  }

  .telegram-mockup {
    min-height: 410px;
  }
}

@media (max-width: 880px) {
  html {
    scroll-padding-top: 96px;
  }

  h1 {
    font-size: 64px;
  }

  h2 {
    font-size: 40px;
  }

  h3 {
    font-size: 22px;
  }

  .site-header {
    grid-template-columns: 1fr auto auto;
    width: calc(100% - 24px);
    border-radius: 24px;
  }

  .site-header .button {
    display: none;
  }

  .menu-toggle {
    display: grid;
  }

  .site-nav {
    position: fixed;
    top: 84px;
    left: 12px;
    right: 12px;
    display: grid;
    gap: 0;
    padding: 10px;
    border: 1px solid rgba(24, 230, 255, 0.2);
    border-radius: 22px;
    background: rgba(3, 7, 19, 0.94);
    box-shadow: var(--shadow-cyan);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-10px);
    transition: opacity 180ms ease, transform 180ms ease;
    backdrop-filter: blur(20px);
  }

  .site-nav a {
    padding: 14px 16px;
    border-radius: 14px;
    font-size: 16px;
  }

  .site-nav a:hover,
  .site-nav a.is-active {
    background: rgba(139, 77, 255, 0.14);
  }

  body.nav-open .site-nav {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  body.nav-open .menu-toggle span:first-child {
    transform: translateY(3px) rotate(45deg);
  }

  body.nav-open .menu-toggle span:last-child {
    transform: translateY(-4px) rotate(-45deg);
  }

  .section,
  .hero {
    width: min(100% - 32px, 640px);
    padding: 64px 0;
  }

  .section--hero,
  .hero,
  .problem-grid,
  .solution-grid,
  .why-grid,
  .market-grid,
  .team-grid,
  .features-grid,
  .comparison-grid,
  .steps-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    gap: 28px;
    min-height: auto;
    padding-top: 112px;
  }

  .hero__lead {
    font-size: 25px;
  }

  .hero__copy,
  .section-copy,
  .section__header p,
  .final-cta p {
    font-size: 17px;
  }

  .hero__visual {
    min-height: 360px;
  }

  .hero-card {
    right: 8px;
    bottom: 24px;
    min-width: 220px;
  }

  .stat-orb {
    min-height: 330px;
    border-width: 12px;
  }

  .stat-orb strong {
    font-size: 70px;
  }

  .stat-orb span {
    font-size: 22px;
  }

  .stat-orb__active {
    right: 18px;
  }

  .telegram-mockup {
    min-height: 0;
    overflow: hidden;
    padding: 20px;
    border-radius: 30px;
  }

  .telegram-mockup::after {
    inset: -6px;
    border-radius: 36px;
  }

  .reward-badge {
    position: static;
    min-width: 0;
    margin-top: 4px;
  }

  .orbit-map,
  .team-avatar {
    min-height: 310px;
  }

  .orbit-map span {
    width: 76px;
    height: 76px;
    font-size: 13px;
  }

  .orbit-map__center {
    width: 124px;
    height: 124px;
    font-size: 28px;
  }

  .statement {
    font-size: 23px;
  }
}

@media (max-width: 520px) {
  h1 {
    font-size: 52px;
  }

  h2 {
    font-size: 34px;
  }

  .brand {
    font-size: 16px;
  }

  .brand__mark {
    width: 34px;
    height: 34px;
  }

  .hero__lead {
    font-size: 22px;
  }

  .hero__actions,
  .metric-strip {
    display: grid;
  }

  .button {
    width: 100%;
  }

  .social-links {
    display: grid;
  }

  .glass-card {
    padding: 18px;
  }

  .hero__visual {
    min-height: 300px;
  }

  .hero-card {
    position: relative;
    right: auto;
    bottom: auto;
    width: 100%;
    margin-top: -36px;
  }

  .stat-orb {
    min-height: 280px;
  }

  .stat-orb strong {
    font-size: 58px;
  }

  .orbit-map {
    transform: scale(0.92);
  }
}
