:root {
  --black: #000;
  --ink: #050505;
  --surface: #0a0a0a;
  --surface-2: #111;
  --white: #f5f5f3;
  --muted: #9a9a98;
  --muted-2: #70706e;
  --line: rgba(255, 255, 255, .14);
  --line-soft: rgba(255, 255, 255, .08);
  --frame: 1160px;
  --radius: 16px;
}

.public-site {
  display: contents;
}

[data-content-multiline] {
  white-space: pre-line;
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: 96px;
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  color: var(--white);
  background: var(--black);
  font-family: Inter, Arial, sans-serif;
  font-size: 15px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

body.menu-open { overflow: hidden; }
a { color: inherit; text-decoration: none; }
button, input { font: inherit; }
img, svg { display: block; }
img { max-width: 100%; }

svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.65;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.svg-sprite {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
}

.frame {
  width: min(var(--frame), calc(100% - 48px));
  margin-inline: auto;
  border-right: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.site-header {
  position: fixed;
  z-index: 100;
  top: 17px;
  right: 0;
  left: 0;
  pointer-events: none;
}

.topbar {
  position: relative;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  width: min(820px, calc(100% - 32px));
  min-height: 62px;
  margin-inline: auto;
  padding: 8px 10px 8px 18px;
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: 20px;
  background: rgba(3, 3, 3, .86);
  box-shadow: 0 15px 45px rgba(0, 0, 0, .3);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  pointer-events: auto;
  transition: border-color .25s ease, background .25s ease;
}

.site-header.scrolled .topbar {
  border-color: rgba(255, 255, 255, .24);
  background: rgba(0, 0, 0, .94);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #fff;
  font-size: 17px;
  font-weight: 650;
  letter-spacing: -.04em;
}

.brand img {
  width: 37px;
  height: 37px;
  object-fit: contain;
}

.desktop-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(18px, 2.2vw, 32px);
  padding-inline: 24px;
}

.dynamic-link-group { display: contents; }

.desktop-nav a {
  color: #a5a5a3;
  font-size: 13px;
  transition: color .2s ease;
}

.desktop-nav a:hover,
.desktop-nav a:focus-visible { color: #fff; }

.login-button {
  display: inline-grid;
  place-items: center;
  min-width: 92px;
  height: 44px;
  padding-inline: 20px;
  border-radius: 13px;
  color: #050505;
  background: #f3f3f1;
  font-size: 14px;
  font-weight: 600;
  transition: background .2s ease, transform .2s ease;
}

.login-button:hover { background: #fff; transform: translateY(-1px); }
.menu-toggle, .mobile-menu { display: none; }

.hero {
  position: relative;
  display: grid;
  min-height: 720px;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
  isolation: isolate;
}

.hero-image,
.hero-shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-image {
  z-index: -3;
  object-fit: cover;
  object-position: center 42%;
  filter: grayscale(1) brightness(.5) contrast(1.14);
  transform: scale(1.015);
}

.hero-shade {
  z-index: -2;
  background:
    radial-gradient(circle at 50% 48%, rgba(0, 0, 0, .03) 0 18%, rgba(0, 0, 0, .25) 58%, rgba(0, 0, 0, .75) 100%),
    linear-gradient(180deg, rgba(0, 0, 0, .18), transparent 25%, rgba(0, 0, 0, .12) 62%, #000 100%);
}

.hero::after {
  position: absolute;
  z-index: -1;
  inset: 0;
  content: "";
  opacity: .35;
  background-image: linear-gradient(rgba(255, 255, 255, .018) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, .018) 1px, transparent 1px);
  background-size: 56px 56px;
  -webkit-mask-image: radial-gradient(circle at center, #000, transparent 70%);
  mask-image: radial-gradient(circle at center, #000, transparent 70%);
}

.hero-content {
  align-self: center;
  width: min(790px, calc(100% - 40px));
  margin: 36px auto 0;
  text-align: center;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 34px;
  padding: 7px 13px;
  border: 1px solid rgba(255, 255, 255, .22);
  border-radius: 10px;
  color: #c8c8c6;
  background: rgba(0, 0, 0, .38);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .13em;
  text-transform: uppercase;
}

.eyebrow svg { width: 15px; height: 15px; }

.hero h1 {
  margin: 26px 0 16px;
  color: #fff;
  font-size: clamp(48px, 5.1vw, 72px);
  font-weight: 500;
  letter-spacing: -.064em;
  line-height: .99;
}

.hero h1 span { display: block; }
.hero h1 span + span { color: #bdbdb9; }

.hero-content > p {
  margin: 0 auto;
  color: #c2c2bf;
  font-size: 16px;
  line-height: 1.65;
}

.hero-actions {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 27px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 146px;
  min-height: 46px;
  padding: 12px 23px;
  border: 1px solid transparent;
  border-radius: 12px;
  font-size: 13px;
  font-weight: 600;
  transition: transform .2s ease, background .2s ease, color .2s ease, border-color .2s ease;
}

.button:hover { transform: translateY(-2px); }
.button-light { color: #080808; background: #f2f2ef; }
.button-light:hover { background: #fff; }
.button-outline { border-color: rgba(255, 255, 255, .28); color: #efefed; background: rgba(0, 0, 0, .3); }
.button-outline:hover { border-color: rgba(255, 255, 255, .52); background: rgba(255, 255, 255, .06); }

.platform-line {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: 23px;
  color: #dededb;
}

.platform-line span { margin-right: 3px; color: #969694; font-size: 12px; }
.platform-line svg { width: 18px; height: 18px; }

.access-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  min-height: 390px;
  border-bottom: 1px solid var(--line);
}

.access-main {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: 238px 150px;
  min-width: 0;
  border-right: 1px solid var(--line);
}

.connection-visual,
.access-copy,
.mini-stat,
.globe-cell { position: relative; min-width: 0; }

.connection-visual {
  display: grid;
  place-items: center;
  overflow: hidden;
  border-right: 1px solid var(--line);
  background: linear-gradient(145deg, #161616, #030303 65%);
}

.connection-visual::before,
.connection-visual::after {
  position: absolute;
  width: 290px;
  height: 290px;
  border: 1px solid rgba(255, 255, 255, .11);
  border-radius: 50%;
  content: "";
}

.connection-visual::before { top: -130px; left: -170px; }
.connection-visual::after { right: -190px; bottom: -200px; }

.access-copy { grid-column: 2 / 4; padding: 45px 46px; }

.access-copy h2,
.services-panel h2,
.about-heading h2,
.advantages-copy h2,
.devices-heading h2,
.reviews-heading h2,
.pricing-heading h2,
.faq-heading h2,
.final-cta h2 {
  margin: 0;
  color: #f5f5f2;
  font-weight: 500;
  letter-spacing: -.045em;
  line-height: 1.05;
}

.access-copy h2 { font-size: 28px; }
.access-copy p { max-width: 430px; margin: 15px 0 23px; color: #9a9a98; font-size: 13px; line-height: 1.65; }
.access-copy a { display: inline-flex; align-items: center; gap: 14px; color: #d8d8d5; font-size: 13px; }
.access-copy a span { transition: transform .2s ease; }
.access-copy a:hover span { transform: translateX(4px); }

.mini-stat {
  padding: 30px 25px;
  border-top: 1px solid var(--line);
  border-right: 1px solid var(--line);
}

.mini-stat h3 { margin: 0 0 14px; color: #f4f4f1; font-size: 22px; font-weight: 500; letter-spacing: -.04em; }
.mini-stat p { margin: 0; color: #8b8b89; font-size: 12px; line-height: 1.55; }
.mini-stat.centered { border-right: 0; text-align: center; }

.globe-cell { overflow: hidden; border-top: 1px solid var(--line); border-right: 1px solid var(--line); }
.globe-cell img { width: 100%; height: 100%; object-fit: cover; filter: grayscale(1) brightness(.67); }

.services-panel {
  padding: 44px 38px;
  background: linear-gradient(140deg, rgba(255,255,255,.045), transparent 60%);
}

.services-panel h2 { font-size: 31px; }
.services-panel > p { margin: 22px 0 30px; color: #999997; font-size: 12px; line-height: 1.7; }
.services-panel ul { display: grid; gap: 12px; margin: 0; padding: 0; color: #acacaa; font-size: 12px; list-style: none; }

.services-panel li {
  display: flex;
  align-items: center;
  min-width: 0;
  gap: 10px;
  transition: color .22s ease;
}

.services-panel .service-icon {
  width: 20px;
  height: 20px;
  flex: 0 0 20px;
  color: #c8c8c5;
  stroke-width: 1.55;
  transition: color .22s ease, filter .22s ease, transform .22s ease;
}

.services-panel .service-icon-fill {
  fill: currentColor;
  stroke: none;
}

.services-panel li:hover { color: #d9f7ff; }

.services-panel li:hover .service-icon {
  color: #67dcff;
  filter: drop-shadow(0 0 5px rgba(66, 205, 255, .34));
  transform: translateY(-1px);
}

.manifesto {
  position: relative;
  display: grid;
  min-height: 365px;
  place-items: center;
  padding: 70px 36px;
  border-bottom: 1px solid var(--line);
  text-align: center;
}

.manifesto p { margin: 0; color: #eeeeeb; font-size: clamp(24px, 3vw, 38px); font-weight: 400; letter-spacing: -.045em; line-height: 1.28; }
.cursor-mark { position: absolute; bottom: 48px; color: #8d8d8a; font-size: 28px; }

.about { padding: 100px 34px 0; }

.about-heading {
  display: grid;
  grid-template-columns: 1.25fr .75fr;
  align-items: end;
  gap: 80px;
  padding: 0 5px 56px;
}

.about-heading h2 { margin-top: 22px; font-size: clamp(40px, 4.8vw, 64px); }
.about-heading > p { max-width: 375px; margin: 0 0 7px; color: #9a9a98; font-size: 14px; line-height: 1.75; }

.reason-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.reason-grid article {
  display: flex;
  min-width: 0;
  min-height: 430px;
  flex-direction: column;
  overflow: hidden;
  border-right: 1px solid var(--line);
}

.reason-grid article:last-child { border-right: 0; }
.reason-grid article > div { min-height: 198px; padding: 35px 32px 26px; }
.reason-grid h3 { margin: 0 0 16px; color: #eee; font-size: 23px; font-weight: 500; letter-spacing: -.04em; }
.reason-grid p { margin: 0; color: #989896; font-size: 12px; line-height: 1.65; }

.reason-grid img {
  width: 100%;
  height: 232px;
  margin-top: auto;
  object-fit: cover;
  filter: grayscale(1) contrast(1.08) brightness(.75);
  transition: filter .35s ease, transform .5s ease;
}

.reason-grid article:hover img { filter: grayscale(1) contrast(1.1) brightness(.9); transform: scale(1.025); }
.advantages { border-bottom: 1px solid var(--line); }

.advantages-hero {
  display: grid;
  grid-template-columns: 1.04fr .96fr;
  min-height: 520px;
  border-bottom: 1px solid var(--line);
}

.phone-art {
  position: relative;
  min-height: 520px;
  overflow: hidden;
  border-right: 1px solid var(--line);
}

.benefits-bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; filter: grayscale(1) brightness(.45); }
.phone-art::after { position: absolute; inset: 0; content: ""; background: linear-gradient(180deg, transparent 55%, #000 102%); }
.phone { position: absolute; z-index: 1; right: 13%; bottom: -265px; width: 51%; filter: grayscale(1) contrast(1.05); }

.advantages-copy {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  flex-direction: column;
  padding: 62px;
}

.advantages-copy h2 { margin-top: 23px; font-size: clamp(39px, 4.2vw, 56px); }
.advantages-copy p { max-width: 370px; margin: 24px 0 31px; color: #989896; font-size: 14px; line-height: 1.75; }
.advantages-copy .button { min-width: 132px; }
.advantages-list { display: grid; grid-template-columns: repeat(2, 1fr); }

.advantages-list article {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 22px;
  min-height: 182px;
  padding: 40px 42px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  transition: background-color .22s ease;
}

.advantages-list article:nth-child(2n) { border-right: 0; }
.advantages-list article:nth-last-child(-n+2) { border-bottom: 0; }

.advantages-list article > span {
  display: grid;
  width: 56px;
  height: 56px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, .15);
  border-radius: 13px;
  color: #c9c9c6;
  background: linear-gradient(145deg, rgba(255, 255, 255, .045), rgba(255, 255, 255, .012));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .035);
  transition: color .22s ease, border-color .22s ease, box-shadow .22s ease, transform .22s ease;
}

.advantages-list svg { width: 25px; height: 25px; stroke-width: 1.55; }
.advantages-list article:hover { background: rgba(255, 255, 255, .012); }

.advantages-list article:hover > span {
  color: #67dcff;
  border-color: rgba(78, 206, 255, .34);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, .045),
    0 0 18px rgba(55, 198, 255, .09);
  transform: translateY(-2px);
}
.advantages-list h3 { margin: 2px 0 11px; color: #e9e9e6; font-size: 17px; font-weight: 500; letter-spacing: -.025em; }
.advantages-list p { max-width: 390px; margin: 0; color: #8e8e8c; font-size: 12px; line-height: 1.65; }

.devices {
  padding: 96px 34px 104px;
  border-bottom: 1px solid var(--line);
}

.devices-heading {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 48px;
  margin-bottom: 50px;
}

.devices-heading h2 { font-size: clamp(36px, 4vw, 54px); }
.devices-heading > div p { max-width: 660px; margin: 18px 0 0; color: #979795; font-size: 13px; }

.support-link {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 3px 13px;
  min-width: 225px;
}

.support-link > span {
  display: grid;
  grid-row: 1 / 3;
  width: 39px;
  height: 39px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 10px;
}

.support-link svg { width: 18px; height: 18px; }
.support-link b { color: #7f7f7d; font-size: 11px; font-weight: 400; }
.support-link small { color: #d9d9d7; font-size: 12px; }
.support-link-panel { align-self: flex-end; }
.support-link-list {
  display: flex;
  grid-column: 2;
  align-items: flex-start;
  flex-direction: column;
  gap: 5px;
}
.support-link-list a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #d9d9d7;
  font-size: 12px;
  transition: color .22s ease;
}
.support-link-list a:hover,
.support-link-list a:focus-visible { color: #63d7ff; }
.support-link-list i {
  font-style: normal;
  transition: transform .22s ease;
}
.support-link-list a:hover i,
.support-link-list a:focus-visible i { transform: translateX(3px); }
.device-grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 10px; }

.device-grid.reveal {
  opacity: 1;
  transform: none;
  transition: none;
}

.device-grid article {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 214px;
  padding: 13px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 14px;
  flex-direction: column;
  background: rgba(255, 255, 255, .006);
  opacity: 0;
  transform: translateY(16px);
  transition:
    opacity .62s cubic-bezier(.22, 1, .36, 1) var(--device-delay, 0ms),
    transform .62s cubic-bezier(.22, 1, .36, 1) var(--device-delay, 0ms),
    border-color .24s ease,
    background-color .24s ease,
    box-shadow .24s ease;
}

.device-grid article::before {
  position: absolute;
  z-index: 2;
  top: -1px;
  left: -45%;
  width: 34%;
  height: 1px;
  pointer-events: none;
  background: linear-gradient(90deg, transparent, rgba(104, 220, 255, .9), transparent);
  content: "";
  opacity: 0;
  transform: translateX(-130%);
}

.device-grid.visible article { opacity: 1; transform: translateY(0); }

.device-grid.visible article:hover {
  border-color: rgba(77, 207, 255, .38);
  background: rgba(71, 197, 255, .025);
  box-shadow: 0 16px 36px rgba(0, 0, 0, .22), 0 0 22px rgba(60, 200, 255, .065);
  transform: translateY(-4px);
  transition-delay: 0ms;
}

.device-grid.visible article:hover::before { animation: device-edge-sweep .65s ease-out forwards; }

.device-grid article > div {
  display: grid;
  width: 100%;
  height: 102px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, .045);
  border-radius: 11px;
  background: linear-gradient(145deg, #151718, #0b0d0f);
}

.device-grid article > div svg {
  width: 38px;
  height: 38px;
  color: #cececb;
  stroke-width: 1.45;
  opacity: 0;
  transform: scale(.9);
  transition:
    opacity .48s ease calc(var(--device-delay, 0ms) + 120ms),
    transform .48s cubic-bezier(.22, 1, .36, 1) calc(var(--device-delay, 0ms) + 120ms),
    color .24s ease,
    filter .24s ease;
}

.device-grid .device-icon-fill { fill: currentColor; stroke: none; }
.device-grid.visible article > div svg { opacity: 1; transform: scale(1); }

.device-grid.visible article:hover > div svg {
  color: #69ddff;
  filter: drop-shadow(0 0 7px rgba(73, 208, 255, .28));
  transform: scale(1.06);
  transition-delay: 0ms;
}

.device-icon-panel .device-custom-image {
  width: 64%;
  height: 64%;
  object-fit: contain;
  filter: saturate(.92) contrast(1.03);
  transition: transform .24s ease, filter .24s ease;
}

.device-icon-panel.has-custom-image svg { display: none; }
.device-grid article:hover .device-custom-image {
  transform: scale(1.06);
  filter: saturate(1.05) contrast(1.05) drop-shadow(0 0 10px rgba(63, 202, 255, .18));
}

.device-grid .os-mark { color: #f1f1ee; font-size: 17px; font-weight: 700; line-height: 1.05; text-align: center; }
.device-grid h3 { margin: 15px 0 12px; color: #ececea; font-size: 15px; font-weight: 500; }

.device-grid a {
  display: flex;
  width: 100%;
  min-height: 36px;
  margin-top: auto;
  align-items: center;
  justify-content: center;
  gap: 0;
  border-radius: 9px;
  color: #090909;
  background: #ededeb;
  font-size: 12px;
  font-weight: 600;
  transition: gap .24s ease, background .24s ease;
}

.device-grid a::after {
  width: 0;
  overflow: hidden;
  content: "↓";
  opacity: 0;
  transform: translateY(-3px);
  transition: width .24s ease, opacity .24s ease, transform .24s ease;
}

.device-grid article:hover a,
.device-grid a:hover { gap: 8px; background: #f8f8f6; }

.device-grid article:hover a::after,
.device-grid a:hover::after { width: 10px; opacity: 1; transform: translateY(0); }

@keyframes device-edge-sweep {
  0% { left: -45%; opacity: 0; transform: translateX(-130%); }
  18% { opacity: .8; }
  100% { left: 100%; opacity: 0; transform: translateX(130%); }
}

.reviews {
  overflow: hidden;
  padding: 105px 0 112px;
  border-bottom: 1px solid var(--line);
}

.reviews-heading { padding: 0 38px; border: 0; text-align: center; }
.reviews-heading > span { color: #858583; font-size: 11px; text-transform: uppercase; }
.reviews-heading h2 { margin-top: 18px; font-size: clamp(37px, 4vw, 55px); }
.reviews-heading p { margin: 21px 0 0; color: #8c8c8a; font-size: 13px; line-height: 1.7; }

.reviews-viewport {
  width: min(var(--frame), calc(100% - 48px));
  margin: 54px auto 0;
  padding: 8px 0 12px;
  overflow: hidden;
}

.reviews-track {
  --review-card-width: calc((min(var(--frame), calc(100vw - 48px)) - 36px) / 4);
  display: flex;
  width: max-content;
  gap: 12px;
  margin: 0;
  padding: 0;
  transform: translate3d(0, 0, 0);
  transition: transform 750ms cubic-bezier(.22, 1, .36, 1);
  will-change: transform;
}

.reviews-track.reveal {
  opacity: 1;
  transform: translate3d(0, 0, 0);
  transition: transform 750ms cubic-bezier(.22, 1, .36, 1);
}

.reviews-track.is-jumping { transition: none; }

.reviews-track article {
  display: flex;
  width: auto;
  min-height: 226px;
  padding: 25px;
  border: 1px solid var(--line);
  border-radius: 14px;
  flex: 0 0 var(--review-card-width);
  flex-direction: column;
  background: #030303;
  box-shadow: 0 16px 40px rgba(0, 0, 0, .16);
  opacity: 0;
  transform: translateY(22px);
  transition:
    opacity .65s cubic-bezier(.22, 1, .36, 1) var(--review-delay, 0ms),
    transform .65s cubic-bezier(.22, 1, .36, 1) var(--review-delay, 0ms),
    border-color .24s ease,
    box-shadow .24s ease,
    background-color .24s ease;
}

.reviews-track.visible article {
  opacity: 1;
  transform: translateY(0);
}

.reviews-track.visible article:hover {
  z-index: 2;
  border-color: rgba(74, 208, 255, .48);
  background: #05080a;
  box-shadow:
    0 18px 44px rgba(0, 0, 0, .3),
    0 0 22px rgba(55, 196, 255, .09),
    inset 0 0 0 1px rgba(89, 217, 255, .05);
  transform: translateY(-4px);
  transition-delay: 0ms;
}

.reviews-track b {
  display: inline-flex;
  width: max-content;
  color: #d7d7d5;
  font-size: 12px;
  letter-spacing: .1em;
}

.reviews-track b span {
  display: inline-block;
  color: #d7d7d5;
}

.reviews-track.is-carousel-ready b span {
  animation: review-star-glow 4.8s ease-in-out infinite;
  animation-delay: var(--star-delay, 0ms);
}

.reviews-track p { margin: 19px 0 25px; color: #a4a4a1; font-size: 12px; line-height: 1.65; }

.reviews-track article > div {
  display: flex;
  align-items: center;
  gap: 9px;
  margin-top: auto;
  color: #777775;
  font-size: 10px;
}

.reviews-track img { width: 29px; height: 29px; border-radius: 50%; object-fit: cover; filter: grayscale(1); }

@keyframes review-star-glow {
  0%, 19%, 42%, 100% {
    color: #d7d7d5;
    text-shadow: none;
    transform: translateY(0);
  }
  25% {
    color: #86e7ff;
    text-shadow: 0 0 8px rgba(72, 212, 255, .55);
    transform: translateY(-1px);
  }
  32% {
    color: #e4faff;
    text-shadow: 0 0 11px rgba(72, 212, 255, .32);
    transform: translateY(0);
  }
}

.pricing {
  padding: 94px 34px 0;
  border-bottom: 1px solid var(--line);
}

.pricing-heading {
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  align-items: end;
  gap: 90px;
  padding: 0 5px 18px;
}

.pricing-heading h2 { margin-top: 20px; font-size: clamp(39px, 4.8vw, 63px); }

.trial {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-top: 25px;
  color: #828280;
  font-size: 11px;
  letter-spacing: .05em;
}

.trial b { display: inline-flex; padding: 5px 8px; border-radius: 6px; color: #050505; background: #dededb; font-size: 9px; }
.pricing-heading > div:last-child > p { max-width: 385px; margin: 0 0 24px; color: #969694; font-size: 13px; line-height: 1.7; }
.payment-note { color: #686866; font-size: 10px; }
.price-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: stretch;
  gap: 18px;
  padding: 8px 5px 34px;
}

.price-grid.reveal {
  opacity: 1;
  transform: none;
  transition: none;
}

.price-grid article {
  position: relative;
  display: flex;
  min-width: 0;
  min-height: 490px;
  padding: 26px;
  overflow: hidden;
  border: 1px solid rgba(120, 190, 220, .16);
  border-radius: 20px;
  flex-direction: column;
  background:
    radial-gradient(circle at 14% 0%, rgba(55, 178, 226, .075), transparent 34%),
    linear-gradient(155deg, rgba(7, 18, 27, .98), #050b11 56%, #03080d);
  box-shadow: 0 18px 50px rgba(0, 0, 0, .18), inset 0 1px 0 rgba(255, 255, 255, .025);
  opacity: 0;
  transform: translateY(20px);
  transition:
    opacity .62s cubic-bezier(.22, 1, .36, 1) var(--plan-delay, 0ms),
    transform .62s cubic-bezier(.22, 1, .36, 1) var(--plan-delay, 0ms),
    border-color .26s ease,
    background-color .26s ease,
    box-shadow .26s ease;
}

.price-grid article::after {
  position: absolute;
  z-index: 3;
  top: -1px;
  left: -44%;
  width: 32%;
  height: 1px;
  pointer-events: none;
  background: linear-gradient(90deg, transparent, rgba(93, 220, 255, .95), transparent);
  content: "";
  opacity: 0;
  transform: translateX(-140%);
}

.price-grid article.featured::before {
  position: absolute;
  top: -1px;
  right: 26px;
  left: 26px;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, transparent, #42cfff 28%, #2d91ff 72%, transparent);
  box-shadow: 0 0 16px rgba(54, 198, 255, .24);
  content: "";
}

.price-grid article.featured { border-color: rgba(82, 205, 255, .28); }

.price-grid.visible article { opacity: 1; transform: translateY(0); }
.price-grid.visible article.featured { transform: translateY(-8px); }

.price-grid.visible article:hover {
  border-color: rgba(76, 207, 255, .42);
  background-color: rgba(21, 43, 58, .28);
  box-shadow: 0 22px 55px rgba(0, 0, 0, .24), 0 0 28px rgba(54, 200, 255, .055), inset 0 0 28px rgba(64, 201, 255, .025);
  transform: translateY(-6px);
  transition-delay: 0ms;
}

.price-grid.visible article.featured:hover { transform: translateY(-14px); }
.price-grid article:hover::after { animation: price-edge-sweep .72s ease-out forwards; }

.plan-symbol {
  display: grid;
  width: 46px;
  height: 46px;
  margin-bottom: 16px;
  place-items: center;
  border: 1px solid rgba(130, 196, 222, .15);
  border-radius: 13px;
  color: #c8d0d3;
  background: rgba(3, 10, 16, .74);
  transition: color .26s ease, border-color .26s ease, background .26s ease, filter .26s ease, transform .26s ease;
}

.plan-symbol svg { width: 26px; height: 26px; stroke-width: 1.45; }

.price-grid article:hover .plan-symbol {
  border-color: rgba(82, 214, 255, .34);
  color: #6edfff;
  background: rgba(23, 92, 119, .14);
  filter: drop-shadow(0 0 7px rgba(73, 208, 255, .22));
  transform: scale(1.04);
}

.price-title { display: flex; align-items: center; justify-content: space-between; gap: 10px; }
.price-title h3 { margin: 0; color: #f0f4f5; font-size: 22px; font-weight: 550; letter-spacing: -.035em; }

.price-title span {
  position: absolute;
  top: 18px;
  right: 26px;
  padding: 6px 12px;
  border: 1px solid rgba(79, 211, 255, .25);
  border-radius: 999px;
  color: #79dcf8;
  background: rgba(25, 107, 137, .12);
  font-size: 8px;
  font-weight: 650;
  letter-spacing: .11em;
}

.price {
  margin: 20px 0 8px;
  color: #f7fbfc;
  font-size: clamp(44px, 3.6vw, 56px);
  font-weight: 600;
  letter-spacing: -.065em;
  line-height: 1;
  opacity: 0;
  transform: translateY(8px);
  transition:
    opacity .52s ease calc(var(--plan-delay, 0ms) + 150ms),
    transform .52s cubic-bezier(.22, 1, .36, 1) calc(var(--plan-delay, 0ms) + 150ms);
}

.price-grid.visible .price { opacity: 1; transform: translateY(0); }
.price small { margin-left: 7px; color: #8ba1aa; font-size: 12px; font-weight: 400; letter-spacing: 0; }
.price + p { min-height: 38px; margin: 0; color: #a3b5bc; font-size: 12px; line-height: 1.5; }

.price-grid ul {
  display: grid;
  gap: 12px;
  margin: 22px 0 24px;
  padding: 0;
  color: #c0cbd0;
  font-size: 12px;
  list-style: none;
}

.price-grid li {
  display: flex;
  align-items: center;
  min-height: 20px;
  opacity: 0;
  transform: translateY(6px);
  transition:
    opacity .42s ease calc(var(--plan-delay, 0ms) + 220ms + var(--feature-delay, 0ms)),
    transform .42s cubic-bezier(.22, 1, .36, 1) calc(var(--plan-delay, 0ms) + 220ms + var(--feature-delay, 0ms));
}

.price-grid.visible li { opacity: 1; transform: translateY(0); }
.price-grid li:nth-child(1) { --feature-delay: 0ms; }
.price-grid li:nth-child(2) { --feature-delay: 45ms; }
.price-grid li:nth-child(3) { --feature-delay: 90ms; }
.price-grid li:nth-child(4) { --feature-delay: 135ms; }
.price-grid li:nth-child(5) { --feature-delay: 180ms; }

.price-grid li::before {
  display: grid;
  width: 18px;
  height: 18px;
  margin-right: 10px;
  flex: 0 0 18px;
  place-items: center;
  border: 1px solid rgba(79, 210, 255, .38);
  border-radius: 50%;
  color: #7ae3ff;
  background: rgba(36, 152, 192, .08);
  content: "✓";
  font-size: 10px;
  line-height: 1;
}

.price-grid article > a {
  display: flex;
  width: 100%;
  min-height: 46px;
  margin-top: auto;
  align-items: center;
  justify-content: center;
  gap: 0;
  border: 1px solid rgba(137, 194, 218, .2);
  border-radius: 12px;
  color: #dce8ec;
  background: rgba(4, 11, 17, .72);
  font-size: 12px;
  font-weight: 650;
  transition: gap .26s ease, border-color .26s ease, color .26s ease, background .26s ease, box-shadow .26s ease;
}

.price-grid article > a::after {
  width: 0;
  overflow: hidden;
  color: currentColor;
  content: "→";
  opacity: 0;
  transform: translateX(-3px);
  transition: width .26s ease, opacity .26s ease, transform .26s ease;
}

.price-grid .featured > a {
  border-color: rgba(99, 221, 255, .34);
  color: #031019;
  background: linear-gradient(135deg, #268ff4, #5bdef3);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .32), 0 10px 24px rgba(21, 145, 224, .14);
}

.price-grid article:hover > a,
.price-grid article > a:hover { gap: 9px; border-color: rgba(91, 214, 255, .4); background: rgba(18, 49, 64, .65); }
.price-grid .featured:hover > a,
.price-grid .featured > a:hover { background: linear-gradient(135deg, #43a4ff, #75e9f7); }
.price-grid article:hover > a::after,
.price-grid article > a:hover::after { width: 13px; opacity: 1; transform: translateX(3px); }

@keyframes price-edge-sweep {
  0% { left: -44%; opacity: 0; transform: translateX(-140%); }
  18% { opacity: .82; }
  100% { left: 100%; opacity: 0; transform: translateX(140%); }
}

.faq {
  padding: 105px 38px 115px;
  border-bottom: 1px solid var(--line);
}

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

.faq-heading h2 { font-size: clamp(40px, 4.8vw, 62px); }
.faq-heading p { margin: 0 0 5px; color: #8e8e8c; font-size: 13px; line-height: 1.65; }
.faq-list { border-top: 1px solid var(--line); }
.faq-list article { border-bottom: 1px solid var(--line); }

.faq-list button {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  min-height: 74px;
  padding: 18px 2px;
  border: 0;
  color: #dededc;
  background: transparent;
  cursor: pointer;
  text-align: left;
}

.faq-list button span { font-size: 15px; font-weight: 500; }
.faq-list button svg { width: 26px; height: 26px; color: #858583; transition: transform .25s ease, color .25s ease; }
.faq-list article.open button svg { color: #ddd; transform: rotate(45deg); }
.faq-list article > div { display: grid; grid-template-rows: 0fr; transition: grid-template-rows .3s ease; }
.faq-list article > div > p { overflow: hidden; }
.faq-list article.open > div { grid-template-rows: 1fr; }
.faq-list article p { max-width: 760px; margin: 0; color: #8d8d8b; font-size: 13px; line-height: 1.7; }
.faq-list article.open p { padding-bottom: 24px; }

.final-cta {
  position: relative;
  display: grid;
  min-height: 520px;
  overflow: hidden;
  place-items: center;
  border-bottom: 1px solid var(--line);
  text-align: center;
  isolation: isolate;
}

.final-cta > img { position: absolute; z-index: -2; inset: 0; width: 100%; height: 100%; object-fit: cover; filter: grayscale(1) brightness(.38) contrast(1.15); transform: rotate(180deg) scale(1.02); }
.final-cta::after { position: absolute; z-index: -1; inset: 0; content: ""; background: radial-gradient(circle, transparent 0, rgba(0,0,0,.42) 64%, #000 100%); }
.final-cta > div { padding: 70px 24px; }
.final-cta h2 { font-size: clamp(42px, 5vw, 68px); }
.final-cta p { margin: 23px 0 31px; color: #aaa; font-size: 14px; line-height: 1.7; }

footer { background: #030303; }

.footer-grid {
  display: grid;
  grid-template-columns: 1.25fr .75fr .55fr;
  min-height: 310px;
  padding: 66px 38px;
  border-top: 0;
  gap: 65px;
}

.footer-brand .brand { font-size: 22px; }
.footer-brand .brand img { width: 48px; height: 48px; }
.footer-brand p { margin: 24px 0 36px; color: #797977; font-size: 12px; line-height: 1.65; }
.footer-brand small { color: #50504f; font-size: 10px; }
.footer-column { display: flex; align-items: flex-start; flex-direction: column; gap: 10px; }
.dynamic-footer-links {
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  gap: 10px;
}
.footer-column > span { margin-bottom: 12px; color: #555553; font-size: 10px; letter-spacing: .09em; text-transform: uppercase; }
.footer-column a {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #8b989e;
  font-size: 11px;
  line-height: 1.45;
  transition: color .24s ease;
}

.footer-icon {
  display: block;
  width: 16px;
  height: 16px;
  flex: 0 0 16px;
  overflow: visible;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: color .24s ease, filter .24s ease, transform .24s ease;
}

.footer-column a:hover,
.footer-column a:focus-visible { color: #63d7ff; }
.footer-column a:hover .footer-icon,
.footer-column a:focus-visible .footer-icon { filter: drop-shadow(0 0 4px rgba(72, 205, 255, .42)); }
.footer-telegram:hover .footer-icon,
.footer-telegram:focus-visible .footer-icon { transform: translate(2px, -2px); }

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity .7s ease, transform .7s ease;
}

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

@media (max-width: 1000px) {
  :root { --frame: 920px; }
  .topbar { width: min(760px, calc(100% - 28px)); }
  .desktop-nav { gap: 16px; padding-inline: 18px; }
  .frame { width: calc(100% - 32px); }
  .hero { min-height: 670px; }
  .access-grid { grid-template-columns: 1fr; }
  .access-main { border-right: 0; }
  .services-panel { border-top: 1px solid var(--line); }
  .services-panel h2 br { display: none; }
  .services-panel ul { grid-template-columns: repeat(3, 1fr); }
  .about { padding-inline: 26px; }
  .reason-grid article > div { padding: 30px 24px 24px; }
  .advantages-copy { padding: 46px; }
  .advantages-list article { padding: 34px 30px; }
  .devices { padding-inline: 26px; }
  .device-grid { grid-template-columns: repeat(3, 1fr); }
  .price-grid article { padding: 26px 24px; }
}

@media (max-width: 900px) {
  .reviews-viewport {
    width: 100%;
    margin-top: 43px;
    padding: 0;
    overflow: visible;
  }

  .reviews-track,
  .reviews-track.reveal,
  .reviews-track.visible.is-carousel-ready {
    width: auto;
    padding: 0 max(20px, calc((100vw - min(80vw, 290px)) / 2)) 18px;
    overflow-x: auto;
    scroll-padding-inline: max(20px, calc((100vw - min(80vw, 290px)) / 2));
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    touch-action: pan-x;
    transform: none !important;
    transition: none;
    will-change: auto;
  }

  .reviews-track::-webkit-scrollbar { display: none; }

  .reviews-track article {
    flex: 0 0 min(80vw, 290px);
    scroll-snap-align: center;
    scroll-snap-stop: always;
  }

  .reviews-track [data-review-clone] { display: none; }
}

@media (max-width: 760px) {
  .site-header { top: 10px; }
  .topbar { grid-template-columns: 1fr auto; min-height: 56px; padding: 7px 8px 7px 14px; border-radius: 17px; }
  .brand { font-size: 16px; }
  .brand img { width: 33px; height: 33px; }
  .desktop-nav, .login-button { display: none; }

  .menu-toggle {
    display: grid;
    width: 42px;
    height: 42px;
    padding: 0;
    border: 0;
    border-radius: 11px;
    place-items: center;
    background: #ededeb;
    cursor: pointer;
  }

  .menu-toggle span { display: block; grid-area: 1 / 1; width: 17px; height: 1px; background: #080808; transition: transform .25s ease; }
  .menu-toggle span:first-child { transform: translateY(-3px); }
  .menu-toggle span:last-child { transform: translateY(3px); }
  .menu-toggle[aria-expanded="true"] span:first-child { transform: rotate(45deg); }
  .menu-toggle[aria-expanded="true"] span:last-child { transform: rotate(-45deg); }

  .mobile-menu {
    display: flex;
    width: calc(100% - 32px);
    max-height: 0;
    margin: 8px auto 0;
    padding: 0 18px;
    overflow: hidden;
    border: 1px solid transparent;
    border-radius: 16px;
    flex-direction: column;
    background: rgba(2, 2, 2, .96);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    pointer-events: auto;
    opacity: 0;
    transition: max-height .3s ease, padding .3s ease, opacity .25s ease, border-color .25s ease;
  }

  .mobile-menu.open { max-height: 390px; padding-block: 13px; border-color: var(--line); opacity: 1; }
  .mobile-menu a { padding: 11px 3px; border-bottom: 1px solid var(--line-soft); color: #c9c9c6; font-size: 13px; }
  .mobile-menu a:last-child { border-bottom: 0; color: #fff; }
  .frame { width: calc(100% - 20px); }
  .hero { min-height: 660px; }
  .hero-image { object-position: 53% center; }
  .hero-content { margin-top: 42px; }
  .hero h1 { margin-top: 22px; font-size: clamp(42px, 12vw, 58px); }
  .hero-content > p { font-size: 14px; }
  .access-main { grid-template-columns: 1fr 1fr; grid-template-rows: auto; }
  .connection-visual { min-height: 260px; }
  .access-copy { grid-column: auto; padding: 38px 28px; }
  .access-copy h2 { font-size: 25px; }
  .globe-cell, .mini-stat { min-height: 145px; }
  .mini-stat:nth-of-type(3) { border-right: 1px solid var(--line); }
  .globe-cell { order: 5; grid-column: 1 / 3; border-right: 0; }
  .services-panel { padding: 38px 28px; }
  .services-panel ul { grid-template-columns: 1fr 1fr; }
  .manifesto { min-height: 330px; }
  .manifesto p br { display: none; }
  .about { padding: 80px 0 0; }
  .about-heading, .pricing-heading, .faq-heading { grid-template-columns: 1fr; gap: 29px; }
  .about-heading { padding-inline: 26px; }
  .about-heading h2, .pricing-heading h2, .faq-heading h2 { font-size: 42px; }
  .reason-grid { grid-template-columns: 1fr; }
  .reason-grid article { min-height: 0; border-right: 0; border-bottom: 1px solid var(--line); }
  .reason-grid article:last-child { border-bottom: 0; }
  .reason-grid article > div { min-height: 0; }
  .reason-grid img { height: auto; aspect-ratio: 16 / 8.5; }
  .advantages-hero { grid-template-columns: 1fr; }
  .phone-art { min-height: 470px; border-right: 0; border-bottom: 1px solid var(--line); }
  .advantages-copy { padding: 58px 31px 65px; }
  .advantages-copy h2 { font-size: 42px; }
  .advantages-list { grid-template-columns: 1fr; }
  .advantages-list article,
  .advantages-list article:nth-child(2n),
  .advantages-list article:nth-last-child(-n+2) { min-height: 0; padding: 30px 28px; border-right: 0; border-bottom: 1px solid var(--line); }
  .advantages-list article:last-child { border-bottom: 0; }
  .devices { padding: 78px 20px 82px; }
  .devices-heading { align-items: flex-start; flex-direction: column; margin-bottom: 40px; }
  .devices-heading h2 { font-size: 40px; }
  .device-grid { grid-template-columns: repeat(2, 1fr); }
  .reviews { padding-block: 80px 92px; }
  .reviews-heading { padding-inline: 18px; }
  .reviews-heading h2 { font-size: 39px; }
  .reviews-heading p br { display: none; }
  .pricing { padding: 72px 0 0; }
  .pricing-heading { padding-inline: 26px; }
  .price-grid { grid-template-columns: 1fr; gap: 15px; padding: 12px 6px 34px; }
  .price-grid article {
    min-height: 470px;
    padding: 26px 28px;
    border: 1px solid rgba(120, 190, 220, .16);
    border-radius: 20px;
  }
  .price-grid article.featured { border-color: rgba(82, 205, 255, .28); }
  .faq { padding: 82px 27px 92px; }
  .final-cta { min-height: 470px; }
  .final-cta h2 { font-size: 44px; }
  .footer-grid { grid-template-columns: 1fr 1fr; padding: 55px 28px; gap: 50px; }
  .footer-brand { grid-column: 1 / 3; }
}

@media (max-width: 480px) {
  .hero { min-height: 630px; }
  .hero-content { width: calc(100% - 30px); margin-top: 48px; }
  .hero h1 { font-size: 42px; }
  .hero-content > p br { display: none; }
  .hero-actions { width: 100%; }
  .button { min-width: 0; flex: 1; padding-inline: 14px; }
  .platform-line { gap: 14px; }
  .access-main { grid-template-columns: 1fr; }
  .connection-visual, .access-copy, .mini-stat, .globe-cell { grid-column: auto; border-right: 0; }
  .connection-visual { min-height: 290px; }
  .mini-stat { min-height: 130px; }
  .mini-stat.centered { text-align: left; }
  .globe-cell { order: initial; min-height: 180px; }
  .services-panel ul { grid-template-columns: 1fr; }
  .manifesto { min-height: 300px; padding-inline: 22px; }
  .manifesto p { font-size: 23px; }
  .about-heading h2, .advantages-copy h2, .pricing-heading h2, .faq-heading h2, .devices-heading h2, .reviews-heading h2 { font-size: 35px; }
  .phone-art { min-height: 410px; }
  .phone { right: 14%; bottom: -220px; width: 58%; }
  .device-grid { gap: 8px; }
  .device-grid article { min-height: 205px; }
  .pricing-heading { padding-inline: 18px; }
  .price-grid { gap: 14px; padding: 10px 2px 30px; }
  .price-grid article { min-height: 460px; padding: 24px 22px; }
  .plan-symbol { margin-bottom: 14px; }
  .price { margin-top: 18px; }
  .price-grid ul { margin-block: 20px 22px; }
  .price { font-size: 46px; }
  .faq-list button span { max-width: calc(100% - 45px); font-size: 14px; }
  .final-cta h2 { font-size: 38px; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-brand { grid-column: auto; }
}

@media (max-width: 360px) {
  .hero h1 { font-size: 37px; }
  .eyebrow { font-size: 9px; }
  .button { font-size: 12px; }
  .device-grid { grid-template-columns: 1fr; }
  .device-grid article { min-height: 215px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { scroll-behavior: auto !important; transition-duration: .01ms !important; animation-duration: .01ms !important; animation-iteration-count: 1 !important; }
  .reveal { opacity: 1; transform: none; }
  .device-grid article,
  .device-grid article > div svg {
    opacity: 1;
    transform: none;
    transition-delay: 0ms;
  }
  .device-grid article::before { display: none; }
  .price-grid article,
  .price-grid .price,
  .price-grid li {
    opacity: 1;
    transform: none;
    transition-delay: 0ms;
  }
  .price-grid article::after { display: none; }
  .reviews-viewport { overflow-x: auto; scrollbar-width: none; }
  .reviews-viewport::-webkit-scrollbar { display: none; }
  .reviews-track,
  .reviews-track.reveal,
  .reviews-track.visible.is-carousel-ready { transform: none; transition: none; will-change: auto; }
  .reviews-track article { opacity: 1; transform: none; }
  .reviews-track [data-review-clone] { display: none; }
  .reviews-track b span { color: #d7d7d5; text-shadow: none; transform: none; }
}

html.admin-preview-mode .admin-preview-selected {
  outline: 2px solid rgba(74, 214, 255, .72);
  outline-offset: -2px;
  box-shadow:
    0 0 0 1px rgba(74, 214, 255, .18),
    0 0 34px rgba(30, 178, 255, .12);
}

[data-cta-id].cta-hidden {
  display: none !important;
}
