/* ──────────────────────────────────────────────────────────────
   АВООО Landing Page — Style Sheet
   Aesthetic: Dark Industrial + Electric Green
   Fonts: Bricolage Grotesque (display) + JetBrains Mono (data)
────────────────────────────────────────────────────────────── */

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

:root {
  --bg:          #080808;
  --bg-2:        #0f0f0f;
  --bg-3:        #161616;
  --bg-4:        #1c1c1c;
  --border:      #1a1a1a;
  --border-2:    #252525;
  --border-3:    #333;

  --text:        #f0f0f0;
  --text-2:      #888;
  --text-3:      #444;
  --text-4:      #2a2a2a;

  --accent:      #00e676;
  --accent-dim:  rgba(0, 230, 118, 0.07);
  --accent-brd:  rgba(0, 230, 118, 0.18);
  --accent-glow: rgba(0, 230, 118, 0.25);

  --red:         #ef4444;
  --amber:       #f59e0b;

  --radius:      16px;
  --radius-sm:   10px;
  --radius-xs:   6px;

  --display: 'Bricolage Grotesque', system-ui, sans-serif;
  --mono:    'JetBrains Mono', 'Courier New', monospace;
}

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--display);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* ─── SCROLLBAR ─────────────────────────────────────────────── */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--border-3); border-radius: 3px; }

/* ─── HELPERS ───────────────────────────────────────────────── */
.container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ─── NAV ───────────────────────────────────────────────────── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 200;
  border-bottom: 1px solid var(--border);
  background: rgba(8,8,8,0.85);
  backdrop-filter: blur(20px) saturate(180%);
  transition: border-color 0.3s;
}
.nav.scrolled { border-color: var(--border-2); }

.nav-inner {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
  height: 64px;
  display: flex;
  align-items: center;
  gap: 36px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 7px;
  text-decoration: none;
  color: var(--text);
  font-weight: 800;
  font-size: 17px;
  letter-spacing: -0.03em;
  flex-shrink: 0;
}
.logo-mark { color: var(--accent); font-size: 19px; }

.nav-links {
  display: flex;
  gap: 28px;
  margin-left: auto;
}
.nav-links a {
  text-decoration: none;
  color: var(--text-2);
  font-size: 14px;
  font-weight: 500;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--text); }

.nav-cta {
  text-decoration: none;
  background: var(--accent);
  color: #000;
  font-weight: 700;
  font-size: 13px;
  padding: 8px 18px;
  border-radius: var(--radius-sm);
  letter-spacing: -0.01em;
  transition: opacity 0.2s, transform 0.2s;
  flex-shrink: 0;
}
.nav-cta:hover { opacity: 0.85; transform: translateY(-1px); }

.nav-burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  margin-left: auto;
}
.nav-burger span {
  display: block;
  width: 22px; height: 2px;
  background: var(--text-2);
  border-radius: 2px;
  transition: all 0.3s;
}
.nav-burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-burger.open span:nth-child(2) { opacity: 0; }
.nav-burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.nav-mobile {
  display: none;
  flex-direction: column;
  padding: 16px 24px 20px;
  border-top: 1px solid var(--border);
  gap: 4px;
}
.nav-mobile.open { display: flex; }
.nav-mobile a {
  text-decoration: none;
  color: var(--text-2);
  font-size: 15px;
  font-weight: 500;
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
  transition: color 0.2s;
}
.nav-mobile a:last-child { border-bottom: none; }
.nav-mobile a:hover { color: var(--text); }
.nav-mobile .nav-cta {
  margin-top: 12px;
  text-align: center;
  color: #000;
  padding: 12px;
}

/* ─── HERO ──────────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 100px 24px 80px;
  overflow: hidden;
}

/* Background layers */
.hero-noise {
  position: absolute; inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='1'/%3E%3C/svg%3E");
  opacity: 0.018;
  pointer-events: none;
}
.hero-grid-bg {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(var(--border) 1px, transparent 1px),
    linear-gradient(90deg, var(--border) 1px, transparent 1px);
  background-size: 56px 56px;
  opacity: 0.5;
  mask-image: radial-gradient(ellipse 75% 70% at 50% 50%, black 20%, transparent 100%);
  pointer-events: none;
}
.hero-glow {
  position: absolute;
  width: 700px; height: 700px;
  left: -150px; top: 50%;
  transform: translateY(-50%);
  background: radial-gradient(ellipse, rgba(0,230,118,0.055) 0%, transparent 65%);
  pointer-events: none;
}

.hero-container {
  position: relative;
  z-index: 1;
  max-width: 1160px;
  margin: 0 auto;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

/* Hero text */
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  border: 1px solid var(--accent-brd);
  border-radius: 100px;
  font-family: var(--mono);
  font-size: 11px;
  color: var(--accent);
  background: var(--accent-dim);
  margin-bottom: 28px;
  animation: fadeIn 0.6s ease both;
}
.badge-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--accent);
  animation: pulse-dot 2s infinite;
}
@keyframes pulse-dot {
  0%, 100% { opacity: 1; box-shadow: 0 0 0 0 var(--accent-glow); }
  50% { opacity: 0.7; box-shadow: 0 0 0 5px transparent; }
}

.hero-title {
  font-size: clamp(32px, 4vw, 56px);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.045em;
  margin-bottom: 22px;
  animation: fadeUp 0.6s 0.1s ease both;
}
.title-row { display: block; }
.title-row.accent { color: var(--accent); }

.hero-sub {
  font-size: 16px;
  color: var(--text-2);
  line-height: 1.7;
  margin-bottom: 36px;
  max-width: 480px;
  font-weight: 400;
  animation: fadeUp 0.6s 0.2s ease both;
}

.hero-actions {
  display: flex;
  gap: 12px;
  align-items: center;
  flex-wrap: wrap;
  margin-bottom: 52px;
  animation: fadeUp 0.6s 0.3s ease both;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--accent);
  color: #000;
  font-family: var(--display);
  font-size: 14px;
  font-weight: 700;
  padding: 13px 22px;
  border-radius: var(--radius-sm);
  text-decoration: none;
  letter-spacing: -0.01em;
  transition: box-shadow 0.25s, transform 0.2s, opacity 0.2s;
  white-space: nowrap;
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 36px var(--accent-glow);
}
.btn-primary.large { font-size: 15px; padding: 15px 28px; }

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--text-2);
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  padding: 13px 4px;
  transition: color 0.2s;
}
.btn-ghost:hover { color: var(--text); }

.hero-stats {
  display: flex;
  gap: 28px;
  align-items: center;
  flex-wrap: wrap;
  animation: fadeUp 0.6s 0.4s ease both;
}
.stat { display: flex; flex-direction: column; gap: 2px; }
.stat-num {
  font-family: var(--mono);
  font-size: 22px;
  font-weight: 600;
  color: var(--text);
  letter-spacing: -0.02em;
}
.stat-fixed {
  font-family: var(--mono);
  font-size: 22px;
  font-weight: 600;
  color: var(--accent);
  letter-spacing: -0.02em;
}
.stat-label { font-size: 11px; color: var(--text-3); font-weight: 500; }
.stat-sep {
  width: 1px; height: 36px;
  background: var(--border-2);
  flex-shrink: 0;
}

/* ─── WIDGET ─────────────────────────────────────────────────── */
.hero-widget-wrap { animation: fadeUp 0.7s 0.3s ease both; }

.widget-float {
  display: flex;
  flex-direction: column;
  gap: 10px;
  animation: float 5s ease-in-out infinite;
}
@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-12px); }
}

.widget-card {
  background: var(--bg-3);
  border: 1px solid var(--border-2);
  border-radius: var(--radius);
  padding: 20px;
  box-shadow:
    0 0 0 1px rgba(255,255,255,0.03),
    0 24px 64px rgba(0,0,0,0.6),
    0 0 40px rgba(0,0,0,0.4);
}

.widget-head {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 16px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--border);
}
.wh-left { display: flex; gap: 10px; align-items: flex-start; flex: 1; min-width: 0; }
.wd-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--text-3);
  flex-shrink: 0;
  margin-top: 3px;
}
.wd-dot.active {
  background: var(--accent);
  box-shadow: 0 0 10px var(--accent-glow);
  animation: pulse-dot 2s infinite;
}
.wd-title {
  font-size: 12px;
  font-weight: 600;
  color: var(--text);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.wd-sub { font-size: 10px; color: var(--text-3); margin-top: 2px; }
.wd-badge {
  font-family: var(--mono);
  font-size: 9px;
  font-weight: 600;
  padding: 3px 8px;
  border-radius: 100px;
  background: var(--accent-dim);
  color: var(--accent);
  border: 1px solid var(--accent-brd);
  white-space: nowrap;
  flex-shrink: 0;
}

.widget-pos-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 14px;
}
.wpr-label { font-size: 10px; color: var(--text-3); font-weight: 500; }
.wpr-right { display: flex; align-items: center; gap: 8px; }
.pos-num {
  font-family: var(--mono);
  font-size: 22px;
  font-weight: 600;
  color: var(--text);
  line-height: 1;
  transition: all 0.35s ease;
}
.pos-tag {
  font-family: var(--mono);
  font-size: 9px;
  font-weight: 600;
  padding: 3px 8px;
  border-radius: 4px;
  background: var(--accent-dim);
  color: var(--accent);
  border: 1px solid var(--accent-brd);
}
.pos-tag.bad {
  background: rgba(239,68,68,0.08);
  color: var(--red);
  border-color: rgba(239,68,68,0.2);
}

.widget-lb {
  display: flex;
  flex-direction: column;
  gap: 3px;
  margin-bottom: 16px;
}
.lb-row {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 5px 8px;
  border-radius: 7px;
  transition: all 0.4s ease;
}
.lb-row.you {
  background: var(--accent-dim);
  border: 1px solid var(--accent-brd);
}
.lb-n {
  font-family: var(--mono);
  font-size: 10px;
  color: var(--text-3);
  width: 14px;
  flex-shrink: 0;
}
.lb-name {
  font-size: 11px;
  color: var(--text-2);
  flex: 1;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.lb-name.you { color: var(--accent); font-weight: 600; }
.lb-bid {
  font-family: var(--mono);
  font-size: 10px;
  color: var(--text-2);
  font-weight: 500;
  flex-shrink: 0;
}
.lb-bid.green { color: var(--accent); }

.widget-foot {
  display: flex;
  gap: 16px;
  padding-top: 14px;
  border-top: 1px solid var(--border);
  flex-wrap: wrap;
}
.wf-col { display: flex; flex-direction: column; gap: 2px; }
.wf-label { font-size: 9px; color: var(--text-3); text-transform: uppercase; letter-spacing: 0.05em; }
.wf-val { font-family: var(--mono); font-size: 11px; color: var(--text-2); font-weight: 500; }

/* Mini log */
.widget-log {
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 10px 12px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.log-row {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--mono);
  font-size: 10px;
}
.log-time { color: var(--text-3); flex-shrink: 0; }
.log-text { color: var(--text-2); flex: 1; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.log-status {
  flex-shrink: 0;
  font-size: 9px;
  padding: 1px 5px;
  border-radius: 3px;
  font-weight: 700;
}
.log-status.ok { background: var(--accent-dim); color: var(--accent); }
.log-status.warn { background: rgba(245,158,11,0.1); color: var(--amber); }

/* ─── TICKER ─────────────────────────────────────────────────── */
.ticker-wrap {
  overflow: hidden;
  background: var(--bg-2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 13px 0;
  white-space: nowrap;
}
.ticker-track { display: inline-block; }
.ticker-inner {
  display: inline-flex;
  align-items: center;
  gap: 28px;
  animation: ticker 35s linear infinite;
  font-family: var(--mono);
  font-size: 11px;
  color: var(--text-3);
}
.ticker-inner .td { color: var(--accent); opacity: 0.5; }
@keyframes ticker {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ─── SECTION HEADER ─────────────────────────────────────────── */
.section-head { margin-bottom: 52px; }
.sec-label {
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 600;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  margin-bottom: 10px;
}
.sec-title {
  font-size: clamp(30px, 4vw, 48px);
  font-weight: 800;
  letter-spacing: -0.035em;
  color: var(--text);
  line-height: 1.08;
}

/* ─── FEATURES ──────────────────────────────────────────────── */
.features {
  padding: 120px 0;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto auto;
  gap: 14px;
}

.feat-card {
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  transition: border-color 0.25s, box-shadow 0.25s;
}
.feat-card:hover {
  border-color: var(--border-2);
  box-shadow: 0 8px 40px rgba(0,0,0,0.3);
}
.feat-tall { grid-row: span 2; display: flex; flex-direction: column; }
.feat-wide { grid-column: span 2; }

.feat-icon {
  width: 36px; height: 36px;
  color: var(--accent);
  margin-bottom: 16px;
}
.feat-icon svg { width: 100%; height: 100%; }
.feat-card h3 {
  font-size: 16px;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--text);
  margin-bottom: 8px;
}
.feat-card p {
  font-size: 13.5px;
  color: var(--text-2);
  line-height: 1.65;
}

/* Chart inside tall card */
.feat-chart { margin-top: auto; padding-top: 28px; }
.bars {
  display: flex;
  align-items: flex-end;
  gap: 4px;
  height: 72px;
  margin-bottom: 8px;
}
.bar {
  flex: 1;
  height: var(--h);
  background: var(--border-2);
  border-radius: 3px 3px 0 0;
}
.bar.hi { background: var(--accent); opacity: 0.75; }
.chart-line {
  font-family: var(--mono);
  font-size: 10px;
  color: var(--text-3);
}

/* Wide feat inner layout */
.feat-wide-inner {
  display: flex;
  gap: 40px;
  align-items: flex-start;
}
.feat-wide-inner > div:first-child { flex-shrink: 0; max-width: 220px; }
.monitor-list {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 7px;
  justify-content: center;
}
.mon-row {
  display: flex;
  align-items: center;
  gap: 10px;
  animation: fadeInLeft 0.4s var(--d2) ease both;
}
.mon-pos {
  font-family: var(--mono);
  font-size: 10px;
  color: var(--text-3);
  width: 22px;
  flex-shrink: 0;
}
.mon-bar {
  flex: 1;
  height: 5px;
  background: var(--border-2);
  border-radius: 3px;
  overflow: hidden;
}
.mon-bar em {
  display: block;
  height: 100%;
  background: var(--border-3);
  border-radius: 3px;
}
.mon-bar.you em { background: var(--accent); }
.mon-val {
  font-family: var(--mono);
  font-size: 10px;
  color: var(--text-2);
  width: 76px;
  text-align: right;
  flex-shrink: 0;
}
.mon-row.you .mon-val { color: var(--accent); }
.mon-val b {
  display: inline-block;
  background: var(--accent-dim);
  color: var(--accent);
  border-radius: 3px;
  padding: 0 4px;
  font-size: 8px;
  font-style: normal;
  margin-left: 3px;
}

/* ─── HOW IT WORKS ──────────────────────────────────────────── */
.how {
  padding: 120px 0;
  background: var(--bg-2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.steps {
  display: flex;
  align-items: flex-start;
  gap: 0;
}
.step { flex: 1; }
.step-arrow {
  flex-shrink: 0;
  font-size: 18px;
  color: var(--border-3);
  padding: 0 8px;
  margin-top: 16px;
}
.step-num {
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 600;
  color: var(--accent);
  letter-spacing: 0.08em;
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.step-num::after {
  content: '';
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, var(--accent-brd), transparent);
  max-width: 32px;
}
.step-body h3 {
  font-size: 16px;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--text);
  margin-bottom: 6px;
}
.step-body p {
  font-size: 13px;
  color: var(--text-2);
  line-height: 1.65;
}

/* ─── COMPARISON ─────────────────────────────────────────────── */
.comparison { padding: 120px 0; }

.compare-wrap {
  border: 1px solid var(--border-2);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 4px 40px rgba(0,0,0,0.4);
}
.compare-table { width: 100%; }

.cmp-head {
  display: grid;
  grid-template-columns: 1fr 180px 180px;
  gap: 0;
  padding: 18px 24px;
  background: var(--bg-3);
  border-bottom: 1px solid var(--border-2);
}
.cmp-awo, .cmp-other {
  display: flex; flex-direction: column; gap: 3px;
}
.cmp-logo {
  font-size: 13px; font-weight: 700; color: var(--text);
}
.cmp-awo .cmp-logo { color: var(--accent); }
.cmp-price { font-family: var(--mono); font-size: 10px; color: var(--text-3); }

.cmp-row {
  display: grid;
  grid-template-columns: 1fr 180px 180px;
  padding: 15px 24px;
  border-bottom: 1px solid var(--border);
  align-items: center;
  transition: background 0.15s;
}
.cmp-row:hover { background: rgba(255,255,255,0.015); }
.cmp-row.last { border-bottom: none; }

.cmp-feat { font-size: 13px; color: var(--text-2); }
.chk { font-size: 13px; font-weight: 700; }
.chk.yes { color: var(--accent); }
.chk.no  { color: var(--red); }
.chk.mid { color: var(--amber); }
.cmp-note { font-family: var(--mono); font-size: 10px; color: var(--text-3); margin-left: 5px; }

/* ─── NUMBERS ────────────────────────────────────────────────── */
.numbers {
  padding: 80px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.numbers-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}
.num-card {
  background: var(--bg-2);
  padding: 36px 28px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.num-val {
  font-family: var(--mono);
  font-size: 26px;
  font-weight: 600;
  color: var(--accent);
  letter-spacing: -0.03em;
  line-height: 1;
}
.num-label {
  font-size: 13px;
  color: var(--text-2);
  line-height: 1.45;
}

/* ─── PRICING ────────────────────────────────────────────────── */
.pricing {
  padding: 120px 0;
  background: var(--bg-2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.plans {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  align-items: stretch;
}
.plans.plans-single {
  grid-template-columns: 1fr;
  max-width: 480px;
  margin: 0 auto;
}

.plan {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  display: flex;
  flex-direction: column;
  position: relative;
}
.plan-featured {
  background: var(--bg-3);
  border-color: var(--accent-brd);
  box-shadow:
    0 0 0 1px var(--accent-brd),
    0 20px 60px rgba(0,230,118,0.07);
}
.plan-badge-top {
  position: absolute;
  top: -12px; left: 50%;
  transform: translateX(-50%);
  background: var(--accent);
  color: #000;
  font-size: 10px;
  font-weight: 800;
  padding: 4px 14px;
  border-radius: 100px;
  white-space: nowrap;
  letter-spacing: 0.02em;
}

.plan-name {
  font-size: 13px;
  font-weight: 700;
  color: var(--text-2);
  letter-spacing: -0.01em;
  margin-bottom: 14px;
}
.plan-price {
  display: flex;
  flex-direction: column;
  gap: 2px;
  margin-bottom: 24px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--border);
}
.pp-num {
  font-family: var(--mono);
  font-size: 30px;
  font-weight: 600;
  color: var(--text);
  letter-spacing: -0.03em;
  line-height: 1;
}
.pp-num.accent { color: var(--accent); }
.pp-per { font-size: 12px; color: var(--text-3); margin-top: 2px; }

.plan-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 9px;
  margin-bottom: 28px;
  flex: 1;
}
.plan-list li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 13px;
  color: var(--text-2);
}
.plan-list li::before {
  content: '✓';
  color: var(--accent);
  font-size: 12px;
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 1px;
}
.plan-list li.n { color: var(--text-3); }
.plan-list li.n::before { content: '✗'; color: var(--text-3); }

.plan-btn {
  display: block;
  width: 100%;
  padding: 13px;
  border-radius: var(--radius-sm);
  font-family: var(--display);
  font-size: 13px;
  font-weight: 700;
  text-align: center;
  text-decoration: none;
  letter-spacing: -0.01em;
  cursor: pointer;
  border: none;
  transition: all 0.2s;
}
.plan-btn.ghost {
  background: transparent;
  border: 1px solid var(--border-2);
  color: var(--text-2);
}
.plan-btn.ghost:hover { border-color: var(--border-3); color: var(--text); }
.plan-btn.primary {
  background: var(--accent);
  color: #000;
}
.plan-btn.primary:hover {
  box-shadow: 0 6px 24px var(--accent-glow);
  transform: translateY(-1px);
}
.plan-btn.soon {
  background: var(--border);
  color: var(--text-3);
  cursor: not-allowed;
}
.plan-note {
  text-align: center;
  font-size: 12px;
  color: var(--text-3);
  margin-top: 12px;
}

/* ─── CTA ────────────────────────────────────────────────────── */
.cta-section {
  padding: 160px 0;
  position: relative;
  overflow: hidden;
  text-align: center;
}
.cta-glow {
  position: absolute;
  width: 700px; height: 700px;
  left: 50%; top: 50%;
  transform: translate(-50%, -50%);
  background: radial-gradient(ellipse, rgba(0,230,118,0.065) 0%, transparent 65%);
  pointer-events: none;
}
.cta-label {
  font-family: var(--mono);
  font-size: 11px;
  color: var(--accent);
  opacity: 0.6;
  margin-bottom: 20px;
  letter-spacing: 0.06em;
}
.cta-title {
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 800;
  letter-spacing: -0.045em;
  color: var(--text);
  line-height: 1.08;
  margin-bottom: 18px;
}
.cta-sub {
  font-size: 15px;
  color: var(--text-2);
  margin-bottom: 40px;
  line-height: 1.65;
}
.cta-inner { position: relative; z-index: 1; }

/* ─── FOOTER ─────────────────────────────────────────────────── */
.footer {
  border-top: 1px solid var(--border);
  padding: 28px 0;
}
.footer-inner {
  display: flex;
  align-items: center;
  gap: 28px;
  flex-wrap: wrap;
}
.footer-brand {
  display: flex;
  align-items: center;
  gap: 7px;
  font-weight: 700;
  font-size: 16px;
  color: var(--text);
  letter-spacing: -0.03em;
}
.footer-links {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}
.footer-links a {
  text-decoration: none;
  font-size: 12px;
  color: var(--text-3);
  transition: color 0.2s;
}
.footer-links a:hover { color: var(--text-2); }
.footer-copy {
  margin-left: auto;
  font-family: var(--mono);
  font-size: 11px;
  color: var(--text-3);
}

/* ─── ANIMATIONS ─────────────────────────────────────────────── */
@keyframes fadeIn  { from { opacity: 0; } to { opacity: 1; } }
@keyframes fadeUp  { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }
@keyframes fadeInLeft { from { opacity: 0; transform: translateX(-10px); } to { opacity: 1; transform: translateX(0); } }

/* Scroll reveals */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.65s ease, transform 0.65s ease;
  transition-delay: var(--d, 0s);
}
.reveal.in {
  opacity: 1;
  transform: translateY(0);
}

/* ─── RESPONSIVE ─────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .hero-container { grid-template-columns: 1fr; gap: 48px; }
  .hero-widget-wrap { display: flex; justify-content: center; }
  .widget-float { max-width: 420px; width: 100%; }

  .steps { flex-direction: column; gap: 20px; }
  .step-arrow { display: none; }
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-cta { display: none; }
  .nav-burger { display: flex; }

  .hero { padding: 88px 20px 60px; }

  .features-grid {
    grid-template-columns: 1fr;
  }
  .feat-tall, .feat-wide { grid-column: span 1; grid-row: span 1; }
  .feat-wide-inner { flex-direction: column; gap: 20px; }
  .feat-wide-inner > div:first-child { max-width: 100%; }
  .monitor-list { width: 100%; }

  .plans { grid-template-columns: 1fr; }
  .plan-featured { order: -1; }
  .numbers-grid { grid-template-columns: repeat(2, 1fr); }

  .cmp-head, .cmp-row {
    grid-template-columns: 1fr 100px 100px;
    padding: 12px 14px;
    font-size: 12px;
  }
  .cmp-note { display: none; }

  .hero-stats { gap: 16px; }
  .stat-sep { display: none; }

  .footer-inner { flex-direction: column; gap: 14px; align-items: flex-start; }
  .footer-copy { margin-left: 0; }

  .cta-section { padding: 100px 0; }

  .compare-wrap { overflow-x: auto; }
  .compare-table { min-width: 500px; }

  .sec-title { font-size: 28px; }
  .hero-title { font-size: clamp(28px, 8vw, 40px); }
}

@media (max-width: 480px) {
  .hero-actions { flex-direction: column; align-items: center; }
  .btn-primary { width: 100%; justify-content: center; }
}

/* ─── DOC PAGES ─────────────────────────────────────────────── */
.doc-page {
  padding: 140px 0 80px;
  min-height: calc(100vh - 80px);
}
.doc-inner {
  max-width: 760px;
  margin: 0 auto;
}
.doc-title {
  font-family: var(--display);
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 700;
  color: var(--text);
  margin-bottom: 12px;
}
.doc-updated {
  color: var(--text-2);
  font-size: 14px;
  margin-bottom: 40px;
}
.doc-section {
  margin-bottom: 32px;
}
.doc-h2 {
  font-family: var(--display);
  font-size: 18px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 12px;
}
.doc-section p {
  color: var(--text-2);
  font-size: 15px;
  line-height: 1.7;
  margin-bottom: 10px;
}
.doc-section a { color: var(--accent); text-decoration: none; }
.doc-section a:hover { text-decoration: underline; }
.doc-list {
  margin: 8px 0 10px 20px;
  color: var(--text-2);
  font-size: 15px;
  line-height: 1.7;
}
.doc-list li { margin-bottom: 4px; }
.doc-divider {
  border: none;
  border-top: 1px solid var(--border-2);
  margin: 48px 0;
}
.doc-requisites {
  margin-top: 40px;
  padding: 20px 24px;
  background: var(--bg-3);
  border: 1px solid var(--border-2);
  border-radius: 10px;
  color: var(--text-2);
  font-size: 14px;
  line-height: 1.8;
}
.doc-requisites a { color: var(--accent); text-decoration: none; }
.doc-title + .doc-section { margin-top: 32px; }

/* ─── COOKIE BANNER ──────────────────────────────────────────── */
.cookie-banner {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 9999;
  max-width: 360px;
  background: var(--bg-3);
  border: 1px solid var(--border-2);
  border-radius: 12px;
  padding: 16px 20px;
  display: flex;
  align-items: center;
  gap: 16px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.5);
  animation: fadeUp 0.4s ease both;
  transition: opacity 0.3s ease, transform 0.3s ease;
}
.cookie-banner.hidden {
  opacity: 0;
  transform: translateY(16px);
  pointer-events: none;
}
.cookie-text {
  font-size: 13px;
  color: var(--text-2);
  line-height: 1.5;
  flex: 1;
}
.cookie-text a {
  color: var(--accent);
  text-decoration: none;
}
.cookie-text a:hover {
  text-decoration: underline;
}
.cookie-btn {
  flex-shrink: 0;
  background: var(--accent);
  color: #000;
  border: none;
  border-radius: 8px;
  padding: 8px 16px;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: opacity 0.2s;
  white-space: nowrap;
}
.cookie-btn:hover { opacity: 0.85; }

@media (max-width: 480px) {
  .cookie-banner {
    bottom: 0;
    right: 0;
    left: 0;
    max-width: 100%;
    border-radius: 12px 12px 0 0;
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }
  .cookie-btn { width: 100%; text-align: center; padding: 10px; }
}
