:root {
--bg: #f8fbff;
  --text: #07142f;
  --text-2: #50607f;
  --text-3: #7a89a8;
  --blue: #2468f2;
  --blue-2: #2fa4ff;
  --cyan: #28c9d2;
  --purple: #795fff;
  --green: #0f9f45;
  --border: rgba(71, 105, 160, .16);
  --shadow-xs: 0 5px 18px rgba(21, 58, 122, .05);
  --shadow-sm: 0 12px 34px rgba(20, 56, 120, .08);
  --max: 1424px;
  --ease: cubic-bezier(.2,.8,.2,1);
}

* {
box-sizing: border-box;
}

html {
min-height: 100%;
  scroll-behavior: smooth;
  background: var(--bg);
}

body {
margin: 0;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background: radial-gradient(850px 520px at 72% 19%, rgba(68, 135, 255, .13), transparent 65%),
        radial-gradient(620px 460px at 35% 34%, rgba(46, 201, 210, .055), transparent 72%),
        linear-gradient(180deg, #ffffff 0%, #f7fbff 49%, #ffffff 100%);
  overflow-x: hidden;
  text-rendering: geometricPrecision;
  -webkit-font-smoothing: antialiased;
}

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

button {
font: inherit;
}

.skip-link {
position: fixed;
  left: 16px;
  top: -80px;
  z-index: 100;
  padding: 12px 16px;
  border-radius: 12px;
  background: var(--text);
  color: #fff;
  transition: top .2s var(--ease);
}

.skip-link:focus {
top: 14px;
}

.site-header {
position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid rgba(59, 93, 151, .12);
  background: rgba(255,255,255,.72);
  backdrop-filter: blur(22px) saturate(140%);
  -webkit-backdrop-filter: blur(22px) saturate(140%);
}

.header-inner {
width: min(var(--max), calc(100% - 96px));
  height: 84px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 240px 1fr 350px;
  align-items: center;
  gap: 24px;
}

.brand {
display: inline-flex;
  align-items: center;
  width: 196px;
  transition: transform .22s var(--ease), opacity .22s var(--ease);
}

.brand:hover {
transform: translateY(-1px);
  opacity: .96;
}

.brand img {
width: 196px;
  height: auto;
  display: block;
}

.nav {
display: flex;
  justify-content: center;
  gap: clamp(34px, 4vw, 58px);
  font-weight: 650;
  font-size: 16px;
  letter-spacing: -.012em;
}

.nav a {
position: relative;
  color: #0c1731;
  transition: color .18s var(--ease);
}

.nav a::after {
content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -8px;
  height: 2px;
  border-radius: 99px;
  transform: scaleX(0);
  transform-origin: center;
  background: linear-gradient(90deg, var(--blue), var(--cyan));
  transition: transform .22s var(--ease);
}

.nav a:hover {
color: var(--blue);
}

.nav a:hover::after {
transform: scaleX(1);
}

.header-actions {
display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 28px;
  font-weight: 650;
  font-size: 16px;
}

.btn {
display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  min-height: 58px;
  padding: 0 30px;
  border-radius: 14px;
  border: 1px solid transparent;
  cursor: pointer;
  user-select: none;
  white-space: nowrap;
  font-weight: 760;
  font-size: 17px;
  letter-spacing: -.015em;
  transition: transform .24s var(--ease), box-shadow .24s var(--ease), border-color .24s var(--ease), background .24s var(--ease);
  will-change: transform;
}

.btn .arrow {
font-size: 20px;
  line-height: 1;
  transform: translateY(-1px);
  transition: transform .24s var(--ease);
}

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

.btn:hover .arrow {
transform: translate(4px, -1px);
}

.btn:active {
transform: translateY(0);
}

.btn-primary {
color: #fff;
  background: linear-gradient(135deg, #1f5ff2 0%, #237ff6 48%, #1f9df2 100%);
  box-shadow: 0 14px 32px rgba(35, 109, 242, .24), inset 0 1px 0 rgba(255,255,255,.32);
}

.btn-primary:hover {
box-shadow: 0 20px 42px rgba(35, 109, 242, .31), inset 0 1px 0 rgba(255,255,255,.34);
}

.btn-secondary {
color: var(--text);
  background: rgba(255,255,255,.72);
  border-color: rgba(64, 97, 156, .18);
  box-shadow: var(--shadow-xs), inset 0 1px 0 rgba(255,255,255,.96);
}

.btn-secondary:hover {
border-color: rgba(36,104,242,.28);
  box-shadow: var(--shadow-sm);
}

:focus-visible {
outline: 3px solid rgba(47,164,255,.44);
  outline-offset: 4px;
  border-radius: 12px;
}

main {
position: relative;
  flex: 1 0 auto;
}

.hero {
width: min(var(--max), calc(100% - 96px));
  margin: 0 auto;
  min-height: 650px;
  display: grid;
  grid-template-columns: minmax(540px, 0.9fr) minmax(670px, 1.1fr);
  align-items: center;
  gap: 48px;
  padding: 34px 0 28px;
}

.hero-copy {
min-width: 0;
  padding: 14px 0 0;
  max-width: 680px;
}

.vv-hero-chips {
display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 42px;
}

.vv-hero-chip {
display: inline-flex;
  align-items: center;
  gap: 9px;
  min-height: 36px;
  padding: 0 14px;
  border-radius: 13px;
  color: var(--blue);
  background: rgba(255,255,255,.72);
  border: 1px solid rgba(36, 104, 242, .20);
  box-shadow: 0 8px 24px rgba(38, 100, 219, .055), inset 0 1px 0 rgba(255,255,255,.9);
  font-weight: 750;
  font-size: 15px;
  letter-spacing: -.01em;
  white-space: nowrap;
}

.vv-hero-chip--highlight {
color: #168a45;
  border-color: rgba(15, 159, 69, .16);
  background: rgba(240, 252, 245, .82);
}

.vv-hero-chip__prefix {
line-height: 1;
  transform: translateY(-.5px);
}

h1 {
margin: 0;
  max-width: 720px;
  font-size: clamp(58px, 4.55vw, 73px);
  line-height: .985;
  letter-spacing: -.062em;
  font-weight: 830;
  color: var(--text);
}

.lead {
margin: 26px 0 0;
  max-width: clamp(410px, 30vw, 440px);
  color: var(--text-2);
  font-size: 20px;
  line-height: 1.52;
  letter-spacing: -.018em;
  font-weight: 500;
}

.cta-row {
display: flex;
  align-items: center;
  gap: 28px;
  margin-top: 26px;
}

.cta-row .btn {
flex: 0 0 auto;
  white-space: nowrap;
}

@keyframes waveSmall {
0%,
100% {
transform: scaleY(.62);
    opacity: .7;
}

50% {
transform: scaleY(1.05);
    opacity: 1;
}
}

@keyframes wave {
0%,
100% {
transform: scaleY(.48);
    opacity: .55;
}

45% {
transform: scaleY(1.02);
    opacity: 1;
}

70% {
transform: scaleY(.76);
    opacity: .82;
}
}

@keyframes pulse {
0% {
transform: scale(.72);
    opacity: .55;
}

65% {
transform: scale(1.35);
    opacity: .04;
}

100% {
transform: scale(1.35);
    opacity: 0;
}
}

.site-footer {
margin-top: auto;
  background: rgba(255,255,255,.58);
}

.footer-inner {
width: min(var(--max), calc(100% - 96px));
  margin: 0 auto;
  padding: 27px 0 32px;
  display: grid;
  grid-template-columns: 1.35fr .62fr .62fr .62fr 1fr;
  gap: 48px;
  align-items: start;
}

.copyright {
color: #7685a2;
  font-size: 13px;
  font-weight: 550;
}

.socials {
display: flex;
  gap: 18px;
  margin-top: 18px;
}

.socials a {
width: 42px;
  height: 42px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(63,98,156,.13);
  background: rgba(255,255,255,.64);
  color: #233453;
  box-shadow: var(--shadow-xs);
  transition: transform .22s var(--ease), color .22s var(--ease), border-color .22s var(--ease);
}

.socials a:hover {
transform: translateY(-2px);
  color: var(--blue);
  border-color: rgba(36,104,242,.25);
}

@media (min-width: 1321px) and (max-width: 1380px) {
.cta-row {
gap: 18px;
}

.cta-row .btn {
min-height: 56px;
    padding: 0 24px;
    font-size: 16px;
}
}

@media (max-width: 1360px) {
.header-inner,
.hero,
.footer-inner {
width: min(100% - 48px, var(--max));
}

.hero {
grid-template-columns: 1fr;
    gap: 38px;
    padding-top: 42px;
    min-height: auto;
}

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

h1 {
max-width: 780px;
}

.lead {
max-width: 620px;
}
}

@media (max-width: 900px) {
.header-inner {
height: 72px;
    grid-template-columns: auto 1fr auto;
    gap: 12px;
}

.brand {
width: 160px;
}

.brand img {
width: 160px;
}

.nav {
display: none;
}

.header-actions {
gap: 14px;
    font-size: 15px;
}

.header-actions .btn {
min-height: 46px;
    padding: 0 18px;
    font-size: 15px;
    border-radius: 12px;
}

.hero {
width: min(100% - 28px, 720px);
    min-height: auto;
    padding: 30px 0 24px;
}

.vv-hero-chips {
margin-bottom: 28px;
    gap: 8px;
}

.vv-hero-chip {
min-height: 34px;
    padding: 0 12px;
    font-size: 14px;
}

h1 {
font-size: clamp(42px, 11vw, 64px);
    line-height: 1.02;
    letter-spacing: -.058em;
}

.lead {
font-size: 18px;
    max-width: 520px;
}

.cta-row {
margin-top: 26px;
    gap: 14px;
}

.btn {
min-height: 54px;
    padding: 0 22px;
    font-size: 16px;
}

.footer-inner {
width: min(100% - 28px, 720px);
    grid-template-columns: 1fr 1fr;
    gap: 30px 24px;
}
}

@media (max-width: 560px) {
body {
background: linear-gradient(180deg, #fff 0%, #f7fbff 56%, #fff 100%);
}

.header-inner {
width: calc(100% - 28px);
}

.brand,
.brand img {
width: 148px;
}

.header-actions .btn {
display: none;
}

.hero {
width: calc(100% - 28px);
    padding-top: 26px;
    padding-bottom: 24px;
    gap: 24px;
}

.vv-hero-chips {
margin-bottom: 24px;
    gap: 8px;
    justify-content: center;
}

.vv-hero-chip {
font-size: 13px;
}

h1 {
font-size: clamp(39px, 11.6vw, 48px);
    line-height: 1.03;
}

.lead {
font-size: 17px;
    line-height: 1.52;
    margin-top: 22px;
    max-width: 340px;
}

.cta-row {
display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
}

.btn {
width: 100%;
}

.footer-inner {
grid-template-columns: 1fr;
    padding-top: 25px;
}

.socials {
gap: 12px;
}
}

@media (prefers-reduced-motion: reduce) {
*,
*::before,
*::after {
animation-duration: .001ms;
    animation-iteration-count: 1;
    scroll-behavior: auto;
    transition-duration: .001ms;
}
}

.site-footer {
border-top: 1px solid rgba(63,98,156,.10);
  background: rgba(255,255,255,.52);
}

.compact-footer {
width: min(var(--max), calc(100% - 96px));
  margin: 0 auto;
  padding: 18px 0 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 26px;
}

.footer-note {
min-width: 250px;
  display: flex;
  align-items: center;
  gap: 13px;
  color: var(--text-2);
}

.footer-note p {
margin: 0;
  color: var(--text-2);
  font-size: 13px;
  line-height: 1.35;
  font-weight: 560;
  white-space: nowrap;
}

.copyright {
color: #6f7f9b;
  font-size: 13px;
  font-weight: 700;
  white-space: nowrap;
}

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

.footer-links a {
color: var(--text-2);
  font-size: 13px;
  font-weight: 650;
  transition: color .2s var(--ease), transform .2s var(--ease);
}

.footer-links a:hover {
color: var(--blue);
  transform: translateY(-1px);
}

.footer-links::before,
.footer-links::after,
.footer-links a::before,
.footer-links a::after {
content: none;
  display: none;
}

.compact-footer .socials {
display: flex;
  align-items: center;
  gap: 10px;
  margin: 0;
  flex: 0 0 auto;
}

.compact-footer .socials a {
width: 36px;
  height: 36px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(63,98,156,.12);
  background: rgba(255,255,255,.62);
  color: #31415f;
  box-shadow: none;
  transition: transform .22s var(--ease), color .22s var(--ease), border-color .22s var(--ease), background .22s var(--ease);
}

.compact-footer .socials a:hover {
transform: translateY(-2px);
  color: var(--blue);
  border-color: rgba(36,104,242,.24);
  background: rgba(255,255,255,.86);
}

@media (max-width: 1120px) {
.compact-footer {
align-items: flex-start;
    flex-direction: column;
    gap: 16px;
}

.footer-note {
min-width: 0;
}

.footer-links {
justify-content: flex-start;
}
}

@media (max-width: 900px) {
.compact-footer {
width: min(100% - 28px, 720px);
    padding: 22px 0 26px;
}
}

@media (max-width: 560px) {
.footer-note {
flex-direction: column;
    align-items: flex-start;
    gap: 5px;
}

.footer-note p {
white-space: normal;
}

.footer-links {
gap: 9px 16px;
}
}

@media (min-width: 1181px) and (max-width: 1360px) {
.header-inner,
.hero,
.compact-footer {
width: min(100% - 48px, var(--max));
}

.hero {
grid-template-columns: minmax(520px, .92fr) minmax(580px, 1.08fr);
    align-items: center;
    gap: clamp(28px, 3vw, 42px);
    min-height: 620px;
    padding: 34px 0 28px;
}

.hero-copy {
max-width: 620px;
    padding-top: 0;
}

.vv-hero-chips {
margin-bottom: 34px;
}

h1 {
max-width: 620px;
    font-size: clamp(52px, 4.35vw, 62px);
    line-height: 1.01;
}

.lead {
max-width: 520px;
    font-size: 19px;
}

.cta-row {
gap: 20px;
}

.cta-row .btn {
min-height: 56px;
    padding: 0 26px;
}
}

@media (min-width: 901px) and (max-width: 1180px) {
.hero {
gap: 34px;
    padding-top: 38px;
}

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

h1 {
max-width: 720px;
    font-size: clamp(52px, 6.1vw, 64px);
    line-height: 1.01;
}

.lead {
max-width: 620px;
    font-size: 19px;
}
}

@media (max-width: 900px) {
.hero-copy {
padding-top: 0;
}
}

@media (max-width: 760px) {
.hero {
padding-top: 28px;
    gap: 26px;
}

.vv-hero-chips {
margin-bottom: 26px;
}
}

@media (max-width: 430px) {
.hero {
width: calc(100% - 28px);
}

.brand,
.brand img {
width: 138px;
}

.header-inner {
height: 70px;
}

h1 {
font-size: clamp(39px, 11.2vw, 47px);
    letter-spacing: -.06em;
}

.lead {
max-width: 100%;
}
}

@media (max-width: 340px) {
.brand,
.brand img {
width: 132px;
}

h1 {
font-size: 38px;
}

.vv-hero-chip {
font-size: 12.5px;
    padding-inline: 11px;
}
}

@media (min-width: 1361px) and (max-width: 1400px) {
.hero {
grid-template-columns: minmax(560px, .92fr) minmax(620px, 1.08fr);
    gap: 34px;
}

h1 {
max-width: 610px;
    font-size: clamp(56px, 4.35vw, 60px);
    line-height: 1.01;
}

.lead {
max-width: 500px;
}
}

@media (min-width: 1180px) and (max-width: 1360px) {
.hero {
grid-template-columns: minmax(500px, .9fr) minmax(570px, 1.1fr);
    gap: 28px;
    min-height: 620px;
    padding: 34px 0 28px;
    align-items: center;
}

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

h1 {
max-width: 600px;
    font-size: clamp(50px, 4.25vw, 58px);
    line-height: 1.01;
}
}

@media (min-width: 1321px) and (max-width: 1380px) {
.hero {
grid-template-columns: minmax(560px, .94fr) minmax(650px, 1.06fr);
    gap: 36px;
}

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

h1 {
max-width: 590px;
    font-size: 58px;
    line-height: 1.01;
}

.lead {
max-width: 540px;
}
}

@media (min-width: 1381px) and (max-width: 1440px) {
.hero {
grid-template-columns: minmax(590px, .94fr) minmax(650px, 1.06fr);
    gap: 40px;
}

h1 {
max-width: 620px;
}
}

@media (max-width: 1180px) {
.hero {
justify-items: center;
}

.hero-copy {
width: 100%;
    max-width: min(720px, 100%);
    margin-inline: auto;
    justify-self: center;
    text-align: center;
}

.hero-copy h1,
.hero-copy .lead {
margin-left: auto;
    margin-right: auto;
}

.hero-copy .cta-row {
justify-content: center;
}

.hero-copy .vv-hero-chips {
justify-content: center;
}
}

@media (max-width: 560px) {
.hero-copy .cta-row {
width: min(100%, 420px);
    margin-left: auto;
    margin-right: auto;
}
}

@media (max-width: 430px) {
.hero-copy h1 {
font-size: clamp(32.5px, 10.2vw, 44px);
    line-height: 1.04;
    letter-spacing: -.058em;
}
}

.header-inner {
grid-template-columns: 220px minmax(0, 1fr) 360px;
}

.nav {
gap: clamp(20px, 2.4vw, 38px);
  min-width: 0;
}

.header-actions {
gap: 16px;
}

@media (min-width: 901px) and (max-width: 1180px) {
.header-inner {
width: min(100% - 40px, var(--max));
    grid-template-columns: 160px minmax(0, 1fr) 170px;
    gap: 16px;
}

.brand,
.brand img {
width: 160px;
}

.nav {
gap: clamp(10px, 1.55vw, 18px);
    font-size: 14px;
    letter-spacing: -.018em;
}

.header-actions {
gap: 12px;
    font-size: 14px;
}

.header-actions .btn {
min-height: 44px;
    padding: 0 17px;
    font-size: 15px;
    border-radius: 12px;
}
}

@media (min-width: 901px) and (max-width: 1010px) {
.header-inner {
grid-template-columns: 150px minmax(0, 1fr) 118px;
    gap: 14px;
}

.brand,
.brand img {
width: 150px;
}

.nav {
gap: 11px;
    font-size: 13.5px;
}

.header-actions .btn {
padding: 0 16px;
}
}

@media (max-width: 560px) {
.footer-links {
gap: 8px 10px;
}
}

.mobile-menu {
display: none;
  position: relative;
  z-index: 80;
}

.menu-button {
list-style: none;
  width: 44px;
  min-width: 44px;
  height: 44px;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  padding: 0;
  border-radius: 13px;
  border: 1px solid rgba(64, 97, 156, .16);
  background: rgba(255,255,255,.78);
  box-shadow: var(--shadow-xs), inset 0 1px 0 rgba(255,255,255,.95);
  color: var(--text);
  cursor: pointer;
  user-select: none;
  font-weight: 760;
  font-size: 15px;
  letter-spacing: -.015em;
  transition: transform .22s var(--ease), border-color .22s var(--ease), box-shadow .22s var(--ease), color .22s var(--ease);
}

.menu-button::-webkit-details-marker {
display: none;
}

.menu-button:hover {
transform: translateY(-1px);
  border-color: rgba(36,104,242,.26);
  color: var(--blue);
  box-shadow: var(--shadow-sm), inset 0 1px 0 rgba(255,255,255,.96);
}

.burger-lines {
width: 18px;
  height: 14px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  flex: 0 0 auto;
}

.burger-lines span {
display: block;
  height: 2px;
  border-radius: 99px;
  background: currentColor;
  transition: transform .22s var(--ease), opacity .22s var(--ease);
}

.mobile-menu[open] .burger-lines span:nth-child(1) {
transform: translateY(6px) rotate(45deg);
}

.mobile-menu[open] .burger-lines span:nth-child(2) {
opacity: 0;
}

.mobile-menu[open] .burger-lines span:nth-child(3) {
transform: translateY(-6px) rotate(-45deg);
}

.mobile-nav {
position: absolute;
  right: 0;
  top: calc(100% + 12px);
  width: min(286px, calc(100vw - 28px));
  padding: 9px;
  border-radius: 20px;
  border: 1px solid rgba(63,98,156,.16);
  background: rgba(255,255,255,.94);
  box-shadow: 0 24px 70px rgba(20, 56, 120, .16), inset 0 1px 0 rgba(255,255,255,.96);
  backdrop-filter: blur(18px) saturate(140%);
  -webkit-backdrop-filter: blur(18px) saturate(140%);
}

.mobile-nav a {
display: flex;
  align-items: center;
  min-height: 46px;
  padding: 0 13px;
  border-radius: 13px;
  color: var(--text);
  font-size: 15px;
  font-weight: 720;
  letter-spacing: -.015em;
  transition: background .18s var(--ease), color .18s var(--ease), transform .18s var(--ease);
}

.mobile-nav a:hover {
color: var(--blue);
  background: rgba(36,104,242,.07);
  transform: translateX(2px);
}

@media (max-width: 1260px) {
.header-inner {
width: min(100% - 40px, var(--max));
    height: 72px;
    grid-template-columns: auto minmax(0, 1fr) auto;
    gap: 16px;
}

.brand,
.brand img {
width: 164px;
}

.nav {
display: none;
}

.header-actions {
justify-self: end;
    gap: 12px;
    font-size: 15px;
}

.header-actions .header-start,
.header-actions .btn {
display: none;
}

.mobile-menu {
order: 3;
    display: block;
}
}

@media (max-width: 560px) {
.header-inner {
width: calc(100% - 28px);
    height: 70px;
    gap: 10px;
}

.brand,
.brand img {
width: 148px;
}

.header-actions {
gap: 8px;
}

.menu-button {
width: 42px;
    min-width: 42px;
    height: 42px;
    min-height: 42px;
    padding: 0;
    font-size: 14px;
}

.mobile-nav {
top: calc(100% + 10px);
}
}

@media (max-width: 360px) {
.header-inner {
gap: 6px;
}

.brand,
.brand img {
width: 106px;
}

.menu-button {
width: 38px;
    min-width: 38px;
    height: 38px;
    min-height: 38px;
    padding: 0;
}

.burger-lines {
width: 17px;
    height: 13px;
}

.header-actions {
gap: 6px;
}
}

:root {
--blue: #245fe8;
  --blue-2: #2686ea;
  --cyan: #1fb3c2;
  --shadow-blue: 0 22px 58px rgba(36, 95, 232, .22);
}

.btn-primary {
background: linear-gradient(135deg, #2457e6 0%, #2870ea 52%, #1d8fd4 100%);
  box-shadow: 0 14px 32px rgba(36, 95, 232, .23), inset 0 1px 0 rgba(255,255,255,.30);
}

.btn-primary:hover {
box-shadow: 0 19px 40px rgba(36, 95, 232, .29), inset 0 1px 0 rgba(255,255,255,.32);
}

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

.cta-row .btn {
width: 248px;
  flex: 0 0 248px;
}

@media (min-width: 1261px) {
.header-inner {
grid-template-columns: 220px minmax(0, 1fr) 398px;
}

.header-actions .header-start {
width: 138px;
    min-width: 138px;
    min-height: 52px;
    padding: 0 18px;
    border-radius: 14px;
    font-size: 16px;
}

.header-actions .header-start {
gap: 12px;
}
}

@media (min-width: 701px) and (max-width: 1320px) {
.cta-row .btn {
width: 236px;
    flex-basis: 236px;
}
}

@media (max-width: 700px) {
.cta-row .btn {
width: 100%;
    flex: none;
}
}

@media (max-width: 900px) {
.hero-copy .cta-row {
display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    width: min(100%, 560px);
    max-width: 560px;
    margin-left: auto;
    margin-right: auto;
    gap: 14px;
}

.hero-copy .cta-row .btn {
width: 100%;
    min-width: 0;
    flex: none;
    padding-left: 16px;
    padding-right: 16px;
}
}

@media (max-width: 560px) {
.hero-copy .cta-row {
grid-template-columns: 1fr;
    width: min(100%, 420px);
    max-width: 420px;
}

.hero-copy .cta-row .btn {
min-height: 54px;
}
}

@media (max-width: 380px) {
.hero-copy .cta-row {
width: 100%;
}

.hero-copy .cta-row .btn {
min-height: 52px;
    padding-left: 14px;
    padding-right: 14px;
    font-size: 15.5px;
}
}

@media (min-width: 701px) and (max-width: 1260px) {
.mobile-nav {
background: rgba(255,255,255,.985);
    border-color: rgba(63,98,156,.18);
    box-shadow: 0 24px 70px rgba(20, 56, 120, .18), inset 0 1px 0 rgba(255,255,255,.98);
}
}

@media (max-width: 700px) {
.hero-copy .cta-row {
display: grid;
    grid-template-columns: 1fr;
    width: min(100%, 420px);
    max-width: 420px;
    margin-left: auto;
    margin-right: auto;
    gap: 12px;
}

.hero-copy .cta-row .btn {
width: 100%;
    min-width: 0;
    flex: none;
    justify-self: stretch;
}
}

@media (max-width: 700px) {
.site-header {
transition: padding-bottom .24s var(--ease);
}

.mobile-menu {
position: static;
}

.site-header:has(.mobile-menu[open]) {
padding-bottom: 322px;
}

.mobile-nav {
position: absolute;
    left: 14px;
    right: 14px;
    top: 82px;
    width: auto;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    display: none;
    z-index: 70;
}

.mobile-menu[open] .mobile-nav {
display: grid;
    gap: 10px;
}

.mobile-nav a {
min-height: 50px;
    padding: 0 18px;
    border-radius: 18px;
    border: 1px solid rgba(63,98,156,.16);
    background: rgba(255,255,255,.96);
    box-shadow: var(--shadow-xs), inset 0 1px 0 rgba(255,255,255,.96);
    color: var(--text-2);
    font-size: 17px;
    font-weight: 760;
}

.mobile-nav a:hover {
transform: translateX(0);
    color: var(--blue);
    background: rgba(248,251,255,.98);
}
}

@media (max-width: 560px) {
.site-header:has(.mobile-menu[open]) {
padding-bottom: 314px;
}

.mobile-nav {
top: 80px;
}
}

@media (max-width: 360px) {
.site-header:has(.mobile-menu[open]) {
padding-bottom: 299px;
}

.mobile-nav {
left: 10px;
    right: 10px;
    top: 76px;
}

.mobile-nav a {
min-height: 48px;
    border-radius: 16px;
    font-size: 16px;
}
}

.header-actions .top-actions-auth {
display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 16px;
  order: 1;
  min-width: 0;
}

.header-actions .top-actions-auth .header-login {
order: 1;
}

.header-actions .header-start {
order: 2;
}

.header-actions .mobile-menu {
order: 3;
}

.header-login {
position: relative;
  color: #0c1731;
  transition: color .18s var(--ease);
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  white-space: nowrap;
  text-decoration: none;
  font-weight: 650;
}

.header-login::after {
content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 2px;
  height: 2px;
  border-radius: 99px;
  transform: scaleX(0);
  transform-origin: center;
  background: linear-gradient(90deg, var(--blue), var(--cyan));
  transition: transform .22s var(--ease);
}

.header-login:hover {
color: var(--blue);
}

.header-login:hover::after {
transform: scaleX(1);
}

.socials .social-icon {
width: 36px;
  height: 36px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(63,98,156,.12);
  background: rgba(255,255,255,.62);
  color: #31415f;
  box-shadow: none;
}

@media (min-width: 1261px) {
.header-actions .header-start {
width: 138px;
    min-width: 138px;
    min-height: 52px;
    padding: 0 18px;
    border-radius: 14px;
    font-size: 16px;
}
}

@media (max-width: 1260px) {
.header-actions .top-actions-auth {
gap: 8px;
    order: 1;
}

.header-login {
order: 1;
    font-size: 15px;
}
}

@media (max-width: 560px) {
.header-actions .top-actions-auth {
gap: 8px;
}

.header-login {
font-size: 14px;
    min-height: 42px;
}
}

@media (max-width: 360px) {
.header-actions .top-actions-auth {
gap: 6px;
}

.header-login {
font-size: 13px;
}
}

.compact-footer .footer-note {
align-items: baseline;
  gap: 13px;
}

.compact-footer .footer-note p {
margin: 0;
  color: #6f7f9b;
  font-size: 13px;
  line-height: 1;
  font-weight: 700;
  letter-spacing: 0;
  white-space: nowrap;
}

@media (max-width: 560px) {
.header-inner {
width: calc(100% - 20px);
    height: 64px;
    gap: 8px;
}

.brand,
.brand img {
width: 132px;
}

.header-actions {
gap: 6px;
}

.header-actions .top-actions-auth {
gap: 6px;
}

.header-login {
min-height: 36px;
    font-size: 13.5px;
    line-height: 1;
}

.mobile-menu {
margin-right: -4px;
}

.menu-button {
width: 38px;
    min-width: 38px;
    height: 38px;
    min-height: 38px;
    border-radius: 12px;
}

.burger-lines {
width: 17px;
    height: 13px;
}

.mobile-nav {
top: 72px;
}

.site-header:has(.mobile-menu[open]) {
padding-bottom: 304px;
}
}

@media (max-width: 380px) {
.header-inner {
width: calc(100% - 18px);
    height: 62px;
    gap: 6px;
}

.brand,
.brand img {
width: 118px;
}

.header-actions,
.header-actions .top-actions-auth {
gap: 5px;
}

.header-login {
min-height: 34px;
    font-size: 13px;
}

.menu-button {
width: 36px;
    min-width: 36px;
    height: 36px;
    min-height: 36px;
    border-radius: 11px;
}

.mobile-menu {
margin-right: -5px;
}

.mobile-nav {
left: 10px;
    right: 10px;
    top: 68px;
}

.site-header:has(.mobile-menu[open]) {
padding-bottom: 294px;
}
}

@media (max-width: 340px) {
.brand,
.brand img {
width: 106px;
}

.header-login {
min-height: 32px;
    font-size: 12.5px;
}

.menu-button {
width: 34px;
    min-width: 34px;
    height: 34px;
    min-height: 34px;
}

.burger-lines {
width: 16px;
    height: 12px;
}

.mobile-nav {
top: 64px;
}
}

.site-header {
position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid rgba(59, 93, 151, .12);
  background: rgba(255,255,255,.72);
  backdrop-filter: blur(22px) saturate(140%);
  -webkit-backdrop-filter: blur(22px) saturate(140%);
}

.header-inner {
width: min(var(--max), calc(100% - 96px));
  height: 84px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 220px minmax(0, 1fr) 398px;
  align-items: center;
  gap: 24px;
}

.brand {
display: inline-flex;
  align-items: center;
  width: 196px;
  transition: transform .22s var(--ease), opacity .22s var(--ease);
}

.brand:hover {
transform: translateY(-1px);
  opacity: .96;
}

.brand img {
width: 196px;
  height: auto;
  display: block;
}

.nav {
display: flex;
  justify-content: center;
  gap: clamp(20px, 2.4vw, 38px);
  min-width: 0;
  font-weight: 650;
  font-size: 16px;
  letter-spacing: -.012em;
}

.nav a,
.header-login {
position: relative;
  color: #0c1731;
  transition: color .18s var(--ease);
  text-decoration: none;
}

.nav a {
white-space: nowrap;
}

.nav a::after,
.header-login::after {
content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -8px;
  height: 2px;
  border-radius: 99px;
  transform: scaleX(0);
  transform-origin: center;
  background: linear-gradient(90deg, var(--blue), var(--cyan));
  transition: transform .22s var(--ease);
}

.header-login::after {
bottom: 2px;
}

.nav a:hover,
.header-login:hover {
color: var(--blue);
}

.nav a:hover::after,
.header-login:hover::after {
transform: scaleX(1);
}

.header-actions {
display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 16px;
  font-weight: 650;
  font-size: 16px;
}

.header-actions .top-actions-auth {
display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 16px;
  order: 1;
  min-width: 0;
}

.header-actions .header-start {
order: 2;
}

.header-actions .mobile-menu {
order: 3;
}

.header-login {
display: inline-flex;
  align-items: center;
  min-height: 44px;
  white-space: nowrap;
  font-weight: 650;
}

.mobile-menu {
display: none;
  position: relative;
  z-index: 80;
}

.menu-button {
list-style: none;
  width: 44px;
  min-width: 44px;
  height: 44px;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  padding: 0;
  border-radius: 13px;
  border: 1px solid rgba(64, 97, 156, .16);
  background: rgba(255,255,255,.78);
  box-shadow: var(--shadow-xs), inset 0 1px 0 rgba(255,255,255,.95);
  color: var(--text);
  cursor: pointer;
  user-select: none;
  font-weight: 760;
  font-size: 15px;
  letter-spacing: -.015em;
  transition: transform .22s var(--ease), border-color .22s var(--ease), box-shadow .22s var(--ease), color .22s var(--ease);
}

.menu-button::-webkit-details-marker {
display: none;
}

.menu-button:hover {
transform: translateY(-1px);
  border-color: rgba(36,104,242,.26);
  color: var(--blue);
  box-shadow: var(--shadow-sm), inset 0 1px 0 rgba(255,255,255,.96);
}

.burger-lines {
width: 18px;
  height: 14px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  flex: 0 0 auto;
}

.burger-lines span {
display: block;
  height: 2px;
  border-radius: 99px;
  background: currentColor;
  transition: transform .22s var(--ease), opacity .22s var(--ease);
}

.mobile-menu[open] .burger-lines span:nth-child(1) {
transform: translateY(6px) rotate(45deg);
}

.mobile-menu[open] .burger-lines span:nth-child(2) {
opacity: 0;
}

.mobile-menu[open] .burger-lines span:nth-child(3) {
transform: translateY(-6px) rotate(-45deg);
}

.mobile-nav {
position: absolute;
  right: 0;
  top: calc(100% + 12px);
  width: min(286px, calc(100vw - 28px));
  padding: 9px;
  border-radius: 20px;
  border: 1px solid rgba(63,98,156,.16);
  background: rgba(255,255,255,.94);
  box-shadow: 0 24px 70px rgba(20, 56, 120, .16), inset 0 1px 0 rgba(255,255,255,.96);
  backdrop-filter: blur(18px) saturate(140%);
  -webkit-backdrop-filter: blur(18px) saturate(140%);
}

.mobile-nav a {
display: flex;
  align-items: center;
  min-height: 46px;
  padding: 0 13px;
  border-radius: 13px;
  color: var(--text);
  font-size: 15px;
  font-weight: 720;
  letter-spacing: -.015em;
  transition: background .18s var(--ease), color .18s var(--ease), transform .18s var(--ease);
}

.mobile-nav a:hover {
color: var(--blue);
  background: rgba(36,104,242,.07);
  transform: translateX(2px);
}

.site-footer {
margin-top: auto;
  border-top: 0;
  background: rgba(255,255,255,.52);
}

.compact-footer,
.footer-inner.compact-footer {
width: min(var(--max), calc(100% - 96px));
  margin: 0 auto;
  padding: 18px 0 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 26px;
}

.compact-footer .footer-note,
.footer-note {
min-width: 250px;
  display: flex;
  align-items: baseline;
  gap: 13px;
  color: var(--text-2);
}

.copyright {
color: #6f7f9b;
  font-size: 13px;
  line-height: 1;
  font-weight: 700;
  white-space: nowrap;
}

.compact-footer .footer-note p,
.footer-note p {
margin: 0;
  color: #6f7f9b;
  font-size: 13px;
  line-height: 1;
  font-weight: 700;
  letter-spacing: 0;
  white-space: nowrap;
}

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

.footer-links a {
color: var(--text-2);
  font-size: 13px;
  font-weight: 650;
  transition: color .2s var(--ease), transform .2s var(--ease);
}

.footer-links a:hover {
color: var(--blue);
  transform: translateY(-1px);
}

.socials {
display: flex;
  align-items: center;
  gap: 10px;
  margin: 0;
  flex: 0 0 auto;
}

.socials .social-icon,
.compact-footer .socials a {
width: 36px;
  height: 36px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(63,98,156,.12);
  background: rgba(255,255,255,.62);
  color: #31415f;
  box-shadow: none;
  transition: transform .22s var(--ease), color .22s var(--ease), border-color .22s var(--ease), background .22s var(--ease);
}

.socials .social-icon:hover,
.compact-footer .socials a:hover {
transform: translateY(-2px);
  color: var(--blue);
  border-color: rgba(36,104,242,.24);
  background: rgba(255,255,255,.86);
}

@media (min-width: 1261px) {
.header-actions .header-start,
.header-actions .btn.header-start {
width: 138px;
    min-width: 138px;
    min-height: 52px;
    padding: 0 18px;
    border-radius: 14px;
    font-size: 16px;
}

.header-actions .header-start {
gap: 12px;
}
}

@media (max-width: 1260px) {
.header-inner {
width: min(100% - 40px, var(--max));
    height: 72px;
    grid-template-columns: auto minmax(0, 1fr) auto;
    gap: 16px;
}

.brand,
.brand img {
width: 164px;
}

.nav {
display: none;
}

.header-actions {
justify-self: end;
    gap: 12px;
    font-size: 15px;
}

.header-actions .header-start,
.header-actions .btn {
display: none;
}

.header-actions .top-actions-auth {
gap: 8px;
    order: 1;
}

.header-login {
order: 1;
    display: inline-flex;
    align-items: center;
    min-height: 44px;
    white-space: nowrap;
    font-size: 15px;
}

.mobile-menu {
order: 3;
    display: block;
}
}

@media (max-width: 900px) {
.compact-footer,
.footer-inner.compact-footer {
width: min(100% - 28px, 720px);
    padding: 22px 0 26px;
    align-items: flex-start;
    flex-direction: column;
    gap: 16px;
}

.footer-note {
min-width: 0;
}

.footer-links {
justify-content: flex-start;
}
}

@media (max-width: 700px) {
.site-header {
transition: padding-bottom .24s var(--ease);
}

.mobile-menu {
position: static;
}

.site-header:has(.mobile-menu[open]) {
padding-bottom: 322px;
}

.mobile-nav {
position: absolute;
    left: 14px;
    right: 14px;
    top: 82px;
    width: auto;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    display: none;
    z-index: 70;
}

.mobile-menu[open] .mobile-nav {
display: grid;
    gap: 10px;
}

.mobile-nav a {
min-height: 50px;
    padding: 0 18px;
    border-radius: 18px;
    border: 1px solid rgba(63,98,156,.16);
    background: rgba(255,255,255,.96);
    box-shadow: var(--shadow-xs), inset 0 1px 0 rgba(255,255,255,.96);
    color: var(--text-2);
    font-size: 17px;
    font-weight: 760;
}

.mobile-nav a:hover {
transform: translateX(0);
    color: var(--blue);
    background: rgba(248,251,255,.98);
}
}

@media (max-width: 560px) {
.header-inner {
width: calc(100% - 20px);
    height: 64px;
    gap: 8px;
}

.brand,
.brand img {
width: 132px;
}

.header-actions,
.header-actions .top-actions-auth {
gap: 6px;
}

.header-login {
min-height: 36px;
    font-size: 13.5px;
    line-height: 1;
}

.mobile-menu {
margin-right: -4px;
}

.menu-button {
width: 38px;
    min-width: 38px;
    height: 38px;
    min-height: 38px;
    border-radius: 12px;
}

.burger-lines {
width: 17px;
    height: 13px;
}

.mobile-nav {
top: 72px;
}

.site-header:has(.mobile-menu[open]) {
padding-bottom: 304px;
}

.footer-note {
flex-direction: column;
    align-items: flex-start;
    gap: 5px;
}

.footer-note p {
white-space: normal;
    line-height: 1.35;
}

.footer-links {
gap: 9px 16px;
}
}

@media (max-width: 380px) {
.header-inner {
width: calc(100% - 18px);
    height: 62px;
    gap: 6px;
}

.brand,
.brand img {
width: 118px;
}

.header-actions,
.header-actions .top-actions-auth {
gap: 5px;
}

.header-login {
min-height: 34px;
    font-size: 13px;
}

.menu-button {
width: 36px;
    min-width: 36px;
    height: 36px;
    min-height: 36px;
    border-radius: 11px;
}

.mobile-menu {
margin-right: -5px;
}

.mobile-nav {
left: 10px;
    right: 10px;
    top: 68px;
}

.site-header:has(.mobile-menu[open]) {
padding-bottom: 294px;
}
}

@media (max-width: 340px) {
.brand,
.brand img {
width: 106px;
}

.header-login {
min-height: 32px;
    font-size: 12.5px;
}

.menu-button {
width: 34px;
    min-width: 34px;
    height: 34px;
    min-height: 34px;
}

.burger-lines {
width: 16px;
    height: 12px;
}

.mobile-nav {
top: 64px;
}
}

@media (min-width: 1261px) {
.header-actions .top-actions-auth .header-login {
order: 0;
}

.header-actions .header-start {
order: 2;
}
}

@media (min-width: 901px) {
.hero {
padding-top: 34px;
}

.hero-copy {
padding-top: 14px;
}
}

@media (max-width: 900px) {
.hero {
padding-top: 30px;
}

.hero-copy {
padding-top: 0;
}
}

@media (max-width: 760px) {
.hero {
padding-top: 28px;
}
}

@media (max-width: 1260px) {
.site-header .header-actions .top-actions-auth .header-login,
.header-actions .top-actions-auth .header-login {
order: 1;
}

.site-header .header-actions .mobile-menu,
.header-actions .mobile-menu {
order: 3;
}
}

.compact-footer--mobile {
display: none;
}

@media (max-width: 900px) {
.compact-footer--desktop {
display: none;
}

.compact-footer--mobile {
display: flex;
}

.compact-footer--mobile .footer-note {
min-width: 0;
    flex-direction: column;
    align-items: flex-start;
    gap: 5px;
}

.compact-footer--mobile .footer-note p {
white-space: normal;
}
}

.footer-inner.compact-footer--mobile {
display: none;
}

@media (max-width: 900px) {
.footer-inner.compact-footer--desktop {
display: none;
}

.footer-inner.compact-footer--mobile {
display: flex;
}
}.icon-sprite {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
}

.pwa-page {
  flex: 1 0 auto;
  padding-bottom: 54px;
}

.pwa-hero.hero {
  grid-template-columns: minmax(0, 760px);
  min-height: auto;
  align-items: center;
  justify-content: center;
  justify-items: center;
  padding-bottom: 24px;
}

.pwa-hero .hero-copy {
  max-width: 760px;
  margin-inline: auto;
  text-align: center;
}

.pwa-hero .vv-hero-chips {
  justify-content: center;
  margin: 0 auto 34px;
}

.pwa-hero h1 {
  max-width: 690px;
}

.pwa-hero .lead {
  max-width: none;
  margin-inline: auto;
  white-space: nowrap;
}

.pwa-hero .cta-row {
  justify-content: center;
}

.install-link .download-icon {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  flex: 0 0 24px;
  font-size: 0;
  line-height: 1;
  transform: translateY(-1px);
}

.install-link .download-icon::before {
  content: "";
  display: block;
  width: 24px;
  height: 24px;
  background: currentColor;
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M12 4.6v9.25m0 0 4.05-4.05M12 13.85 7.95 9.8M5.6 18.45h12.8' fill='none' stroke='%23000' stroke-width='2.35' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") center / 24px 24px no-repeat;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M12 4.6v9.25m0 0 4.05-4.05M12 13.85 7.95 9.8M5.6 18.45h12.8' fill='none' stroke='%23000' stroke-width='2.35' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") center / 24px 24px no-repeat;
}

.install-link:hover .download-icon {
  transform: translateY(0);
}

.install-link.is-installed,
.install-link.is-installed:disabled {
  cursor: default;
  opacity: 1;
}

.install-link.is-installed:hover,
.install-link.is-installed:active {
  transform: none;
  box-shadow: 0 14px 32px rgba(36, 95, 232, .23), inset 0 1px 0 rgba(255,255,255,.30);
}

.install-link.is-installed .download-icon,
.install-link.is-installed:hover .download-icon {
  transform: translateY(-1px);
}

.install-link.is-installed .download-icon::before {
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Ccircle cx='12' cy='12' r='8.5' fill='none' stroke='%23000' stroke-width='2.1'/%3E%3Cpath d='m8.2 12.1 2.45 2.45 5.15-5.2' fill='none' stroke='%23000' stroke-width='2.15' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") center / 24px 24px no-repeat;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Ccircle cx='12' cy='12' r='8.5' fill='none' stroke='%23000' stroke-width='2.1'/%3E%3Cpath d='m8.2 12.1 2.45 2.45 5.15-5.2' fill='none' stroke='%23000' stroke-width='2.15' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") center / 24px 24px no-repeat;
}

@media (min-width: 901px) {
  .pwa-hero .cta-row .install-link.is-installed {
    width: 286px;
    flex-basis: 286px;
  }
}

@media (min-width: 701px) and (max-width: 900px) {
  .pwa-hero .cta-row .install-link.is-installed {
    gap: 10px;
    padding-inline: 10px;
    font-size: 16px;
  }
}

.pwa-quick-steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  width: 640px;
  max-width: 100%;
  margin: 26px auto 0;
  padding: 0;
  list-style: none;
  counter-reset: pwaHeroStep;
}

.pwa-quick-steps li {
  min-width: 0;
  min-height: 88px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 14px 14px 14px 15px;
  border-radius: 20px;
  border: 1px solid rgba(63,98,156,.15);
  background: rgba(255,255,255,.78);
  box-shadow: var(--shadow-xs), inset 0 1px 0 rgba(255,255,255,.92);
  color: var(--text-2);
  text-align: center;
  font-size: 13.5px;
  line-height: 1.28;
  font-weight: 650;
  letter-spacing: -.012em;
}

.pwa-quick-steps li::before {
  counter-increment: pwaHeroStep;
  content: counter(pwaHeroStep);
  width: 32px;
  height: 30px;
  margin: 0 auto 10px;
  border-radius: 11px;
  display: grid;
  place-items: center;
  color: var(--blue);
  background: linear-gradient(180deg, rgba(237,245,255,.98), rgba(228,239,255,.92));
  border: 1px solid rgba(36,104,242,.12);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.88), 0 8px 22px rgba(30,88,184,.06);
  font-size: 14px;
  font-weight: 860;
}

.pwa-guide {
  width: min(var(--max), calc(100% - 96px));
  margin: 18px auto 0;
  padding: 32px;
  border-radius: 34px;
  border: 1px solid var(--border);
  background: linear-gradient(180deg, rgba(255,255,255,.84), rgba(247,250,255,.72));
  box-shadow: 0 22px 64px rgba(19,68,160,.08), inset 0 1px 0 rgba(255,255,255,.96);
  overflow: hidden;
}

.pwa-section-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  align-items: start;
  gap: 28px;
  margin-bottom: 24px;
}

.pwa-section-head > div {
  max-width: 760px;
}

.pwa-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
  padding: 10px 14px;
  border-radius: 13px;
  color: var(--blue);
  background: rgba(255,255,255,.72);
  border: 1px solid rgba(36,104,242,.18);
  box-shadow: 0 8px 24px rgba(38,100,219,.05), inset 0 1px 0 rgba(255,255,255,.9);
  font-size: 14px;
  font-weight: 760;
  letter-spacing: -.01em;
}

.pwa-kicker::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--blue);
  box-shadow: 0 0 0 4px rgba(36,104,242,.08);
}

.pwa-section-head h2 {
  margin: 0;
  color: var(--text);
  font-size: clamp(32px, 3vw, 48px);
  line-height: 1.03;
  letter-spacing: -.052em;
  font-weight: 840;
}

.pwa-section-head p {
  max-width: 640px;
  margin: 14px 0 0;
  color: var(--text-2);
  font-size: 18px;
  line-height: 1.5;
  letter-spacing: -.018em;
  font-weight: 500;
}

.platform-radio {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip-path: inset(50%);
  white-space: nowrap;
}

.pwa-platform-picker {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin-bottom: 18px;
}

.pwa-platform-tab {
  min-width: 0;
  min-height: 88px;
  padding: 16px 18px;
  text-align: left;
  border-radius: 20px;
  border: 1px solid rgba(63,98,156,.15);
  background: rgba(255,255,255,.74);
  box-shadow: var(--shadow-xs), inset 0 1px 0 rgba(255,255,255,.92);
  color: var(--text);
  cursor: pointer;
  font-size: 16px;
  line-height: 1.2;
  font-weight: 820;
  letter-spacing: -.025em;
  transition: transform .24s var(--ease), box-shadow .24s var(--ease), border-color .24s var(--ease), background .24s var(--ease), color .24s var(--ease);
}

.pwa-platform-tab:hover {
  transform: translateY(-2px);
  border-color: rgba(36,104,242,.24);
  background: rgba(255,255,255,.92);
  box-shadow: var(--shadow-sm), inset 0 1px 0 rgba(255,255,255,.96);
}

.pwa-platform-tab span {
  display: block;
  margin-top: 7px;
  color: var(--text-2);
  font-size: 13px;
  line-height: 1.28;
  font-weight: 650;
  letter-spacing: -.01em;
}

#platform-android:checked ~ .pwa-platform-picker label[for="platform-android"],
#platform-ios:checked ~ .pwa-platform-picker label[for="platform-ios"],
#platform-desktop:checked ~ .pwa-platform-picker label[for="platform-desktop"],
#platform-mac:checked ~ .pwa-platform-picker label[for="platform-mac"] {
  border-color: rgba(36,104,242,.30);
  background: linear-gradient(180deg, rgba(239,246,255,.98), rgba(229,240,255,.88));
  color: var(--blue);
  box-shadow: 0 14px 34px rgba(35,109,242,.12), inset 0 1px 0 rgba(255,255,255,.96);
}

.pwa-panels {
  min-width: 0;
  margin-top: 20px;
}

.pwa-panel {
  display: none;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 410px);
  gap: 24px;
  align-items: stretch;
  min-width: 0;
}

#platform-android:checked ~ .pwa-panels #android-steps,
#platform-ios:checked ~ .pwa-panels #ios-steps,
#platform-desktop:checked ~ .pwa-panels #desktop-steps,
#platform-mac:checked ~ .pwa-panels #mac-safari-steps {
  display: grid;
}

.pwa-panel__copy {
  min-width: 0;
}

.pwa-panel h3 {
  margin: 0;
  color: var(--text);
  font-size: clamp(26px, 2.2vw, 34px);
  line-height: 1.06;
  letter-spacing: -.042em;
  font-weight: 840;
}

.pwa-panel__copy > p {
  max-width: 720px;
  margin: 12px 0 20px;
  color: var(--text-2);
  font-size: 16px;
  line-height: 1.52;
  letter-spacing: -.015em;
  font-weight: 540;
}

.pwa-step-list {
  display: grid;
  gap: 6px;
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: pwaStep;
}

.pwa-step-list li {
  min-width: 0;
  display: grid;
  grid-template-columns: 52px minmax(0, 1fr);
  gap: 14px;
  align-items: start;
  padding: 10px 0;
}

.pwa-step-list li::before {
  counter-increment: pwaStep;
  content: counter(pwaStep);
  width: 42px;
  height: 40px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  color: var(--blue);
  background: linear-gradient(180deg, rgba(237,245,255,.98), rgba(228,239,255,.92));
  border: 1px solid rgba(36,104,242,.12);
  font-size: 16px;
  font-weight: 860;
}

.pwa-step-list strong {
  display: block;
  color: var(--text);
  font-size: 16px;
  line-height: 1.25;
  font-weight: 820;
  letter-spacing: -.02em;
}

.pwa-step-list span {
  display: block;
  margin-top: 4px;
  color: var(--text-2);
  font-size: 14px;
  line-height: 1.42;
  font-weight: 600;
}

.pwa-panel__aside {
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
  justify-content: center;
  align-self: stretch;
}

.pwa-browser-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.pwa-browser-tags span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  padding: 0 13px;
  border-radius: 13px;
  border: 1px solid rgba(63,98,156,.13);
  background: rgba(255,255,255,.74);
  color: var(--text-2);
  font-size: 13px;
  line-height: 1;
  font-weight: 760;
  letter-spacing: -.01em;
}

.pwa-device-preview {
  width: 100%;
  min-width: 0;
  padding: 18px;
  border-radius: 26px;
  border: 1px solid rgba(63,98,156,.13);
  background: linear-gradient(180deg, rgba(255,255,255,.82), rgba(239,248,255,.70));
  box-shadow: var(--shadow-xs), inset 0 1px 0 rgba(255,255,255,.95);
  overflow: hidden;
}

.pwa-device-bar {
  min-height: 54px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 10px;
  padding: 8px 10px 8px 16px;
  border-radius: 18px;
  background: rgba(245,248,255,.88);
  color: var(--text-2);
  font-size: 14px;
  font-weight: 760;
  letter-spacing: -.01em;
}

.pwa-device-bar span:first-child {
  min-width: 0;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.pwa-device-action {
  min-height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 15px;
  border-radius: 14px;
  color: #fff;
  background: linear-gradient(135deg, #2457e6, #2870ea 52%, #1d8fd4);
  box-shadow: 0 10px 24px rgba(36,95,232,.18), inset 0 1px 0 rgba(255,255,255,.25);
  font-size: 14px;
  font-weight: 820;
  white-space: nowrap;
}

.pwa-device-card {
  display: grid;
  gap: 6px;
  margin-top: 14px;
}

.pwa-device-row {
  min-width: 0;
  min-height: 60px;
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr);
  gap: 12px;
  align-items: center;
  padding: 8px 0;
}

.pwa-device-icon {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 15px;
  color: var(--blue);
  background: linear-gradient(180deg, rgba(237,245,255,.98), rgba(228,239,255,.92));
  border: 1px solid rgba(36,104,242,.10);
  font-size: 15px;
  line-height: 1;
  font-weight: 860;
  letter-spacing: -.035em;
}

.pwa-device-row strong {
  display: block;
  min-width: 0;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  color: var(--text);
  font-size: 15.5px;
  line-height: 1.2;
  font-weight: 820;
  letter-spacing: -.02em;
}

.pwa-device-row span:last-child {
  display: block;
  margin-top: 4px;
  color: var(--text-2);
  font-size: 13.5px;
  line-height: 1.2;
  font-weight: 600;
}

.pwa-micro-tip {
  display: block;
  padding: 10px 0 0;
  color: var(--text);
  text-align: center;
  font-size: 14px;
  line-height: 1.45;
  font-weight: 760;
  letter-spacing: -.012em;
}

@media (max-width: 1360px) {
  .pwa-guide {
    width: min(100% - 48px, var(--max));
  }
}

@media (min-width: 1180px) and (max-width: 1360px) {
  .pwa-quick-steps {
    gap: 10px;
  }

  .pwa-quick-steps li {
    min-height: 84px;
    padding: 13px;
    font-size: 13px;
  }

  .pwa-platform-picker {
    gap: 12px;
  }

  .pwa-platform-tab {
    padding: 14px;
  }

  .pwa-panel {
    grid-template-columns: minmax(0, 1fr) minmax(280px, 360px);
    gap: 18px;
  }
}

@media (max-width: 1179px) {
  .pwa-panel {
    grid-template-columns: 1fr;
  }

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

  .pwa-panel__aside {
    width: 100%;
    max-width: 560px;
    justify-self: center;
  }
}

@media (max-width: 900px) {
  .pwa-page {
    padding-bottom: 110px;
  }

  .pwa-hero.hero {
    padding-bottom: 12px;
  }

  .pwa-quick-steps {
    grid-template-columns: 1fr;
    gap: 10px;
    width: min(100%, 560px);
  }

  .pwa-quick-steps li {
    min-height: 64px;
    display: grid;
    grid-template-columns: 38px minmax(0, 1fr);
    align-items: center;
    gap: 12px;
    padding: 12px 14px;
    text-align: left;
  }

  .pwa-quick-steps li::before {
    margin: 0;
  }

  .pwa-guide {
    width: min(100% - 28px, 720px);
    padding: 24px;
    border-radius: 28px;
  }

  .pwa-section-head {
    gap: 16px;
    margin-bottom: 20px;
  }

  .pwa-section-head h2 {
    font-size: clamp(30px, 6vw, 42px);
  }

  .pwa-section-head p {
    font-size: 16px;
  }

  .pwa-platform-picker {
    display: flex;
    gap: 10px;
    overflow-x: auto;
    margin-inline: -4px;
    padding: 0 4px 8px;
    scroll-snap-type: x proximity;
    scrollbar-width: none;
  }

  .pwa-platform-picker::-webkit-scrollbar {
    display: none;
  }

  .pwa-platform-tab {
    flex: 0 0 min(260px, 78vw);
    scroll-snap-align: start;
  }

  .pwa-panels {
    margin-top: 16px;
  }

  .pwa-panel {
    grid-template-columns: 1fr;
  }

  .pwa-panel__aside {
    max-width: none;
  }
}

@media (max-width: 760px) {
  .pwa-hero .lead {
    max-width: min(100%, 420px);
    white-space: normal;
    text-wrap: balance;
  }
}

@media (max-width: 700px) {
  .pwa-hero.hero {
    gap: 0;
  }

  .pwa-guide {
    padding: 20px;
    border-radius: 24px;
  }

  .pwa-panel h3 {
    font-size: 26px;
  }

  .pwa-step-list li {
    grid-template-columns: 46px minmax(0, 1fr);
    gap: 12px;
    padding: 9px 0;
  }

  .pwa-step-list li::before {
    width: 38px;
    height: 38px;
    border-radius: 13px;
  }

  .pwa-device-preview {
    padding: 14px;
    border-radius: 22px;
  }

  .pwa-device-bar {
    min-height: 50px;
    padding-left: 13px;
  }

  .pwa-device-action {
    min-height: 36px;
    padding: 0 12px;
    border-radius: 12px;
    font-size: 13px;
  }

  .pwa-device-row {
    grid-template-columns: 42px minmax(0, 1fr);
    min-height: 60px;
    padding: 7px 0;
  }

  .pwa-device-icon {
    width: 38px;
    height: 38px;
    border-radius: 13px;
  }
}

@media (max-width: 560px) {
  .pwa-guide {
    width: calc(100% - 28px);
  }

  .pwa-hero .vv-hero-chips {
    margin-bottom: 24px;
  }

  .pwa-section-head h2 {
    font-size: 30px;
  }

  .pwa-platform-tab {
    flex-basis: min(250px, 82vw);
    min-height: 82px;
  }
}

@media (max-width: 380px) {
  .pwa-guide {
    padding: 18px;
  }

  .pwa-device-action {
    padding-inline: 10px;
  }

  .pwa-device-row strong {
    font-size: 14.5px;
  }
}

@media (max-width: 900px) {
  .pwa-quick-steps li {
    min-height: 97.265625px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
  }

  .pwa-quick-steps li::before {
    margin: 0 auto 10px;
  }
}
