:root {
  --bg: #0d1b2e;
  --bg2: #112240;
  --bg3: #162d52;
  --border: #1e3a5f;
  --border2: #254d7a;
  --green: #f5c518;
  --green-glow: rgba(245,197,24,0.08);
  --amber: #f5a623;
  --red: #e05a6a;
  --text: #a8c0d6;
  --text-dim: #5a7a96;
  --text-bright: #e8f4ff;
  --mono: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
  --sans: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
}
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--bg);
  background-image: radial-gradient(ellipse at 0% 0%, rgba(30,60,120,0.6) 0%, transparent 50%),
                    radial-gradient(ellipse at 100% 60%, rgba(60,20,100,0.4) 0%, transparent 50%);
  color: var(--text);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.7;
  overflow-x: hidden;
}
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background: repeating-linear-gradient(0deg, transparent, transparent 2px, rgba(0,0,0,0.03) 2px, rgba(0,0,0,0.03) 4px);
  pointer-events: none;
  z-index: 1000;
}

/* NAV */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(13,27,46,0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  padding: 0 48px;
  height: 62px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--mono);
  font-size: 15px;
  color: var(--green);
  letter-spacing: 0.04em;
  text-decoration: none;
}
.logo-mark { display: block; flex-shrink: 0; }
.logo-word i { color: var(--text-dim); font-style: normal; }
.nav-links { display: flex; gap: 32px; list-style: none; }
.nav-links a {
  font-family: var(--mono);
  font-size: 15px;
  color: var(--text-bright);
  text-decoration: none;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--green); }
.nav-burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 42px;
  height: 42px;
  padding: 9px;
  background: none;
  border: none;
  cursor: pointer;
}
.nav-burger span {
  display: block;
  width: 24px;
  height: 2px;
  border-radius: 2px;
  background: var(--text-bright);
  transition: transform 0.25s ease, opacity 0.2s ease;
}
nav.menu-open .nav-burger span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
nav.menu-open .nav-burger span:nth-child(2) { opacity: 0; }
nav.menu-open .nav-burger span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* HERO */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 100px 48px 80px;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: -150px; right: -100px;
  width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(245,197,24,0.07) 0%, transparent 65%);
  pointer-events: none;
}
.hero::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border2), transparent);
}
.hero-grid {
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 72px;
  align-items: center;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-family: var(--mono);
  font-size: 14px;
  color: var(--green);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 28px;
  padding: 7px 16px;
  border: 1px solid rgba(245,197,24,0.28);
  background: rgba(245,197,24,0.07);
}
.hero-badge::before {
  content: '';
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 7px var(--green);
  animation: blink 2s infinite;
}
@keyframes blink { 0%,100%{opacity:1} 50%{opacity:0.35} }
h1 {
  font-family: var(--mono);
  font-size: clamp(26px, 3.2vw, 44px);
  font-weight: 700;
  color: var(--text-bright);
  line-height: 1.22;
  letter-spacing: -0.02em;
  margin-bottom: 24px;
}
h1 em { font-style: normal; color: var(--green); }
.hero-sub {
  font-size: 18px;
  color: var(--text);
  line-height: 1.75;
  max-width: 560px;
  margin-bottom: 40px;
  font-weight: 400;
}
.hero-ctas { display: flex; gap: 16px; flex-wrap: wrap; }
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  background: var(--green);
  color: #0d1b2e;
  font-family: var(--mono);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: all 0.2s;
  clip-path: polygon(0 0,calc(100% - 8px) 0,100% 8px,100% 100%,8px 100%,0 calc(100% - 8px));
}
.btn-primary:hover {
  background: #ffd93d;
  box-shadow: 0 0 28px rgba(245,197,24,0.42);
  transform: translateY(-1px);
}
.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 13px 28px;
  background: transparent;
  color: var(--green);
  font-family: var(--mono);
  font-size: 14px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-decoration: none;
  border: 1px solid rgba(245,197,24,0.35);
  cursor: pointer;
  transition: all 0.2s;
}
.btn-secondary:hover {
  border-color: var(--green);
  background: rgba(245,197,24,0.07);
}
.btn-tg {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 13px 28px;
  background: transparent;
  color: #5b9bd5;
  font-family: var(--mono);
  font-size: 14px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-decoration: none;
  border: 1px solid rgba(91,155,213,0.38);
  cursor: pointer;
  transition: all 0.2s;
}
.btn-tg:hover {
  border-color: #5b9bd5;
  background: rgba(91,155,213,0.08);
}
.btn-tg svg { flex-shrink: 0; }

/* DOWNLOAD BUTTON CLUSTER */
.dl-block { display: flex; flex-direction: column; gap: 24px; }
.dl-groups { display: flex; flex-wrap: wrap; gap: 30px; }
.dl-group { display: flex; flex-direction: column; gap: 14px; }
.dl-label {
  font-family: var(--mono);
  font-size: 14px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-dim);
  display: flex;
  align-items: center;
  gap: 12px;
}
.dl-label::after { content: ""; flex: 1; height: 1px; background: var(--border); min-width: 22px; }
.dl-row { display: flex; flex-wrap: wrap; gap: 14px; }
.dl-badge {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 11px 20px;
  background: #0a0f16;
  border: 1px solid #243247;
  border-radius: 12px;
  text-decoration: none;
  transition: all 0.2s;
  min-width: 186px;
}
.dl-badge:hover { border-color: #3a4f6e; transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0,0,0,0.4); }
.dl-badge svg, .dl-ai svg { flex-shrink: 0; }
.dl-badge-txt, .dl-ai-txt { display: flex; flex-direction: column; line-height: 1.12; }
.dl-badge-small { font-family: var(--sans); font-size: 14px; color: #b9c6d6; }
.dl-badge-big { font-family: var(--sans); font-size: 18px; font-weight: 700; color: #fff; }
.dl-ai {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 11px 20px;
  border-radius: 12px;
  text-decoration: none;
  border: none;
  transition: all 0.2s;
  min-width: 186px;
}
.dl-ai:hover { transform: translateY(-2px); }
.dl-ai-android { background: linear-gradient(135deg,#3ddc84,#23a866); }
.dl-ai-android:hover { box-shadow: 0 10px 28px rgba(61,220,132,0.42); }
.dl-ai-windows { background: linear-gradient(135deg,#2d9cdb,#1769c4); }
.dl-ai-windows:hover { box-shadow: 0 10px 28px rgba(45,156,219,0.42); }
.dl-ai-small { font-family: var(--sans); font-size: 14px; color: rgba(255,255,255,0.92); }
.dl-ai-big { font-family: var(--sans); font-size: 18px; font-weight: 700; color: #fff; }
.dl-ai-badge {
  position: absolute;
  top: -10px;
  right: -8px;
  background: var(--amber);
  color: #1a1206;
  font-family: var(--mono);
  font-size: 14px;
  font-weight: 700;
  padding: 1px 9px;
  border-radius: 8px;
  letter-spacing: 0.04em;
  box-shadow: 0 3px 10px rgba(0,0,0,0.35);
}
.dl-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 22px;
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: 12px;
  font-family: var(--mono);
  font-size: 14px;
  letter-spacing: 0.04em;
  color: var(--text-bright);
  text-decoration: none;
  cursor: pointer;
  transition: all 0.2s;
}
.dl-pill:hover { border-color: var(--border2); background: var(--bg3); }
.dl-pill svg { flex-shrink: 0; }
@media (max-width: 540px) {
  .dl-badge, .dl-ai { min-width: 0; flex: 1 1 100%; }
  .dl-pill { flex: 1 1 100%; justify-content: center; }
}

/* HERO CANVAS */
.hero-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  opacity: 0.55;
}
.hero-stat-card {
  background: var(--bg2);
  border: 1px solid var(--border2);
  padding: 32px;
  position: relative;
}
.hero-stat-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--green), transparent);
}
.stat-label {
  font-family: var(--mono);
  font-size: 14px;
  color: var(--text-dim);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 8px;
}
.stat-value {
  font-family: var(--mono);
  font-size: 54px;
  font-weight: 700;
  color: var(--green);
  line-height: 1;
  margin-bottom: 4px;
  text-shadow: 0 0 32px rgba(245,197,24,0.3);
}
.stat-unit {
  font-family: var(--mono);
  font-size: 15px;
  color: var(--text-dim);
  margin-bottom: 24px;
}
.stat-divider { height: 1px; background: var(--border); margin: 20px 0; }
.stat-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 9px 0;
  border-bottom: 1px solid var(--border);
}
.stat-row:last-child { border-bottom: none; }
.stat-row-label { font-family: var(--mono); font-size: 14px; color: var(--text-dim); letter-spacing: 0.04em; }
.stat-row-val { font-family: var(--mono); font-size: 14px; color: var(--text-bright); }
.tag-green {
  background: rgba(0,229,160,0.12);
  color: var(--green);
  font-family: var(--mono);
  font-size: 14px;
  padding: 3px 10px;
  letter-spacing: 0.05em;
}

/* LAYOUT */
.wrap { max-width: 1200px; margin: 0 auto; padding: 0 48px; }
section { padding: 96px 48px; max-width: 1200px; margin: 0 auto; }
.section-bg {
  background: var(--bg2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 96px 0;
}
.section-divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border2), transparent);
  max-width: 1200px;
  margin: 0 auto;
}
h2 {
  font-family: var(--mono);
  font-size: clamp(24px, 3vw, 40px);
  font-weight: 700;
  color: var(--text-bright);
  line-height: 1.2;
  letter-spacing: -0.025em;
  margin-bottom: 20px;
}
.lead {
  font-size: 17px;
  color: var(--text);
  max-width: 720px;
  line-height: 1.78;
  margin-bottom: 52px;
  font-weight: 400;
}

/* WHAT IT IS */
.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 52px; align-items: start; }
.prose p { color: var(--text); line-height: 1.8; margin-bottom: 18px; font-weight: 400; font-size: 17px; }
.bullet-list { list-style: none; margin-top: 24px; }
.bullet-list li {
  display: flex;
  gap: 14px;
  padding: 13px 0;
  border-bottom: 1px solid var(--border);
  font-size: 16px;
  color: var(--text);
  line-height: 1.6;
}
.bullet-list li:last-child { border-bottom: none; }
.bullet-list li::before { content: '→'; font-family: var(--mono); color: var(--green); flex-shrink: 0; margin-top: 1px; }
.winrate-box {
  background: var(--bg);
  border: 1px solid var(--border2);
  padding: 36px;
  position: relative;
  overflow: hidden;
}
.winrate-box::after {
  content: '';
  position: absolute;
  bottom: -40px; right: -40px;
  width: 200px; height: 200px;
  background: radial-gradient(circle, rgba(245,197,24,0.06) 0%, transparent 70%);
  pointer-events: none;
}
.winrate-box .stat-value { font-size: 68px; }
.winrate-note {
  font-family: var(--mono);
  font-size: 15px;
  color: var(--text);
  line-height: 1.7;
  margin-top: 18px;
  border-top: 1px solid var(--border);
  padding-top: 18px;
}

/* FORMATS TABLE */
.formats-table { width: 100%; border-collapse: collapse; font-size: 16px; min-width: 440px; }
.formats-table th {
  font-family: var(--mono);
  font-size: 14px;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--text-dim);
  text-align: left;
  padding: 14px 20px;
  border-bottom: 1px solid var(--border2);
  background: var(--bg);
}
.formats-table td {
  padding: 15px 20px;
  border-bottom: 1px solid var(--border);
  color: var(--text);
  font-weight: 400;
}
.formats-table td:first-child { color: var(--text-bright); font-weight: 500; }
.formats-table tr:last-child td { border-bottom: none; }
.formats-table tr:hover td { background: rgba(245,197,24,0.03); }
.badge {
  font-family: var(--mono);
  font-size: 14px;
  padding: 3px 10px;
  background: var(--bg3);
  border: 1px solid var(--border2);
  color: var(--green);
  letter-spacing: 0.06em;
}

/* STEPS */
.steps { display: flex; flex-direction: column; position: relative; }
.steps::before {
  content: '';
  position: absolute;
  left: 23px; top: 46px; bottom: 46px;
  width: 1px;
  background: linear-gradient(180deg, var(--green) 0%, var(--border2) 100%);
}
.step {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 28px;
  padding: 30px 0;
  border-bottom: 1px solid var(--border);
}
.step:last-child { border-bottom: none; }
.step-num {
  width: 48px; height: 48px;
  border: 1px solid var(--border2);
  background: var(--bg2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--mono);
  font-size: 14px;
  font-weight: 700;
  color: var(--green);
  flex-shrink: 0;
  position: relative;
  z-index: 1;
}
.step-title {
  font-family: var(--mono);
  font-size: 16px;
  font-weight: 700;
  color: var(--text-bright);
  letter-spacing: 0.02em;
  margin-bottom: 10px;
  margin-top: 12px;
}
.step-body { font-size: 16px; color: var(--text); line-height: 1.78; font-weight: 400; }

/* FEATURES GRID */
.features-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1px; background: var(--border); }
.feat {
  background: var(--bg2);
  padding: 36px 30px;
  position: relative;
  overflow: hidden;
  transition: background 0.2s;
}
.feat:hover { background: var(--bg3); }
.feat::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 2px; height: 100%;
  background: var(--green);
  opacity: 0;
  transition: opacity 0.2s;
}
.feat:hover::before { opacity: 1; }
.feat-tag {
  font-family: var(--mono);
  font-size: 14px;
  color: var(--green);
  letter-spacing: 0.08em;
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.feat-tag::before { content: ''; display: block; width: 18px; height: 1px; background: var(--green); }
.feat-title { font-family: var(--mono); font-size: 16px; font-weight: 700; color: var(--text-bright); margin-bottom: 12px; line-height: 1.3; }
.feat-body { font-size: 15px; color: var(--text); line-height: 1.78; font-weight: 400; }

/* REVIEWS */
.reviews-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.review-card {
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 26px 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: all 0.2s;
}
.review-card:hover { border-color: var(--border2); transform: translateY(-3px); box-shadow: 0 12px 30px rgba(0,0,0,0.28); }
.review-stars { display: flex; gap: 3px; }
.review-stars svg { width: 17px; height: 17px; flex-shrink: 0; }
.review-text { font-size: 15px; color: var(--text); line-height: 1.7; flex: 1; }
.review-author { display: flex; align-items: center; gap: 12px; }
.review-avatar {
  width: 42px; height: 42px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--mono); font-size: 14px; font-weight: 700;
  background: var(--bg3); color: var(--green);
  border: 1px solid var(--border2); flex-shrink: 0;
}
.review-name { font-family: var(--mono); font-size: 15px; color: var(--text-bright); font-weight: 700; line-height: 1.3; }
.review-meta { font-family: var(--mono); font-size: 14px; color: var(--text-dim); }
@media (max-width: 920px) { .reviews-grid { grid-template-columns: 1fr; } }

/* STAT COUNTERS STRIP */
.statbar-band { padding: 58px 0; }
.statbar { display: grid; grid-template-columns: repeat(5,1fr); gap: 1px; background: var(--border); border: 1px solid var(--border); border-radius: 14px; overflow: hidden; }
.statbar-item { background: var(--bg); padding: 32px 16px; text-align: center; }
.statbar-num { font-family: var(--mono); font-size: clamp(30px,4vw,46px); font-weight: 700; color: var(--green); line-height: 1; letter-spacing: -0.02em; }
.statbar-cap { font-family: var(--mono); font-size: 14px; color: var(--text-dim); margin-top: 12px; letter-spacing: 0.04em; text-transform: uppercase; line-height: 1.4; }
@media (max-width: 860px) { .statbar { grid-template-columns: repeat(2,1fr); } }
@media (max-width: 460px) { .statbar { grid-template-columns: 1fr; } }

/* WHAT-IT-DOES INFOGRAPHICS */
.whatviz { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-top: 28px; }
.whatviz-card { background: var(--bg2); border: 1px solid var(--border); border-radius: 14px; padding: 22px 24px; }
.whatviz-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 8px; }
.whatviz-eyebrow { font-family: var(--mono); font-size: 14px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--text-bright); }
.whatviz-tag { font-family: var(--mono); font-size: 14px; color: var(--amber); border: 1px solid rgba(245,166,35,0.35); border-radius: 6px; padding: 2px 9px; }
.whatviz svg { width: 100%; height: auto; display: block; }
.whatviz-legend { font-family: var(--mono); font-size: 14px; color: var(--text-dim); line-height: 1.6; margin-top: 6px; }
.whatviz-legend b { color: var(--text); font-weight: 700; }
@media (max-width: 820px) { .whatviz { grid-template-columns: 1fr; } }

/* PIPELINE */
.pipeline { display: flex; align-items: stretch; gap: 0; margin: 0 0 52px; flex-wrap: nowrap; }
.pipe-node { flex: 1; background: var(--bg); border: 1px solid var(--border); border-radius: 12px; padding: 22px 20px; display: flex; flex-direction: column; gap: 10px; }
.pipe-ico { width: 42px; height: 42px; border-radius: 10px; background: var(--bg3); border: 1px solid var(--border2); display: flex; align-items: center; justify-content: center; }
.pipe-ico svg { width: 22px; height: 22px; }
.pipe-step { font-family: var(--mono); font-size: 14px; color: var(--green); letter-spacing: 0.08em; }
.pipe-title { font-family: var(--mono); font-size: 16px; font-weight: 700; color: var(--text-bright); }
.pipe-desc { font-size: 14px; color: var(--text); line-height: 1.6; }
.pipe-arrow { display: flex; align-items: center; justify-content: center; padding: 0 6px; color: var(--border2); flex-shrink: 0; }
.pipe-arrow svg { width: 26px; height: 26px; }
@media (max-width: 820px) {
  .pipeline { flex-direction: column; }
  .pipe-arrow { transform: rotate(90deg); padding: 8px 0; }
}
.indicator-row { display: flex; flex-direction: column; gap: 8px; margin-top: 14px; }
.indicator-item { display: flex; align-items: center; gap: 10px; font-family: var(--mono); font-size: 15px; color: var(--text); }
.dot { width: 7px; height: 7px; border-radius: 50%; flex-shrink: 0; }
.dot-g { background: #4caf82; box-shadow: 0 0 5px #4caf82; }
.dot-y { background: #f5c518; box-shadow: 0 0 5px #f5c518; }
.dot-r { background: #e05a6a; box-shadow: 0 0 5px #e05a6a; }

/* PRICING */
.table-scroll { width: 100%; overflow-x: auto; -webkit-overflow-scrolling: touch; }
.pricing-table { width: 100%; border-collapse: collapse; font-size: 16px; min-width: 480px; }
.pricing-table th {
  font-family: var(--mono);
  font-size: 14px;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--text-dim);
  text-align: left;
  padding: 14px 24px;
  background: var(--bg);
  border-bottom: 1px solid var(--border2);
}
.pricing-table td {
  padding: 16px 24px;
  border-bottom: 1px solid var(--border);
  color: var(--text);
  font-weight: 400;
  vertical-align: middle;
}
.pricing-table td:first-child { font-family: var(--mono); font-size: 17px; font-weight: 700; color: var(--text-bright); }
.pricing-table td:nth-child(2) { font-family: var(--mono); font-size: 15px; color: var(--green); }
.pricing-table tr.hl td { background: rgba(245,197,24,0.05); border-color: rgba(245,197,24,0.2); }
.pricing-table tr.hl td:first-child { color: var(--green); }
.pricing-table tr:hover td { background: rgba(255,255,255,0.02); }
.pricing-table tr:last-child td { border-bottom: none; }
.bonus-box {
  margin-top: 28px;
  padding: 18px 26px;
  background: rgba(245,197,24,0.06);
  border: 1px solid rgba(245,197,24,0.22);
  display: flex;
  align-items: center;
  gap: 18px;
}
.bonus-label { font-family: var(--mono); font-size: 15px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--green); flex-shrink: 0; }
.bonus-text { font-size: 15px; color: var(--text); font-weight: 400; }

/* AUDIENCE */
.aud-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 22px; }
.aud-card {
  background: var(--bg2);
  border: 1px solid var(--border);
  padding: 34px;
  position: relative;
}
.aud-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 2px;
  background: var(--border);
  transition: background 0.2s;
}
.aud-card:hover::after { background: var(--green); }
.aud-type { font-family: var(--mono); font-size: 14px; letter-spacing: 0.07em; text-transform: uppercase; color: var(--green); margin-bottom: 12px; }
.aud-title { font-family: var(--mono); font-size: 20px; font-weight: 700; color: var(--text-bright); margin-bottom: 14px; line-height: 1.3; }
.aud-body { font-size: 16px; color: var(--text); line-height: 1.8; font-weight: 400; }

/* BLOG */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.blog-card {
  background: var(--bg);
  border: 1px solid var(--border2);
  display: flex;
  flex-direction: column;
  transition: border-color 0.2s, transform 0.2s;
  overflow: hidden;
}
.blog-card:hover {
  border-color: rgba(245,197,24,0.4);
  transform: translateY(-3px);
}
.blog-img {
  position: relative;
  height: 200px;
  background: var(--bg3);
  overflow: hidden;
  flex-shrink: 0;
}
.blog-img svg {
  width: 100%;
  height: 100%;
  display: block;
}
.blog-tag {
  position: absolute;
  top: 14px;
  left: 14px;
  font-family: var(--mono);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #ffffff;
  background: var(--green);
  padding: 4px 10px;
}
.blog-body {
  padding: 24px 26px 20px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.blog-meta {
  font-family: var(--mono);
  font-size: 14px;
  color: var(--text-dim);
  letter-spacing: 0.06em;
  margin-bottom: 10px;
}
.blog-title {
  font-family: var(--mono);
  font-size: 16px;
  font-weight: 700;
  color: var(--text-bright);
  line-height: 1.35;
  margin-bottom: 12px;
  letter-spacing: -0.01em;
}
.blog-excerpt {
  font-size: 14px;
  color: var(--text);
  line-height: 1.75;
  margin-bottom: 20px;
  flex: 1;
}
.blog-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid var(--border);
  padding-top: 14px;
  margin-top: auto;
}
.blog-topics {
  font-family: var(--mono);
  font-size: 14px;
  color: var(--text-dim);
  letter-spacing: 0.05em;
}
.blog-read {
  font-family: var(--mono);
  font-size: 14px;
  font-weight: 700;
  color: var(--green);
  text-decoration: none;
  letter-spacing: 0.04em;
  transition: color 0.2s;
}
.blog-read:hover { color: #ffd93d; }
@media (max-width: 960px) {
  .blog-grid { grid-template-columns: 1fr; }
}
.install-tabs {
  display: flex;
  gap: 0;
  margin-bottom: 40px;
  border-bottom: 1px solid var(--border2);
}
.itab {
  background: none;
  border: none;
  border-bottom: 2px solid transparent;
  padding: 14px 28px;
  font-family: var(--mono);
  font-size: 14px;
  font-weight: 700;
  color: var(--text-dim);
  cursor: pointer;
  letter-spacing: 0.04em;
  margin-bottom: -1px;
  transition: all 0.2s;
}
.itab:hover { color: var(--text-bright); }
.itab.active { color: var(--green); border-bottom-color: var(--green); }
.itab-content { display: block; }
.itab-content.hidden { display: none; }
.isteps { display: flex; flex-direction: column; gap: 0; }
.istep {
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 28px;
  padding: 32px 0;
  border-bottom: 1px solid var(--border);
}
.istep:last-child { border-bottom: none; }
.istep-num {
  width: 52px; height: 52px;
  background: var(--bg2);
  border: 1px solid var(--border2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--mono);
  font-size: 18px;
  font-weight: 700;
  color: var(--green);
  flex-shrink: 0;
}
.istep-title {
  font-family: var(--mono);
  font-size: 17px;
  font-weight: 700;
  color: var(--text-bright);
  margin-bottom: 10px;
  line-height: 1.3;
}
.istep-body p {
  font-size: 16px;
  color: var(--text);
  line-height: 1.78;
  margin-bottom: 14px;
}
.istep-body p:last-child { margin-bottom: 0; }
.btn-dl {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 11px 24px;
  background: rgba(245,197,24,0.08);
  border: 1px solid rgba(245,197,24,0.35);
  color: var(--green);
  font-family: var(--mono);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-decoration: none;
  text-transform: uppercase;
  margin: 12px 0;
  transition: all 0.2s;
}
.btn-dl:hover {
  background: rgba(245,197,24,0.15);
  border-color: var(--green);
  box-shadow: 0 0 16px rgba(245,197,24,0.25);
}
.install-note {
  margin-top: 12px;
  padding: 14px 18px;
  background: var(--bg3);
  border-left: 2px solid var(--green);
  font-size: 15px;
  color: var(--text);
  line-height: 1.75;
  font-family: var(--mono);
}
.ilist {
  list-style: none;
  margin: 10px 0 0 0;
  padding: 0;
}
.ilist li {
  font-size: 16px;
  color: var(--text);
  padding: 8px 0;
  border-bottom: 1px solid var(--border);
  display: flex;
  gap: 10px;
  line-height: 1.6;
}
.ilist li:last-child { border-bottom: none; }
.ilist li::before { content: '·'; color: var(--green); font-size: 18px; line-height: 1.3; flex-shrink: 0; }
.install-specs-box {
  margin-top: 32px;
  padding: 18px 24px;
  border: 1px solid var(--border);
  font-family: var(--mono);
  font-size: 15px;
  color: var(--text);
  background: var(--bg2);
}

/* DEMO */
.demo-section {
  background: var(--bg2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 96px 0;
}
.demo-inner {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 64px;
  align-items: center;
}
.demo-label {
  font-family: var(--mono);
  font-size: 14px;
  color: var(--green);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.demo-label::before {
  content: '';
  width: 24px; height: 1px;
  background: var(--green);
}
.demo-text h2 { margin-bottom: 16px; }
.demo-text p {
  font-size: 17px;
  color: var(--text);
  line-height: 1.78;
  margin-bottom: 28px;
  font-weight: 400;
}
.demo-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  margin-bottom: 28px;
}
.demo-stat {
  background: var(--bg);
  padding: 20px 16px;
  text-align: center;
}
.demo-stat-val {
  font-family: var(--mono);
  font-size: 32px;
  font-weight: 700;
  color: var(--green);
  line-height: 1;
  text-shadow: 0 0 20px rgba(245,197,24,0.3);
}
.demo-stat-unit {
  font-family: var(--mono);
  font-size: 14px;
  color: var(--green);
  opacity: 0.9;
  letter-spacing: 0.05em;
  margin: 4px 0 6px;
}
.demo-stat-label {
  font-size: 14px;
  color: var(--text);
  font-family: var(--mono);
  letter-spacing: 0.03em;
}
.demo-flow {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.demo-flow-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  background: var(--bg);
  border: 1px solid var(--border);
  padding: 16px 20px;
}
.demo-flow-item:hover { border-color: var(--border2); background: var(--bg3); }
.demo-flow-icon {
  font-family: var(--mono);
  font-size: 14px;
  font-weight: 700;
  color: var(--green);
  background: rgba(0,229,160,0.08);
  border: 1px solid rgba(0,229,160,0.2);
  width: 36px; height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.demo-flow-text {
  display: flex;
  flex-direction: column;
  gap: 3px;
}
.demo-flow-text strong {
  font-family: var(--mono);
  font-size: 15px;
  font-weight: 700;
  color: var(--text-bright);
}
.demo-flow-text span {
  font-size: 15px;
  color: var(--text);
  line-height: 1.55;
}
.demo-flow-arrow {
  font-family: var(--mono);
  font-size: 16px;
  color: var(--border2);
  text-align: center;
  padding: 4px 0;
  margin-left: 34px;
}
.demo-video {
  position: relative;
}
.demo-frame {
  position: relative;
  width: 100%;
  /* YouTube Shorts = 9:16 */
  padding-bottom: 177.78%;
  background: var(--bg);
  border: 1px solid var(--border2);
  overflow: hidden;
}
.demo-frame::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--green), transparent);
  z-index: 1;
}
.demo-frame iframe {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  border: none;
}
@media (max-width: 960px) {
  .demo-inner { grid-template-columns: 1fr; gap: 36px; }
  .demo-video { max-width: 320px; margin: 0 auto; }
}
.cta-strip {
  padding: 80px 48px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-strip::before {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%,-50%);
  width: 600px; height: 280px;
  background: radial-gradient(ellipse, rgba(245,197,24,0.07) 0%, transparent 70%);
  pointer-events: none;
}
.cta-strip h2 { margin-bottom: 10px; }
.cta-strip p { font-size: 17px; color: var(--text); margin-bottom: 32px; font-weight: 400; }
.cta-strip .hero-ctas { justify-content: center; }

/* FAQ */
.faq-list { display: flex; flex-direction: column; gap: 8px; }
.faq-item {
  background: var(--bg);
  border: 1px solid var(--border2);
  transition: border-color 0.2s;
}
.faq-item:hover { border-color: rgba(245,197,24,0.3); }
.faq-item.open { border-color: rgba(245,197,24,0.4); }
.faq-btn {
  width: 100%;
  background: none;
  border: none;
  text-align: left;
  padding: 22px 28px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
}
.faq-q {
  font-family: var(--mono);
  font-size: 16px;
  color: var(--text-bright);
  font-weight: 700;
  letter-spacing: 0.01em;
  line-height: 1.4;
}
.faq-icon {
  font-family: var(--mono);
  font-size: 22px;
  color: var(--green);
  flex-shrink: 0;
  transition: transform 0.2s;
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(245,197,24,0.3);
  background: rgba(245,197,24,0.07);
}
.faq-item.open .faq-icon { transform: rotate(45deg); }
.faq-ans {
  display: none;
  padding: 0 28px 24px;
  font-size: 16px;
  color: var(--text);
  line-height: 1.85;
  font-weight: 400;
  border-top: 1px solid var(--border);
  padding-top: 18px;
  margin: 0 28px 24px;
}
.faq-item.open .faq-ans { display: block; }

/* DISCLAIMER */
.disclaimer {
  background: var(--bg2);
  border-top: 1px solid var(--border);
  padding: 44px 0;
}
.disclaimer-label { font-family: var(--mono); font-size: 14px; color: var(--text-dim); letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 10px; }
.disclaimer-text { font-size: 15px; color: var(--text-dim); line-height: 1.85; max-width: none; }
.disclaimer-text a { color: var(--text-dim); text-decoration: underline; text-underline-offset: 3px; }

/* FOOTER */
footer {
  background: var(--bg);
  border-top: 1px solid var(--border);
  padding: 28px 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.footer-logo { font-family: var(--mono); font-size: 16px; color: var(--text-bright); display: inline-flex; align-items: center; gap: 9px; }
.footer-copy { font-family: var(--mono); font-size: 14px; color: var(--text-bright); opacity: 0.8; }
.footer-links { display: flex; gap: 22px; }
.footer-links a { font-family: var(--mono); font-size: 14px; color: var(--text-bright); opacity: 0.8; text-decoration: none; transition: color 0.2s, opacity 0.2s; }
.footer-links a:hover { color: var(--green); opacity: 1; }

/* RESPONSIVE */
@media (max-width: 960px) {
  nav { padding: 0 20px; }
  .nav-burger { display: flex; }
  .nav-links {
    display: flex;
    flex-direction: column;
    gap: 0;
    position: fixed;
    top: 62px;
    left: 0;
    right: 0;
    background: rgba(13,27,46,0.98);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border);
    padding: 6px 20px 14px;
    max-height: calc(100vh - 62px);
    overflow-y: auto;
    transform: translateY(-12px);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.22s ease, transform 0.22s ease;
  }
  nav.menu-open .nav-links { transform: translateY(0); opacity: 1; pointer-events: auto; }
  .nav-links li { width: 100%; }
  .nav-links a {
    display: block;
    padding: 15px 4px;
    font-size: 15px;
    border-bottom: 1px solid var(--border);
  }
  .nav-links li:last-child a { border-bottom: none; }
  .hero { padding: 100px 20px 60px; }
  .hero-grid { grid-template-columns: 1fr; gap: 44px; }
  section { padding: 64px 20px; }
  .wrap { padding: 0 20px; }
  .section-bg { padding: 64px 0; }
  .two-col, .install-grid { grid-template-columns: 1fr; }
  .features-grid { grid-template-columns: 1fr; }
  .aud-grid { grid-template-columns: 1fr; }
  footer { flex-direction: column; gap: 10px; text-align: center; padding: 24px 20px; }
  .disclaimer { padding: 36px 0; }
  .cta-strip { padding: 60px 20px; }
  .pricing-table th, .pricing-table td, .formats-table th, .formats-table td { padding: 12px 14px; }
  .bonus-box { flex-direction: column; align-items: flex-start; gap: 8px; }
}



#comments {
	display: none;
}

/* ========== ОСНОВНЫЕ СТИЛИ ДЛЯ МЕНЮ ЯЗЫКОВ ========== */
#primary-menu {
    position: relative;
    list-style: none;
    margin: 0;
    padding: 0;
    margin-left: auto; /* Прижимаем к правому краю */
}

#primary-menu > .pll-parent-menu-item {
    position: relative;
    list-style: none;
}

/* Кнопка переключателя (RU, EN и т.д.) */
#primary-menu > .pll-parent-menu-item > a {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 12px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    color: black;
    text-decoration: none;
    font-weight: 500;
    font-size: 14px;
    transition: all 0.3s ease;
    cursor: pointer;
}

/* Стрелка вниз */
#primary-menu > .pll-parent-menu-item > a:after {
    content: "▼";
    font-size: 10px;
    transition: transform 0.3s ease;
}

/* При наведении */
#primary-menu > .pll-parent-menu-item:hover > a {
    background: rgba(255, 255, 255, 0.4);
}

/* Выпадающий список (десктоп - при наведении) */
#primary-menu .sub-menu {
    position: absolute;
    top: 100%;
    right: 0; /* Выравниваем по правому краю */
    min-width: 100px;
    background: #d9f1fe;
    backdrop-filter: blur(10px);
    border-radius: 8px;
    padding: 8px 0;
    margin: 5px 0 0;
    list-style: none;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    box-shadow: 0 8px 20px rgba(255, 255, 255, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.2);
    z-index: 1000;
}

/* Показываем подменю при наведении (десктоп) */
#primary-menu > .pll-parent-menu-item:hover .sub-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/* Стили для пунктов выпадающего списка */
#primary-menu .sub-menu li {
    margin: 0;
    padding: 0;
}

#primary-menu .sub-menu li a {
    display: block;
    padding: 8px 20px;
    color: #000;
    text-decoration: none;
    font-size: 14px;
    transition: all 0.2s ease;
    white-space: nowrap;
}

#primary-menu .sub-menu li a:hover {
    background: rgba(255, 215, 225, 0.15);
    color: var(--gold, #6d8efe);
}

/* Активный язык (текущий) */
#primary-menu .sub-menu .current-lang a {
    color: var(--gold, #6d8efe);
    background: rgba(255, 215, 225, 0.1);
    position: relative;
}

#primary-menu .sub-menu .current-lang a:before {
    content: "✓";
    position: absolute;
    left: 8px;
    color: var(--gold, #6d8efe);
}

/* ========== МОБИЛЬНАЯ ВЕРСИЯ ========== */
@media (max-width: 768px) {
    #primary-menu {
        width: 100%;
        margin-left: 0;
        margin-top: 10px;
    }
    
    #primary-menu > .pll-parent-menu-item {
        width: 100%;
    }
    
    #primary-menu > .pll-parent-menu-item > a {
        justify-content: space-between;
        background: rgba(255, 255, 255, 0.05);
    }
    
    /* Скрываем подменю по умолчанию на мобилке */
    #primary-menu .sub-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        background: rgba(255, 255, 255, 0.03);
        margin-top: 5px;
        margin-bottom: 10px;
        padding: 5px 0;
        border-left: 2px solid rgba(255, 215, 0, 0.3);
        display: none; /* Скрыто по умолчанию */
    }
    
    /* Показываем подменю когда есть класс .open */
    #primary-menu > .pll-parent-menu-item.open .sub-menu {
        display: block;
    }
    
    /* Стили для пунктов в мобильной версии */
    #primary-menu .sub-menu li a {
        padding: 10px 20px 10px 30px;
        white-space: normal;
    }
    
    /* Убираем эффект при наведении на мобилке */
    #primary-menu .sub-menu li a:hover {
        padding-left: 30px;
    }
    
    /* Анимация стрелки при открытии */
    #primary-menu > .pll-parent-menu-item.open > a:after {
        transform: rotate(180deg);
    }
}

/* ========== АДАПТАЦИЯ ДЛЯ ПЛАНШЕТОВ ========== */
@media (min-width: 769px) and (max-width: 1024px) {
    #primary-menu .sub-menu {
        right: 0;
    }
}


.entry-header {
	margin-bottom: 32px;
}


.type-post {
	padding-top: 60px;
}

.type-post h1 {
	font-size: 36px;
	margin-bottom: 16px;
}
.type-post h2 {
	font-size: 28px;
	margin: 16px 0;
	display: block;
}
.type-post h3 {
	font-size: 24px;
	margin: 16px 0;
	display: block;
}

.skip-link {
display: none;
}