/* BYEPASS — modern minimal futuristic */

:root {
  --bg: #111620;
  --bg-elevated: #161b26;
  --surface: rgba(255, 255, 255, 0.055);
  --surface-hover: rgba(255, 255, 255, 0.09);
  --border: rgba(255, 255, 255, 0.1);
  --text: #eef0f5;
  --text-muted: #9aa3b8;
  --accent-a: #1aa8ff;
  --accent-b: #0a5cb8;
  --accent-gradient: linear-gradient(125deg, var(--accent-a) 0%, var(--accent-b) 55%, #0066cc 100%);
  --accent: var(--accent-a);
  --accent-dim: rgba(26, 168, 255, 0.14);
  --accent-glow: rgba(26, 168, 255, 0.45);
  --accent-border: rgba(26, 168, 255, 0.35);
  --accent-ambient: rgba(26, 168, 255, 0.22);
  --radius: 16px;
  --radius-sm: 10px;
  --font: "Outfit", system-ui, sans-serif;
  --mono: "JetBrains Mono", ui-monospace, monospace;
  --max: 1320px;
  --header-pad-y: 1rem;
  /* Высота «таблетки» как на главной: padding + ряд с кнопкой Telegram (min-height) + padding */
  --header-bar-h: calc(0.55rem + 2.65rem + 0.55rem);
  --header-offset: calc(var(--header-pad-y) + var(--header-bar-h) + 0.5rem);
}

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

html {
  scroll-behavior: smooth;
  font-size: 112.5%;
  overflow-x: hidden;
}

@media (min-width: 900px) {
  html {
    font-size: 116%;
  }
}

@media (min-width: 1200px) {
  html {
    font-size: 120%;
  }
}

@keyframes pulse-glow {

  0%,
  100% {
    box-shadow:
      0 0 32px rgba(26, 168, 255, 0.25),
      0 0 64px rgba(10, 92, 184, 0.12);
  }

  50% {
    box-shadow:
      0 0 48px rgba(26, 168, 255, 0.4),
      0 0 88px rgba(10, 92, 184, 0.2);
  }
}

@keyframes text-shimmer {

  0%,
  100% {
    background-position: 0% 50%;
  }

  50% {
    background-position: 100% 50%;
  }
}

@keyframes fade-up {
  from {
    opacity: 0;
    transform: translateY(14px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

body {
  margin: 0;
  font-family: var(--font);
  font-weight: 400;
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  -webkit-font-smoothing: antialiased;
  position: relative;
}

@supports (min-height: 100dvh) {
  body {
    min-height: 100dvh;
  }
}

main {
  flex: 1 1 auto;
  min-width: 0;
}

body::before,
body::after {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

body::before {
  background:
    radial-gradient(ellipse 90% 55% at 50% -15%, var(--accent-ambient), transparent 55%),
    radial-gradient(ellipse 70% 50% at 100% 30%, rgba(10, 92, 184, 0.14), transparent 50%),
    radial-gradient(ellipse 60% 45% at 0% 75%, rgba(26, 168, 255, 0.1), transparent 48%);
}

body::after {
  background: radial-gradient(circle at 50% 120%, rgba(26, 168, 255, 0.06) 0%, transparent 42%);
  opacity: 0.9;
}

body>* {
  position: relative;
  z-index: 1;
}

a {
  color: var(--accent);
  text-decoration: none;
  transition: opacity 0.2s;
}

a:hover {
  opacity: 0.85;
}

.container {
  width: 100%;
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 clamp(1rem, 4vw, 2rem);
}

.container--narrow {
  max-width: 760px;
}

.container--legal {
  max-width: 820px;
}

.mono {
  font-family: var(--mono);
  font-size: 0.85rem;
}

.muted {
  color: var(--text-muted);
}

/* Header — floating glass pill */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: var(--header-pad-y) 1rem 0;
  background: transparent;
  pointer-events: none;
}

.header__wrap {
  max-width: var(--max);
  margin: 0 auto;
  pointer-events: auto;
}

.header__bar {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
  align-items: center;
  gap: 0.75rem 1.25rem;
  min-height: var(--header-bar-h);
  padding: 0.55rem 0.6rem 0.55rem 1.35rem;
  border-radius: 999px;
  background: rgba(17, 22, 32, 0.4);
  border: 1px solid rgba(255, 255, 255, 0.12);
  /* box-shadow:
    0 4px 24px rgba(0, 0, 0, 0.35),
    0 0 0 1px rgba(0, 0, 0, 0.2) inset; */
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
}

.header__bar--legal {
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
}

.header__bar--legal .legal-header__back {
  justify-self: end;
  align-self: center;
}

.logo {
  justify-self: start;
  display: flex;
  align-items: center;
  gap: 0.45rem;
  color: var(--text);
  font-weight: 600;
  letter-spacing: 0.14em;
  font-size: 0.88rem;
  text-transform: uppercase;
}

.logo__img {
  height: 2.2rem;
  width: auto;
  max-width: 2.5rem;
  display: block;
  flex-shrink: 0;
  object-fit: contain;
}

.logo__img--footer {
  height: 1.7rem;
  max-width: 2rem;
}

.logo__mark {
  background: var(--accent-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-size: 1.1rem;
}

.nav {
  justify-self: center;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.35rem 1.5rem;
}

.nav a {
  color: rgba(238, 240, 245, 0.78);
  font-size: 0.875rem;
  font-weight: 500;
  white-space: nowrap;
  transition: color 0.2s ease, text-shadow 0.25s ease;
}

.nav__telegram-mob {
  display: none;
}

.nav a:hover {
  color: var(--text);
  opacity: 1;
  text-shadow: 0 0 18px rgba(26, 168, 255, 0.35);
}

.header__actions {
  justify-self: end;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  width: 40px;
  height: 40px;
  padding: 0;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--surface);
  cursor: pointer;
}

.burger span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 0 auto;
  background: var(--text);
  transition: transform 0.2s;
}

.burger[aria-expanded="true"] span:first-child {
  transform: translateY(4px) rotate(45deg);
}

.burger[aria-expanded="true"] span:last-child {
  transform: translateY(-4px) rotate(-45deg);
}

.btn--nav-cta {
  gap: 0.4rem;
  background: #f0f3f8;
  color: var(--bg);
  border-color: transparent;
  font-weight: 600;
  box-shadow: none;
  padding: 0.58rem 1.4rem;
  font-size: 0.95rem;
  min-height: 2.65rem;
}

.header__telegram-icon {
  flex-shrink: 0;
  display: block;
}

.btn--nav-cta:hover {
  background: #ffffff;
  opacity: 1;
}

@media (max-width: 900px) {
  .header__bar {
    grid-template-columns: 1fr auto;
    padding-right: 0.55rem;
  }

  .nav {
    position: fixed;
    top: calc(var(--header-pad-y) + var(--header-bar-h) + 0.5rem);
    left: 1rem;
    right: 1rem;
    z-index: 99;
    justify-self: stretch;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 0.5rem;
    border-radius: var(--radius);
    background: rgba(17, 22, 32, 0.96);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.45);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    transform: translateY(-8px) scale(0.98);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.22s ease, opacity 0.22s ease;
  }

  .nav a {
    padding: 0.75rem 1rem;
    border-radius: var(--radius-sm);
  }

  .nav a:hover {
    background: var(--surface-hover);
  }

  .nav.is-open {
    transform: translateY(0) scale(1);
    opacity: 1;
    pointer-events: auto;
  }

  .nav__telegram-mob {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0.35rem;
    padding: 0.65rem 1rem;
    font-weight: 600;
    color: var(--bg) !important;
    background: #f0f3f8;
    border-radius: var(--radius-sm);
  }

  .nav__telegram-mob:hover {
    background: #fff;
  }

  .burger {
    display: flex;
  }

  .header__telegram-label {
    display: none;
  }

  .header__actions .btn--nav-cta.btn--sm {
    padding: 0;
    width: 40px;
    height: 40px;
    min-width: 40px;
    min-height: 40px;
    border-radius: var(--radius);
  }
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.9rem 1.85rem;
  font-family: var(--font);
  font-size: 1.02rem;
  font-weight: 600;
  border-radius: 999px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s, box-shadow 0.2s;
  min-height: 3.1rem;
  box-sizing: border-box;
}

.btn--sm {
  padding: 0.62rem 1.35rem;
  font-size: 0.92rem;
  min-height: 2.65rem;
}

.btn--lg {
  padding: 1.05rem 2.35rem;
  font-size: 1.1rem;
  min-height: 3.5rem;
}

.btn--primary {
  background: var(--accent-gradient);
  background-size: 200% 200%;
  color: #f6f9ff;
  box-shadow: 0 0 28px var(--accent-glow);
  animation: btn-glow 4s ease-in-out infinite;
}

.btn--primary:hover {
  opacity: 0.98;
  box-shadow: 0 0 44px var(--accent-glow);
  animation-play-state: paused;
}

@keyframes btn-glow {

  0%,
  100% {
    background-position: 0% 50%;
    box-shadow: 0 0 28px rgba(26, 168, 255, 0.38);
  }

  50% {
    background-position: 100% 50%;
    box-shadow: 0 0 40px rgba(26, 168, 255, 0.55);
  }
}

.btn--outline {
  background: transparent;
  border-color: var(--border);
  color: var(--text);
}

.btn--outline:hover {
  border-color: var(--accent-border);
  background: var(--accent-dim);
}

.btn--ghost {
  background: var(--surface);
  border-color: var(--border);
  color: var(--text);
}

.btn--ghost:hover {
  background: var(--surface-hover);
}

.btn--block {
  width: 100%;
}

/* Hero */
.hero {
  position: relative;
  overflow: hidden;
  min-height: calc(100vh - var(--header-offset));
  display: flex;
  flex-direction: column;
  justify-content: center;
  box-sizing: border-box;
  padding: calc(var(--header-offset) + 1.75rem) 0 clamp(3.25rem, 8vw, 6rem);
  /* Базовый мягкий свет на всю ширину — без «шва» от узкого ::before на wide */
  background: radial-gradient(ellipse 120% 70% at 50% 18%,
      rgba(26, 168, 255, 0.1) 0%,
      rgba(10, 92, 184, 0.04) 45%,
      transparent 72%);
}

@supports (height: 100svh) {
  .hero {
    min-height: calc(110svh - var(--header-offset));
  }
}

@media (max-height: 520px) {
  .hero {
    min-height: 0;
  }
}

/* 404 — единый фон с body: без отдельного градиента секции и без «шва» hero::after */
main.main--error {
  display: flex;
  flex-direction: column;
  min-height: 0;
}

.hero.hero--error {
  flex: 1 1 auto;
  min-height: 0;
  justify-content: center;
  background: none;
  padding-bottom: clamp(2.5rem, 6vw, 4rem);
}

.hero.hero--error::before,
.hero.hero--error::after {
  display: none;
}

.error-hero__code {
  display: block;
  font-size: clamp(3.75rem, 16vw, 6.5rem);
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 1;
  margin: 0 0 0.85rem;
  color: var(--text);
  opacity: 0.94;
}

.hero--error .hero__title {
  margin-bottom: 1.1rem;
}

.hero--error .hero__title .gradient-text {
  display: block;
  font-size: clamp(1.65rem, 4.5vw, 2.35rem);
  line-height: 1.15;
  margin-top: 0.15rem;
}

.hero::before {
  content: "";
  position: absolute;
  /* Не ограничивать 960px: на широких экранах круг обрывался → вертикальный шов */
  width: min(250vw, 2800px);
  height: min(250vw, 2800px);
  left: 50%;
  top: 10%;
  transform: translate(-50%, -40%);
  border-radius: 50%;
  background: radial-gradient(circle at 50% 42%,
      rgba(26, 168, 255, 0.2) 0%,
      rgba(26, 168, 255, 0.1) 28%,
      rgba(10, 92, 184, 0.05) 48%,
      rgba(10, 92, 184, 0.015) 68%,
      transparent 82%);
  opacity: 0.97;
  pointer-events: none;
  z-index: 0;
}

/* Мягкое «размытие» стыка hero → следующая секция (фон body) */
.hero::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: clamp(4.5rem, 14vw, 9rem);
  pointer-events: none;
  z-index: 0;
  background: linear-gradient(to bottom,
      transparent 0%,
      rgba(17, 22, 32, 0.2) 38%,
      rgba(17, 22, 32, 0.72) 78%,
      var(--bg) 100%);
  backdrop-filter: blur(28px) saturate(1.06);
  -webkit-backdrop-filter: blur(28px) saturate(1.06);
}

.hero__net {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}

.hero__net-float {
  position: absolute;
  left: 0;
  top: 0;
  color: rgba(26, 168, 255, 0.48);
  will-change: transform, opacity;
}

.hero__net-svg {
  display: block;
  width: 3.5rem;
  height: 3.5rem;
}

.hero__net-float--1 {
  animation: hero-net-1 22s linear infinite;
}

.hero__net-float--2 {
  animation: hero-net-2 28s linear infinite;
  animation-delay: -7s;
}

.hero__net-float--3 {
  animation: hero-net-3 18s linear infinite;
  animation-delay: -12s;
}

.hero__net-float--3 .hero__net-svg {
  width: 2.4rem;
  height: 2.4rem;
}

.hero__net-float--4 {
  animation: hero-net-4 32s linear infinite;
  animation-delay: -4s;
}

.hero__net-float--4 .hero__net-svg {
  width: 2.9rem;
  height: 2.9rem;
}

@keyframes hero-net-1 {
  0% {
    transform: translate(-8vw, 18vh) rotate(-18deg);
    opacity: 0;
  }

  10% {
    opacity: 0.75;
  }

  78% {
    opacity: 0.68;
  }

  100% {
    transform: translate(96vw, 58vh) rotate(12deg);
    opacity: 0;
  }
}

@keyframes hero-net-2 {
  0% {
    transform: translate(96vw, 68vh) rotate(22deg);
    opacity: 0;
  }

  12% {
    opacity: 0.55;
  }

  82% {
    opacity: 0.48;
  }

  100% {
    transform: translate(-5vw, 10vh) rotate(-14deg);
    opacity: 0;
  }
}

@keyframes hero-net-3 {
  0% {
    transform: translate(82vw, 2vh) rotate(8deg);
    opacity: 0;
  }

  14% {
    opacity: 0.65;
  }

  80% {
    opacity: 0.55;
  }

  100% {
    transform: translate(-8vw, 72vh) rotate(-20deg);
    opacity: 0;
  }
}

@keyframes hero-net-4 {
  0% {
    transform: translate(40vw, 88vh) rotate(-6deg);
    opacity: 0;
  }

  18% {
    opacity: 0.45;
  }

  78% {
    opacity: 0.38;
  }

  100% {
    transform: translate(52vw, -6vh) rotate(10deg);
    opacity: 0;
  }
}

.hero__content .eyebrow {
  font-size: 0.8125rem;
  margin-bottom: 1.35rem;
  animation: fade-up 0.7s ease backwards;
}

.hero__content .hero__title {
  animation: fade-up 0.75s ease 0.08s backwards;
}

.hero__content .hero__lead {
  animation: fade-up 0.75s ease 0.16s backwards;
}

.hero__content .hero__cta {
  animation: fade-up 0.75s ease 0.24s backwards;
}

@media (prefers-reduced-motion: reduce) {
  .hero__net-float {
    animation: none;
    opacity: 0;
  }

  .hero__content .eyebrow,
  .hero__content .hero__title,
  .hero__content .hero__lead,
  .hero__content .hero__cta {
    animation: none;
  }

}

.hero__inner {
  position: relative;
  z-index: 1;
  width: 100%;
  margin: 0 auto;
  text-align: center;
}

.hero__content {
  min-width: 0;
}

.eyebrow {
  font-family: var(--mono);
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  background: var(--accent-gradient);
  background-size: 200% 200%;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin: 0 0 1.25rem;
  animation: text-shimmer 10s ease-in-out infinite;
}

.hero__title {
  font-size: clamp(2.6rem, 6vw, 4.25rem);
  font-weight: 700;
  line-height: 1.08;
  margin: 0 0 1.35rem;
  letter-spacing: -0.02em;
}

.gradient-text {
  background: var(--accent-gradient);
  background-size: 200% 200%;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation: text-shimmer 9s ease-in-out infinite;
}

.hero__lead {
  color: var(--text-muted);
  font-size: clamp(1.125rem, 2.85vw, 1.4rem);
  max-width: min(44rem, 100%);
  margin: 0 auto 2.25rem;
}

.hero__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 1.25rem;
  margin-bottom: 0;
  justify-content: center;
  width: 100%;
}

.hero__cta .btn--primary {
  gap: 0.55rem;
}

.hero__cta-logo {
  display: block;
  width: 1.65rem;
  height: auto;
  flex-shrink: 0;
}

@media (max-width: 540px) {
  .hero__cta {
    flex-direction: column;
    align-items: stretch;
  }

  .hero__cta .btn {
    width: 100%;
  }
}

.card-glass {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  backdrop-filter: blur(12px);
  transition:
    border-color 0.35s ease,
    box-shadow 0.35s ease,
    transform 0.35s ease;
}

/* Trial banner */
.trial-banner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: stretch;
  gap: clamp(1.5rem, 4vw, 2.5rem);
  padding: clamp(1.75rem, 4vw, 2.5rem) clamp(1.5rem, 3vw, 2.5rem);
  width: 100%;
  box-sizing: border-box;
  border-color: var(--accent-border);
  background: linear-gradient(135deg,
      rgba(26, 168, 255, 0.12) 0%,
      rgba(10, 92, 184, 0.06) 50%,
      var(--surface) 100%);
  box-shadow: 0 0 48px rgba(26, 168, 255, 0.08);
}

.trial-banner__eyebrow {
  margin-bottom: 0.65rem;
}

.trial-banner__title {
  font-size: clamp(1.35rem, 2.5vw, 1.75rem);
  font-weight: 600;
  margin: 0 0 0.75rem;
  letter-spacing: -0.02em;
}

.trial-banner__text {
  margin: 0 0 1rem;
  color: var(--text-muted);
  font-size: clamp(1rem, 2.2vw, 1.08rem);
  line-height: 1.65;
  max-width: none;
  width: 100%;
}

.trial-banner__list {
  margin: 0 0 1rem;
  padding-left: 1.2rem;
  color: var(--text-muted);
  font-size: 0.98rem;
  line-height: 1.55;
}

.trial-banner__list li {
  margin-bottom: 0.4rem;
}

.trial-banner__note {
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.5;
}

.trial-banner__cta {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  justify-content: center;
  gap: 0.85rem;
  min-width: min(14rem, 100%);
}

.trial-banner__cta .btn--primary {
  gap: 0.55rem;
}

.trial-banner__content {
  min-width: 0;
}

@media (max-width: 800px) {
  .trial-banner {
    grid-template-columns: 1fr;
  }

  .trial-banner__cta {
    min-width: 0;
    width: 100%;
  }

  .trial-banner__cta .btn {
    width: 100%;
  }
}

/* Legal subpages — высота как у .btn--nav-cta на главной */
.legal-header__back {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.65rem;
  padding: 0.58rem 1.4rem;
  box-sizing: border-box;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-muted);
  white-space: nowrap;
  line-height: 1.2;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: var(--surface);
  transition:
    color 0.2s ease,
    background 0.2s ease,
    border-color 0.2s ease,
    opacity 0.2s ease;
}

.legal-header__back:hover {
  color: var(--accent);
  opacity: 1;
  background: var(--surface-hover);
  border-color: var(--accent-border);
}

.legal-doc {
  padding: calc(var(--header-offset) + 2rem) 0 4.5rem;
}

.legal-doc__meta {
  font-family: var(--mono);
  font-size: 0.8rem;
  color: var(--text-muted);
  margin: 0 0 1.5rem;
  letter-spacing: 0.04em;
}

.legal-doc h1 {
  font-size: clamp(1.85rem, 4vw, 2.35rem);
  font-weight: 600;
  margin: 0 0 1.25rem;
  letter-spacing: -0.03em;
  line-height: 1.2;
}

.legal-doc h2 {
  font-size: 1.2rem;
  font-weight: 600;
  margin: 2.25rem 0 0.65rem;
  color: var(--text);
}

.legal-doc p {
  margin: 0 0 1rem;
  color: var(--text-muted);
  font-size: 1rem;
  line-height: 1.7;
}

.legal-doc ul,
.legal-doc ol {
  margin: 0 0 1rem;
  padding-left: 1.35rem;
  color: var(--text-muted);
  line-height: 1.65;
}

.legal-doc li {
  margin-bottom: 0.45rem;
}

.legal-doc a {
  text-decoration: underline;
  text-underline-offset: 0.2em;
}

/* Sections */
.section {
  padding: clamp(3.5rem, 8vw, 5.5rem) 0;
}

.section--tight {
  padding: clamp(3rem, 6vw, 4.5rem) 0;
}

.section__head {
  text-align: center;
  width: 100%;
  max-width: none;
  margin: 0 auto clamp(2rem, 5vw, 3rem);
}

.section__title {
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  font-weight: 600;
  margin: 0 0 0.75rem;
  letter-spacing: -0.02em;
}

.section__subtitle {
  margin: 0 auto;
  color: var(--text-muted);
  font-size: clamp(1rem, 2.2vw, 1.12rem);
  max-width: min(48rem, 100%);
}

/* Features */
.features {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(1rem, 2.5vw, 1.5rem);
  align-items: stretch;
  width: 100%;
}

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

.feature {
  height: 100%;
  display: flex;
  flex-direction: column;
  padding: clamp(1.5rem, 3vw, 2rem);
  transition:
    border-color 0.25s ease,
    background 0.25s ease,
    transform 0.35s ease,
    box-shadow 0.35s ease;
}

.feature:hover {
  border-color: var(--accent-border);
  background: var(--surface-hover);
  transform: translateY(-3px);
  box-shadow: 0 16px 48px rgba(26, 168, 255, 0.1);
}

.feature__icon {
  font-family: var(--mono);
  font-size: 0.75rem;
  background: var(--accent-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  display: block;
  margin-bottom: 1rem;
}

.feature h3 {
  margin: 0 0 0.5rem;
  font-size: 1.15rem;
  font-weight: 600;
}

.feature p {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.95rem;
  flex: 1;
}

/* Pricing */
.pricing {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(0.85rem, 2vw, 1.35rem);
  align-items: stretch;
  width: 100%;
}

@media (max-width: 1000px) {
  .pricing {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

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

.price-card {
  padding: clamp(1.5rem, 3vw, 2rem) clamp(1.35rem, 2.5vw, 1.75rem);
  display: flex;
  flex-direction: column;
  position: relative;
  height: 100%;
  min-height: 0;
  transition:
    transform 0.35s ease,
    border-color 0.35s ease,
    box-shadow 0.35s ease;
}

.price-card:hover {
  transform: translateY(-4px);
  border-color: var(--accent-border);
}

.price-card--featured {
  border-color: var(--accent-border);
  background: linear-gradient(165deg,
      rgba(26, 168, 255, 0.1) 0%,
      rgba(10, 92, 184, 0.08) 45%,
      var(--surface) 100%);
  animation: pulse-glow 5s ease-in-out infinite;
}

.price-card__badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  font-size: 0.65rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #f0f4ff;
  background: var(--accent-gradient);
  padding: 0.25rem 0.5rem;
  border-radius: 4px;
}

.price-card__name {
  margin: 0 0 0.5rem;
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-muted);
}

.price-card__price {
  margin: 0 0 0.25rem;
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: -0.03em;
}

.price-card__amount {
  font-variant-numeric: tabular-nums;
}

.price-card__currency {
  font-size: 1.25rem;
  font-weight: 500;
  color: var(--text-muted);
}

.price-card__per {
  margin: 0 0 1.25rem;
  font-size: 0.85rem;
  color: var(--text-muted);
}

.price-card__list {
  margin: 0 0 1.5rem;
  padding: 0 0 0 1.1rem;
  flex: 1;
  color: var(--text-muted);
  font-size: 0.9rem;
}

.price-card__list li {
  margin-bottom: 0.4rem;
}

.pricing__note {
  text-align: center;
  margin-top: 2rem;
  font-size: 0.9rem;
  color: var(--text-muted);
}

/* Steps */
.steps {
  list-style: none;
  margin: 0 0 2rem;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: clamp(0.85rem, 2vw, 1.15rem);
  width: 100%;
}

.steps__item {
  display: flex;
  gap: clamp(1rem, 2.5vw, 1.75rem);
  padding: clamp(1.35rem, 3vw, 1.85rem) clamp(1.25rem, 3vw, 2rem);
  align-items: flex-start;
  width: 100%;
  box-sizing: border-box;
  transition:
    border-color 0.3s ease,
    transform 0.35s ease,
    box-shadow 0.35s ease;
}

.steps__item:hover {
  border-color: var(--accent-border);
  transform: translateX(4px);
  box-shadow: -6px 0 32px rgba(26, 168, 255, 0.08);
}

.steps__num {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--mono);
  font-weight: 600;
  font-size: 1rem;
  border-radius: 12px;
  background: var(--accent-dim);
  color: var(--accent-a);
  border: 1px solid var(--accent-border);
}

.steps__item h3 {
  margin: 0 0 0.35rem;
  font-size: 1.1rem;
}

.steps__item p {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.95rem;
}

.info-block {
  padding: clamp(1.5rem, 3vw, 2rem) clamp(1.35rem, 3vw, 2.25rem);
  width: 100%;
  box-sizing: border-box;
}

.info-block__title {
  margin: 0 0 1rem;
  font-size: 1.1rem;
}

.info-block__lead {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.65;
}

.info-block__list {
  margin: 0;
  padding-left: 1.2rem;
  color: var(--text-muted);
}

.info-block__list li {
  margin-bottom: 0.5rem;
}

/* FAQ */
.faq {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  width: 100%;
}

.faq__item {
  padding: 0;
  overflow: hidden;
}

.faq__item summary {
  padding: 1.1rem 1.25rem;
  cursor: pointer;
  font-weight: 600;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.faq__item summary::-webkit-details-marker {
  display: none;
}

.faq__item summary::after {
  content: "+";
  font-family: var(--mono);
  color: var(--accent);
  font-size: 1.25rem;
}

.faq__item[open] summary::after {
  content: "−";
}

.faq__item p {
  margin: 0;
  padding: 0 1.25rem 1.25rem;
  color: var(--text-muted);
  font-size: 0.95rem;
  border-top: 1px solid var(--border);
  padding-top: 1rem;
}

/* CTA */
.cta {
  padding: clamp(2rem, 5vw, 3rem) 0 clamp(3.5rem, 8vw, 5.5rem);
}

.cta__inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: clamp(1.25rem, 3vw, 2rem);
  padding: clamp(1.75rem, 4vw, 2.5rem) clamp(1.5rem, 3vw, 2.75rem);
  width: 100%;
  box-sizing: border-box;
  background: linear-gradient(to top right,
      rgba(26, 168, 255, 0.12) 0%,
      rgba(10, 92, 184, 0.14) 100%);
  border-color: rgba(26, 168, 255, 0.22);
  box-shadow: 0 0 60px rgba(26, 168, 255, 0.06);
}

.cta__title {
  margin: 0 0 0.35rem;
  font-size: 1.5rem;
}

.cta__text {
  margin: 0;
  color: var(--text-muted);
}

.cta__btn {
  gap: 0.55rem;
}

.cta__btn-icon {
  flex-shrink: 0;
  display: block;
}

@media (max-width: 640px) {
  .cta__inner {
    flex-direction: column;
    align-items: stretch;
    text-align: center;
  }

  .cta__inner .btn {
    width: 100%;
  }
}

/* Footer */
.footer {
  border-top: 1px solid var(--border);
  padding: 2.5rem 0;
  background: linear-gradient(180deg, var(--bg-elevated) 0%, var(--bg) 100%);
}

.footer__inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.footer__mark {
  display: flex;
  align-items: center;
  gap: 0.5rem 1rem;
  flex-shrink: 0;
}

.footer__copy {
  margin: 1.25rem 0 0;
  font-size: 0.85rem;
  color: var(--text-muted);
  text-align: center;
}

.footer__links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  align-items: center;
  gap: 0.65rem 1.25rem;
  flex: 1 1 auto;
  min-width: 0;
  max-width: 100%;
}

.footer__links a {
  color: var(--text-muted);
  font-size: 0.875rem;
}

.footer__telegram {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.15rem;
  margin: -0.15rem;
}

.footer__telegram-icon {
  flex-shrink: 0;
  display: block;
}

.footer__links a:hover {
  color: var(--text);
  opacity: 1;
}

@media (max-width: 640px) {
  .footer__inner {
    flex-direction: column;
    align-items: stretch;
  }

  .footer__links {
    justify-content: flex-start;
  }
}

@media (prefers-reduced-motion: reduce) {

  .eyebrow,
  .gradient-text {
    animation: none;
  }

  .btn--primary {
    animation: none;
  }

  .price-card--featured {
    animation: none;
    box-shadow: 0 0 40px rgba(26, 168, 255, 0.18);
  }

  .feature:hover {
    transform: none;
    box-shadow: none;
  }

  .steps__item:hover {
    transform: none;
    box-shadow: none;
  }

  .price-card:hover {
    transform: none;
  }
}