/* MetaVPN Landing — Apple × Stripe × Linear */

:root {
  --lp-bg: #0B091F;
  --lp-bg-elevated: #13112e;
  --lp-bg-muted: #1a1730;
  --lp-text: #f0eeff;
  --lp-text-secondary: #b8b4d4;
  --lp-muted: #8a85ab;
  --lp-border: rgba(255, 255, 255, 0.08);
  --lp-border-strong: rgba(255, 255, 255, 0.14);
  --lp-accent: #0071e3;
  --lp-accent-hover: #0077ed;
  --lp-accent-soft: rgba(0, 113, 227, 0.08);
  --lp-accent-glow: rgba(0, 113, 227, 0.25);
  --lp-green: #16a34a;
  --lp-radius: 1rem;
  --lp-radius-lg: 1.25rem;
  --lp-radius-xl: 1.75rem;
  --lp-shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.04);
  --lp-shadow: 0 4px 24px rgba(0, 0, 0, 0.06), 0 1px 3px rgba(0, 0, 0, 0.04);
  --lp-shadow-lg: 0 24px 80px rgba(0, 0, 0, 0.08), 0 8px 24px rgba(0, 0, 0, 0.04);
  --lp-shadow-xl: 0 32px 100px rgba(0, 0, 0, 0.12);
  --lp-nav-h: 5rem;
  --lp-font: 'Montserrat', -apple-system, BlinkMacSystemFont, sans-serif;
  --lp-mono: 'SF Mono', ui-monospace, monospace;
  --lp-ease: cubic-bezier(0.22, 1, 0.36, 1);
  --lp-max: 96rem;
}

*, *::before, *::after { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
  max-width: 100%;
  background: var(--lp-bg);
}

body.lp {
  margin: 0;
  font-family: var(--lp-font);
  font-size: 1rem;
  line-height: 1.6;
  color: var(--lp-text);
  background: transparent;
  -webkit-font-smoothing: antialiased;
  overflow-x: clip;
  max-width: 100%;
}

body.lp::before {
  content: '';
  position: fixed;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(rgba(11, 9, 31, 0.45), rgba(11, 9, 31, 0.45)),
    url('/public/background.svg') no-repeat center top / cover,
    var(--lp-bg);
  pointer-events: none;
}

body.lp.lp-menu-open {
  overflow: hidden;
}

.lp main {
  overflow-x: clip;
  max-width: 100%;
}

.lp a:not(.lp-btn) { color: inherit; text-decoration: none; }

.lp-btn,
a.lp-btn,
a.lp-btn:visited,
a.lp-btn:hover {
  text-decoration: none;
}

.lp-container {
  width: 100%;
  max-width: var(--lp-max);
  margin: 0 auto;
  padding: 0 1.25rem;
  min-width: 0;
}

.lp-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  width: 100%;
  max-width: 100%;
  height: var(--lp-nav-h);
  background: transparent;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  border-bottom: none;
  transform: translateY(0);
  transition: transform 0.35s var(--lp-ease);
}

.lp-nav--hidden {
  transform: translateY(-100%);
}

.lp-nav--scrolled {
  background: transparent;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}

.lp-nav__inner {
  max-width: var(--lp-max);
  width: 100%;
  min-width: 0;
  margin: 0 auto;
  height: 100%;
  padding: 0 1.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

@media (min-width: 768px) {
  .lp-container { padding: 0 2rem; }
  .lp-nav__inner { padding: 0 2rem; }
}

.lp-nav__brand {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 700;
  font-size: 1.0625rem;
  letter-spacing: -0.03em;
}

.lp-nav__mark {
  width: 1.75rem;
  height: 1.75rem;
  flex-shrink: 0;
  display: block;
}

.lp-nav__links {
  display: none;
  align-items: center;
  gap: 2rem;
  font-size: 0.875rem;
  color: var(--lp-text-secondary);
}

.lp-nav__links a {
  padding: 0.25rem 0;
  transition: color 0.2s var(--lp-ease, ease);
}

.lp-nav__links a:hover { color: var(--lp-text); }

.lp-nav__actions {
  display: none;
  align-items: center;
  gap: 0.75rem;
}

.lp-nav--auth .lp-nav__actions {
  gap: 0;
}

.lp-nav__user {
  position: relative;
}

.lp-nav__user-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.625rem;
  padding: 0.3125rem 0.625rem 0.3125rem 0.375rem;
  border: 1px solid var(--lp-border);
  border-radius: 9999px;
  background: var(--lp-bg-elevated);
  cursor: pointer;
  font-family: inherit;
  transition: background 0.2s, border-color 0.2s, box-shadow 0.2s;
}

.lp-nav__user-btn:hover {
  background: var(--lp-bg-muted);
  border-color: rgba(0, 113, 227, 0.2);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.lp-nav__user-name {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--lp-text);
  max-width: 9rem;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.lp-nav__user-chevron {
  font-size: 0.625rem;
  color: var(--lp-text-secondary);
  transition: transform 0.2s;
}

.lp-nav__user-btn[aria-expanded="true"] .lp-nav__user-chevron {
  transform: rotate(180deg);
}

@media (max-width: 1023px) {
  .lp-nav__user-name { display: none; }
}

.lp-nav__avatar {
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--lp-bg-muted);
}

.lp-nav__avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.lp-nav__avatar-fallback {
  font-size: 0.875rem;
  line-height: 1;
}

.lp-nav__dropdown {
  display: none;
  position: absolute;
  top: calc(100% + 0.5rem);
  right: 0;
  min-width: 11rem;
  padding: 0.375rem;
  background: #13112e;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 0.75rem;
  box-shadow: var(--lp-shadow-lg);
  z-index: 120;
}

.lp-nav__dropdown.open {
  display: block;
}

.lp-nav__dropdown a,
.lp-nav__dropdown .lp-nav__logout {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  width: 100%;
  padding: 0.625rem 0.75rem;
  border: none;
  border-radius: 0.5rem;
  background: transparent;
  text-align: left;
  font-family: inherit;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--lp-text);
  cursor: pointer;
  text-decoration: none;
}

.lp-nav__dropdown a:hover,
.lp-nav__dropdown .lp-nav__logout:hover {
  background: var(--lp-bg-muted);
}

.lp-nav__dropdown a i,
.lp-nav__dropdown .lp-nav__logout i {
  width: 1rem;
  text-align: center;
  color: var(--lp-text-secondary);
}

.lp-nav__mobile-user {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.25rem 0.5rem 0.75rem;
}

.lp-nav__mobile-user-name {
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--lp-text);
}

.lp-nav__burger {
  display: flex;
  width: 2.5rem;
  height: 2.5rem;
  align-items: center;
  justify-content: center;
  border: none;
  border-radius: 0.625rem;
  background: transparent;
  cursor: pointer;
  color: var(--lp-text);
}

.lp-nav__burger:hover { background: var(--lp-bg-muted); }

.lp-nav__mobile {
  display: none;
  flex-direction: column;
  position: fixed;
  top: var(--lp-nav-h);
  left: 0;
  right: 0;
  background: #13112e;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: var(--lp-shadow-lg);
  padding: 0.375rem 1rem 1.25rem;
  z-index: 99;
  max-height: calc(100dvh - var(--lp-nav-h));
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}

.lp-nav__mobile.open {
  display: flex;
}

.lp-nav__mobile-links a {
  display: block;
  padding: 0.8125rem 0.5rem;
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--lp-text-secondary);
  border-bottom: 1px solid var(--lp-border);
  transition: color 0.15s;
}

.lp-nav__mobile-links a:hover,
.lp-nav__mobile-links a:focus-visible {
  color: var(--lp-text);
}

.lp-nav__mobile-links a:last-child {
  border-bottom: none;
}

.lp-nav__mobile-actions {
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
  padding: 1rem 0.5rem 0.25rem;
  margin-top: 0.5rem;
  border-top: 1px solid var(--lp-border);
}

.lp-nav__mobile-login {
  display: block;
  padding: 0.5rem 0;
  text-align: center;
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--lp-text-secondary);
}

.lp-nav__mobile-login:hover {
  color: var(--lp-text);
}

.lp-nav__mobile-actions .lp-btn {
  width: 100%;
  margin: 0;
  box-sizing: border-box;
}

.lp-nav__backdrop {
  display: none;
  position: fixed;
  inset: var(--lp-nav-h) 0 0;
  background: rgba(10, 10, 11, 0.28);
  backdrop-filter: blur(2px);
  -webkit-backdrop-filter: blur(2px);
  z-index: 98;
}

.lp-nav__backdrop.open {
  display: block;
}

@media (min-width: 900px) {
  .lp-nav__links { display: flex; }
  .lp-nav__actions { display: flex; }
  .lp-nav__burger { display: none; }
}

/* ── Buttons ── */
.lp-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.8125rem 1.5rem;
  border-radius: 0.5rem;
  font-family: inherit;
  font-size: 0.9375rem;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: transform 0.15s var(--lp-ease), box-shadow 0.2s, background 0.2s;
  white-space: nowrap;
}

.lp-btn:active { transform: scale(0.98); }

.lp-btn--primary,
a.lp-btn--primary,
a.lp-btn--primary:visited,
a.lp-btn--primary:hover {
  background: var(--lp-accent);
  color: #fff;
  box-shadow: 0 4px 14px var(--lp-accent-glow);
}

.lp-btn--primary:hover,
a.lp-btn--primary:hover {
  background: var(--lp-accent-hover);
  box-shadow: 0 8px 24px var(--lp-accent-glow);
}

.lp-btn--ghost,
a.lp-btn--ghost,
a.lp-btn--ghost:visited {
  background: var(--lp-bg-elevated);
  color: var(--lp-text);
  border: 1px solid var(--lp-border-strong);
  box-shadow: var(--lp-shadow-sm);
}

.lp-btn--ghost:hover,
a.lp-btn--ghost:hover { background: var(--lp-bg-muted); }

/* Navbar ghost — прозрачный, просто белый текст */
.lp-btn--nav-ghost,
a.lp-btn--nav-ghost,
a.lp-btn--nav-ghost:visited {
  background: transparent;
  color: rgba(255, 255, 255, 0.75);
  border: none;
  box-shadow: none;
  padding: 0.5rem 0.875rem;
  font-size: 1.0625rem;
  font-weight: 400;
}
.lp-btn--nav-ghost:hover,
a.lp-btn--nav-ghost:hover { color: #fff; background: transparent; }

/* Navbar purple — фиолетовая кнопка без большой обводки */
.lp-btn--nav-purple,
a.lp-btn--nav-purple,
a.lp-btn--nav-purple:visited {
  background: #8C4DF8;
  color: #fff;
  border: none;
  box-shadow: none;
  padding: 0.5rem 1.125rem;
  font-size: 1.0625rem;
  font-weight: 400;
  border-radius: 0.5rem;
  position: relative;
  overflow: hidden;
}
.lp-btn--nav-purple::before {
  content: '';
  position: absolute;
  bottom: -60%;
  left: 50%;
  transform: translateX(-50%);
  width: 70%;
  height: 100%;
  background: rgba(255, 255, 255, 0.45);
  border-radius: 50%;
  filter: blur(18px);
  pointer-events: none;
}
.lp-btn--nav-purple:hover,
a.lp-btn--nav-purple:hover { background: #7b3de8; }

.lp-btn--hero {
  padding: 2rem 6rem !important;
  font-size: 1.25rem !important;
  font-weight: 800 !important;
  text-transform: uppercase !important;
  border-radius: 1rem !important;
}

.lp-btn--lg {
  padding: 1rem 1.75rem;
  font-size: 1rem;
}

.lp-btn--block { width: 100%; }

/* ── Hero ── */
.lp-hero {
  position: relative;
  padding: var(--lp-nav-h) 0 4rem;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: transparent;
}

.lp-hero::before {
  display: none;
}

.lp-hero > * {
  position: relative;
  z-index: 1;
}

@media (min-width: 1024px) {
  .lp-hero {
    overflow: visible;
    padding: var(--lp-nav-h) 0 5rem;
  }
}

.lp-hero__bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.lp-hero__grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(0, 0, 0, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 0, 0, 0.03) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.5), transparent 80%);
  -webkit-mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.5), transparent 80%);
}

.lp-hero__inner {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 3rem;
  align-items: center;
  justify-items: center;
  text-align: center;
}

.lp-hero__content,
.lp-hero__visual {
  min-width: 0;
  max-width: 100%;
  width: 100%;
}

@media (max-width: 1023px) {
  .lp-hero__visual {
    display: none;
  }
}

@media (min-width: 1024px) {
  .lp-hero__inner {
    grid-template-columns: minmax(0, 1fr);
    gap: 4rem;
  }
}

.lp-hero__wave {
  position: absolute;
  bottom: 0;
  width: 70%;
  max-width: 820px;
  pointer-events: none;
  z-index: 0;
  opacity: 0.1;
  filter: brightness(0) invert(1);
}

.lp-hero__wave--left {
  left: -8%;
}

.lp-hero__wave--right {
  left: auto;
  right: -8%;
  transform-origin: center center;
  transform: scaleX(-1);
}

.lp-hero__wave--top-left {
  bottom: auto;
  top: 0;
  left: -8%;
  transform-origin: center center;
  transform: scaleY(-1);
}

.lp-hero__wave--top-right {
  bottom: auto;
  top: 0;
  left: auto;
  right: -8%;
  transform-origin: center center;
  transform: scale(-1, -1);
}

/* ── Hero badges row ── */
.lp-hero__badges {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: 1.75rem;
  flex-wrap: wrap;
}

.lp-hero__badge-pill {
  display: inline-flex;
  align-items: center;
  padding: 0.35rem 0.75rem;
  border-radius: 9999px;
  background: rgba(255, 255, 255, 0.05);
  border: none;
  font-size: 0.75rem;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.5);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  white-space: nowrap;
  letter-spacing: 0.02em;
}

.lp-hero__phone {
  display: none;
  pointer-events: none;
  user-select: none;
}

.lp-hero__phone2 {
  display: none;
  pointer-events: none;
  user-select: none;
}

@media (min-width: 1024px) {
  .lp-hero__phone {
    display: block;
    position: absolute;
    right: clamp(-6rem, -3vw, -1rem);
    bottom: 0;
    height: min(95vh, 950px);
    width: auto;
    max-width: 45vw;
    object-fit: contain;
    object-position: bottom center;
    z-index: 1;
    filter: drop-shadow(0 28px 56px rgba(0, 0, 0, 0.4));
  }

  .lp-hero__phone2 {
    display: block;
    position: absolute;
    left: clamp(-8rem, -5vw, -2rem);
    bottom: 0;
    height: min(105vh, 1050px);
    width: auto;
    max-width: 50vw;
    object-fit: contain;
    object-position: bottom center;
    z-index: 0;
    opacity: 0.35;
    filter: blur(3px) drop-shadow(0 28px 56px rgba(0, 0, 0, 0.3));
  }
}

.lp-hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.375rem 0.875rem 0.375rem 0.5rem;
  border-radius: 9999px;
  background: var(--lp-bg-elevated);
  border: 1px solid var(--lp-border);
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--lp-text-secondary);
  box-shadow: var(--lp-shadow-sm);
  margin-bottom: 1.25rem;
}

.lp-hero__badge-dot {
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 50%;
  background: var(--lp-green);
  box-shadow: 0 0 0 3px rgba(22, 163, 74, 0.2);
  animation: lp-pulse 2s ease infinite;
}

@keyframes lp-pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.6; }
}

.lp-hero__title {
  margin: 0;
  font-weight: 900;
  font-style: italic;
  letter-spacing: -0.045em;
  line-height: 0.9;
  color: #ffffff;
  text-transform: uppercase;
  text-align: center;
}

.lp-hero__title-l1 {
  font-size: clamp(2.75rem, 9vw, 8rem) !important;
  display: block;
}

.lp-hero__title-l2 {
  font-size: clamp(1.1rem, 3.75vw, 3.35rem) !important;
  display: block;
  margin-top: -0.2em;
}

.lp-hero__title span {
  color: #ffffff;
}

.lp-hero__desc {
  margin: 1.25rem auto 0;
  max-width: 32rem;
  font-size: clamp(1.0625rem, 2vw, 1.25rem);
  color: var(--lp-text-secondary);
  line-height: 1.65;
  text-align: center;
}

.lp-hero__points {
  margin: 1.75rem 0 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
  width: 100%;
  max-width: 100%;
}

.lp-hero__points li {
  display: flex;
  align-items: flex-start;
  gap: 0.625rem;
  font-size: 0.9375rem;
  color: var(--lp-text-secondary);
  width: 100%;
  max-width: 100%;
  min-width: 0;
}

.lp-hero__point-text {
  flex: 1 1 0;
  min-width: 0;
  overflow-wrap: anywhere;
  word-break: break-word;
}

.lp-hero__points li i {
  color: var(--lp-accent);
  margin-top: 0.2rem;
  flex-shrink: 0;
}

.lp-check {
  width: 1.25rem;
  height: 1.25rem;
  flex-shrink: 0;
  margin-top: 0.1rem;
  color: var(--lp-accent);
}

.lp-hero__cta {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 0.75rem;
  margin-top: 2rem;
}

.lp-hero__cta .lp-btn {
  width: 100%;
  max-width: 100%;
  min-width: 0;
  white-space: normal;
  box-sizing: border-box;
}

@media (min-width: 768px) {
  .lp-hero__cta {
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
  }

  .lp-hero__cta .lp-btn {
    width: auto;
  }
}

.lp-hero__note {
  margin: 1rem 0 0;
  font-size: 0.8125rem;
  color: var(--lp-muted);
}

.lp-hero__subnote {
  display: block;
  margin: 0.875rem 0 0;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.35);
  font-weight: 400;
  letter-spacing: 0.01em;
  text-align: center;
}

.lp-hero__cta-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 4rem;
}

.lp-stats {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.75rem;
  margin-top: 2.5rem;
  width: 100%;
}

@media (min-width: 768px) {
  .lp-stats { grid-template-columns: repeat(4, minmax(0, 1fr)); }
}

.lp-stat {
  min-width: 0;
  padding: 1rem 1.125rem;
  border-radius: var(--lp-radius);
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid var(--lp-border);
  backdrop-filter: blur(8px);
}

.lp-stat__value {
  margin: 0;
  font-size: 1.375rem;
  font-weight: 700;
  letter-spacing: -0.03em;
}

.lp-stat__label {
  margin: 0.125rem 0 0;
  font-size: 0.75rem;
  color: var(--lp-muted);
}

/* ── Hero scene illustration ── */
.lp-hero__visual {
  position: relative;
  min-height: 22rem;
}

@media (min-width: 1024px) {
  .lp-hero__visual { min-height: 32rem; }
}

.lp-hero-scene {
  position: relative;
  width: 100%;
  max-width: min(40rem, 100%);
  margin: 0 auto;
  min-height: 22rem;
  overflow: visible;
}

.lp-hero-scene__ambient {
  position: absolute;
  inset: 10% 0 0;
  background: radial-gradient(ellipse 70% 60% at 50% 40%, rgba(0, 113, 227, 0.14), transparent 70%);
  pointer-events: none;
}

/* Split scene: MacBook (back) + iPhone (front) as separate device mockups */
.lp-hero-scene--split {
  padding-bottom: 1.5rem;
}

.lp-hero-scene__mac {
  position: relative;
  z-index: 1;
  display: block;
  width: 90%;
  height: auto;
  filter: drop-shadow(0 32px 60px rgba(0, 0, 0, 0.18));
  animation: lp-hero-float 6.5s ease-in-out infinite;
}

.lp-hero-scene__phone {
  position: absolute;
  z-index: 3;
  right: 0;
  bottom: 0;
  width: 27%;
  height: auto;
  pointer-events: none;
  user-select: none;
  filter: drop-shadow(0 26px 46px rgba(0, 0, 0, 0.28));
  animation: lp-phone-bob 5.5s ease-in-out infinite;
}

@keyframes lp-hero-float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

@keyframes lp-phone-bob {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-14px); }
}

@media (min-width: 1280px) {
  .lp-hero-scene__mac { width: 88%; }
  .lp-hero-scene__phone { width: 26%; right: -0.5rem; }
}

@media (prefers-reduced-motion: reduce) {
  .lp-hero-scene__mac,
  .lp-hero-scene__phone { animation: none; }
}

.lp-hero-scene__dash {
  position: relative;
  z-index: 1;
  border-radius: 1.25rem;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(255, 255, 255, 0.9);
  box-shadow: var(--lp-shadow-xl);
  backdrop-filter: blur(16px) saturate(160%);
  -webkit-backdrop-filter: blur(16px) saturate(160%);
  overflow: hidden;
  transform: perspective(1400px) rotateY(-5deg) rotateX(2deg);
  transition: transform 0.7s var(--lp-ease);
}

.lp-hero-scene:hover .lp-hero-scene__dash {
  transform: perspective(1400px) rotateY(-2deg) rotateX(0deg);
}

.lp-hero-scene__dash-chrome {
  display: flex;
  align-items: center;
  gap: 0.375rem;
  padding: 0.7rem 0.875rem;
  background: linear-gradient(180deg, #f5f5f7, #ececef);
  border-bottom: 1px solid var(--lp-border);
}

.lp-hero-scene__dot {
  width: 0.5625rem;
  height: 0.5625rem;
  border-radius: 50%;
}

.lp-hero-scene__dot--r { background: #ff5f57; }
.lp-hero-scene__dot--y { background: #febc2e; }
.lp-hero-scene__dot--g { background: #28c840; }

.lp-hero-scene__dash-url {
  flex: 1;
  margin-left: 0.375rem;
  padding: 0.3rem 0.65rem;
  border-radius: 0.375rem;
  background: #fff;
  font-size: 0.625rem;
  color: var(--lp-muted);
  font-family: var(--lp-mono);
  border: 1px solid var(--lp-border);
}

.lp-hero-scene__dash-body {
  display: grid;
  grid-template-columns: 3.25rem 1fr;
  min-height: 17rem;
}

.lp-hero-scene__dash-nav {
  padding: 0.75rem 0.375rem;
  background: rgba(245, 245, 247, 0.9);
  border-right: 1px solid var(--lp-border);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}

.lp-hero-scene__nav-logo {
  width: 1.75rem;
  height: 1.75rem;
  border-radius: 0.5rem;
  display: block;
  object-fit: cover;
  margin-bottom: 0.25rem;
}

.lp-hero-scene__nav-item {
  width: 1.75rem;
  height: 1.75rem;
  border-radius: 0.5rem;
  background: rgba(0, 0, 0, 0.05);
}

.lp-hero-scene__nav-item--on {
  background: var(--lp-accent-soft);
  border: 1px solid rgba(0, 113, 227, 0.18);
}

.lp-hero-scene__dash-main {
  padding: 0.875rem;
}

.lp-hero-scene__dash-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 0.5rem;
  margin-bottom: 0.75rem;
}

.lp-hero-scene__dash-eyebrow {
  margin: 0;
  font-size: 0.5625rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--lp-muted);
}

.lp-hero-scene__dash-title {
  margin: 0.125rem 0 0;
  font-size: 0.8125rem;
  font-weight: 700;
}

.lp-hero-scene__pill {
  padding: 0.2rem 0.5rem;
  border-radius: 999px;
  font-size: 0.5625rem;
  font-weight: 600;
  white-space: nowrap;
}

.lp-hero-scene__pill--green {
  background: rgba(22, 163, 74, 0.1);
  color: var(--lp-green);
  border: 1px solid rgba(22, 163, 74, 0.18);
}

.lp-hero-scene__metrics {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.4375rem;
}

.lp-hero-scene__metric {
  padding: 0.5rem 0.5625rem;
  border-radius: 0.625rem;
  background: rgba(245, 245, 247, 0.85);
  border: 1px solid var(--lp-border);
}

.lp-hero-scene__metric-label {
  display: block;
  font-size: 0.5rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--lp-muted);
}

.lp-hero-scene__metric strong {
  display: block;
  margin-top: 0.125rem;
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.lp-hero-scene__metric-sub {
  display: block;
  margin-top: 0.0625rem;
  font-size: 0.5rem;
  color: var(--lp-muted);
}

.lp-hero-scene__chart-card {
  margin-top: 0.625rem;
  padding: 0.5rem;
  border-radius: 0.625rem;
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(0, 113, 227, 0.1);
}

.lp-hero-scene__chart-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.375rem;
  font-size: 0.5625rem;
  color: var(--lp-muted);
}

.lp-hero-scene__chart-val {
  font-family: var(--lp-mono);
  font-size: 0.5rem;
  color: var(--lp-accent);
}

.lp-hero-scene__chart {
  display: block;
  width: 100%;
  height: 3.5rem;
}

.lp-hero-scene__phone-img {
  position: absolute;
  z-index: 4;
  right: -1.25rem;
  bottom: -1.5rem;
  width: min(19rem, 72%);
  height: auto;
  pointer-events: none;
  user-select: none;
  transform-origin: center bottom;
  animation: lp-phone-float 5s ease-in-out infinite;
  filter: drop-shadow(0 28px 56px rgba(0, 0, 0, 0.22));
}

@media (min-width: 1024px) {
  .lp-hero__visual {
    overflow: visible;
  }

  .lp-hero-scene {
    max-width: 100%;
    min-height: 26rem;
    padding-bottom: 1.5rem;
  }

  .lp-hero-scene__phone-img {
    right: -1.75rem;
    bottom: -1.25rem;
    width: 17.5rem;
  }
}

@media (min-width: 1280px) {
  .lp-hero-scene__phone-img {
    right: -2.25rem;
    bottom: -1.5rem;
    width: 19rem;
  }
}

@keyframes lp-phone-float {
  0%, 100% { transform: translateY(0) rotate(6deg); }
  50% { transform: translateY(-12px) rotate(3deg); }
}

/* Legacy mock (showcase) */
.lp-mock-stack {
  position: relative;
  width: 100%;
  max-width: 34rem;
  margin: 0 auto;
}

.lp-mock-dash {
  border-radius: var(--lp-radius-xl);
  background: var(--lp-bg-elevated);
  border: 1px solid var(--lp-border);
  box-shadow: var(--lp-shadow-xl);
  overflow: hidden;
  transform: perspective(1200px) rotateY(-4deg) rotateX(2deg);
  transition: transform 0.6s var(--lp-ease);
}

.lp-mock-stack:hover .lp-mock-dash {
  transform: perspective(1200px) rotateY(-1deg) rotateX(0deg);
}

.lp-mock-dash__bar {
  display: flex;
  align-items: center;
  gap: 0.375rem;
  padding: 0.75rem 1rem;
  background: var(--lp-bg-muted);
  border-bottom: 1px solid var(--lp-border);
}

.lp-mock-dash__dot {
  width: 0.625rem;
  height: 0.625rem;
  border-radius: 50%;
  background: #d4d4d8;
}

.lp-mock-dash__dot:nth-child(1) { background: #fca5a5; }
.lp-mock-dash__dot:nth-child(2) { background: #fde047; }
.lp-mock-dash__dot:nth-child(3) { background: #86efac; }

.lp-mock-dash__url {
  flex: 1;
  margin-left: 0.5rem;
  padding: 0.25rem 0.75rem;
  border-radius: 0.375rem;
  background: #fff;
  font-size: 0.6875rem;
  color: var(--lp-muted);
  font-family: var(--lp-mono);
}

.lp-mock-dash__body {
  display: grid;
  grid-template-columns: 4.5rem 1fr;
  min-height: 16rem;
}

.lp-mock-dash__sidebar {
  padding: 1rem 0.5rem;
  background: #fafafa;
  border-right: 1px solid var(--lp-border);
  display: flex;
  flex-direction: column;
  gap: 0.375rem;
}

.lp-mock-dash__nav-item {
  height: 2rem;
  margin: 0 0.375rem;
  border-radius: 0.5rem;
  background: #eee;
}

.lp-mock-dash__nav-item--active {
  background: var(--lp-accent-soft);
  border: 1px solid rgba(0, 113, 227, 0.15);
}

.lp-mock-dash__main {
  padding: 1rem;
}

.lp-mock-dash__greeting {
  font-size: 0.8125rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
}

.lp-mock-dash__cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.5rem;
}

.lp-mock-dash__card {
  padding: 0.625rem;
  border-radius: 0.625rem;
  background: var(--lp-bg-muted);
  border: 1px solid var(--lp-border);
}

.lp-mock-dash__card-label {
  font-size: 0.5625rem;
  color: var(--lp-muted);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.lp-mock-dash__card-value {
  font-size: 0.875rem;
  font-weight: 700;
  margin-top: 0.125rem;
}

.lp-mock-dash__chart {
  margin-top: 0.75rem;
  height: 4rem;
  border-radius: 0.625rem;
  background: linear-gradient(180deg, var(--lp-accent-soft), transparent);
  border: 1px solid rgba(0, 113, 227, 0.1);
  position: relative;
  overflow: hidden;
}

.lp-mock-dash__chart::after {
  content: '';
  position: absolute;
  inset: auto 0 0;
  height: 60%;
  background: linear-gradient(90deg, transparent, var(--lp-accent) 30%, #5ac8fa 70%, transparent);
  opacity: 0.35;
  clip-path: polygon(0 80%, 15% 60%, 30% 70%, 45% 40%, 60% 55%, 75% 25%, 90% 45%, 100% 20%, 100% 100%, 0 100%);
}

.lp-mock-phone {
  position: absolute;
  right: -0.5rem;
  bottom: -1rem;
  width: 9.5rem;
  padding: 0.5rem;
  border-radius: 1.75rem;
  background: #1d1d1f;
  box-shadow: var(--lp-shadow-lg);
  transform: rotate(6deg);
  transition: transform 0.6s var(--lp-ease);
}

@media (min-width: 640px) {
  .lp-mock-phone {
    width: 11rem;
    right: -1rem;
    bottom: -1.5rem;
  }
}

.lp-mock-stack:hover .lp-mock-phone {
  transform: rotate(3deg) translateY(-4px);
}

.lp-mock-phone__screen {
  border-radius: 1.35rem;
  background: #fff;
  overflow: hidden;
  min-height: 14rem;
}

.lp-mock-phone__header {
  padding: 1.25rem 0.75rem 0.625rem;
  background: linear-gradient(180deg, #f5f5f7, #fff);
  text-align: center;
}

.lp-mock-phone__header h4 {
  margin: 0;
  font-size: 0.6875rem;
  font-weight: 700;
}

.lp-mock-phone__header p {
  margin: 0.125rem 0 0;
  font-size: 0.5625rem;
  color: var(--lp-muted);
}

.lp-mock-phone__servers {
  padding: 0.5rem 0.625rem 0.75rem;
}

.lp-mock-phone__server {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4375rem 0.5rem;
  border-radius: 0.5rem;
  margin-bottom: 0.25rem;
  font-size: 0.5625rem;
  font-weight: 500;
}

.lp-mock-phone__server--on {
  background: rgba(22, 163, 74, 0.08);
  color: var(--lp-green);
}

.lp-mock-phone__flag {
  font-size: 0.75rem;
}

/* ── Sections ── */
.lp-section {
  padding: 5rem 0;
}

@media (min-width: 1024px) {
  .lp-section { padding: 6.5rem 0; }
}

.lp-section--muted {
  background: var(--lp-bg-muted);
}

.lp-section--muted-clean {
  background: var(--lp-bg-muted);
}

.lp-section__head {
  text-align: center;
  max-width: 40rem;
  margin: 0 auto 3rem;
}

.lp-section__head--left {
  text-align: left;
  max-width: none;
  margin: 0 0 2rem;
}

.lp-section__title--loc {
  font-size: clamp(2.5rem, 6vw, 5rem);
  font-weight: 900;
  font-style: italic;
  letter-spacing: -0.03em;
  line-height: 0.95;
  text-transform: uppercase;
  color: #ffffff;
  margin: 0;
}

.lp-section__eyebrow {
  display: inline-block;
  margin: 0 0 0.75rem;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.38);
}

#faq .lp-section__eyebrow {
  color: rgba(255,255,255,0.38);
}

.lp-section__title {
  margin: 0;
  font-size: clamp(1.875rem, 4vw, 2.75rem);
  font-weight: 700;
  letter-spacing: -0.035em;
  line-height: 1.15;
}

.lp-section__desc {
  margin: 0.875rem 0 0;
  font-size: 1.0625rem;
  color: var(--lp-text-secondary);
}

/* ── Showcase ── */
.lp-showcase {
  display: grid;
  gap: 2rem;
  align-items: center;
}

@media (min-width: 1024px) {
  .lp-showcase { grid-template-columns: 1fr 1fr; gap: 4rem; }
}

.lp-showcase__copy h3 {
  margin: 0;
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 700;
  letter-spacing: -0.03em;
}

.lp-showcase__copy p {
  margin: 1rem 0 0;
  color: var(--lp-text-secondary);
  font-size: 1rem;
  line-height: 1.65;
}

.lp-showcase__list {
  margin: 1.5rem 0 0;
  padding: 0;
  list-style: none;
}

.lp-showcase__list li {
  display: flex;
  gap: 0.625rem;
  padding: 0.5rem 0;
  font-size: 0.9375rem;
  color: var(--lp-text-secondary);
}

.lp-showcase__list i {
  color: var(--lp-green);
  margin-top: 0.2rem;
}

.lp-showcase__frame {
  display: flex;
  justify-content: center;
}

.lp-showcase__img {
  display: block;
  width: 100%;
  height: auto;
  filter: drop-shadow(0 28px 56px rgba(0, 0, 0, 0.16));
}

/* ── Pricing ── */
.lp-pricing {
  display: grid;
  gap: 1rem;
  align-items: stretch;
  width: 100%;
  max-width: none;
  padding-top: 1.2rem;
  overflow: visible;
}

@media (min-width: 1024px) {
  .lp-pricing { grid-template-columns: repeat(3, 1fr); }
}

.lp-plan {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 2rem 1.75rem;
  border-radius: var(--lp-radius-xl);
  background: var(--lp-bg-elevated);
  border: 1px solid var(--lp-border);
  box-shadow: var(--lp-shadow);
  transition: transform 0.35s var(--lp-ease), box-shadow 0.35s;
}

.lp-plan:hover {
  transform: translateY(-4px);
  box-shadow: var(--lp-shadow-lg);
}

.lp-plan--featured {
  border: 2px solid var(--lp-accent);
  box-shadow: 0 12px 48px var(--lp-accent-glow);
}

.lp-plan__badge {
  position: absolute;
  top: -0.6875rem;
  left: 50%;
  transform: translateX(-50%);
  padding: 0.25rem 0.875rem;
  border-radius: 9999px;
  background: var(--lp-accent);
  color: #fff;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.lp-plan__name {
  margin: 0;
  font-size: 1.125rem;
  font-weight: 700;
}

.lp-plan__tagline {
  margin: 0.25rem 0 0;
  font-size: 0.875rem;
  color: var(--lp-muted);
}

.lp-plan__price-row {
  margin-top: 1.5rem;
  display: flex;
  align-items: baseline;
  gap: 0.25rem;
}

.lp-plan__price {
  font-size: 2.75rem;
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 1;
}

.lp-plan__currency {
  font-size: 1.25rem;
  font-weight: 600;
}

.lp-plan__period {
  margin-left: 0.25rem;
  font-size: 0.875rem;
  color: var(--lp-muted);
}

.lp-plan__per-month {
  margin: 0.375rem 0 0;
  font-size: 0.8125rem;
  color: var(--lp-green);
  font-weight: 500;
}

.lp-plan__price-old {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--lp-muted);
  text-decoration: line-through;
  margin-right: 0.5rem;
}

.lp-plan__discount {
  display: inline-flex;
  align-items: center;
  margin-left: 0.5rem;
  padding: 0.125rem 0.5rem;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 600;
  color: #047857;
  background: rgba(16, 185, 129, 0.12);
}

.lp-pricing-loading {
  grid-column: 1 / -1;
  text-align: center;
  color: var(--lp-muted);
  padding: 2rem 0;
}

.lp-plan__features {
  margin: 1.5rem 0;
  padding: 0;
  list-style: none;
  flex: 1;
}

.lp-plan__features li {
  display: flex;
  align-items: flex-start;
  gap: 0.625rem;
  padding: 0.4375rem 0;
  font-size: 0.9375rem;
  color: var(--lp-text-secondary);
}

.lp-plan__features i {
  color: var(--lp-accent);
  margin-top: 0.2rem;
  font-size: 0.75rem;
}

/* ── Pricing — максимальный минимализм ── */
.lp-pricing {
  gap: 0.85rem;
}
.lp-plan {
  background: rgba(255,255,255,0.06);
  border: none;
  box-shadow: none;
  border-radius: 0.75rem;
  padding: 1.6rem 1.5rem;
  transition: background 0.2s ease;
}
.lp-plan:hover {
  transform: none;
  box-shadow: none;
  background: rgba(255,255,255,0.07);
}
.lp-plan--featured {
  background: rgba(255,255,255,0.06);
  border: none;
  box-shadow: none;
}
.lp-plan__badge {
  background: rgba(255,255,255,0.08);
  color: rgba(255,255,255,0.62);
  border: 1px solid rgba(255,255,255,0.06);
  font-weight: 500;
  font-size: 0.68rem;
  letter-spacing: 0.02em;
  text-transform: none;
}
.lp-plan__name { font-size: 1.05rem; font-weight: 600; color: #fff; }
.lp-plan__tagline { color: rgba(255,255,255,0.38); font-size: 0.82rem; }
.lp-plan__price { font-size: 2.85rem; color: #fff; letter-spacing: -0.04em; font-weight: 800; }
.lp-plan__price-old { display:none; }
.lp-plan__discount { display:none; }
.lp-plan__period { color: rgba(255,255,255,0.42); font-size: 0.84rem; font-weight: 500; }
.lp-plan__per-month { color: rgba(255,255,255,0.32); font-size: 0.76rem; }
.lp-plan__features li { color: rgba(255,255,255,0.52); font-size: 0.84rem; gap: 0.55rem; }
.lp-plan__features i { color: rgba(255,255,255,0.22); font-size: 0.7rem; }
.lp-plan .lp-btn {
  min-height: 3.4rem;
  border-radius: 0.85rem;
  font-weight: 600;
  font-size: 0.9375rem;
  box-shadow: none;
  background: rgba(255,255,255,0.06);
  border: none;
  color: rgba(255,255,255,0.88);
  padding: 1rem 1.5rem;
}
.lp-plan .lp-btn:hover {
  background: rgba(255,255,255,0.09);
  color: #fff;
  box-shadow: none;
}

/* ── Pricing — подобный дизайну с картинки, но минималистично ── */
.lp-plan--minimal {
  text-align: center;
  border-radius: 1.5rem;
  padding: 2.85rem 1.5rem 1.5rem;
  margin-top: 1.2rem;
  position: relative;
  width: 100%;
  min-width: 0;
}
.lp-plan__top-icon {
  position: absolute;
  top: -1.2rem;
  left: 50%;
  transform: translateX(-50%);
  width: 3.4rem;
  height: 3.4rem;
  border-radius: 0.9rem;
  background: #343247;
  border: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.88);
  padding: 0;
}
.lp-plan__top-icon i,
.lp-plan__top-icon svg { width: 1.5rem; height: 1.5rem; }
.lp-plan__top-icon--accent {
  background: #fff;
  color: #8C4DF8;
  border: none;
}
.lp-plan--minimal .lp-plan__name { text-align: center; }
.lp-plan--minimal .lp-plan__tagline { text-align: center; }
.lp-plan--minimal .lp-plan__features { text-align: left; margin-top: 1.25rem; }
.lp-plan--minimal .lp-plan__features li { justify-content: flex-start; }

.lp-plan--light {
  background: #fff;
  border: none;
}
.lp-plan--light .lp-plan__name { color: #0B091F; }
.lp-plan--light .lp-plan__tagline { color: rgba(11,9,31,0.45); }
.lp-plan--light .lp-plan__price { color: #0B091F; }
.lp-plan--light .lp-plan__currency { color: #0B091F; }
.lp-plan--light .lp-plan__price-old { color: rgba(11,9,31,0.28); }
.lp-plan--light .lp-plan__discount { background: rgba(11,9,31,0.06); color: rgba(11,9,31,0.55); border-color: rgba(11,9,31,0.06); }
.lp-plan--light .lp-plan__period { color: rgba(11,9,31,0.45); }
.lp-plan--light .lp-plan__per-month { color: rgba(11,9,31,0.45); }
.lp-plan--light .lp-plan__features li { color: rgba(11,9,31,0.62); }
.lp-plan--light .lp-plan__features i { color: rgba(11,9,31,0.22); }
.lp-plan--light .lp-btn {
  background: #0B091F;
  color: #fff;
  border: none;
}
.lp-plan--light .lp-btn:hover { background: #1a1730; color: #fff; }

.lp-plan--accent {
  background: #8C4DF8;
  border: none;
}
.lp-plan--accent:hover {
  background: #8C4DF8;
}
.lp-plan--accent .lp-plan__name { color: #fff; }
.lp-plan--accent .lp-plan__tagline { color: rgba(255,255,255,0.72); }
.lp-plan--accent .lp-plan__price,
.lp-plan--accent .lp-plan__currency { color: #fff; }
.lp-plan--accent .lp-plan__price-old { color: rgba(255,255,255,0.55); }
.lp-plan--accent .lp-plan__discount { background: rgba(255,255,255,0.14); color: #fff; border-color: rgba(255,255,255,0.14); }
.lp-plan--accent .lp-plan__period { color: rgba(255,255,255,0.72); }
.lp-plan--accent .lp-plan__per-month { color: rgba(255,255,255,0.72); }
.lp-plan--accent .lp-plan__features li { color: rgba(255,255,255,0.92); }
.lp-plan--accent .lp-plan__features i { color: rgba(255,255,255,0.72); }
.lp-plan--accent .lp-btn {
  background: #fff;
  color: #8C4DF8;
  border: none;
}
.lp-plan--accent .lp-btn:hover { background: #f0eeff; color: #7b3de8; }

/* ── Reviews — 4 отзыва, статичная сетка слева направо ── */
.lp-reviews {
  display: grid;
  gap: 1rem;
  width: 100%;
  max-width: none;
  margin: 0;
}
@media (min-width: 640px) { .lp-reviews { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .lp-reviews { grid-template-columns: repeat(4, 1fr); } }
.lp-review {
  padding: 1.4rem 1.5rem;
  border-radius: 1rem;
  background: rgba(255,255,255,0.04);
  border: none;
  box-shadow: none;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}
.lp-review__stars {
  font-size: 0.78rem;
  color: #facc6b;
  letter-spacing: 0.12em;
}
.lp-review__text {
  margin: 0;
  font-size: 0.875rem;
  color: rgba(255,255,255,0.62);
  line-height: 1.6;
  flex: 1;
}
.lp-review__author {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
  padding-top: 0.65rem;
  border-top: 1px solid rgba(255,255,255,0.06);
}
.lp-review__name {
  font-size: 0.82rem;
  font-weight: 500;
  color: rgba(255,255,255,0.88);
}
.lp-review__city {
  font-size: 0.72rem;
  color: rgba(255,255,255,0.32);
}

/* ── FAQ ── */
.lp-faq {
  max-width: 48rem;
  margin: 0;
}

.lp-faq__item {
  border-bottom: 1px solid var(--lp-border);
}

.lp-faq__item:first-child {
  border-top: 1px solid var(--lp-border);
}

.lp-faq__q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.25rem 0;
  border: none;
  background: none;
  font-family: inherit;
  font-size: 1rem;
  font-weight: 600;
  text-align: left;
  color: var(--lp-text);
  cursor: pointer;
}

.lp-faq__q i {
  flex-shrink: 0;
  color: var(--lp-muted);
  transition: transform 0.3s var(--lp-ease);
}

.lp-faq__item.open .lp-faq__q i {
  transform: rotate(180deg);
}

.lp-faq__a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s var(--lp-ease);
}

.lp-faq__item.open .lp-faq__a {
  max-height: 20rem;
}

.lp-faq__a-inner {
  padding: 0 0 1.25rem;
  font-size: 0.9375rem;
  color: var(--lp-text-secondary);
  line-height: 1.65;
}

/* ── CTA band ── */
/* ── Telegram community ── */
.lp-tg {
  display: grid;
  gap: 2.5rem;
  align-items: center;
  padding: 2rem;
  border-radius: var(--lp-radius-xl);
  background: var(--lp-bg-elevated);
  border: 1px solid var(--lp-border);
  box-shadow: var(--lp-shadow);
}

@media (min-width: 880px) {
  .lp-tg {
    grid-template-columns: 1.05fr 1fr;
    gap: 3rem;
    padding: 2.5rem 3rem;
  }
}

.lp-tg__media {
  border-radius: var(--lp-radius-lg);
  overflow: hidden;
  background: linear-gradient(135deg, #eef4ff 0%, #f7f9ff 100%);
  border: 1px solid var(--lp-border);
}

.lp-tg__media img {
  display: block;
  width: 100%;
  height: auto;
}

.lp-tg__logo {
  width: 1.25rem;
  height: 1.25rem;
  border-radius: 0.375rem;
  vertical-align: -0.2rem;
  margin-right: 0.375rem;
}

.lp-tg__content .lp-section__eyebrow,
.lp-tg__content .lp-section__title,
.lp-tg__content .lp-section__desc {
  text-align: left;
}

.lp-tg__list {
  list-style: none;
  margin: 1.5rem 0 0;
  padding: 0;
  display: grid;
  gap: 0.875rem;
}

.lp-tg__list li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.9375rem;
  color: var(--lp-text-secondary);
}

.lp-tg__list i {
  flex-shrink: 0;
  width: 1.75rem;
  height: 1.75rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 0.5rem;
  background: var(--lp-accent-soft);
  color: var(--lp-accent);
  font-size: 0.875rem;
}

.lp-tg__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.75rem;
}

.lp-tg__actions .lp-btn i {
  margin-right: 0.5rem;
}

@media (max-width: 639px) {
  .lp-tg {
    padding: 1.25rem;
  }
  .lp-tg__actions .lp-btn {
    width: 100%;
    justify-content: center;
    white-space: normal;
  }
}

.lp-cta-band {
  padding: 4rem 0;
  background: linear-gradient(135deg, #0a0a0b 0%, #1a1a2e 100%);
  color: #fff;
  text-align: center;
}

.lp-cta-band h2 {
  margin: 0;
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  letter-spacing: -0.03em;
}

.lp-cta-band p {
  margin: 0.875rem auto 0;
  max-width: 28rem;
  color: rgba(255, 255, 255, 0.72);
  font-size: 1.0625rem;
}

.lp-cta-band .lp-btn {
  margin-top: 1.75rem;
}

.lp-cta-band .lp-btn--primary {
  background: #fff;
  color: var(--lp-text);
  box-shadow: none;
}

.lp-cta-band .lp-btn--primary:hover {
  background: #f5f5f7;
}

/* ── Footer ── */
.lp-footer {
  padding: 4rem 0 2rem;
  background: var(--lp-bg-muted);
  border-top: 1px solid var(--lp-border);
}

.lp-footer__grid {
  display: grid;
  gap: 2.5rem;
}

@media (min-width: 768px) {
  .lp-footer__grid {
    grid-template-columns: 1.5fr repeat(3, 1fr);
    gap: 3rem;
  }
}

.lp-footer__brand p {
  margin: 0.75rem 0 0;
  font-size: 0.875rem;
  color: var(--lp-text-secondary);
  max-width: 18rem;
  line-height: 1.6;
}

.lp-footer__col h4 {
  margin: 0 0 1rem;
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--lp-muted);
}

.lp-footer__col a {
  display: block;
  padding: 0.3125rem 0;
  font-size: 0.875rem;
  color: var(--lp-text-secondary);
  transition: color 0.2s;
}

.lp-footer__col a:hover { color: var(--lp-accent); }

.lp-footer__bottom {
  margin-top: 3rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--lp-border);
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  font-size: 0.8125rem;
  color: var(--lp-muted);
}

@media (min-width: 640px) {
  .lp-footer__bottom {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
}

/* ── Locations map ── */
.lp-map-wrap {
  margin-bottom: 2rem;
  border-radius: var(--lp-radius-xl);
  border: 1px solid var(--lp-border);
  box-shadow: var(--lp-shadow-lg);
  overflow: hidden;
  background: var(--lp-bg-elevated);
}

.lp-map {
  display: block;
  width: 100%;
  height: auto;
}

.lp-map__land {
  fill: #d8dee8;
  stroke: #c4cdd8;
  stroke-width: 0.75;
  stroke-linejoin: round;
}

.lp-map__continents .lp-map__land:nth-child(odd) {
  fill: #dce2eb;
}

.lp-map__link {
  animation: lp-map-dash 12s linear infinite;
}

@keyframes lp-map-dash {
  to { stroke-dashoffset: -48; }
}

.lp-map__ring {
  transform-origin: center;
  animation: lp-map-ring 2.8s ease-out infinite;
  opacity: 0;
}

.lp-map__ring--2 {
  animation-delay: 1.4s;
}

@keyframes lp-map-ring {
  0% { transform: scale(0.5); opacity: 0.7; }
  100% { transform: scale(2.2); opacity: 0; }
}

/* ── Locations cards ── */
.lp-locations {
  display: grid;
  gap: 1rem;
  grid-template-columns: 1fr;
}

@media (min-width: 600px) {
  .lp-locations {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }
}

@media (min-width: 1100px) {
  .lp-locations {
    grid-template-columns: repeat(4, 1fr);
  }
}

.lp-location {
  position: relative;
  padding: 1.75rem;
  border-radius: var(--lp-radius-lg);
  border: 1px solid var(--lp-border);
  background: transparent;
  transition: border-color 0.25s var(--lp-ease);
  display: flex;
  flex-direction: column;
}

.lp-location::before {
  display: none;
}

.lp-location:hover {
  background: none;
  border-color: var(--lp-border-strong);
}

.lp-location:hover::before {
  opacity: 0;
}

.lp-location__flag {
  font-size: 2.25rem;
  line-height: 1;
  margin-bottom: 1.25rem;
  display: block;
}

.lp-location__icon {
  width: 2.75rem;
  height: 2.75rem;
  margin-bottom: 1.25rem;
  flex-shrink: 0;
}

.lp-location__icon svg {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  display: block;
  box-shadow: 0 2px 8px rgba(0,0,0,0.35);
}

.lp-location__name {
  margin: 0 0 0.25rem;
  font-size: 1.0625rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--lp-text);
}

.lp-location__role {
  display: none;
}

.lp-location__btn {
  position: relative;
  overflow: hidden;
  display: block;
  width: 100%;
  margin-top: 1.5rem;
  padding: 0.85rem 1rem;
  border-radius: var(--lp-radius);
  background: rgba(255, 255, 255, 0.05);
  border: none;
  font-size: 0.8125rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(255, 255, 255, 0.45);
  text-align: center;
  box-sizing: border-box;
  cursor: default;
  user-select: none;
}

.lp-location__btn::after {
  content: '';
  position: absolute;
  bottom: -2.5rem;
  left: 50%;
  transform: translateX(-50%);
  width: 10rem;
  height: 3rem;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.09);
  filter: blur(22px);
  pointer-events: none;
}

.lp-location__text {
  margin: 0;
  font-size: 0.8125rem;
  color: var(--lp-text-secondary);
  line-height: 1.65;
  flex: 1;
}

/* ── Location skeleton ── */
.lp-location--skeleton {
  pointer-events: none;
}

.lp-skel {
  display: block;
  border-radius: 0.5rem;
  background: linear-gradient(
    90deg,
    rgba(255,255,255,0.04) 25%,
    rgba(255,255,255,0.09) 50%,
    rgba(255,255,255,0.04) 75%
  );
  background-size: 200% 100%;
  animation: lp-skel-shimmer 1.6s infinite linear;
}

@keyframes lp-skel-shimmer {
  0%   { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}

.lp-skel--flag {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 0.75rem;
  margin-bottom: 1.25rem;
}

.lp-skel--title {
  height: 1rem;
  width: 70%;
  margin-bottom: 0.5rem;
}

.lp-skel--badge {
  height: 0.625rem;
  width: 45%;
  margin-bottom: 1rem;
}

.lp-skel--line {
  height: 0.625rem;
  width: 90%;
  margin-bottom: 0.4rem;
}

.lp-skel--line-short {
  height: 0.625rem;
  width: 60%;
}

.lp-skel--btn {
  height: 2.25rem;
  width: 100%;
  border-radius: var(--lp-radius);
  margin-top: 1.25rem;
}

/* ── Network diagram ── */
.lp-network {
  position: relative;
  max-width: 44rem;
  margin: 0 auto;
  padding: 2rem 1rem 1rem;
}

.lp-network__svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.lp-network__path--flow {
  animation: lp-net-flow 2s linear infinite;
}

@keyframes lp-net-flow {
  to { stroke-dashoffset: -40; }
}

.lp-network__nodes {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.25rem;
}

.lp-network__node {
  width: min(100%, 14rem);
  padding: 1.125rem 1.25rem;
  border-radius: var(--lp-radius-lg);
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid var(--lp-border);
  box-shadow: var(--lp-shadow);
  text-align: center;
  backdrop-filter: blur(10px);
  transition: transform 0.3s var(--lp-ease), box-shadow 0.3s;
}

.lp-network__node:hover {
  transform: translateY(-3px);
  box-shadow: var(--lp-shadow-lg);
}

.lp-network__node--hub {
  border-color: rgba(0, 113, 227, 0.25);
  box-shadow: 0 8px 32px var(--lp-accent-glow);
}

.lp-network__icon {
  width: 2.75rem;
  height: 2.75rem;
  margin: 0 auto 0.625rem;
  border-radius: 0.875rem;
  background: var(--lp-accent-soft);
  color: var(--lp-accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
}

.lp-network__icon svg {
  width: 1.75rem;
  height: 1.75rem;
}

.lp-network__icon img {
  width: 2rem;
  height: 2rem;
  border-radius: 0.5rem;
  object-fit: contain;
  display: block;
}

.lp-network__icon--hub,
.lp-network__icon--user {
  background: transparent;
}

.lp-network__icon--user img {
  width: 100%;
  height: 100%;
  border-radius: 0.875rem;
  object-fit: cover;
}

.lp-network__node h3 {
  margin: 0;
  font-size: 0.9375rem;
  font-weight: 700;
}

.lp-network__node p {
  margin: 0.25rem 0 0;
  font-size: 0.75rem;
  color: var(--lp-muted);
}

.lp-network__servers {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(7.5rem, 1fr));
  gap: 0.75rem;
  width: 100%;
}

@media (max-width: 639px) {
  .lp-network__servers { grid-template-columns: 1fr; max-width: 14rem; }
}

.lp-network__node--ru .lp-network__icon { background: rgba(0, 113, 227, 0.1); }
.lp-network__node--de .lp-network__icon { background: rgba(234, 179, 8, 0.12); }
.lp-network__node--nl .lp-network__icon { background: rgba(249, 115, 22, 0.12); }
.lp-network__node--pl .lp-network__icon { background: rgba(220, 38, 38, 0.1); }
.lp-network__node--uk .lp-network__icon { background: rgba(59, 130, 246, 0.1); }

#how-it-works .lp-section__head {
  margin-bottom: 4.5rem;
}

/* ── How it works layout ── */
.lp-hiw {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}

.lp-hiw__title {
  text-align: left !important;
  margin: 0 !important;
}

.lp-hiw__aside {
  display: none;
}

/* ── Steps (How it works) ── */
.lp-steps {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  align-items: stretch;
  margin-bottom: 4rem;
}

@media (min-width: 900px) {
  .lp-steps {
    grid-template-columns: repeat(4, 1fr);
  }
}

@media (min-width: 1200px) {
  .lp-steps {
    grid-template-columns: repeat(4, 1fr);
  }
}

.lp-step {
  position: relative;
  padding: 0;
  border-radius: 0.5rem;
  border: none;
  background: transparent;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: 100%;
  transition: border-color 0.25s var(--lp-ease);
}

.lp-step:hover {
  border-color: var(--lp-border-strong);
}

.lp-step__header {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  margin-bottom: 0.875rem;
  width: 100%;
}

.lp-step__tag {
  display: inline-flex;
  align-items: center;
  padding: 0.3rem 0.75rem;
  border-radius: 10px;
  background: #8C4DF8;
  color: #fff;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  font-family: var(--lp-font);
  position: relative;
  overflow: hidden;
  flex-shrink: 0;
  white-space: nowrap;
}

.lp-step__tag::before {
  content: '';
  position: absolute;
  bottom: -60%;
  left: 50%;
  transform: translateX(-50%);
  width: 70%;
  height: 100%;
  background: rgba(255, 255, 255, 0.35);
  border-radius: 50%;
  filter: blur(10px);
  pointer-events: none;
}

.lp-step__title {
  font-size: 0.9375rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: var(--lp-text);
  line-height: 1.25;
}

.lp-step__img {
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;
  border-radius: 0.375rem;
  object-fit: contain;
  margin-bottom: 0.875rem;
  flex-shrink: 0;
  display: block;
}

.lp-step__desc {
  margin: 0;
  font-size: 0.8125rem;
  font-weight: 400;
  color: var(--lp-text);
  line-height: 1.6;
}

/* ── Apps ── */
.lp-apps {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  max-width: 52rem;
  margin: 0 auto;
}

@media (min-width: 1024px) {
  .lp-apps { grid-template-columns: repeat(4, 1fr); }
}

.lp-app {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 1.75rem 1.25rem;
  border-radius: var(--lp-radius-lg);
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid var(--lp-border);
  backdrop-filter: blur(8px);
  transition: transform 0.35s var(--lp-ease), border-color 0.35s, box-shadow 0.35s;
}

.lp-app:hover {
  transform: translateY(-6px) scale(1.02);
  border-color: rgba(0, 113, 227, 0.2);
  box-shadow: var(--lp-shadow-lg);
}

.lp-app__logo {
  width: 3.5rem;
  height: 3.5rem;
  margin-bottom: 1rem;
  transition: transform 0.35s var(--lp-ease);
}

.lp-app:hover .lp-app__logo {
  transform: scale(1.08);
}

.lp-app__logo svg,
.lp-app__logo img {
  display: block;
  width: 100%;
  height: 100%;
  border-radius: 1rem;
  object-fit: cover;
}

.lp-app__name {
  margin: 0;
  font-size: 0.9375rem;
  font-weight: 600;
}

.lp-app__platform {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.35rem;
  margin: 0.35rem 0 0;
}

.lp-app__os {
  display: inline-flex;
  align-items: center;
  gap: 0.28rem;
  padding: 0.22rem 0.5rem;
  border-radius: 999px;
  background: #f1f5f9;
  border: 1px solid rgba(15, 23, 42, 0.06);
  color: #475569;
  font-size: 0.6875rem;
  font-weight: 600;
  line-height: 1.2;
}

.lp-app__os .lp-os-icon {
  width: 0.75rem;
  height: 0.75rem;
  color: #64748b;
  transition: transform 0.3s cubic-bezier(0.34, 1.45, 0.64, 1), color 0.2s ease;
}

.lp-app__os:hover {
  border-color: rgba(0, 113, 227, 0.22);
  background: #eef6ff;
  color: #0f172a;
}

.lp-app__os:hover .lp-os-icon {
  transform: scale(1.15) rotate(-8deg);
  color: #0071e3;
}

/* ── Official MetaVPN apps (store) ── */
.lp-section--store {
  background: var(--lp-bg-muted);
  padding-top: 3rem;
  padding-bottom: 3rem;
}

.lp-section--compact {
  padding-top: 3rem !important;
  padding-bottom: 3rem !important;
}

.lp-section__head--sm {
  margin-bottom: 1.75rem;
}

.lp-section__head--sm .lp-section__title {
  font-size: clamp(1.5rem, 3vw, 2.25rem);
}

/* ── OS Switcher (segmented control) ── */
.lp-os-switcher {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1.25rem;
}

.lp-os-tabs {
  position: relative;
  display: inline-flex;
  background: rgba(255,255,255,0.05);
  border-radius: 0.625rem;
  padding: 0.25rem;
  gap: 0;
  flex-wrap: wrap;
}

.lp-os-tabs__slider {
  position: absolute;
  top: 0.25rem;
  left: 0.25rem;
  height: calc(100% - 0.5rem);
  border-radius: 0.4rem;
  background: rgba(255, 255, 255, 0.12);
  transition: transform 0.28s cubic-bezier(0.22,1,0.36,1), width 0.28s cubic-bezier(0.22,1,0.36,1);
  pointer-events: none;
  z-index: 0;
}

.lp-os-tab {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  padding: 0.875rem 1.75rem;
  border: none;
  border-radius: 0.5rem;
  background: transparent;
  font-family: inherit;
  font-size: 1rem;
  font-weight: 500;
  color: var(--lp-text-secondary);
  cursor: pointer;
  white-space: nowrap;
  transition: color 0.2s;
}

.lp-os-tab svg {
  width: 1rem;
  height: 1rem;
  flex-shrink: 0;
}

.lp-os-tab--active {
  color: #fff;
}

.lp-os-tab--soon {
  opacity: 0.45;
  cursor: default;
}

.lp-os-tab__soon {
  font-size: 0.625rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  background: rgba(255,255,255,0.1);
  border-radius: 999px;
  padding: 0.1rem 0.4rem;
  color: var(--lp-muted);
  margin-left: 0.125rem;
}

.lp-os-panels {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 0.75rem;
  flex-wrap: wrap;
  min-height: 3.5rem;
}

.lp-os-panel {
  display: none;
  align-items: center;
  gap: 0.75rem;
  flex-wrap: wrap;
  animation: lp-os-fade 0.2s ease;
}

.lp-os-panel--active {
  display: flex;
}

.lp-os-panel__meta {
  font-size: 0.8125rem;
  color: var(--lp-text-secondary);
}

.lp-os-panel .lp-btn {
  padding: 0.875rem 1.75rem;
  font-size: 1rem;
}

@keyframes lp-os-fade {
  from { opacity: 0; transform: translateY(4px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ── Third-party block (inline, inside our-app) ── */
.lp-third-party {
  margin-top: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid var(--lp-border);
}

.lp-third-party__label {
  font-size: 0.75rem;
  color: var(--lp-muted);
  margin: 0 0 1rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

/* ── OS-panel inline clients ── */
.lp-os-clients {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid var(--lp-border);
}

.lp-os-clients__label {
  font-size: 0.75rem;
  color: var(--lp-muted);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.lp-os-clients .lp-apps--inline {
  gap: 0.5rem;
}

.lp-os-clients .lp-app {
  text-decoration: none;
  color: inherit;
  transition: opacity 0.15s;
}

.lp-os-clients .lp-app:hover {
  opacity: 0.75;
}

/* ── Download badges (App Store / Play style) ── */
.lp-dl-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.lp-dl-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.45rem 0.75rem 0.45rem 0.5rem;
  border-radius: 0.625rem;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  text-decoration: none;
  color: var(--lp-text);
  transition: background 0.18s, border-color 0.18s, transform 0.18s;
  cursor: pointer;
}

.lp-dl-badge:hover {
  background: rgba(255,255,255,0.11);
  border-color: rgba(255,255,255,0.2);
  transform: translateY(-1px);
}

.lp-dl-badge__icon {
  width: 2rem;
  height: 2rem;
  border-radius: 0.4375rem;
  object-fit: cover;
  flex-shrink: 0;
}

.lp-dl-badge__text {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
}

.lp-dl-badge__sub {
  font-size: 0.625rem;
  color: rgba(255,255,255,0.45);
  line-height: 1;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.lp-dl-badge__name {
  font-size: 0.875rem;
  font-weight: 600;
  line-height: 1;
  color: var(--lp-text);
}

.lp-apps--inline {
  display: flex;
  flex-wrap: wrap;
  gap: 0.625rem;
  margin: 0;
}

.lp-apps--inline .lp-app {
  flex-direction: row;
  align-items: center;
  text-align: left;
  padding: 0.625rem 0.875rem;
  background: transparent;
  border: 1px solid var(--lp-border);
  border-radius: 0.5rem;
  gap: 0.625rem;
  min-width: 0;
  flex: 0 0 auto;
}

.lp-apps--inline .lp-app:hover,
.lp-apps--inline .lp-app:hover .lp-app__logo {
  transform: none;
  border-color: var(--lp-border);
}

.lp-apps--inline .lp-app__logo {
  flex-shrink: 0;
  width: 1.75rem;
  height: 1.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  align-self: center;
}

.lp-apps--inline .lp-app__logo img {
  width: 1.75rem;
  height: 1.75rem;
  border-radius: 0.375rem;
  object-fit: cover;
  display: block;
}

.lp-apps--inline .lp-app__name {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--lp-text);
  margin: 0;
  white-space: nowrap;
}

.lp-apps--inline .lp-app__platform {
  display: flex;
  gap: 0.25rem;
  flex-wrap: nowrap;
}

.lp-apps--inline .lp-app__os {
  font-size: 0.6875rem;
  color: var(--lp-muted);
  background: rgba(255,255,255,0.05);
  border-radius: 0.25rem;
  padding: 0.1rem 0.375rem;
  white-space: nowrap;
}

/* ── Platforms accordion (legacy) ── */
.lp-platforms { display: flex; flex-direction: column; gap: 0.5rem; }

.lp-store-os {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.85rem 1.1rem;
  max-width: 44rem;
  margin: 0 auto 2rem;
  padding: 0.35rem 0 0.5rem;
}

.lp-store-os__chip {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.45rem;
  min-width: 4.5rem;
  padding: 0.35rem 0.4rem 0.15rem;
  border: 0;
  background: transparent;
  box-shadow: none;
  color: var(--lp-text);
  font-size: 0.8125rem;
  font-weight: 600;
  text-decoration: none;
  transition: transform 0.25s var(--lp-ease);
}

.lp-store-os__chip:hover {
  transform: none;
  border-color: transparent;
  box-shadow: none;
}

.lp-store-os__glyph {
  display: grid;
  place-items: center;
  width: 3.35rem;
  height: 3.35rem;
  border-radius: 1rem;
  color: #fff;
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.35) inset,
    0 8px 18px rgba(15, 23, 42, 0.14);
  transition:
    transform 0.4s cubic-bezier(0.34, 1.45, 0.64, 1),
    box-shadow 0.35s var(--lp-ease),
    filter 0.35s var(--lp-ease);
  will-change: transform;
}

.lp-store-os__glyph .lp-os-icon {
  width: 1.55rem;
  height: 1.55rem;
  transition: transform 0.4s cubic-bezier(0.34, 1.45, 0.64, 1);
}

.lp-store-os__chip:hover .lp-store-os__glyph {
  transform: translateY(-7px) scale(1.08);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.4) inset,
    0 16px 28px rgba(15, 23, 42, 0.2);
  filter: brightness(1.05);
}

.lp-store-os__chip:hover .lp-store-os__glyph .lp-os-icon {
  transform: scale(1.08) rotate(-6deg);
}

.lp-store-os__chip:active .lp-store-os__glyph {
  transform: translateY(-2px) scale(1.02);
}

.lp-store-os__chip--android .lp-store-os__glyph {
  background: linear-gradient(160deg, #5ce89a 0%, #3ddc84 45%, #2bb673 100%);
  color: #063;
}

.lp-store-os__chip--apple .lp-store-os__glyph,
.lp-store-os__chip--ios .lp-store-os__glyph {
  background: linear-gradient(160deg, #3a3a3c 0%, #1d1d1f 55%, #000 100%);
  color: #fff;
}

.lp-store-os__chip--linux .lp-store-os__glyph {
  background: linear-gradient(160deg, #ffe566 0%, #fcc624 50%, #e0a800 100%);
  color: #1d1d1f;
}

.lp-store-os__chip--windows .lp-store-os__glyph {
  background: linear-gradient(160deg, #4cc2ff 0%, #0078d4 50%, #005a9e 100%);
  color: #fff;
}

.lp-store-os__label {
  color: #475569;
  letter-spacing: -0.01em;
  transition: color 0.2s ease;
}

.lp-store-os__chip:hover .lp-store-os__label {
  color: var(--lp-text);
}

.lp-store-os__badge {
  position: absolute;
  top: -0.15rem;
  right: -0.15rem;
  padding: 0.12rem 0.4rem;
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.88);
  color: #fff;
  font-size: 0.5625rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  box-shadow: 0 4px 10px rgba(15, 23, 42, 0.2);
  animation: lp-soon-badge 2.4s ease-in-out infinite;
}

.lp-store-os__chip--soon {
  opacity: 0.92;
}

.lp-os-icon {
  width: 1rem;
  height: 1rem;
  flex-shrink: 0;
  display: block;
}

.lp-os-icon--lg {
  width: 2.75rem;
  height: 2.75rem;
}

.lp-os-icon--hero {
  width: 4.5rem;
  height: 4.5rem;
}

@keyframes lp-soon-badge {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-2px); }
}

@keyframes lp-frost-pulse {
  0%, 100% {
    box-shadow: 0 0 0 0 rgba(0, 113, 227, 0.35);
    transform: scale(1);
  }
  50% {
    box-shadow: 0 0 0 12px rgba(0, 113, 227, 0);
    transform: scale(1.03);
  }
}

@keyframes lp-frost-shimmer {
  0% { background-position: 0% 50%; }
  100% { background-position: 200% 50%; }
}

.lp-store {
  display: grid;
  gap: 1.25rem;
  max-width: 72rem;
  margin: 0 auto;
}

@media (min-width: 900px) {
  .lp-store {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.5rem;
    align-items: stretch;
  }
}

.lp-store-card {
  display: flex;
  flex-direction: column;
  border-radius: var(--lp-radius-xl);
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid var(--lp-border);
  box-shadow: var(--lp-shadow);
  overflow: hidden;
  transition: transform 0.35s var(--lp-ease), box-shadow 0.35s var(--lp-ease);
  scroll-margin-top: 5.5rem;
}

.lp-store-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--lp-shadow-lg);
}

.lp-store-card__visual {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.85rem;
  min-height: 13.5rem;
  padding: 2rem 1.25rem 1.5rem;
  background:
    radial-gradient(ellipse 70% 80% at 50% 100%, rgba(0, 113, 227, 0.1), transparent 70%),
    linear-gradient(180deg, #f4f8ff 0%, #fafbfd 100%);
  overflow: hidden;
}

.lp-store-card__badges {
  position: absolute;
  top: 0.85rem;
  right: 0.85rem;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  pointer-events: none;
}

.lp-store-card__version {
  display: inline-flex;
  align-items: center;
  padding: 0.28rem 0.65rem;
  border-radius: 999px;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  line-height: 1.2;
  background: rgba(0, 113, 227, 0.95);
  color: #fff;
  box-shadow: 0 4px 12px rgba(0, 113, 227, 0.28);
}

.lp-store-card--linux .lp-store-card__version {
  background: rgba(15, 118, 110, 0.95);
  box-shadow: 0 4px 12px rgba(15, 118, 110, 0.28);
}

.lp-store-card--windows .lp-store-card__version {
  background: rgba(0, 120, 212, 0.95);
  box-shadow: 0 4px 12px rgba(0, 120, 212, 0.28);
}

.lp-store-card--ios .lp-store-card__version,
.lp-store-card--mac .lp-store-card__version {
  background: rgba(29, 29, 31, 0.92);
  box-shadow: 0 4px 12px rgba(15, 23, 42, 0.22);
}

.lp-store-card--mac .lp-store-card__visual {
  background:
    radial-gradient(ellipse 70% 80% at 50% 100%, rgba(0, 113, 227, 0.08), transparent 70%),
    linear-gradient(180deg, #eef2f7 0%, #f8fafc 100%);
}

.lp-store-card--linux .lp-store-card__visual {
  background:
    radial-gradient(ellipse 70% 80% at 50% 100%, rgba(15, 118, 110, 0.08), transparent 70%),
    linear-gradient(180deg, #f0f7f5 0%, #f8fafc 100%);
}

.lp-store-card--windows .lp-store-card__visual {
  background:
    radial-gradient(ellipse 70% 80% at 50% 100%, rgba(0, 120, 212, 0.12), transparent 70%),
    linear-gradient(180deg, #eef6fc 0%, #f7fafc 100%);
}

.lp-store-card--ios .lp-store-card__visual {
  background:
    radial-gradient(ellipse 70% 80% at 50% 100%, rgba(29, 29, 31, 0.08), transparent 70%),
    linear-gradient(180deg, #f4f4f5 0%, #fafafa 100%);
}

.lp-store-card__visual--icon {
  min-height: 14rem;
}

.lp-store-card__iconhero {
  display: grid;
  place-items: center;
  width: 6.5rem;
  height: 6.5rem;
  border-radius: 1.6rem;
  color: #fff;
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.28) inset,
    0 18px 36px rgba(15, 23, 42, 0.16);
  transition:
    transform 0.45s cubic-bezier(0.34, 1.45, 0.64, 1),
    box-shadow 0.35s var(--lp-ease);
  will-change: transform;
}

.lp-store-card:hover .lp-store-card__iconhero {
  transform: translateY(-8px) scale(1.06) rotate(-4deg);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.35) inset,
    0 24px 44px rgba(15, 23, 42, 0.22);
}

.lp-store-card:hover .lp-store-card__iconhero .lp-os-icon {
  transform: scale(1.06);
}

.lp-store-card__iconhero .lp-os-icon {
  transition: transform 0.45s cubic-bezier(0.34, 1.45, 0.64, 1);
}

.lp-store-card__iconhero--android {
  background: linear-gradient(160deg, #5ce89a 0%, #3ddc84 45%, #2bb673 100%);
  color: #06381f;
}

.lp-store-card__iconhero--apple,
.lp-store-card__iconhero--ios {
  background: linear-gradient(160deg, #3a3a3c 0%, #1d1d1f 55%, #000 100%);
  color: #fff;
}

.lp-store-card__iconhero--linux {
  background: linear-gradient(160deg, #ffe566 0%, #fcc624 50%, #e0a800 100%);
  color: #1d1d1f;
}

.lp-store-card__iconhero--windows {
  background: linear-gradient(160deg, #4cc2ff 0%, #0078d4 50%, #005a9e 100%);
  color: #fff;
}

.lp-store-card__osname {
  margin: 0;
  font-size: 0.9375rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: #334155;
}

@keyframes lp-frost-pulse {
  0%, 100% {
    box-shadow: 0 0 0 0 rgba(0, 113, 227, 0.35);
    transform: scale(1);
  }
  50% {
    box-shadow: 0 0 0 12px rgba(0, 113, 227, 0);
    transform: scale(1.03);
  }
}

@keyframes lp-frost-shimmer {
  0% { background-position: 0% 50%; }
  100% { background-position: 200% 50%; }
}

.lp-store-card--soon {
  position: relative;
  isolation: isolate;
}

.lp-store-card--soon:hover {
  transform: none;
  box-shadow: var(--lp-shadow);
}

.lp-store-card__frost {
  position: absolute;
  inset: 0;
  z-index: 6;
  display: grid;
  place-items: center;
  padding: 1.25rem;
  background:
    linear-gradient(120deg, rgba(255, 255, 255, 0.28), rgba(248, 250, 252, 0.5), rgba(255, 255, 255, 0.28));
  background-size: 200% 100%;
  backdrop-filter: blur(7px) saturate(1.15);
  -webkit-backdrop-filter: blur(7px) saturate(1.15);
  animation: lp-frost-shimmer 7s linear infinite;
  pointer-events: none;
}

.lp-store-card__frost-badge {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.25rem;
  padding: 1rem 1.35rem;
  border-radius: 1.15rem;
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(255, 255, 255, 0.95);
  box-shadow: 0 12px 36px rgba(15, 23, 42, 0.14);
  text-align: center;
  animation: lp-frost-pulse 2.8s ease-in-out infinite;
}

.lp-store-card__frost-badge strong {
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--lp-text);
}

.lp-store-card__frost-badge > span:last-child {
  font-size: 0.8125rem;
  color: var(--lp-muted);
}

.lp-store-card__frost-ring {
  position: absolute;
  top: -0.45rem;
  right: -0.45rem;
  width: 0.7rem;
  height: 0.7rem;
  border-radius: 999px;
  background: #0071e3;
  box-shadow: 0 0 0 0 rgba(0, 113, 227, 0.45);
  animation: lp-frost-pulse 2s ease-in-out infinite;
}

.lp-store-card--soon .lp-store-card__cta .lp-btn--ghost {
  pointer-events: auto;
  position: relative;
  z-index: 7;
}

.lp-btn--disabled,
.lp-btn[aria-disabled="true"] {
  opacity: 0.55;
  cursor: not-allowed;
  pointer-events: none;
  filter: grayscale(0.15);
}

.lp-store-card__body {
  display: flex;
  flex-direction: column;
  flex: 1;
  gap: 0.85rem;
  padding: 1.25rem 1.25rem 1.35rem;
}

.lp-store-card__brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.lp-store-card__logo {
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 0.75rem;
  object-fit: cover;
  flex-shrink: 0;
}

.lp-store-card__title {
  margin: 0;
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--lp-text);
  letter-spacing: -0.02em;
}

.lp-store-card__meta {
  margin: 0.15rem 0 0;
  font-size: 0.8125rem;
  color: var(--lp-muted);
}

.lp-store-card__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
}

.lp-store-card__chips span {
  display: inline-flex;
  align-items: center;
  padding: 0.28rem 0.55rem;
  border-radius: 999px;
  background: #f1f5f9;
  color: #475569;
  font-size: 0.6875rem;
  font-weight: 600;
}

.lp-store-card__points {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.45rem;
}

.lp-store-card__points li {
  position: relative;
  padding-left: 1.15rem;
  font-size: 0.875rem;
  line-height: 1.45;
  color: #334155;
}

.lp-store-card__points li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.45rem;
  width: 0.45rem;
  height: 0.45rem;
  border-radius: 999px;
  background: #0071e3;
}

.lp-store-card--linux .lp-store-card__points li::before {
  background: #0f766e;
}

.lp-store-card--windows .lp-store-card__points li::before {
  background: #0078d4;
}

.lp-store-card__points code {
  font-size: 0.8em;
  padding: 0.05rem 0.3rem;
  border-radius: 0.25rem;
  background: #f1f5f9;
}

.lp-store-card__release {
  margin: 0;
  padding: 0.7rem 0.85rem;
  border-radius: 0.85rem;
  background: rgba(0, 113, 227, 0.06);
  color: #334155;
  font-size: 0.8125rem;
  line-height: 1.45;
}

.lp-store-card--linux .lp-store-card__release {
  background: rgba(15, 118, 110, 0.08);
}

.lp-store-card--windows .lp-store-card__release {
  background: rgba(0, 120, 212, 0.08);
}

.lp-store-card__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-top: auto;
}

.lp-store-card__cta .lp-btn {
  flex: 1 1 auto;
  min-width: 7.5rem;
  justify-content: center;
}

@media (max-width: 640px) {
  .lp-store-card__visual {
    min-height: 12rem;
  }

  .lp-store-card__iconhero {
    width: 5.5rem;
    height: 5.5rem;
    border-radius: 1.35rem;
  }

  .lp-store-card__cta {
    flex-direction: column;
  }

  .lp-store-card:hover {
    transform: none;
  }

  .lp-store-card:hover .lp-store-card__iconhero {
    transform: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  .lp-store-card:hover {
    transform: none;
  }

  .lp-store-os__chip:hover .lp-store-os__glyph,
  .lp-store-os__chip:hover .lp-store-os__glyph .lp-os-icon,
  .lp-store-card:hover .lp-store-card__iconhero,
  .lp-store-card:hover .lp-store-card__iconhero .lp-os-icon {
    transform: none;
  }

  .lp-store-os__badge,
  .lp-store-card__frost,
  .lp-store-card__frost-badge,
  .lp-store-card__frost-ring {
    animation: none;
  }
}

/* ── Benefits bento ── */
.lp-bento__heading {
  font-size: clamp(2.5rem, 6vw, 5.5rem);
  font-weight: 900;
  font-style: italic;
  letter-spacing: -0.04em;
  line-height: 0.95;
  text-transform: uppercase;
  color: #fff;
  margin: 0 0 2.5rem;
}

/* mobile: просто стек */
.lp-bento {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
}

.lp-bento__card--a { grid-column: 1 / 3; min-height: 20rem; }
.lp-bento__card--b { grid-column: 1 / 2; min-height: 16rem; }
.lp-bento__card--c { grid-column: 2 / 3; min-height: 16rem; }
.lp-bento__card--d { grid-column: 1 / 3; min-height: 16rem; }
.lp-bento__card--e { grid-column: 1 / 2; min-height: 16rem; }
.lp-bento__card--f { grid-column: 2 / 3; min-height: 16rem; }

/* desktop: неравномерная bento */
@media (min-width: 900px) {
  .lp-bento {
    grid-template-columns: repeat(10, 1fr);
    grid-template-rows: 22rem 18rem 20rem;
  }

  /* большой блок слева — 4 col, 2 row */
  .lp-bento__card--a {
    grid-column: 1 / 5;
    grid-row: 1 / 3;
    min-height: 0;
  }

  /* узкий вверху по середине */
  .lp-bento__card--b {
    grid-column: 5 / 8;
    grid-row: 1 / 2;
    min-height: 0;
  }

  /* правый верхний */
  .lp-bento__card--c {
    grid-column: 8 / 11;
    grid-row: 1 / 2;
    min-height: 0;
  }

  /* под b и c — широкий */
  .lp-bento__card--d {
    grid-column: 5 / 11;
    grid-row: 2 / 3;
    min-height: 0;
  }

  /* нижний левый — узкий */
  .lp-bento__card--e {
    grid-column: 1 / 4;
    grid-row: 3 / 4;
    min-height: 0;
  }

  /* нижний средний */
  .lp-bento__card--f {
    grid-column: 4 / 11;
    grid-row: 3 / 4;
    min-height: 0;
  }
}

.lp-bento__card {
  border-radius: 0.75rem;
  border: none;
  background: rgba(255, 255, 255, 0.06);
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.lp-bento__body {
  padding: 1.25rem 1.5rem 0.75rem;
}

.lp-bento__eyebrow {
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: rgba(255, 255, 255, 0.25);
  margin: 0 0 0.375rem;
  font-family: var(--lp-mono);
}

.lp-bento__title {
  margin: 0 0 0.625rem;
  font-size: clamp(1rem, 1.4vw, 1.25rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--lp-text);
  line-height: 1.2;
  text-transform: uppercase;
}

.lp-bento__text {
  margin: 0;
  font-size: 0.875rem;
  color: var(--lp-text-secondary);
  line-height: 1.65;
}

.lp-bento__media {
  flex: 1;
  min-height: 10rem;
}

.lp-bento__media--flush {
  min-height: 0;
  flex: 1;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}

.lp-bento__media--flush img {
  width: 115%;
  height: auto;
  display: block;
  margin-left: -7.5%;
  margin-bottom: 0;
  vertical-align: bottom;
}

.lp-bento__media--padded {
  margin-left: 0 !important;
  margin-right: 0 !important;
  margin-bottom: 0 !important;
}

.lp-bento__media--padded img {
  width: 80%;
  margin: 0 auto;
}

/* speed full-bleed image */
.lp-bento__media--speed-full {
  flex: 1;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  margin: 0 -1.5rem -1.5rem;
}

.lp-bento__media--speed-full img {
  display: block;
  width: 100%;
  height: auto;
}

/* locations image */
.lp-bento__media--locations {
  flex: 1;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  margin: 0 -1.5rem -1.5rem;
}

.lp-bento__media--locations img {
  display: block;
  width: 100%;
  height: auto;
}

/* devices image */
.lp-bento__media--devices {
  display: flex;
  justify-content: flex-end;
  align-items: flex-end;
  padding: 0 0 0 0;
}

.lp-bento__media--devices img {
  width: 55%;
  height: auto;
  display: block;
}

/* speedtest widget */
.lp-bento__media--speed {
  flex: 1;
  position: relative;
  overflow: hidden;
  min-height: 12rem;
}

.lp-bento__media--speed img {
  position: absolute;
  top: 50%;
  right: -33%;
  transform: translateY(-50%);
  width: 90%;
  height: auto;
  max-height: 100%;
  display: block;
  object-fit: contain;
}

.lp-bento__media--ui {
  min-height: 0;
  flex: 1;
  display: flex;
  align-items: flex-end;
  padding: 0 1.25rem 1.25rem;
}

/* ── Location picker skeleton ── */
.lp-loc-ui {
  width: 100%;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 0.5rem;
  pointer-events: none;
  user-select: none;
  opacity: 0.45;
}

.lp-loc-ui__select {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.875rem 1rem;
  border-radius: 0.5rem;
  background: rgba(255,255,255,0.06);
  border: none;
  flex: 1;
  min-width: 0;
}

.lp-loc-ui__flag {
  width: 1.25rem;
  height: 1.25rem;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  overflow: hidden;
}

.lp-loc-ui__flag svg {
  width: 1.25rem;
  height: 1.25rem;
  display: block;
  border-radius: 50%;
}

.lp-loc-ui__name {
  flex: 1;
  font-size: 0.8125rem;
  font-weight: 400;
  color: var(--lp-text);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.lp-loc-ui__chevron {
  width: 0.875rem;
  height: 0.875rem;
  color: rgba(255,255,255,0.3);
  flex-shrink: 0;
}

.lp-loc-ui__btn {
  flex-shrink: 0;
  padding: 0.875rem 1.125rem;
  border-radius: 0.5rem;
  background: rgba(255,255,255,0.08);
  border: none;
  color: var(--lp-text);
  font-size: 0.8125rem;
  font-weight: 500;
  white-space: nowrap;
}

.lp-speedtest {
  width: 130%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.25rem;
  margin-bottom: -1.5rem;
}

.lp-speedtest__gauge {
  width: 100%;
  max-width: 280px;
  filter: drop-shadow(0 8px 32px rgba(255,255,255,0.06));
}

.lp-speedtest__arc {
  animation: lp-speed-fill 2s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

@keyframes lp-speed-fill {
  from { stroke-dashoffset: 251; }
  to   { stroke-dashoffset: 60; }
}

.lp-speedtest__needle {
  transform-origin: 100px 110px;
  animation: lp-needle-sweep 2s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

@keyframes lp-needle-sweep {
  from { transform: rotate(-90deg); }
  to   { transform: rotate(65deg); }
}

.lp-speedtest__value {
  display: flex;
  align-items: baseline;
  gap: 0.2rem;
}

.lp-speedtest__num {
  font-size: 1.375rem;
  font-weight: 700;
  letter-spacing: -0.04em;
  color: rgba(255,255,255,0.9);
  font-variant-numeric: tabular-nums;
}

.lp-speedtest__unit {
  font-size: 0.6875rem;
  color: var(--lp-muted);
  font-weight: 400;
}

/* ── Reveal ── */
.lp-reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s var(--lp-ease), transform 0.7s var(--lp-ease);
}

.lp-reveal.visible {
  opacity: 1;
  transform: none;
}

/* ── Responsive: mobile / tablet / desktop ── */

/* Tablet: 640–1023px */
@media (min-width: 640px) and (max-width: 1023px) {
  .lp-hero {
    padding: var(--lp-nav-h) 0 3.5rem;
  }

  .lp-hero__inner {
    gap: 2.5rem;
  }

  .lp-hero-scene__dash {
    transform: none;
  }

  .lp-hero-scene:hover .lp-hero-scene__dash {
    transform: none;
  }

  .lp-hero-scene__phone-img {
    right: 0;
    bottom: -0.75rem;
    width: 11.5rem;
  }

  .lp-section {
    padding: 4.5rem 0;
  }

  .lp-section__head {
    margin-bottom: 2.5rem;
  }

  .lp-pricing {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
  }

  .lp-pricing .lp-plan--featured {
    grid-column: 1 / -1;
    max-width: 26rem;
    margin-inline: auto;
    width: 100%;
  }

  .lp-locations {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .lp-locations .lp-location:last-child:nth-child(odd) {
    grid-column: 1 / -1;
    max-width: calc(50% - 0.625rem);
    margin-inline: auto;
    width: 100%;
  }

  .lp-footer__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 2rem;
  }

  .lp-footer__brand {
    grid-column: 1 / -1;
  }

  .lp-showcase {
    gap: 2.5rem;
  }

  .lp-network {
    padding: 1.5rem 0.5rem 0.5rem;
  }

  .lp-cta-band {
    padding: 3.5rem 0;
  }
}

/* Mobile: up to 639px */
@media (max-width: 639px) {
  :root {
    --lp-nav-h: 3.5rem;
  }

  .lp-container {
    padding: 0 1rem;
  }

  .lp-nav__inner {
    padding: 0 1rem;
  }

  .lp-nav__brand {
    font-size: 1rem;
  }

  .lp-nav__mobile {
    padding: 0.375rem 1rem 1.25rem;
  }

  .lp-nav__mobile-links a {
    padding-inline: 0.25rem;
  }

  .lp-nav__mobile-actions {
    padding-inline: 0.25rem;
  }

  .lp-hero {
    padding: var(--lp-nav-h) 0 2.5rem;
  }

  .lp-hero__inner {
    gap: 2rem;
  }

  .lp-hero__content {
    width: 100%;
    overflow-wrap: anywhere;
  }

  .lp-hero__title {
    overflow-wrap: anywhere;
  }

  .lp-hero__desc {
    overflow-wrap: anywhere;
  }

  .lp-hero__badge {
    font-size: 0.75rem;
    margin-bottom: 1rem;
  }

  .lp-hero__title {
    font-size: clamp(2rem, 9vw, 2.625rem);
  }

  .lp-hero__desc {
    font-size: 1rem;
    max-width: none;
  }

  .lp-hero__points li {
    font-size: 0.875rem;
  }

  .lp-hero__cta {
    flex-direction: column;
    align-items: stretch;
    margin-top: 1.5rem;
  }

  .lp-hero__cta .lp-btn {
    width: 100%;
    white-space: normal;
    text-align: center;
  }

  .lp-hero__note {
    text-align: center;
  }

  .lp-stats {
    gap: 0.625rem;
    margin-top: 2rem;
  }

  .lp-stat {
    padding: 0.875rem;
  }

  .lp-stat__value {
    font-size: 1.25rem;
  }

  .lp-hero__visual {
    min-height: auto;
    overflow: hidden;
    margin-top: 0.5rem;
  }

  .lp-hero-scene {
    min-height: auto;
    max-width: 100%;
  }

  .lp-hero-scene__dash {
    transform: none;
  }

  .lp-hero-scene:hover .lp-hero-scene__dash {
    transform: none;
  }

  .lp-hero-scene__dash-body {
    grid-template-columns: 2.75rem 1fr;
    min-height: 15rem;
  }

  .lp-hero-scene__dash-url {
    font-size: 0.5625rem;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .lp-hero-scene__phone-img {
    position: relative;
    right: auto;
    bottom: auto;
    margin: 1.25rem auto 0;
    width: min(72%, 11rem);
    animation: none;
    filter: drop-shadow(0 16px 32px rgba(0, 0, 0, 0.14));
  }

  .lp-section {
    padding: 3.25rem 0;
  }

  .lp-section__head {
    margin-bottom: 2rem;
    text-align: left;
  }

  .lp-section__title {
    font-size: clamp(1.625rem, 7vw, 2rem);
  }

  .lp-section__desc {
    font-size: 0.9375rem;
  }

  .lp-location,
  .lp-app,
  .lp-plan,
  .lp-benefit {
    padding: 1.375rem 1.25rem;
  }

  .lp-plan--featured {
    margin-top: 0.75rem;
  }

  .lp-plan__price {
    font-size: 2.25rem;
  }

  .lp-plan__price-row {
    flex-wrap: wrap;
    row-gap: 0.25rem;
  }

  .lp-plan__period {
    width: 100%;
    margin-left: 0;
  }

  .lp-app {
    padding: 1.25rem 0.875rem;
  }

  .lp-app__logo {
    width: 3rem;
    height: 3rem;
    margin-bottom: 0.75rem;
  }

  .lp-app__name {
    font-size: 0.875rem;
  }

  .lp-app__platform {
    font-size: 0.6875rem;
  }

  .lp-showcase__copy h3 {
    font-size: 1.375rem;
  }

  .lp-showcase__frame {
    border-radius: var(--lp-radius-lg);
  }

  .lp-mock-dash__body {
    grid-template-columns: 3.25rem 1fr;
    min-height: 13rem;
  }

  .lp-faq__q {
    font-size: 0.9375rem;
    padding: 1rem 0;
  }

  .lp-cta-band {
    padding: 3rem 0;
    text-align: left;
  }

  .lp-cta-band h2 {
    font-size: clamp(1.5rem, 7vw, 1.875rem);
  }

  .lp-cta-band p {
    font-size: 0.9375rem;
    margin-left: 0;
    margin-right: 0;
  }

  .lp-cta-band .lp-btn {
    width: 100%;
    white-space: normal;
  }

  .lp-footer {
    padding: 3rem 0 1.5rem;
  }

  .lp-footer__grid {
    gap: 2rem;
  }

  .lp-footer__bottom {
    text-align: center;
  }

  .lp-btn {
    white-space: normal;
  }

  .lp-btn--lg {
    padding: 0.9375rem 1.25rem;
    font-size: 0.9375rem;
  }

  .lp-network__svg {
    opacity: 0.35;
  }

  .lp-network__node {
    width: 100%;
    max-width: 16rem;
  }
}

/* Small phones */
@media (max-width: 380px) {
  .lp-hero__title {
    font-size: 1.875rem;
  }

  .lp-stats {
    grid-template-columns: 1fr 1fr;
  }

  .lp-apps {
    grid-template-columns: 1fr;
    max-width: 16rem;
    margin-inline: auto;
  }
}

/* Safe areas (notched devices) */
@supports (padding: max(0px)) {
  .lp-nav__inner {
    padding-left: max(1rem, env(safe-area-inset-left));
    padding-right: max(1rem, env(safe-area-inset-right));
  }

  .lp-container {
    padding-left: max(1rem, env(safe-area-inset-left));
    padding-right: max(1rem, env(safe-area-inset-right));
  }

  .lp-footer__bottom {
    padding-bottom: max(0px, env(safe-area-inset-bottom));
  }
}

/* ── Reveal enhanced ── */
.lp-reveal[data-reveal-delay] {
  --reveal-delay: attr(data-reveal-delay number, 0);
  transition-delay: calc(var(--reveal-delay, 0) * 1ms);
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .lp-reveal { opacity: 1; transform: none; transition: none; }
  .lp-location:hover, .lp-plan:hover, .lp-benefit:hover, .lp-app:hover { transform: none; }
  .lp-hero__badge-dot { animation: none; }
  .lp-hero-scene__phone-img { animation: none; }
  .lp-map__ring { animation: none; }
  .lp-network__path--flow { animation: none; }
  .lp-promo-catch__float,
  .lp-promo-catch__orb { animation: none !important; }
}

/* ── Promo catch (билет для новых гостей) ── */
.lp-promo-catch {
  position: fixed;
  right: max(1rem, env(safe-area-inset-right));
  bottom: max(1.25rem, env(safe-area-inset-bottom));
  z-index: 70;
  opacity: 0;
  transform: translateY(12px) scale(0.96);
  transition: opacity 0.45s ease, transform 0.45s ease;
  pointer-events: none;
}

.lp-promo-catch.is-visible {
  opacity: 1;
  transform: none;
  pointer-events: auto;
}

.lp-promo-catch__float {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.7rem 0.85rem 0.7rem 0.75rem;
  border: 1px solid rgba(29, 29, 31, 0.08);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.12);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  cursor: pointer;
  color: #1d1d1f;
  font: inherit;
  animation: lp-promo-float 4.8s ease-in-out infinite;
}

.lp-promo-catch__float:hover {
  border-color: rgba(0, 113, 227, 0.28);
}

.lp-promo-catch__orb {
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, #5ac8fa, #0071e3 70%);
  box-shadow: 0 0 0 6px rgba(0, 113, 227, 0.12);
  animation: lp-promo-pulse 2.4s ease-in-out infinite;
  flex: 0 0 auto;
}

.lp-promo-catch__float-label {
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: -0.01em;
}

.lp-promo-catch__float-badge {
  font-size: 0.75rem;
  font-weight: 600;
  color: #0071e3;
  background: rgba(0, 113, 227, 0.1);
  border-radius: 999px;
  padding: 0.25rem 0.55rem;
}

.lp-promo-catch__card {
  width: min(22rem, calc(100vw - 2rem));
  padding: 1.25rem 1.25rem 1.15rem;
  border-radius: 1.25rem;
  background: #fff;
  border: 1px solid rgba(29, 29, 31, 0.08);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.16);
  position: relative;
  animation: lp-promo-pop 0.42s cubic-bezier(0.2, 0.9, 0.2, 1);
}

.lp-promo-catch__close {
  position: absolute;
  top: 0.55rem;
  right: 0.65rem;
  width: 2rem;
  height: 2rem;
  border: 0;
  border-radius: 50%;
  background: #f5f5f7;
  color: #6e6e73;
  font-size: 1.25rem;
  line-height: 1;
  cursor: pointer;
}

.lp-promo-catch__kicker {
  margin: 0 0 0.35rem;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #6e6e73;
}

.lp-promo-catch__title {
  margin: 0 0 0.9rem;
  font-size: 1.25rem;
  font-weight: 650;
  letter-spacing: -0.02em;
  color: #1d1d1f;
}

.lp-promo-catch__code-row {
  display: flex;
  gap: 0.5rem;
  align-items: stretch;
  margin-bottom: 0.55rem;
}

.lp-promo-catch__code {
  flex: 1 1 auto;
  min-width: 0;
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  padding: 0.75rem 0.85rem;
  border-radius: 0.75rem;
  background: #f5f5f7;
  color: #1d1d1f;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.lp-promo-catch__copy {
  flex: 0 0 auto;
  border: 0;
  border-radius: 0.75rem;
  padding: 0 0.9rem;
  background: #1d1d1f;
  color: #fff;
  font-size: 0.8125rem;
  font-weight: 600;
  cursor: pointer;
}

.lp-promo-catch__meta {
  margin: 0 0 1rem;
  font-size: 0.8125rem;
  color: #6e6e73;
}

.lp-promo-catch__cta {
  width: 100%;
  justify-content: center;
  text-align: center;
}

@keyframes lp-promo-float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

@keyframes lp-promo-pulse {
  0%, 100% { box-shadow: 0 0 0 6px rgba(0, 113, 227, 0.12); }
  50% { box-shadow: 0 0 0 10px rgba(0, 113, 227, 0.08); }
}

@keyframes lp-promo-pop {
  from { opacity: 0; transform: translateY(10px) scale(0.96); }
  to { opacity: 1; transform: none; }
}

@media (max-width: 640px) {
  .lp-promo-catch {
    left: max(1rem, env(safe-area-inset-left));
    right: max(1rem, env(safe-area-inset-right));
  }

  .lp-promo-catch__float {
    width: 100%;
    justify-content: space-between;
  }

  .lp-promo-catch__card {
    width: 100%;
  }
}
