:root {
  --bg: #06080b;
  --bg-soft: rgba(8, 12, 16, 0.88);
  --panel: rgba(10, 15, 21, 0.76);
  --panel-strong: rgba(11, 17, 24, 0.94);
  --line: rgba(153, 186, 216, 0.14);
  --line-strong: rgba(153, 186, 216, 0.28);
  --text: #eef3f8;
  --muted: rgba(238, 243, 248, 0.68);
  --soft: rgba(238, 243, 248, 0.44);
  --accent: #9cc8ff;
  --accent-strong: #d2e6ff;
  --button-text: #08111b;
  --shadow: 0 26px 80px rgba(0, 0, 0, 0.42);
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: "IBM Plex Sans", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 12% 18%, rgba(72, 126, 188, 0.18), transparent 24%),
    radial-gradient(circle at 82% 14%, rgba(106, 162, 227, 0.12), transparent 20%),
    radial-gradient(circle at 50% 72%, rgba(74, 109, 148, 0.12), transparent 28%),
    linear-gradient(180deg, #05070a 0%, #070a0e 40%, #040608 100%);
  overflow-x: hidden;
}

body.is-loading {
  overflow: hidden;
}

body.is-modal-open {
  overflow: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 16px;
  border: 1px solid var(--line);
  pointer-events: none;
  z-index: 10;
}

body::after {
  content: "";
  position: fixed;
  inset: 0;
  background:
    linear-gradient(rgba(255, 255, 255, 0.022) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.022) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: radial-gradient(circle at center, black 42%, transparent 86%);
  opacity: 0.45;
  pointer-events: none;
}

a {
  color: inherit;
  text-decoration: none;
}

code {
  font-family: inherit;
  color: var(--accent-strong);
}

.page-preloader {
  position: fixed;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background:
    radial-gradient(circle at 50% 35%, rgba(156, 200, 255, 0.12), transparent 22%),
    linear-gradient(180deg, rgba(5, 7, 10, 0.98), rgba(5, 8, 11, 0.98));
  backdrop-filter: blur(10px);
  z-index: 120;
  transition:
    opacity 500ms ease,
    visibility 500ms ease;
}

.page-preloader::before {
  content: "";
  position: absolute;
  inset: 16px;
  border: 1px solid rgba(153, 186, 216, 0.12);
  pointer-events: none;
}

.page-preloader.is-hidden {
  opacity: 0;
  visibility: hidden;
}

.page-preloader-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 22px;
}

.preloader-meta {
  width: min(320px, calc(100vw - 48px));
  display: grid;
  gap: 10px;
  justify-items: center;
}

.preloader-label {
  margin: 0;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(238, 243, 248, 0.72);
}

.preloader-status {
  margin: 0;
  font-size: 0.9rem;
  color: rgba(238, 243, 248, 0.86);
}

.preloader-bar {
  width: 100%;
  height: 6px;
  padding: 1px;
  border: 1px solid rgba(153, 186, 216, 0.18);
  background: rgba(255, 255, 255, 0.03);
}

.preloader-bar-fill {
  display: block;
  width: calc(var(--preload-progress, 0) * 1%);
  height: 100%;
  background: linear-gradient(90deg, rgba(126, 177, 241, 0.55), rgba(210, 230, 255, 0.95));
  box-shadow: 0 0 18px rgba(156, 200, 255, 0.35);
  transition: width 180ms ease;
}

.capybaraloader {
  width: 14em;
  height: 10em;
  position: relative;
  z-index: 1;
  --color: rgb(153, 186, 216);
  --color2: rgb(56, 79, 104);
  --glow: rgba(156, 200, 255, 0.28);
  transform: scale(0.9);
  filter: drop-shadow(0 0 24px var(--glow));
}

.capybara {
  width: 100%;
  height: 7.5em;
  position: relative;
  z-index: 1;
}

.loader {
  width: 100%;
  height: 2.5em;
  position: relative;
  z-index: 1;
  overflow: hidden;
}

.capy {
  width: 85%;
  height: 100%;
  background: linear-gradient(180deg, rgba(187, 213, 239, 0.98), rgba(111, 145, 179, 0.96) 72%, rgba(56, 79, 104, 0.98));
  border-radius: 45%;
  position: relative;
  z-index: 1;
  animation: movebody 1s linear infinite;
}

.capyhead {
  width: 7.5em;
  height: 7em;
  right: 0;
  bottom: 0;
  position: absolute;
  background: linear-gradient(180deg, rgba(187, 213, 239, 0.98), rgba(111, 145, 179, 0.96));
  z-index: 3;
  border-radius: 3.5em;
  box-shadow: -1em 0 var(--color2);
  animation: movebody 1s linear infinite;
}

.capyear {
  width: 2em;
  height: 2em;
  top: 0;
  left: 0;
  position: absolute;
  overflow: hidden;
  z-index: 3;
  border-radius: 100%;
  background: linear-gradient(-45deg, rgba(187, 213, 239, 0.98), rgba(56, 79, 104, 0.96));
}

.capyear:nth-child(2) {
  left: 5em;
  background: linear-gradient(25deg, rgba(187, 213, 239, 0.98), rgba(56, 79, 104, 0.96));
}

.capyear2 {
  width: 100%;
  height: 1em;
  bottom: 0;
  left: 0.5em;
  position: absolute;
  border-radius: 100%;
  transform: rotate(-45deg);
  background-color: var(--color2);
}

.capymouth {
  width: 3.5em;
  height: 2em;
  bottom: 0;
  left: 2.5em;
  padding: 0.5em;
  display: flex;
  justify-content: space-around;
  align-items: center;
  position: absolute;
  border-radius: 50%;
  background-color: rgba(43, 61, 82, 0.96);
}

.capylips {
  width: 0.25em;
  height: 0.75em;
  border-radius: 100%;
  transform: rotate(-45deg);
  background-color: rgba(186, 213, 238, 0.95);
}

.capylips:nth-child(2) {
  transform: rotate(45deg);
}

.capyeye {
  width: 2em;
  height: 0.5em;
  bottom: 3.5em;
  left: 1.5em;
  position: absolute;
  border-radius: 5em;
  transform: rotate(45deg);
  background-color: rgba(32, 45, 60, 0.96);
}

.capyeye:nth-child(4) {
  left: 5.5em;
  width: 1.75em;
  transform: rotate(-45deg);
}

.capyleg {
  width: 6em;
  height: 5em;
  bottom: 0;
  left: 0;
  position: absolute;
  z-index: 2;
  border-radius: 2em;
  background: linear-gradient(180deg, rgba(183, 211, 238, 0.98), rgba(105, 138, 171, 0.96) 78%, rgba(56, 79, 104, 0.98));
  animation: movebody 1s linear infinite;
}

.capyleg2 {
  width: 1.75em;
  height: 3em;
  bottom: 0;
  left: 3.25em;
  position: absolute;
  z-index: 2;
  border-radius: 0.75em;
  box-shadow: inset 0 -0.5em rgba(56, 79, 104, 0.98);
  background: linear-gradient(180deg, rgba(183, 211, 238, 0.98), rgba(91, 122, 154, 0.96));
  animation: moveleg 1s linear infinite;
}

.capyleg2:nth-child(3) {
  width: 1.25em;
  left: 0.5em;
  height: 2em;
  animation: moveleg2 1s linear infinite 0.075s;
}

.loaderline {
  width: 50em;
  height: 0.5em;
  border-top: 0.5em dashed rgba(82, 118, 154, 0.95);
  animation: moveline 10s linear infinite;
}

.background-orb,
.background-beam {
  position: fixed;
  pointer-events: none;
  z-index: 0;
}

.background-orb {
  filter: blur(24px);
  border-radius: 999px;
}

.background-orb-left {
  top: 12%;
  left: -12%;
  width: 520px;
  height: 520px;
  background: radial-gradient(circle, rgba(87, 146, 212, 0.24) 0%, transparent 66%);
}

.background-orb-right {
  right: -10%;
  bottom: 10%;
  width: 620px;
  height: 620px;
  background: radial-gradient(circle, rgba(149, 201, 255, 0.18) 0%, transparent 68%);
}

.background-beam {
  width: 40vw;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(182, 216, 255, 0.48), transparent);
  opacity: 0.5;
}

.background-beam-left {
  top: 24%;
  left: -4%;
  transform: rotate(18deg);
}

.background-beam-right {
  bottom: 22%;
  right: -2%;
  transform: rotate(-14deg);
}

.background-capy-cloud {
  position: fixed;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  z-index: 0;
}

.background-capy {
  --face-glow: rgba(156, 200, 255, 0.12);
  position: absolute;
  width: var(--size, 120px);
  height: calc(var(--size, 120px) * 1.12);
  display: inline-block;
  opacity: 0;
  filter:
    blur(var(--blur, 0px))
    drop-shadow(0 0 20px var(--face-glow))
    drop-shadow(0 18px 40px rgba(10, 18, 28, 0.18));
  transform-origin: center;
  will-change: transform, opacity;
  animation: floatCapy var(--duration, 24s) cubic-bezier(0.42, 0, 0.2, 1) infinite;
  animation-delay: var(--delay, 0s);
}

.background-capy-icon {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
  opacity: 0.92;
}

.background-capy:nth-child(1) {
  --size: 112px;
  --duration: 32s;
  --delay: -2s;
  --start-x: -10vw;
  --start-y: 18vh;
  --mid-x: 30vw;
  --mid-y: 24vh;
  --end-x: 108vw;
  --end-y: 12vh;
  --rotate-start: -6deg;
  --rotate-mid: 8deg;
  --rotate-end: 3deg;
  opacity: 0.16;
}

.background-capy:nth-child(2) {
  --size: 138px;
  --duration: 40s;
  --delay: -10s;
  --start-x: 92vw;
  --start-y: 70vh;
  --mid-x: 52vw;
  --mid-y: 58vh;
  --end-x: -14vw;
  --end-y: 80vh;
  --rotate-start: 9deg;
  --rotate-mid: -7deg;
  --rotate-end: -12deg;
  --blur: 0.4px;
  opacity: 0.13;
}

.background-capy:nth-child(3) {
  --size: 94px;
  --duration: 26s;
  --delay: -6s;
  --start-x: 10vw;
  --start-y: 104vh;
  --mid-x: 18vw;
  --mid-y: 62vh;
  --end-x: 26vw;
  --end-y: -18vh;
  --rotate-start: 6deg;
  --rotate-mid: -8deg;
  --rotate-end: 5deg;
  opacity: 0.14;
}

.background-capy:nth-child(4) {
  --size: 124px;
  --duration: 36s;
  --delay: -14s;
  --start-x: 105vw;
  --start-y: 14vh;
  --mid-x: 62vw;
  --mid-y: 30vh;
  --end-x: -16vw;
  --end-y: 14vh;
  --rotate-start: -8deg;
  --rotate-mid: 6deg;
  --rotate-end: 10deg;
  --blur: 0.6px;
  opacity: 0.11;
}

.layout,
.site-footer {
  position: relative;
  z-index: 1;
  width: min(1160px, calc(100% - 40px));
  margin: 0 auto;
}

.layout {
  padding: 116px 0 128px;
}

.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  width: calc(100% - 32px);
  margin: 0;
  padding: 26px 20px 8px;
  position: fixed;
  top: 0;
  left: 16px;
  backdrop-filter: blur(18px);
  z-index: 40;
}

.site-header.reveal {
  transform: translateY(22px);
}

.site-header.reveal.is-visible {
  transform: translateY(0);
}

.site-header::before {
  content: "";
  position: absolute;
  inset: 8px 0 auto;
  height: calc(100% - 8px);
  background: linear-gradient(180deg, rgba(6, 9, 12, 0.82), rgba(6, 9, 12, 0.46));
  border: 1px solid rgba(153, 186, 216, 0.08);
  z-index: -1;
}

.brand,
.site-nav,
.eyebrow,
.button,
.hero-note,
.panel-label,
.card-index,
.site-footer {
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 0.84rem;
  font-weight: 700;
}

.brand-mark,
.background-capy {
  position: relative;
  display: inline-block;
}

.brand-mark {
  width: 28px;
  height: 28px;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 0 18px rgba(156, 200, 255, 0.22);
}

.brand-mark-img {
  width: 100%;
  height: 100%;
  display: block;
}

.site-nav {
  display: inline-flex;
  align-items: center;
  gap: 26px;
  font-size: 0.73rem;
  color: var(--soft);
}

.site-nav a {
  transition: color 180ms ease;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--text);
}

.hero {
  min-height: calc(100vh - 120px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 22px;
  padding: 72px 0 96px;
}

.hero-note {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 11px 14px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.03);
  color: var(--accent-strong);
  font-size: 0.7rem;
}

.status-dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--accent);
  box-shadow: 0 0 16px rgba(156, 200, 255, 0.72);
}

.eyebrow {
  margin: 0;
  font-size: 0.74rem;
  font-weight: 600;
  color: rgba(210, 230, 255, 0.74);
}

.hero h1,
.section-heading h2,
.info-card h2,
.download-card h3,
.steps h3 {
  margin: 0;
  font-weight: 700;
  letter-spacing: -0.04em;
}

.hero h1 {
  max-width: 900px;
  font-size: clamp(2.8rem, 6.2vw, 4.8rem);
  line-height: 0.98;
}

.hero-copy,
.info-card p,
.download-card p,
.steps p,
.faq-list p {
  margin: 0;
  color: var(--muted);
  line-height: 1.72;
}

.hero-copy {
  max-width: 680px;
  font-size: 1rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 26px;
  border: 1px solid transparent;
  font-size: 0.72rem;
  font-weight: 700;
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    background-color 180ms ease,
    box-shadow 180ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
}

.button[disabled] {
  cursor: not-allowed;
  opacity: 0.56;
  box-shadow: none;
}

.button[disabled]:hover,
.button[disabled]:focus-visible {
  transform: none;
}

.button-primary {
  color: var(--button-text);
  background: linear-gradient(180deg, #cfe5ff 0%, #9bc8ff 100%);
  box-shadow: 0 10px 30px rgba(114, 166, 226, 0.24);
}

.button-secondary,
.button-nav {
  color: var(--text);
  border-color: var(--line-strong);
  background: rgba(255, 255, 255, 0.03);
}

.button-nav {
  min-height: 46px;
  padding: 0 18px;
}

.button-wide {
  width: 100%;
}

.hero-panel,
.info-grid,
.steps {
  display: grid;
  gap: 18px;
}

.hero-panel {
  width: min(100%, 980px);
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 8px;
}

.services-strip {
  width: 100%;
  margin: 6px 0 0;
  display: grid;
  gap: 12px;
}

.services-strip-head {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.services-marquee {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(11, 16, 23, 0.78), rgba(7, 11, 15, 0.94));
  box-shadow: var(--shadow);
  padding-top: 8px;
}

.services-marquee::before,
.services-marquee::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 100px;
  z-index: 1;
  pointer-events: none;
}

.services-marquee::before {
  left: 0;
  background: linear-gradient(90deg, rgba(7, 11, 15, 0.98), transparent);
}

.services-marquee::after {
  right: 0;
  background: linear-gradient(270deg, rgba(7, 11, 15, 0.98), transparent);
}

.services-marquee-track {
  display: flex;
  width: max-content;
  align-items: center;
  gap: 14px;
  padding: 12px 14px 16px;
  animation: serviceMarquee 42s linear infinite;
  will-change: transform;
}

.service-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: max-content;
  padding: 12px 16px;
  border: 1px solid rgba(153, 186, 216, 0.14);
  background: rgba(255, 255, 255, 0.03);
  color: rgba(238, 243, 248, 0.9);
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    color 180ms ease,
    background-color 180ms ease;
}

.service-pill:hover,
.service-pill:focus-visible {
  transform: translateY(-2px);
  border-color: rgba(210, 230, 255, 0.28);
  background: rgba(255, 255, 255, 0.05);
  color: #ffffff;
}

.service-icon-img {
  width: 18px;
  height: 18px;
  display: block;
  flex: 0 0 auto;
  filter: brightness(0) invert(1);
}

.service-pill span {
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.03em;
}

.hero-panel-block,
.info-card,
.download-card,
.steps article,
.faq-list details {
  border: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(11, 16, 23, 0.84), rgba(7, 11, 15, 0.96));
  box-shadow: var(--shadow);
}

.hero-panel-block {
  padding: 22px;
}

.panel-label,
.card-index {
  display: inline-block;
  margin-bottom: 14px;
  font-size: 0.68rem;
  font-weight: 700;
  color: rgba(210, 230, 255, 0.58);
}

.hero-panel-block strong,
.download-stat strong {
  display: block;
  font-size: 1rem;
  font-weight: 600;
}

.info-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-bottom: 120px;
}

.info-card {
  padding: 30px;
}

.info-card h2 {
  font-size: 1.65rem;
  margin-bottom: 14px;
}

.download-section,
.coverage,
.setup,
.support,
.faq {
  margin-bottom: 120px;
}

.coverage-card {
  border: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(11, 16, 23, 0.84), rgba(7, 11, 15, 0.96));
  box-shadow: var(--shadow);
  padding: 26px;
  display: grid;
  gap: 22px;
}

.coverage-map-wrap {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(153, 186, 216, 0.1);
  background:
    radial-gradient(circle at top right, rgba(69, 187, 115, 0.08), transparent 28%),
    linear-gradient(180deg, rgba(8, 12, 16, 0.88), rgba(7, 11, 15, 0.98));
  min-height: 420px;
  isolation: isolate;
}

.coverage-map-wrap::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(7, 11, 15, 0.94), transparent 10%, transparent 92%, rgba(7, 11, 15, 0.94)),
    linear-gradient(180deg, rgba(7, 11, 15, 0.84), transparent 18%, transparent 84%, rgba(7, 11, 15, 0.88));
  pointer-events: none;
  z-index: 1;
}

.coverage-map {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 150%;
  max-width: none;
  height: auto;
  transform: translate(-46%, -40%);
  opacity: 0.64;
  filter: brightness(0.88) contrast(1.04);
}

.coverage-point {
  position: absolute;
  z-index: 2;
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: #63f59e;
  box-shadow:
    0 0 0 6px rgba(99, 245, 158, 0.08),
    0 0 16px rgba(99, 245, 158, 0.72);
  animation: clientPulse 2.8s ease-in-out infinite;
}

.coverage-point.is-lg {
  width: 11px;
  height: 11px;
  box-shadow:
    0 0 0 9px rgba(99, 245, 158, 0.08),
    0 0 20px rgba(99, 245, 158, 0.82);
}

.coverage-point:nth-child(2n) {
  animation-delay: -0.9s;
}

.coverage-point:nth-child(3n) {
  animation-delay: -1.5s;
}

.coverage-meta {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.coverage-stat {
  padding: 18px;
  border: 1px solid rgba(153, 186, 216, 0.1);
  background: rgba(255, 255, 255, 0.02);
}

.coverage-stat strong {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1rem;
  font-weight: 600;
}

.coverage-status-dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: #63f59e;
  box-shadow: 0 0 14px rgba(99, 245, 158, 0.72);
  flex: 0 0 auto;
}

.download-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.pricing-card {
  border: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(11, 16, 23, 0.84), rgba(7, 11, 15, 0.96));
  box-shadow: var(--shadow);
  padding: 30px;
  display: grid;
  gap: 16px;
}

.pricing-card-accent {
  border-color: rgba(156, 200, 255, 0.32);
  box-shadow:
    0 22px 56px rgba(0, 0, 0, 0.34),
    0 0 0 1px rgba(156, 200, 255, 0.06);
}

.pricing-card-free {
  border-color: rgba(153, 186, 216, 0.16);
}

.pricing-card h3 {
  margin: 0;
  font-size: 2rem;
  letter-spacing: -0.04em;
}

.pricing-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.72;
}

.pricing-value {
  font-size: 2.4rem;
  font-weight: 800;
  letter-spacing: -0.05em;
}

.pricing-features {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 10px;
  color: var(--text);
}

.pricing-features li {
  position: relative;
  padding-left: 18px;
}

.pricing-features li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.62em;
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: var(--accent);
  box-shadow: 0 0 10px rgba(156, 200, 255, 0.5);
}

.payment-modal {
  position: fixed;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 24px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 180ms ease, visibility 180ms ease;
  z-index: 60;
}

.payment-modal.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.payment-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(4, 8, 12, 0.82);
  backdrop-filter: blur(14px);
}

.payment-dialog {
  position: relative;
  width: min(980px, 100%);
  max-height: min(88vh, 920px);
  overflow: auto;
  border: 1px solid rgba(153, 186, 216, 0.16);
  background: linear-gradient(180deg, rgba(11, 16, 23, 0.96), rgba(7, 11, 15, 0.99));
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.45);
  padding: 32px;
  z-index: 1;
}

.payment-close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(153, 186, 216, 0.16);
  background: rgba(255, 255, 255, 0.03);
  color: var(--text);
  font-size: 1.4rem;
  cursor: pointer;
}

.payment-copy {
  margin: 10px 0 0;
  max-width: 640px;
  color: var(--muted);
  line-height: 1.72;
}

.section-copy {
  margin: 12px 0 0;
  max-width: 660px;
  color: var(--muted);
  line-height: 1.72;
}

.payment-platform,
.payment-block,
.payment-summary,
.payment-method,
.payment-tariff {
  border: 1px solid rgba(153, 186, 216, 0.1);
  background: rgba(255, 255, 255, 0.02);
}

.payment-platform {
  margin-top: 24px;
  padding: 18px;
}

.payment-access-steps {
  margin-top: 12px;
  display: grid;
  gap: 14px;
}

.payment-access-step {
  border: 1px solid rgba(153, 186, 216, 0.12);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.035), rgba(255, 255, 255, 0.02));
  padding: 18px;
  display: grid;
  gap: 14px;
  transition: border-color 180ms ease, background 180ms ease, transform 180ms ease, opacity 180ms ease;
}

.payment-access-step-head {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.payment-access-step-badge {
  width: 34px;
  height: 34px;
  border-radius: 999px;
  border: 1px solid rgba(153, 186, 216, 0.22);
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  font-size: 0.92rem;
  font-weight: 700;
}

.payment-access-step-copy strong {
  display: block;
  font-size: 1rem;
}

.payment-access-step-copy p {
  margin: 6px 0 0;
  color: var(--muted);
  line-height: 1.65;
}

.payment-access-step.is-active {
  border-color: rgba(156, 200, 255, 0.3);
  background: linear-gradient(180deg, rgba(156, 200, 255, 0.1), rgba(255, 255, 255, 0.03));
  box-shadow: 0 0 0 1px rgba(156, 200, 255, 0.06);
}

.payment-access-step.is-active .payment-access-step-badge,
.payment-access-step.is-complete .payment-access-step-badge {
  border-color: rgba(156, 200, 255, 0.45);
  background: rgba(156, 200, 255, 0.14);
}

.payment-access-step.is-complete {
  border-color: rgba(126, 240, 169, 0.22);
  background: linear-gradient(180deg, rgba(126, 240, 169, 0.08), rgba(255, 255, 255, 0.03));
}

.payment-access-step.is-complete .payment-access-step-badge {
  border-color: rgba(126, 240, 169, 0.32);
  background: rgba(126, 240, 169, 0.12);
}

.payment-access-step.is-disabled {
  opacity: 0.74;
}

.download-panel {
  margin-top: 20px;
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(280px, 0.85fr);
  gap: 18px;
}

.download-panel-main,
.download-panel-actions {
  border: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(11, 16, 23, 0.84), rgba(7, 11, 15, 0.96));
  box-shadow: var(--shadow);
  padding: 28px;
}

.download-panel-main {
  display: grid;
  gap: 12px;
}

.download-panel-main strong {
  font-size: 1.35rem;
}

.download-panel-main p {
  margin: 0;
  color: var(--muted);
  line-height: 1.72;
}

.download-panel-actions {
  display: grid;
  align-content: center;
  gap: 12px;
}

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

.payment-step-tabs {
  display: inline-flex;
  gap: 10px;
  flex-wrap: wrap;
}

.payment-step-tab {
  border: 1px solid rgba(153, 186, 216, 0.12);
  background: rgba(255, 255, 255, 0.03);
  color: var(--muted);
  padding: 10px 14px;
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.payment-step-tab.is-active {
  border-color: rgba(156, 200, 255, 0.3);
  background: rgba(156, 200, 255, 0.08);
  color: var(--text);
}

.payment-step-tab.is-clickable {
  cursor: pointer;
}

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

.payment-grid {
  margin-top: 18px;
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: 18px;
}

.payment-block {
  padding: 18px;
}

.payment-billing-content {
  display: grid;
}

.payment-tariffs,
.payment-choice-grid,
.payment-methods,
.payment-actions {
  display: grid;
  gap: 12px;
}

.payment-tariffs {
  margin-top: 12px;
}

.payment-choice,
.payment-tariff,
.payment-method {
  width: 100%;
  text-align: left;
  color: var(--text);
  cursor: pointer;
  padding: 14px 16px;
}

.payment-choice {
  border: 1px solid rgba(153, 186, 216, 0.1);
  background: rgba(255, 255, 255, 0.02);
  display: grid;
  gap: 12px;
}

.payment-choice[disabled],
.payment-tariff[disabled],
.payment-method[disabled] {
  cursor: not-allowed;
  opacity: 0.56;
}

.payment-choice-head {
  display: flex;
  align-items: center;
  gap: 14px;
}

.payment-choice-icon {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  border: 1px solid rgba(153, 186, 216, 0.14);
  background: rgba(255, 255, 255, 0.03);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
}

.payment-choice-icon-svg {
  width: 22px;
  height: 22px;
  color: var(--text);
}

.payment-choice-icon-img {
  width: 20px;
  height: 20px;
  filter: invert(1);
}

.payment-choice-title,
.payment-tariff strong,
.payment-tariff span {
  display: block;
}

.payment-choice-status {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 5px 10px;
  border-radius: 999px;
  border: 1px solid rgba(255, 204, 128, 0.24);
  background: rgba(255, 204, 128, 0.08);
  color: #ffd29a;
  font-size: 0.68rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.payment-choice-title {
  margin: 0;
  color: var(--text);
  font-size: 1rem;
  line-height: 1.2;
}

.payment-choice-copy,
.payment-tariff span {
  color: var(--muted);
}

.payment-choice-copy {
  margin: 0;
  line-height: 1.58;
}

.payment-tariff span {
  margin-top: 6px;
}

.payment-choice.is-selected {
  border-color: rgba(156, 200, 255, 0.36);
  background: rgba(156, 200, 255, 0.08);
  box-shadow: 0 0 0 1px rgba(156, 200, 255, 0.08);
}

.payment-section-title {
  margin: 10px 0 0;
  font-size: 1.28rem;
}

.payment-section-copy {
  margin: 10px 0 0;
  color: var(--muted);
  line-height: 1.72;
}

.payment-route-card {
  margin-top: 12px;
  padding: 16px;
  border: 1px solid rgba(153, 186, 216, 0.12);
  background: rgba(255, 255, 255, 0.025);
}

.payment-route-card strong {
  display: block;
  font-size: 1rem;
}

.payment-route-card p {
  margin: 8px 0 0;
  color: var(--muted);
  line-height: 1.68;
}

.payment-methods {
  margin-top: 12px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.payment-form {
  margin-top: 16px;
  display: grid;
  gap: 12px;
}

.payment-form[hidden],
.payment-step[hidden],
.payment-download-link[hidden],
.payment-free-note[hidden] {
  display: none !important;
}

.payment-field {
  display: grid;
  gap: 8px;
}

.payment-field span {
  color: var(--muted);
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.payment-field input,
.payment-field select {
  width: 100%;
  border: 1px solid rgba(153, 186, 216, 0.12);
  background: rgba(255, 255, 255, 0.03);
  color: var(--text);
  padding: 14px 16px;
  outline: none;
}

.payment-field input::placeholder {
  color: rgba(201, 211, 225, 0.42);
}

.payment-field input:focus,
.payment-field select:focus {
  border-color: rgba(156, 200, 255, 0.34);
  box-shadow: 0 0 0 1px rgba(156, 200, 255, 0.08);
}

.payment-field input.is-invalid,
.payment-field select.is-invalid {
  border-color: rgba(255, 122, 122, 0.5);
  box-shadow: 0 0 0 1px rgba(255, 122, 122, 0.12);
}

.payment-field-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.payment-tariff.is-selected,
.payment-method.is-selected {
  border-color: rgba(156, 200, 255, 0.36);
  background: rgba(156, 200, 255, 0.08);
  box-shadow: 0 0 0 1px rgba(156, 200, 255, 0.08);
}

.payment-summary {
  margin-top: 16px;
  padding: 16px;
  display: grid;
  gap: 12px;
}

.payment-free-note {
  margin-top: 12px;
  padding: 16px;
  border: 1px solid rgba(126, 240, 169, 0.18);
  background: rgba(126, 240, 169, 0.06);
  color: #c9f7d6;
  line-height: 1.7;
}

.payment-summary-row {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  color: var(--muted);
}

.payment-summary-row strong {
  color: var(--text);
}

.payment-summary-total {
  padding-top: 12px;
  border-top: 1px solid rgba(153, 186, 216, 0.1);
}

.payment-note {
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
}

.payment-note.is-success {
  color: #7ef0a9;
}

.footer-panel {
  margin-bottom: 160px;
}

.footer-panel-main {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) repeat(2, minmax(180px, 0.8fr)) minmax(260px, 1fr);
  gap: 18px;
}

.footer-brand,
.footer-links,
.footer-cta {
  border: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(11, 16, 23, 0.84), rgba(7, 11, 15, 0.96));
  box-shadow: var(--shadow);
  padding: 28px;
}

.footer-brand {
  display: grid;
  gap: 16px;
}

.footer-brand-head {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 1.05rem;
  font-weight: 700;
}

.footer-brand p,
.footer-cta p,
.footer-links span,
.footer-links a {
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
}

.footer-links,
.footer-cta {
  display: grid;
  gap: 10px;
  align-content: start;
}

.footer-cta-actions {
  display: grid;
  gap: 12px;
}

.footer-title {
  margin-bottom: 8px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(210, 230, 255, 0.62);
}

.footer-links a {
  transition: color 180ms ease;
}

.footer-links a:hover,
.footer-links a:focus-visible {
  color: var(--text);
}

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

.section-heading-left {
  max-width: 720px;
}

.section-heading h2 {
  max-width: 760px;
  font-size: clamp(2.4rem, 5.5vw, 4.4rem);
  line-height: 0.94;
}

.download-card {
  display: grid;
  grid-template-columns: 1fr;
  gap: 22px;
  padding: 32px;
  align-items: start;
}

.download-meta {
  display: flex;
  align-items: flex-start;
  gap: 18px;
}

.platform-icon {
  width: 56px;
  height: 56px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line-strong);
  color: var(--accent-strong);
  font-size: 1rem;
  font-weight: 800;
  background: rgba(255, 255, 255, 0.03);
  flex: 0 0 auto;
}

.platform-icon-img {
  width: 28px;
  height: 28px;
  display: block;
  filter: brightness(0) invert(1);
}

.platform-icon-svg {
  width: 28px;
  height: 28px;
  display: block;
  fill: #ffffff;
}

.download-card h3 {
  font-size: 2rem;
  margin-bottom: 12px;
}

.download-side {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.download-stat {
  padding: 18px;
  border: 1px solid rgba(153, 186, 216, 0.1);
  background: rgba(255, 255, 255, 0.02);
}

.download-side .button {
  grid-column: 1 / -1;
}

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

.steps article {
  padding: 28px;
}

.steps span {
  display: inline-flex;
  margin-bottom: 18px;
  font-size: 0.78rem;
  font-weight: 700;
  color: rgba(210, 230, 255, 0.62);
}

.steps h3 {
  font-size: 1.5rem;
  margin-bottom: 12px;
}

.faq-list {
  display: grid;
  gap: 14px;
}

.faq-list details {
  padding: 22px 24px;
}

.faq-list summary {
  cursor: pointer;
  list-style: none;
  font-size: 1rem;
  font-weight: 700;
}

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

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

.support-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.support-card {
  border: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(11, 16, 23, 0.84), rgba(7, 11, 15, 0.96));
  box-shadow: var(--shadow);
  padding: 30px;
  display: grid;
  gap: 18px;
}

.support-card-head {
  display: flex;
  align-items: center;
  gap: 16px;
}

.support-card-head strong {
  display: block;
  font-size: 1.08rem;
}

.support-icon {
  width: 52px;
  height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(153, 186, 216, 0.12);
  background: rgba(255, 255, 255, 0.03);
  color: var(--text);
  flex: 0 0 auto;
}

.support-icon-svg {
  width: 22px;
  height: 22px;
  fill: currentColor;
}

.support-card p,
.support-note {
  margin: 0;
  color: var(--muted);
  line-height: 1.72;
}

.support-form {
  display: grid;
  gap: 12px;
}

.support-field {
  display: grid;
  gap: 8px;
}

.support-field span {
  color: var(--muted);
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.support-field input {
  width: 100%;
  border: 1px solid rgba(153, 186, 216, 0.12);
  background: rgba(255, 255, 255, 0.03);
  color: var(--text);
  padding: 14px 16px;
  outline: none;
}

.support-field input::placeholder {
  color: rgba(201, 211, 225, 0.42);
}

.support-field input:focus {
  border-color: rgba(156, 200, 255, 0.34);
  box-shadow: 0 0 0 1px rgba(156, 200, 255, 0.08);
}

.support-note.is-success {
  color: #7ef0a9;
}

.site-footer {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  width: calc(100% - 32px);
  margin: 0;
  padding: 16px 20px 18px;
  position: fixed;
  left: 16px;
  bottom: 0;
  font-size: 0.68rem;
  color: var(--soft);
  backdrop-filter: blur(18px);
  z-index: 25;
}

.site-footer::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(6, 9, 12, 0.3), rgba(6, 9, 12, 0.88));
  border: 1px solid rgba(153, 186, 216, 0.08);
  z-index: -1;
}

.site-footer.reveal {
  transform: translateY(22px);
}

.site-footer.reveal.is-visible {
  transform: translateY(0);
}

#about,
#download,
#setup,
#faq,
#footer {
  scroll-margin-top: 110px;
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition:
    opacity 700ms ease,
    transform 700ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes moveleg {
  0% {
    transform: rotate(-45deg) translateX(-5%);
  }
  50% {
    transform: rotate(45deg) translateX(5%);
  }
  100% {
    transform: rotate(-45deg) translateX(-5%);
  }
}

@keyframes moveleg2 {
  0% {
    transform: rotate(45deg);
  }
  50% {
    transform: rotate(-45deg);
  }
  100% {
    transform: rotate(45deg);
  }
}

@keyframes movebody {
  0% {
    transform: translateX(0%);
  }
  50% {
    transform: translateX(2%);
  }
  100% {
    transform: translateX(0%);
  }
}

@keyframes moveline {
  0% {
    transform: translateX(0%);
    opacity: 0;
  }
  5% {
    opacity: 1;
  }
  95% {
    opacity: 1;
  }
  100% {
    transform: translateX(-70%);
    opacity: 0;
  }
}

@keyframes floatCapy {
  0% {
    transform: translate3d(var(--start-x), var(--start-y), 0) rotate(var(--rotate-start)) scale(0.9);
    opacity: 0;
  }
  14% {
    opacity: 0.12;
  }
  50% {
    transform: translate3d(var(--mid-x), var(--mid-y), 0) rotate(var(--rotate-mid)) scale(1.02);
    opacity: 0.18;
  }
  86% {
    opacity: 0.1;
  }
  100% {
    transform: translate3d(var(--end-x), var(--end-y), 0) rotate(var(--rotate-end)) scale(0.94);
    opacity: 0;
  }
}

@keyframes serviceMarquee {
  0% {
    transform: translate3d(0, 0, 0);
  }
  100% {
    transform: translate3d(-50%, 0, 0);
  }
}

@keyframes clientPulse {
  0% {
    transform: scale(0.86);
    opacity: 0.68;
  }
  50% {
    transform: scale(1.3);
    opacity: 1;
  }
  100% {
    transform: scale(0.92);
    opacity: 0.82;
  }
}

@media (max-width: 1024px) {
  .services-marquee::before,
  .services-marquee::after {
    width: 64px;
  }

  .pricing-grid,
  .payment-grid,
  .coverage-meta,
  .support-grid,
  .download-panel,
  .download-list,
  .footer-panel-main {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .background-capy {
    opacity: 0.12;
  }

  .site-header {
    flex-wrap: wrap;
  }

  .site-nav {
    order: 3;
    width: 100%;
    justify-content: center;
    padding-bottom: 10px;
  }

  .hero-panel,
  .info-grid,
  .steps,
  .download-card,
  .support-grid,
  .download-panel {
    grid-template-columns: 1fr;
  }

  .payment-field-grid {
    grid-template-columns: 1fr;
  }

  .payment-access-step-head {
    gap: 12px;
  }
}

@media (max-width: 720px) {
  .services-marquee-track {
    gap: 10px;
    padding: 12px 10px;
    animation-duration: 34s;
  }

  .service-pill {
    padding: 10px 14px;
  }

  .pricing-grid,
  .download-list,
  .coverage-meta,
  .payment-grid,
  .footer-panel-main {
    grid-template-columns: 1fr;
  }

  .background-capy:nth-child(4) {
    display: none;
  }

  body::before {
    inset: 10px;
  }

  .layout,
  .site-header,
  .site-footer {
    width: min(100% - 20px, 1160px);
  }

  .site-header {
    padding-top: 18px;
  }

  .site-nav {
    gap: 14px;
    flex-wrap: wrap;
    font-size: 0.68rem;
  }

  .hero {
    padding: 42px 0 80px;
    min-height: auto;
  }

  .hero-actions,
  .button,
  .button-nav {
    width: 100%;
  }

  .download-meta {
    flex-direction: column;
  }

  .download-side {
    grid-template-columns: 1fr;
  }

  .info-card,
  .download-card,
  .pricing-card,
  .coverage-card,
  .steps article,
  .faq-list details,
  .hero-panel-block {
    padding: 22px;
  }

  .payment-dialog {
    padding: 22px;
  }

  .payment-methods {
    grid-template-columns: 1fr;
  }

  .coverage-map-wrap {
    min-height: 260px;
  }

  .coverage-map {
    width: 185%;
    transform: translate(-47%, -40%);
  }

  .site-footer {
    flex-wrap: wrap;
  }

  .capybaraloader {
    transform: scale(0.8);
  }
}
