:root {
  --bg: #080a18;
  --bg-deep: #050611;
  --surface: #101429;
  --surface-2: #151a34;
  --surface-3: #1b2140;
  --surface-light: #f5f6ff;
  --text: #f7f8ff;
  --muted: #9da6c9;
  --muted-2: #687297;
  --line: rgba(197, 209, 255, .12);
  --line-strong: rgba(197, 209, 255, .22);
  --cyan: #55eadc;
  --cyan-2: #26bfd6;
  --blue: #7181ff;
  --blue-2: #4e5ce8;
  --pink: #ff5d9e;
  --pink-2: #ff7b67;
  --yellow: #ffd36a;
  --white: #ffffff;
  --black: #080a18;
  --shadow: 0 35px 100px rgba(0, 0, 0, .42);
  --shadow-soft: 0 24px 70px rgba(0, 0, 0, .26);
  --radius-sm: 14px;
  --radius-md: 23px;
  --radius-lg: 38px;
  --container: 1200px;
  --header-height: 82px;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 24px);
}

html.dialog-open {
  overflow: hidden;
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  color: var(--text);
  background:
    radial-gradient(circle at 86% 0%, rgba(93, 112, 255, .13), transparent 30rem),
    radial-gradient(circle at 0% 32%, rgba(255, 93, 158, .08), transparent 32rem),
    var(--bg);
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  font-size: 16px;
  line-height: 1.62;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  opacity: .22;
  background-image:
    linear-gradient(rgba(255, 255, 255, .016) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, .016) 1px, transparent 1px);
  background-size: 86px 86px;
  mask-image: linear-gradient(to bottom, #000, transparent 85%);
}

img,
svg {
  display: block;
  max-width: 100%;
}

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

button,
input,
select,
textarea {
  font: inherit;
}

button {
  color: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

h1,
h2,
h3,
p,
figure,
blockquote {
  margin-top: 0;
}

h1,
h2,
h3 {
  text-wrap: balance;
}

p {
  text-wrap: pretty;
}

code {
  padding: 2px 6px;
  color: #dce5ff;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: rgba(255, 255, 255, .035);
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: .9em;
}

::selection {
  color: #080a18;
  background: var(--cyan);
}

:focus-visible {
  outline: 3px solid rgba(85, 234, 220, .82);
  outline-offset: 4px;
}

.container {
  width: min(calc(100% - 40px), var(--container));
  margin-inline: auto;
}

.section {
  position: relative;
  padding: 118px 0;
}

.sr-only {
  position: absolute !important;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 10000;
  padding: 10px 14px;
  color: var(--black);
  background: var(--cyan);
  border-radius: 10px;
  transform: translateY(-160%);
  transition: transform .2s ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 1000;
  height: var(--header-height);
  border-bottom: 1px solid transparent;
  transition: background .25s ease, border-color .25s ease, box-shadow .25s ease;
}

.site-header.is-scrolled {
  background: rgba(8, 10, 24, .82);
  border-color: var(--line);
  box-shadow: 0 14px 50px rgba(0, 0, 0, .22);
  backdrop-filter: blur(22px) saturate(145%);
}

.header-inner {
  height: 100%;
  display: flex;
  align-items: center;
  gap: 28px;
}

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

.brand img {
  flex: 0 0 auto;
  border-radius: 13px;
  filter: drop-shadow(0 12px 22px rgba(85, 234, 220, .12));
}

.brand-copy {
  display: flex;
  flex-direction: column;
  line-height: 1.05;
}

.brand-copy strong {
  font-size: 19px;
  font-weight: 950;
  letter-spacing: -.045em;
}

.brand-copy small {
  margin-top: 4px;
  color: #8791b5;
  font-size: 9px;
  font-weight: 750;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
  margin-inline: auto;
}

.site-nav a {
  position: relative;
  color: #b4bddc;
  font-size: 14px;
  font-weight: 650;
  transition: color .2s ease;
}

.site-nav a::after {
  content: "";
  position: absolute;
  inset: auto 0 -9px;
  height: 2px;
  border-radius: 2px;
  background: linear-gradient(90deg, var(--cyan), var(--blue));
  transform: scaleX(0);
  transform-origin: right;
  transition: transform .2s ease;
}

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

.site-nav a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 13px;
  background: rgba(255, 255, 255, .035);
  cursor: pointer;
}

.nav-toggle span:not(.sr-only) {
  display: block;
  width: 19px;
  height: 2px;
  margin: 4px auto;
  border-radius: 2px;
  background: var(--white);
  transition: transform .2s ease, opacity .2s ease;
}

.nav-toggle[aria-expanded="true"] span:nth-of-type(2) {
  transform: translateY(6px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] span:nth-of-type(3) {
  opacity: 0;
}

.nav-toggle[aria-expanded="true"] span:nth-of-type(4) {
  transform: translateY(-6px) rotate(-45deg);
}

.button {
  position: relative;
  isolation: isolate;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 52px;
  padding: 0 22px;
  overflow: hidden;
  border: 1px solid transparent;
  border-radius: 15px;
  font-weight: 850;
  line-height: 1.1;
  cursor: pointer;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease, background .2s ease;
}

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

.button svg {
  width: 20px;
  height: 20px;
  flex: 0 0 auto;
  fill: currentColor;
}

.button-small {
  min-height: 44px;
  padding-inline: 17px;
  border-radius: 13px;
  font-size: 13px;
}

.button-large {
  min-height: 60px;
  padding-inline: 25px;
  border-radius: 17px;
}

.button-hot {
  color: #fff;
  background: linear-gradient(135deg, var(--pink), #ff6c88 48%, var(--pink-2));
  box-shadow: 0 16px 40px rgba(255, 93, 158, .22), inset 0 1px rgba(255, 255, 255, .35);
}

.button-hot:hover {
  box-shadow: 0 20px 50px rgba(255, 93, 158, .34), inset 0 1px rgba(255, 255, 255, .35);
}

.button-cool {
  color: #07131a;
  background: linear-gradient(135deg, var(--cyan), #73e7ff 52%, var(--blue));
  box-shadow: 0 16px 40px rgba(85, 234, 220, .16), inset 0 1px rgba(255, 255, 255, .45);
}

.button-cool:hover {
  box-shadow: 0 20px 50px rgba(85, 234, 220, .27), inset 0 1px rgba(255, 255, 255, .45);
}

.button-dark {
  color: #fff;
  background: #0b0d1d;
  box-shadow: 0 18px 50px rgba(0, 0, 0, .22);
}

.button-dark:hover {
  background: #14172b;
}

.button-white {
  color: #0b0d1d;
  background: rgba(255, 255, 255, .9);
  border-color: rgba(255, 255, 255, .7);
}

.button-white:hover {
  background: #fff;
}

.button-arrow {
  font-size: 18px;
  line-height: 1;
}

.button-glow {
  position: absolute;
  inset: 0 auto 0 -75%;
  z-index: -1;
  width: 48%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, .34), transparent);
  transform: skewX(-20deg);
  animation: button-glow 4.8s ease-in-out infinite;
}

@keyframes button-glow {
  0%, 68% { left: -75%; }
  90%, 100% { left: 135%; }
}

.text-link,
.text-button {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  width: fit-content;
  padding: 0;
  color: var(--cyan);
  border: 0;
  background: transparent;
  font-weight: 850;
  cursor: pointer;
}

.mini-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 14px;
  color: #b5c1e8;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: rgba(255, 255, 255, .025);
  font-size: 11px;
  font-weight: 850;
  transition: border-color .2s ease, color .2s ease, background .2s ease;
}

.mini-link:hover {
  color: #fff;
  border-color: rgba(85, 234, 220, .35);
  background: rgba(85, 234, 220, .06);
}

.mini-link.prominent {
  color: #dce3ff;
  background: rgba(113, 129, 255, .08);
  border-color: rgba(113, 129, 255, .22);
}

.hero {
  position: relative;
  min-height: 950px;
  padding: 160px 0 42px;
  overflow: clip;
}

.hero-mesh {
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: .32;
  background-image:
    linear-gradient(rgba(113, 129, 255, .07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(113, 129, 255, .07) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: radial-gradient(circle at 68% 38%, #000, transparent 65%);
}

.hero-starfield {
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: .7;
  background-image:
    radial-gradient(circle at 15% 18%, rgba(255,255,255,.65) 0 1px, transparent 1.5px),
    radial-gradient(circle at 42% 12%, rgba(85,234,220,.8) 0 1px, transparent 1.5px),
    radial-gradient(circle at 72% 18%, rgba(255,255,255,.48) 0 1px, transparent 1.5px),
    radial-gradient(circle at 88% 34%, rgba(255,93,158,.68) 0 1px, transparent 1.5px),
    radial-gradient(circle at 8% 64%, rgba(113,129,255,.62) 0 1px, transparent 1.5px),
    radial-gradient(circle at 61% 73%, rgba(255,255,255,.45) 0 1px, transparent 1.5px),
    radial-gradient(circle at 94% 76%, rgba(85,234,220,.62) 0 1px, transparent 1.5px);
}

.hero-light {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(34px);
}

.hero-light-one {
  top: 25px;
  right: -180px;
  width: 700px;
  aspect-ratio: 1;
  background: radial-gradient(circle, rgba(97, 115, 255, .24), transparent 66%);
}

.hero-light-two {
  bottom: 0;
  left: -270px;
  width: 620px;
  aspect-ratio: 1;
  background: radial-gradient(circle, rgba(255, 93, 158, .12), transparent 70%);
}

.hero-layout {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1.03fr) minmax(440px, .97fr);
  align-items: center;
  gap: 64px;
}

.hero-copy {
  max-width: 720px;
}

.eyebrow,
.section-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 24px;
  color: #bec8eb;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .15em;
  text-transform: uppercase;
}

.eyebrow {
  padding: 9px 13px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, .035);
}

.section-label {
  color: var(--cyan);
}

.section-label::before {
  content: "";
  width: 26px;
  height: 1px;
  background: currentColor;
}

.light-label {
  color: #1d2349;
}

.live-dot {
  position: relative;
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 0 5px rgba(85, 234, 220, .08), 0 0 16px rgba(85, 234, 220, .8);
}

.live-dot::after {
  content: "";
  position: absolute;
  inset: -5px;
  border: 1px solid rgba(85, 234, 220, .7);
  border-radius: inherit;
  animation: live-pulse 2s ease-out infinite;
}

@keyframes live-pulse {
  to { opacity: 0; transform: scale(2); }
}

.hero h1 {
  margin-bottom: 28px;
  font-size: clamp(55px, 6.05vw, 91px);
  line-height: .98;
  letter-spacing: -.074em;
}

.hero h1 > span {
  color: transparent;
  background: linear-gradient(100deg, #fff 0%, var(--cyan) 30%, #94a0ff 66%, #ff7fb2 105%);
  background-size: 200% 100%;
  background-clip: text;
  -webkit-background-clip: text;
  animation: title-shift 8s linear infinite;
}

@keyframes title-shift {
  to { background-position: -200% 0; }
}

.hero-lead {
  max-width: 670px;
  margin-bottom: 34px;
  color: #adb7d8;
  font-size: clamp(18px, 1.8vw, 21px);
  line-height: 1.67;
}

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

.hero-facts {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  max-width: 680px;
  margin-top: 45px;
  padding-top: 28px;
  border-top: 1px solid var(--line);
}

.hero-facts strong,
.hero-facts span {
  display: block;
}

.hero-facts strong {
  margin-bottom: 5px;
  font-size: 18px;
  letter-spacing: -.03em;
}

.hero-facts span {
  max-width: 130px;
  color: #717b9e;
  font-size: 10px;
  font-weight: 700;
  line-height: 1.4;
}

.hero-note {
  margin: 19px 0 0;
  color: #6e789b;
  font-size: 11px;
}

.hero-visual {
  position: relative;
  min-height: 680px;
  perspective: 1400px;
}

.orbit {
  position: absolute;
  top: 49%;
  left: 50%;
  border: 1px solid rgba(85, 234, 220, .12);
  border-radius: 50%;
  transform: translate(-50%, -50%) rotateX(67deg);
}

.orbit-a {
  width: 620px;
  height: 620px;
  animation: orbit-clockwise 22s linear infinite;
}

.orbit-b {
  width: 480px;
  height: 480px;
  border-style: dashed;
  animation: orbit-counter 18s linear infinite;
}

.orbit-c {
  width: 330px;
  height: 330px;
  border-color: rgba(255, 93, 158, .12);
  animation: orbit-clockwise 13s linear infinite;
}

@keyframes orbit-clockwise {
  to { transform: translate(-50%, -50%) rotateX(67deg) rotateZ(360deg); }
}

@keyframes orbit-counter {
  to { transform: translate(-50%, -50%) rotateX(67deg) rotateZ(-360deg); }
}

.device-desktop {
  position: absolute;
  top: 75px;
  right: -64px;
  width: 510px;
  z-index: 1;
  transform: rotateY(-8deg) rotateX(3deg);
  transform-style: preserve-3d;
}

.desktop-shell {
  overflow: hidden;
  border: 1px solid rgba(216, 224, 255, .18);
  border-radius: 25px 25px 15px 15px;
  background: linear-gradient(145deg, #1a2140, #090c1c 55%, #131a35);
  box-shadow: 0 55px 110px rgba(0, 0, 0, .5), inset 0 1px rgba(255, 255, 255, .06);
}

.desktop-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 44px;
  padding: 0 15px;
  border-bottom: 1px solid rgba(255, 255, 255, .06);
  background: rgba(255, 255, 255, .02);
}

.desktop-logo {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #b9c4e7;
  font-size: 9px;
  font-weight: 850;
}

.desktop-controls {
  display: flex;
  gap: 7px;
}

.desktop-controls i {
  display: block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #3d4666;
}

.desktop-workspace {
  display: grid;
  grid-template-columns: 60px 1fr;
  height: 350px;
}

.desktop-workspace aside {
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 19px;
  padding-top: 19px;
  border-right: 1px solid rgba(255, 255, 255, .055);
}

.desktop-workspace aside b {
  display: grid;
  width: 30px;
  height: 30px;
  place-items: center;
  margin-bottom: 7px;
  color: #08121a;
  border-radius: 9px;
  background: linear-gradient(135deg, var(--cyan), var(--blue));
  font-size: 9px;
  font-weight: 950;
}

.desktop-workspace aside i {
  width: 17px;
  height: 17px;
  border: 1px solid #424c6e;
  border-radius: 5px;
}

.desktop-workspace aside i.active {
  border-color: var(--cyan);
  background: rgba(85, 234, 220, .13);
}

.desktop-main {
  padding: 24px 24px 18px;
}

.desktop-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.desktop-heading small,
.desktop-heading strong {
  display: block;
}

.desktop-heading small {
  color: #657095;
  font-size: 7px;
}

.desktop-heading strong {
  margin-top: 2px;
  font-size: 12px;
}

.desktop-heading > span {
  padding: 5px 8px;
  color: #85f5e8;
  border: 1px solid rgba(85, 234, 220, .16);
  border-radius: 999px;
  background: rgba(85, 234, 220, .07);
  font-size: 7px;
  font-weight: 850;
}

.desktop-connect {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-top: 24px;
  padding: 18px;
  border: 1px solid rgba(85, 234, 220, .15);
  border-radius: 17px;
  background: linear-gradient(135deg, rgba(85, 234, 220, .065), rgba(113, 129, 255, .045));
}

.pulse-button {
  display: grid;
  width: 66px;
  height: 66px;
  flex: 0 0 auto;
  place-items: center;
  border: 1px solid rgba(143, 255, 245, .52);
  border-radius: 50%;
  background: radial-gradient(circle at 35% 28%, #9bfff4, #4adfd6 54%, #586cf0);
  box-shadow: 0 0 0 11px rgba(85, 234, 220, .04), 0 0 40px rgba(85, 234, 220, .18);
}

.pulse-button svg {
  width: 23px;
  fill: #0c2230;
}

.desktop-connect small,
.desktop-connect strong,
.desktop-connect span {
  display: block;
}

.desktop-connect small {
  color: #657095;
  font-size: 7px;
}

.desktop-connect strong {
  margin: 2px 0;
  font-size: 14px;
}

.desktop-connect span {
  color: #818bad;
  font-size: 8px;
}

.desktop-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin-top: 12px;
}

.desktop-stats div {
  padding: 11px;
  border: 1px solid rgba(255, 255, 255, .05);
  border-radius: 11px;
  background: rgba(255, 255, 255, .022);
}

.desktop-stats small,
.desktop-stats strong,
.desktop-stats span {
  display: block;
}

.desktop-stats small {
  color: #5f698c;
  font-size: 6px;
}

.desktop-stats strong {
  margin-top: 4px;
  font-size: 12px;
}

.desktop-stats span {
  color: #6f789a;
  font-size: 6px;
}

.desktop-graph {
  display: flex;
  align-items: flex-end;
  gap: 5px;
  height: 55px;
  margin-top: 14px;
  padding: 8px 4px 0;
  border-top: 1px solid rgba(255, 255, 255, .05);
}

.desktop-graph span {
  flex: 1;
  min-height: 4px;
  border-radius: 3px 3px 0 0;
  background: linear-gradient(to top, rgba(113, 129, 255, .15), var(--cyan));
  opacity: .75;
}

.desktop-stand {
  position: relative;
  width: 150px;
  height: 45px;
  margin: 0 auto;
  background: linear-gradient(90deg, transparent, #262d4f 30%, #323a61 50%, #262d4f 70%, transparent);
  clip-path: polygon(41% 0, 59% 0, 65% 78%, 90% 87%, 93% 100%, 7% 100%, 10% 87%, 35% 78%);
}

.device-phone {
  position: absolute;
  top: 135px;
  left: 15px;
  z-index: 4;
  width: 210px;
  height: 445px;
  padding: 8px;
  border: 1px solid rgba(221, 229, 255, .24);
  border-radius: 40px;
  background: linear-gradient(145deg, #30385b, #090b14 42%, #2a3150);
  box-shadow: 0 50px 90px rgba(0, 0, 0, .5), inset 0 0 0 2px rgba(255, 255, 255, .05);
  transform: rotateY(6deg) rotateZ(-3deg);
}

.phone-notch {
  position: absolute;
  top: 17px;
  left: 50%;
  z-index: 3;
  width: 72px;
  height: 21px;
  border-radius: 18px;
  background: #05060b;
  transform: translateX(-50%);
}

.phone-screen {
  position: relative;
  height: 100%;
  overflow: hidden;
  border-radius: 33px;
  background:
    radial-gradient(circle at 50% 23%, rgba(85, 234, 220, .15), transparent 150px),
    linear-gradient(180deg, #0c1022, #080a15 70%, #10142a);
}

.phone-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 43px 18px 0;
}

.phone-top b {
  color: var(--cyan);
  font-size: 11px;
  letter-spacing: -.04em;
}

.phone-top span {
  color: #667092;
  font-size: 8px;
}

.phone-power {
  position: relative;
  display: grid;
  width: 122px;
  height: 122px;
  place-items: center;
  margin: 34px auto 18px;
}

.phone-ring {
  position: absolute;
  inset: 0;
  border: 1px solid rgba(85, 234, 220, .17);
  border-radius: 50%;
  animation: phone-ring 3s ease-out infinite;
}

@keyframes phone-ring {
  0% { opacity: .5; transform: scale(.78); }
  100% { opacity: 0; transform: scale(1.18); }
}

.phone-core {
  display: grid;
  width: 78px;
  height: 78px;
  place-items: center;
  border: 1px solid rgba(155, 255, 245, .5);
  border-radius: 50%;
  background: radial-gradient(circle at 35% 25%, #9dfff6, #4de1da 55%, #6073ff);
  box-shadow: 0 0 0 12px rgba(85, 234, 220, .045), 0 0 45px rgba(85, 234, 220, .23);
}

.phone-core svg {
  width: 28px;
  fill: #0c2430;
}

.phone-status,
.phone-substatus {
  display: block;
  text-align: center;
}

.phone-status {
  font-size: 13px;
}

.phone-substatus {
  color: #667092;
  font-size: 7px;
}

.phone-location {
  display: grid;
  grid-template-columns: 34px 1fr auto;
  align-items: center;
  gap: 10px;
  margin: 27px 13px 0;
  padding: 11px;
  border: 1px solid rgba(113, 129, 255, .14);
  border-radius: 13px;
  background: rgba(113, 129, 255, .055);
}

.phone-location > b {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  color: #cdd6ff;
  border-radius: 10px;
  background: #1a2142;
  font-size: 8px;
}

.phone-location span strong,
.phone-location span small {
  display: block;
}

.phone-location span strong {
  font-size: 9px;
}

.phone-location span small {
  color: #646e91;
  font-size: 6px;
}

.phone-location i {
  color: #737da0;
  font-style: normal;
}

.phone-nav {
  position: absolute;
  inset: auto 12px 12px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  padding: 12px 20px;
  border: 1px solid rgba(255, 255, 255, .05);
  border-radius: 14px;
  background: rgba(17, 21, 42, .92);
}

.phone-nav span {
  height: 12px;
  border: 1px solid #566083;
  border-radius: 4px;
}

.phone-nav span.active {
  border-color: var(--cyan);
  background: rgba(85, 234, 220, .12);
}

.device-tv {
  position: absolute;
  right: -25px;
  bottom: 52px;
  z-index: 5;
  width: 235px;
}

.tv-screen {
  display: grid;
  grid-template-columns: 42px 1fr 26px;
  align-items: center;
  gap: 12px;
  padding: 18px;
  border: 1px solid rgba(217, 225, 255, .18);
  border-radius: 16px;
  background: linear-gradient(145deg, rgba(30, 38, 72, .96), rgba(10, 12, 26, .96));
  box-shadow: 0 28px 70px rgba(0, 0, 0, .4), inset 0 1px rgba(255, 255, 255, .05);
  backdrop-filter: blur(16px);
}

.tv-screen b,
.tv-screen small {
  display: block;
}

.tv-screen b {
  font-size: 10px;
}

.tv-screen small {
  color: #6d7699;
  font-size: 7px;
}

.tv-screen > span {
  display: grid;
  width: 25px;
  height: 25px;
  place-items: center;
  color: #08121a;
  border-radius: 50%;
  background: var(--cyan);
  font-size: 8px;
}

.tv-stand {
  width: 65px;
  height: 13px;
  margin: 0 auto;
  border-bottom: 3px solid #30395c;
}

.floating-platform {
  position: absolute;
  z-index: 6;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 13px;
  color: #dfe5ff;
  border: 1px solid rgba(212, 222, 255, .15);
  border-radius: 12px;
  background: rgba(16, 20, 41, .86);
  box-shadow: 0 20px 55px rgba(0, 0, 0, .3);
  font-size: 9px;
  font-weight: 850;
  backdrop-filter: blur(15px);
  animation: float-platform 5s ease-in-out infinite;
}

.floating-platform span {
  display: grid;
  width: 23px;
  height: 23px;
  place-items: center;
  color: #08121a;
  border-radius: 7px;
  background: linear-gradient(135deg, var(--cyan), var(--blue));
  font-size: 10px;
}

.float-android {
  top: 42px;
  left: -7px;
}

.float-windows {
  top: 18px;
  right: 13px;
  animation-delay: .8s;
}

.float-apple {
  left: 5px;
  bottom: 48px;
  animation-delay: 1.6s;
}

@keyframes float-platform {
  50% { transform: translateY(-9px); }
}

.platform-line {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 21px;
  margin-top: 28px;
  padding: 21px 25px;
  color: #6e789d;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255, 255, 255, .018);
  font-size: 11px;
  font-weight: 850;
  letter-spacing: .04em;
}

.platform-line i {
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: #404968;
}

.section-heading h2 {
  margin-bottom: 22px;
  font-size: clamp(42px, 5vw, 70px);
  line-height: 1.04;
  letter-spacing: -.06em;
}

.section-heading > p {
  max-width: 650px;
  margin-bottom: 0;
  color: var(--muted);
  font-size: 18px;
}

.section-heading.centered {
  max-width: 850px;
  margin: 0 auto 60px;
  text-align: center;
}

.section-heading.centered .section-label {
  justify-content: center;
}

.split-heading {
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  align-items: end;
  gap: 90px;
  margin-bottom: 55px;
}

.split-heading p {
  padding-bottom: 8px;
}

.query-text {
  color: transparent;
  background: linear-gradient(100deg, var(--cyan), #86a0ff 65%, var(--pink));
  background-clip: text;
  -webkit-background-clip: text;
}

.search-intent-section {
  padding-top: 132px;
  background: linear-gradient(180deg, rgba(255,255,255,.012), transparent 25%);
  border-top: 1px solid rgba(255, 255, 255, .04);
}

.download-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 17px;
}

.download-card {
  position: relative;
  grid-column: span 4;
  min-height: 390px;
  padding: 30px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, .035), transparent 45%),
    var(--surface);
  box-shadow: inset 0 1px rgba(255, 255, 255, .025);
  transition: transform .25s ease, border-color .25s ease, background .25s ease;
}

.download-card:hover {
  border-color: rgba(85, 234, 220, .24);
  transform: translateY(-5px);
}

.download-card::after {
  content: "";
  position: absolute;
  right: -95px;
  bottom: -125px;
  width: 240px;
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(113, 129, 255, .1), transparent 68%);
  pointer-events: none;
}

.download-card-windows {
  grid-column: span 8;
  min-height: 420px;
  background:
    radial-gradient(circle at 85% 20%, rgba(85, 234, 220, .12), transparent 35%),
    radial-gradient(circle at 60% 100%, rgba(113, 129, 255, .1), transparent 40%),
    #11162d;
}

.download-card-android {
  background:
    radial-gradient(circle at 85% 10%, rgba(85, 234, 220, .1), transparent 40%),
    #0e1727;
}

.download-card-subscription {
  color: #17172c;
  border-color: rgba(255, 255, 255, .3);
  background:
    radial-gradient(circle at 85% 12%, rgba(255, 255, 255, .32), transparent 32%),
    linear-gradient(135deg, #ff79b2, #ff8073 48%, #ffd36a);
  box-shadow: 0 30px 70px rgba(255, 93, 158, .12), inset 0 1px rgba(255, 255, 255, .48);
}

.download-card-subscription::after {
  background: radial-gradient(circle, rgba(40, 23, 75, .13), transparent 68%);
}

.download-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
  margin-bottom: 34px;
}

.platform-symbol {
  display: grid;
  width: 58px;
  height: 58px;
  place-items: center;
  color: var(--cyan);
  border: 1px solid rgba(85, 234, 220, .17);
  border-radius: 17px;
  background: rgba(85, 234, 220, .065);
  font-size: 20px;
  font-weight: 950;
}

.windows-symbol {
  grid-template-columns: repeat(2, 14px);
  grid-template-rows: repeat(2, 14px);
  gap: 3px;
}

.windows-symbol i {
  display: block;
  background: currentColor;
}

.telegram-symbol svg {
  width: 25px;
  fill: currentColor;
}

.download-card-subscription .platform-symbol {
  color: #fff;
  border-color: rgba(255,255,255,.32);
  background: rgba(20, 17, 43, .17);
}

.recommended-label {
  padding: 7px 9px;
  color: #7f8bad;
  border: 1px solid rgba(255, 255, 255, .07);
  border-radius: 999px;
  background: rgba(255, 255, 255, .024);
  font-size: 8px;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.download-card-subscription .recommended-label {
  color: rgba(21, 18, 46, .73);
  border-color: rgba(24, 20, 48, .14);
  background: rgba(255,255,255,.22);
}

.download-card h3 {
  margin-bottom: 14px;
  font-size: 27px;
  line-height: 1.1;
  letter-spacing: -.045em;
}

.download-card p {
  margin-bottom: 0;
  color: #909abf;
  line-height: 1.72;
}

.download-card p strong {
  color: #dfe6ff;
}

.download-card-subscription p {
  color: rgba(25, 22, 53, .73);
}

.download-card-subscription p strong {
  color: #18152f;
}

.download-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-top: 24px;
}

.download-meta span {
  padding: 6px 9px;
  color: #7f8aae;
  border: 1px solid rgba(255, 255, 255, .07);
  border-radius: 999px;
  background: rgba(255, 255, 255, .024);
  font-size: 8px;
  font-weight: 850;
}

.download-card-subscription .download-meta span {
  color: rgba(24, 20, 50, .75);
  border-color: rgba(24, 20, 50, .12);
  background: rgba(255,255,255,.18);
}

.download-actions {
  position: absolute;
  right: 30px;
  bottom: 28px;
  left: 30px;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 10px;
}

.download-actions .button {
  min-height: 48px;
}

.dual-links {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
}

.download-card.is-recommended {
  border-color: rgba(85, 234, 220, .46);
  box-shadow: inset 4px 0 var(--cyan), 0 25px 70px rgba(44, 197, 201, .08);
}

.download-note {
  max-width: 760px;
  margin: 25px auto 0;
  color: #687297;
  font-size: 11px;
  text-align: center;
}

.features-section {
  overflow: hidden;
  background: #090c1c;
  border-block: 1px solid rgba(255, 255, 255, .04);
}

.features-glow {
  position: absolute;
  top: -250px;
  left: 50%;
  width: 900px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(113, 129, 255, .12), transparent 66%);
  transform: translateX(-50%);
  filter: blur(20px);
  pointer-events: none;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 17px;
}

.feature-card {
  position: relative;
  grid-column: span 4;
  min-height: 310px;
  padding: 30px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: linear-gradient(145deg, rgba(255,255,255,.032), transparent 50%), var(--surface);
  box-shadow: inset 0 1px rgba(255,255,255,.025);
  transition: transform .25s ease, border-color .25s ease;
}

.feature-card:hover {
  border-color: rgba(113, 129, 255, .27);
  transform: translateY(-5px);
}

.feature-card-large {
  grid-column: span 8;
  display: grid;
  grid-template-columns: 1.02fr .98fr;
  min-height: 430px;
  background:
    radial-gradient(circle at 83% 40%, rgba(85, 234, 220, .1), transparent 36%),
    linear-gradient(145deg, rgba(255,255,255,.04), transparent 50%),
    #10162e;
}

.feature-card-wide {
  grid-column: span 8;
  display: grid;
  grid-template-columns: 1fr .9fr;
  align-items: center;
}

.feature-index {
  display: block;
  margin-bottom: 38px;
  color: #596485;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: .15em;
}

.feature-card h3 {
  margin-bottom: 14px;
  font-size: 25px;
  line-height: 1.12;
  letter-spacing: -.04em;
}

.feature-card p {
  max-width: 510px;
  margin-bottom: 0;
  color: #8e98bb;
  line-height: 1.72;
}

.feature-icon {
  display: grid;
  width: 55px;
  height: 55px;
  place-items: center;
  margin-bottom: 27px;
  color: var(--cyan);
  border: 1px solid rgba(85, 234, 220, .16);
  border-radius: 16px;
  background: rgba(85, 234, 220, .065);
}

.feature-icon svg {
  width: 25px;
  height: 25px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.feature-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 25px;
}

.feature-pills span {
  padding: 7px 10px;
  color: #8994b8;
  border: 1px solid rgba(255,255,255,.07);
  border-radius: 999px;
  background: rgba(255,255,255,.024);
  font-size: 9px;
  font-weight: 850;
}

.import-visual {
  position: relative;
  display: grid;
  align-content: center;
  min-height: 340px;
  padding: 25px;
}

.link-line {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
  padding: 13px 15px;
  color: #8e9ec8;
  border: 1px solid rgba(85,234,220,.15);
  border-radius: 12px;
  background: rgba(85,234,220,.045);
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 9px;
}

.link-line i {
  display: grid;
  width: 24px;
  height: 24px;
  flex: 0 0 auto;
  place-items: center;
  color: #07131a;
  border-radius: 8px;
  background: var(--cyan);
  font-style: normal;
  font-weight: 950;
}

.qr-grid {
  display: grid;
  grid-template-columns: repeat(9, 1fr);
  gap: 3px;
  width: 150px;
  aspect-ratio: 1;
  margin: 25px auto;
  padding: 11px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255,255,255,.035);
  box-shadow: 0 24px 55px rgba(0,0,0,.28);
}

.qr-grid i {
  display: block;
  border-radius: 1px;
  background: #7181ff;
  opacity: .25;
}

.qr-grid i:nth-child(2n),
.qr-grid i:nth-child(5n),
.qr-grid i:nth-child(7n) {
  opacity: 1;
  background: var(--cyan);
}

.qr-grid i:nth-child(3n) {
  background: #fff;
  opacity: .8;
}

.import-status {
  display: flex;
  flex-direction: column;
  padding: 13px 15px;
  border: 1px solid rgba(113,129,255,.15);
  border-radius: 12px;
  background: rgba(113,129,255,.045);
}

.import-status b {
  font-size: 10px;
}

.import-status small {
  color: #687296;
  font-size: 7px;
}

.responsive-visual {
  position: relative;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 13px;
  padding-top: 25px;
}

.responsive-visual > span:not(.sync-line) {
  position: relative;
  display: block;
  border: 1px solid rgba(205, 214, 255, .22);
  background: linear-gradient(145deg, #222a50, #0a0d1b);
  box-shadow: 0 18px 45px rgba(0,0,0,.28);
}

.responsive-visual i {
  position: absolute;
  inset: 8%;
  border-radius: inherit;
  background: radial-gradient(circle at 50% 35%, rgba(85,234,220,.16), transparent 45%), #0d1224;
}

.mini-laptop {
  width: 145px;
  height: 92px;
  border-radius: 9px 9px 2px 2px;
}

.mini-laptop::after {
  content: "";
  position: absolute;
  right: -10px;
  bottom: -8px;
  left: -10px;
  height: 7px;
  border-radius: 2px 2px 8px 8px;
  background: #30395c;
}

.mini-tablet {
  width: 76px;
  height: 108px;
  border-radius: 10px;
}

.mini-phone {
  width: 43px;
  height: 88px;
  border-radius: 11px;
}

.sync-line {
  position: absolute;
  top: -7px;
  right: 22%;
  color: var(--cyan);
  font-size: 24px;
  font-weight: 900;
}

.start-section {
  background: linear-gradient(180deg, #080a18, #0b0e20);
}

.steps-wrap {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.steps-wrap::before {
  content: "";
  position: absolute;
  top: 48px;
  right: 16%;
  left: 16%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(85,234,220,.28), rgba(113,129,255,.28), transparent);
}

.step-card {
  position: relative;
  z-index: 1;
  min-height: 410px;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--surface);
}

.step-number {
  display: inline-grid;
  width: 54px;
  height: 54px;
  place-items: center;
  margin-bottom: 30px;
  color: #07131a;
  border: 6px solid var(--bg);
  border-radius: 50%;
  background: linear-gradient(135deg, var(--cyan), var(--blue));
  box-shadow: 0 0 0 1px rgba(85,234,220,.24);
  font-size: 10px;
  font-weight: 950;
}

.step-illustration {
  display: grid;
  height: 105px;
  place-items: center;
  margin-bottom: 25px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.055);
  border-radius: 16px;
  background:
    radial-gradient(circle at 50% 50%, rgba(113,129,255,.12), transparent 56%),
    rgba(255,255,255,.018);
}

.step-illustration > span {
  display: grid;
  width: 58px;
  height: 58px;
  place-items: center;
  color: var(--cyan);
  border: 1px solid rgba(85,234,220,.18);
  border-radius: 18px;
  background: rgba(85,234,220,.065);
  box-shadow: 0 0 0 14px rgba(85,234,220,.025);
}

.step-illustration svg {
  width: 26px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.step-card h3 {
  margin-bottom: 12px;
  font-size: 22px;
  letter-spacing: -.035em;
}

.step-card p {
  color: #8994b7;
  font-size: 14px;
}

.step-card .text-link,
.step-card .text-button {
  position: absolute;
  bottom: 29px;
  left: 30px;
  font-size: 12px;
}

.locations-section {
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 42%, rgba(85,234,220,.06), transparent 34rem),
    #090c1b;
  border-block: 1px solid rgba(255,255,255,.04);
}

.locations-noise {
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: .22;
  background-image:
    radial-gradient(circle at 20% 20%, rgba(255,255,255,.25) 0 1px, transparent 1.5px),
    radial-gradient(circle at 72% 35%, rgba(113,129,255,.4) 0 1px, transparent 1.5px),
    radial-gradient(circle at 44% 80%, rgba(85,234,220,.4) 0 1px, transparent 1.5px);
  background-size: 130px 130px, 170px 170px, 210px 210px;
}

.locations-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 50px;
  margin-bottom: 46px;
}

.locations-head .section-heading {
  max-width: 760px;
}

.world-panel {
  position: relative;
  overflow: hidden;
  margin-bottom: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background:
    linear-gradient(rgba(113,129,255,.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(113,129,255,.04) 1px, transparent 1px),
    rgba(255,255,255,.012);
  background-size: 44px 44px;
  box-shadow: inset 0 1px rgba(255,255,255,.03);
}

.world-map {
  width: 100%;
  height: auto;
}

.world-status {
  position: absolute;
  top: 24px;
  right: 24px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 13px;
  color: #dbe5ff;
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 999px;
  background: rgba(8,10,24,.72);
  font-size: 9px;
  font-weight: 900;
  backdrop-filter: blur(15px);
}

.country-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 12px;
}

.country-card {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 12px;
  min-width: 0;
  padding: 17px;
  border: 1px solid var(--line);
  border-radius: 17px;
  background: rgba(255,255,255,.022);
  transition: transform .2s ease, border-color .2s ease, background .2s ease;
}

.country-card:hover {
  border-color: rgba(85,234,220,.24);
  background: rgba(85,234,220,.035);
  transform: translateY(-3px);
}

.country-card > span {
  font-size: 23px;
}

.country-card h3,
.country-card p {
  margin-bottom: 0;
}

.country-card h3 {
  overflow: hidden;
  font-size: 13px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.country-card p {
  color: #687397;
  font-size: 8px;
}

.country-card em {
  color: #566184;
  font-size: 8px;
  font-style: normal;
  font-weight: 900;
}

.section-note {
  max-width: 800px;
  margin: 22px auto 0;
  color: #677195;
  font-size: 10px;
  text-align: center;
}

.seo-section {
  background: #080a18;
}

.seo-layout {
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 55px;
  align-items: stretch;
}

.seo-card,
.seo-aside {
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: linear-gradient(145deg, rgba(255,255,255,.035), transparent 55%), var(--surface);
}

.seo-card {
  padding: 55px;
}

.seo-card h2 {
  margin-bottom: 30px;
  font-size: clamp(39px, 4.2vw, 60px);
  line-height: 1.04;
  letter-spacing: -.055em;
}

.seo-copy {
  display: grid;
  gap: 19px;
}

.seo-copy p {
  margin-bottom: 0;
  color: #929cbf;
  line-height: 1.78;
}

.seo-copy strong {
  color: #dce5ff;
}

.seo-aside {
  display: grid;
  align-content: center;
  gap: 20px;
  padding: 35px;
  background:
    radial-gradient(circle at 80% 15%, rgba(85,234,220,.1), transparent 35%),
    #0d1225;
}

.search-mockup {
  overflow: hidden;
  border: 1px solid rgba(210,220,255,.13);
  border-radius: 21px;
  background: #0a0d1b;
  box-shadow: 0 30px 70px rgba(0,0,0,.32), inset 0 1px rgba(255,255,255,.04);
}

.search-top {
  display: flex;
  gap: 7px;
  height: 37px;
  align-items: center;
  padding: 0 13px;
  border-bottom: 1px solid rgba(255,255,255,.05);
  background: rgba(255,255,255,.018);
}

.search-top span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #3f486a;
}

.search-field {
  display: flex;
  align-items: center;
  height: 62px;
  margin: 19px;
  padding: 0 17px;
  border: 1px solid rgba(85,234,220,.16);
  border-radius: 15px;
  background: rgba(85,234,220,.045);
}

.search-field i {
  margin-right: 11px;
  color: var(--cyan);
  font-size: 20px;
  font-style: normal;
}

.search-field b {
  font-size: 13px;
}

.typing-cursor {
  width: 1px;
  height: 18px;
  margin-left: 2px;
  background: var(--cyan);
  animation: cursor-blink .9s steps(2) infinite;
}

@keyframes cursor-blink {
  50% { opacity: 0; }
}

.search-results {
  display: grid;
  gap: 8px;
  padding: 0 19px 19px;
}

.search-results > span {
  display: grid;
  grid-template-columns: 27px 1fr;
  gap: 9px;
  padding: 11px;
  border: 1px solid rgba(255,255,255,.05);
  border-radius: 11px;
  background: rgba(255,255,255,.018);
}

.search-results i {
  grid-row: 1 / 3;
  display: grid;
  width: 27px;
  height: 27px;
  place-items: center;
  color: #09131c;
  border-radius: 8px;
  background: linear-gradient(135deg, var(--cyan), var(--blue));
  font-size: 8px;
  font-style: normal;
  font-weight: 950;
}

.search-results b {
  font-size: 9px;
}

.search-results small {
  color: #667093;
  font-size: 7px;
}

.seo-aside .button {
  width: 100%;
}

.faq-section {
  background: #090c1b;
  border-top: 1px solid rgba(255,255,255,.04);
}

.faq-layout {
  display: grid;
  grid-template-columns: .78fr 1.22fr;
  gap: 90px;
  align-items: start;
}

.faq-layout > .section-heading {
  position: sticky;
  top: calc(var(--header-height) + 50px);
}

.faq-layout .section-heading .button {
  margin-top: 30px;
}

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

.faq-item {
  border: 1px solid var(--line);
  border-radius: 17px;
  background: rgba(255,255,255,.02);
  transition: border-color .2s ease, background .2s ease;
}

.faq-item[open] {
  border-color: rgba(85,234,220,.22);
  background: rgba(85,234,220,.032);
}

.faq-item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 23px 24px;
  list-style: none;
  font-size: 16px;
  font-weight: 800;
  cursor: pointer;
}

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

.faq-item summary span {
  position: relative;
  flex: 0 0 auto;
  width: 25px;
  height: 25px;
  border: 1px solid var(--line);
  border-radius: 50%;
}

.faq-item summary span::before,
.faq-item summary span::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 10px;
  height: 1px;
  background: #a7b2d4;
  transform: translate(-50%, -50%);
  transition: transform .2s ease;
}

.faq-item summary span::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.faq-item[open] summary span::after {
  transform: translate(-50%, -50%) rotate(0);
}

.faq-item p {
  max-width: 720px;
  padding: 0 66px 25px 24px;
  color: #8994b7;
  line-height: 1.76;
}

.final-section {
  padding: 80px 0 110px;
}

.final-card {
  position: relative;
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 60px;
  min-height: 500px;
  padding: 70px;
  overflow: hidden;
  color: #17172d;
  border-radius: 40px;
  background:
    radial-gradient(circle at 78% 0%, rgba(255,255,255,.34), transparent 36%),
    linear-gradient(135deg, #7af4e7, #7e9dff 48%, #ff87bb 100%);
  box-shadow: 0 40px 110px rgba(82, 112, 231, .16), inset 0 1px rgba(255,255,255,.58);
}

.final-card::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: .12;
  background-image:
    linear-gradient(#131731 1px, transparent 1px),
    linear-gradient(90deg, #131731 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: linear-gradient(90deg, transparent, #000);
}

.final-rings {
  position: absolute;
  top: -170px;
  right: -110px;
  width: 610px;
  aspect-ratio: 1;
  border: 1px solid rgba(15,20,48,.14);
  border-radius: 50%;
  box-shadow: 0 0 0 70px rgba(15,20,48,.035), 0 0 0 140px rgba(15,20,48,.025);
}

.final-copy,
.final-actions {
  position: relative;
  z-index: 1;
}

.final-copy h2 {
  margin-bottom: 18px;
  font-size: clamp(45px, 5.3vw, 73px);
  line-height: 1;
  letter-spacing: -.07em;
}

.final-copy p {
  max-width: 640px;
  margin-bottom: 0;
  color: rgba(20,22,49,.7);
  font-size: 17px;
}

.final-actions {
  display: flex;
  align-items: stretch;
  flex-direction: column;
  gap: 12px;
  min-width: 320px;
}

.site-footer {
  padding: 72px 0 110px;
  border-top: 1px solid var(--line);
  background: var(--bg-deep);
}

.footer-main {
  display: grid;
  grid-template-columns: 1fr 1.35fr;
  gap: 90px;
  padding-bottom: 60px;
}

.footer-brand p {
  max-width: 350px;
  margin: 22px 0 0;
  color: #6e789b;
  font-size: 13px;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.footer-links h3 {
  margin-bottom: 17px;
  color: #667093;
  font-size: 10px;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.footer-links a {
  display: block;
  width: fit-content;
  margin: 10px 0;
  color: #adb7d7;
  font-size: 12px;
  transition: color .2s ease;
}

.footer-links a:hover {
  color: var(--cyan);
}

.footer-bottom {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 50px;
  padding-top: 25px;
  color: #535d7f;
  border-top: 1px solid rgba(255,255,255,.055);
  font-size: 10px;
}

.footer-bottom p {
  max-width: 630px;
  margin-bottom: 0;
}

.mobile-cta {
  display: none;
}

.download-dialog {
  width: min(980px, calc(100% - 28px));
  max-height: min(860px, calc(100vh - 30px));
  padding: 0;
  color: var(--text);
  border: 1px solid rgba(211, 221, 255, .17);
  border-radius: 29px;
  background: #0b0f22;
  box-shadow: 0 50px 150px rgba(0,0,0,.72);
}

.download-dialog::backdrop {
  background: rgba(2,3,9,.78);
  backdrop-filter: blur(12px);
}

.dialog-inner {
  position: relative;
  max-height: inherit;
  padding: 45px;
  overflow-y: auto;
}

.dialog-close {
  position: absolute;
  top: 20px;
  right: 20px;
  z-index: 2;
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  padding: 0;
  color: #aab5d8;
  border: 1px solid var(--line);
  border-radius: 13px;
  background: rgba(255,255,255,.035);
  font-size: 26px;
  line-height: 1;
  cursor: pointer;
}

.dialog-heading {
  padding-right: 55px;
  margin-bottom: 32px;
}

.dialog-heading h2 {
  margin-bottom: 8px;
  font-size: clamp(34px, 5vw, 54px);
  line-height: 1;
  letter-spacing: -.055em;
}

.dialog-heading p {
  margin-bottom: 0;
  color: #7c86aa;
}

.dialog-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 13px;
}

.dialog-platform {
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255,255,255,.025);
}

.dialog-platform-wide {
  grid-column: 1 / -1;
}

.dialog-platform.is-recommended {
  border-color: rgba(85,234,220,.42);
  box-shadow: inset 4px 0 var(--cyan);
}

.dialog-platform-head {
  display: grid;
  grid-template-columns: 46px 1fr auto;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
}

.dialog-symbol {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  color: var(--cyan);
  border: 1px solid rgba(85,234,220,.15);
  border-radius: 13px;
  background: rgba(85,234,220,.06);
  font-size: 18px;
  font-weight: 950;
}

.dialog-platform h3,
.dialog-platform p {
  margin-bottom: 0;
}

.dialog-platform h3 {
  font-size: 16px;
}

.dialog-platform p {
  color: #687296;
  font-size: 9px;
}

.dialog-platform-head em {
  padding: 5px 7px;
  color: #7180a6;
  border: 1px solid rgba(255,255,255,.07);
  border-radius: 7px;
  font-size: 7px;
  font-style: normal;
  font-weight: 900;
  text-transform: uppercase;
}

.dialog-platform > a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 12px 14px;
  color: #07131a;
  border-radius: 11px;
  background: linear-gradient(135deg, var(--cyan), var(--blue));
  font-size: 11px;
  font-weight: 900;
}

.dialog-sub {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 9px;
}

.dialog-sub a {
  padding: 7px 9px;
  color: #919cc1;
  border: 1px solid rgba(255,255,255,.07);
  border-radius: 8px;
  font-size: 8px;
  font-weight: 800;
}

.dialog-note {
  margin: 20px 0 0;
  color: #647094;
  font-size: 10px;
  text-align: center;
}

.js .reveal {
  opacity: 0;
  transform: translateY(25px);
  transition: opacity .75s cubic-bezier(.22, 1, .36, 1), transform .75s cubic-bezier(.22, 1, .36, 1);
}

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

@media (max-width: 1160px) {
  .site-nav {
    gap: 19px;
  }

  .site-nav a {
    font-size: 13px;
  }

  .header-cta {
    padding-inline: 14px;
    font-size: 11px;
  }

  .hero-layout {
    grid-template-columns: minmax(0, 1fr) minmax(410px, .84fr);
    gap: 30px;
  }

  .hero h1 {
    font-size: clamp(52px, 6.1vw, 76px);
  }

  .hero-visual {
    transform: scale(.93);
    transform-origin: center;
  }

  .device-desktop {
    right: -125px;
  }

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

  .final-card {
    padding: 56px;
  }
}

@media (max-width: 940px) {
  :root {
    --header-height: 72px;
  }

  .section {
    padding: 92px 0;
  }

  .nav-toggle {
    display: block;
    margin-left: auto;
  }

  .header-cta {
    margin-left: 0;
  }

  .site-nav {
    position: fixed;
    top: calc(var(--header-height) - 1px);
    right: 15px;
    left: 15px;
    display: grid;
    gap: 0;
    padding: 10px;
    visibility: hidden;
    opacity: 0;
    border: 1px solid var(--line);
    border-radius: 18px;
    background: rgba(9,12,27,.98);
    box-shadow: var(--shadow);
    transform: translateY(-10px);
    transition: opacity .2s ease, transform .2s ease, visibility .2s ease;
  }

  .site-nav.is-open {
    visibility: visible;
    opacity: 1;
    transform: translateY(0);
  }

  .site-nav a {
    padding: 13px 14px;
    border-radius: 10px;
  }

  .site-nav a:hover {
    background: rgba(255,255,255,.04);
  }

  .site-nav a::after {
    display: none;
  }

  .hero {
    min-height: auto;
    padding-top: 134px;
  }

  .hero-layout {
    grid-template-columns: minmax(0, 1fr);
    min-width: 0;
  }

  .hero-copy {
    min-width: 0;
  }

  .hero-copy {
    max-width: 790px;
  }

  .hero h1 {
    font-size: clamp(58px, 10vw, 87px);
  }

  .hero-visual {
    width: min(100%, 690px);
    min-height: 690px;
    margin: 10px auto 0;
    transform: none;
  }

  .device-desktop {
    right: 0;
  }

  .device-phone {
    left: 52px;
  }

  .split-heading,
  .seo-layout,
  .faq-layout {
    grid-template-columns: 1fr;
    gap: 45px;
  }

  .split-heading {
    margin-bottom: 42px;
  }

  .faq-layout > .section-heading {
    position: static;
  }

  .download-card {
    grid-column: span 6;
  }

  .download-card-windows {
    grid-column: span 12;
  }

  .feature-card {
    grid-column: span 6;
  }

  .feature-card-large,
  .feature-card-wide {
    grid-column: span 12;
  }

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

  .footer-main {
    grid-template-columns: 1fr;
    gap: 50px;
  }
}

@media (max-width: 720px) {
  .container {
    width: min(calc(100% - 28px), var(--container));
  }

  .section {
    padding: 78px 0;
  }

  .header-inner {
    gap: 10px;
  }

  .brand-copy small {
    display: none;
  }

  .header-cta {
    display: none;
  }

  .hero {
    padding-top: 116px;
  }

  .eyebrow {
    font-size: 9px;
  }

  .hero h1 {
    font-size: clamp(47px, 14vw, 68px);
  }

  .hero-lead {
    font-size: 17px;
  }

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

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

  .hero-facts {
    gap: 8px;
  }

  .hero-facts strong {
    font-size: 15px;
  }

  .hero-facts span {
    font-size: 8px;
  }

  .hero-visual {
    left: 50%;
    width: 690px;
    min-height: 660px;
    margin-top: -15px;
    transform: translateX(-50%) scale(.76);
    transform-origin: top center;
  }

  .platform-line {
    margin-top: -120px;
    gap: 12px;
    padding: 17px 15px;
  }

  .platform-line span {
    font-size: 9px;
  }

  .platform-line i {
    display: none;
  }

  .section-heading h2 {
    font-size: clamp(39px, 12vw, 56px);
  }

  .section-heading > p {
    font-size: 16px;
  }

  .section-heading.centered {
    margin-bottom: 42px;
    text-align: left;
  }

  .section-heading.centered .section-label {
    justify-content: flex-start;
  }

  .split-heading {
    gap: 20px;
  }

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

  .download-card,
  .download-card-windows,
  .feature-card,
  .feature-card-large,
  .feature-card-wide {
    grid-column: 1;
  }

  .download-card {
    min-height: 430px;
    padding: 25px;
  }

  .download-card-windows {
    min-height: 470px;
  }

  .download-actions {
    right: 25px;
    bottom: 24px;
    left: 25px;
  }

  .download-actions:not(.dual-links) {
    align-items: stretch;
    flex-direction: column;
  }

  .download-actions .button,
  .download-actions .mini-link {
    width: 100%;
  }

  .feature-card {
    min-height: 290px;
    padding: 25px;
  }

  .feature-card-large,
  .feature-card-wide {
    grid-template-columns: 1fr;
  }

  .feature-card-large {
    min-height: 740px;
  }

  .feature-card-wide {
    min-height: 500px;
  }

  .import-visual {
    min-height: 350px;
    padding: 10px 0 0;
  }

  .responsive-visual {
    transform: scale(.85);
    transform-origin: center;
  }

  .steps-wrap {
    grid-template-columns: 1fr;
  }

  .steps-wrap::before {
    display: none;
  }

  .step-card {
    min-height: 390px;
  }

  .locations-head {
    display: grid;
    gap: 24px;
  }

  .locations-head .button {
    width: 100%;
  }

  .world-panel {
    min-height: 350px;
    border-radius: 25px;
  }

  .world-map {
    width: 850px;
    max-width: none;
    margin-left: 50%;
    transform: translateX(-50%);
  }

  .world-status {
    top: 12px;
    right: 12px;
  }

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

  .country-card {
    grid-template-columns: auto 1fr;
  }

  .country-card em {
    display: none;
  }

  .seo-card,
  .seo-aside {
    padding: 29px 23px;
    border-radius: 26px;
  }

  .seo-card h2 {
    font-size: clamp(38px, 11vw, 52px);
  }

  .faq-layout {
    gap: 35px;
  }

  .faq-layout .section-heading .button {
    width: 100%;
  }

  .faq-item summary {
    padding: 20px;
    font-size: 14px;
  }

  .faq-item p {
    padding: 0 50px 22px 20px;
    font-size: 14px;
  }

  .final-card {
    display: grid;
    min-height: 630px;
    align-content: space-between;
    padding: 35px 24px;
    border-radius: 28px;
  }

  .final-copy h2 {
    font-size: clamp(42px, 13vw, 58px);
  }

  .final-actions {
    width: 100%;
    min-width: 0;
  }

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

  .footer-bottom {
    display: grid;
    gap: 15px;
  }

  .mobile-cta {
    position: fixed;
    right: 10px;
    bottom: 10px;
    left: 10px;
    z-index: 900;
    display: block;
    padding: 7px;
    border: 1px solid rgba(218,224,255,.2);
    border-radius: 17px;
    background: rgba(8,10,24,.84);
    box-shadow: 0 20px 55px rgba(0,0,0,.5);
    backdrop-filter: blur(18px);
  }

  .mobile-cta a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
    min-height: 50px;
    padding: 0 17px;
    color: #fff;
    border-radius: 12px;
    background: linear-gradient(135deg, var(--pink), var(--pink-2));
    font-size: 12px;
    font-weight: 900;
  }

  .mobile-cta b {
    display: grid;
    width: 40px;
    height: 31px;
    place-items: center;
    border-radius: 9px;
    background: rgba(15,12,34,.18);
  }

  .site-footer {
    padding-bottom: 132px;
  }

  .dialog-inner {
    padding: 35px 18px 25px;
  }

  .dialog-close {
    top: 12px;
    right: 12px;
  }

  .dialog-heading {
    padding-right: 45px;
  }

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

  .dialog-platform-wide {
    grid-column: auto;
  }
}

@media (max-width: 400px) {
  .hero h1 {
    font-size: 44px;
  }

  .hero-visual {
    transform: translateX(-50%) scale(.69);
  }

  .platform-line {
    margin-top: -170px;
  }

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

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

  .dual-links {
    grid-template-columns: 1fr;
  }
}

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

  *,
  *::before,
  *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: .01ms !important;
  }

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

/* Final mobile width guard: keep fixed-size hero artwork from widening the grid. */
@media (max-width: 720px) {
  html,
  body {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
  }

  .hero-layout {
    grid-template-columns: 100%;
    width: 100%;
    max-width: 100%;
    min-width: 0;
    overflow: hidden;
  }

  .hero-copy,
  .hero-actions,
  .hero-facts,
  .hero-lead,
  .hero h1 {
    width: 100%;
    max-width: 100%;
    min-width: 0;
  }

  .hero-copy {
    overflow: hidden;
  }

  .hero h1 {
    font-size: clamp(42px, 12.8vw, 54px);
    letter-spacing: -.065em;
    overflow-wrap: normal;
    word-break: normal;
  }

  .hero-actions .button {
    width: 100%;
    max-width: 100%;
    min-width: 0;
    padding-inline: 14px;
    white-space: normal;
    text-align: center;
  }

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

  .hero-facts > div {
    min-width: 0;
  }

  .hero-visual {
    justify-self: center;
    min-width: 0;
    max-width: none;
  }
}
