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

@property --glow-angle {
  syntax: '<angle>';
  initial-value: 0deg;
  inherits: false;
}

:root {
  --bg-deep: #06060e;
  --bg-base: #0a0a14;
  --bg-card: #0d0d18;
  --bg-elevated: #111120;
  --text-primary: #e8e8f0;
  --text-secondary: #8a8a9e;
  --text-muted: #7a7a90; /* 2026-04-30 WCAG: #5a5a72 давал 3.02:1 на bg-deep, fail AA. #7a7a90 ≈ 4.7:1. */
  --accent: #ff2d7b;
  --accent-soft: rgba(255, 45, 123, .15);
  --accent-glow: rgba(255, 45, 123, .25);
  --glass-border: rgba(255, 255, 255, .06);
  --glass-border-h: rgba(255, 255, 255, .12);
  --r-s: 8px;
  --r-m: 12px;
  --r-l: 16px;
  --r-xl: 24px;
  --ease: cubic-bezier(.22, 1, .36, 1);
  --noise: url("data:image/svg+xml;utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.75' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.25'/%3E%3C/svg%3E");
  /* 2026-04-30 AUTO-SCALE: fluid system for 320px → 4K viewports.
     Базовый font-size: 14px на mobile, 16px на desktop, 18px на 2K, 20px на 4K.
     Все clamp() на странице используют rem или сами viewport-units, поэтому
     меняя базу здесь автоматически скейлим текст пропорционально экрану. */
  --container-max: clamp(320px, 92vw, 1440px);
  --section-pad-y: clamp(48px, 8vw, 120px);
}
html {
  /* 14px @ 360px → 16px @ 1440px → 19px @ 2560px → 22px @ 3840px */
  font-size: clamp(14px, 0.6vw + 12px, 22px);
}
@media (max-width: 720px) {
  /* Mobile: фиксируем 14px чтобы текст не расплывался от ширины */
  html { font-size: 14px; }
}

html { scroll-behavior: smooth }
body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  background: var(--bg-deep);
  color: var(--text-primary);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

.graffiti-bg { font-family: 'a dripping marker', cursive; font-weight: 400 }

.container {
  /* 2026-04-30 AUTO-SCALE: fluid container 92vw до 1440px (раньше hard 1200px,
     контент не масштабировался на 2K/4K - оставался узкий 1200px по центру). */
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 clamp(16px, 2vw, 32px);
}

/* -- SVG DEDUP ICON CLASSES -- */
.star-ico { width: 16px; height: 16px; fill: var(--accent) }
.check-ico { width: 16px; height: 16px }

/* -- IMAGE PROTECTION -- */
img {
  -webkit-user-drag: none;
  user-select: none;
  pointer-events: none;
}
a img, .nav-logo img, .influencer-avatar img {
  pointer-events: auto;
}

/* -- PRELOADER -- */
.preloader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: var(--bg-deep);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity .5s ease, visibility .5s ease;
}
.preloader.done {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}
.preloader-inner {
  text-align: center;
  max-width: 480px;
  width: 100%;
  padding: 0 24px;
}
.preloader-logo {
  margin-bottom: 6px;
}
.preloader-logo img { display: block; margin: 0 auto }
.preloader-subtitle {
  font-family: monospace;
  font-size: 11px;
  letter-spacing: 4px;
  color: var(--text-muted);
  text-transform: uppercase;
  margin-bottom: 32px;
}
.preloader-terminal {
  text-align: left;
  font-family: monospace;
  font-size: 11px;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 24px;
  min-height: 90px;
}
.preloader-terminal .line {
  opacity: 0;
  animation: lineAppear .3s ease forwards;
}
.preloader-terminal .line::before {
  content: '> ';
  color: var(--accent);
  opacity: .5;
}
.preloader-terminal .line.done {
  color: var(--text-secondary);
}
.preloader-terminal .line.done::after {
  content: ' \2713';
  color: var(--accent);
  font-size: 10px;
}
@keyframes lineAppear {
  from { opacity: 0; transform: translateY(4px) }
  to { opacity: 1; transform: translateY(0) }
}
.preloader-bar {
  width: 100%;
  height: 2px;
  background: rgba(255, 255, 255, .06);
  border-radius: 2px;
  overflow: hidden;
  margin-bottom: 12px;
}
.preloader-fill {
  height: 100%;
  width: 0%;
  background: var(--accent);
  border-radius: 2px;
  transition: width .15s linear;
  box-shadow: 0 0 8px var(--accent-glow);
}
.preloader-info {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.preloader-status {
  font-family: monospace;
  font-size: 11px;
  color: var(--text-muted);
  letter-spacing: 1px;
}
.preloader-pct {
  font-family: 'Unbounded', monospace;
  font-size: 13px;
  color: var(--accent);
  font-weight: 600;
}
@media (prefers-reduced-motion: reduce) {
  .preloader-terminal .line { animation: none; opacity: 1 }
  .preloader { transition: none }
  /* 2026-04-30 WCAG 2.3.3 + 2.2.2: уважаем reduced-motion на ВСЕХ декорациях */
  .reveal, .reveal-left, .reveal-right, .reveal-scale {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
  /* Infinite animations (>5s) - WCAG 2.2.2: pause/stop требуется */
  .partner-inner-wrap, .pricing-section-wrap, .hero-visual-wrap, .dl-wrap,
  .trust-marquee-track {
    animation: none !important;
  }
}

/* -- REVEAL ANIMATIONS -- */
@keyframes revealFallback { to { opacity: 1; transform: none } }
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity .6s var(--ease), transform .6s var(--ease);
  animation: revealFallback 0s 3s forwards;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
  animation: none;
}
.reveal-delay-1 { transition-delay: .1s }
.reveal-delay-2 { transition-delay: .2s }
.reveal-delay-3 { transition-delay: .3s }
.reveal-delay-4 { transition-delay: .4s }
.reveal-delay-5 { transition-delay: .5s }

.reveal-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity .6s var(--ease), transform .6s var(--ease);
  animation: revealFallback 0s 3s forwards;
}
.reveal-left.visible {
  opacity: 1;
  transform: translateX(0);
  animation: none;
}
.reveal-right {
  opacity: 0;
  transform: translateX(40px);
  transition: opacity .6s var(--ease), transform .6s var(--ease);
  animation: revealFallback 0s 3s forwards;
}
.reveal-right.visible {
  opacity: 1;
  transform: translateX(0);
  animation: none;
}
.reveal-scale {
  opacity: 0;
  transform: scale(.92);
  transition: opacity .7s var(--ease), transform .7s var(--ease);
  animation: revealFallback 0s 3s forwards;
}
.reveal-scale.visible {
  opacity: 1;
  transform: scale(1);
  animation: none;
}

/* Keyboard focus */
:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}
a:focus:not(:focus-visible),
button:focus:not(:focus-visible) {
  outline: none;
}

/* -- SVG ICONS -- */
.icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.icon svg {
  width: 100%;
  height: 100%;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* -- NAV -- */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 12px 0;
  background: rgba(6, 6, 14, .75);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-bottom: 1px solid var(--glass-border);
  transition: padding .3s, background .3s;
}
nav.scrolled {
  padding: 8px 0;
  background: rgba(6, 6, 14, .92);
}
nav .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.nav-logo {
  text-decoration: none;
  transition: transform .3s var(--ease);
  display: flex;
  align-items: center;
}
.nav-logo img { display: block; height: 32px; width: auto }
.nav-logo:hover { transform: scale(1.03) }
.nav-links {
  display: flex;
  gap: 32px;
  list-style: none;
}
.nav-links a {
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: .5px;
  text-transform: uppercase;
  transition: color .25s;
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--accent);
  transition: width .3s var(--ease);
}
.nav-links a:hover { color: var(--accent) }
.nav-links a:hover::after { width: 100% }
.nav-btns {
  display: flex;
  gap: 12px;
  align-items: center;
}
.nav-cta {
  background: var(--accent);
  color: #fff;
  padding: 12px 22px; /* 2026-04-30 WCAG 2.5.5: было 8px → ~32px высота. Теперь ~44px. */
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--r-s);
  font-size: 13px;
  font-weight: 700; /* 2026-04-30 WCAG: 13px+700 = large-text → contrast 3:1 PASS на accent */
  text-decoration: none;
  letter-spacing: .5px;
  text-transform: uppercase;
  transition: all .25s var(--ease);
  border: none;
  cursor: pointer;
}
.nav-cta:hover {
  background: #ff4a8f;
  box-shadow: 0 0 30px var(--accent-glow);
  transform: translateY(-1px);
}
.nav-cta-outline {
  background: transparent;
  color: var(--text-primary);
  padding: 8px 20px;
  border-radius: var(--r-s);
  font-size: 12px;
  font-weight: 600;
  text-decoration: none;
  letter-spacing: .5px;
  text-transform: uppercase;
  transition: all .25s var(--ease);
  border: 1px solid var(--glass-border-h);
  cursor: pointer;
}
.nav-cta-outline:hover {
  border-color: var(--accent);
  color: var(--accent);
  background: var(--accent-soft);
}

/* -- HERO -- */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  padding: 100px 0 40px;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 70% 40%, rgba(255, 45, 123, .07), transparent 70%),
    radial-gradient(ellipse 40% 40% at 20% 60%, rgba(80, 60, 180, .05), transparent 60%);
  pointer-events: none;
}
.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--noise);
  pointer-events: none;
  opacity: .35;
}
.hero-content {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.hero-text { max-width: 580px }
.hero h1 {
  font-family: 'Unbounded', cursive;
  font-size: clamp(38px, 5vw, 64px);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -1px;
  margin-bottom: 8px;
}
.hero h1 .accent { color: var(--accent) }
.hero-sub {
  display: block;
  color: var(--text-secondary);
  font-family: 'Unbounded', cursive;
  font-weight: 500;
  font-size: clamp(16px, 2vw, 26px);
  line-height: 1.3;
  margin-bottom: 24px;
  height: 1.3em;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  max-width: 100%;
}
.hero-cursor {
  display: inline-block;
  width: 2px;
  height: .9em;
  background: var(--accent);
  margin-left: 2px;
  vertical-align: middle;
  animation: cursorBlink .7s step-end infinite;
}
@keyframes cursorBlink {
  0%,100% { opacity: 1 }
  50% { opacity: 0 }
}
.hero-desc {
  font-size: 16px;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 36px;
  max-width: 480px;
}
.hero-actions {
  display: flex;
  gap: 16px;
  align-items: center;
}
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--accent);
  color: #fff;
  padding: 14px 32px;
  border-radius: var(--r-m);
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  transition: all .3s var(--ease);
  border: none;
  cursor: pointer;
}
.btn-primary:hover {
  background: #ff4a8f;
  transform: translateY(-2px);
  box-shadow: 0 8px 30px var(--accent-glow);
}
.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: transparent;
  color: var(--text-primary);
  padding: 14px 32px;
  border-radius: var(--r-m);
  font-size: 15px;
  font-weight: 500;
  text-decoration: none;
  border: 1px solid var(--glass-border-h);
  transition: all .3s var(--ease);
  cursor: pointer;
}
.btn-outline:hover {
  border-color: var(--accent);
  color: var(--accent);
  background: var(--accent-soft);
}

/* -- HERO SOCIAL ICONS -- */
.hero-socials {
  display: flex;
  gap: 16px;
  margin-top: 28px;
}
.hero-social-link {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--accent-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all .3s var(--ease);
  text-decoration: none;
}
.hero-social-link svg {
  width: 20px;
  height: 20px;
  fill: var(--accent);
}
.hero-social-link:hover {
  transform: scale(1.15);
  box-shadow: 0 0 20px var(--accent-glow);
  background: rgba(255, 45, 123, .25);
}

/* -- HERO VISUAL with border glow -- */
.hero-visual-wrap {
  position: relative;
}
.hero-visual {
  position: relative;
  aspect-ratio: 4/3;
  border-radius: var(--r-xl);
  overflow: hidden;
  background: var(--bg-card);
  border: 1px solid var(--glass-border);
  transition: border-color .4s;
  z-index: 1;
}
.hero-visual:hover { border-color: var(--glass-border-h) }
.hero-visual::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 50% 80%, rgba(255, 45, 123, .12), transparent 60%),
    linear-gradient(180deg, rgba(10, 10, 20, .1) 0%, rgba(10, 10, 20, .6) 70%, rgba(10, 10, 20, .9) 100%),
    var(--noise);
  pointer-events: none;
  z-index: 2;
}
.hero-visual-inner {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  color: var(--text-muted);
  letter-spacing: 2px;
  text-transform: uppercase;
  position: relative;
  background: linear-gradient(135deg, var(--bg-card) 0%, var(--bg-elevated) 100%);
}

/* -- HERO BORDER GLOW ANIMATION -- */
.hero-visual-wrap::before {
  content: '';
  position: absolute;
  inset: -2px;
  border-radius: 26px;
  background: conic-gradient(from var(--glow-angle), transparent 0%, var(--accent) 5%, rgba(160, 40, 200, .7) 10%, var(--accent) 15%, transparent 20%);
  animation: borderGlow 4s linear infinite;
  z-index: 0;
  filter: blur(4px);
}
.hero-visual-wrap::after {
  content: '';
  position: absolute;
  inset: 2px;
  border-radius: 22px;
  background: var(--bg-deep);
  z-index: 0;
}

@keyframes borderGlow {
  0% { --glow-angle: 0deg; }
  100% { --glow-angle: 360deg; }
}

/* -- HERO GRAFFITI TAG -- */
.hero-graffiti-tag {
  position: absolute;
  z-index: 4;
  bottom: -22px;
  right: -10px;
  font-family: 'TagType', cursive;
  font-size: clamp(40px, 5vw, 68px);
  color: var(--accent);
  line-height: 1;
  transform: rotate(-4deg);
  text-shadow:
    0 0 24px rgba(255, 45, 123, .45),
    0 0 50px rgba(255, 45, 123, .15);
  pointer-events: none;
  white-space: nowrap;
}

/* -- FLOATING GRAFFITI BG -- */
.bg-graffiti {
  font-family: 'a dripping marker', cursive;
  color: var(--accent);
  opacity: .12;
  font-size: clamp(100px, 18vw, 260px);
  position: absolute;
  white-space: nowrap;
  pointer-events: none;
  user-select: none;
  z-index: 0;
  line-height: 1;
  letter-spacing: -2px;
}

/* -- GRAFFITI POSITION CLASSES -- */
.graffiti-hero-1 { top: 12%; left: 5%; transform: rotate(-5deg) }
.graffiti-hero-2 { bottom: 10%; right: 5%; transform: rotate(3deg) }
.graffiti-eco { top: 15%; right: 5%; transform: rotate(3deg) }
.graffiti-features { top: 20%; left: 5%; transform: rotate(-4deg) }
.graffiti-pricing { top: 50%; right: 5%; transform: translateY(-50%) rotate(3deg) }
.graffiti-faq { top: 50%; left: 5%; transform: translateY(-50%) rotate(-3deg) }
.graffiti-collab { top: 50%; right: 3%; transform: translateY(-50%) rotate(4deg); opacity: .12 }
.graffiti-soon { top: 10%; left: -3%; transform: rotate(-4deg) }
.graffiti-cta { bottom: 5%; left: 5%; transform: rotate(-4deg) }

/* -- HERO IMAGE COVER -- */
.hero-img-cover { width: 100%; height: 100%; object-fit: cover; position: absolute; inset: 0 }

/* -- SECTION HIDDEN -- */
.section-hidden { display: none }

/* -- SECURITY NOTE -- */
.security-note { margin-top: 12px; color: var(--text-muted); font-size: 14px }

/* -- SOON DESC -- */
.soon-desc { max-width: 600px; margin: 0 auto 24px }

/* -- TERMINAL DOTS -- */
.terminal-dot-red { background: #ff5f57 }
.terminal-dot-yellow { background: #febc2e }
.terminal-dot-green { background: #28c840 }

/* -- CTA ACCENT -- */
.cta-accent { color: var(--accent) }

/* -- SECTIONS COMMON -- */
section {
  /* 2026-04-30 AUTO-SCALE: fluid vertical padding (раньше hard 100px,
     казалось огромным на mobile и недостаточным на 4K). */
  padding: var(--section-pad-y) 0;
  position: relative;
  overflow: hidden;
}
.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 3px;
  margin-bottom: 12px;
}
.section-tag::before {
  content: '///';
  color: var(--accent);
  font-weight: 700;
}
.section-title {
  font-family: 'Unbounded', cursive;
  font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 4px;
}
.section-desc {
  font-size: 16px;
  color: var(--text-secondary);
  max-width: 520px;
  line-height: 1.7;
}
.section-header { margin-bottom: 64px }

/* -- TRUST BAR MARQUEE -- */
.trust-bar {
  padding: 0;
  border-top: 1px solid var(--glass-border);
  border-bottom: 1px solid var(--glass-border);
  position: relative;
  overflow: hidden;
}
.trust-bar::after {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--noise);
  opacity: .2;
  pointer-events: none;
}
.trust-marquee-track {
  display: flex;
  animation: marqueeScroll 35s linear infinite;
  white-space: nowrap;
}
@keyframes marqueeScroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
.trust-marquee-set {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}
.trust-item {
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 6px;
  color: var(--text-muted);
  padding: 20px 20px;
  white-space: nowrap;
  flex-shrink: 0;
}
.trust-sep {
  color: var(--accent);
  font-weight: 700;
  letter-spacing: 2px;
  padding: 0 8px;
  opacity: .5;
  flex-shrink: 0;
  white-space: nowrap;
}

/* -- INFLUENCERS -- */
.influencers-section {
  background: var(--bg-base);
  position: relative;
  overflow: hidden;
}
.influencers-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--noise);
  opacity: .3;
  pointer-events: none;
}
.influencers-section .section-header {
  position: relative;
  z-index: 1;
}
.influencers-graffiti {
  font-family: 'a dripping marker', cursive;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(-6deg);
  font-size: clamp(100px, 18vw, 260px);
  color: var(--accent);
  opacity: .15;
  pointer-events: none;
  white-space: nowrap;
  z-index: 0;
}
/* 2026-05-01 (v4): 5 партнёров видно сразу на desktop, дальше скролл
   с prev/next кнопками. На tablet ~3 видно с peek, на mobile ~1.3 (peek).
   Карточки auto-size через calc() чтобы первые 5 точно поместились
   в container. */
.influencers-carousel {
  position: relative;
  z-index: 1;
}
.influencers-grid {
  --inf-gap: 16px;
  --inf-visible: 5;
  display: flex;
  flex-wrap: nowrap;
  gap: var(--inf-gap);
  position: relative;
  z-index: 1;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  padding: 4px 2px 14px;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
  scrollbar-color: rgba(255, 45, 123, .25) transparent;
}
.influencers-grid::-webkit-scrollbar { height: 4px; }
.influencers-grid::-webkit-scrollbar-track { background: transparent; }
.influencers-grid::-webkit-scrollbar-thumb {
  background: rgba(255, 45, 123, .25);
  border-radius: 999px;
}
.influencers-grid::-webkit-scrollbar-thumb:hover {
  background: rgba(255, 45, 123, .5);
}
.influencers-grid > .influencer-card {
  scroll-snap-align: start;
  /* ровно 5 карточек поместятся в container на desktop */
  flex: 0 0 calc((100% - (var(--inf-visible) - 1) * var(--inf-gap)) / var(--inf-visible));
  min-width: 0;
}
@media (max-width: 1100px) {
  .influencers-grid { --inf-visible: 3.2; }  /* peek 4-й */
}
@media (max-width: 720px) {
  .influencers-grid { --inf-visible: 2.2; --inf-gap: 12px; }
}
@media (max-width: 480px) {
  .influencers-grid { --inf-visible: 1.3; --inf-gap: 12px; }
}

/* Кнопки prev/next - круглые, поверх карточек по бокам carousel */
.influencers-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid var(--glass-border-h);
  background: rgba(13, 13, 24, .85);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  color: var(--text-primary);
  cursor: pointer;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all .2s var(--ease, ease);
  box-shadow: 0 4px 16px rgba(0,0,0,.4);
}
.influencers-nav:hover {
  background: var(--accent);
  border-color: var(--accent);
  transform: translateY(-50%) scale(1.05);
}
.influencers-nav:active {
  transform: translateY(-50%) scale(.96);
}
.influencers-nav:disabled {
  opacity: .3;
  cursor: default;
  pointer-events: none;
}
.influencers-nav-prev { left: -22px; }
.influencers-nav-next { right: -22px; }
.influencers-nav[hidden] { display: none; }

@media (max-width: 720px) {
  .influencers-nav { width: 36px; height: 36px; }
  .influencers-nav-prev { left: -8px; }
  .influencers-nav-next { right: -8px; }
}
.influencer-card.founder {
  border-color: rgba(255, 45, 123, .25);
  background: linear-gradient(180deg, rgba(255, 45, 123, .03), var(--bg-card));
}
.influencer-card.founder::before {
  left: 10%; right: 10%;
  opacity: .8;
}
.founder-badge {
  display: inline-block;
  background: var(--accent-soft);
  border: 1px solid rgba(255, 45, 123, .2);
  color: var(--accent);
  font-size: 9px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  padding: 3px 10px;
  border-radius: 100px;
  margin-bottom: 8px;
  position: relative;
  z-index: 1;
}
.influencer-stats {
  font-size: 11px;
  color: var(--text-muted);
  margin-top: 4px;
  margin-bottom: 8px;
  position: relative;
  z-index: 1;
}
.influencer-bio {
  font-size: 11px;
  color: var(--text-secondary); /* 2026-04-30 fix: --text-sec не существует, fallback на default */
  line-height: 1.5;
  margin-bottom: 10px;
  position: relative;
  z-index: 1;
}
.influencer-card.mystery .influencer-avatar {
  filter: blur(8px);
  opacity: .5;
}
.influencer-card.mystery .influencer-avatar::after {
  content: '?';
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Unbounded', cursive;
  font-size: 28px;
  font-weight: 800;
  color: var(--accent);
  z-index: 2;
}
.mystery-label {
  font-size: 11px;
  color: var(--accent);
  font-style: italic;
  position: relative;
  z-index: 1;
}
.influencer-card {
  background: var(--bg-card);
  border: 1px solid var(--glass-border);
  border-radius: var(--r-l);
  padding: 28px 20px;
  text-align: center;
  position: relative;
  overflow: hidden;
  transition: border-color .3s, transform .3s var(--ease), box-shadow .3s;
}
.influencer-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 20%;
  right: 20%;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
  opacity: .6;
}
.influencer-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--noise);
  opacity: .15;
  pointer-events: none;
  border-radius: var(--r-l);
}
.influencer-card:hover {
  border-color: rgba(255, 45, 123, .3);
  transform: translateY(-4px);
  box-shadow: 0 16px 50px rgba(0, 0, 0, .3), 0 0 30px rgba(255, 45, 123, .08);
}
.influencer-avatar {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid var(--accent);
  box-shadow: 0 0 20px var(--accent-soft);
  margin: 0 auto 16px;
  position: relative;
}
.influencer-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.influencer-name {
  font-family: 'Unbounded', cursive;
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 2px;
  position: relative;
  z-index: 1;
}
.influencer-handle {
  font-size: 12px;
  color: var(--text-muted);
  margin-bottom: 12px;
  position: relative;
  z-index: 1;
}
.influencer-socials {
  display: flex;
  gap: 12px;
  justify-content: center;
  position: relative;
  z-index: 1;
}
.influencer-socials a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  /* 2026-04-30 WCAG 2.5.5: было svg 18×18 без padding → 18px hit-area.
     padding 13px вокруг 18px svg = 44×44. */
  padding: 13px;
  margin: -13px;
  text-decoration: none;
  transition: transform .2s var(--ease), filter .2s;
}
.influencer-socials a:hover {
  transform: scale(1.2);
  filter: drop-shadow(0 0 8px var(--accent-glow));
}
.influencer-socials svg {
  width: 18px;
  height: 18px;
  fill: var(--accent);
  opacity: .7;
  transition: opacity .2s;
}
.influencer-socials a:hover svg {
  opacity: 1;
}

/* -- ECOSYSTEM -- */
.ecosystem-section {
  background: var(--bg-base);
  position: relative;
  overflow: hidden;
}
.ecosystem-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--noise);
  opacity: .3;
  pointer-events: none;
}
.ecosystem-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  position: relative;
  z-index: 1;
}
.eco-card {
  background: var(--bg-card);
  border: 1px solid var(--glass-border);
  border-radius: var(--r-l);
  padding: 0;
  position: relative;
  overflow: hidden;
  transition: border-color .3s, transform .3s var(--ease), box-shadow .3s;
}
.eco-img {
  height: 180px;
  overflow: hidden;
  position: relative;
}
.eco-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.eco-img::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 100% 70% at 50% 100%, rgba(255, 45, 123, .08), transparent 70%),
    linear-gradient(180deg, rgba(13, 13, 24, .1) 0%, rgba(13, 13, 24, .5) 50%, rgba(13, 13, 24, .95) 100%),
    var(--noise);
  pointer-events: none;
}
.eco-step {
  position: absolute;
  top: 14px;
  left: 14px;
  z-index: 2;
  font-family: 'Unbounded', cursive;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  color: var(--accent);
  background: rgba(13, 13, 24, .75);
  backdrop-filter: blur(6px);
  border: 1px solid var(--accent-soft);
  padding: 6px 12px;
  border-radius: 999px;
}
.eco-link {
  color: var(--accent);
  text-decoration: none;
  border-bottom: 1px dashed var(--accent);
}
.eco-link:hover { border-bottom-style: solid; }
.eco-body {
  padding: 24px 28px 28px;
  position: relative;
  z-index: 1;
}
.eco-card::before {
  content: '';
  position: absolute;
  top: 0; left: 20%; right: 20%;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
  opacity: .5;
}
.eco-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--noise);
  opacity: .15;
  pointer-events: none;
}
.eco-card:hover {
  border-color: var(--glass-border-h);
  transform: translateY(-4px);
  box-shadow: 0 16px 50px rgba(0,0,0,.3);
}
.eco-icon {
  width: 44px;
  height: 44px;
  border-radius: var(--r-s);
  background: var(--accent-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  color: var(--accent);
  position: relative;
  z-index: 1;
}
.eco-icon svg { width: 22px; height: 22px; stroke: currentColor; fill: none; stroke-width: 1.5; stroke-linecap: round; stroke-linejoin: round }
.eco-card h3 {
  font-family: 'Unbounded', cursive;
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 10px;
  position: relative;
  z-index: 1;
}
.eco-card p {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.6;
  position: relative;
  z-index: 1;
}

/* -- FEATURES -- */
.features-section {
  background: var(--bg-base);
  overflow: hidden;
}
.features-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--noise);
  opacity: .3;
  pointer-events: none;
}
.features-grid {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  padding-bottom: 20px;
  position: relative;
  z-index: 1;
  scrollbar-width: none;
  cursor: grab;
}
.features-grid::-webkit-scrollbar { display: none }
.features-grid:active { cursor: grabbing }
.feature-card {
  flex: 0 0 340px;
  scroll-snap-align: start;
  border-radius: 20px;
  overflow: hidden;
  background: var(--bg-card);
  border: 1px solid var(--glass-border);
  display: flex;
  flex-direction: column;
  transition: border-color .3s, transform .35s var(--ease), box-shadow .35s;
}
.feature-card:hover {
  border-color: var(--glass-border-h);
  box-shadow: 0 12px 40px rgba(0,0,0,.3);
}
.features-nav {
  display: flex;
  gap: 12px;
  margin-top: 24px;
  justify-content: center;
  position: relative;
  z-index: 1;
}
.features-nav button {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid var(--glass-border-h);
  background: var(--bg-card);
  color: var(--text-primary);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all .25s var(--ease);
}
.features-nav button:hover {
  border-color: var(--accent);
  background: var(--accent-soft);
  color: var(--accent);
}
.features-nav button svg {
  width: 18px;
  height: 18px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
}
.feature-img {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, var(--bg-deep), var(--bg-elevated));
  height: 180px;
  flex-shrink: 0;
}
.feature-img::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 100% 70% at 50% 100%, rgba(255, 45, 123, .1), transparent 70%),
    linear-gradient(180deg, rgba(10,10,20,.1) 0%, rgba(10,10,20,.5) 60%, rgba(10,10,20,.9) 100%),
    var(--noise);
  pointer-events: none;
}
.feature-img-cover {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.feature-img-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
}
.feature-body {
  padding: 24px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.feature-icon-wrap {
  width: 40px;
  height: 40px;
  border-radius: var(--r-s);
  background: var(--accent-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  color: var(--accent);
  transition: transform .3s var(--ease), box-shadow .3s;
}
.feature-card:hover .feature-icon-wrap {
  transform: scale(1.1);
  box-shadow: 0 0 20px var(--accent-soft);
}
.feature-icon-wrap svg { width: 20px; height: 20px }
.feature-card h3 {
  font-family: 'Unbounded', cursive;
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 10px;
  line-height: 1.3;
}
.feature-card p {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.6;
  flex: 1;
}
.feature-metric {
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid var(--glass-border);
  display: flex;
  align-items: baseline;
  gap: 8px;
}
.feature-metric-val {
  font-family: 'Unbounded', cursive;
  font-size: 22px;
  font-weight: 700;
  color: var(--accent);
}
.feature-metric-label {
  font-size: 12px;
  color: var(--text-muted);
}

/* -- SECURITY -- */
.security-section { position: relative; overflow: hidden }
.security-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  background: var(--bg-card);
  border: 1px solid var(--glass-border);
  border-radius: var(--r-xl);
  padding: 48px;
  position: relative;
}
.security-inner::after {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--noise);
  opacity: .15;
  pointer-events: none;
  border-radius: var(--r-xl);
}
.security-text { position: relative; z-index: 1 }
.security-text p { color: var(--text-secondary); line-height: 1.7; font-size: 15px }
.security-points { position: relative; z-index: 1 }
.security-point {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid var(--glass-border);
  font-size: 14px;
  color: var(--text-primary);
}
.security-point:last-child { border-bottom: none }

/* -- REVIEWS CAROUSEL -- */
.reviews-section {
  background: var(--bg-deep);
  position: relative;
  overflow: hidden;
}
.reviews-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--noise);
  opacity: .3;
  pointer-events: none;
}
.reviews-section .section-header {
  position: relative;
  z-index: 1;
  text-align: center;
}
.reviews-section .section-desc { margin: 0 auto }
.link-accent {
  color: var(--accent);
  text-decoration: none;
  border-bottom: 1px solid rgba(255, 45, 123, .4);
  transition: border-color .2s, color .2s;
}
.link-accent:hover {
  color: var(--accent);
  border-bottom-color: var(--accent);
}
.reviews-track-wrap {
  overflow: hidden;
  position: relative;
  z-index: 1;
}
.reviews-track {
  display: flex;
  gap: 20px;
  animation: reviewsScroll 75s linear infinite;
  width: max-content;
  will-change: transform;
}
.reviews-track:hover {
  animation-play-state: paused;
}
@keyframes reviewsScroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
.review-card {
  background: var(--bg-card);
  border: 1px solid var(--glass-border);
  border-radius: var(--r-l);
  padding: 32px 28px;
  position: relative;
  overflow: hidden;
  transition: border-color .3s, transform .3s var(--ease), box-shadow .3s;
  min-width: 360px;
  max-width: 360px;
  flex-shrink: 0;
}
.review-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--noise);
  opacity: .15;
  pointer-events: none;
  border-radius: var(--r-l);
}
.review-card:hover {
  border-color: var(--glass-border-h);
  transform: translateY(-4px);
  box-shadow: 0 16px 50px rgba(0, 0, 0, .3);
}
.review-stars {
  display: flex;
  gap: 4px;
  margin-bottom: 16px;
  position: relative;
  z-index: 1;
}
.review-text {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
  font-style: italic;
}
.review-author {
  display: flex;
  align-items: center;
  gap: 12px;
  position: relative;
  z-index: 1;
}
.review-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), rgba(160, 40, 200, .8));
  opacity: .6;
  flex-shrink: 0;
}
.review-name {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-primary);
}
.review-meta {
  font-size: 12px;
  color: var(--text-muted);
  margin-top: 2px;
}
/* -- PRICING -- */
/* 2026-04-30: чёрный матовый фон на section-уровне как у .partner-section -
   за pink-rim карточкой Pro видно чёрное матовое полотно во всю ширину. */
.pricing-section {
  overflow: hidden;
  position: relative;
  background: var(--bg-deep);
}
.pricing-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--noise);
  opacity: .3;
  pointer-events: none;
  z-index: 0;
}
.pricing-section > .container {
  position: relative;
  z-index: 1;
}
.pricing-section .section-header { text-align: center }
.pricing-section .section-desc { margin: 0 auto }
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  align-items: start;
}
/* 2026-05-02: 2-card layout (Pro + Elite) - центрируем + ограничиваем ширину */
.pricing-grid.pricing-grid-2col {
  grid-template-columns: repeat(2, minmax(280px, 420px));
  justify-content: center;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}
@media (max-width: 720px) {
  .pricing-grid.pricing-grid-2col {
    grid-template-columns: 1fr;
    max-width: 460px;
  }
}
/* 2026-04-30: Матовый фон на ВСЁМ блоке pricing-section (как .partner-inner-wrap):
   conic-gradient рамка снаружи + var(--bg-card) внутри + noise overlay.
   Граффити ALL·IN·ONE крупным stencil-ом за карточкой. */
.pricing-section-wrap {
  position: relative;
  z-index: 1;
  border-radius: calc(var(--r-xl) + 2px);
  padding: 2px;
  background: conic-gradient(from var(--glow-angle), transparent 0%, var(--accent) 10%, rgba(160,40,200,.6) 15%, transparent 25%);
  animation: borderGlow 5s linear infinite;
}
.pricing-section-inner {
  position: relative;
  background: var(--bg-card);
  border-radius: var(--r-xl);
  padding: 64px 56px 56px;
  overflow: hidden;
  isolation: isolate;
}
.pricing-section-inner::after {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--noise);
  opacity: .15;
  pointer-events: none;
  border-radius: var(--r-xl);
  z-index: 0;
}
.pricing-section-inner::before {
  content: 'ALL · IN · ONE';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%) rotate(-3deg);
  font-family: 'TagType', 'a dripping marker', cursive;
  font-size: clamp(58px, 9vw, 130px);
  font-weight: 700;
  color: var(--accent);
  opacity: .07;
  letter-spacing: -3px;
  white-space: nowrap;
  pointer-events: none;
  user-select: none;
  z-index: 0;
  line-height: 1;
}
.pricing-section-inner > * {
  position: relative;
  z-index: 1;
}
.pricing-grid.pricing-grid-1col {
  grid-template-columns: minmax(340px, 540px);
  justify-content: center;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  padding: 0;
}
.pricing-grid.pricing-grid-1col > .price-card {
  position: relative;
  z-index: 1;
  box-shadow:
    0 1px 0 rgba(255, 255, 255, .04) inset,
    0 20px 50px -16px rgba(255, 45, 123, .22),
    0 0 0 1px rgba(255, 45, 123, .12);
}
@media (max-width: 720px) {
  .pricing-section-inner {
    padding: 40px 22px 32px;
    border-radius: var(--r-l);
  }
  .pricing-section-inner::before {
    font-size: clamp(40px, 14vw, 72px);
    letter-spacing: -2px;
  }
  .pricing-grid.pricing-grid-1col {
    grid-template-columns: 1fr;
    max-width: 460px;
  }
}
.price-card {
  border-radius: var(--r-l);
  background: var(--bg-card);
  border: 1px solid var(--glass-border);
  padding: 36px 28px;
  position: relative;
  overflow: hidden;
  transition: border-color .3s, transform .3s var(--ease), box-shadow .3s;
}
.price-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--noise);
  opacity: .15;
  pointer-events: none;
  border-radius: var(--r-l);
}
.price-card:hover {
  border-color: var(--glass-border-h);
  transform: translateY(-4px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, .3);
}
.price-card.featured {
  border-color: rgba(255, 45, 123, .25);
  background: linear-gradient(180deg, rgba(255, 45, 123, .03), var(--bg-card));
}
.price-card.featured::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
  z-index: 2;
}
.price-tag {
  font-size: 11px;
  font-weight: 700;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 8px;
  position: relative;
  z-index: 1;
}
.price-name {
  font-family: 'Unbounded', cursive;
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 4px;
  position: relative;
  z-index: 1;
}
.price-desc {
  font-size: 14px;
  color: var(--text-secondary);
  margin-bottom: 12px;
  line-height: 1.5;
  position: relative;
  z-index: 1;
}
.price-for-whom {
  font-size: 13px;
  color: var(--text-primary);
  background: rgba(255, 255, 255, .04);
  border-left: 2px solid var(--accent);
  padding: 10px 12px;
  border-radius: 4px;
  line-height: 1.45;
  margin-bottom: 22px;
  position: relative;
  z-index: 1;
}
.price-outcome {
  font-size: 13.5px;
  color: var(--text-primary);
  background: var(--accent-soft);
  border: 1px solid rgba(255, 45, 123, .3);
  padding: 10px 14px;
  border-radius: 10px;
  line-height: 1.4;
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
  text-align: center;
}
.price-outcome strong { color: var(--accent); font-weight: 800; }
.price-card.featured .price-outcome {
  background: rgba(255, 45, 123, .22);
  border-color: rgba(255, 45, 123, .5);
}

/* -- Currency toggle (USD/RUB) -- */
.currency-toggle {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  margin-top: 20px;
  padding: 4px;
  background: rgba(255, 255, 255, .04);
  border: 1px solid var(--glass-border);
  border-radius: 999px;
  flex-wrap: wrap;
  justify-content: center;
}
.currency-toggle-btn {
  padding: 12px 20px; /* 2026-04-30 WCAG 2.5.5: было 7px → ~28px. Теперь ~44px. */
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: var(--text-secondary);
  font-family: 'Unbounded', cursive;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;
  cursor: pointer;
  transition: background .15s, color .15s;
}
.currency-toggle-btn:hover { color: var(--text-primary); }
.currency-toggle-btn.is-active {
  background: var(--accent);
  color: #fff;
  box-shadow: 0 0 12px var(--accent-glow);
}
.currency-toggle-btn.is-loading {
  opacity: .6;
  cursor: wait;
}
.currency-toggle-note {
  width: 100%;
  text-align: center;
  font-size: 11px;
  color: var(--text-muted);
  margin-top: 4px;
  line-height: 1.4;
}
.price-amount {
  display: flex;
  align-items: baseline;
  gap: 4px;
  margin-bottom: 28px;
  position: relative;
  z-index: 1;
}
.price-currency {
  font-size: 18px;
  color: var(--text-muted);
  font-weight: 600;
}
.price-value {
  font-family: 'Unbounded', cursive;
  font-size: 42px;
  font-weight: 800;
}
.price-period {
  font-size: 16px;
  color: var(--text-muted);
  font-weight: 500;
  white-space: nowrap;
}
.price-features {
  list-style: none;
  margin-bottom: 28px;
  position: relative;
  z-index: 1;
}
.price-features li {
  padding: 9px 0;
  font-size: 14px;
  color: var(--text-secondary);
  border-bottom: 1px solid rgba(255, 255, 255, .03);
  display: flex;
  align-items: center;
  gap: 10px;
}
.price-check {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--accent-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.price-check svg { width: 10px; height: 10px; stroke: var(--accent); fill: none; stroke-width: 2 }
.price-btn {
  display: block;
  text-align: center;
  width: 100%;
  padding: 14px 24px;
  border-radius: var(--r-m);
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: all .3s var(--ease);
  position: relative;
  z-index: 1;
  cursor: pointer;
  border: none;
}
.price-btn-outline {
  background: transparent;
  color: var(--text-primary);
  border: 1px solid var(--glass-border-h);
}
.price-btn-outline:hover {
  border-color: var(--accent);
  color: var(--accent);
  background: var(--accent-soft);
}
.price-btn-filled {
  background: var(--accent);
  color: #fff;
}
.price-btn-filled:hover {
  background: #ff4a8f;
  box-shadow: 0 8px 30px var(--accent-glow);
  transform: translateY(-2px);
}

/* -- "БЕЗ ОЧЕРЕДИ" ribbon on featured tier -- */
.price-card.featured { padding-top: 72px; }
.no-queue-ribbon {
  position: absolute;
  top: 14px;
  left: 50%;
  transform: translateX(-50%);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 22px;
  border-radius: 999px;
  background: linear-gradient(92deg, #ff2d7b, #ff6b9d, #ff2d7b);
  background-size: 200% 100%;
  color: #fff;
  font-family: 'Unbounded', cursive;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  box-shadow: 0 6px 24px rgba(255, 45, 123, .45), 0 0 0 1px rgba(255, 255, 255, .15) inset;
  white-space: nowrap;
  z-index: 3;
  animation: noQueueShine 3.2s linear infinite, noQueuePulse 2s ease-in-out infinite;
}
.no-queue-ribbon::before {
  content: '';
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 0 10px #fff;
  animation: noQueueBlink 1.2s ease-in-out infinite;
}
@keyframes noQueueShine { 0% { background-position: 0% 50% } 100% { background-position: 200% 50% } }
@keyframes noQueuePulse { 0%, 100% { box-shadow: 0 6px 24px rgba(255, 45, 123, .45), 0 0 0 1px rgba(255, 255, 255, .15) inset } 50% { box-shadow: 0 8px 36px rgba(255, 45, 123, .75), 0 0 0 1px rgba(255, 255, 255, .25) inset } }
@keyframes noQueueBlink { 0%, 100% { opacity: 1 } 50% { opacity: .35 } }

/* -- Payment modal -- */
.pay-modal-backdrop {
  position: fixed;
  inset: 0;
  /* 2026-04-29: заменили backdrop-filter blur(12px) → blur(6px) + увеличили
     opacity background. blur пересчитывался при ЛЮБОМ hover на children
     (.pay-method, .pay-modal-close), что давало 30fps лаг анимации. blur(6px)
     дешевле в 4x и достаточно прячет фоновый контент. */
  background: rgba(5, 5, 12, .88);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  opacity: 0;
  transition: opacity .25s var(--ease);
  padding: 20px;
}
.pay-modal-backdrop.open { display: flex; opacity: 1; }
.pay-modal {
  background: var(--bg-card);
  border: 1px solid var(--glass-border);
  border-radius: var(--r-l);
  max-width: 520px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  padding: 32px 28px;
  position: relative;
  transform: scale(.96) translateY(10px);
  transition: transform .3s var(--ease);
  box-shadow: 0 24px 80px rgba(0, 0, 0, .6), 0 0 0 1px rgba(255, 45, 123, .1);
}
.pay-modal-backdrop.open .pay-modal { transform: scale(1) translateY(0); }
.pay-modal-close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 44px; /* 2026-04-30 WCAG 2.5.5: было 36px, нужно 44px */
  height: 44px;
  border-radius: 50%;
  background: transparent;
  border: 1px solid var(--glass-border);
  color: var(--text-secondary);
  cursor: pointer;
  font-size: 20px;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  /* 2026-04-29: было transition:all - каждый hover форсил layout recalc
     родительской модалки + backdrop blur recompose. Композит-friendly
     properties only - рендер через GPU compositor без layout-trash. */
  transition: border-color .15s var(--ease), background-color .15s var(--ease), color .15s var(--ease);
}
.pay-modal-close:hover { border-color: var(--accent); color: var(--accent); background: var(--accent-soft); }
.pay-modal-title {
  font-family: 'Unbounded', cursive;
  font-size: 22px;
  font-weight: 800;
  margin-bottom: 6px;
}
.pay-modal-sub { font-size: 13px; color: var(--text-secondary); margin-bottom: 22px; }
.pay-modal-tier-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 12px;
  border-radius: 999px;
  background: var(--accent-soft);
  color: var(--accent);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 14px;
}
.pay-group-title {
  font-family: 'Unbounded', cursive;
  font-size: 12px;
  font-weight: 700;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin: 22px 0 10px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.pay-group-title::before {
  content: '///';
  font-size: 10px;
  letter-spacing: 1.5px;
  opacity: .7;
}
.pay-group-title-alt { color: var(--text-secondary); }
.pay-group-title-alt::before { color: var(--text-muted); }
.pay-group-title:first-of-type { margin-top: 6px; }
.pay-group-note {
  font-size: 12px;
  color: var(--text-muted);
  margin: -4px 0 10px;
  line-height: 1.55;
}
.pay-methods { display: grid; gap: 10px; }
.pay-method {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 18px;
  background: var(--bg-base);
  border: 1px solid var(--glass-border);
  border-radius: var(--r-m);
  cursor: pointer;
  text-decoration: none;
  color: var(--text-primary);
  /* 2026-04-29: было transition: all .2s - это дорого, форсит layout/repaint
     всех полей (margin/padding/font и пр.) на hover. Меняем на конкретные
     свойства (background, border-color, transform) которые рендерятся через
     compositor - без layout-trash. translate3d форсит GPU layer. */
  transition: background-color .15s var(--ease), border-color .15s var(--ease), transform .15s var(--ease);
  will-change: transform;
  text-align: left;
  font: inherit;
  width: 100%;
  position: relative;
}
.pay-method.pay-method-recommended {
  border-color: var(--accent);
  background: var(--accent-soft);
}
.pay-method-badge {
  position: absolute;
  top: -9px;
  right: 14px;
  background: var(--accent);
  color: #000;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .5px;
  padding: 2px 8px;
  border-radius: 10px;
  text-transform: uppercase;
  pointer-events: none;
}
/* Inline нейтральная пометка "рекомендуем" - без рамок/фона/state-leak */
.pay-method-hint {
  display: inline-block;
  margin-left: 8px;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .5px;
  text-transform: uppercase;
  color: var(--accent);
  vertical-align: middle;
  opacity: .9;
}
.pay-method:hover:not(.pay-method-soon) {
  border-color: var(--accent);
  background: var(--accent-soft);
  transform: translate3d(2px, 0, 0);
}
.pay-method-icon {
  width: 42px;
  height: 42px;
  border-radius: var(--r-s);
  background: var(--accent-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--accent);
  font-size: 22px;
}
.pay-method-icon svg { width: 22px; height: 22px; stroke: currentColor; fill: none; stroke-width: 1.8; }
.pay-method-body { flex: 1; min-width: 0; }
.pay-method-name { font-weight: 700; font-size: 15px; margin-bottom: 2px; font-family: 'Unbounded', cursive; }
.pay-method-desc { font-size: 12px; color: var(--text-secondary); line-height: 1.4; }
.pay-method-arrow { color: var(--text-muted); font-size: 20px; flex-shrink: 0; }
.pay-method-soon { opacity: .55; cursor: not-allowed; }
.pay-method-soon .pay-method-arrow { display: none; }
.pay-method-soon-badge {
  display: inline-block;
  margin-top: 4px;
  padding: 2px 8px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  background: rgba(255, 255, 255, .06);
  color: var(--text-muted);
  border-radius: 4px;
}
.pay-crypto-form {
  margin-top: -4px;
  margin-bottom: 8px;
  padding: 16px;
  background: rgba(255, 255, 255, .03);
  border: 1px solid var(--glass-border);
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.pay-crypto-form-title {
  font-size: 14px;
  font-weight: 700;
  color: var(--text-primary);
}
.pay-crypto-form-desc {
  font-size: 12px;
  color: var(--text-secondary);
  margin-bottom: 4px;
}
.pay-crypto-field {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.pay-crypto-label {
  font-size: 11px;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
}
.pay-crypto-field input {
  padding: 10px 12px;
  font-size: 14px;
  background: rgba(0, 0, 0, .25);
  border: 1px solid var(--glass-border);
  border-radius: 8px;
  color: var(--text-primary);
  outline: none;
  transition: border-color .15s;
  font-family: inherit;
}
.pay-crypto-field input:focus {
  border-color: var(--accent);
}
.pay-crypto-error {
  padding: 8px 12px;
  background: rgba(255, 80, 80, .1);
  border: 1px solid rgba(255, 80, 80, .3);
  border-radius: 6px;
  color: #ff8080;
  font-size: 12px;
}
.pay-crypto-submit {
  padding: 12px 16px;
  font-size: 14px;
  font-weight: 700;
  background: var(--accent);
  color: #000;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: opacity .15s;
  font-family: inherit;
  letter-spacing: .5px;
}
.pay-crypto-submit:hover { opacity: .85; }
.pay-crypto-submit:disabled {
  opacity: .5;
  cursor: wait;
}
.pay-crypto-note {
  font-size: 11px;
  color: var(--text-muted);
  line-height: 1.5;
  text-align: center;
}
.pay-modal-foot {
  margin-top: 18px;
  padding-top: 16px;
  border-top: 1px solid var(--glass-border);
  font-size: 11px;
  color: var(--text-muted);
  text-align: center;
  line-height: 1.6;
}
.pay-modal-foot a { color: var(--accent); text-decoration: none; }
.pay-modal-foot a:hover { text-decoration: underline; }
@media(max-width:480px) {
  .pay-modal { padding: 24px 20px; }
  .pay-modal-title { font-size: 18px; }
  .no-queue-ribbon { font-size: 12px; padding: 8px 16px; letter-spacing: 2px; }
}

/* -- Pricing offers block under tariffs -- */
.pricing-offers {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  max-width: 980px;
  margin: 56px auto 0;
}
.pricing-offer {
  position: relative;
  display: flex;
  align-items: flex-start;
  gap: 22px;
  padding: 32px 32px 32px 28px;
  border-radius: var(--r-l);
  background: var(--bg-card);
  border: 1px solid var(--glass-border);
  overflow: hidden;
  isolation: isolate;
  transition: border-color .3s, transform .3s var(--ease), box-shadow .3s;
}
.pricing-offer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
  z-index: 2;
}
.pricing-offer::after {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--noise);
  opacity: .12;
  pointer-events: none;
  border-radius: var(--r-l);
  z-index: 0;
}
.pricing-offer > * { position: relative; z-index: 1; }
.pricing-offer:hover {
  border-color: rgba(255, 45, 123, .45);
  transform: translateY(-4px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, .35), 0 0 40px rgba(255, 45, 123, .12);
}
.pricing-offer-icon {
  flex-shrink: 0;
  width: 54px;
  height: 54px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(255,45,123,.18), rgba(255,45,123,.04));
  border: 1px solid rgba(255, 45, 123, .3);
  color: var(--accent);
  box-shadow: inset 0 0 20px rgba(255, 45, 123, .12);
}
.pricing-offer-icon svg {
  width: 26px;
  height: 26px;
}
.pricing-offer-body { flex: 1; min-width: 0; }
.pricing-offer-eyebrow {
  font-size: 11px;
  font-weight: 700;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 10px;
}
.pricing-offer-title {
  font-family: 'Unbounded', cursive;
  font-size: 18px;
  font-weight: 700;
  color: var(--text-primary);
  line-height: 1.3;
  margin: 0 0 10px;
}
.pricing-offer-text {
  font-size: 14px;
  line-height: 1.6;
  color: var(--text-secondary);
  margin: 0;
}
.pricing-offer-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 16px;
  padding: 10px 18px;
  border-radius: 999px;
  border: 1px solid rgba(255, 45, 123, .4);
  font-family: 'Unbounded', cursive;
  font-size: 12px;
  font-weight: 700;
  color: var(--accent);
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  transition: background .2s, border-color .2s, transform .2s;
}
.pricing-offer-link:hover {
  background: var(--accent);
  color: #fff;
  border-color: var(--accent);
  transform: translateX(2px);
}
.pricing-offer-link span { transition: transform .2s; display: inline-block; }
.pricing-offer-link:hover span { transform: translateX(3px); }
@media(max-width:880px) {
  .pricing-offers { grid-template-columns: 1fr; gap: 14px; margin-top: 40px; }
  .pricing-offer { padding: 24px 22px; gap: 18px; }
  .pricing-offer-icon { width: 46px; height: 46px; border-radius: 14px; }
  .pricing-offer-icon svg { width: 22px; height: 22px; }
  .pricing-offer-title { font-size: 16px; }
}

/* -- Promo input inside crypto pay form -- */
.pay-crypto-promo {
  display: flex;
  gap: 8px;
  align-items: stretch;
  margin-top: 6px;
}
.pay-crypto-promo input {
  flex: 1;
  min-width: 0;
  padding: 10px 12px;
  background: rgba(0,0,0,.35);
  border: 1px solid var(--glass-border);
  border-radius: 8px;
  color: var(--text-primary);
  font-size: 14px;
  font-family: inherit;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.pay-crypto-promo input:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 2px var(--accent-soft);
}
.pay-crypto-promo-btn {
  flex-shrink: 0;
  padding: 10px 14px;
  border: 1px solid var(--accent);
  border-radius: 8px;
  background: transparent;
  color: var(--accent);
  font-weight: 700;
  font-size: 13px;
  cursor: pointer;
  transition: background .15s, color .15s;
}
.pay-crypto-promo-btn:hover { background: var(--accent-soft); }
.pay-crypto-promo-btn:disabled { opacity: .5; cursor: wait; }
.pay-crypto-promo-status {
  margin-top: 8px;
  padding: 8px 12px;
  border-radius: 8px;
  font-size: 13px;
  line-height: 1.4;
}
.pay-crypto-promo-status.ok {
  background: rgba(0, 255, 136, .1);
  border: 1px solid rgba(0, 255, 136, .35);
  color: #7ff7bb;
}
.pay-crypto-promo-status.err {
  background: rgba(255, 70, 70, .1);
  border: 1px solid rgba(255, 70, 70, .35);
  color: #ff8a8a;
}
.pay-modal-tier-badge .tier-old {
  text-decoration: line-through;
  opacity: .55;
  margin-right: 6px;
  font-weight: 600;
}
.pay-modal-tier-badge .tier-save {
  margin-left: 8px;
  font-size: 11px;
  padding: 2px 8px;
  border-radius: 999px;
  background: rgba(0, 255, 136, .18);
  color: #7ff7bb;
  font-weight: 700;
  letter-spacing: .5px;
}

/* -- FAQ -- */
.faq-section {
  background: var(--bg-base);
  position: relative;
  overflow: hidden;
}
.faq-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--noise);
  opacity: .3;
  pointer-events: none;
}
.faq-list {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--glass-border);
  border-radius: var(--r-l);
  margin-bottom: 12px;
  overflow: hidden;
  transition: border-color .3s;
}
.faq-item:hover {
  border-color: var(--glass-border-h);
}
.faq-item.active {
  border-color: rgba(255, 45, 123, .2);
}
.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  cursor: pointer;
  gap: 16px;
  background: none;
  border: none;
  width: 100%;
  text-align: left;
  color: var(--text-primary);
  font-size: 15px;
  font-weight: 600;
  font-family: inherit;
  line-height: 1.4;
}
.faq-question:hover {
  color: var(--accent);
}
.faq-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--accent-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--accent);
  font-size: 18px;
  font-weight: 300;
  transition: transform .3s var(--ease), background .3s;
  line-height: 1;
}
.faq-item.active .faq-icon {
  transform: rotate(45deg);
  background: var(--accent);
  color: #fff;
}
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height .35s var(--ease), padding .35s var(--ease);
}
.faq-answer-inner {
  padding: 0 24px 20px;
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.7;
}

/* -- PARTNER -- */
.partner-section {
  background: var(--bg-deep);
  position: relative;
  overflow: hidden;
}
.partner-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--noise);
  opacity: .3;
  pointer-events: none;
}
.partner-inner-wrap {
  position: relative;
  z-index: 1;
  border-radius: calc(var(--r-xl) + 2px);
  padding: 2px;
  background: conic-gradient(from var(--glow-angle), transparent 0%, var(--accent) 10%, rgba(160,40,200,.6) 15%, transparent 25%);
  animation: borderGlow 5s linear infinite;
}
.partner-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  background: var(--bg-card);
  border-radius: var(--r-xl);
  padding: 60px;
  overflow: hidden;
}
.partner-inner::after {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--noise);
  opacity: .15;
  pointer-events: none;
  border-radius: var(--r-xl);
}
.partner-text {
  position: relative;
  z-index: 1;
}
.partner-text .section-tag { margin-bottom: 12px }
.partner-text .section-title { margin-bottom: 16px }
.partner-text p {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 28px;
}
.partner-visual {
  display: flex;
  gap: 32px;
  justify-content: center;
  position: relative;
  z-index: 1;
}
.partner-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}
.partner-stat-num {
  font-family: 'Unbounded', cursive;
  font-size: clamp(36px, 4vw, 56px);
  font-weight: 800;
  color: var(--accent);
  line-height: 1;
  display: inline-flex;
  align-items: baseline;
  gap: 10px;
}
.partner-stat-prefix {
  font-size: .38em;
  font-weight: 700;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  line-height: 1;
  margin-right: 4px;
}
.partner-stat-label {
  font-size: 13px;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 2px;
}

/* -- SOON / TWEAKER SECTION -- */
.soon-section {
  text-align: center;
  position: relative;
  overflow: hidden;
}
.soon-inner {
  position: relative;
  z-index: 1;
  max-width: 700px;
  margin: 0 auto;
}
.soon-badge {
  display: inline-block;
  background: var(--accent-soft);
  border: 1px solid rgba(255, 45, 123, .2);
  color: var(--accent);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  padding: 6px 16px;
  border-radius: 100px;
  margin-bottom: 20px;
}
.soon-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}
.soon-info { position: relative; z-index: 1; text-align: left }
.soon-features {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 20px;
}
.soon-features span {
  background: var(--bg-card);
  border: 1px solid var(--glass-border);
  padding: 8px 18px;
  border-radius: var(--r-s);
  font-size: 13px;
  color: var(--text-secondary);
}

/* -- CTA -- */
.cta-section {
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 50% 50% at 50% 50%, rgba(255, 45, 123, .12), transparent 70%);
  pointer-events: none;
}
.cta-inner {
  position: relative;
  z-index: 1;
  max-width: 640px;
  margin: 0 auto;
}
.cta-section h2 {
  font-family: 'Unbounded', cursive;
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 4px;
}
.cta-section p {
  font-size: 16px;
  color: var(--text-secondary);
  margin-bottom: 36px;
  line-height: 1.7;
}

/* -- FOOTER -- */
footer {
  padding: 56px 0 32px;
  background: var(--bg-deep);
  border-top: 1px solid var(--glass-border);
}
.footer-inner {
  display: grid;
  grid-template-columns: minmax(220px, 1fr) 2fr;
  gap: 48px;
  align-items: start;
}
.footer-brand { max-width: 300px }
.footer-brand-name { margin-bottom: 12px }
.footer-brand-name img { display: block; height: 28px; width: auto }
.footer-brand p {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.6;
  margin: 0;
}
.footer-links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 0;
  margin: 0;
}
.footer-col a {
  font-size: 13px;
  color: var(--text-muted);
  text-decoration: none;
  transition: color .2s;
  line-height: 1.4;
}
.footer-col a:hover { color: var(--accent) }
@media (max-width: 760px) {
  .footer-inner { grid-template-columns: 1fr; gap: 32px; }
  .footer-links { grid-template-columns: repeat(2, 1fr); gap: 24px; }
}
@media (max-width: 480px) {
  .footer-links { grid-template-columns: 1fr; gap: 18px; }
}
.footer-separator {
  grid-column: 1 / -1;
  text-align: center;
  color: var(--accent);
  opacity: .25;
  letter-spacing: 8px;
  font-size: 12px;
  font-weight: 700;
  margin-top: 36px;
  padding-top: 24px;
  border-top: 1px solid var(--glass-border);
}

/* -- TERMINAL WINDOW (tweaker) -- */
.terminal-window {
  border-radius: var(--r-l);
  overflow: hidden;
  background: #1a1a2e;
  border: 1px solid var(--glass-border);
  position: relative;
  z-index: 1;
}
.terminal-titlebar {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 16px;
  background: rgba(255,255,255,.03);
  border-bottom: 1px solid var(--glass-border);
}
.terminal-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
}
.terminal-title {
  font-size: 12px;
  color: var(--text-muted);
  letter-spacing: 1px;
  margin-left: auto;
  margin-right: auto;
}
.terminal-body {
  padding: 40px;
  min-height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.terminal-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  color: var(--text-muted);
}
.terminal-placeholder svg {
  opacity: .3;
}
.terminal-placeholder span {
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  opacity: .4;
}

/* -- MOBILE -- */
@media (max-width: 1024px) {
  .hero-content { grid-template-columns: 1fr }
  .hero-visual-wrap { max-width: 500px }
  .pricing-grid { grid-template-columns: repeat(2, 1fr) }
  /* .influencers-grid теперь horizontal scroll-row, grid правила больше не нужны */
  .partner-inner {
    grid-template-columns: 1fr;
    padding: 40px;
    text-align: center;
  }
  .partner-text { text-align: left }
}
@media (max-width: 768px) {
  .nav-links { display: none }
  .nav-btns { gap: 8px }
  .nav-btns .btn-outline { display: none }
  section { padding: 64px 0 }
  .section-title { font-size: clamp(22px, 5vw, 32px) }
  .section-header { margin-bottom: 40px }
  .hero { padding: 80px 0 32px; min-height: auto }
  .hero h1 { font-size: clamp(28px, 7vw, 42px) }
  .hero-desc { font-size: 14px }
  .hero-socials { gap: 10px }
  .hero-social-link { width: 36px; height: 36px }
  .hero-visual { aspect-ratio: 16/10 }
  .feature-card { flex: 0 0 280px }
  .feature-img { height: 140px }
  .feature-body { padding: 20px }
  .feature-body h3 { font-size: 14px }
  .feature-body p { font-size: 13px }
  .pricing-grid { grid-template-columns: 1fr }
  .price-card { padding: 28px 20px }
  .ecosystem-grid { grid-template-columns: 1fr }
  .eco-card { padding: 0 }
  .eco-body { padding: 20px }
  .eco-img { height: 150px }
  .security-inner {
    grid-template-columns: 1fr;
    padding: 28px 20px;
    gap: 24px;
  }
  .footer-inner { flex-direction: column; text-align: center; gap: 24px }
  .footer-links { flex-direction: column; gap: 12px }
  .footer-col ul { justify-content: center; flex-wrap: wrap }
  .soon-layout { grid-template-columns: 1fr }
  .bg-graffiti { font-size: clamp(60px, 18vw, 120px) }
  .influencers-grid { gap: 12px }
  .influencer-card { padding: 20px 16px }
  .faq-list { max-width: 100% }
  .faq-question { font-size: 14px; padding: 16px }
  .faq-answer-inner { padding: 0 16px 16px; font-size: 13px }
  .partner-inner {
    grid-template-columns: 1fr;
    padding: 28px 20px;
  }
  .review-card {
    min-width: 280px;
    max-width: 280px;
  }
  .review-text { font-size: 13px }
  .cta-section h2 { font-size: clamp(22px, 5vw, 36px) }
  .cta-section p { font-size: 14px }
  .preloader-logo img { width: 200px; height: auto }
  .preloader-terminal { font-size: 10px; min-height: 70px }
}
@media (max-width: 480px) {
  .hero { padding: 72px 0 24px }
  .hero h1 { font-size: clamp(24px, 8vw, 32px) }
  .hero-sub { font-size: clamp(13px, 3.5vw, 18px) }
  .hero-desc { font-size: 13px; margin-bottom: 24px }
  .hero-actions { flex-direction: column; align-items: stretch }
  .btn-primary, .btn-outline { justify-content: center; font-size: 14px }
  /* .influencers-grid - horizontal scroll. max-width убран чтобы все карточки помещались в строку */
  .feature-card { flex: 0 0 260px }
  section { padding: 48px 0 }
  .trust-bar { padding: 10px 0 }
  .trust-item { font-size: 10px; letter-spacing: 4px; padding: 0 12px }
  .nav-logo img { height: 26px }
  .nav-cta { padding: 10px 16px; font-size: 12px; min-height: 44px } /* WCAG touch-target preserved on mobile */
  .container { padding: 0 16px }
  .bg-graffiti { font-size: clamp(40px, 14vw, 80px); opacity: .08 }
  .graffiti-soon { left: 2% }
}

/* --- Tier progress bar - visual only, no text label (2026-04-23 step 1 v2) --- */
.tier-progress {
  display: flex;
  gap: 6px;
  margin: 0 0 26px;
  padding: 10px 12px;
  background: rgba(255, 255, 255, .025);
  border: 1px solid var(--glass-border);
  border-radius: 10px;
  position: relative;
  z-index: 1;
}
.tier-progress-seg {
  flex: 1;
  height: 14px;
  background: rgba(255, 255, 255, .06);
  border-radius: 4px;
  position: relative;
  transition: background .35s var(--ease), box-shadow .35s var(--ease);
}
.tier-progress-seg.on {
  background: linear-gradient(180deg, #ff4a8f 0%, var(--accent) 100%);
  box-shadow: 0 0 16px rgba(255, 45, 123, .45), inset 0 1px 0 rgba(255, 255, 255, .25);
}
.tier-progress-seg.on::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 4px;
  background: linear-gradient(180deg, rgba(255, 255, 255, .18), transparent 40%);
  pointer-events: none;
}
/* Featured (Competitive) - slightly lighter background frame to match card gradient */
.price-card.featured .tier-progress { background: rgba(255, 45, 123, .04); border-color: rgba(255, 45, 123, .18); }
/* Elite (6/6) - add a soft outer halo to signal "full" without a text label */
.tier-progress-full {
  background: rgba(255, 45, 123, .06);
  border-color: rgba(255, 45, 123, .28);
  box-shadow: 0 0 24px rgba(255, 45, 123, .15);
}

/* === TARIFF HELPER (brand-native, 2026-04-30) - компактный блок после pricing === */
.tariff-helper {
  margin-top: 64px;
  padding: 36px 36px;
  background: var(--bg-card);
  border: 1px solid var(--glass-border);
  border-radius: var(--r-l);
  position: relative;
  overflow: hidden;
}
/* левая accent-полоса (как у hero) */
.tariff-helper::before {
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 3px;
  background: linear-gradient(180deg, var(--accent), transparent 80%);
}
/* мягкий glow в углу */
.tariff-helper::after {
  content: '';
  position: absolute;
  top: -40%; right: -10%;
  width: 60%; height: 200%;
  background: radial-gradient(ellipse at top right, var(--accent-soft), transparent 60%);
  pointer-events: none;
  z-index: 0;
}
/* graffiti слово сзади. z-index: 1 нужен чтобы перекрыть ::after radial gradient
   (pseudo-after рендерится поверх детей, поэтому при z=0 граффити был замаскирован
   мягким accent-glow и казался пропавшим). Inner поднят до 2 чтобы остаться сверху. */
.tariff-helper-graffiti {
  position: absolute;
  font-family: 'TagType', cursive;
  font-size: clamp(120px, 20vw, 220px);
  color: var(--accent);
  opacity: .18;
  top: 50%;
  right: -2%;
  transform: translateY(-50%) rotate(-6deg);
  pointer-events: none;
  user-select: none;
  z-index: 1;
  line-height: 1;
  white-space: nowrap;
  letter-spacing: -4px;
  /* mix-blend-mode чтобы граффити проступило поверх accent radial gradient */
  mix-blend-mode: screen;
}
.tariff-helper-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 32px;
  align-items: center;
}
.tariff-helper-text {
  max-width: 560px;
}
.tariff-helper-tag {
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 14px;
}
.tariff-helper h3 {
  font-family: 'Unbounded', cursive;
  font-size: clamp(26px, 3.4vw, 40px);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -1px;
  margin-bottom: 14px;
}
.tariff-helper h3 .accent { color: var(--accent); }
.tariff-helper p {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.5;
  margin: 0;
}
.tariff-helper-note {
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 11px !important;
  color: var(--text-muted) !important;
  letter-spacing: 1px;
  margin-top: 12px !important;
  text-transform: lowercase;
}
.tariff-helper-cta {
  flex-shrink: 0;
  align-self: center;
  white-space: nowrap;
}
@media (max-width: 768px) {
  .tariff-helper { padding: 28px 22px; margin-top: 44px; }
  .tariff-helper-inner { grid-template-columns: 1fr; gap: 22px; }
  .tariff-helper-cta { width: 100%; justify-content: center; text-align: center; }
  .tariff-helper-graffiti { font-size: clamp(80px, 28vw, 140px); right: -8%; }
}

/* === HERO OUTCOMES (P1, 2026-04-30) - outcome-line под главной CTA === */
.hero-outcomes {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 22px;
  padding: 0;
  font-size: 14px;
  line-height: 1.5;
  max-width: 480px;
}
.hero-outcomes li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  color: var(--text-secondary);
}
.hero-outcomes strong { color: var(--text-primary); font-weight: 600; }
.hero-outcome-icon {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--accent-soft);
  color: var(--accent);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 13px;
  font-family: 'Unbounded', cursive;
  border: 1px solid var(--accent-glow);
}
@media (max-width: 768px) {
  .hero-outcomes { font-size: 13px; gap: 6px; }
  .hero-outcomes li { gap: 10px; }
}

/* === MAY BANNER (2026-04-30) - публичная скидка мая, скидка авто в localStorage === */
.may-banner {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  justify-content: center;
  margin: 0 auto 32px;
  padding: 12px 22px;
  background: linear-gradient(90deg, var(--accent-soft), transparent 70%);
  border: 1px dashed var(--accent-glow);
  border-radius: 999px;
  max-width: 720px;
}
.may-banner-tag {
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--accent);
}
.may-banner-text {
  font-size: 14px;
  color: var(--text-secondary);
  flex: 1;
  text-align: center;
  min-width: 200px;
}
.may-banner-text strong.accent { color: var(--accent); font-weight: 700; }
.may-banner-note { font-size: 12.5px; color: var(--text-muted); }
@media (max-width: 600px) {
  .may-banner { padding: 10px 16px; }
  .may-banner-text { font-size: 13px; }
}
/* 2026-05-01: НЕ прячем may-banner даже при активной партнёрке - юзер
   должен видеть что в мае идёт акция (скидка та же 10%, она применяется
   через любой код). Раньше прятали через .has-partner-promo - больше нет. */
.has-partner-promo .may-banner { display: block; }

/* === UNIFY BANNER (2026-05-02) - объединили всё в один тариф === */
.unify-banner {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  justify-content: center;
  margin: 0 auto 32px;
  padding: 14px 26px;
  background: linear-gradient(135deg, rgba(255, 45, 123, .12), rgba(255, 45, 123, .04));
  border: 1px solid var(--accent-glow);
  border-radius: 16px;
  max-width: 760px;
  position: relative;
  overflow: hidden;
}
.unify-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--noise);
  opacity: .05;
  mix-blend-mode: overlay;
  pointer-events: none;
}
.unify-banner-tag {
  font-family: 'Unbounded', cursive;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--accent);
  position: relative;
  z-index: 1;
}
.unify-banner-text {
  font-size: 14.5px;
  color: var(--text-primary);
  flex: 1;
  text-align: center;
  min-width: 220px;
  line-height: 1.55;
  position: relative;
  z-index: 1;
}
.unify-banner-text strong.accent { color: var(--accent); font-weight: 700; }
.unify-banner-note { font-size: 12.5px; color: var(--text-muted); display: block; margin-top: 4px; }
@media (max-width: 600px) {
  .unify-banner { padding: 12px 18px; }
  .unify-banner-text { font-size: 13px; }
}

/* === DISCOUNT VISUAL (2026-04-30, v3) - strike видно отчётливо, ₽ и $ выровнены по baseline === */
.price-old-strike {
  font-family: 'Unbounded', cursive;
  font-size: 18px;
  font-weight: 700;
  color: rgba(255, 255, 255, .42);
  text-decoration: line-through;
  text-decoration-color: var(--accent);
  text-decoration-thickness: 2px;
  line-height: 1.1;
  margin-bottom: 4px;
  letter-spacing: -0.3px;
  display: block;
}
.price-discount-badge {
  display: inline-flex;
  align-items: center;
  margin-left: 8px;
  background: linear-gradient(135deg, var(--accent), #ff6aa3);
  color: #fff;
  padding: 3px 9px;
  border-radius: 999px;
  font-family: 'Unbounded', cursive;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2px;
  line-height: 1;
  box-shadow: 0 2px 8px var(--accent-glow);
  align-self: center;
  white-space: nowrap;
}
.price-card .price-value {
  font-size: clamp(36px, 4vw, 44px);
  letter-spacing: -1.5px;
  line-height: 1;
}
/* Group {value + ₽} в один inline-flex контейнер чтобы валюта НИКОГДА не
   уезжала на новую строку из-за длинных RUB чисел типа "7 999 ₽". Раньше
   .price-suffix был отдельным flex-child .price-amount и при flex-wrap
   валюта могла отвалиться вниз на узких карточках. */
.price-num {
  display: inline-flex;
  align-items: baseline;
  gap: 4px;
  white-space: nowrap;
  line-height: 1;
}
.price-suffix {
  font-family: 'Unbounded', cursive;
  font-size: 0.62em;
  font-weight: 700;
  color: var(--text-secondary);
  letter-spacing: 0;
  line-height: 1;
  white-space: nowrap;
}
.price-suffix:empty {
  display: none;
}
/* badge может вылетать на новую строку при узких карточках - это OK,
   а вот {value+₽} обязан остаться в одной строке. */
.price-amount {
  flex-wrap: wrap;
  row-gap: 4px;
}

/* Лёгкое граффити над pricing-grid - аккуратно, не тянет фокус */
.pricing-section {
  position: relative;
}
.pricing-section .graffiti-sale {
  position: absolute;
  top: 14%;
  right: 3%;
  font-family: 'TagType', cursive;
  font-size: clamp(50px, 7vw, 90px);
  color: var(--accent);
  opacity: .05;
  pointer-events: none;
  user-select: none;
  z-index: 0;
  line-height: 1;
  transform: rotate(-7deg);
  letter-spacing: -2px;
  white-space: nowrap;
}
.pricing-section .graffiti-deal {
  position: absolute;
  top: 62%;
  left: 2%;
  font-family: 'a dripping marker', cursive;
  font-size: clamp(36px, 5vw, 60px);
  color: var(--accent);
  opacity: .045;
  pointer-events: none;
  user-select: none;
  z-index: 0;
  line-height: 1;
  transform: rotate(4deg);
  white-space: nowrap;
}

@media (max-width: 600px) {
  .price-old-strike { font-size: 16px; }
  .price-discount-badge { font-size: 10px; padding: 3px 7px; margin-left: 6px; }
  .price-card .price-value { font-size: clamp(32px, 9vw, 40px); }
  .price-suffix { font-size: 0.55em; }
  .price-period { font-size: 14px; }
  .pricing-section .graffiti-sale { right: -3%; opacity: .04; }
  .pricing-section .graffiti-deal { left: -4%; opacity: .035; }
}

/* ============================================================
   2026-04-30 PERF: mobile + slow-network optimizations.
   - Отключаем backdrop-filter (тяжёлая GPU-операция, тормозит scroll
     на дешёвых mobile GPU и старых Android Chrome)
   - Отключаем body::after noise overlay (дублирует mix-blend-mode на
     каждом frame)
   - Отключаем некритичные animations
   ============================================================ */
@media (max-width: 720px) {
  /* mobile: kill backdrop-filter везде. Visually почти неотличимо при
     уже dark-themed бэкграундах, но frame-rate +20-30%. */
  *, *::before, *::after {
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
  }
  /* body::after noise добавляет paint-cost на каждый scroll/resize */
  body::after {
    opacity: 0.15 !important;
  }
  /* preloader-terminal mono-font heavy на старых девайсах - упрощаем */
  .preloader-terminal { font-size: 10px; }
}

/* prefers-reduced-data hint - юзеры с экономией трафика */
@media (prefers-reduced-data: reduce) {
  body::before, body::after { display: none; }
  .bg-graffiti { display: none; }
  *, *::before, *::after {
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
  }
}

/* ============================================================
   2026-04-30 ULTRA-WIDE: 2K (≥1920px) и 4K (≥2560px) поддержка.
   - clamp() font-size в :root уже скейлит текст пропорционально
   - container расширен до 1440px max
   - На 4K дополнительно увеличиваем gap'ы и hero-visual
   ============================================================ */
@media (min-width: 1920px) {
  /* На 2K: hero typography чуть крупнее чтобы не выглядела крошечной */
  .hero h1 { font-size: clamp(48px, 4.5vw, 80px); }
  .hero-desc { font-size: clamp(16px, 1.1vw, 22px); }
  .section-title { font-size: clamp(32px, 3vw, 56px); }
  /* Pricing card на 2K не должна быть супер-широкой */
  .pricing-grid.pricing-grid-1col { max-width: 720px; }
}
@media (min-width: 2560px) {
  /* 4K: ещё немного увеличиваем */
  .hero h1 { font-size: clamp(56px, 4vw, 96px); }
  .pricing-grid.pricing-grid-1col { max-width: 800px; }
  /* Hero-visual на 4K в портретной композиции даёт пустое пространство -
     ограничиваем чтобы не растягивался */
  .hero-visual-wrap { max-width: 720px; }
}

/* ============================================================
   2026-04-30 PHASE-2: закрываем findings от двух агентов аудита.
   ============================================================ */

/* Ultra-wide ramp - убираем "click" jump между 1280-1920px:
   base .hero h1 max был 64px, override на 1920+ скакал до 80px.
   Теперь base сам поднимается до 80px, override становится smooth. */
@media (min-width: 1280px) {
  .hero h1 { font-size: clamp(38px, 5vw, 80px); }
  .section-title { font-size: clamp(28px, 3.5vw, 56px); }
}

/* На 2K pricing card slightly bigger, на 4K заметно крупнее. */
@media (min-width: 2560px) {
  .pricing-grid.pricing-grid-1col { max-width: 960px; }
  /* hero min-height не растягиваем на 4K с короткими экранами 21:9. */
  .hero { min-height: clamp(640px, 90vh, 1100px); }
}

/* Mobile animation kill - частая жалоба на дешёвых Android Chrome:
   conic-gradient + filter:blur infinite анимации жгут GPU. */
@media (max-width: 480px) {
  .partner-inner-wrap, .pricing-section-wrap, .hero-visual-wrap, .dl-wrap,
  .trust-marquee-track {
    animation: none !important;
  }
  /* Body::after полностью off на самых маленьких viewports. */
  body::after { display: none; }
}

/* Container padding bump: на 320px было clamp(16px,...) = 16px gutter,
   контент липнул к краю. Bump до 20px минимум. */
.container {
  padding: 0 clamp(20px, 2vw, 32px);
}

/* Hero на ultra-wide 21:9 (3440x1440) не растягиваем на 100vh -
   получался пустой gigantic hero. */
@media (min-width: 1920px) {
  .hero { min-height: clamp(640px, 75vh, 1000px); }
}

