:root {
  --guest-cream: #fffaf4;
  --guest-cream-strong: #fff1e7;
  --guest-surface: #fff;
  --guest-ink: #30273d;
  --guest-muted: #706777;
  --guest-violet: #6247e8;
  --guest-violet-dark: #4d35cc;
  --guest-violet-soft: #eeeaff;
  --guest-blue: #1769e0;
  --guest-blue-soft: #e1efff;
  --guest-peach: #ffb78e;
  --guest-border: #eadfd8;
  --guest-telegram: #2aabee;
  --guest-shadow: 0 18px 50px rgba(70,48,37,.10);
  --guest-radius: 24px;
  color-scheme: light;
  scroll-behavior: smooth;
}

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

html {
  scroll-padding-top: 92px;
}

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--guest-cream);
  color: var(--guest-ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
}

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

button {
  border: 0;
}

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

.vpx-tg-float {
  position: fixed;
  right: 20px;
  bottom: 50px;
  z-index: 1035;
}

.vpx-tg-float-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 10px 16px;
  border: none;
  border-radius: 24px;
  background: linear-gradient(135deg, #2aabee 0%, #229ed9 100%);
  box-shadow: 0 4px 14px rgba(34, 158, 217, .45);
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  line-height: 1;
  text-decoration: none;
  transition: background .15s ease, transform .1s ease, box-shadow .15s ease;
  will-change: transform;
}

.vpx-tg-float-link:hover,
.vpx-tg-float-link:focus-visible {
  background: linear-gradient(135deg, #1a9edf 0%, #1589c0 100%);
  box-shadow: 0 6px 18px rgba(34, 158, 217, .55);
  color: #fff;
  text-decoration: none;
  transform: translateY(-1px);
}

.vpx-tg-float-link:active {
  transform: translateY(0);
}

.vpx-tg-float-link svg {
  display: block;
  flex: 0 0 auto;
}

@media (max-width: 575.98px) {
  .vpx-tg-float {
    right: 14px;
    bottom: 14px;
  }

  .vpx-tg-float-link {
    gap: 8px;
    padding: 10px 14px;
    font-size: 13px;
  }
}

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

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

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

p {
  text-wrap: pretty;
}

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

:focus-visible {
  outline: 3px solid var(--guest-blue);
  outline-offset: 4px;
  border-radius: 6px;
}

.guest-shell {
  width: min(100% - 40px, 1180px);
  margin-inline: auto;
}

.guest-header {
  position: sticky;
  z-index: 20;
  top: 0;
  border-bottom: 1px solid rgba(234, 223, 216, .8);
  background: rgba(255, 250, 244, .88);
  backdrop-filter: blur(16px);
}

.guest-header__inner {
  position: relative;
  display: flex;
  min-height: 76px;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.guest-wordmark {
  flex: none;
  font-size: 1.25rem;
  font-weight: 800;
  letter-spacing: -.03em;
}

.guest-nav {
  display: flex;
  align-items: center;
  gap: clamp(18px, 2.5vw, 34px);
  color: var(--guest-muted);
  font-size: .94rem;
  font-weight: 650;
}

.guest-nav a,
.guest-login,
.guest-signup,
.guest-footer__links a {
  transition: color .18s ease;
}

.guest-nav a:hover,
.guest-login:hover,
.guest-signup:hover,
.guest-footer__links a:hover {
  color: var(--guest-violet);
}

.guest-header__actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

.guest-login {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  color: var(--guest-violet);
  font-weight: 750;
}

.guest-signup {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 18px;
  border: 1px solid rgba(105, 64, 239, .18);
  border-radius: 999px;
  background: var(--guest-violet);
  color: #fff;
  font-weight: 800;
  box-shadow: 0 12px 24px rgba(105, 64, 239, .2);
}

.guest-signup:hover,
.guest-signup:focus-visible {
  color: #fff;
  background: var(--guest-violet-dark);
}

.guest-menu-button {
  display: none;
  width: 46px;
  height: 46px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--guest-border);
  border-radius: 14px;
  background: var(--guest-surface);
  color: var(--guest-ink);
  cursor: pointer;
}

.guest-menu-button__lines,
.guest-menu-button__lines::before,
.guest-menu-button__lines::after {
  display: block;
  width: 20px;
  height: 2px;
  border-radius: 2px;
  background: currentColor;
}

.guest-menu-button__lines {
  position: relative;
}

.guest-menu-button__lines::before,
.guest-menu-button__lines::after {
  position: absolute;
  left: 0;
  content: "";
}

.guest-menu-button__lines::before {
  top: -6px;
}

.guest-menu-button__lines::after {
  top: 6px;
}

.guest-menu {
  display: none;
}

.guest-hero {
  position: relative;
  overflow: hidden;
  padding: clamp(68px, 9vw, 126px) 0 clamp(76px, 10vw, 140px);
  background:
    radial-gradient(circle at 8% 18%, rgba(255, 183, 142, .22), transparent 25rem),
    radial-gradient(circle at 94% 70%, rgba(23, 105, 224, .11), transparent 28rem);
}

.guest-hero__grid {
  display: grid;
  align-items: center;
  gap: 52px;
}

.guest-hero__content {
  position: relative;
  z-index: 1;
  max-width: 720px;
}

.guest-kicker,
.guest-eyebrow {
  margin-bottom: 18px;
  color: var(--guest-violet);
  font-size: .82rem;
  font-weight: 850;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.guest-hero h1 {
  max-width: 800px;
  margin-bottom: 24px;
  font-size: clamp(2.7rem, 6.2vw, 5.4rem);
  letter-spacing: -.065em;
}

.guest-hero__lead {
  max-width: 680px;
  margin-bottom: 32px;
  color: var(--guest-muted);
  font-size: clamp(1.05rem, 1.8vw, 1.3rem);
}

.guest-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 30px;
}

.guest-button {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  padding: 11px 22px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 800;
  line-height: 1.35;
  text-align: center;
  transition: background-color .18s ease, border-color .18s ease, box-shadow .18s ease, color .18s ease;
}

a.guest-button:hover,
a.guest-button:focus-visible {
  transform: none;
}

.guest-button--primary {
  background: var(--guest-violet);
  color: #fff;
  box-shadow: 0 10px 24px rgba(98, 71, 232, .2);
}

.guest-button--primary:hover {
  background: var(--guest-violet-dark);
  box-shadow: 0 0 0 4px rgba(98, 71, 232, .15), 0 10px 24px rgba(98, 71, 232, .32);
}

.guest-button--secondary {
  border-color: var(--guest-border);
  background: var(--guest-surface);
  color: var(--guest-ink);
}

.guest-button--secondary:hover {
  border-color: var(--guest-violet);
  background: var(--guest-surface);
  box-shadow: 0 0 0 4px rgba(98, 71, 232, .15), 0 8px 18px rgba(98, 71, 232, .14);
}

.guest-button--support {
  background: var(--guest-telegram);
  color: var(--guest-ink);
  box-shadow: 0 10px 24px rgba(42, 171, 238, .2);
}

.guest-button--support:hover,
.guest-button--support:focus-visible {
  background: #53bdf0;
  color: var(--guest-ink);
  box-shadow: 0 0 0 4px rgba(42, 171, 238, .15), 0 10px 24px rgba(42, 171, 238, .3);
}

.guest-button--primary:active,
.guest-button--secondary:active,
.guest-button--support:active {
  box-shadow: 0 0 0 2px rgba(98, 71, 232, .2);
}

.guest-button--support:active {
  box-shadow: 0 0 0 2px rgba(42, 171, 238, .2);
}

.guest-support .guest-button--support:focus-visible {
  outline-color: #fff;
}

.guest-button--disabled {
  border-color: var(--guest-border);
  background: #f2eeeb;
  color: var(--guest-muted);
  cursor: not-allowed;
}

.guest-button--wide {
  width: 100%;
}

.guest-orbit {
  position: relative;
  width: min(76vw, 430px);
  aspect-ratio: 1;
  margin-inline: auto;
  border-radius: 50%;
  background:
    radial-gradient(circle, rgba(255, 255, 255, .96) 0 25%, transparent 26%),
    radial-gradient(circle at 34% 28%, rgba(255, 183, 142, .42), transparent 34%),
    radial-gradient(circle at 70% 70%, rgba(23, 105, 224, .22), transparent 39%),
    var(--guest-cream-strong);
  box-shadow: var(--guest-shadow);
}

.guest-orbit__ring {
  position: absolute;
  inset: 11%;
  border: 1px solid rgba(98, 71, 232, .3);
  border-radius: 50%;
}

.guest-orbit__ring--inner {
  inset: 27%;
  border-color: rgba(23, 105, 224, .3);
  transform: rotate(-24deg);
}

.guest-orbit__center {
  position: absolute;
  inset: 50% auto auto 50%;
  display: grid;
  width: 29%;
  aspect-ratio: 1;
  place-items: center;
  transform: translate(-50%, -50%);
  border: 1px solid rgba(255, 255, 255, .9);
  border-radius: 50%;
  background: var(--guest-surface);
  box-shadow: 0 18px 40px rgba(77, 53, 204, .16);
  font-size: clamp(2.8rem, 7vw, 4.8rem);
}

.guest-orbit__dot {
  position: absolute;
  display: block;
  width: 34px;
  aspect-ratio: 1;
  border: 7px solid var(--guest-surface);
  border-radius: 50%;
  box-shadow: 0 8px 20px rgba(48, 39, 61, .14);
}

.guest-orbit__dot--one {
  top: 6%;
  left: 17%;
  background: var(--guest-violet);
}

.guest-orbit__dot--two {
  right: -2%;
  bottom: 27%;
  background: var(--guest-peach);
}

.guest-orbit__dot--three {
  bottom: -10%;
  left: 4%;
  background: var(--guest-violet-dark);
}

.guest-section {
  padding: clamp(72px, 9vw, 116px) 0;
}

.guest-section--tinted {
  background: var(--guest-cream-strong);
}

.guest-section__heading {
  max-width: 690px;
  margin-bottom: 42px;
}

.guest-section__heading--wide {
  max-width: 780px;
}

.guest-section__heading h2,
.guest-support h2 {
  margin-bottom: 16px;
  font-size: clamp(2rem, 4.2vw, 3.5rem);
  letter-spacing: -.045em;
}

.guest-section__heading > p:last-child,
.guest-support p,
.guest-card p,
.guest-empty p,
.guest-faq p {
  color: var(--guest-muted);
}

.guest-steps,
.guest-capability-grid,
.guest-tariffs {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

.guest-card {
  min-width: 0;
  border: 1px solid var(--guest-border);
  border-radius: var(--guest-radius);
  background: var(--guest-surface);
  box-shadow: 0 12px 36px rgba(70, 48, 37, .07);
}

.guest-step {
  position: relative;
  padding: 30px;
  counter-increment: steps;
}

.guest-step__number {
  display: grid;
  width: 44px;
  height: 44px;
  margin-bottom: 26px;
  place-items: center;
  border-radius: 15px;
  background: var(--guest-violet-soft);
  color: var(--guest-violet-dark);
  font-weight: 900;
}

.guest-step h3,
.guest-capability h3,
.guest-tariff h3,
.guest-empty h3 {
  margin-bottom: 12px;
  font-size: 1.25rem;
}

.guest-step p,
.guest-capability p {
  margin-bottom: 0;
}

.guest-capability {
  display: grid;
  min-height: 100%;
  align-content: start;
  padding: 28px;
}

.guest-capability__icon {
  display: grid;
  width: 48px;
  height: 48px;
  margin-bottom: 24px;
  place-items: center;
  border-radius: 16px;
  background: var(--guest-violet-soft);
  color: var(--guest-violet-dark);
  font-size: 1.25rem;
  font-weight: 900;
}

.guest-capability h3 {
  min-height: 2.5em;
}

.guest-location-band {
  margin-top: 24px;
  padding-top: 24px;
  border-top: 1px solid var(--guest-border);
}

.guest-location-band h3 {
  margin-bottom: 16px;
  font-size: 1.1rem;
}

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

.guest-location-list li {
  min-width: 0;
  padding: 8px 10px;
  border: 1px solid var(--guest-border);
  border-radius: 10px;
  background: rgba(255, 255, 255, .7);
  color: var(--guest-ink);
  font-size: .9rem;
  font-weight: 700;
}

.guest-capability-note {
  margin: 16px 0 0;
  color: var(--guest-muted);
  font-size: .92rem;
}

.guest-tariff {
  position: relative;
  display: flex;
  min-height: 100%;
  flex-direction: column;
  padding: 74px 30px 30px;
}

.guest-tariff-item {
  min-width: 0;
}

.guest-tariff--featured {
  border: 2px solid var(--guest-violet);
  box-shadow: 0 18px 44px rgba(98, 71, 232, .14);
}

.guest-tariff__badge {
  position: absolute;
  top: 20px;
  left: 30px;
  margin: 0;
  padding: 5px 10px;
  border-radius: 999px;
  background: #ede9ff;
  color: var(--guest-violet-dark);
  font-size: .76rem;
  font-weight: 850;
}

.guest-tariff__price {
  margin-bottom: 24px;
  color: var(--guest-ink);
  font-size: clamp(2.35rem, 4vw, 3.2rem);
  font-weight: 900;
  letter-spacing: -.05em;
  line-height: 1;
}

.guest-tariff__price span {
  font-size: .55em;
}

.guest-tariff .guest-button {
  margin-top: auto;
}

.guest-empty {
  padding: clamp(30px, 5vw, 52px);
  border: 1px dashed var(--guest-border);
  border-radius: var(--guest-radius);
  background: var(--guest-surface);
  text-align: center;
}

.guest-empty p {
  max-width: 620px;
  margin-inline: auto;
}

.guest-empty .guest-button {
  margin-top: 8px;
}

.guest-section--support {
  padding-top: 28px;
  padding-bottom: 28px;
}

.guest-support {
  display: grid;
  align-items: center;
  gap: 30px;
  padding: clamp(32px, 6vw, 66px);
  overflow: hidden;
  border-radius: calc(var(--guest-radius) + 8px);
  background:
    radial-gradient(circle at 100% 0, rgba(255, 183, 142, .28), transparent 24rem),
    var(--guest-ink);
  color: #fff;
  box-shadow: var(--guest-shadow);
}

.guest-support p {
  max-width: 720px;
  margin-bottom: 0;
  color: #d9d2df;
}

.guest-support .guest-eyebrow {
  color: var(--guest-peach);
}

.guest-support .guest-button {
  justify-self: start;
}

.guest-faq-layout {
  display: grid;
  gap: 20px 56px;
}

.guest-faq details {
  margin-bottom: 10px;
  border-top: 1px solid var(--guest-border);
  transition: border-color .22s ease, background-color .22s ease, box-shadow .22s ease;
}

.guest-faq details:last-child {
  border-bottom: 1px solid var(--guest-border);
}

.guest-faq details[open] {
  border: 1px solid rgba(98, 71, 232, .34);
  border-radius: var(--guest-radius);
  background: var(--guest-surface);
  box-shadow: 0 0 0 3px rgba(98, 71, 232, .1);
}

.guest-faq summary {
  position: relative;
  min-height: 62px;
  padding: 20px 42px 20px 0;
  cursor: pointer;
  font-weight: 800;
  line-height: 1.4;
  list-style: none;
  transition: color .22s ease, padding .22s ease;
}

.guest-faq details[open] summary {
  padding-right: 42px;
  padding-left: 20px;
  color: var(--guest-violet);
}

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

.guest-faq summary::after {
  position: absolute;
  top: 17px;
  right: 2px;
  color: var(--guest-violet);
  content: "+";
  font-size: 1.5rem;
  line-height: 1;
  transition: transform .22s ease, color .22s ease;
}

.guest-faq details[open] summary::after {
  content: "−";
  right: 20px;
  color: var(--guest-violet);
  transform: rotate(180deg);
}

.guest-faq p {
  margin: 0;
  padding: 0 36px 22px 20px;
  animation: guest-faq-reveal .22s ease both;
}

@keyframes guest-faq-reveal {
  from {
    opacity: 0;
    transform: translateY(-5px);
  }

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

.guest-footer {
  border-top: 1px solid var(--guest-border);
  background: var(--guest-cream-strong);
}

.guest-footer__inner {
  display: grid;
  gap: 24px;
  padding-top: 42px;
  padding-bottom: 42px;
}

.guest-footer__links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 26px;
  color: var(--guest-muted);
}

.guest-footer__inner > p {
  margin-bottom: 0;
  color: var(--guest-muted);
  font-size: .9rem;
}

@media (min-width: 640px) {
  .guest-steps,
  .guest-capability-grid,
  .guest-tariffs {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .guest-support {
    grid-template-columns: minmax(0, 1fr) auto;
  }

  .guest-footer__inner {
    grid-template-columns: auto 1fr;
    align-items: center;
  }

  .guest-footer__links {
    justify-content: flex-end;
  }

  .guest-footer__inner > p {
    grid-column: 1 / -1;
  }
}

@media (min-width: 760px) {
  .guest-menu-button,
  .guest-menu {
    display: none;
  }
}

@media (min-width: 900px) {
  .guest-hero__grid {
    grid-template-columns: minmax(0, 1.35fr) minmax(330px, .75fr);
  }

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

  .guest-tariffs {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .guest-faq-layout {
    grid-template-columns: minmax(250px, .62fr) minmax(0, 1.38fr);
  }

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

  .guest-location-list {
    grid-template-columns: repeat(6, minmax(0, 1fr));
  }
}

@media (max-width: 899px) {
  .guest-orbit {
    width: min(72vw, 390px);
  }
}

@media (max-width: 759px) {
  .guest-shell {
    width: min(100% - 28px, 1180px);
  }

  .guest-header {
    position: static;
  }

  .guest-header__inner {
    flex-wrap: wrap;
  }

  .guest-nav,
  .guest-header__actions .guest-login,
  .guest-header__actions .guest-signup {
    display: none;
  }

  .guest-menu {
    position: static;
    width: 100%;
    flex-basis: 100%;
    display: grid;
    gap: 2px;
    padding: 12px;
    border: 1px solid var(--guest-border);
    border-radius: 18px;
    background: var(--guest-cream);
  }

  .guest-js .guest-header {
    position: sticky;
  }

  .guest-js .guest-header__inner {
    flex-wrap: nowrap;
  }

  .guest-js .guest-menu {
    display: none;
    position: absolute;
    top: calc(100% - 1px);
    right: 0;
    left: 0;
    width: auto;
    flex-basis: auto;
    border-radius: 0 0 18px 18px;
    box-shadow: var(--guest-shadow);
  }

  .guest-js .guest-menu-button {
    display: inline-flex;
  }

  .guest-js .guest-menu.is-open {
    display: grid;
  }

  .guest-menu a {
    min-height: 46px;
    display: flex;
    align-items: center;
    padding: 8px 12px;
    border-radius: 10px;
    font-weight: 700;
  }

  .guest-menu a:hover {
    background: var(--guest-cream-strong);
    color: var(--guest-violet);
  }

  .guest-hero__grid {
    gap: 64px;
  }

  .guest-hero h1 {
    font-size: clamp(2.55rem, 13vw, 4.2rem);
  }
}

@media (max-width: 399px) {
  .guest-actions,
  .guest-actions .guest-button {
    width: 100%;
  }

  .guest-card {
    border-radius: 20px;
  }

  .guest-step,
  .guest-capability,
  .guest-tariff {
    padding: 24px;
  }

  .guest-tariff {
    padding: 74px 24px 24px;
  }
}

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

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition: none !important;
  }
}
