:root {
  --bg: #02030a;
  --panel: rgba(10,13,29,.72);

  --text: #f8f9ff;
  --muted: #8f96b2;
  --dim: #626981;

  --line: rgba(255,255,255,.08);
  --blue: #277dff;
  --cyan: #26e5ff;
  --violet: #7348ff;
  --pink: #eb48ff;

  --content: 1120px;

  font-family:
    "Russo One",
    "Segoe UI",
    sans-serif;

  color-scheme: dark;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: var(--bg);
}

body {
  margin: 0;
  min-width: 320px;

  color: var(--text);

  background:
    radial-gradient(
      circle at 18% 12%,
      rgba(36,93,255,.16),
      transparent 28rem
    ),
    radial-gradient(
      circle at 88% 40%,
      rgba(135,54,255,.08),
      transparent 30rem
    ),
    var(--bg);

  -webkit-font-smoothing: antialiased;
}

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

button {
  font: inherit;
}

.topbar {
  width: min(calc(100% - 40px), 1320px);
  min-height: 82px;

  margin: auto;

  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: 24px;
  align-items: center;

  border-bottom: 1px solid var(--line);
}

.brand,
.footer-brand {
  display: flex;
  align-items: center;
  gap: 11px;
}

.brand {
  flex-shrink: 0;
}

.brand img {
  width: 44px;
  height: 44px;

  border-radius: 12px;

  box-shadow:
    0 0 24px rgba(39,125,255,.22),
    0 0 42px rgba(113,72,255,.10);
}

.brand span {
  white-space: nowrap;

  font-size: 15px;
  letter-spacing: .05em;
}

.top-downloads {
  min-width: 0;

  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.top-download {
  min-height: 42px;

  padding: 0 13px;

  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;

  white-space: nowrap;

  border: 1px solid rgba(255,255,255,.09);
  border-radius: 12px;

  cursor: pointer;

  color: #a7afca;

  background:
    linear-gradient(
      145deg,
      rgba(20,25,48,.62),
      rgba(7,9,21,.72)
    );

  box-shadow:
    inset 0 1px rgba(255,255,255,.025);

  font-size: 10px;

  transition:
    color .15s ease,
    border-color .15s ease,
    background .15s ease,
    box-shadow .15s ease,
    transform .15s ease;
}

.top-download:hover {
  color: #ffffff;

  border-color:
    rgba(88,136,255,.38);

  background:
    linear-gradient(
      145deg,
      rgba(30,52,116,.30),
      rgba(17,14,45,.68)
    );

  box-shadow:
    0 0 22px rgba(46,108,255,.10);

  transform: translateY(-1px);
}

.top-download-windows {
  color: #dbe9ff;

  border-color:
    rgba(49,150,255,.27);

  background:
    linear-gradient(
      145deg,
      rgba(31,91,194,.19),
      rgba(8,12,30,.74)
    );
}

.top-download-dot {
  width: 5px;
  height: 5px;

  flex: 0 0 5px;

  border-radius: 50%;

  background: #68718f;
}

.top-download-windows .top-download-dot {
  background: var(--cyan);

  box-shadow:
    0 0 9px rgba(38,229,255,.72);
}

.cabinet {
  min-height: 46px;

  position: relative;
  overflow: hidden;

  padding: 0 21px;

  display: inline-flex;
  align-items: center;
  justify-content: center;

  white-space: nowrap;

  border:
    1px solid rgba(121,204,255,.50);

  border-radius: 14px;

  color: #ffffff;

  background:
    linear-gradient(
      110deg,
      #1656ee 0%,
      #267bff 34%,
      #7249ff 70%,
      #c83cff 100%
    );

  box-shadow:
    0 10px 30px rgba(45,102,255,.23),
    0 0 28px rgba(112,72,255,.14),
    inset 0 1px rgba(255,255,255,.20);

  font-size: 11px;

  transition:
    transform .15s ease,
    box-shadow .15s ease,
    filter .15s ease;
}

.cabinet::after {
  content: "";

  width: 58px;
  height: 130%;

  position: absolute;
  top: -15%;
  left: -85px;

  transform:
    rotate(17deg);

  background:
    linear-gradient(
      90deg,
      transparent,
      rgba(255,255,255,.18),
      transparent
    );

  transition:
    left .45s ease;
}

.cabinet:hover {
  transform: translateY(-1px);

  filter: brightness(1.08);

  box-shadow:
    0 13px 38px rgba(45,102,255,.31),
    0 0 34px rgba(190,58,255,.18),
    inset 0 1px rgba(255,255,255,.23);
}

.cabinet:hover::after {
  left: calc(100% + 30px);
}

.cabinet > span:last-child {
  position: relative;
  z-index: 1;
}

.cabinet-shine {
  width: 7px;
  height: 7px;

  position: relative;
  z-index: 1;

  margin-right: 8px;

  border-radius: 50%;

  background: #ffffff;

  box-shadow:
    0 0 11px rgba(255,255,255,.88),
    0 0 18px rgba(51,223,255,.58);
}

.hero {
  width: min(calc(100% - 40px), var(--content));
  min-height: 620px;

  margin: auto;
  padding: 70px 0 80px;

  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: 70px;
  align-items: center;
}

.hero-logo {
  position: relative;

  display: grid;
  place-items: center;
}

.logo-glow {
  width: 360px;
  height: 360px;

  position: absolute;

  border-radius: 50%;

  background:
    radial-gradient(
      circle,
      rgba(36,209,255,.15),
      rgba(112,64,255,.12) 40%,
      transparent 68%
    );

  filter: blur(38px);
}

.hero-logo img {
  width: min(300px, 75vw);

  position: relative;
  z-index: 1;

  border-radius: 26%;

  filter:
    drop-shadow(0 24px 55px rgba(0,0,0,.5))
    drop-shadow(0 0 22px rgba(39,125,255,.2));
}

.eyebrow,
.section-head > span,
.premium > div > span {
  color: #7781a8;

  font-size: 10px;
  letter-spacing: .22em;
}

.hero h1 {
  max-width: 690px;

  margin: 15px 0 20px;

  font-size: clamp(54px, 6vw, 86px);
  line-height: 1.02;
  letter-spacing: -.035em;
}

.hero h1 em,
.premium h2 em {
  display: block;

  color: transparent;

  font-style: normal;

  background:
    linear-gradient(
      100deg,
      #6e95ff,
      #31dcff 43%,
      #d948ff
    );

  -webkit-background-clip: text;
  background-clip: text;
}

.hero p {
  margin: 0;

  color: var(--muted);

  font-family:
    "Segoe UI",
    sans-serif;

  font-size: 18px;
}

.hero-actions {
  margin-top: 30px;

  display: flex;
  gap: 11px;
  flex-wrap: wrap;
}

.primary,
.secondary {
  min-height: 52px;

  padding: 0 23px;

  display: inline-flex;
  align-items: center;
  justify-content: center;

  border-radius: 14px;

  cursor: pointer;

  color: #fff;
  font-size: 12px;

  transition:
    transform .15s ease,
    box-shadow .15s ease;
}

.primary:hover,
.secondary:hover {
  transform: translateY(-1px);
}

.primary {
  border: 1px solid rgba(72,184,255,.4);

  background:
    linear-gradient(
      112deg,
      #1748dd,
      #188cff 50%,
      #7740ff
    );

  box-shadow:
    0 16px 38px rgba(39,95,255,.22);
}

.secondary {
  border: 1px solid rgba(255,255,255,.10);

  background:
    rgba(255,255,255,.035);
}

.facts {
  margin-top: 23px;

  display: flex;
  gap: 20px;

  color: var(--dim);

  font-family:
    "Segoe UI",
    sans-serif;

  font-size: 12px;
}

.facts span::before {
  content: "•";
  margin-right: 7px;
  color: var(--cyan);
}

.features {
  width: min(calc(100% - 40px), var(--content));

  margin: auto;

  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

.features article {
  min-height: 135px;

  padding: 23px;

  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 9px;

  border: 1px solid var(--line);
  border-radius: 20px;

  background:
    linear-gradient(
      145deg,
      rgba(18,23,48,.62),
      rgba(7,9,20,.62)
    );
}

.features strong {
  font-size: 16px;
}

.features span {
  color: var(--muted);

  font-family:
    "Segoe UI",
    sans-serif;

  font-size: 13px;
}

.platforms {
  width: min(calc(100% - 40px), var(--content));

  margin: auto;
  padding-top: 105px;
}

.section-head {
  margin-bottom: 27px;
}

.section-head h2 {
  margin: 10px 0 0;

  font-size: clamp(36px, 4vw, 52px);
}

.platform-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 9px;
}

.platform-row article {
  min-height: 92px;

  padding: 18px;

  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 7px;

  border: 1px solid var(--line);
  border-radius: 18px;

  background: var(--panel);
}

.platform-row strong {
  font-size: 14px;
}

.platform-row span {
  color: var(--dim);

  font-family:
    "Segoe UI",
    sans-serif;

  font-size: 11px;
}

.platform-row .available {
  border-color:
    rgba(48,134,255,.27);

  background:
    linear-gradient(
      145deg,
      rgba(38,79,176,.14),
      rgba(8,10,24,.74)
    );
}

.platform-row .available span {
  color: var(--cyan);
}

.premium {
  width: min(calc(100% - 40px), var(--content));
  min-height: 260px;

  margin: 105px auto 0;
  padding: 38px;

  display: grid;
  grid-template-columns: 1fr auto;
  gap: 45px;
  align-items: center;

  border: 1px solid rgba(83,103,255,.22);
  border-radius: 28px;

  background:
    radial-gradient(
      circle at 95% 10%,
      rgba(216,55,255,.14),
      transparent 21rem
    ),
    linear-gradient(
      135deg,
      rgba(25,37,88,.26),
      rgba(10,11,27,.78)
    );
}

.premium h2 {
  margin: 12px 0 0;

  font-size: clamp(38px, 4.3vw, 58px);
  line-height: 1.05;
}

.premium-side {
  min-width: 210px;

  display: flex;
  flex-direction: column;
  gap: 17px;
}

.premium-side strong {
  text-align: center;
  font-size: 16px;
}

footer {
  width: min(calc(100% - 40px), var(--content));

  margin: 100px auto 0;
  padding: 27px 0 32px;

  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: 32px;
  align-items: center;

  border-top: 1px solid var(--line);

  color: var(--dim);

  font-family:
    "Segoe UI",
    sans-serif;

  font-size: 11px;
}

.footer-brand {
  font-family:
    "Russo One",
    sans-serif;

  color: #dfe3f3;
}

.footer-brand img {
  width: 30px;
  height: 30px;

  border-radius: 8px;
}

footer nav {
  display: flex;
  gap: 18px;
}

footer a:hover {
  color: #fff;
}

.toast {
  position: fixed;
  left: 50%;
  bottom: 22px;
  z-index: 100;

  max-width: calc(100% - 28px);

  padding: 12px 17px;

  transform:
    translate(-50%, 16px);

  opacity: 0;
  pointer-events: none;

  border: 1px solid rgba(78,120,255,.25);
  border-radius: 13px;

  color: #c3c9dd;

  background:
    rgba(6,8,19,.95);

  font-family:
    "Segoe UI",
    sans-serif;

  font-size: 12px;

  transition:
    opacity .16s ease,
    transform .16s ease;
}

.toast.visible {
  opacity: 1;

  transform:
    translate(-50%, 0);
}

@media (max-width: 820px) {

  .hero {
    grid-template-columns: 1fr;

    gap: 30px;

    text-align: center;
  }

  .hero-actions,
  .facts {
    justify-content: center;
  }

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

  .platform-row {
    grid-template-columns: 1fr 1fr;
  }

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

  .premium-side strong {
    text-align: left;
  }

  footer {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}

@media (max-width: 520px) {

  .topbar,
  .hero,
  .features,
  .platforms,
  .premium,
  footer {
    width: calc(100% - 28px);
  }

  .topbar {
    height: 68px;
  }

  .brand img {
    width: 38px;
    height: 38px;
  }

  .hero {
    min-height: auto;

    padding: 48px 0 62px;
  }

  .hero-logo img {
    width: 205px;
  }

  .logo-glow {
    width: 250px;
    height: 250px;
  }

  .hero h1 {
    font-size: 43px;
  }

  .hero p {
    font-size: 15px;
  }

  .hero-actions {
    display: grid;
  }

  .primary,
  .secondary {
    width: 100%;
  }

  .facts {
    flex-direction: column;
    gap: 7px;
  }

  .platforms {
    padding-top: 82px;
  }

  .platform-row {
    grid-template-columns: 1fr;
  }

  .premium {
    margin-top: 82px;
    padding: 28px 23px;
  }

  .premium h2 {
    font-size: 36px;
  }

  footer {
    margin-top: 76px;
  }

  footer nav {
    gap: 10px 16px;
    flex-wrap: wrap;
  }
}

/* PUSK_TOPBAR_DOWNLOADS_V3 */

@media (max-width: 1180px) {

  .topbar {
    min-height: 132px;

    padding: 13px 0;

    grid-template-columns: 1fr auto;
    gap: 11px 18px;
  }

  .top-downloads {
    grid-column: 1 / -1;

    justify-content: flex-start;

    overflow-x: auto;

    padding-bottom: 2px;

    scrollbar-width: none;
  }

  .top-downloads::-webkit-scrollbar {
    display: none;
  }

  .top-download {
    flex: 0 0 auto;
  }

}

@media (max-width: 620px) {

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

  .brand span {
    font-size: 13px;
  }

  .brand img {
    width: 38px;
    height: 38px;
  }

  .cabinet {
    min-height: 40px;

    padding: 0 14px;

    font-size: 10px;
  }

  .top-download {
    min-height: 39px;

    padding: 0 11px;

    font-size: 9px;
  }

}

/* PUSK_TOPBAR_BUTTONS_V4_FIXED */

.topbar {
  width: min(calc(100% - 40px), 1480px);
  min-height: 102px;
  gap: 20px;
}

.top-downloads {
  gap: 12px;
  flex-wrap: nowrap;
}

.top-download {
  min-height: 58px;

  padding: 0 23px;

  border-radius: 16px;

  font-size: 15px;
  line-height: 1;
  letter-spacing: 0;

  color: #f4f7ff;

  border-color:
    rgba(107, 139, 230, .24);

  background:
    linear-gradient(
      145deg,
      rgba(20, 26, 52, .80),
      rgba(8, 10, 25, .90)
    );

  box-shadow:
    inset 0 1px rgba(255, 255, 255, .04),
    0 9px 24px rgba(0, 0, 0, .24);
}

.top-download:hover {
  color: #ffffff;

  border-color:
    rgba(91, 157, 255, .52);

  background:
    linear-gradient(
      145deg,
      rgba(31, 61, 134, .42),
      rgba(16, 15, 47, .84)
    );

  box-shadow:
    0 0 0 1px rgba(70, 138, 255, .10),
    0 13px 32px rgba(24, 55, 160, .23);
}

.top-download-windows {
  color: #ffffff;

  border-color:
    rgba(82, 181, 255, .46);

  background:
    linear-gradient(
      118deg,
      rgba(24, 82, 222, .90),
      rgba(31, 125, 255, .92) 48%,
      rgba(105, 66, 255, .90)
    );

  box-shadow:
    0 11px 28px rgba(38, 91, 255, .26),
    inset 0 1px rgba(255, 255, 255, .12);
}

.top-download-dot {
  display: none !important;
}

.cabinet {
  min-height: 60px;

  padding: 0 28px;

  border-radius: 17px;

  font-size: 16px;

  box-shadow:
    0 14px 36px rgba(45, 102, 255, .31),
    0 0 34px rgba(146, 64, 255, .20),
    inset 0 1px rgba(255, 255, 255, .25);
}

.cabinet-shine {
  width: 8px;
  height: 8px;

  margin-right: 10px;
}

@media (max-width: 1320px) {

  .topbar {
    min-height: 166px;

    padding: 14px 0;

    grid-template-columns: 1fr auto;
    gap: 13px 18px;
  }

  .top-downloads {
    grid-column: 1 / -1;

    justify-content: flex-start;

    overflow-x: auto;

    padding-bottom: 3px;

    scrollbar-width: none;
  }

  .top-downloads::-webkit-scrollbar {
    display: none;
  }

  .top-download {
    flex: 0 0 auto;
  }

}

@media (max-width: 620px) {

  .topbar {
    width: calc(100% - 28px);
    min-height: 150px;
  }

  .brand img {
    width: 40px;
    height: 40px;
  }

  .brand span {
    font-size: 13px;
  }

  .cabinet {
    min-height: 48px;

    padding: 0 17px;

    font-size: 12px;
  }

  .top-download {
    min-height: 48px;

    padding: 0 16px;

    font-size: 12px;
  }

}

/* PUSK_SITE_TOPBAR_HERO_V5 */

.topbar {
  width: min(calc(100% - 40px), 1480px);
  min-height: 102px;
  gap: 20px;
}

.top-downloads {
  gap: 12px;
  flex-wrap: nowrap;
}

.top-download {
  min-height: 58px;

  padding: 0 23px;

  border-radius: 16px;

  font-size: 15px;
  line-height: 1;
  letter-spacing: 0;

  color: #f4f7ff;

  border-color:
    rgba(107, 139, 230, .24);

  background:
    linear-gradient(
      145deg,
      rgba(20, 26, 52, .80),
      rgba(8, 10, 25, .90)
    );

  box-shadow:
    inset 0 1px rgba(255, 255, 255, .04),
    0 9px 24px rgba(0, 0, 0, .24);
}

.top-download:hover {
  color: #ffffff;

  border-color:
    rgba(91, 157, 255, .52);

  background:
    linear-gradient(
      145deg,
      rgba(31, 61, 134, .42),
      rgba(16, 15, 47, .84)
    );

  box-shadow:
    0 0 0 1px rgba(70, 138, 255, .10),
    0 13px 32px rgba(24, 55, 160, .23);
}

.top-download-windows {
  color: inherit;
  border-color: inherit;
  background: inherit;
  box-shadow: inherit;
}

.top-download-dot {
  display: none !important;
}

.cabinet {
  min-height: 60px;

  padding: 0 28px;

  border-radius: 17px;

  font-size: 16px;

  box-shadow:
    0 14px 36px rgba(45, 102, 255, .31),
    0 0 34px rgba(146, 64, 255, .20),
    inset 0 1px rgba(255, 255, 255, .25);
}

.cabinet-shine {
  width: 8px;
  height: 8px;

  margin-right: 10px;
}

.hero {
  width: min(calc(100% - 40px), 1480px);
  min-height: 640px;

  margin: auto;
  padding: 68px 0 70px;

  display: grid;
  grid-template-columns: minmax(320px, 520px) minmax(420px, 1fr);
  gap: 56px;
  align-items: center;
}

.hero-text {
  position: relative;
  z-index: 2;
}

.hero .eyebrow,
.hero-actions,
.facts {
  display: none !important;
}

.hero h1 {
  max-width: 620px;

  margin: 0 0 24px;

  font-size: clamp(54px, 6vw, 86px);
  line-height: 1.01;
  letter-spacing: -.04em;
}

.hero h1 em {
  display: block;

  margin-top: 10px;

  color: transparent;

  font-style: normal;

  background:
    linear-gradient(
      100deg,
      #7ca3ff,
      #3fe2ff 46%,
      #d94bff 96%
    );

  -webkit-background-clip: text;
  background-clip: text;
}

.hero p {
  max-width: 500px;

  margin: 0;

  color: #9aa4c3;

  font-family:
    "Segoe UI",
    sans-serif;

  font-size: 18px;
  line-height: 1.6;
}

.hero-visual {
  min-height: 520px;

  position: relative;

  display: grid;
  place-items: center;
}

.promo-glow {
  position: absolute;

  border-radius: 50%;

  filter: blur(44px);
  pointer-events: none;
}

.promo-glow-left {
  width: 280px;
  height: 280px;

  top: 38px;
  left: 38px;

  background:
    rgba(50, 125, 255, .18);
}

.promo-glow-right {
  width: 260px;
  height: 260px;

  right: 20px;
  bottom: 42px;

  background:
    rgba(194, 63, 255, .17);
}

.promo-card {
  width: min(100%, 640px);
  min-height: 420px;

  position: relative;
  z-index: 2;

  padding: 26px 26px 24px;

  border:
    1px solid rgba(108, 132, 221, .18);
  border-radius: 30px;

  background:
    radial-gradient(
      circle at top right,
      rgba(62, 114, 255, .20),
      transparent 30%
    ),
    linear-gradient(
      145deg,
      rgba(14, 18, 39, .96),
      rgba(7, 9, 21, .96)
    );

  box-shadow:
    0 18px 60px rgba(0, 0, 0, .32),
    inset 0 1px rgba(255, 255, 255, .05);

  overflow: hidden;
}

.promo-card::before {
  content: "";

  position: absolute;
  inset: 0;

  background:
    linear-gradient(
      120deg,
      transparent,
      rgba(255, 255, 255, .03),
      transparent 75%
    );

  pointer-events: none;
}

.promo-card-top {
  margin-bottom: 24px;

  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.promo-badge,
.promo-state {
  min-height: 34px;

  padding: 0 14px;

  display: inline-flex;
  align-items: center;
  justify-content: center;

  border-radius: 999px;

  font-size: 11px;
  letter-spacing: .11em;
}

.promo-badge {
  border:
    1px solid rgba(111, 135, 214, .18);

  color: #b7bfd8;

  background:
    rgba(255, 255, 255, .04);
}

.promo-state {
  border:
    1px solid rgba(76, 227, 206, .24);

  color: #baf7ee;

  background:
    rgba(21, 133, 117, .18);

  box-shadow:
    0 0 18px rgba(21, 133, 117, .14);
}

.promo-core {
  min-height: 150px;

  margin-bottom: 24px;

  display: grid;
  grid-template-columns: 140px 1fr;
  gap: 22px;
  align-items: center;
}

.promo-shield {
  width: 140px;
  height: 140px;

  position: relative;

  display: grid;
  place-items: center;

  border-radius: 36px;

  background:
    linear-gradient(
      145deg,
      rgba(27, 97, 255, .95),
      rgba(123, 72, 255, .92)
    );

  box-shadow:
    0 18px 34px rgba(31, 79, 234, .30),
    inset 0 1px rgba(255, 255, 255, .18);
}

.promo-shield::before {
  content: "";

  width: 102px;
  height: 102px;

  position: absolute;

  border:
    1px solid rgba(255, 255, 255, .18);
  border-radius: 28px;
}

.promo-shield span {
  position: relative;
  z-index: 1;

  color: #ffffff;

  font-size: 56px;
  letter-spacing: .06em;
}

.promo-route {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.promo-route span {
  color: #8490b1;

  font-size: 12px;
  letter-spacing: .18em;
}

.promo-route strong {
  max-width: 330px;

  color: #f4f7ff;

  font-size: 30px;
  line-height: 1.18;
  letter-spacing: -.02em;
}

.promo-device-row,
.promo-location-row,
.promo-metrics {
  display: grid;
  gap: 12px;
}

.promo-device-row {
  margin-bottom: 14px;

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

.promo-device {
  min-height: 58px;

  padding: 0 14px;

  display: flex;
  align-items: center;
  justify-content: center;

  border:
    1px solid rgba(255, 255, 255, .07);
  border-radius: 16px;

  color: #e8edf8;

  background:
    linear-gradient(
      145deg,
      rgba(20, 25, 50, .88),
      rgba(10, 12, 26, .92)
    );

  font-size: 13px;
  text-align: center;
}

.promo-location-row {
  margin-bottom: 16px;

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

.promo-location {
  min-height: 48px;

  padding: 0 14px;

  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;

  border:
    1px solid rgba(92, 123, 203, .14);
  border-radius: 15px;

  color: #b6c0db;

  background:
    rgba(255, 255, 255, .03);

  font-size: 12px;
}

.promo-location-dot {
  width: 8px;
  height: 8px;

  flex: 0 0 8px;

  border-radius: 50%;

  background: #35ddff;

  box-shadow:
    0 0 12px rgba(53, 221, 255, .62);
}

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

.promo-metric {
  min-height: 92px;

  padding: 16px 16px 14px;

  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 8px;

  border:
    1px solid rgba(255, 255, 255, .07);
  border-radius: 18px;

  background:
    rgba(255, 255, 255, .03);
}

.promo-metric strong {
  color: #ffffff;

  font-size: 18px;
  letter-spacing: .04em;
}

.promo-metric span {
  color: #8e99ba;

  font-family:
    "Segoe UI",
    sans-serif;

  font-size: 12px;
  line-height: 1.35;
}

.promo-floating {
  width: 230px;

  position: absolute;
  z-index: 3;

  padding: 16px 16px 15px;

  border:
    1px solid rgba(113, 133, 210, .14);
  border-radius: 18px;

  background:
    rgba(9, 12, 27, .84);

  backdrop-filter: blur(10px);

  box-shadow:
    0 16px 36px rgba(0, 0, 0, .22);
}

.promo-floating strong {
  display: block;

  margin-bottom: 8px;

  color: #f6f8ff;

  font-size: 15px;
}

.promo-floating span {
  color: #97a2c3;

  font-family:
    "Segoe UI",
    sans-serif;

  font-size: 12px;
  line-height: 1.45;
}

.promo-floating-left {
  left: -10px;
  bottom: 62px;
}

.promo-floating-right {
  right: -10px;
  top: 92px;
}

@media (max-width: 1320px) {

  .topbar {
    min-height: 166px;

    padding: 14px 0;

    grid-template-columns: 1fr auto;
    gap: 13px 18px;
  }

  .top-downloads {
    grid-column: 1 / -1;

    justify-content: flex-start;

    overflow-x: auto;

    padding-bottom: 3px;

    scrollbar-width: none;
  }

  .top-downloads::-webkit-scrollbar {
    display: none;
  }

  .top-download {
    flex: 0 0 auto;
  }

  .hero {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .hero-text {
    text-align: center;
  }

  .hero p {
    max-width: 760px;
    margin: auto;
  }

  .promo-floating-left {
    left: 0;
  }

  .promo-floating-right {
    right: 0;
  }

}

@media (max-width: 860px) {

  .hero {
    width: calc(100% - 28px);
    min-height: auto;
    padding: 52px 0 56px;
  }

  .hero h1 {
    font-size: 44px;
  }

  .hero p {
    font-size: 16px;
  }

  .hero-visual {
    min-height: auto;
  }

  .promo-card {
    padding: 20px 18px 18px;
    border-radius: 24px;
  }

  .promo-core {
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
  }

  .promo-route strong {
    max-width: none;
    font-size: 24px;
  }

  .promo-device-row,
  .promo-location-row,
  .promo-metrics {
    grid-template-columns: 1fr 1fr;
  }

  .promo-floating {
    width: 200px;
  }

}

@media (max-width: 620px) {

  .topbar {
    width: calc(100% - 28px);
    min-height: 150px;
  }

  .brand img {
    width: 40px;
    height: 40px;
  }

  .brand span {
    font-size: 13px;
  }

  .cabinet {
    min-height: 48px;

    padding: 0 17px;

    font-size: 12px;
  }

  .top-download {
    min-height: 48px;

    padding: 0 16px;

    font-size: 12px;
  }

  .hero h1 {
    font-size: 38px;
  }

  .promo-device-row,
  .promo-location-row,
  .promo-metrics {
    grid-template-columns: 1fr;
  }

  .promo-floating {
    width: 100%;

    position: static;

    margin-top: 14px;
  }

}

/* PUSK_FINAL_EDITABLE_HERO_V7 */

body,
button,
a,
input,
textarea,
select {
  font-family:
    "Russo One",
    "Segoe UI",
    sans-serif;
}

.hero-content-v7 {
  width: min(calc(100% - 48px), 1540px);
  min-height: 700px;

  margin: 0 auto;
  padding: 52px 0 46px;

  display: grid;
  grid-template-columns:
    minmax(430px, .72fr)
    minmax(660px, 1.28fr);

  gap: 22px;
  align-items: center;

  overflow: visible;
}

.hero-copy-v7 {
  position: relative;
  z-index: 4;

  align-self: center;
}

.hero-copy-v7 h1 {
  margin: 0;

  font-size:
    clamp(58px, 5.4vw, 92px);

  line-height: 1.02;
  letter-spacing: -.04em;
}

.hero-title-v7 {
  display: block;

  color: #f7f8ff;

  text-shadow:
    0 0 22px rgba(73, 111, 255, .05);
}

.hero-slogan-v7 {
  display: block;

  margin-top: 20px;

  color: transparent;

  background:
    linear-gradient(
      102deg,
      #10baff 0%,
      #299cff 28%,
      #5c7cff 60%,
      #ba4aff 100%
    );

  -webkit-background-clip: text;
  background-clip: text;

  filter:
    drop-shadow(
      0 0 17px rgba(49, 125, 255, .10)
    );
}

.hero-copy-v7 p {
  margin: 34px 0 0;

  color: #a0aac5;

  font-size: 18px;
  line-height: 1.72;
}

.hero-media-v7 {
  width: 100%;

  position: relative;

  display: flex;
  align-items: center;
  justify-content: center;

  overflow: visible;

  isolation: isolate;
}

.hero-media-v7::before {
  content: "";

  width: 78%;
  height: 74%;

  position: absolute;
  left: 50%;
  top: 50%;
  z-index: -1;

  transform:
    translate(-50%, -50%);

  border-radius: 50%;

  background:
    radial-gradient(
      circle,
      rgba(35, 119, 255, .15),
      rgba(111, 58, 255, .08) 42%,
      transparent 72%
    );

  filter: blur(45px);
}

.hero-media-v7 img {
  width: 100%;
  max-width: 960px;
  height: auto;

  display: block;

  object-fit: contain;

  user-select: none;

  filter:
    drop-shadow(
      0 28px 60px rgba(0, 0, 0, .24)
    );
}

.hero-content-v7 .hero-text,
.hero-content-v7 .hero-visual,
.hero-content-v7 .promo-card,
.hero-content-v7 .promo-floating,
.hero-content-v7 .promo-glow,
.hero-content-v7 .hero-actions,
.hero-content-v7 .facts,
.hero-content-v7 .eyebrow {
  display: none !important;
}

@media (max-width: 1240px) {

  .hero-content-v7 {
    grid-template-columns: 1fr;

    gap: 24px;

    padding-top: 54px;

    text-align: center;
  }

  .hero-copy-v7 p {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-media-v7 {
    max-width: 980px;

    margin: 0 auto;
  }

}

@media (max-width: 720px) {

  .hero-content-v7 {
    width: calc(100% - 28px);
    min-height: auto;

    padding:
      44px 0 48px;
  }

  .hero-copy-v7 h1 {
    font-size:
      clamp(39px, 11.5vw, 56px);
  }

  .hero-slogan-v7 {
    margin-top: 15px;
  }

  .hero-copy-v7 p {
    margin-top: 25px;

    font-size: 14px;
    line-height: 1.65;
  }

  .hero-media-v7 img {
    width: 118%;
    max-width: none;

    margin-left: -9%;
  }

}

@media (max-width: 430px) {

  .hero-copy-v7 h1 {
    font-size: 37px;
  }

  .hero-copy-v7 p br {
    display: none;
  }

}

/* PUSK_TOPBAR_REAL_AUTH_V8 */

[hidden] {
  display: none !important;
}

.topbar-v8 {
  width: min(calc(100% - 48px), 1540px);
  min-height: 106px;

  display: grid;
  grid-template-columns:
    auto
    minmax(0, 1fr)
    auto;

  gap: 24px;
  align-items: center;
}

.top-downloads-v8 {
  min-width: 0;

  display: flex;
  align-items: center;
  justify-content: center;

  gap: 11px;
}

.top-download-v8 {
  min-height: 58px;

  padding: 0 19px;

  display: inline-flex;
  align-items: center;
  justify-content: center;

  gap: 10px;

  white-space: nowrap;

  font-size: 13px;
}

.platform-icon-v8 {
  width: 22px;
  height: 22px;

  flex: 0 0 22px;

  fill: currentColor;

  color: #ffffff;

  filter:
    drop-shadow(
      0 0 8px rgba(70, 150, 255, .20)
    );
}

.platform-icon-apple-v8 {
  width: 20px;
  height: 20px;

  flex-basis: 20px;
}

.top-auth-v8 {
  min-width: 186px;

  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.auth-primary-v8,
.auth-logout-v8 {
  min-height: 58px;

  border-radius: 17px;

  white-space: nowrap;

  font-size: 14px;
}

.auth-primary-v8 {
  position: relative;
  overflow: hidden;

  padding: 0 25px;

  display: inline-flex;
  align-items: center;
  justify-content: center;

  gap: 10px;

  border:
    1px solid rgba(116, 206, 255, .58);

  color: #ffffff;

  background:
    linear-gradient(
      112deg,
      #1768f6 0%,
      #337eff 34%,
      #7856ff 70%,
      #c83aff 100%
    );

  box-shadow:
    0 13px 34px rgba(35, 94, 255, .30),
    0 0 31px rgba(142, 56, 255, .17),
    inset 0 1px rgba(255, 255, 255, .22);

  transition:
    transform .15s ease,
    filter .15s ease,
    box-shadow .15s ease;
}

.auth-primary-v8::after {
  content: "";

  width: 58px;
  height: 140%;

  position: absolute;
  left: -90px;
  top: -20%;

  transform: rotate(18deg);

  background:
    linear-gradient(
      90deg,
      transparent,
      rgba(255, 255, 255, .19),
      transparent
    );

  transition: left .45s ease;
}

.auth-primary-v8:hover {
  transform: translateY(-1px);

  filter: brightness(1.06);

  box-shadow:
    0 15px 39px rgba(35, 94, 255, .34),
    0 0 35px rgba(142, 56, 255, .21),
    inset 0 1px rgba(255, 255, 255, .24);
}

.auth-primary-v8:hover::after {
  left: calc(100% + 30px);
}

.auth-primary-v8 > * {
  position: relative;
  z-index: 1;
}

.auth-icon-v8 {
  width: 21px;
  height: 21px;

  flex: 0 0 21px;

  fill: currentColor;
}

.auth-logged-in-v8 {
  display: flex;
  align-items: center;

  gap: 9px;
}

.auth-cabinet-v8 {
  padding-left: 21px;
  padding-right: 21px;
}

.auth-logout-v8 {
  padding: 0 19px;

  border:
    1px solid rgba(255, 115, 157, .25);

  cursor: pointer;

  color: #f7e8ef;

  background:
    linear-gradient(
      145deg,
      rgba(54, 20, 42, .76),
      rgba(17, 10, 24, .92)
    );

  box-shadow:
    inset 0 1px rgba(255, 255, 255, .035),
    0 8px 22px rgba(0, 0, 0, .22);

  transition:
    transform .15s ease,
    border-color .15s ease,
    background .15s ease;
}

.auth-logout-v8:hover {
  transform: translateY(-1px);

  border-color:
    rgba(255, 117, 164, .48);

  background:
    linear-gradient(
      145deg,
      rgba(86, 25, 57, .82),
      rgba(26, 11, 29, .95)
    );
}

.auth-logout-v8:disabled {
  opacity: .58;

  cursor: default;

  transform: none;
}

.auth-bridge-frame-v8 {
  width: 1px;
  height: 1px;

  position: absolute;
  left: -10000px;
  top: -10000px;

  border: 0;

  opacity: 0;

  pointer-events: none;
}

@media (max-width: 1450px) {

  .topbar-v8 {
    min-height: 174px;

    padding: 14px 0;

    grid-template-columns:
      1fr
      auto;

    gap: 14px 18px;
  }

  .top-downloads-v8 {
    grid-column: 1 / -1;

    justify-content: flex-start;

    overflow-x: auto;

    padding-bottom: 3px;

    scrollbar-width: none;
  }

  .top-downloads-v8::-webkit-scrollbar {
    display: none;
  }

  .top-download-v8 {
    flex: 0 0 auto;
  }

}

@media (max-width: 720px) {

  .topbar-v8 {
    width: calc(100% - 28px);
    min-height: 158px;
  }

  .top-download-v8 {
    min-height: 48px;

    padding: 0 14px;

    gap: 8px;

    font-size: 11px;
  }

  .platform-icon-v8 {
    width: 19px;
    height: 19px;

    flex-basis: 19px;
  }

  .auth-primary-v8,
  .auth-logout-v8 {
    min-height: 48px;

    font-size: 11px;
  }

  .auth-primary-v8 {
    padding: 0 16px;
  }

  .auth-logout-v8 {
    padding: 0 13px;
  }

  .auth-icon-v8 {
    width: 18px;
    height: 18px;

    flex-basis: 18px;
  }

}
/* ================================================================
   PUSK_WEB_LOGIN_REFERENCE_V10
   ================================================================ */

body.auth-modal-open-v9 {
  overflow: hidden;
}

.auth-modal-v10 {
  position: fixed;
  inset: 0;
  z-index: 9999;

  display: grid;
  place-items: center;

  padding: 22px;
}

.auth-modal-backdrop-v10 {
  position: absolute;
  inset: 0;

  width: 100%;
  height: 100%;

  margin: 0;
  padding: 0;

  border: 0;

  background:
    radial-gradient(
      circle at 50% 48%,
      rgba(30, 86, 255, .12),
      transparent 36%
    ),
    rgba(1, 3, 11, .88);

  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.auth-modal-panel-v10 {
  width: min(100%, 860px);
  min-height: 470px;

  position: relative;
  z-index: 1;

  display: grid;
  grid-template-columns:
    43%
    57%;

  overflow: hidden;

  border:
    1px solid rgba(60, 116, 255, .18);

  border-radius: 27px;

  background:
    radial-gradient(
      circle at 18% 48%,
      rgba(26, 113, 255, .12),
      transparent 30%
    ),
    radial-gradient(
      circle at 88% 16%,
      rgba(70, 72, 255, .10),
      transparent 28%
    ),
    linear-gradient(
      130deg,
      #020714 0%,
      #030817 45%,
      #02040d 100%
    );

  box-shadow:
    0 42px 120px rgba(0, 0, 0, .72),
    0 0 70px rgba(39, 91, 255, .10),
    inset 0 1px rgba(255, 255, 255, .035);
}

.auth-modal-panel-v10::before {
  content: "";

  position: absolute;
  left: 48%;
  top: 74px;

  width: 170px;
  height: 1px;

  background:
    linear-gradient(
      90deg,
      transparent,
      #168cff,
      #58eaff,
      transparent
    );

  box-shadow:
    0 0 13px rgba(37, 184, 255, .95),
    0 0 30px rgba(31, 106, 255, .48);
}

.auth-logo-pane-v10 {
  min-height: 470px;

  position: relative;

  display: grid;
  place-items: center;

  overflow: hidden;
}

.auth-logo-pane-v10::before {
  content: "";

  width: 1px;
  height: 185px;

  position: absolute;
  left: 85px;
  top: 115px;

  background:
    linear-gradient(
      transparent,
      rgba(62, 228, 255, .95),
      transparent
    );

  box-shadow:
    0 0 14px rgba(62, 208, 255, .80),
    0 0 34px rgba(38, 103, 255, .55);
}

.auth-logo-pane-v10::after {
  content: "";

  width: 150px;
  height: 1px;

  position: absolute;
  left: 85px;
  top: 115px;

  background:
    linear-gradient(
      90deg,
      rgba(70, 230, 255, .95),
      transparent
    );

  box-shadow:
    0 0 14px rgba(60, 217, 255, .76);
}

.auth-logo-aura-v10 {
  width: 285px;
  height: 285px;

  position: absolute;

  border-radius: 50%;

  background:
    radial-gradient(
      circle,
      rgba(42, 186, 255, .22),
      rgba(44, 83, 255, .12) 42%,
      transparent 70%
    );

  filter: blur(15px);
}

.auth-logo-main-v10 {
  width: 270px;
  height: 270px;

  position: relative;
  z-index: 2;

  display: block;

  object-fit: contain;

  filter:
    drop-shadow(
      0 0 14px rgba(48, 215, 255, .72)
    )
    drop-shadow(
      0 0 35px rgba(57, 84, 255, .60)
    )
    drop-shadow(
      0 0 60px rgba(129, 48, 255, .38)
    );
}

.auth-content-v10 {
  min-width: 0;

  display: flex;
  flex-direction: column;
  align-items: center;

  padding:
    37px
    56px
    25px
    24px;
}

.auth-content-v10 h2 {
  margin: 0;

  color: #ffffff;

  font-family:
    "Russo One",
    sans-serif;

  font-size: 37px;
  font-weight: 400;
  line-height: 1;

  text-shadow:
    0 3px 10px rgba(0, 0, 0, .42);
}

.auth-title-line-v10 {
  width: 170px;
  height: 1px;

  margin-top: 13px;

  background:
    linear-gradient(
      90deg,
      transparent,
      #1b91ff,
      #72ecff,
      transparent
    );

  box-shadow:
    0 0 12px rgba(39, 184, 255, .92),
    0 0 25px rgba(38, 101, 255, .40);
}

.auth-subtitle-v10 {
  margin:
    17px 0 17px;

  color: #ffffff;

  font-size: 15px;
  line-height: 1.65;
  text-align: center;
}

.auth-provider-list-v10 {
  width: 100%;

  display: grid;

  gap: 10px;
}

.auth-provider-v10 {
  width: 100%;
  min-height: 54px;

  position: relative;

  display: grid;
  grid-template-columns:
    54px
    1fr;

  align-items: center;

  padding:
    0
    21px
    0
    13px;

  border-radius: 15px;

  font-family:
    "Russo One",
    sans-serif;

  font-size: 15px;
  font-weight: 400;
  text-align: left;

  transition:
    transform .15s ease,
    box-shadow .15s ease,
    border-color .15s ease;
}

.auth-provider-v10:not(:disabled) {
  cursor: pointer;
}

.auth-provider-v10:hover:not(:disabled) {
  transform:
    translateY(-1px);
}

.auth-provider-apple-v10,
.auth-provider-google-v10 {
  border:
    1px solid rgba(255, 255, 255, .90);

  color: #080808;

  background:
    linear-gradient(
      180deg,
      #ffffff,
      #f1f1f4
    );

  box-shadow:
    0 6px 17px rgba(0, 0, 0, .18);
}

.auth-provider-google-v10:hover {
  box-shadow:
    0 8px 22px rgba(60, 138, 255, .22),
    0 0 0 1px rgba(78, 163, 255, .28);
}

.auth-provider-apple-v10:disabled {
  opacity: 1;

  cursor: not-allowed;
}

.auth-provider-yandex-v10 {
  border:
    1px solid rgba(63, 112, 255, .55);

  color: #ffffff;

  background:
    linear-gradient(
      180deg,
      #040404,
      #090a0d
    );

  box-shadow:
    0 6px 18px rgba(0, 0, 0, .32),
    0 0 18px rgba(43, 93, 255, .10);
}

.auth-provider-yandex-v10:hover {
  border-color:
    rgba(65, 147, 255, .85);

  box-shadow:
    0 8px 25px rgba(31, 87, 255, .18);
}

.auth-icon-box-v10 {
  width: 38px;
  height: 38px;

  display: grid;
  place-items: center;

  justify-self: start;
}

.auth-apple-icon-v10 {
  width: 30px;
  height: 30px;

  fill: #050505;
}

.auth-google-mark-v10 {
  font-family:
    Arial,
    sans-serif;

  font-size: 29px;
  font-weight: 700;

  background:
    conic-gradient(
      from -40deg,
      #4285f4,
      #4285f4 25%,
      #34a853 25%,
      #34a853 46%,
      #fbbc05 46%,
      #fbbc05 68%,
      #ea4335 68%,
      #ea4335 84%,
      #4285f4 84%
    );

  -webkit-background-clip: text;
  background-clip: text;

  color: transparent;
}

.auth-yandex-mark-v10 {
  width: 36px;
  height: 36px;

  border-radius: 50%;

  color: #ffffff;

  background:
    linear-gradient(
      145deg,
      #ff521c,
      #ff290d
    );

  font-size: 23px;

  box-shadow:
    0 0 10px rgba(255, 74, 25, .22);
}

.auth-modal-status-v10 {
  width: 100%;
  min-height: 20px;

  margin-top: 8px;

  color: #7c8cac;

  font-size: 10px;
  line-height: 1.45;
  text-align: center;
}

.auth-modal-status-v10[data-mode="loading"] {
  color: #73c8ff;
}

.auth-modal-status-v10[data-mode="error"] {
  color: #ff8c9c;
}

.auth-legal-v10 {
  margin:
    auto
    0
    0;

  color: #76788b;

  font-size: 10px;
  line-height: 1.65;
  text-align: center;
}

.auth-legal-v10 a {
  color: #2297ff;

  text-decoration: none;
}

.auth-legal-v10 a:hover {
  color: #6ccaff;

  text-decoration: underline;
}

@media (max-width: 760px) {

  .auth-modal-v10 {
    padding: 14px;
  }

  .auth-modal-panel-v10 {
    width: min(100%, 480px);
    min-height: 0;

    grid-template-columns: 1fr;
  }

  .auth-modal-panel-v10::before {
    left: 50%;
    top: 202px;

    transform:
      translateX(-50%);
  }

  .auth-logo-pane-v10 {
    min-height: 190px;
  }

  .auth-logo-pane-v10::before,
  .auth-logo-pane-v10::after {
    display: none;
  }

  .auth-logo-aura-v10 {
    width: 180px;
    height: 180px;
  }

  .auth-logo-main-v10 {
    width: 165px;
    height: 165px;
  }

  .auth-content-v10 {
    padding:
      8px
      22px
      24px;
  }

  .auth-content-v10 h2 {
    font-size: 30px;
  }

  .auth-subtitle-v10 {
    margin:
      14px
      0
      18px;

    font-size: 13px;
  }

  .auth-provider-v10 {
    min-height: 52px;

    font-size: 13px;
  }

  .auth-legal-v10 {
    margin-top: 11px;
  }
}
/* ================================================================
   PUSK_WEB_LOGIN_V10_GLOW_TRANSITION_V1

   Exact V10 composition is preserved.
   Only the icon illumination / left-to-right light transition changes.
   ================================================================ */

/*
  Allow the icon aura to leave the left column.
  The outer modal panel still clips everything at its own border.
*/
.auth-logo-pane-v10 {
  overflow: visible;

  isolation: auto;
}

/*
  Large soft aura behind the existing square PUSK icon.
  The center stays behind the icon while the right side reaches
  underneath the provider-button area.
*/
.auth-logo-aura-v10 {
  width: 500px;
  height: 420px;

  z-index: 0;

  transform:
    translateX(86px);

  opacity: .92;

  border-radius: 50%;

  background:
    radial-gradient(
      ellipse at 35% 50%,
      rgba(33, 215, 255, .28) 0%,
      rgba(36, 138, 255, .23) 24%,
      rgba(76, 72, 255, .18) 44%,
      rgba(134, 52, 255, .12) 61%,
      transparent 78%
    );

  filter:
    blur(30px);

  pointer-events: none;
}

/*
  Secondary horizontal glow creates the actual visual bridge
  from the icon toward and underneath the login buttons.
*/
.auth-logo-pane-v10 .auth-logo-aura-v10::after {
  content: "";

  width: 470px;
  height: 230px;

  position: absolute;

  left: 95px;
  top: 50%;

  transform:
    translateY(-50%);

  border-radius: 50%;

  background:
    radial-gradient(
      ellipse at 18% 50%,
      rgba(32, 213, 255, .20),
      rgba(43, 116, 255, .17) 33%,
      rgba(103, 56, 255, .11) 58%,
      transparent 78%
    );

  filter:
    blur(34px);

  pointer-events: none;
}

/*
  Keep the original V10 icon itself exactly the same size and shape.
  Only enhance its emitted light.
*/
.auth-logo-main-v10 {
  z-index: 2;

  filter:
    drop-shadow(
      0 0 14px rgba(47, 222, 255, .82)
    )
    drop-shadow(
      0 0 32px rgba(46, 113, 255, .67)
    )
    drop-shadow(
      24px 0 52px rgba(83, 68, 255, .45)
    )
    drop-shadow(
      54px 0 80px rgba(128, 49, 255, .22)
    );
}

/*
  Let the right column remain transparent enough for the aura
  to read underneath it, without changing its geometry.
*/
.auth-content-v10 {
  position: relative;
  z-index: 2;

  background:
    radial-gradient(
      ellipse at 0% 49%,
      rgba(52, 91, 255, .055),
      transparent 48%
    );
}

/*
  Give the provider block a very subtle reflected blue light,
  so the transition does not stop abruptly at the column boundary.
*/
.auth-provider-list-v10 {
  position: relative;
}

.auth-provider-list-v10::before {
  content: "";

  position: absolute;

  inset:
    -24px
    -24px
    -24px
    -70px;

  z-index: -1;

  border-radius: 40%;

  background:
    radial-gradient(
      ellipse at 0% 50%,
      rgba(46, 109, 255, .11),
      rgba(87, 58, 255, .055) 42%,
      transparent 72%
    );

  filter:
    blur(22px);

  pointer-events: none;
}

@media (max-width: 760px) {

  .auth-logo-pane-v10 {
    overflow: hidden;
  }

  .auth-logo-aura-v10 {
    width: 270px;
    height: 230px;

    transform: none;

    filter:
      blur(24px);
  }

  .auth-logo-pane-v10
  .auth-logo-aura-v10::after {
    display: none;
  }

  .auth-logo-main-v10 {
    filter:
      drop-shadow(
        0 0 13px rgba(47, 222, 255, .76)
      )
      drop-shadow(
        0 0 28px rgba(46, 113, 255, .58)
      )
      drop-shadow(
        0 0 46px rgba(128, 49, 255, .30)
      );
  }

  .auth-provider-list-v10::before {
    display: none;
  }
}
