*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 78px; }

:root {
  --bg:       transparent;
  --bg2:      transparent;
  --accent:   #5b8fff;
  --accent2:  #a78bfa;
  --accent3:  #34d399;
  --white:    #0f1628;
  --sub:      rgba(15,22,40,0.55);
  --border:   rgba(255,255,255,0.35);
  --border2:  rgba(91,143,255,0.25);
  --red:      #f87171;
  --amber:    #fbbf24;
  /* glass surfaces */
  --glass:    rgba(255,255,255,0.45);
  --glass2:   rgba(255,255,255,0.28);
  --glass3:   rgba(255,255,255,0.18);
  --blur:     blur(18px) saturate(180%);
  --blur2:    blur(28px) saturate(200%);
  /* compat aliases */
  --green:    var(--accent);
  --green-dk: #3d6fe8;
}

body {
  background: linear-gradient(135deg,
    #c7d8ff 0%,
    #ddd6fe 20%,
    #bfdbfe 40%,
    #a5f3fc 60%,
    #d1fae5 80%,
    #e0e7ff 100%
  );
  background-attachment: fixed;
  color: var(--white);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  font-weight: 400;
  overflow-x: hidden;
  line-height: 1;
  min-height: 100vh;
}

/* animated mesh bg */
body::before {
  content: '';
  position: fixed; inset: 0; z-index: -1;
  background:
    radial-gradient(ellipse 80% 60% at 20% 10%, rgba(167,139,250,0.5) 0%, transparent 60%),
    radial-gradient(ellipse 60% 50% at 80% 20%, rgba(147,197,253,0.6) 0%, transparent 55%),
    radial-gradient(ellipse 50% 70% at 10% 70%, rgba(52,211,153,0.35) 0%, transparent 55%),
    radial-gradient(ellipse 70% 50% at 85% 80%, rgba(196,181,253,0.5) 0%, transparent 60%),
    radial-gradient(ellipse 80% 80% at 50% 50%, rgba(224,231,255,0.8) 0%, transparent 80%);
  animation: meshMove 18s ease-in-out infinite alternate;
}
@keyframes meshMove {
  0%   { transform: scale(1) translate(0,0); }
  33%  { transform: scale(1.04) translate(1%,-1%); }
  66%  { transform: scale(0.97) translate(-1%,2%); }
  100% { transform: scale(1.02) translate(2%,-0.5%); }
}

::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-track { background: rgba(255,255,255,0.1); }
::-webkit-scrollbar-thumb { background: rgba(91,143,255,0.4); border-radius: 4px; }

/* ── GLASS MIXIN CLASS ── */
.glass {
  background: var(--glass);
  backdrop-filter: var(--blur);
  -webkit-backdrop-filter: var(--blur);
  border: 1px solid var(--border);
  box-shadow: 0 4px 24px rgba(91,143,255,0.08), inset 0 1px 0 rgba(255,255,255,0.6);
}
.glass2 {
  background: var(--glass2);
  backdrop-filter: var(--blur2);
  -webkit-backdrop-filter: var(--blur2);
  border: 1px solid var(--border);
  box-shadow: 0 8px 40px rgba(91,143,255,0.12), inset 0 1px 0 rgba(255,255,255,0.5);
}

/* ── NAV ── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  height: 60px;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 48px;
  background: rgba(255,255,255,0.5);
  backdrop-filter: blur(24px) saturate(200%);
  -webkit-backdrop-filter: blur(24px) saturate(200%);
  border-bottom: 1px solid rgba(255,255,255,0.5);
  box-shadow: 0 1px 0 rgba(91,143,255,0.1), 0 4px 24px rgba(91,143,255,0.06);
}
.logo {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  font-size: 17px; font-weight: 700; letter-spacing: 0.3px;
  display: flex; align-items: center; gap: 10px;
}
.logo-chip {
  width: 28px; height: 28px; border-radius: 8px;
  background: linear-gradient(135deg, var(--accent), var(--accent2));
  display: flex; align-items: center; justify-content: center;
  font-size: 15px; color: #fff; line-height: 1;
  box-shadow: 0 2px 10px rgba(91,143,255,0.4), inset 0 1px 0 rgba(255,255,255,0.3);
}
.logo em { color: var(--accent); font-style: normal; }

.nav-cta {
  font-size: 14px; font-weight: 500;
  background: var(--glass2);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  color: var(--white);
  padding: 9px 18px; border-radius: 10px;
  text-decoration: none;
  border: 1px solid rgba(255,255,255,0.5);
  box-shadow: 0 2px 8px rgba(91,143,255,0.1), inset 0 1px 0 rgba(255,255,255,0.6);
  cursor: pointer; display: inline-flex; align-items: center; gap: 8px;
  transition: all .2s;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}
.nav-cta:hover {
  background: rgba(255,255,255,0.6);
  box-shadow: 0 4px 16px rgba(91,143,255,0.2), inset 0 1px 0 rgba(255,255,255,0.7);
  transform: translateY(-1px);
}

/* ── HERO ── */
#hero {
  min-height: 100vh;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  text-align: center;
  padding: 100px 32px 80px;
  position: relative;
}

#hero::before {
  content: '';
  position: absolute; top: 0; left: 50%;
  transform: translateX(-50%);
  width: min(900px, 100vw); height: 500px;
  background: radial-gradient(ellipse at 50% 0%,
    rgba(167,139,250,0.25) 0%,
    rgba(147,197,253,0.15) 40%,
    transparent 70%);
  pointer-events: none;
}

.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 14px; letter-spacing: 2.5px; text-transform: uppercase;
  color: var(--accent);
  background: rgba(91,143,255,0.12);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(91,143,255,0.3);
  box-shadow: 0 2px 12px rgba(91,143,255,0.15), inset 0 1px 0 rgba(255,255,255,0.5);
  padding: 7px 18px; border-radius: 100px;
  margin-bottom: 40px;
}
.badge-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 6px var(--accent);
  animation: blink 1.6s step-end infinite;
}
@keyframes blink { 0%,100%{opacity:1} 50%{opacity:0.2} }

h1 {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  font-size: clamp(36px, 5.5vw, 76px);
  font-weight: 400;
  line-height: 1.05; letter-spacing: -1px;
  margin-bottom: 16px;
  white-space: normal;
  background: linear-gradient(135deg, #1a2050 0%, #3d5af0 45%, #7c3aed 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
h1 .g {
  background: linear-gradient(90deg, var(--accent), var(--accent2));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
h1 .d { opacity: .22; }

.hero-sub-head {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  font-style: italic;
  font-size: clamp(18px, 2.5vw, 28px);
  color: var(--sub);
  margin-bottom: 32px;
  -webkit-text-fill-color: initial;
}

.hero-body {
  font-size: 17px; line-height: 1.75;
  color: rgba(15,22,40,0.75);
  max-width: 540px; margin: 0 auto 48px;
  -webkit-text-fill-color: initial;
}

.hero-actions { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; margin-top: 18px; }

.btn-primary {
  font-size: 16px; font-weight: 500;
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent2) 100%);
  color: #fff;
  padding: 16px 40px; border-radius: 14px;
  text-decoration: none; border: none; cursor: pointer;
  display: inline-flex; align-items: center; gap: 10px;
  box-shadow: 0 4px 20px rgba(91,143,255,0.4), 0 1px 0 rgba(255,255,255,0.2) inset;
  transition: all .2s;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  position: relative; overflow: hidden;
}
.btn-primary::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(255,255,255,0.2) 0%, transparent 60%);
  border-radius: inherit;
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(91,143,255,0.5), 0 1px 0 rgba(255,255,255,0.25) inset;
}

.btn-outline {
  font-size: 16px; font-weight: 400;
  background: var(--glass);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  color: var(--white);
  padding: 15px 36px; border-radius: 14px;
  text-decoration: none; cursor: pointer;
  border: 1px solid rgba(255,255,255,0.55);
  box-shadow: 0 2px 12px rgba(91,143,255,0.1), inset 0 1px 0 rgba(255,255,255,0.6);
  transition: all .2s;
}
.btn-outline:hover {
  background: rgba(255,255,255,0.6);
  box-shadow: 0 4px 20px rgba(91,143,255,0.18), inset 0 1px 0 rgba(255,255,255,0.7);
  transform: translateY(-1px);
}

/* ── STORE BADGES ── */
.store-badges { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }
.store-badge {
  display: inline-flex; align-items: center; gap: 11px;
  background: #0f1628; color: #fff;
  padding: 10px 20px; border-radius: 13px;
  text-decoration: none;
  border: 1px solid rgba(255,255,255,0.14);
  box-shadow: 0 4px 18px rgba(15,22,40,0.20);
  transition: transform .2s, box-shadow .2s;
}
.store-badge:hover { transform: translateY(-2px); box-shadow: 0 8px 26px rgba(15,22,40,0.30); }
.store-badge .sb-ico { flex-shrink: 0; }
.store-badge .sb-text { display: flex; flex-direction: column; line-height: 1.15; text-align: left; }
.store-badge .sb-small { font-size: 14px; letter-spacing: .4px; opacity: .82; text-transform: uppercase; }
.store-badge .sb-big { font-size: 16px; font-weight: 600; font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif; letter-spacing: .2px; }
@media (max-width: 600px) { .store-badge { flex: 1 1 auto; justify-content: center; min-width: 140px; } }

/* ── DOWNLOAD GROUPS (official vs AI) ── */
.dl-groups { display: flex; align-items: stretch; justify-content: center; gap: 32px; flex-wrap: wrap; margin-top: 18px; }
.dl-group { display: flex; flex-direction: column; align-items: center; gap: 14px; }
.dl-group-label {
  font-size: 14px; letter-spacing: 1.5px; text-transform: uppercase;
  font-weight: 600; color: var(--accent);
  display: inline-flex; align-items: center; gap: 9px;
}
.dl-group-label::before, .dl-group-label::after { content: ""; width: 16px; height: 1px; background: rgba(91,143,255,0.45); }
.dl-divider { width: 1px; align-self: stretch; background: linear-gradient(to bottom, transparent, rgba(91,143,255,0.3) 20%, rgba(91,143,255,0.3) 80%, transparent); }
.ai-badges { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }
.ai-dl {
  position: relative; display: inline-flex; align-items: center; gap: 12px;
  padding: 11px 22px 11px 18px; border-radius: 13px; text-decoration: none; color: #fff;
  background: linear-gradient(135deg, var(--accent), var(--accent2));
  box-shadow: 0 4px 18px rgba(91,143,255,0.32); transition: transform .2s, box-shadow .2s;
}
.ai-dl:hover { transform: translateY(-2px); box-shadow: 0 8px 26px rgba(91,143,255,0.45); }
.ai-dl--android { background: linear-gradient(135deg, #3ddc84, #1fb866); box-shadow: 0 4px 18px rgba(31,184,102,0.4); }
.ai-dl--android:hover { box-shadow: 0 8px 26px rgba(31,184,102,0.52); }
.ai-dl--windows { background: linear-gradient(135deg, #29a8f5, #0078d4); box-shadow: 0 4px 18px rgba(0,120,212,0.4); }
.ai-dl--windows:hover { box-shadow: 0 8px 26px rgba(0,120,212,0.52); }
.ai-dl-ico { flex-shrink: 0; }
.ai-dl-chip {
  flex-shrink: 0; display: inline-flex; align-items: center; justify-content: center;
}
.ai-dl-text { display: flex; flex-direction: column; line-height: 1.15; text-align: left; }
.ai-dl-small { font-size: 14px; opacity: .9; }
.ai-dl-big { font-size: 16px; font-weight: 600; letter-spacing: .2px; }
.ai-tag {
  position: absolute; top: -9px; right: -8px;
  background: linear-gradient(135deg, #fbbf24, #f59e0b); color: #2a1c02;
  font-size: 14px; font-weight: 700; line-height: 1; padding: 4px 8px; border-radius: 8px;
  box-shadow: 0 3px 10px rgba(245,158,11,0.4); letter-spacing: .3px;
}
@media (max-width: 760px) {
  .dl-groups { flex-direction: column; gap: 22px; align-items: stretch; }
  .dl-divider { width: 100%; height: 1px; background: linear-gradient(to right, transparent, rgba(91,143,255,0.3) 20%, rgba(91,143,255,0.3) 80%, transparent); }
  .ai-dl { flex: 1 1 auto; justify-content: center; min-width: 150px; }
}

/* ── STATS STRIP ── */
.stats {
  display: grid; grid-template-columns: repeat(6,1fr);
  background: rgba(255,255,255,0.35);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border-top: 1px solid rgba(255,255,255,0.5);
  border-bottom: 1px solid rgba(255,255,255,0.4);
  box-shadow: 0 4px 32px rgba(91,143,255,0.07);
}
@media(min-width:861px) and (max-width:1100px){ .stats { grid-template-columns: repeat(3,1fr); } }
.stat {
  padding: 32px 22px;
  border-right: 1px solid rgba(255,255,255,0.4);
}
.stat:last-child { border-right: none; }
.stat-n {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  font-size: 38px; font-weight: 400; line-height: 1;
  color: var(--white); margin-bottom: 6px;
}
.stat-n em {
  background: linear-gradient(90deg, var(--accent), var(--accent2));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-style: normal;
}
.stat-l { font-size: 14px; color: var(--sub); }

/* ── SECTION BASE ── */
.section { padding: clamp(56px, 8vw, 96px) clamp(16px, 4vw, 48px); }
.container { max-width: 1160px; margin: 0 auto; }

.eyebrow {
  font-size: 14px; letter-spacing: 3px; text-transform: uppercase;
  color: var(--accent); margin-bottom: 16px; font-weight: 600;
}

.section-h {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 400;
  line-height: 1.05; letter-spacing: -0.5px;
  margin-bottom: 24px;
  background: linear-gradient(135deg, #1a2050 0%, #3d5af0 60%, #7c3aed 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.section-h.section-h--oneline {
  font-size: clamp(14px, 4.15vw, 42px);
  white-space: nowrap;
  letter-spacing: -0.6px;
}
.section-h .it {
  font-style: italic; font-size: .85em;
  -webkit-text-fill-color: initial;
  color: var(--sub); font-weight: 300;
}

.section-p {
  font-size: 17px; line-height: 1.75;
  color: rgba(15,22,40,0.72); max-width: 500px;
}

/* ── HUD SECTION ── */
#hud {
  background: rgba(255,255,255,0.2);
  backdrop-filter: blur(8px);
  border-top: 1px solid rgba(255,255,255,0.4);
  border-bottom: 1px solid rgba(255,255,255,0.4);
}

.two-col {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 80px; align-items: center;
}

.checklist { margin-top: 36px; display: flex; flex-direction: column; gap: 14px; }
.check-row { display: flex; align-items: center; gap: 14px; }
.check-ico {
  width: 28px; height: 28px; flex-shrink: 0;
  border-radius: 8px;
  background: linear-gradient(135deg, var(--accent), var(--accent2));
  display: flex; align-items: center; justify-content: center;
  font-size: 14px; color: #fff; font-weight: 700;
  box-shadow: 0 2px 8px rgba(91,143,255,0.35), inset 0 1px 0 rgba(255,255,255,0.25);
}
.check-row span { font-size: 15px; color: rgba(15,22,40,0.75); }

/* ── PHONE FRAMES ── */
.screens-wrap {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  gap: 0;
  padding: 20px 0 32px;
  max-width: 100%;
  overflow: hidden;
}

.phone-frame {
  width: clamp(130px, 30vw, 200px);
  border-radius: 28px;
  overflow: hidden;
  border: 1.5px solid rgba(255,255,255,0.6);
  background: rgba(255,255,255,0.15);
  box-shadow: 0 24px 60px rgba(91,143,255,0.2), 0 4px 20px rgba(0,0,0,0.08), inset 0 1px 0 rgba(255,255,255,0.7);
  position: relative;
  transition: transform .3s;
}
.phone-frame img {
  width: 100%;
  display: block;
  aspect-ratio: 9/16;
  object-fit: cover;
}
.phone-back {
  transform: rotate(-5deg) translateX(20px);
  z-index: 1;
  opacity: .82;
}
.phone-front {
  transform: rotate(3deg) translateX(-10px);
  z-index: 2;
}
.phone-frame:hover { transform: rotate(0) translateY(-6px) !important; opacity: 1 !important; z-index: 3; }

.phone-label {
  position: absolute; bottom: 0; left: 0; right: 0;
  background: rgba(255,255,255,0.5);
  backdrop-filter: blur(8px);
  font-size: 14px; letter-spacing: 1px; text-transform: uppercase;
  color: var(--sub); text-align: center;
  padding: 8px;
  border-top: 1px solid rgba(255,255,255,0.5);
}

.ai-badge {
  position: absolute;
  top: 10px; right: -10px;
  display: flex; align-items: center; gap: 7px;
  background: rgba(255,255,255,0.65);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(255,255,255,0.7);
  border-radius: 100px;
  padding: 7px 14px;
  font-size: 14px; font-weight: 500;
  color: var(--accent);
  white-space: nowrap;
  z-index: 10;
  box-shadow: 0 4px 20px rgba(91,143,255,0.2), inset 0 1px 0 rgba(255,255,255,0.8);
}
.ai-badge-dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 6px var(--accent);
  animation: blink 1.4s step-end infinite;
}

/* ── HUD CARD ── */
.hud-card {
  border: 1px solid rgba(255,255,255,0.5);
  border-radius: 18px; overflow: hidden;
  background: rgba(255,255,255,0.5);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  box-shadow: 0 8px 40px rgba(91,143,255,0.12), inset 0 1px 0 rgba(255,255,255,0.7);
}
.hud-bar {
  display: flex; align-items: center; justify-content: space-between;
  padding: 12px 18px;
  border-bottom: 1px solid rgba(255,255,255,0.4);
  background: rgba(255,255,255,0.3);
}
.hud-dots { display: flex; gap: 6px; }
.hud-dot { width: 10px; height: 10px; border-radius: 50%; }
.hud-dot.r{background:#ff5f57} .hud-dot.y{background:#febc2e} .hud-dot.g{background:#28c840}
.hud-title { font-size: 14px; letter-spacing: 1px; text-transform: uppercase; color: var(--sub); }
.live {
  display: flex; align-items: center; gap: 5px;
  font-size: 14px; letter-spacing: 1px; color: var(--accent);
  border: 1px solid rgba(91,143,255,0.3);
  background: rgba(91,143,255,0.08);
  padding: 3px 10px; border-radius: 20px;
}
.live-dot { width: 5px; height: 5px; border-radius: 50%; background: var(--accent); box-shadow: 0 0 4px var(--accent); animation: blink 1.4s step-end infinite; }

.hud-body { padding: 18px; display: flex; flex-direction: column; gap: 14px; }

.cards-row { display: flex; gap: 7px; align-items: flex-end; }
.card {
  width: 44px; height: 62px; border-radius: 8px;
  background: rgba(255,255,255,0.85);
  backdrop-filter: blur(8px);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  font-size: 15px; font-weight: 700; color: #111;
  line-height: 1; border: 1px solid rgba(255,255,255,0.7);
  box-shadow: 0 3px 12px rgba(91,143,255,0.15), inset 0 1px 0 rgba(255,255,255,0.9);
}
.card .s { font-size: 14px; }
.card.r { color: #cc2222; }
.card.back {
  background: linear-gradient(140deg, rgba(167,139,250,0.7), rgba(147,197,253,0.6));
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.5);
  color: transparent; position: relative;
}
.card.back::after { content:'◆'; position:absolute; color:rgba(255,255,255,.5); font-size:20px; }
.sep { width: 1px; height: 38px; background: rgba(255,255,255,0.4); margin: 0 3px; align-self: center; }
.board-lbl { font-size: 14px; letter-spacing: 1px; text-transform: uppercase; color: var(--sub); writing-mode: vertical-rl; }

.data-rows { display: flex; flex-direction: column; }
.data-row {
  display: flex; justify-content: space-between; align-items: center;
  padding: 8px 0; border-bottom: 1px solid rgba(255,255,255,0.35);
  font-size: 14px;
}
.data-row:last-child { border: none; }
.data-row .k { color: var(--sub); }
.data-row .v { font-weight: 500; color: var(--white); }
.v.pos { color: #1a6ed8; }
.v.warn { color: var(--amber); }
.v.neg { color: var(--red); }

.eq-bar { display: flex; flex-direction: column; gap: 7px; }
.eq-head { display: flex; justify-content: space-between; font-size: 14px; color: var(--sub); }
.eq-head strong { color: var(--accent); font-weight: 500; }
.eq-track { height: 4px; background: rgba(91,143,255,0.15); border-radius: 2px; overflow: hidden; }
.eq-fill { height: 100%; width: 73%; background: linear-gradient(90deg, var(--accent), var(--accent2)); border-radius: 2px; animation: grow .8s ease-out both .3s; }
@keyframes grow { from{width:0} }

.rec {
  background: rgba(91,143,255,0.1);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(91,143,255,0.25);
  border-radius: 12px; padding: 14px 16px;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.5);
}
.rec-label { font-size: 14px; letter-spacing: 2px; text-transform: uppercase; color: var(--accent); margin-bottom: 6px; }
.rec-action { font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif; font-size: 22px; font-weight: 400; letter-spacing: 0; color: var(--white); margin-bottom: 5px; }
.rec-why { font-size: 14px; line-height: 1.6; color: var(--sub); }

/* ── FEATURES ── */
#features {
  background: rgba(255,255,255,0.15);
  border-top: 1px solid rgba(255,255,255,0.4);
}

.feat-grid {
  display: grid; grid-template-columns: repeat(3,1fr);
  border: 1px solid rgba(255,255,255,0.45);
  border-radius: 20px; overflow: hidden;
  margin-top: 56px;
  gap: 1px;
  background: rgba(255,255,255,0.2);
  backdrop-filter: blur(4px);
  box-shadow: 0 8px 48px rgba(91,143,255,0.1), inset 0 1px 0 rgba(255,255,255,0.6);
}
.feat {
  background: rgba(255,255,255,0.35);
  backdrop-filter: blur(16px) saturate(180%);
  -webkit-backdrop-filter: blur(16px) saturate(180%);
  padding: 40px 32px;
  position: relative;
  transition: background .25s;
}
.feat:hover {
  background: rgba(255,255,255,0.55);
}
.feat-icon { margin-bottom: 20px; display: block; line-height: 0; }
.feat-icon svg { display: block; }

/* Telegram button */
.btn-tg { display: inline-flex; align-items: center; gap: 10px; }
.btn-tg svg { flex-shrink: 0; }
.tg-icon {
  width: 22px; height: 22px; border-radius: 50%;
  background: #2AABEE;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 1px 4px rgba(42,171,238,0.4);
}
.feat-name { font-size: 17px; font-weight: 500; color: var(--white); margin-bottom: 10px; }
.feat-desc { font-size: 14px; line-height: 1.75; color: var(--sub); }
.feat-tag {
  display: inline-block; margin-top: 16px;
  font-size: 14px; letter-spacing: 1.5px; text-transform: uppercase;
  color: var(--accent);
  background: rgba(91,143,255,0.1);
  border: 1px solid rgba(91,143,255,0.25);
  padding: 3px 10px; border-radius: 6px;
}

/* ── HOW IT WORKS ── */
#how {
  background: rgba(255,255,255,0.2);
  border-top: 1px solid rgba(255,255,255,0.4);
  border-bottom: 1px solid rgba(255,255,255,0.4);
  backdrop-filter: blur(4px);
}

.steps { margin-top: 56px; display: flex; flex-direction: column; }
.step {
  display: grid; grid-template-columns: 64px 1fr;
  gap: 28px; padding: 32px 0;
  border-bottom: 1px solid rgba(255,255,255,0.4);
}
.step:last-child { border: none; }
.step-n {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  font-size: 24px; font-weight: 400; width: 64px; height: 64px;
  display: flex; align-items: center; justify-content: center;
  background: rgba(255,255,255,0.45);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.55);
  border-radius: 14px;
  color: var(--sub); flex-shrink: 0;
  transition: all .25s;
  box-shadow: 0 2px 12px rgba(91,143,255,0.08), inset 0 1px 0 rgba(255,255,255,0.7);
}
.step:hover .step-n {
  background: rgba(91,143,255,0.12);
  border-color: rgba(91,143,255,0.3);
  color: var(--accent);
  box-shadow: 0 4px 20px rgba(91,143,255,0.15), inset 0 1px 0 rgba(255,255,255,0.6);
}
.step-title { font-size: 17px; font-weight: 500; color: var(--white); margin-bottom: 8px; }
.step-body { font-size: 14px; line-height: 1.75; color: var(--sub); }

/* ── INSTALL INSTRUCTIONS (tabs) ── */
.how-intro { font-size: 15px; line-height: 1.7; color: var(--sub); margin-top: 14px; max-width: 560px; margin-left: auto; margin-right: auto; }
.instr { text-align: center; margin-top: 40px; }
.instr-radio { position: absolute; opacity: 0; width: 0; height: 0; pointer-events: none; }
.instr-tabs {
  display: inline-flex; gap: 6px; padding: 6px; border-radius: 16px;
  background: var(--glass); border: 1px solid var(--border);
  backdrop-filter: blur(12px); box-shadow: inset 0 1px 0 rgba(255,255,255,0.6);
}
.instr-tab {
  cursor: pointer; padding: 11px 28px; border-radius: 11px;
  font-size: 14px; font-weight: 500; color: var(--sub);
  transition: all .2s; user-select: none;
}
.instr-tab:hover { color: var(--white); }
#tab-android:checked ~ .instr-tabs label[for="tab-android"],
#tab-emulator:checked ~ .instr-tabs label[for="tab-emulator"] {
  background: linear-gradient(135deg, var(--accent), var(--accent2)); color: #fff;
  box-shadow: 0 4px 16px rgba(91,143,255,0.35);
}
.instr-panel { display: none; text-align: left; }
#tab-android:checked ~ .instr-panel--android { display: block; }
#tab-emulator:checked ~ .instr-panel--emulator { display: block; }
.instr-panel .steps { margin-top: 28px; }
.instr-list { list-style: none; margin-top: 4px; }
.instr-list li { position: relative; padding-left: 18px; margin: 6px 0; font-size: 14px; line-height: 1.6; color: var(--sub); }
.instr-list li::before { content: ""; position: absolute; left: 0; top: 8px; width: 6px; height: 6px; border-radius: 50%; background: var(--accent); }
.instr-dl {
  display: inline-flex; align-items: center; gap: 8px; margin-top: 14px;
  padding: 10px 20px; border-radius: 11px; font-size: 14px; font-weight: 500;
  text-decoration: none; color: #fff;
  background: linear-gradient(135deg, var(--accent), var(--accent2));
  box-shadow: 0 3px 14px rgba(91,143,255,0.3); transition: all .2s;
}
.instr-dl:hover { transform: translateY(-1px); box-shadow: 0 6px 20px rgba(91,143,255,0.42); }
.instr-note {
  margin-top: 12px; padding: 12px 16px; border-radius: 12px;
  background: rgba(91,143,255,0.10); border: 1px solid rgba(91,143,255,0.22);
  font-size: 14px; line-height: 1.65; color: var(--sub);
}
.instr-note strong { color: var(--white); font-weight: 600; }
.instr-done {
  margin-top: 32px; padding: 24px; border-radius: 16px; text-align: center;
  background: var(--glass); border: 1px solid var(--border);
  backdrop-filter: blur(12px); box-shadow: inset 0 1px 0 rgba(255,255,255,0.6);
}
.instr-done-h { font-size: 18px; font-weight: 600; color: var(--white); margin-bottom: 8px; }
.instr-done p { font-size: 14px; line-height: 1.7; color: var(--sub); margin-bottom: 16px; }

/* ── REVIEWS ── */
#reviews {
  background: rgba(255,255,255,0.1);
  border-top: 1px solid rgba(255,255,255,0.35);
}

.review-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 16px; margin-top: 56px; }
.review {
  background: rgba(255,255,255,0.45);
  backdrop-filter: blur(18px) saturate(180%);
  -webkit-backdrop-filter: blur(18px) saturate(180%);
  border: 1px solid rgba(255,255,255,0.55);
  border-radius: 18px; padding: 28px;
  box-shadow: 0 4px 24px rgba(91,143,255,0.08), inset 0 1px 0 rgba(255,255,255,0.7);
  transition: all .25s;
}
.review:hover {
  background: rgba(255,255,255,0.62);
  box-shadow: 0 8px 36px rgba(91,143,255,0.14), inset 0 1px 0 rgba(255,255,255,0.8);
  transform: translateY(-2px);
}
.stars { color: var(--accent); font-size: 14px; letter-spacing: 2px; margin-bottom: 14px; }
.review-txt { font-size: 15px; line-height: 1.75; color: rgba(15,22,40,0.75); margin-bottom: 20px; font-style: italic; }
.reviewer { display: flex; align-items: center; gap: 12px; }
.avatar {
  width: 36px; height: 36px; border-radius: 50%;
  background: rgba(91,143,255,0.15);
  border: 1px solid rgba(91,143,255,0.25);
  backdrop-filter: blur(8px);
  display: flex; align-items: center; justify-content: center;
  font-size: 15px; font-weight: 600; color: var(--accent);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif; text-transform: uppercase; letter-spacing: .5px;
}
.rev-name { font-size: 14px; font-weight: 500; color: var(--white); }
.rev-meta { font-size: 14px; color: var(--sub); margin-top: 2px; }

/* ── CTA ── */
#cta {
  background: rgba(255,255,255,0.25);
  backdrop-filter: blur(8px);
  border-top: 1px solid rgba(255,255,255,0.4);
  padding: clamp(60px, 8vw, 100px) clamp(16px, 4vw, 48px);
  text-align: center;
}
.cta-h {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  font-size: clamp(36px, 5.5vw, 72px);
  font-weight: 400;
  line-height: 1.05; letter-spacing: -0.5px;
  margin-bottom: 20px;
  background: linear-gradient(135deg, #1a2050, #3d5af0, #7c3aed);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.cta-h .g {
  background: linear-gradient(90deg, var(--accent), var(--accent2));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.cta-p { font-size: 17px; line-height: 1.7; color: rgba(15,22,40,0.7); margin-bottom: 48px; }

.waitlist {
  display: flex; gap: 8px; max-width: 440px; margin: 0 auto;
  background: rgba(255,255,255,0.55);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(255,255,255,0.6);
  box-shadow: 0 4px 20px rgba(91,143,255,0.1), inset 0 1px 0 rgba(255,255,255,0.8);
  border-radius: 14px; padding: 6px 6px 6px 20px;
}
.waitlist input {
  flex: 1; background: transparent; border: none; outline: none;
  font-size: 15px; color: var(--white); font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}
.waitlist input::placeholder { color: var(--sub); }
.waitlist button {
  font-size: 14px; font-weight: 500;
  background: linear-gradient(135deg, var(--accent), var(--accent2));
  color: #fff;
  padding: 12px 24px; border-radius: 10px;
  border: none; cursor: pointer; white-space: nowrap;
  transition: all .2s;
  box-shadow: 0 2px 10px rgba(91,143,255,0.3), inset 0 1px 0 rgba(255,255,255,0.2);
}
.waitlist button:hover { opacity: 0.9; transform: translateY(-1px); }
.cta-note { font-size: 14px; color: var(--sub); margin-top: 16px; }

.cta-buttons {
  display: flex; gap: 12px; justify-content: center;
  flex-wrap: wrap; margin-bottom: 0; margin-top: 18px;
}

.nav-right { display: flex; align-items: center; gap: 10px; }
.nav-download {
  display: inline-flex; align-items: center; gap: 7px;
  font-size: 14px; font-weight: 500;
  color: #fff;
  background: linear-gradient(135deg, var(--accent), var(--accent2));
  padding: 9px 18px; border-radius: 10px;
  text-decoration: none; border: none;
  transition: all .2s;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  box-shadow: 0 2px 10px rgba(91,143,255,0.35), inset 0 1px 0 rgba(255,255,255,0.2);
}
.nav-download:hover { opacity: 0.9; transform: translateY(-1px); }

.btn-download {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 15px; font-weight: 500;
  color: #fff;
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent2) 100%);
  padding: 16px 40px; border-radius: 14px;
  text-decoration: none; cursor: pointer;
  border: none;
  transition: all .25s;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  box-shadow: 0 4px 20px rgba(91,143,255,0.4), inset 0 1px 0 rgba(255,255,255,0.2);
  position: relative; overflow: hidden;
}
.btn-download::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(255,255,255,0.18) 0%, transparent 60%);
}
.btn-download:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(91,143,255,0.5), inset 0 1px 0 rgba(255,255,255,0.25);
}

/* ── FAQ ── */
.faq-list { max-width: 760px; margin: 0 auto; display: flex; flex-direction: column; gap: 12px; }
.faq-item {
  background: var(--glass); border: 1px solid var(--border); border-radius: 14px;
  backdrop-filter: blur(12px); overflow: hidden; transition: border-color .2s;
}
.faq-item[open] { border-color: rgba(91,143,255,0.45); }
.faq-item summary {
  list-style: none; cursor: pointer; padding: 18px 22px;
  font-size: 16px; font-weight: 500; color: var(--white);
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: ""; flex-shrink: 0; width: 11px; height: 11px;
  border-right: 2px solid var(--accent); border-bottom: 2px solid var(--accent);
  transform: rotate(45deg); transition: transform .25s; margin-top: -4px;
}
.faq-item[open] summary::after { transform: rotate(225deg); margin-top: 2px; }
.faq-item .faq-a { padding: 0 22px 18px; font-size: 15px; line-height: 1.7; color: var(--sub); }

/* ── LEGAL (privacy / terms) ── */
.legal { background: var(--bg2); border-top: 1px solid var(--border); padding: 64px 24px; }
.legal-in { max-width: 760px; margin: 0 auto; display: flex; flex-direction: column; gap: 40px; }
.legal-block h2 { font-size: 22px; font-weight: 600; color: var(--white); margin-bottom: 14px; letter-spacing: -0.3px; }
.legal-block p { font-size: 15px; line-height: 1.75; color: var(--sub); margin-bottom: 12px; }
.legal-block p:last-child { margin-bottom: 0; }
.legal-block a { color: var(--accent); text-decoration: none; }
.legal-block a:hover { text-decoration: underline; }

/* ── FOOTER ── */
footer {
  background: rgba(255,255,255,0.3);
  backdrop-filter: blur(20px);
  border-top: 1px solid rgba(255,255,255,0.45);
  padding: 32px 48px;
  display: grid; grid-template-columns: 1fr auto 1fr; align-items: center;
  gap: 20px;
}
.foot-logo { font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif; font-size: 18px; font-weight: 700; letter-spacing: 0.5px; justify-self: start; }
.foot-logo em { color: var(--accent); font-style: normal; }
.foot-links { display: flex; gap: 28px; justify-self: center; }
.foot-copy { justify-self: end; text-align: right; }
.foot-links a { font-size: 14px; color: var(--sub); text-decoration: none; transition: color .2s; }
.foot-links a:hover { color: var(--white); }
.foot-copy { font-size: 14px; color: var(--sub); }

/* ── REVEAL ── */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .6s ease, transform .6s ease; }
.reveal.on { opacity: 1; transform: none; }

.hero-in > * { opacity: 0; transform: translateY(20px); animation: up .7s ease both; }
.hero-in > :nth-child(1){animation-delay:.05s}
.hero-in > :nth-child(2){animation-delay:.18s}
.hero-in > :nth-child(3){animation-delay:.3s}
.hero-in > :nth-child(4){animation-delay:.42s}
.hero-in > :nth-child(5){animation-delay:.54s}
@keyframes up { to { opacity:1; transform:none; } }

/* ── MOBILE ── */
@media(max-width:860px){
  nav { padding: 0 16px; }
  .nav-download { display: none; }
  .section { padding: 56px 16px; }
  #cta { padding: 72px 16px; }
  #hero { padding: 90px 16px 56px; }
  h1 { font-size: clamp(26px, 7vw, 44px); letter-spacing: -0.5px; }
  .hero-sub-head { font-size: clamp(15px, 4vw, 20px); }
  .hero-body { font-size: 15px; }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .hero-actions a { justify-content: center; }
  .stats { grid-template-columns: 1fr 1fr; }
  .stat { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.35); padding: 24px 20px; }
  .stat-n { font-size: 36px; }
  .two-col { grid-template-columns: 1fr; gap: 36px; }
  .screens-wrap { padding: 10px 0 20px; }
  .feat-grid { grid-template-columns: 1fr; }
  .review-grid { grid-template-columns: 1fr; }
  .articles-grid { grid-template-columns: 1fr; border-radius: 12px; }
  .article-card--small .article-img-wrap { aspect-ratio: 16/7; }
  .section-h { font-size: clamp(28px, 7vw, 48px); }
  .cta-h { font-size: clamp(28px, 7vw, 48px); }
  footer { grid-template-columns: 1fr; justify-items: center; text-align: center; padding: 28px 16px; gap: 16px; }
  .foot-logo, .foot-copy { justify-self: center; text-align: center; }
  .foot-links { justify-content: center; flex-wrap: wrap; gap: 16px; }
  .cta-buttons { flex-direction: column; align-items: stretch; }
  .cta-buttons a { justify-content: center; }
  .video-wrap { margin-top: 32px; }
}

@media(max-width:480px){
  h1 { font-size: clamp(22px, 8vw, 36px); }
  .stat-n { font-size: 30px; }
  .hero-badge { font-size: 14px; letter-spacing: 1px; padding: 5px 12px; }
  .article-body { padding: 18px 20px 20px; }
  .article-card--featured .article-title { font-size: 18px; }
  .review-txt { font-size: 14px; }
  .feat { padding: 28px 20px; }
  .step { gap: 16px; }
}
/* ── VIDEO DEMO ── */
.video-wrap {
  margin-top: 48px;
  max-width: 760px;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
}
.video-head {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  font-size: clamp(22px, 3.2vw, 34px); font-weight: 600;
  letter-spacing: -0.3px; text-align: center; margin: 0 0 20px;
  background: linear-gradient(135deg, #1a2050 0%, #3d5af0 60%, #7c3aed 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}

.video-thumb {
  position: relative;
  width: 100%; aspect-ratio: 16/9;
  border-radius: 14px; overflow: hidden;
  border: 1px solid var(--border);
  cursor: pointer; display: block;
  background: #000;
  padding: 0;
  transition: border-color .25s, transform .25s;
}
.video-thumb:hover { border-color: var(--green); transform: translateY(-3px); }
.video-thumb:hover .video-play { background: var(--green); color: #000; transform: translate(-50%,-50%) scale(1.1); }

.video-cover {
  width: 100%; height: 100%;
  object-fit: cover; display: block;
  opacity: .7;
  transition: opacity .25s;
}
.video-thumb:hover .video-cover { opacity: .9; }

.video-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(79,124,255,0.25) 0%, transparent 50%);
}

.video-play {
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%,-50%);
  width: 64px; height: 64px; border-radius: 50%;
  background: rgba(255,255,255,0.7);
  backdrop-filter: blur(8px);
  border: 2px solid rgba(79,124,255,0.4);
  display: flex; align-items: center; justify-content: center;
  color: var(--green); font-size: 22px;
  transition: all .25s;
}

.video-meta {
  position: absolute; bottom: 16px; left: 20px; right: 20px;
  display: flex; align-items: center; justify-content: space-between;
}
.video-tag {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 14px; letter-spacing: 1.5px; text-transform: uppercase;
  color: var(--green); background: rgba(255,255,255,0.75);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(79,124,255,0.4);
  padding: 5px 12px; border-radius: 20px;
}
.video-duration {
  font-size: 14px; color: var(--sub);
  background: rgba(255,255,255,0.75);
  backdrop-filter: blur(8px);
  padding: 5px 12px; border-radius: 20px;
}

/* ── ROI CHART ── */
.chart-wrap { max-width: 760px; margin: 0 auto; }
.chart-bars {
  display: flex; align-items: flex-end; justify-content: center;
  gap: 20px; height: 280px; padding-bottom: 0;
}
.chart-bar-group { display: flex; flex-direction: column; align-items: center; gap: 8px; flex: 1; max-width: 90px; }
.bar-label-top { font-size: 14px; font-weight: 600; color: var(--white); }
.bar-label-bot { font-size: 14px; color: var(--sub); text-align: center; }

.chart-bar {
  width: 100%; height: var(--h);
  background: rgba(255,255,255,0.3); backdrop-filter: blur(4px);
  border: 1px solid rgba(255,255,255,0.4);
  border-radius: 8px 8px 0 0;
  overflow: hidden; position: relative;
}
.bar-fill {
  position: absolute; bottom: 0; left: 0; right: 0;
  background: linear-gradient(to top, var(--accent), var(--accent2));
  border-radius: 6px 6px 0 0;
  animation: bar-grow .8s cubic-bezier(.22,1,.36,1) both;
  animation-play-state: paused;
}
.bar-fill-neg {
  position: absolute; bottom: 0; left: 0; right: 0; height: 100%;
  background: linear-gradient(to top, #f87171, rgba(248,113,113,0.5));
  border-radius: 6px 6px 0 0;
}
.bar-fill-gold { background: linear-gradient(to top, var(--accent), var(--accent2)) !important; }
.chart-bar.bar-highlight { border: 1.5px solid rgba(91,143,255,0.4); border-bottom: none; box-shadow: 0 0 20px rgba(91,143,255,0.15); }
.chart-bar-group:hover .bar-label-top { color: var(--accent); }
@keyframes bar-grow { from { height: 0; } to { height: 100%; } }

.chart-wrap.on .bar-fill { animation-play-state: running; }

.chart-baseline { height: 1px; background: rgba(255,255,255,0.4); margin: 0; }
.chart-note { font-size: 14px; color: var(--sub); text-align: center; margin-top: 16px; }

/* KPI row */
.kpi-row { display: grid; grid-template-columns: repeat(4,1fr); gap: 2px; margin-top: 48px; background: rgba(255,255,255,0.2); border-radius: 16px; overflow: hidden; border: 1.5px solid rgba(255,255,255,0.45); box-shadow: 0 4px 24px rgba(91,143,255,0.08), inset 0 1px 0 rgba(255,255,255,0.5); }
.kpi-card { background: rgba(255,255,255,0.38); backdrop-filter: blur(14px); padding: 28px 24px; display: flex; flex-direction: column; gap: 8px; transition: background .25s; }
.kpi-card:hover { background: rgba(255,255,255,0.55); }
.kpi-n { font-size: 32px; font-weight: 700; color: var(--white); line-height: 1; }
.kpi-l { font-size: 14px; color: var(--sub); line-height: 1.4; }

/* ── AI DECISION FLOW ── */
.flow-grid {
  display: flex; align-items: stretch;
  gap: 0; flex-wrap: nowrap;
  overflow-x: auto; padding-bottom: 8px;
  -webkit-overflow-scrolling: touch;
}
.flow-step {
  flex: 1; min-width: 140px;
  background: rgba(255,255,255,0.35); backdrop-filter: blur(14px);
  border: 1px solid rgba(255,255,255,0.5);
  border-radius: 16px; padding: 28px 20px;
  display: flex; flex-direction: column; gap: 10px;
  transition: all .25s;
  position: relative;
  box-shadow: 0 2px 12px rgba(91,143,255,0.06), inset 0 1px 0 rgba(255,255,255,0.6);
}
.flow-step:hover { background: rgba(255,255,255,0.55); border-color: rgba(91,143,255,0.3); box-shadow: 0 6px 24px rgba(91,143,255,0.12), inset 0 1px 0 rgba(255,255,255,0.7); }
.flow-step-final { border-color: rgba(91,143,255,0.3); background: rgba(91,143,255,0.08); }
.flow-icon {
  width: 48px; height: 48px; border-radius: 12px;
  background: rgba(91,143,255,0.12); border: 1px solid rgba(91,143,255,0.2); backdrop-filter: blur(8px);
  display: flex; align-items: center; justify-content: center;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.5);
}
.flow-icon-final { background: rgba(91,143,255,0.2); border-color: rgba(91,143,255,0.4); }
.flow-num { font-size: 14px; font-weight: 600; color: var(--accent); letter-spacing: 1px; }
.flow-title { font-size: 14px; font-weight: 600; color: var(--white); }
.flow-desc { font-size: 14px; color: var(--sub); line-height: 1.65; }

.flow-arrow {
  flex-shrink: 0; width: 34px; height: 34px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  background: rgba(91,143,255,0.16);
  border: 1px solid rgba(91,143,255,0.34);
  color: var(--accent);
  margin-top: 35px;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.5), 0 2px 8px rgba(91,143,255,0.12);
}
.flow-arrow svg { width: 18px; height: 18px; display: block; }

/* Timing bar */
.timing-bar { max-width: 600px; margin: 48px auto 0; text-align: center; }
.timing-label { font-size: 14px; letter-spacing: 1.5px; text-transform: uppercase; color: var(--sub); margin-bottom: 12px; }
.timing-track { height: 8px; background: rgba(255,255,255,0.4); backdrop-filter: blur(4px); border: 1px solid rgba(255,255,255,0.5); border-radius: 6px; overflow: hidden; position: relative; }
.timing-fill {
  height: 100%; width: 0;
  background: linear-gradient(90deg, var(--accent), var(--accent2));
  border-radius: 6px;
  display: flex; align-items: center;
  transition: width 1.4s cubic-bezier(.22,1,.36,1);
  position: relative;
}
.timing-bar.on .timing-fill { width: 9%; }
.timing-val {
  position: absolute; right: -32px; top: -22px;
  font-size: 14px; font-weight: 700; color: var(--accent);
  white-space: nowrap;
}
.timing-compare { font-size: 14px; color: var(--sub); margin-top: 16px; }

@media(max-width:860px){
  .chart-bars { gap: 8px; height: 200px; }
  .bar-label-top { font-size: 14px; }
  .bar-label-bot { font-size: 14px; }
  .kpi-row { grid-template-columns: 1fr 1fr; }
  .kpi-n { font-size: 24px; }
  .flow-grid { flex-direction: column; }
  .flow-arrow { transform: rotate(90deg); margin: 4px auto; align-self: center; }
  .timing-bar.on .timing-fill { width: 9%; }
}

/* ── ARTICLES ── */
#articles { background: rgba(255,255,255,0.1); border-top: 1px solid rgba(255,255,255,0.35); }

.articles-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr;
  gap: 1px;
  background: rgba(255,255,255,0.3);
  border: 1.5px solid rgba(255,255,255,0.5);
  border-radius: 20px;
  overflow: hidden;
  margin-top: 56px;
}

.article-card {
  background: rgba(255,255,255,0.38); backdrop-filter: blur(16px) saturate(180%); -webkit-backdrop-filter: blur(16px) saturate(180%);
  display: flex; flex-direction: column;
  text-decoration: none; color: inherit;
  transition: background .25s;
  overflow: hidden;
}
.article-card:hover { background: rgba(255,255,255,0.58); }
.article-card:hover .article-arrow { transform: translate(3px, -3px); }

.article-img-wrap {
  position: relative; width: 100%; overflow: hidden;
}
.article-card--featured .article-img-wrap { aspect-ratio: 16/9; }
.article-card--small .article-img-wrap { aspect-ratio: 4/3; }

.article-img-wrap svg { width: 100%; height: 100%; display: block; }

.article-body {
  padding: 24px 28px 28px;
  display: flex; flex-direction: column; flex: 1; gap: 12px;
}
.article-card--featured .article-body { padding: 28px 32px 32px; }

.article-tag {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 14px; letter-spacing: 2px; text-transform: uppercase;
  color: var(--accent); font-weight: 600;
}
.article-tag-dot { width: 5px; height: 5px; border-radius: 50%; background: var(--accent); }

.article-title {
  font-size: 15px; font-weight: 600; line-height: 1.45;
  color: var(--white); letter-spacing: -0.2px;
}
.article-card--featured .article-title { font-size: 22px; line-height: 1.3; }

.article-excerpt {
  font-size: 14px; line-height: 1.7; color: var(--sub);
  display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden;
}

.article-footer {
  display: flex; align-items: center; justify-content: space-between;
  margin-top: auto; padding-top: 16px;
  border-top: 1px solid rgba(255,255,255,0.4);
}
.article-meta { font-size: 14px; color: var(--sub); }
.article-arrow { font-size: 14px; color: var(--accent); transition: transform .2s; font-weight: 600; }
.article-rating { display: inline-flex; align-items: center; gap: 6px; font-size: 14px; color: var(--amber); font-weight: 600; }

@media(max-width:960px) {
  .articles-grid { grid-template-columns: 1fr; }
}


/* ── INFOGRAPHIC STATS ── */
.stats-infographic {
  background: rgba(255,255,255,0.25); backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255,255,255,0.4);
  padding: 60px 48px;
}
.stats-infographic-inner {
  max-width: 1160px; margin: 0 auto;
}
.infographic-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
  background: rgba(255,255,255,0.2);
  border-radius: 20px;
  overflow: hidden;
  border: 1.5px solid rgba(255,255,255,0.5);
  box-shadow: 0 4px 32px rgba(91,143,255,0.08), inset 0 1px 0 rgba(255,255,255,0.6);
}
.infographic-stat {
  background: rgba(255,255,255,0.38); backdrop-filter: blur(16px);
  display: flex; flex-direction: column; align-items: center;
  gap: 20px; padding: 40px 24px;
  transition: background .25s;
}
.infographic-stat:hover { background: rgba(255,255,255,0.58); }
.infographic-ring {
  position: relative; width: 144px; height: 144px; flex-shrink: 0;
}
.infographic-ring svg { width: 100%; height: 100%; overflow: visible; }
.infographic-ring-val {
  position: absolute; inset: 0;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  line-height: 1;
}
.infographic-ring-n {
  font-size: 20px; font-weight: 700; color: var(--white);
}
.infographic-ring-n em { color: var(--accent); font-style: normal; }
.infographic-ring-unit { font-size: 15px; color: var(--sub); margin-top: 5px; letter-spacing: 0.6px; text-transform: uppercase; }
.infographic-label {
  font-size: 15px; color: var(--sub); text-align: center;
  letter-spacing: 0.5px; line-height: 1.5;
}
.ring-track { fill: none; stroke-width: 6; }
.ring-fill {
  fill: none; stroke-width: 6; stroke-linecap: round;
  transform-origin: 55px 55px; transform: rotate(-90deg);
  stroke-dasharray: 282.7;
  stroke-dashoffset: 282.7;
  transition: stroke-dashoffset 1.6s cubic-bezier(.22,1,.36,1);
}
.stats-infographic.on .ring-fill { stroke-dashoffset: var(--target-offset, 282.7); }
@media(max-width:860px){
  .stats-infographic { padding: 40px 16px; }
  .infographic-grid { grid-template-columns: 1fr 1fr; border-radius: 12px; }
  .infographic-stat { padding: 20px 12px; gap: 12px; }
  .infographic-ring { width: 128px; height: 128px; }
  .infographic-ring-n { font-size: 18px; }
  .infographic-ring-unit { font-size: 15px; letter-spacing: 0.3px; }
  .infographic-label { font-size: 15px; }
}

/* ── INFOGRAPHIC CHARTS ── */
.infographic-charts-head { text-align: center; margin: 36px 0 18px; }
.infographic-charts-eyebrow { font-size: 15px; letter-spacing: 3px; text-transform: uppercase; color: var(--accent); font-weight: 600; }
.infographic-charts-title { font-size: 18px; font-weight: 600; color: var(--white); margin-top: 6px; }
.infographic-charts {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px;
  background: rgba(255,255,255,0.2);
  border-radius: 20px; overflow: hidden;
  border: 1.5px solid rgba(255,255,255,0.5);
  box-shadow: 0 4px 32px rgba(91,143,255,0.08), inset 0 1px 0 rgba(255,255,255,0.6);
}
.chart-card {
  background: rgba(255,255,255,0.38); backdrop-filter: blur(16px);
  padding: 26px 24px; display: flex; flex-direction: column; gap: 6px;
  transition: background .25s;
}
.chart-card:hover { background: rgba(255,255,255,0.55); }
.chart-card-h { font-size: 15px; font-weight: 600; color: var(--white); letter-spacing: .2px; }
.chart-card-sub { font-size: 15px; color: var(--sub); margin-bottom: 8px; }
.chart-svg { width: 100%; height: auto; display: block; margin-top: auto; }
.chart-bar-grow { transform: scaleY(0); transform-box: fill-box; transform-origin: bottom; transition: transform 1.1s cubic-bezier(.22,1,.36,1); }
.stats-infographic.on .chart-bar-grow { transform: scaleY(1); }
.chart-bar-h { transform: scaleX(0); transform-box: fill-box; transform-origin: left; transition: transform 1.2s cubic-bezier(.22,1,.36,1); }
.stats-infographic.on .chart-bar-h { transform: scaleX(1); }
.chart-line-draw { stroke-dasharray: 600; stroke-dashoffset: 600; transition: stroke-dashoffset 1.6s ease-out; }
.stats-infographic.on .chart-line-draw { stroke-dashoffset: 0; }
.chart-area-fade { opacity: 0; transition: opacity 1.4s ease-out .3s; }
.stats-infographic.on .chart-area-fade { opacity: 1; }
@media(max-width:860px){
  .infographic-charts { grid-template-columns: 1fr; border-radius: 12px; }
  .chart-card { padding: 22px 20px; }
  .infographic-charts-title { font-size: 16px; }
}

/* ── VIDEO DEMO ── */
.video-wrap {
  margin-top: 48px; max-width: 760px; width: 100%; margin-left: auto; margin-right: auto;
}
.video-thumb {
  position: relative; width: 100%; aspect-ratio: 16/9;
  border-radius: 20px; overflow: hidden;
  border: 1.5px solid rgba(255,255,255,0.55);
  cursor: pointer; display: block;
  background: rgba(200,220,255,0.3); padding: 0;
  box-shadow: 0 8px 40px rgba(91,143,255,0.18), inset 0 1px 0 rgba(255,255,255,0.6);
  transition: all .25s;
}
.video-thumb:hover {
  border-color: rgba(255,255,255,0.75);
  box-shadow: 0 16px 60px rgba(91,143,255,0.25), inset 0 1px 0 rgba(255,255,255,0.7);
  transform: translateY(-3px);
}
.video-thumb:hover .video-play {
  background: linear-gradient(135deg, var(--accent), var(--accent2));
  color: #fff; border-color: transparent;
  transform: translate(-50%,-50%) scale(1.1);
}
.video-cover { width: 100%; height: 100%; object-fit: cover; display: block; opacity: .8; transition: opacity .25s; }
.video-thumb:hover .video-cover { opacity: .95; }
.video-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(91,143,255,0.18) 0%, transparent 50%);
}
.video-play {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%);
  width: 64px; height: 64px; border-radius: 50%;
  background: rgba(255,255,255,0.7); backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
  border: 1.5px solid rgba(255,255,255,0.7);
  box-shadow: 0 4px 24px rgba(91,143,255,0.2), inset 0 1px 0 rgba(255,255,255,0.8);
  display: flex; align-items: center; justify-content: center;
  color: var(--accent); font-size: 22px; transition: all .25s;
}
.video-meta {
  position: absolute; bottom: 16px; left: 20px; right: 20px;
  display: flex; align-items: center; justify-content: space-between;
}
.video-tag {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 14px; letter-spacing: 1.5px; text-transform: uppercase;
  color: var(--accent); background: rgba(255,255,255,0.6); backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.6);
  box-shadow: 0 2px 8px rgba(91,143,255,0.12), inset 0 1px 0 rgba(255,255,255,0.7);
  padding: 5px 12px; border-radius: 20px;
}
.video-duration {
  font-size: 14px; color: var(--sub);
  background: rgba(255,255,255,0.6); backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.5);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.7);
  padding: 5px 12px; border-radius: 20px;
}
/* Modal */
.modal-bg {
  position: fixed; inset: 0; z-index: 1000;
  background: rgba(91,120,200,0.25); backdrop-filter: blur(20px) saturate(180%); -webkit-backdrop-filter: blur(20px) saturate(180%);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; pointer-events: none; transition: opacity .3s;
}
.modal-bg.open { opacity: 1; pointer-events: all; }
.modal-box { position: relative; width: min(900px, 92vw); }
.modal-close {
  position: absolute; top: -44px; right: 0;
  font-size: 18px; color: rgba(15,22,40,0.6);
  background: rgba(255,255,255,0.5); backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.5); border-radius: 8px;
  cursor: pointer; padding: 8px 14px; transition: all .2s;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}
.modal-close:hover { background: rgba(255,255,255,0.75); color: var(--white); }
.modal-video {
  position: relative; aspect-ratio: 16/9;
  border-radius: 16px; overflow: hidden;
  border: 1.5px solid rgba(255,255,255,0.5);
  background: rgba(200,215,255,0.3);
  box-shadow: 0 16px 60px rgba(91,143,255,0.25);
}
.modal-video iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: none; }
@media(max-width:860px){
  .video-play { width: 52px; height: 52px; font-size: 18px; }
  .video-wrap { margin-top: 32px; }
}



#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;
}