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

:root {
  --bg: #f5f8fc;
  --bg-soft: #edf5ff;
  --surface: rgba(255, 255, 255, 0.82);
  --surface-strong: rgba(255, 255, 255, 0.94);
  --surface-border: rgba(16, 33, 61, 0.1);
  --text: #162136;
  --text-soft: #667891;
  --text-faint: #8a9ab0;
  --primary: #1678ff;
  --primary-deep: #124db8;
  --secondary: #11c7d7;
  --warning: #ffb84c;
  --success: #16a34a;
  --shadow: 0 28px 80px rgba(24, 69, 137, 0.14);
  --shadow-soft: 0 16px 34px rgba(18, 35, 65, 0.08);
  --radius-xl: 40px;
  --radius-lg: 30px;
  --radius-md: 24px;
  --radius-sm: 18px;
  --wrap: min(calc(100% - 40px), 1180px);
  --container: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  overflow-x: hidden;
  font-family: "Manrope", sans-serif;
  color: var(--text);
  line-height: 1.5;
  background:
    radial-gradient(circle at top left, rgba(22, 120, 255, 0.09), transparent 34%),
    radial-gradient(circle at 86% 12%, rgba(17, 199, 215, 0.14), transparent 26%),
    linear-gradient(180deg, #fbfdff 0%, #f3f7fd 58%, #eef4fb 100%);
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 0;
  opacity: 0.22;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.14) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.14) 1px, transparent 1px);
  background-size: 36px 36px;
}

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

img {
  display: block;
  max-width: 100%;
  height: auto;
}

button,
input {
  font: inherit;
}

button {
  border: 0;
  background: none;
  color: inherit;
  cursor: pointer;
}

ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

button:focus-visible,
a:focus-visible,
input:focus-visible {
  outline: 2px solid rgba(22, 120, 255, 0.6);
  outline-offset: 3px;
}

.page-shell,
.site-header,
.landing,
.footer {
  position: relative;
  z-index: 1;
}

.page-shell {
  width: min(calc(100% - 40px), var(--container));
  margin: 0 auto;
  padding: 18px 0 40px;
}

.glass {
  border: 1px solid var(--surface-border);
  border-radius: var(--radius-lg);
  background: var(--surface);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.site-header {
  position: sticky;
  top: 10px;
  z-index: 20;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 16px;
  padding: 8px 14px;
  border: 1px solid var(--surface-border);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.76);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 14px 34px rgba(20, 54, 108, 0.1);
}

.site-topbar {
  display: contents;
}

body.is-scrolled .site-header {
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 16px 32px rgba(18, 35, 65, 0.1);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.brand__badge {
  flex: 0 0 72px;
  width: 72px;
  height: 50px;
}

.brand-logo {
  width: 72px;
  height: 50px;
  margin: 0;
  object-fit: contain;
}

.nav,
.topbar-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
}

.nav-link {
  color: var(--text-soft);
  font-size: 0.86rem;
  font-weight: 700;
  transition: color 0.25s ease, transform 0.25s ease;
}

.nav-link:hover,
.nav-link.is-active {
  color: var(--primary-deep);
  transform: translateY(-1px);
}

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

.site-header .button,
.site-header .topbar-cta {
  min-height: 38px;
  padding: 9px 15px;
  font-size: 0.82rem;
}

.button,
.btn,
.topbar-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  padding: 13px 22px;
  border-radius: 999px;
  font-size: 0.96rem;
  font-weight: 800;
  line-height: 1;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease, border-color 0.2s ease;
}

.button:hover,
.btn:hover,
.topbar-cta:hover {
  transform: translateY(-2px);
}

.button--primary,
.btn-primary,
.topbar-cta {
  color: #ffffff;
  background: var(--primary);
  box-shadow: 0 14px 30px rgba(22, 120, 255, 0.22);
}

.button--primary:hover,
.btn-primary:hover,
.topbar-cta:hover {
  background: var(--primary-deep);
}

.button--ghost,
.btn-ghost {
  color: var(--text);
  border: 1px solid var(--surface-border);
  background: rgba(255, 255, 255, 0.78);
}

.button--ghost:hover,
.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.96);
  border-color: rgba(16, 33, 61, 0.16);
}

.button--light {
  color: var(--primary-deep);
  background: #ffffff;
  box-shadow: 0 14px 30px rgba(8, 25, 54, 0.15);
}

.button--outline-light {
  color: #ffffff;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.button--wide {
  min-width: 196px;
}

.btn-section-cta {
  width: 100%;
  margin-top: 18px;
}

.btn-icon-svg {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

.btn-icon-svg svg {
  width: 100%;
  height: 100%;
}

.landing {
  display: grid;
  gap: 24px;
  padding-top: 8px;
}

.section {
  padding: 18px 0;
  scroll-margin-top: 96px;
}

.section--soft {
  padding: 42px;
  border: 1px solid var(--surface-border);
  border-radius: var(--radius-xl);
  background: rgba(255, 255, 255, 0.66);
  box-shadow: var(--shadow);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

.hero-section {
  padding: 0;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(0, 0.98fr);
  gap: 22px;
  align-items: center;
  min-height: calc(100svh - 124px);
  width: 100%;
  padding: 8px 0 6px;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  backdrop-filter: none;
}

.hero-left,
.hero-right {
  min-width: 0;
}

.eyebrow,
.section-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 0;
  padding: 10px 16px;
  border: 1px solid rgba(22, 120, 255, 0.08);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.8);
  color: var(--primary-deep);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  box-shadow: var(--shadow-soft);
}

.eyebrow::before,
.section-label::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
}

.eyebrow--inverse {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.16);
  box-shadow: none;
}

.eyebrow--inverse::before {
  background: #ffffff;
}

.hero-trial {
  display: inline-grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 8px;
  margin: 0 0 12px;
  padding: 8px 12px 8px 8px;
  min-height: 40px;
  border-radius: 999px;
  border: 1px solid rgba(255, 184, 76, 0.28);
  background: rgba(255, 184, 76, 0.12);
  box-shadow: 0 10px 24px rgba(146, 91, 23, 0.07);
}

.hero-trial-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  border-radius: 999px;
  background: rgba(255, 184, 76, 0.18);
  color: #d98a18;
}

.hero-trial-icon svg {
  width: 12px;
  height: 12px;
}

.hero-trial-copy {
  display: flex;
  align-items: center;
  gap: 7px;
  line-height: 1;
}

.hero-trial-label {
  color: #c98620;
  font-size: 0.58rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  white-space: nowrap;
}

.hero-trial-value {
  color: var(--text);
  font-size: 0.8rem;
  font-weight: 800;
  white-space: nowrap;
}

.hero-title,
.hero-title-mobile,
.section-title,
.hero-card h2,
.pricing-group__title,
.plan-duration,
.feature h3,
.loc-name,
.footer-title {
  font-family: "Space Grotesk", sans-serif;
}

.hero-title,
.hero-title-mobile {
  margin: 0 0 16px;
  font-size: clamp(2.85rem, 5.6vw, 4.7rem);
  line-height: 0.92;
  letter-spacing: -0.08em;
}

.hero-title em,
.hero-title-mobile em {
  font-style: normal;
  color: var(--primary-deep);
}

.hero-title-mobile,
.hero-devices-mobile,
.hero-primary-cta-mobile,
.topbar-nav-mobile {
  display: none;
}

.hero-subtitle,
.section-text,
.pricing-group__lead,
.feature p,
.location-card .loc-ping,
.faq-a,
.footer-brand-text,
.footer-list a,
.footer-list span,
.footer-copy,
.footer-payments-label,
.hero-card__meta span,
.config-item span,
.hero__stats span {
  color: var(--text-soft);
}

.hero-subtitle {
  max-width: 34rem;
  margin-bottom: 20px;
  font-size: 1rem;
  line-height: 1.62;
}

.hero-actions,
.cta-panel__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hero-actions {
  margin-bottom: 16px;
}

.hero-mobile-summary {
  display: none;
}

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

.hero__stats li {
  padding: 16px 18px;
  border: 1px solid var(--surface-border);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: var(--shadow-soft);
}

.hero-stat__top {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 10px;
}

.hero-stat__icon {
  position: relative;
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  flex: 0 0 38px;
  margin-bottom: 0;
  border-radius: 12px;
  background: rgba(237, 245, 255, 0.95);
  border: 1px solid rgba(22, 120, 255, 0.08);
  color: var(--primary-deep);
}

.hero-stat__icon svg {
  position: absolute;
  left: 50%;
  top: 50%;
  display: block;
  width: 18px;
  height: 18px;
  transform: translate(-50%, -50%);
  transform-box: fill-box;
  transform-origin: center;
}

.hero-stat__icon--trial svg {
  width: 17px;
  height: 17px;
}

.hero-stat__icon--locations svg {
  width: 17px;
  height: 17px;
}

.hero-stat__icon--devices svg {
  width: 18px;
  height: 18px;
}

.hero__stats strong {
  display: block;
  margin-bottom: 0;
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.34rem;
  line-height: 1;
}

.hero__stats span {
  display: block;
  font-size: 0.88rem;
  line-height: 1.45;
}

.hero-badges {
  display: none;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 42px;
  padding: 8px 14px 8px 10px;
  border: 1px solid var(--surface-border);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.78);
  color: var(--text-soft);
  font-size: 0.8rem;
  font-weight: 700;
}

.hero-badge-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  border-radius: 999px;
  background: rgba(22, 120, 255, 0.12);
  color: var(--primary-deep);
}

.hero-badge-icon svg {
  width: 12px;
  height: 12px;
}

.hero-right {
  position: relative;
  min-height: 620px;
}

.hero__visual {
  position: relative;
  min-height: clamp(510px, 62vh, 620px);
  isolation: isolate;
}

.hero__visual::before {
  content: "";
  position: absolute;
  top: 4%;
  right: 4%;
  width: 64%;
  height: 54%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(120, 220, 255, 0.42), rgba(22, 120, 255, 0.02) 72%);
  filter: blur(4px);
  z-index: 0;
}

.signal-cluster {
  position: absolute;
  inset: 4% 0 6% 5%;
  z-index: 0;
}

.signal {
  position: absolute;
  height: 28px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(197, 230, 255, 0.18), rgba(22, 120, 255, 0.84));
  box-shadow: 0 14px 34px rgba(22, 120, 255, 0.18);
  animation: signal-float 10s ease-in-out infinite;
}

.signal--1 { top: 8%; right: 10%; width: 240px; }
.signal--2 { top: 19%; left: 18%; width: 150px; animation-delay: -2s; background: linear-gradient(90deg, rgba(169, 236, 255, 0.22), rgba(17, 199, 215, 0.88)); }
.signal--3 { top: 30%; right: 0; width: 320px; animation-delay: -3s; }
.signal--4 { top: 41%; left: 8%; width: 280px; animation-delay: -5s; }
.signal--5 { top: 52%; right: 8%; width: 190px; animation-delay: -1.5s; background: linear-gradient(90deg, rgba(200, 233, 255, 0.24), rgba(91, 63, 255, 0.88)); }
.signal--6 { top: 62%; left: 22%; width: 360px; animation-delay: -6s; background: linear-gradient(90deg, rgba(183, 244, 248, 0.18), rgba(17, 199, 215, 0.86)); }
.signal--7 { bottom: 12%; right: 12%; width: 220px; animation-delay: -4s; }
.signal--8 { bottom: 2%; left: 0; width: 130px; animation-delay: -7s; background: linear-gradient(90deg, rgba(204, 235, 255, 0.24), rgba(17, 199, 215, 0.82)); }

.hero-card,
.mascot-panel,
.locations-shell,
.pricing-shell,
.feature-card,
.location-card,
.faq-card,
.cta-panel,
.site-footer {
  box-shadow: var(--shadow);
}

.hero-card {
  position: absolute;
  top: 10%;
  right: 0;
  width: min(74%, 420px);
  padding: 24px;
  border: 1px solid var(--surface-border);
  border-radius: 34px;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  z-index: 2;
}

.hero-card__header,
.hero-card__footer {
  display: flex;
  align-items: center;
  gap: 14px;
}

.hero-card__footer {
  flex-direction: column;
  align-items: stretch;
}

.hero-card__footer .button--wide {
  width: 100%;
  min-width: 0;
}

.hero-card__header {
  margin-bottom: 14px;
  color: var(--text-soft);
  font-size: 0.9rem;
  font-weight: 700;
}

.status-pill,
.mascot-panel__badge,
.plan-badge {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 12px;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.status-pill {
  background: rgba(17, 199, 215, 0.12);
  color: #069bb3;
}

.hero-card h2 {
  margin: 0 0 16px;
  font-size: 1.8rem;
  line-height: 0.98;
  letter-spacing: -0.07em;
}

.hero-card__groups {
  display: grid;
  gap: 12px;
  margin-bottom: 18px;
}

.hero-card__group {
  display: grid;
  gap: 8px;
}

.hero-card__label {
  color: var(--text-faint);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero-flags {
  display: grid;
  grid-template-columns: repeat(5, 28px);
  justify-content: start;
  gap: 6px;
}

.hero-flag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  width: 28px;
  height: 28px;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
}

.hero-flag .flag {
  width: 28px;
  height: 28px;
  border-radius: 8px;
  box-shadow: none;
}

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

.hero-platforms--single {
  grid-template-columns: 1fr;
}

.hero-platform {
  display: flex;
  align-items: center;
  gap: 7px;
  min-height: 38px;
  padding: 8px 10px;
  border: 1px solid rgba(22, 120, 255, 0.08);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.88);
  color: var(--text);
}

.hero-platform svg {
  width: 17px;
  height: 17px;
  flex-shrink: 0;
  color: var(--primary-deep);
}

.hero-platform:last-child svg {
  width: 17px;
  height: 17px;
}

.hero-platform em {
  font-style: normal;
  color: var(--text-soft);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  line-height: 1.15;
}

.hero-platform--wide em {
  font-size: 0.76rem;
}

.config-list {
  display: grid;
  gap: 10px;
  margin-bottom: 18px;
}

.hero-card__group .config-list {
  margin-bottom: 0;
}

.config-item {
  display: grid;
  gap: 5px;
  padding: 14px 16px;
  border: 1px solid rgba(22, 120, 255, 0.08);
  border-radius: 20px;
  background: var(--bg-soft);
}

.config-item strong {
  font-size: 1rem;
}

.config-item span {
  font-size: 0.88rem;
  line-height: 1.45;
}

.hero-card__meta {
  display: grid;
  gap: 4px;
}

.hero-card__meta span {
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero-card__meta strong {
  font-size: 1rem;
  line-height: 1.35;
}

.mascot-panel,
.hero-image-shell {
  position: absolute;
  left: 0;
  bottom: 0;
  width: min(72%, 400px);
  padding: 18px 20px;
  border: 1px solid rgba(22, 120, 255, 0.08);
  border-radius: var(--radius-xl);
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.84), rgba(234, 243, 255, 0.66));
  z-index: 1;
}

.mascot-panel__badge {
  margin-bottom: 8px;
  background: rgba(255, 255, 255, 0.82);
  color: var(--primary-deep);
}

.flag {
  display: inline-flex;
  flex: 0 0 34px;
  width: 34px;
  height: 24px;
  border-radius: 8px;
  box-shadow: inset 0 0 0 1px rgba(16, 33, 61, 0.08);
}

.flag--de {
  background: linear-gradient(180deg, #151515 0 33.33%, #d22b2b 33.33% 66.66%, #f2c64d 66.66% 100%);
}

.flag--lv {
  background: linear-gradient(180deg, #8c2035 0 40%, #ffffff 40% 60%, #8c2035 60% 100%);
}

.flag--se {
  background:
    linear-gradient(90deg, transparent 0 28%, #f3cb2d 28% 40%, transparent 40% 100%),
    linear-gradient(180deg, transparent 0 42%, #f3cb2d 42% 58%, transparent 58% 100%),
    #1666b0;
}

.flag--fi {
  background:
    linear-gradient(90deg, transparent 0 26%, #0b4ea2 26% 40%, transparent 40% 100%),
    linear-gradient(180deg, transparent 0 42%, #0b4ea2 42% 58%, transparent 58% 100%),
    #ffffff;
}

.flag--pl {
  background: linear-gradient(180deg, #ffffff 0 50%, #d4213d 50% 100%);
}

.flag--no {
  background:
    linear-gradient(90deg, transparent 0 24%, #ffffff 24% 38%, transparent 38% 100%),
    linear-gradient(180deg, transparent 0 38%, #ffffff 38% 58%, transparent 58% 100%),
    linear-gradient(90deg, transparent 0 27%, #1f4b99 27% 35%, transparent 35% 100%),
    linear-gradient(180deg, transparent 0 41%, #1f4b99 41% 55%, transparent 55% 100%),
    #ba2030;
}

.flag--kz {
  background:
    radial-gradient(circle at 70% 50%, #f7d34a 0 12%, transparent 13%),
    #59c6d6;
}

.flag--jp {
  background:
    radial-gradient(circle at center, #d92b41 0 30%, transparent 31%),
    #ffffff;
}

.flag--us {
  background:
    linear-gradient(180deg, #b22234 0 14%, #ffffff 14% 28%, #b22234 28% 42%, #ffffff 42% 56%, #b22234 56% 70%, #ffffff 70% 84%, #b22234 84% 100%);
  position: relative;
}

.flag--us::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 44%;
  height: 52%;
  border-radius: 8px 0 6px 0;
  background: #3c3b6e;
}

.flag--ru {
  background: linear-gradient(180deg, #ffffff 0 33.33%, #1c57b7 33.33% 66.66%, #c93030 66.66% 100%);
}

.hero-image {
  width: 100%;
  filter: drop-shadow(0 18px 28px rgba(15, 48, 99, 0.16));
}

.section-head {
  max-width: 760px;
  margin-bottom: 28px;
}

.section-label {
  margin-bottom: 14px;
}

.section-title,
.pricing-group__title,
.cta-panel h2 {
  margin: 0 0 12px;
  font-size: clamp(2rem, 4.6vw, 3.5rem);
  line-height: 0.96;
  letter-spacing: -0.07em;
}

.section-text,
.pricing-group__lead,
.cta-panel p {
  margin: 0;
  font-size: 1rem;
  line-height: 1.72;
}

.features-grid,
.locations-grid,
.plans-grid,
.faq-grid,
.footer-columns {
  display: grid;
  gap: 20px;
}

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

.feature-card,
.faq-card,
.location-card,
.plan-card {
  border: 1px solid var(--surface-border);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.88);
}

.feature {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 26px;
  text-align: left;
  transition: transform 0.2s ease, border-color 0.2s ease, background-color 0.2s ease;
}

.feature:hover {
  transform: translateY(-2px);
  border-color: rgba(22, 120, 255, 0.18);
  background: rgba(255, 255, 255, 0.96);
}

.feature-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  margin-bottom: 16px;
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(22, 120, 255, 0.14), rgba(17, 199, 215, 0.22));
  color: var(--primary-deep);
}

.feature-icon svg {
  width: 24px;
  height: 24px;
}

.feature h3 {
  margin: 0 0 10px;
  font-size: 1.5rem;
  line-height: 1;
  letter-spacing: -0.05em;
}

.feature p {
  margin: 0;
  font-size: 0.96rem;
  line-height: 1.64;
}

.locations-shell,
.pricing-shell,
.site-footer {
  padding: 30px;
  border-radius: var(--radius-xl);
  border: 1px solid var(--surface-border);
  background: rgba(255, 255, 255, 0.72);
}

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

.location {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px;
  transition: transform 0.2s ease, border-color 0.2s ease, background-color 0.2s ease;
}

.location:hover {
  transform: translateY(-2px);
  border-color: rgba(22, 120, 255, 0.18);
  background: rgba(255, 255, 255, 0.96);
}

.loc-flag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 34px;
  height: 34px;
  padding: 0;
  border-radius: 0;
  background: transparent;
}

.loc-flag .flag {
  width: 34px;
  height: 34px;
  border-radius: 10px;
  box-shadow: none;
}

.loc-info {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.loc-name {
  font-size: 1.16rem;
  line-height: 1;
  letter-spacing: -0.04em;
}

.loc-ping {
  font-size: 0.86rem;
  font-weight: 700;
}

.loc-signal {
  display: flex;
  align-items: flex-end;
  gap: 4px;
  height: 30px;
  flex-shrink: 0;
}

.loc-signal .bar {
  width: 7px;
  border-radius: 999px;
  background: rgba(22, 120, 255, 0.18);
}

.loc-signal .bar.on {
  background: linear-gradient(180deg, var(--secondary), var(--primary));
}

.loc-signal .bar:nth-child(1) { height: 8px; }
.loc-signal .bar:nth-child(2) { height: 14px; }
.loc-signal .bar:nth-child(3) { height: 22px; }
.loc-signal .bar:nth-child(4) { height: 30px; }

.pricing-group__header {
  max-width: 720px;
  margin-bottom: 18px;
}

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

.plan-card {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  min-height: 292px;
  padding: 26px;
  text-align: left;
  transition: transform 0.2s ease, border-color 0.2s ease, background-color 0.2s ease, box-shadow 0.2s ease;
}

.plan-card:hover {
  transform: translateY(-3px);
  border-color: rgba(22, 120, 255, 0.18);
}

.plan-card.is-active {
  transform: translateY(-6px);
  border-color: rgba(22, 120, 255, 0.22);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(239, 247, 255, 0.96));
  box-shadow: 0 26px 54px rgba(22, 120, 255, 0.16);
}

.plan-badge {
  margin-bottom: 8px;
  background: var(--primary);
  color: #ffffff;
}

.plan-duration {
  margin-bottom: 8px;
  color: var(--text-soft);
  font-size: 1.22rem;
  font-weight: 700;
  letter-spacing: -0.04em;
}

.plan-price {
  margin: 0 0 6px;
  font-family: "Space Grotesk", sans-serif;
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 0.9;
  letter-spacing: -0.08em;
}

.plan-note {
  color: var(--primary-deep);
  font-size: 0.84rem;
  font-weight: 800;
}

.plan-features {
  display: grid;
  gap: 10px;
  width: 100%;
  margin-top: 18px;
}

.plan-features li {
  position: relative;
  padding-left: 20px;
  color: var(--text-soft);
  font-size: 0.93rem;
  line-height: 1.5;
}

.plan-features li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.62em;
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
}

.pay-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-top: 18px;
  padding: 16px 20px;
  border: 1px solid rgba(16, 33, 61, 0.08);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.78);
}

.pay-label {
  color: var(--text-soft);
  font-size: 0.84rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.pay-icons {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px;
}

.pay-icon,
.footer-pay-icon {
  height: 26px;
  width: auto;
  object-fit: contain;
}

.faq-grid {
  grid-template-columns: 1fr;
}

.faq-item {
  padding: 0;
  overflow: hidden;
}

.faq-q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 18px 20px;
  text-align: left;
}

.faq-q-text {
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.4;
}

.faq-arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  flex-shrink: 0;
  border-radius: 999px;
  border: 1px solid var(--surface-border);
  background: rgba(255, 255, 255, 0.84);
  transition: transform 0.2s ease, background-color 0.2s ease;
}

.faq-a {
  max-height: 0;
  overflow: hidden;
  padding: 0 20px;
  font-size: 0.95rem;
  line-height: 1.68;
  opacity: 0;
  transition: max-height 0.3s ease, opacity 0.2s ease, padding 0.3s ease;
}

.faq-item.open .faq-a,
.faq-item.is-open .faq-a {
  max-height: 240px;
  padding: 0 20px 20px;
  opacity: 1;
}

.faq-item.open .faq-arrow,
.faq-item.is-open .faq-arrow {
  transform: rotate(180deg);
  background: rgba(22, 120, 255, 0.1);
}

.section--cta {
  padding-top: 6px;
}

.cta-panel {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 36px 38px;
  overflow: hidden;
  border-radius: var(--radius-xl);
  background: linear-gradient(130deg, #112c5a 0%, #1468ee 58%, #12c8d7 100%);
  color: #ffffff;
}

.cta-panel::before {
  content: "";
  position: absolute;
  top: -150px;
  right: -110px;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
}

.cta-panel__content,
.cta-panel__actions {
  position: relative;
  z-index: 1;
}

.cta-panel__content {
  max-width: 660px;
}

.cta-panel p {
  color: rgba(255, 255, 255, 0.84);
}

.footer {
  padding-top: 18px;
}

.site-footer {
  margin-top: 0;
}

.footer-top {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 22px;
  align-items: start;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.footer-brand-logo {
  width: 88px;
}

.footer-brand-text {
  max-width: 34rem;
  font-size: 0.95rem;
  line-height: 1.7;
}

.footer-chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.footer-chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  padding: 0 14px;
  border: 1px solid var(--surface-border);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.8);
  color: var(--text-soft);
  font-size: 0.84rem;
  font-weight: 700;
  transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.footer-chip:hover {
  color: var(--text);
  background: rgba(255, 255, 255, 0.96);
  border-color: rgba(16, 33, 61, 0.16);
}

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

.footer-title {
  margin-bottom: 10px;
  color: var(--text-faint);
  font-size: 1.04rem;
  font-weight: 700;
  letter-spacing: -0.03em;
}

.footer-list {
  display: grid;
  gap: 9px;
}

.footer-list a,
.footer-list span {
  font-size: 0.92rem;
  line-height: 1.5;
}

.footer-list a:hover {
  color: var(--text);
}

.footer-divider {
  height: 1px;
  margin: 22px 0 16px;
  background: rgba(16, 33, 61, 0.08);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.footer-copy,
.footer-payments-label {
  font-size: 0.84rem;
  line-height: 1.5;
}

.footer-payments {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex-wrap: wrap;
  gap: 10px;
}

.reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.7s ease, transform 0.7s ease;
  transition-delay: var(--reveal-delay, 0ms);
}

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

@keyframes signal-float {
  0%,
  100% {
    transform: translate3d(0, 0, 0);
  }

  50% {
    transform: translate3d(16px, -10px, 0);
  }
}

@keyframes mobile-cta-float-in {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

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

@media (max-height: 860px) and (min-width: 1121px) {
  .page-shell {
    padding-top: 16px;
  }

  .site-header {
    top: 8px;
  }

  .hero {
    min-height: calc(100svh - 108px);
    align-items: start;
  }

  .hero-title {
    font-size: clamp(2.6rem, 4.8vw, 4.1rem);
    margin-bottom: 12px;
  }

  .hero-subtitle {
    margin-bottom: 18px;
  }

  .hero-actions {
    margin-bottom: 14px;
  }

  .hero__stats li {
    padding: 14px 16px;
  }

  .hero-right,
  .hero__visual {
    min-height: 510px;
  }

  .hero-card {
    top: 6%;
    width: min(72%, 390px);
    padding: 20px;
  }

  .hero-card h2 {
    font-size: 1.56rem;
  }

  .hero-image-shell {
    width: min(68%, 370px);
    padding: 18px;
  }
}

@media (max-width: 1120px) {
  .hero,
  .footer-top,
  .cta-panel {
    grid-template-columns: 1fr;
  }

  .hero {
    gap: 28px;
  }

  .hero-title {
    max-width: none;
  }

  .hero-right,
  .hero__visual {
    min-height: 560px;
  }

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

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

@media (max-width: 760px) {
  .landing {
    gap: 14px;
    padding-top: 4px;
  }

  .page-shell {
    width: min(calc(100% - 24px), 1180px);
    padding-top: 6px;
  }

  .site-header {
    position: static;
    grid-template-columns: auto 1fr auto;
    gap: 8px;
    padding: 6px 8px;
    border-radius: 22px;
    background: transparent;
    border-color: transparent;
    box-shadow: none;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
  }

  .brand {
    width: auto;
  }

  .brand__badge {
    flex: 0 0 auto;
    width: auto;
    height: auto;
  }

  .brand-logo {
    width: 62px;
    height: 42px;
    margin: 0;
  }

  .topbar-nav {
    display: none;
  }

  .topbar-nav-mobile {
    display: flex;
    align-items: center;
    gap: 12px;
  }

  .topbar-nav-mobile .nav-link {
    font-size: 0.72rem;
  }

  .header-actions {
    width: auto;
    justify-content: flex-end;
  }

  .header-ghost {
    display: none;
  }

  .topbar-cta {
    display: inline-flex;
    width: 36px;
    height: 36px;
    min-height: 36px;
    padding: 0;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
  }

  .topbar-cta-text {
    display: none;
  }

  .topbar-cta .btn-icon-svg {
    width: 18px;
    height: 18px;
  }

  body.has-floating-cta .topbar-cta {
    display: inline-flex;
    position: static;
    left: auto;
    right: auto;
    bottom: auto;
    z-index: auto;
    min-height: 38px;
    box-shadow: 0 12px 24px rgba(22, 120, 255, 0.18);
    animation: none;
  }

  .hero-section {
    min-height: calc(100svh - 80px);
    padding-top: 0;
  }

  .hero {
    display: flex;
    flex-direction: column;
    gap: 14px;
    min-height: auto;
    padding: 8px 0 24px;
  }

  .hero-left {
    display: contents;
  }

  .hero-trial {
    order: 1;
  }

  .hero-title-mobile {
    order: 2;
  }

  .hero-subtitle {
    order: 3;
  }

  .hero-right,
  .hero__visual {
    order: 4;
  }

  .hero-actions {
    order: 5;
  }

  .hero-title {
    display: none;
  }

  .hero-title-mobile {
    display: block;
    font-size: clamp(2.1rem, 9.5vw, 2.8rem);
    margin-bottom: 0;
    line-height: 0.94;
  }

  .hero-title-mobile br {
    display: none;
  }

  .hero-subtitle {
    display: block;
    font-size: 0.88rem;
    line-height: 1.5;
    margin-bottom: 0;
    color: var(--text-soft);
  }

  .hero-badges,
  .hero-actions,
  .hero-primary-cta-desktop,
  .hero-devices-mobile,
  .hero__stats,
  .hero-mobile-summary {
    display: none;
  }

  .hero-trial {
    display: inline-grid;
    margin: 0;
    min-height: 38px;
    padding: 8px 14px 8px 8px;
  }

  .hero-trial-label {
    display: none;
  }

  .hero-trial-copy {
    gap: 0;
  }

  .hero-primary-cta-mobile {
    display: inline;
  }

  .hero-actions,
  .cta-panel__actions {
    width: 100%;
  }

  .hero-actions {
    margin-bottom: 0;
  }

  .hero-actions .button--primary {
    min-height: 52px;
    font-size: 0.94rem;
  }

  .hero-actions .btn,
  .cta-panel__actions .button,
  .button--wide {
    width: 100%;
  }

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

  .feature {
    padding: 18px 14px;
  }

  .feature-icon {
    width: 44px;
    height: 44px;
    margin-bottom: 10px;
  }

  .feature h3 {
    font-size: 0.92rem;
    margin-bottom: 6px;
  }

  .feature p {
    font-size: 0.78rem;
    line-height: 1.4;
  }

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

  .location-card {
    padding: 12px 10px;
    gap: 8px;
  }

  .loc-flag {
    width: 28px;
    height: 28px;
  }

  .loc-flag .flag {
    width: 28px;
    height: 28px;
    border-radius: 8px;
  }

  .loc-name {
    font-size: 0.88rem;
  }

  .loc-ping {
    font-size: 0.72rem;
  }

  .loc-signal {
    height: 22px;
  }

  .loc-signal .bar {
    width: 5px;
  }

  .loc-signal .bar:nth-child(1) { height: 6px; }
  .loc-signal .bar:nth-child(2) { height: 10px; }
  .loc-signal .bar:nth-child(3) { height: 16px; }
  .loc-signal .bar:nth-child(4) { height: 22px; }

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

  .footer-columns {
    grid-template-columns: 1fr;
  }

  .hero-flags {
    display: flex;
    flex-wrap: nowrap;
    gap: 8px;
  }

  .hero-flag {
    width: 28px;
    height: 28px;
    flex-shrink: 0;
  }

  .hero-flag .flag {
    width: 28px;
    height: 28px;
    border-radius: 8px;
  }

  .hero-right,
  .hero__visual {
    display: block;
    position: relative;
    min-height: auto;
  }

  .hero__visual::before {
    display: none;
  }

  .signal-cluster {
    display: none;
  }

  .mascot-panel,
  .hero-image-shell {
    display: none;
  }

  .hero-card {
    position: static;
    width: 100%;
    padding: 18px;
    border-radius: 22px;
  }

  .hero-card h2 {
    display: none;
  }

  .hero-card__header {
    display: none;
  }

  .hero-card__groups {
    gap: 8px;
    margin-bottom: 0;
  }

  .hero-card__label {
    font-size: 0.6rem;
  }

  .hero-card__footer {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 12px;
    padding-top: 12px;
    border-top: 1px solid var(--surface-border);
  }

  .hero-card__footer .button--primary {
    min-height: 50px;
    font-size: 0.92rem;
    border-radius: 16px;
    width: 100%;
  }

  .hero-card__meta span {
    font-size: 0.64rem;
  }

  .hero-card__meta strong {
    font-size: 0.88rem;
    line-height: 1.35;
  }

  .hero-platforms {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 6px;
  }

  .hero-platform {
    min-height: 34px;
    padding: 6px 8px;
    border-radius: 10px;
  }

  .hero-platform em {
    font-size: 0.64rem;
  }

  .hero-platform svg {
    width: 14px;
    height: 14px;
  }

  .hero-card__footer,
  .pay-row,
  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }

  .section,
  .section--soft {
    padding: 18px 0;
  }

  .section--soft,
  .locations-shell,
  .pricing-shell,
  .cta-panel,
  .site-footer {
    padding: 16px;
    border-radius: 26px;
  }

  .section-title {
    font-size: clamp(1.6rem, 7vw, 2.2rem);
  }

  .section-text {
    font-size: 0.88rem;
  }

  .pay-icons,
  .footer-payments {
    justify-content: flex-start;
  }

  body.has-floating-cta .footer {
    padding-bottom: calc(24px + env(safe-area-inset-bottom, 0px));
  }
}

@media (max-width: 540px) {
  .landing {
    gap: 10px;
  }

  .site-header {
    padding: 6px 8px;
  }

  .topbar-cta {
    min-height: 32px;
    padding: 7px 10px;
    font-size: 0.72rem;
  }

  .hero-card h2,
  .pricing-group__title,
  .plan-price,
  .cta-panel h2 {
    font-size: 1.7rem;
  }

  .section-title {
    font-size: clamp(1.5rem, 8vw, 2rem);
  }

  .hero-title-mobile {
    font-size: clamp(1.65rem, 8vw, 2.1rem);
  }

  .hero-subtitle {
    font-size: 0.82rem;
  }

  .hero-trial {
    width: 100%;
    justify-content: center;
  }

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

  .hero-mobile-summary__item strong {
    font-size: 0.78rem;
  }

  .hero-mobile-summary__item span {
    font-size: 0.58rem;
  }

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

  .feature {
    padding: 14px 12px;
  }

  .feature-icon {
    width: 38px;
    height: 38px;
  }

  .feature h3 {
    font-size: 0.84rem;
  }

  .feature p {
    font-size: 0.74rem;
  }

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

  .plans-grid {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .feature,
  .plan-card,
  .location,
  .hero-card,
  .mascot-panel,
  .locations-shell,
  .pricing-shell,
  .site-footer,
  .cta-panel {
    padding-left: 14px;
    padding-right: 14px;
  }

  .faq-q {
    align-items: flex-start;
  }
}

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

  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}
