@import url("https://fonts.googleapis.com/css2?family=Manrope:wght@400;500;600;700;800;900&family=Unbounded:wght@500;600;700;800&display=swap");

:root {
  color-scheme: dark;
  --bg: #020610;
  --bg-2: #06111f;
  --surface: rgba(8, 22, 38, 0.72);
  --surface-strong: rgba(7, 17, 30, 0.92);
  --surface-soft: rgba(255, 255, 255, 0.055);
  --line: rgba(134, 218, 255, 0.18);
  --line-strong: rgba(134, 218, 255, 0.34);
  --text: #f3fbff;
  --muted: rgba(215, 232, 243, 0.72);
  --muted-2: rgba(184, 209, 224, 0.56);
  --blue: #34b8ff;
  --cyan: #76e4ff;
  --cyan-soft: rgba(118, 228, 255, 0.82);
  --ice: #dff8ff;
  --ink: #07111f;
  --deep: #087be8;
  --green: #7dffc4;
  --red: #ff739d;
  --warning: #ffd27a;
  --shadow: 0 30px 90px rgba(0, 5, 14, 0.55);
  --glass-shadow: 0 34px 120px rgba(0, 8, 22, 0.56), inset 0 1px 0 rgba(255, 255, 255, 0.18);
  --premium-shadow: 0 42px 140px rgba(0, 8, 22, 0.66), 0 0 90px rgba(52, 184, 255, 0.12);
  --liquid-shadow: 0 32px 120px rgba(0, 12, 32, 0.64), inset 0 1px 0 rgba(255, 255, 255, 0.22), inset 0 -34px 70px rgba(118, 228, 255, 0.035);
  --glass-border: rgba(154, 230, 255, 0.22);
  --ease-premium: cubic-bezier(0.2, 0.82, 0.24, 1);
  --phone-metal: linear-gradient(145deg, #d7eef8 0%, #647786 8%, #0c121a 28%, #02050a 54%, #89dff7 76%, #f4fbff 100%);
  --radius-xl: 34px;
  --radius-lg: 26px;
  --radius-md: 18px;
  --container: min(1180px, calc(100vw - 32px));
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  color: var(--text);
  background:
    radial-gradient(circle at 48% -8%, rgba(205, 249, 255, 0.12), transparent 25rem),
    radial-gradient(circle at 8% 0%, rgba(52, 184, 255, 0.16), transparent 34rem),
    radial-gradient(circle at 95% 8%, rgba(118, 228, 255, 0.13), transparent 32rem),
    radial-gradient(ellipse at 50% -12%, rgba(255, 255, 255, 0.07), transparent 46rem),
    linear-gradient(180deg, #020610 0%, #06101f 46%, #030813 100%);
  font-family: "Manrope", "Segoe UI", sans-serif;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

a {
  color: inherit;
}

button,
input,
textarea {
  font: inherit;
}

button {
  cursor: pointer;
}

button:disabled,
a.disabled {
  cursor: not-allowed;
  opacity: 0.55;
}

.cursor-dot {
  display: none;
}

@media (hover: hover) and (pointer: fine) {
  body.custom-cursor-enabled,
  body.custom-cursor-enabled * {
    cursor: none !important;
  }

  .cursor-dot {
    position: fixed;
    left: 0;
    top: 0;
    z-index: 10000;
    display: block;
    width: 8px;
    height: 8px;
    margin: -4px 0 0 -4px;
    border-radius: 999px;
    background: #dffcff;
    pointer-events: none;
    box-shadow:
      0 0 0 5px rgba(118, 228, 255, 0.1),
      0 0 22px rgba(118, 228, 255, 0.62);
    opacity: 0.92;
    transition: opacity 180ms ease, width 180ms ease, height 180ms ease;
    will-change: transform;
  }

  .cursor-dot.is-hidden {
    opacity: 0;
  }
}

.app-layout {
  position: relative;
  min-height: 100vh;
  isolation: isolate;
}

.noise-layer,
.grid-layer,
.mirror-layer,
.glow {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -1;
}

.noise-layer {
  opacity: 0.08;
  background-image:
    radial-gradient(circle at 25% 25%, rgba(255, 255, 255, 0.9) 0 1px, transparent 1px),
    radial-gradient(circle at 75% 75%, rgba(255, 255, 255, 0.6) 0 1px, transparent 1px);
  background-size: 38px 38px, 61px 61px;
}

.grid-layer {
  opacity: 0.12;
  background:
    linear-gradient(rgba(118, 228, 255, 0.09) 1px, transparent 1px),
    linear-gradient(90deg, rgba(118, 228, 255, 0.09) 1px, transparent 1px);
  background-size: 78px 78px;
  mask-image: radial-gradient(circle at 50% 22%, #000 0%, transparent 78%);
}

.mirror-layer {
  opacity: 0.2;
  background:
    linear-gradient(118deg, transparent 0 32%, rgba(255, 255, 255, 0.075) 39%, transparent 50%),
    conic-gradient(from 212deg at 65% 18%, transparent 0deg, rgba(118, 228, 255, 0.1) 42deg, transparent 112deg),
    radial-gradient(ellipse at 28% 18%, rgba(255, 255, 255, 0.08), transparent 28rem);
  filter: blur(0.8px);
  mix-blend-mode: screen;
  animation: mirrorSweep 34s var(--ease-premium) infinite alternate;
  will-change: transform;
  transform: translateZ(0);
}

@keyframes mirrorSweep {
  from { transform: translate3d(-2%, -1%, 0) rotate(-1deg); }
  to { transform: translate3d(2%, 1%, 0) rotate(1deg); }
}

.glow {
  width: 22rem;
  height: 22rem;
  border-radius: 999px;
  filter: blur(56px);
  opacity: 0.22;
  animation: drift 32s ease-in-out infinite alternate;
  will-change: transform;
  transform: translateZ(0);
}

.glow-a {
  inset: -10rem auto auto -7rem;
  background: #19aaff;
}

.glow-b {
  inset: 16rem -10rem auto auto;
  background: #63e2ff;
  animation-delay: -4s;
}

.glow-c {
  inset: auto auto -14rem 34%;
  width: 34rem;
  height: 34rem;
  background: #0b6adb;
  animation-delay: -8s;
}

@keyframes drift {
  from { transform: translate3d(0, 0, 0) scale(1); }
  to { transform: translate3d(26px, -18px, 0) scale(1.08); }
}

.site-header {
  position: sticky;
  top: 14px;
  z-index: 20;
  width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 20px;
  padding: 12px;
  border: 1px solid rgba(134, 218, 255, 0.18);
  border-radius: 24px;
  background:
    linear-gradient(135deg, rgba(255,255,255,0.11), rgba(3, 11, 22, 0.68) 38%, rgba(7, 24, 40, 0.62)),
    radial-gradient(circle at 12% 0%, rgba(118, 228, 255, 0.12), transparent 12rem);
  box-shadow: 0 18px 60px rgba(0, 6, 16, 0.42), inset 0 1px 0 rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(28px) saturate(1.24);
  overflow: hidden;
}

.site-header::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(105deg, transparent 0 28%, rgba(255,255,255,0.12) 42%, transparent 58%);
  transform: translateX(-120%);
  animation: headerGlint 9s ease-in-out infinite;
  pointer-events: none;
}

@keyframes headerGlint {
  0%, 74% { transform: translateX(-120%); opacity: 0; }
  82% { opacity: 1; }
  100% { transform: translateX(120%); opacity: 0; }
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 10px;
  text-decoration: none;
  font-family: "Unbounded", "Manrope", sans-serif;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.brand img {
  width: 34px;
  height: 34px;
  border-radius: 11px;
  object-fit: contain;
  box-shadow: 0 0 22px rgba(72, 196, 255, 0.45);
}

.desktop-nav {
  display: flex;
  justify-content: center;
  gap: 4px;
}

.desktop-nav a,
.mobile-menu a {
  text-decoration: none;
  color: var(--muted);
  border-radius: 999px;
  transition: color 420ms var(--ease-premium), background 420ms var(--ease-premium), transform 420ms var(--ease-premium);
}

.desktop-nav a {
  padding: 10px 14px;
  font-size: 0.94rem;
}

.desktop-nav a:hover,
.desktop-nav a.active,
.mobile-menu a:hover,
.mobile-menu a.active {
  color: var(--text);
  background: rgba(118, 228, 255, 0.11);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.primary-link,
.primary-btn,
.secondary-btn,
.ghost-btn,
.icon-btn,
.copy-btn,
.chip-btn {
  min-height: 46px;
  border-radius: 15px;
  border: 1px solid transparent;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 0 17px;
  text-decoration: none;
  font-weight: 800;
  transition: transform 420ms var(--ease-premium), border-color 420ms var(--ease-premium), background 420ms var(--ease-premium), box-shadow 420ms var(--ease-premium);
  position: relative;
  overflow: hidden;
}

.primary-link,
.primary-btn {
  color: #00131f;
  background:
    linear-gradient(120deg, rgba(255,255,255,0.34), transparent 26%),
    linear-gradient(135deg, var(--cyan), var(--blue) 54%, #1b94ff);
  box-shadow: 0 18px 44px rgba(52, 184, 255, 0.28);
}

.primary-link::after,
.primary-btn::after,
.secondary-btn::after,
.ghost-btn::after,
.copy-btn::after,
.chip-btn::after {
  content: "";
  position: absolute;
  inset: -1px;
  background: linear-gradient(105deg, transparent 0 35%, rgba(255,255,255,0.38) 48%, transparent 62%);
  transform: translateX(-125%);
  transition: transform 520ms ease;
  pointer-events: none;
}

.primary-link:hover::after,
.primary-btn:hover::after,
.secondary-btn:hover::after,
.ghost-btn:hover::after,
.copy-btn:hover::after,
.chip-btn:hover::after {
  transform: translateX(125%);
}

.secondary-btn,
.ghost-btn,
.copy-btn,
.chip-btn {
  color: var(--text);
  border-color: rgba(134, 218, 255, 0.22);
  background: rgba(255, 255, 255, 0.055);
}

.primary-btn:hover,
.primary-link:hover,
.secondary-btn:hover,
.ghost-btn:hover,
.copy-btn:hover,
.chip-btn:hover {
  transform: translateY(-2px);
  border-color: rgba(118, 228, 255, 0.42);
}

.icon-btn {
  display: none;
  width: 48px;
  padding: 0;
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(134, 218, 255, 0.2);
}

.icon-btn span {
  width: 18px;
  height: 2px;
  background: var(--text);
  border-radius: 999px;
}

.mobile-menu {
  position: sticky;
  top: 88px;
  z-index: 19;
  width: var(--container);
  margin: 10px auto 0;
  padding: 10px;
  display: grid;
  gap: 6px;
  border: 1px solid rgba(134, 218, 255, 0.18);
  border-radius: 22px;
  background: rgba(4, 13, 24, 0.92);
  backdrop-filter: blur(20px);
}

.mobile-menu a {
  padding: 13px 14px;
}

.hidden {
  display: none !important;
}

.site-main {
  width: var(--container);
  margin: 26px auto 0;
}

.page > section:not(.hero-section) {
  content-visibility: auto;
  contain-intrinsic-size: 720px;
}

.page {
  animation: pageIn 360ms ease both;
}

@keyframes pageIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

.reveal {
  opacity: 0;
  transform: translate3d(0, 22px, 0);
  transition:
    opacity 920ms var(--ease-premium),
    transform 920ms var(--ease-premium);
  will-change: opacity, transform;
}

.reveal.visible {
  opacity: 1;
  transform: translate3d(0, 0, 0);
  will-change: auto;
}

@keyframes sectionReveal {
  from { opacity: 0.01; transform: translateY(16px); }
  to { opacity: 1; transform: translateY(0); }
}

@media (min-width: 981px) {
  .hero-copy > * {
    animation: heroCopyRise 980ms var(--ease-premium) both;
  }

  .hero-copy > :nth-child(2) { animation-delay: 80ms; }
  .hero-copy > :nth-child(3) { animation-delay: 150ms; }
  .hero-copy > :nth-child(4) { animation-delay: 220ms; }
  .hero-copy > :nth-child(5) { animation-delay: 290ms; }
  .hero-copy > :nth-child(6) { animation-delay: 360ms; }

  .feature-card,
  .signal-ribbon article,
  .plan-card,
  .glass-card {
    transform: translateZ(0);
    backface-visibility: hidden;
  }

  .signal-ribbon article:nth-child(1),
  .feature-card:nth-child(1) { transition-delay: 40ms; }
  .signal-ribbon article:nth-child(2),
  .feature-card:nth-child(2) { transition-delay: 100ms; }
  .signal-ribbon article:nth-child(3),
  .feature-card:nth-child(3) { transition-delay: 160ms; }
  .signal-ribbon article:nth-child(4) { transition-delay: 220ms; }
}

@keyframes heroCopyRise {
  from { opacity: 0; transform: translate3d(0, 18px, 0); }
  to { opacity: 1; transform: translate3d(0, 0, 0); }
}

.hero-section {
  min-height: 680px;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(390px, 0.8fr);
  gap: clamp(26px, 4vw, 54px);
  align-items: center;
  padding: clamp(30px, 5vw, 66px);
  border: 1px solid rgba(180, 240, 255, 0.24);
  border-radius: 46px;
  background:
    radial-gradient(circle at 12% 6%, rgba(118, 228, 255, 0.25), transparent 28rem),
    radial-gradient(ellipse at 86% 8%, rgba(255, 255, 255, 0.16), transparent 22rem),
    radial-gradient(circle at 70% 92%, rgba(52, 184, 255, 0.18), transparent 22rem),
    linear-gradient(145deg, rgba(12, 31, 52, 0.98), rgba(3, 10, 20, 0.94) 48%, rgba(7, 27, 48, 0.94));
  box-shadow: var(--premium-shadow), var(--liquid-shadow);
  overflow: hidden;
  position: relative;
  isolation: isolate;
  contain: layout paint style;
}

.hero-section::before {
  content: "";
  position: absolute;
  inset: -58px;
  z-index: 0;
  border-radius: 74px;
  background:
    linear-gradient(rgba(118, 228, 255, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(118, 228, 255, 0.08) 1px, transparent 1px),
    radial-gradient(circle at 54% 38%, transparent 0 13rem, rgba(118, 228, 255, 0.08) 13.1rem 13.2rem, transparent 13.3rem 18rem);
  background-size: 58px 58px, 58px 58px, auto;
  opacity: 0.34;
  mask-image: radial-gradient(circle at 54% 32%, #000 0%, transparent 78%);
  animation: heroGridPan 30s linear infinite;
  will-change: transform;
  transform: translate3d(0, 0, 0);
  pointer-events: none;
}

.hero-section::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(118deg, transparent 0 32%, rgba(255, 255, 255, 0.16) 43%, rgba(118, 228, 255, 0.08) 50%, transparent 66%),
    radial-gradient(ellipse at 78% 12%, rgba(255, 255, 255, 0.13), transparent 18rem);
  pointer-events: none;
  mix-blend-mode: screen;
  z-index: 0;
}

.hero-mesh {
  position: absolute;
  inset: 8% -4% 4% -4%;
  z-index: 0;
  pointer-events: none;
  background:
    conic-gradient(from 140deg at 18% 28%, transparent, rgba(118, 228, 255, 0.18), transparent 32%),
    conic-gradient(from 320deg at 92% 16%, transparent, rgba(125, 255, 196, 0.12), transparent 34%),
    radial-gradient(circle at 48% 46%, rgba(255, 255, 255, 0.08), transparent 19rem);
  filter: blur(10px);
  opacity: 0.68;
  animation: meshBreathe 28s var(--ease-premium) infinite alternate;
  will-change: transform, opacity;
  transform: translateZ(0);
}

.hero-prism {
  position: absolute;
  z-index: 1;
  width: 190px;
  height: 190px;
  border: 1px solid rgba(118, 228, 255, 0.16);
  border-radius: 42px 24px 44px 28px;
  background:
    linear-gradient(135deg, rgba(255,255,255,0.14), rgba(118,228,255,0.055)),
    rgba(255,255,255,0.025);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.2), 0 26px 70px rgba(0,0,0,0.28);
  backdrop-filter: blur(18px) saturate(1.22);
  pointer-events: none;
  transform: rotate(18deg);
  contain: paint;
}

.hero-prism-a {
  right: 34%;
  top: 44px;
  opacity: 0.18;
  animation: prismFloat 18s var(--ease-premium) infinite alternate;
}

.hero-prism-b {
  right: 18px;
  bottom: 70px;
  width: 132px;
  height: 132px;
  opacity: 0.16;
  animation: prismFloat 22s var(--ease-premium) infinite alternate-reverse;
}

@keyframes heroGridPan {
  from { transform: translate3d(0, 0, 0); }
  to { transform: translate3d(58px, 58px, 0); }
}

@keyframes meshBreathe {
  from { transform: scale(1) rotate(-1deg); opacity: 0.52; }
  to { transform: scale(1.05) rotate(1deg); opacity: 0.82; }
}

@keyframes prismFloat {
  from { transform: translate3d(0, 0, 0) rotate(14deg); }
  to { transform: translate3d(-18px, 24px, 0) rotate(24deg); }
}

.hero-copy,
.hero-product {
  position: relative;
  z-index: 2;
}

.hero-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 34px;
  padding: 0 12px;
  margin-bottom: 18px;
  border: 1px solid rgba(118, 228, 255, 0.22);
  border-radius: 999px;
  background:
    linear-gradient(135deg, rgba(255,255,255,0.1), rgba(118,228,255,0.06)),
    rgba(3, 10, 18, 0.44);
  color: var(--cyan);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.12), 0 16px 42px rgba(0, 10, 28, 0.28);
  backdrop-filter: blur(18px);
}

.kicker-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 18px rgba(125, 255, 196, 0.86);
}

h1,
h2,
h3,
h4 {
  margin: 0;
  font-family: "Unbounded", "Manrope", sans-serif;
  letter-spacing: -0.055em;
}

p {
  margin: 0;
  color: var(--muted);
  line-height: 1.68;
}

.hero-copy h1,
.page-head h1 {
  font-size: clamp(2.45rem, 4.6vw, 4.78rem);
  line-height: 1.08;
  max-width: min(890px, 100%);
  padding: 0 0.09em 0.14em 0;
  overflow: visible;
  background: linear-gradient(180deg, #ffffff 0%, #e7f8ff 44%, #83e8ff 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  text-shadow: 0 18px 80px rgba(118, 228, 255, 0.12);
  text-wrap: balance;
  overflow-wrap: normal;
  word-break: normal;
  hyphens: none;
}

.hero-nowrap {
  white-space: nowrap;
}

.hero-copy p {
  max-width: 680px;
  margin-top: 24px;
  font-size: clamp(1.02rem, 1.4vw, 1.18rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.hero-proof-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.hero-proof-row span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 12px;
  border: 1px solid rgba(118, 228, 255, 0.16);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.05);
  color: rgba(225, 244, 255, 0.82);
  font-size: 0.86rem;
  font-weight: 800;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.08);
  backdrop-filter: blur(14px);
}

.hero-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  max-width: 680px;
  margin-top: 34px;
}

.hero-metrics div,
.glass-card,
.feature-card,
.auth-panel,
.pricing-control-panel,
.server-map-section,
.support-cta,
.mini-map-card,
.split-section,
.signal-ribbon article,
.faq-grid details {
  border: 1px solid var(--line);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.095), rgba(5, 18, 34, 0.58) 44%, rgba(3, 10, 20, 0.78)),
    radial-gradient(circle at 16% 0%, rgba(118, 228, 255, 0.09), transparent 16rem);
  box-shadow: var(--glass-shadow);
  backdrop-filter: blur(28px) saturate(1.18);
  contain: paint;
  position: relative;
  overflow: hidden;
}

.hero-metrics div::after,
.glass-card::after,
.feature-card::after,
.auth-panel::after,
.pricing-control-panel::after,
.server-map-section::after,
.support-cta::after,
.mini-map-card::after,
.split-section::after,
.signal-ribbon article::after,
.faq-grid details::after,
.plan-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at var(--mx, 24%) var(--my, 18%), rgba(255, 255, 255, 0.18), transparent 14rem),
    linear-gradient(120deg, transparent 0 38%, rgba(255,255,255,0.07) 48%, transparent 62%);
  opacity: 0;
  transition: opacity 520ms var(--ease-premium);
  pointer-events: none;
  mix-blend-mode: screen;
}

.hero-metrics div:hover::after,
.glass-card:hover::after,
.feature-card:hover::after,
.auth-panel:hover::after,
.pricing-control-panel:hover::after,
.server-map-section:hover::after,
.support-cta:hover::after,
.mini-map-card:hover::after,
.split-section:hover::after,
.signal-ribbon article:hover::after,
.faq-grid details:hover::after,
.plan-card:hover::after {
  opacity: 1;
}

.hero-metrics div {
  padding: 16px;
  border-radius: 22px;
}

.hero-metrics strong {
  display: block;
  font-size: 1.7rem;
  color: var(--cyan);
  font-family: "Unbounded", "Manrope", sans-serif;
}

.hero-metrics span {
  color: var(--muted);
  font-size: 0.9rem;
}

.signal-ribbon {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin-top: 18px;
}

.signal-ribbon article {
  min-height: 178px;
  padding: 22px;
  border-radius: 28px;
  transition:
    transform 560ms var(--ease-premium),
    border-color 560ms var(--ease-premium),
    box-shadow 560ms var(--ease-premium);
}

.signal-ribbon article:hover {
  transform: translateY(-4px);
  border-color: rgba(118, 228, 255, 0.38);
  box-shadow: 0 36px 110px rgba(0, 8, 22, 0.58), 0 0 54px rgba(52, 184, 255, 0.12);
}

.signal-ribbon span {
  display: inline-flex;
  min-height: 30px;
  align-items: center;
  padding: 0 10px;
  border-radius: 999px;
  color: #03111d;
  background: linear-gradient(135deg, #76e4ff, #7dffc4);
  font-family: "Unbounded", "Manrope", sans-serif;
  font-weight: 900;
  font-size: 0.78rem;
  box-shadow: 0 12px 34px rgba(118, 228, 255, 0.22);
}

.signal-ribbon strong {
  display: block;
  margin-top: 18px;
  font-family: "Unbounded", "Manrope", sans-serif;
  font-size: 1.2rem;
  letter-spacing: -0.035em;
}

.signal-ribbon p {
  margin-top: 10px;
  font-size: 0.94rem;
}

.hero-product {
  min-height: 560px;
  display: grid;
  place-items: center;
  perspective: 1700px;
  contain: paint;
}

.iphone-stage {
  position: relative;
  width: min(100%, 470px);
  min-height: 620px;
  display: grid;
  place-items: center;
  transform: rotateX(1.8deg) rotateY(-4.5deg);
  transform-style: preserve-3d;
  animation: phoneFloat 16s var(--ease-premium) infinite alternate;
  will-change: transform;
  backface-visibility: hidden;
  contain: paint;
}

.iphone-stage::before,
.iphone-stage::after {
  content: "";
  position: absolute;
  border-radius: 999px;
  pointer-events: none;
  filter: blur(18px);
  opacity: 0.52;
}

.iphone-stage::before {
  width: 310px;
  height: 310px;
  background: rgba(52, 184, 255, 0.2);
  right: -60px;
  top: 36px;
}

.iphone-stage::after {
  width: 240px;
  height: 240px;
  background: rgba(125, 255, 196, 0.09);
  left: -48px;
  bottom: 52px;
}

.iphone-glow-ring {
  position: absolute;
  inset: 42px 12px;
  border-radius: 76px;
  background:
    conic-gradient(from 210deg, transparent 0 18%, rgba(118, 228, 255, 0.34), transparent 48%, rgba(255,255,255,0.18), transparent 76%),
    radial-gradient(ellipse at 50% 50%, rgba(118, 228, 255, 0.16), transparent 66%);
  filter: blur(16px);
  opacity: 0.54;
  animation: auroraSpin 56s linear infinite;
  will-change: transform;
  transform: translateZ(0);
}

.iphone-mockup {
  position: relative;
  z-index: 2;
  width: min(100%, 350px);
  aspect-ratio: 9 / 19.5;
  padding: 13px;
  border-radius: 76px;
  background:
    var(--phone-metal),
    #050b13;
  border: 1px solid rgba(255, 255, 255, 0.22);
  box-shadow:
    0 56px 150px rgba(0, 6, 18, 0.68),
    0 0 105px rgba(52, 184, 255, 0.22),
    inset 0 1px 1px rgba(255,255,255,0.72),
    inset 0 -20px 34px rgba(0,0,0,0.58);
}

.iphone-mockup::before {
  content: "";
  position: absolute;
  inset: 5px;
  border-radius: 70px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  pointer-events: none;
}

.iphone-metal-rim {
  position: absolute;
  inset: 2px;
  border-radius: 74px;
  background:
    linear-gradient(115deg, rgba(255,255,255,0.52), transparent 18%, transparent 74%, rgba(118,228,255,0.24)),
    linear-gradient(290deg, transparent 0 38%, rgba(255,255,255,0.14), transparent 56%);
  pointer-events: none;
  mix-blend-mode: screen;
  opacity: 0.72;
}

.iphone-antenna {
  position: absolute;
  z-index: 3;
  width: 46px;
  height: 3px;
  border-radius: 999px;
  background: rgba(225, 246, 255, 0.38);
  box-shadow: 0 0 18px rgba(118, 228, 255, 0.18);
}

.iphone-antenna-a {
  top: 7px;
  left: 58px;
}

.iphone-antenna-b {
  right: 58px;
  bottom: 7px;
}

.iphone-side {
  position: absolute;
  z-index: -1;
  width: 5px;
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(255,255,255,0.34), rgba(118,228,255,0.14), rgba(0,0,0,0.4));
}

.iphone-side-left {
  left: -5px;
  top: 132px;
  height: 78px;
}

.iphone-side-right {
  right: -5px;
  top: 182px;
  height: 118px;
}

.iphone-screen {
  position: relative;
  height: 100%;
  padding: 24px 18px 26px;
  border-radius: 62px;
  overflow: hidden;
  background:
    linear-gradient(138deg, rgba(255,255,255,0.12), transparent 28%, rgba(118,228,255,0.08) 46%, transparent 68%),
    radial-gradient(circle at 50% 6%, rgba(118, 228, 255, 0.28), transparent 12rem),
    radial-gradient(circle at 16% 82%, rgba(125, 255, 196, 0.12), transparent 11rem),
    linear-gradient(180deg, rgba(8, 22, 38, 0.96), rgba(2, 8, 17, 0.98));
  border: 1px solid rgba(118, 228, 255, 0.18);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.2), inset 0 0 44px rgba(118, 228, 255, 0.06);
}

.dynamic-island {
  position: absolute;
  left: 50%;
  top: 12px;
  width: 104px;
  height: 30px;
  transform: translateX(-50%);
  border-radius: 999px;
  background: #02050a;
  box-shadow: inset 0 -1px 0 rgba(255,255,255,0.12), 0 10px 28px rgba(0, 0, 0, 0.38);
  z-index: 6;
}

.dynamic-island-camera {
  position: absolute;
  left: calc(50% + 31px);
  top: 21px;
  z-index: 7;
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background:
    radial-gradient(circle at 42% 36%, rgba(118, 228, 255, 0.8), transparent 20%),
    radial-gradient(circle, #09111c 0 52%, #010308 58%);
  box-shadow: inset 0 0 0 1px rgba(118, 228, 255, 0.18);
}

.phone-reflection {
  content: "";
  position: absolute;
  inset: -22% -64%;
  background:
    linear-gradient(112deg, transparent 35%, rgba(255,255,255,0.16) 45%, rgba(118,228,255,0.1) 50%, transparent 60%);
  transform: translateX(-36%) rotate(7deg);
  mix-blend-mode: screen;
  animation: phoneReflection 16s var(--ease-premium) infinite;
  pointer-events: none;
  z-index: 5;
}

.phone-glass-vignette {
  position: absolute;
  inset: 0;
  z-index: 5;
  border-radius: inherit;
  pointer-events: none;
  background:
    radial-gradient(ellipse at 50% 0%, rgba(255, 255, 255, 0.12), transparent 26%),
    linear-gradient(90deg, rgba(255,255,255,0.05), transparent 18%, transparent 82%, rgba(255,255,255,0.05));
  mix-blend-mode: screen;
}

.phone-statusbar,
.phone-app-head,
.phone-connect-card,
.phone-section-title,
.phone-server-row,
.phone-bottom-card {
  position: relative;
  z-index: 4;
}

.phone-statusbar {
  display: flex;
  justify-content: space-between;
  margin-top: 20px;
  color: rgba(234, 247, 255, 0.78);
  font-size: 0.78rem;
  font-weight: 800;
}

.phone-app-head {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 20px;
}

.phone-app-head img {
  width: 42px;
  height: 42px;
  border-radius: 15px;
  object-fit: contain;
  box-shadow: 0 0 26px rgba(118, 228, 255, 0.48);
}

.phone-app-head strong,
.phone-app-head span {
  display: block;
}

.phone-app-head strong {
  font-family: "Unbounded", "Manrope", sans-serif;
  font-size: 1.1rem;
}

.phone-app-head span {
  color: var(--muted);
  font-size: 0.8rem;
}

.phone-connect-card,
.phone-server-row,
.phone-bottom-card,
.server-location-card,
.device-card,
.payment-method,
.plan-card {
  border: 1px solid rgba(134, 218, 255, 0.16);
  background:
    linear-gradient(135deg, rgba(255,255,255,0.08), rgba(255,255,255,0.035)),
    rgba(255, 255, 255, 0.045);
  backdrop-filter: blur(18px);
  position: relative;
  z-index: 2;
}

.phone-connect-card {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 18px;
  padding: 14px;
  border-radius: 26px;
  background:
    radial-gradient(circle at 20% 0%, rgba(125,255,196,0.18), transparent 9rem),
    linear-gradient(135deg, rgba(255,255,255,0.12), rgba(118,228,255,0.06));
}

.phone-connect-copy > span,
.phone-bottom-card span,
.phone-section-title strong,
.phone-server-meta {
  color: var(--muted);
  font-size: 0.78rem;
}

.phone-connect-card strong,
.phone-bottom-card strong {
  display: block;
  margin-top: 2px;
  font-family: "Unbounded", "Manrope", sans-serif;
  font-size: 1.08rem;
}

.phone-bottom-card strong {
  font-size: 0.92rem;
  line-height: 1.22;
}

.route-core {
  position: relative;
  width: 72px;
  height: 72px;
  flex: 0 0 72px;
  display: grid;
  place-items: center;
  border-radius: 26px;
  isolation: isolate;
  transform: translateZ(0);
  filter: drop-shadow(0 18px 30px rgba(30, 220, 255, 0.32));
}

.route-core::before {
  content: "";
  position: absolute;
  inset: 8px;
  border-radius: 24px;
  background:
    radial-gradient(circle at 36% 22%, rgba(255,255,255,0.56), transparent 16px),
    linear-gradient(145deg, rgba(255,255,255,0.16), rgba(118,228,255,0.08) 48%, rgba(3, 19, 34, 0.62));
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.86),
    inset 0 -18px 30px rgba(4, 20, 38, 0.3),
    0 0 34px rgba(118, 228, 255, 0.46);
  animation: routeCorePulse 8.8s var(--ease-premium) infinite;
}

.route-core-glow {
  position: absolute;
  inset: -20px;
  border-radius: 36px;
  background:
    radial-gradient(circle at 50% 42%, rgba(255,255,255,0.38), transparent 24px),
    radial-gradient(circle, rgba(118,228,255,0.38), rgba(52,184,255,0.14) 48%, transparent 74%);
  animation: routeGlow 7.2s var(--ease-premium) infinite;
  will-change: transform, opacity;
}

.route-core-ring {
  position: absolute;
  inset: -4px;
  border-radius: 999px;
  border: 1px solid rgba(118, 228, 255, 0.26);
  opacity: 0.8;
}

.route-core-ring-a {
  background: conic-gradient(from 220deg, transparent 0 42%, rgba(125, 255, 196, 0.84), rgba(118, 228, 255, 0.92), transparent 61%);
  mask: radial-gradient(circle, transparent 56%, #000 58%, #000 64%, transparent 66%);
  animation: routeRingSpin 9s linear infinite;
}

.route-core-ring-b {
  inset: 5px;
  border-style: dashed;
  opacity: 0.36;
  animation: routeRingDrift 12s linear infinite reverse;
}

.route-core-node {
  position: absolute;
  z-index: 4;
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: #dffcff;
  box-shadow: 0 0 18px rgba(118, 228, 255, 0.9);
  animation: routeNode 4.8s var(--ease-premium) infinite alternate;
}

.route-core-node-a { left: 6px; top: 18px; }
.route-core-node-b { right: 7px; top: 46px; animation-delay: -1.2s; }
.route-core-node-c { left: 32px; bottom: 2px; animation-delay: -2.1s; }

.route-core-shield {
  position: relative;
  z-index: 5;
  width: 56px;
  height: 64px;
  object-fit: contain;
  filter:
    drop-shadow(0 14px 18px rgba(52, 184, 255, 0.32))
    drop-shadow(0 0 16px rgba(255, 255, 255, 0.16));
  transform: translateZ(0);
}

.phone-section-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 22px;
  color: var(--text);
  font-size: 0.86rem;
  font-weight: 900;
}

.phone-section-title strong {
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--cyan);
}

.phone-server-list {
  display: grid;
  gap: 8px;
  margin-top: 10px;
  max-height: 318px;
  overflow-y: auto;
  overscroll-behavior: contain;
  padding: 2px 6px 10px 0;
  scroll-snap-type: y proximity;
  scrollbar-color: rgba(118, 228, 255, 0.58) rgba(255, 255, 255, 0.06);
  scrollbar-width: thin;
  -webkit-mask-image: linear-gradient(180deg, transparent 0, #000 10px, #000 calc(100% - 20px), transparent 100%);
  mask-image: linear-gradient(180deg, transparent 0, #000 10px, #000 calc(100% - 20px), transparent 100%);
}

.phone-server-list::-webkit-scrollbar {
  width: 7px;
}

.phone-server-list::-webkit-scrollbar-track {
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.05);
}

.phone-server-list::-webkit-scrollbar-thumb {
  border-radius: 999px;
  background:
    linear-gradient(180deg, rgba(125, 255, 196, 0.82), rgba(52, 184, 255, 0.82));
  box-shadow: 0 0 18px rgba(52, 184, 255, 0.32);
}

.phone-server-row {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  border-radius: 20px;
  scroll-snap-align: start;
  transition: transform 520ms var(--ease-premium), border-color 520ms var(--ease-premium), background 520ms var(--ease-premium);
}

.phone-server-row.is-auto {
  border-color: rgba(125, 255, 196, 0.26);
  background:
    linear-gradient(135deg, rgba(125,255,196,0.12), rgba(52,184,255,0.09)),
    rgba(255,255,255,0.045);
}

.phone-server-row:hover {
  transform: translateY(-2px);
  border-color: rgba(118, 228, 255, 0.38);
}

.phone-server-flag {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.08);
  font-size: 1.04rem;
}

.phone-server-name,
.phone-server-ping {
  display: block;
  font-weight: 900;
}

.phone-server-name {
  font-size: 0.9rem;
}

.phone-server-meta {
  display: block;
  margin-top: 2px;
}

.phone-server-ping {
  min-width: 58px;
  padding: 7px 8px;
  border-radius: 999px;
  color: #03111d;
  background: linear-gradient(135deg, #7dffc4, #76e4ff);
  box-shadow: 0 10px 28px rgba(118, 228, 255, 0.22);
  text-align: center;
  font-size: 0.76rem;
}

.phone-server-reading {
  display: grid;
  justify-items: end;
  gap: 4px;
}

.phone-server-updated {
  color: var(--muted-2);
  font-size: 0.65rem;
  font-weight: 800;
}

.phone-server-ping.is-checking {
  color: var(--cyan);
  background: rgba(118, 228, 255, 0.1);
  border: 1px solid rgba(118, 228, 255, 0.18);
}

.phone-bottom-card {
  margin-top: 10px;
  padding: 12px 14px 14px;
  border-radius: 22px;
}

.phone-home-indicator {
  position: absolute;
  left: 50%;
  bottom: 8px;
  z-index: 6;
  width: 112px;
  height: 4px;
  transform: translateX(-50%);
  border-radius: 999px;
  background: rgba(234, 247, 255, 0.76);
}

@keyframes phoneFloat {
  from { transform: rotateX(1.8deg) rotateY(-4.5deg) translate3d(0, 0, 0); }
  to { transform: rotateX(1deg) rotateY(-2deg) translate3d(0, -9px, 0); }
}

@keyframes auroraSpin {
  to { transform: rotate(360deg); }
}

@keyframes phoneReflection {
  0%, 24% { transform: translateX(-42%) rotate(7deg); opacity: 0; }
  42% { opacity: 0.82; }
  70%, 100% { transform: translateX(42%) rotate(7deg); opacity: 0; }
}

@keyframes routeCorePulse {
  0%, 24% { transform: scale(0.96) rotate(-2deg); filter: saturate(1); }
  38% { transform: scale(1.08) rotate(1deg); filter: saturate(1.28); }
  54%, 100% { transform: scale(1) rotate(0deg); filter: saturate(1.08); }
}

@keyframes routeGlow {
  0%, 26% { opacity: 0.34; transform: scale(0.82); }
  42% { opacity: 0.94; transform: scale(1.16); }
  64%, 100% { opacity: 0.48; transform: scale(1); }
}

@keyframes routeRingSpin {
  to { transform: rotate(360deg); }
}

@keyframes routeRingDrift {
  to { transform: rotate(-360deg); }
}

@keyframes routeNode {
  from { transform: scale(0.76); opacity: 0.42; }
  to { transform: scale(1.18); opacity: 1; }
}

@keyframes routeFlow {
  to { stroke-dashoffset: -84; }
}

.feature-strip,
.pricing-grid,
.apps-grid,
.dashboard-grid,
.help-grid,
.faq-grid {
  display: grid;
  gap: 16px;
}

.feature-strip {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 18px;
}

.feature-card,
.glass-card,
.auth-panel,
.pricing-control-panel,
.support-cta {
  border-radius: var(--radius-lg);
  padding: 24px;
}

.feature-card {
  transition: transform 520ms var(--ease-premium), border-color 520ms var(--ease-premium), box-shadow 520ms var(--ease-premium);
}

.feature-card:hover,
.glass-card:hover,
.plan-card:hover {
  transform: translateY(-3px);
  border-color: rgba(118, 228, 255, 0.35);
}

.feature-icon {
  color: var(--cyan);
  font-family: "Unbounded", "Manrope", sans-serif;
  font-weight: 700;
  letter-spacing: 0.12em;
}

.feature-card h3,
.glass-card h3,
.plan-card h3,
.support-cta h2 {
  margin-top: 12px;
  font-size: 1.3rem;
}

.feature-card p,
.glass-card p,
.plan-card p {
  margin-top: 10px;
}

.split-section {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(360px, 1fr);
  gap: 24px;
  align-items: center;
  margin-top: 18px;
  padding: 28px;
  border-radius: var(--radius-xl);
}

.split-section h2,
.section-heading h2,
.page-head h1 {
  max-width: 760px;
}

.split-section h2,
.section-heading h2 {
  font-size: clamp(2rem, 4vw, 3.5rem);
  line-height: 0.98;
}

.split-section p,
.section-heading p {
  margin-top: 14px;
  max-width: 690px;
}

.text-link {
  display: inline-flex;
  margin-top: 20px;
  color: var(--cyan);
  font-weight: 800;
  text-decoration: none;
}

.mini-map-card {
  padding: 12px;
  border-radius: 30px;
  position: relative;
  overflow: hidden;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.08), rgba(118, 228, 255, 0.03));
  border: 1px solid rgba(134, 218, 255, 0.16);
  backdrop-filter: blur(20px);
}

.map-card-caption {
  position: absolute;
  left: 28px;
  top: 26px;
  z-index: 500;
  display: grid;
  gap: 2px;
  padding: 12px 14px;
  border: 1px solid rgba(118, 228, 255, 0.22);
  border-radius: 18px;
  background: rgba(3, 10, 18, 0.72);
  backdrop-filter: blur(16px);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.34);
}

.map-card-caption span,
.eyebrow {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--cyan-soft);
  font-weight: 900;
}

.map-card-caption strong {
  color: var(--text);
  font-family: "Unbounded", "Manrope", sans-serif;
}

.server-map {
  width: 100%;
  height: 520px;
  border-radius: 26px;
  overflow: hidden;
  background:
    radial-gradient(circle at 64% 34%, rgba(76, 178, 255, 0.2), transparent 16rem),
    radial-gradient(circle at 32% 56%, rgba(31, 216, 255, 0.13), transparent 15rem),
    linear-gradient(145deg, #06111f, #020813);
  border: 1px solid rgba(134, 218, 255, 0.16);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.03), 0 22px 80px rgba(0, 0, 0, 0.38);
}

.server-map.tiles-degraded::after {
  content: "Карта работает в резервном режиме: точки локаций остаются точными.";
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 18px;
  z-index: 500;
  padding: 12px 14px;
  border-radius: 16px;
  background: rgba(3, 10, 18, 0.76);
  color: var(--muted);
  border: 1px solid rgba(118, 228, 255, 0.18);
  backdrop-filter: blur(14px);
  font-size: 0.88rem;
}

.server-map-compact {
  height: 330px;
}

.leaflet-container {
  background: #06111f;
  font-family: "Manrope", sans-serif;
}

.leaflet-tile-pane {
  filter: saturate(1.08) contrast(1.04) brightness(0.86);
}

.leaflet-control-attribution {
  display: none !important;
}

.leaflet-control-zoom {
  border: 1px solid rgba(118, 228, 255, 0.16) !important;
  border-radius: 16px !important;
  overflow: hidden;
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.34);
}

.leaflet-control-zoom a {
  background: rgba(3, 10, 18, 0.82) !important;
  color: var(--text) !important;
  border-bottom-color: rgba(118, 228, 255, 0.12) !important;
  backdrop-filter: blur(14px);
}

.neon-marker {
  width: 20px;
  height: 20px;
  border-radius: 999px;
  background: radial-gradient(circle at 35% 35%, #ffffff 0 14%, var(--cyan) 15% 58%, #1687ff 59% 100%);
  border: 2px solid #e9fbff;
  box-shadow: 0 0 0 9px rgba(118, 228, 255, 0.15), 0 0 36px rgba(118, 228, 255, 0.92);
}

.neon-marker::after {
  content: "";
  position: absolute;
  inset: -10px;
  border-radius: 999px;
  border: 1px solid rgba(118, 228, 255, 0.42);
  animation: markerPulse 1.8s ease-out infinite;
}

.server-map .leaflet-popup-content-wrapper,
.server-map .leaflet-popup-tip {
  background:
    linear-gradient(145deg, rgba(12, 31, 52, 0.98), rgba(3, 10, 20, 0.98)) !important;
  color: var(--text) !important;
  border: 1px solid rgba(118, 228, 255, 0.28) !important;
  box-shadow: 0 22px 70px rgba(0, 0, 0, 0.58), inset 0 1px 0 rgba(255, 255, 255, 0.12) !important;
  backdrop-filter: blur(18px) saturate(1.18);
}

.server-map .leaflet-popup-content {
  margin: 14px !important;
  color: var(--text) !important;
}

.server-map .leaflet-popup-close-button {
  color: rgba(225, 246, 255, 0.82) !important;
}

.server-map .leaflet-popup-close-button:hover {
  color: var(--cyan) !important;
}

.map-popup {
  min-width: 210px;
}

.map-popup strong {
  display: block;
  font-family: "Unbounded", "Manrope", sans-serif;
  font-size: 1rem;
  color: #f3fbff !important;
}

.map-popup span {
  display: block;
  margin-top: 6px;
  color: rgba(215, 232, 243, 0.78) !important;
}

.leaflet-overlay-pane .neon-route-line {
  stroke: rgba(118, 228, 255, 0.72);
  stroke-linecap: round;
  stroke-dasharray: 7 14;
  animation: routeFlow 4.8s linear infinite;
  filter: drop-shadow(0 0 8px rgba(118, 228, 255, 0.42));
}

.leaflet-overlay-pane .neon-route-line-soft {
  stroke: rgba(125, 255, 196, 0.46);
  animation-duration: 6.4s;
}

.network-map {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
  border-radius: inherit;
  background:
    radial-gradient(circle at 53% 48%, rgba(118, 228, 255, 0.14), transparent 16rem),
    linear-gradient(145deg, rgba(4, 17, 31, 0.96), rgba(2, 8, 19, 0.98));
}

.network-map svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.map-graticule {
  stroke: rgba(118, 228, 255, 0.1);
  stroke-width: 1;
}

.map-land {
  fill: rgba(118, 228, 255, 0.06);
  stroke: rgba(118, 228, 255, 0.18);
  stroke-width: 1.4;
}

.map-route-line {
  fill: none;
  stroke: rgba(118, 228, 255, 0.68);
  stroke-width: 0.44;
  stroke-linecap: round;
  stroke-dasharray: 2.8 3.8;
  animation: routeFlow 4.8s linear infinite;
  filter: drop-shadow(0 0 1px rgba(118, 228, 255, 0.82));
}

.map-route-line-soft {
  stroke: rgba(125, 255, 196, 0.44);
  animation-duration: 6.4s;
}

.map-point {
  position: absolute;
  z-index: 4;
  transform: translate(-50%, -50%);
  display: grid;
  justify-items: center;
  gap: 8px;
}

.map-dot {
  width: 18px;
  height: 18px;
  border-radius: 999px;
  background: radial-gradient(circle at 35% 35%, #ffffff 0 14%, var(--cyan) 15% 58%, #1687ff 59% 100%);
  border: 2px solid #e9fbff;
  box-shadow: 0 0 0 9px rgba(118, 228, 255, 0.15), 0 0 36px rgba(118, 228, 255, 0.92);
}

.map-dot::after {
  content: "";
  position: absolute;
  width: 38px;
  height: 38px;
  left: 50%;
  top: 0;
  transform: translate(-50%, -25%);
  border-radius: 999px;
  border: 1px solid rgba(118, 228, 255, 0.42);
  animation: markerPulse 1.8s ease-out infinite;
}

.map-label {
  min-width: 124px;
  max-width: 190px;
  padding: 9px 11px;
  border-radius: 16px;
  border: 1px solid rgba(118, 228, 255, 0.2);
  background: rgba(3, 10, 18, 0.78);
  backdrop-filter: blur(14px);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.34);
  color: var(--text);
  font-size: 0.78rem;
  line-height: 1.25;
  text-align: left;
}

.map-label strong,
.map-label span {
  display: block;
}

.map-label span {
  margin-top: 3px;
  color: var(--muted);
}

@keyframes markerPulse {
  from { transform: scale(0.6); opacity: 0.85; }
  to { transform: scale(1.55); opacity: 0; }
}

.server-map-shell {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 360px);
  gap: 16px;
  align-items: stretch;
}

.map-command-card {
  padding: 22px;
  border: 1px solid rgba(118, 228, 255, 0.2);
  border-radius: 28px;
  background:
    radial-gradient(circle at 84% 0%, rgba(118, 228, 255, 0.18), transparent 13rem),
    linear-gradient(160deg, rgba(255, 255, 255, 0.095), rgba(5, 22, 38, 0.54));
  backdrop-filter: blur(26px) saturate(1.25);
  box-shadow: 0 26px 80px rgba(0, 0, 0, 0.42), inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.map-command-card h2 {
  margin-top: 10px;
  font-size: clamp(1.35rem, 2.2vw, 2.05rem);
  line-height: 1.02;
}

.map-command-card p {
  margin-top: 12px;
  color: var(--muted);
}

.map-command-grid {
  display: grid;
  gap: 10px;
  margin-top: 18px;
}

.map-command-grid div {
  display: grid;
  gap: 2px;
  padding: 12px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.045);
  border: 1px solid rgba(255, 255, 255, 0.075);
}

.map-command-grid strong {
  color: var(--text);
  font-family: "Unbounded", "Manrope", sans-serif;
}

.map-command-grid span {
  color: var(--muted);
  font-size: 0.86rem;
}

.pricing-preview,
.faq-section {
  margin-top: 18px;
}

.section-heading {
  margin-bottom: 20px;
}

.pricing-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.pricing-grid.compact {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.plan-card {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 14px;
  min-height: 100%;
  padding: 24px;
  border-radius: var(--radius-lg);
  background:
    radial-gradient(circle at 24% 0%, rgba(118, 228, 255, 0.12), transparent 11rem),
    linear-gradient(180deg, rgba(9, 25, 43, 0.86), rgba(4, 12, 23, 0.92));
  transition: transform 520ms var(--ease-premium), border-color 520ms var(--ease-premium), box-shadow 520ms var(--ease-premium);
}

.plan-card.recommended {
  border-color: rgba(118, 228, 255, 0.48);
  box-shadow: 0 28px 80px rgba(52, 184, 255, 0.18);
}

.plan-badge,
.status-pill {
  display: inline-flex;
  align-items: center;
  align-self: flex-start;
  min-height: 30px;
  padding: 0 10px;
  border-radius: 999px;
  border: 1px solid rgba(118, 228, 255, 0.2);
  color: var(--cyan);
  background: rgba(118, 228, 255, 0.08);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.plan-card h3 {
  font-size: 1.45rem;
}

.plan-price {
  font-family: "Unbounded", "Manrope", sans-serif;
  font-size: 2.45rem;
  font-weight: 700;
  letter-spacing: -0.05em;
  color: var(--text);
}

.limit-grid {
  display: grid;
  gap: 10px;
}

.limit-control {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 12px;
  padding: 12px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.045);
  border: 1px solid rgba(134, 218, 255, 0.12);
}

.limit-control span {
  color: var(--muted);
  font-size: 0.88rem;
}

.stepper {
  display: inline-flex;
  align-items: center;
  gap: 9px;
}

.stepper button {
  width: 34px;
  height: 34px;
  border-radius: 12px;
  border: 1px solid rgba(118, 228, 255, 0.2);
  color: var(--text);
  background: rgba(118, 228, 255, 0.08);
}

.stepper strong {
  min-width: 24px;
  text-align: center;
}

.faq-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.faq-grid details {
  border-radius: var(--radius-lg);
  padding: 20px;
}

.faq-grid summary {
  cursor: pointer;
  font-weight: 800;
}

.faq-grid p {
  margin-top: 12px;
}

.page-head {
  margin: 34px 0 18px;
  padding: 28px;
  border-radius: var(--radius-xl);
  border: 1px solid var(--line);
  background:
    radial-gradient(circle at 10% 0%, rgba(118, 228, 255, 0.12), transparent 18rem),
    rgba(5, 14, 26, 0.66);
  backdrop-filter: blur(20px);
}

.page-head h1 {
  font-size: clamp(2.4rem, 5vw, 5rem);
}

.page-head p {
  margin-top: 12px;
  max-width: 760px;
}

.auth-panel {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
  margin-bottom: 18px;
}

.auth-panel h2 {
  font-size: 1.55rem;
}

.auth-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.auth-user {
  margin-top: 10px;
  color: var(--green);
  font-weight: 800;
}

.dashboard-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.glass-card {
  min-height: 180px;
  transition: transform 520ms var(--ease-premium), border-color 520ms var(--ease-premium), box-shadow 520ms var(--ease-premium);
}

.glass-card.wide,
.status-card {
  grid-column: span 2;
}

.status-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 18px;
  align-items: center;
}

.status-card h2,
.glass-card h2 {
  font-size: clamp(1.45rem, 2.5vw, 2.25rem);
}

.status-actions,
.card-actions,
.support-actions,
.payment-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.subscription-url,
.copy-field code {
  display: block;
  width: 100%;
  margin-top: 14px;
  padding: 14px;
  border-radius: 16px;
  border: 1px solid rgba(134, 218, 255, 0.16);
  background: rgba(0, 0, 0, 0.22);
  color: #dff8ff;
  overflow-wrap: anywhere;
}

.copy-field {
  display: grid;
  gap: 8px;
  margin-top: 12px;
}

.copy-field span {
  color: var(--muted);
  font-size: 0.9rem;
}

.pricing-control-panel {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 18px;
  margin-bottom: 18px;
}

.payment-methods {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.payment-method {
  min-width: 190px;
  padding: 13px 15px;
  border-radius: 17px;
  color: var(--text);
  text-align: left;
}

.payment-method strong,
.payment-method span {
  display: block;
}

.payment-method span {
  margin-top: 4px;
  color: var(--muted);
  font-size: 0.86rem;
}

.payment-method.active {
  border-color: rgba(118, 228, 255, 0.52);
  background: rgba(52, 184, 255, 0.15);
}

.renew-toggle {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 13px 15px;
  border-radius: 16px;
  border: 1px solid rgba(134, 218, 255, 0.18);
  background: rgba(255, 255, 255, 0.055);
  font-weight: 800;
}

.payment-launch {
  margin-top: 18px;
}

.payment-launch-card {
  padding: 24px;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(125, 255, 196, 0.26);
  background: linear-gradient(180deg, rgba(25, 94, 70, 0.42), rgba(5, 20, 26, 0.9));
}

.server-map-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 340px;
  gap: 16px;
  padding: 12px;
  border-radius: var(--radius-xl);
}

.server-location-list {
  display: grid;
  gap: 12px;
  align-content: start;
}

.server-location-card {
  padding: 16px;
  border-radius: 20px;
}

.server-location-card strong {
  display: block;
  font-family: "Unbounded", "Manrope", sans-serif;
  font-size: 1.05rem;
}

.server-location-card span {
  display: block;
  margin-top: 7px;
  color: var(--muted);
  font-size: 0.92rem;
}

.server-location-card-virtual {
  border-color: rgba(125, 255, 196, 0.22);
  background:
    radial-gradient(circle at 18% 0%, rgba(125,255,196,0.12), transparent 9rem),
    linear-gradient(135deg, rgba(255,255,255,0.08), rgba(52,184,255,0.045));
}

.server-location-status {
  display: inline-flex !important;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  width: 100%;
  margin-top: 12px !important;
  padding-top: 12px;
  border-top: 1px solid rgba(118, 228, 255, 0.1);
}

.server-location-status b,
.server-location-status em {
  font-style: normal;
  font-weight: 900;
}

.server-location-status b {
  color: var(--green);
}

.server-location-status em {
  min-width: 74px;
  padding: 7px 9px;
  border-radius: 999px;
  color: #03111d;
  background: linear-gradient(135deg, #7dffc4, #76e4ff);
  text-align: center;
  font-size: 0.82rem;
}

.server-location-updated {
  color: var(--muted-2) !important;
  font-size: 0.78rem !important;
}

.apps-grid,
.help-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.device-card {
  display: grid;
  gap: 12px;
  padding: 22px;
  border-radius: var(--radius-lg);
}

.device-card h3 {
  font-size: 1.35rem;
}

.device-links {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
}

.promo-form,
.review-form {
  display: grid;
  gap: 12px;
  margin-top: 16px;
}

.promo-form input,
.review-form textarea {
  width: 100%;
  border: 1px solid rgba(134, 218, 255, 0.18);
  border-radius: 16px;
  background: rgba(0, 0, 0, 0.22);
  color: var(--text);
  padding: 14px;
  outline: none;
}

.promo-form input:focus,
.review-form textarea:focus {
  border-color: rgba(118, 228, 255, 0.54);
  box-shadow: 0 0 0 4px rgba(52, 184, 255, 0.12);
}

.review-stars {
  display: flex;
  gap: 6px;
}

.review-star {
  width: 42px;
  height: 42px;
  border-radius: 14px;
  border: 1px solid rgba(134, 218, 255, 0.16);
  background: rgba(255, 255, 255, 0.05);
  color: var(--muted-2);
  font-size: 1.35rem;
}

.review-star.active {
  color: #ffd76d;
  background: rgba(255, 215, 109, 0.12);
  border-color: rgba(255, 215, 109, 0.28);
}

.support-cta {
  margin-top: 18px;
}

.footer {
  width: var(--container);
  margin: 34px auto 0;
  padding: 24px 0 44px;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  color: var(--muted);
}

.footer strong,
.footer span {
  display: block;
}

.footer strong {
  color: var(--text);
  font-family: "Unbounded", "Manrope", sans-serif;
  font-size: 1.15rem;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.footer a,
.footer-links a {
  color: var(--muted);
  text-decoration: none;
}

.toast {
  position: fixed;
  left: 50%;
  bottom: 22px;
  z-index: 80;
  transform: translateX(-50%);
  max-width: min(560px, calc(100vw - 28px));
  padding: 14px 18px;
  border-radius: 18px;
  border: 1px solid rgba(118, 228, 255, 0.28);
  background: rgba(5, 16, 30, 0.94);
  box-shadow: 0 22px 70px rgba(0, 0, 0, 0.45);
  color: var(--text);
}

.toast.error {
  border-color: rgba(255, 115, 157, 0.45);
}

.skeleton-line {
  height: 24px;
  width: 72%;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(255,255,255,.06), rgba(118,228,255,.16), rgba(255,255,255,.06));
  background-size: 220% 100%;
  animation: shimmer 1.3s linear infinite;
}

.skeleton-line.short {
  width: 46%;
  margin-top: 14px;
}

@keyframes shimmer {
  to { background-position: -220% 0; }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto !important;
  }

  .reveal,
  .hero-copy > *,
  .feature-card,
  .signal-ribbon article,
  .plan-card,
  .glass-card {
    transition-duration: 240ms !important;
    animation-duration: 240ms !important;
  }

  .mirror-layer,
  .glow,
  .hero-mesh,
  .hero-prism,
  .iphone-stage,
  .iphone-glow-ring,
  .phone-reflection,
  .route-core::before,
  .route-core-glow,
  .route-core-ring,
  .route-core-node,
  .map-route-line,
  .neon-route-line,
  .neon-marker::after,
  .map-dot::after {
    animation-duration: 60s !important;
  }
}

@media (max-width: 980px) {
  .site-header,
  .hero-metrics div,
  .glass-card,
  .feature-card,
  .auth-panel,
  .pricing-control-panel,
  .server-map-section,
  .support-cta,
  .mini-map-card,
  .split-section,
  .signal-ribbon article,
  .faq-grid details {
    backdrop-filter: blur(18px) saturate(1.12);
  }

  .glow {
    filter: blur(52px);
    opacity: 0.2;
  }

  .site-header {
    grid-template-columns: auto 1fr;
  }

  .desktop-nav {
    display: none;
  }

  .icon-btn {
    display: inline-flex;
  }

  .hero-section,
  .split-section,
  .server-map-section,
  .status-card {
    grid-template-columns: 1fr;
  }

  .hero-section {
    min-height: auto;
  }

  .hero-product {
    min-height: 560px;
  }

  .iphone-stage {
    transform: none;
  }

  .server-map-shell {
    grid-template-columns: 1fr;
  }

  .signal-ribbon {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .map-command-card {
    margin-top: 14px;
  }

  .pricing-grid,
  .pricing-grid.compact,
  .feature-strip,
  .faq-grid,
  .apps-grid,
  .help-grid,
  .dashboard-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .glass-card.wide,
  .status-card {
    grid-column: span 2;
  }
}

@media (max-width: 680px) {
  :root {
    --container: min(100vw - 20px, 1180px);
  }

  .site-header {
    top: 8px;
    border-radius: 20px;
  }

  .brand span,
  .ghost-btn,
  .primary-link {
    display: none;
  }

  .hero-section,
  .page-head,
  .split-section {
    border-radius: 28px;
    padding: 22px;
  }

  .hero-copy h1,
  .page-head h1 {
    font-size: clamp(1.68rem, 7.2vw, 2.2rem);
    line-height: 1.14;
    letter-spacing: -0.07em;
    max-width: min(100%, 300px);
    text-wrap: wrap;
  }

  .hero-copy,
  .hero-copy p {
    width: 100%;
    min-width: 0;
    max-width: min(100%, 310px);
  }

  .hero-actions,
  .hero-proof-row,
  .hero-metrics {
    max-width: min(100%, 310px);
  }

  .hero-product {
    min-height: 520px;
  }

  .iphone-stage {
    width: min(100%, 332px);
    min-height: 512px;
  }

  .iphone-mockup {
    width: min(100%, 304px);
    border-radius: 60px;
  }

  .iphone-screen {
    border-radius: 50px;
    padding: 22px 14px 14px;
  }

  .phone-server-row {
    gap: 8px;
    padding: 10px;
  }

  .phone-server-list {
    max-height: 276px;
    padding-right: 4px;
  }

  .phone-server-ping {
    min-width: 50px;
    font-size: 0.72rem;
  }

  .hero-metrics,
  .pricing-grid,
  .pricing-grid.compact,
  .feature-strip,
  .faq-grid,
  .apps-grid,
  .help-grid,
  .signal-ribbon,
  .dashboard-grid {
    grid-template-columns: 1fr;
  }

  .glass-card.wide,
  .status-card {
    grid-column: auto;
  }

  .auth-panel,
  .pricing-control-panel,
  .footer {
    align-items: stretch;
    flex-direction: column;
  }

  .auth-actions,
  .hero-actions,
  .status-actions,
  .card-actions,
  .payment-actions {
    flex-direction: column;
  }

  .primary-btn,
  .secondary-btn,
  .ghost-btn,
  .copy-btn,
  .chip-btn,
  .primary-link {
    width: 100%;
  }

  .server-map {
    height: 370px;
  }

  .server-map-compact {
    height: 280px;
  }

  .map-card-caption {
    left: 22px;
    top: 22px;
    max-width: calc(100% - 44px);
  }

  .map-command-card {
    padding: 18px;
    border-radius: 22px;
  }
}

