/* 
   Шрифт: Montserrat — ближайший бесплатный аналог Proxima Nova. 
   Если у вас есть файлы Proxima Nova, замените подключение. 
*/
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;600;700;800&display=swap');

:root {
  --bg: #0b0c10;
  --card: #121423;
  --card2: #0f111d;
  --text: #e9ecf1;
  --muted: #a7afc0;
  
  /* АКЦЕНТНЫЕ ЦВЕТА */
  --accent: #E81C5A;
  --accent-hover: #d5145e;
  --accent-glow: rgba(232, 28, 90, 0.3);
  
  --line: rgba(255, 255, 255, .10);
  --shadow: 0 20px 60px rgba(0, 0, 0, .45);
  --r: 18px;
  --max: 1120px;
}

* { box-sizing: border-box; }
html, body { height: 100%; scroll-behavior: smooth; }

body {
  margin: 0;
  /* Приоритет Proxima Nova */
  font-family: 'Proxima Nova', 'Montserrat', system-ui, -apple-system, sans-serif;
  color: var(--text);
  background:
    /* Розовое свечение сверху справа */
    radial-gradient(900px 500px at 75% 15%, rgba(232, 28, 90, 0.12), transparent 65%),
    /* Легкое синее или нейтральное свечение слева */
    radial-gradient(700px 400px at 15% 10%, rgba(255, 255, 255, 0.05), transparent 60%),
    linear-gradient(180deg, #07070b, #0b0c10 35%, #07070b);
  line-height: 1.5;
}

a { color: inherit; text-decoration: none; transition: color .2s; }

.container { width: min(var(--max), calc(100% - 40px)); margin: 0 auto; }

/* HEADER & LOGO */
.header {
  position: sticky; top: 0; z-index: 50;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  background: rgba(7, 7, 11, .75);
  border-bottom: 1px solid var(--line);
}

.header__inner {
  display: flex; align-items: center; gap: 18px;
  padding: 12px 0;
}

.brand {
  display: flex; align-items: center; gap: 12px;
  font-weight: 800; letter-spacing: .4px;
  font-size: 19px;
}

.brand__text {
  text-transform: uppercase;
}

.brand__divider {
  color: var(--muted);
  font-weight: 400;
  font-size: 16px;
  opacity: 0.5;
}

.brand__logo-img {
  height: 28px; /* Высота логотипа Majestic */
  width: auto;
  display: block;
}

/* NAVIGATION */
.nav { display: flex; gap: 22px; margin-left: 10px; }
.nav a { color: var(--muted); font-weight: 600; font-size: 14px; }
.nav a:hover { color: var(--accent); }

.header__cta { margin-left: auto; }

/* BUTTONS */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  gap: 10px;
  padding: 12px 20px;
  border-radius: 14px;
  border: 1px solid var(--line);
  background: transparent;
  color: var(--text);
  font-weight: 700;
  cursor: pointer;
  transition: all .2s ease;
}

.btn:hover { transform: translateY(-2px); border-color: rgba(255, 255, 255, .25); }
.btn:active { transform: translateY(0px); }

.btn--primary {
  border-color: transparent;
  background: linear-gradient(135deg, var(--accent), var(--accent-hover));
  color: #fff;
  box-shadow: 0 4px 15px rgba(232, 28, 90, 0.2);
}

.btn--primary:hover {
  filter: saturate(1.1);
  box-shadow: 0 6px 20px rgba(232, 28, 90, 0.35);
}

.btn--ghost { background: rgba(255, 255, 255, .05); }

/* BURGER & MOBILE */
.burger {
  display: none;
  margin-left: auto;
  width: 44px; height: 44px;
  border-radius: 12px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, .05);
  cursor: pointer;
}
.burger span { display: block; height: 2px; width: 20px; margin: 5px auto; background: #fff; border-radius: 2px; }

.mobileNav {
  display: none;
  padding: 10px 20px 20px;
  border-top: 1px solid var(--line);
  background: #07070b;
}
.mobileNav a { display: block; padding: 12px 0; color: var(--muted); font-weight: 600; }
.mobileNav a.btn { margin-top: 10px; color: #fff; text-align: center; }

/* HERO SECTION */
.hero { padding: 60px 0 40px; }
.hero__grid {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 40px;
  align-items: center;
}

.pill {
  display: inline-flex;
  padding: 8px 16px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(232, 28, 90, 0.05);
  color: var(--accent);
  font-weight: 700;
  font-size: 13px;
  margin-bottom: 16px;
}

h1 { margin: 0 0 15px; font-size: 56px; line-height: 1.1; letter-spacing: -1.5px; font-weight: 800; }
.grad {
  background: linear-gradient(135deg, var(--accent), #ff4d8d);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.lead { margin: 0; color: var(--muted); font-size: 18px; line-height: 1.6; }
.hero__actions { display: flex; gap: 14px; margin: 24px 0; flex-wrap: wrap; }

.miniCard {
  border-radius: var(--r);
  border: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(255, 255, 255, .06), rgba(255, 255, 255, .02));
  box-shadow: var(--shadow);
  padding: 18px;
  max-width: 520px;
}

.miniCard__row { display: flex; align-items: center; justify-content: space-between; gap: 12px; padding: 12px 0; }
.miniCard__row + .miniCard__row { border-top: 1px solid var(--line); }
.miniCard__label { color: var(--muted); font-weight: 700; }
.code {
  display: flex; align-items: center; gap: 10px;
  border-radius: 12px;
  padding: 10px 16px;
  border: 1px solid rgba(232, 28, 90, 0.3);
  background: rgba(232, 28, 90, 0.1);
  font-weight: 800;
  letter-spacing: 1px;
  color: #fff;
}
.iconBtn { border: none; background: transparent; color: var(--accent); cursor: pointer; font-size: 18px; }

.hint { color: rgba(255, 255, 255, .4); font-size: 13px; margin-top: 15px; }

.hero__visual { position: relative; display: flex; align-items: center; justify-content: center; }
.glow {
  position: absolute; inset: -40px;
  background: radial-gradient(closest-side, var(--accent-glow), transparent 70%);
  filter: blur(20px);
}
.hero__img {
  position: relative;
  width: 100%; max-width: 440px;
  height: auto;
  border-radius: 30px;
  border: 1px solid rgba(255, 255, 255, .1);
  box-shadow: var(--shadow);
}

/* SECTIONS */
.section { padding: 50px 0; }
.section--alt {
  background: linear-gradient(180deg, rgba(232, 28, 90, 0.03), transparent 80%);
  border-top: 1px solid var(--line);
}

h2 { margin: 0 0 12px; font-size: 32px; letter-spacing: -0.8px; font-weight: 800; }
.sub { margin: 0 0 24px; color: var(--muted); font-size: 16px; max-width: 700px; }

.chips { display: flex; flex-wrap: wrap; gap: 10px; }
.chip {
  padding: 8px 16px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, .04);
  color: rgba(255, 255, 255, .8);
  font-weight: 600; font-size: 13px;
}

.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 20px; }
.step {
  border-radius: var(--r);
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, .03);
  padding: 24px;
  display: flex; flex-direction: column; gap: 15px;
}
.step__n {
  width: 36px; height: 36px; border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-weight: 800; color: #fff;
  background: var(--accent);
  box-shadow: 0 4px 10px rgba(232, 28, 90, 0.3);
}
.step h3 { margin: 0; font-size: 18px; font-weight: 700; }
.link { color: var(--accent); font-weight: 700; display: inline-block; margin-top: 10px; }
.link:hover { text-decoration: underline; }

.kbdline {
  margin-top: 10px;
  display: inline-flex;
  border-radius: 10px;
  border: 1px solid var(--line);
  background: #000;
  padding: 8px 14px;
  color: var(--accent);
}

/* DOWNLOAD & CARDS */
.cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 30px; }
.card {
  border-radius: var(--r);
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, .03);
  padding: 20px;
}
.card h3 { margin: 0 0 10px; color: var(--accent); }

.downloadGrid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-top: 20px; }
.downloadCard {
  border-radius: var(--r);
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, .03);
  padding: 24px;
}
.downloadCard h3 { margin: 0 0 15px; font-weight: 700; }
.downloadCard ul, .downloadCard ol { padding-left: 20px; color: var(--muted); margin-bottom: 20px; }
.downloadCard li { margin-bottom: 8px; }

.downloadCard--tips .note {
  padding: 15px; border-radius: 12px;
  background: rgba(0, 0, 0, .3);
  border: 1px solid var(--line);
  font-size: 14px; color: var(--muted);
}

/* FAQ */
.faq { display: grid; gap: 12px; margin-top: 20px; }
details {
  border-radius: var(--r);
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, .03);
  padding: 16px 20px;
  transition: background .3s;
}
details[open] { background: rgba(255, 255, 255, .06); }
summary { cursor: pointer; font-weight: 700; font-size: 16px; list-style: none; }
summary::-webkit-details-marker { display: none; }
.faq__body { margin-top: 12px; color: var(--muted); line-height: 1.6; }

/* CTA BAR */
.ctaBar {
  margin-top: 40px;
  border-radius: 24px;
  border: 1px solid rgba(232, 28, 90, 0.3);
  background: linear-gradient(135deg, rgba(232, 28, 90, 0.15), rgba(0, 0, 0, 0.4));
  padding: 30px;
  display: flex; align-items: center; justify-content: space-between; gap: 20px;
}
.ctaBar__title { font-weight: 800; font-size: 22px; margin-bottom: 4px; }
.ctaBar__text { color: var(--muted); }

.disclaimer { margin-top: 20px; color: rgba(255, 255, 255, .3); font-size: 12px; text-align: center; }

/* FOOTER */
.footer { padding: 40px 0; border-top: 1px solid var(--line); margin-top: 40px; }
.footer__inner { display: flex; align-items: center; justify-content: space-between; gap: 20px; flex-wrap: wrap; }
.footer__muted { color: rgba(255, 255, 255, .4); font-size: 14px; margin-top: 8px; }
.footer__right { display: flex; gap: 20px; font-weight: 600; font-size: 14px; color: var(--muted); }
.footer__right a:hover { color: var(--accent); }

/* TOAST */
.toast {
  position: fixed; bottom: 24px; left: 50%; transform: translateX(-50%) translateY(10px);
  background: #1a1a1a; border: 1px solid var(--accent);
  color: #fff; padding: 12px 24px; border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.5);
  opacity: 0; pointer-events: none; transition: all .3s ease;
  z-index: 1000; font-weight: 700;
}
.toast--show { opacity: 1; transform: translateX(-50%) translateY(0); }

/* RESPONSIVE */
@media (max-width: 980px) {
  .hero__grid { grid-template-columns: 1fr; text-align: center; }
  .hero__visual { order: -1; }
  .hero__actions { justify-content: center; }
  .miniCard { margin-left: auto; margin-right: auto; }
  h1 { font-size: 42px; }
  .steps, .cards, .downloadGrid { grid-template-columns: 1fr; }
  .ctaBar { flex-direction: column; text-align: center; }
}

@media (max-width: 780px) {
  .nav, .header__cta { display: none; }
  .burger { display: block; }
  .mobileNav.show { display: block; }
}