.start-page,
.start-page * {
  box-sizing: border-box;
}

html,
body {
  width: 100%;
  min-height: 100%;
  height: auto;
  overflow-x: hidden;
  overflow-x: clip;
}

html {
  overflow-y: auto;
  scroll-behavior: smooth;
}

body {
  overflow-y: hidden;
  background: #18192D;
}

.start-page {
  --start-header-offset: 68px;
  --start-bg-render-width: max(100vw, 200vh);
  --start-bg-render-height: 100vh;
  --start-bg-left: calc((100vw - var(--start-bg-render-width)) / 2);
  --start-bg-top: 0px;
  --space-card-x: 23.6111%;
  --space-card-y: 56.4722%;
  --space-card-width: 28.6111%;
  --space-line-x: 45.9611%;
  --space-line-y: 49.8611%;
  position: relative;
  width: 100%;
  min-height: 100vh;
  color: #293548;
  font-family: "Inter Tight", "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: #ffffff;
  overflow-x: hidden;
  overflow-y: clip;
}

.start-viewport {
  position: relative;
  height: 100vh;
  overflow: hidden;
}

.start-viewport::before {
  content: "";
  position: absolute;
  left: 0;
  top: var(--start-bg-top);
  width: 100%;
  height: var(--start-bg-render-height);
  background:
    url("/assets/images/start-page-bg.png") var(--start-bg-left) 0 / var(--start-bg-render-width) var(--start-bg-render-height) no-repeat,
    #cfe1ff;
  pointer-events: none;
  z-index: 0;
}

.start-header {
  position: fixed;
  top: 0;
  left: 50%;
  z-index: 50;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 28px;
  width: min(1240px, calc(100% - 64px));
  margin: 0;
  padding: 20px 0 0;
  transform: translateX(-50%);
}

.start-header::before {
  content: "";
  position: absolute;
  left: -18px;
  right: -18px;
  top: 10px;
  bottom: -10px;
  z-index: -1;
  border: 1px solid rgba(157, 204, 255, 0.36);
  border-radius: 18px;
  background: rgba(226, 241, 255, 0.72);
  box-shadow: 0 12px 32px rgba(61, 158, 255, 0.12);
  backdrop-filter: blur(14px);
}

.start-logo {
  display: inline-flex;
  align-items: center;
  gap: 6.67px;
  justify-self: start;
  color: #4B5563;
  font-size: 20px;
  line-height: 17.65px;
}

.start-logo:hover {
  text-decoration: none;
}

.start-logo__mark {
  display: block;
  width: 40px;
  height: 40px;
  flex: 0 0 auto;
}

.start-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
}

.start-nav a {
  color: #2C3541;
  font-size: 16px;
  line-height: 140%;
  font-weight: 400;
  text-decoration-color: transparent;
  transition: color 180ms ease, text-decoration-color 180ms ease;
}

.start-nav a:hover,
.start-nav a:focus-visible {
  color: #2582DF;
  text-decoration-color: currentColor;
  text-decoration: none;
}

.start-header__action {
  justify-self: end;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 16px;
  border-radius: 12px;
  background: #3D9EFF;
  color: #fff;
  font-size: 16px;
  line-height: 22px;
  font-weight: 600;
  box-shadow: 0 10px 30px rgba(62, 131, 220, 0.12);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.start-header__actions {
  justify-self: end;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.start-header__login {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 14px;
  border-radius: 12px;
  background: #fff;
  color: #2C3541;
  font-size: 16px;
  line-height: 22px;
  font-weight: 600;
  text-decoration: none;
  box-shadow: 0 10px 30px rgba(0, 179, 164, 0.1);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.start-header__action:hover,
.start-header__action:focus-visible,
.start-header__login:hover,
.start-header__login:focus-visible {
  text-decoration: none;
}

.start-header__action:hover,
.start-header__action:focus-visible {
  transform: translateY(-1px);
  box-shadow: 0 16px 38px rgba(62, 131, 220, 0.16);
}

.start-header__login:hover,
.start-header__login:focus-visible {
  transform: translateY(-1px);
  box-shadow: 0 16px 38px rgba(0, 179, 164, 0.15);
}

.start-hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(590px, 520px) minmax(520px, 1fr);
  gap: 34px;
  width: min(1240px, calc(100% - 64px));
  height: calc(100vh - 68px);
  margin: var(--start-header-offset) auto 0;
  padding: 82px 0 58px;
  box-sizing: border-box;
}

.start-hero__copy {
  position: relative;
  z-index: 4;
  padding-bottom: 58px;
}

.start-hero__copy h1 {
  max-width: 692px;
  color: #2C3541;
  font-size: 64px;
  line-height: 100%;
  font-weight: 600;
}

.start-hero__copy h1 span {
  display: block;
  color: #2582DF;
}

.start-hero__copy p {
  max-width: 490px;
  margin: 26px 0 0;
  color: #616C7D;
  font-size: 20px;
  line-height: 140%;
}

.start-hero__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 58px;
  margin-top: 48px;
  padding: 0 20px;
  border-radius: 12px;
  background: #3D9EFF;
  color: #ffffff;
  font-size: 16px;
  line-height: 22px;
  font-weight: 600;
  box-shadow: 0 18px 36px rgba(61, 158, 255, 0.24);
  transition: background-color 180ms ease, transform 180ms ease, box-shadow 180ms ease;
}

.start-hero__button:hover,
.start-hero__button:focus-visible {
  background: #2582df;
  color: #ffffff;
  text-decoration: none;
  transform: translateY(-1px);
  box-shadow: 0 22px 44px rgba(61, 158, 255, 0.3);
}

.start-hero__visual {
  position: absolute;
  left: var(--start-bg-left);
  top: var(--start-bg-top);
  width: var(--start-bg-render-width);
  height: var(--start-bg-render-height);
  z-index: 2;
  pointer-events: none;
  overflow: hidden;
}

.start-hero__visual::before {
    display: none;
  content: "";
  position: absolute;
  left: calc(var(--space-card-x) + 25px);
  top: calc(var(--space-line-y) + 5px);
  width: calc(var(--space-line-x) - var(--space-card-x));
  height: calc(var(--space-card-y) - var(--space-line-y));
  background: url("data:image/svg+xml,%3Csvg viewBox='0 0 342 42' preserveAspectRatio='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 42 V24 C1 11.3 11.3 1 24 1 H342' fill='none' stroke='%23fff' stroke-opacity='0.86' stroke-width='2' stroke-linecap='square'/%3E%3C/svg%3E") left top / 100% 100% no-repeat;
  z-index: 1;
}

.start-hero__space-card {
  position: absolute;
  z-index: 2;
  left: var(--space-card-x);
  top: var(--space-card-y);
  width: var(--space-card-width);
  height: auto;
  filter: drop-shadow(0 16px 24px rgba(66, 94, 130, 0.16));
}

.start-hero__mobile-part {
  display: none;
}

.start-reveal {
  opacity: 0;
  transform: translate3d(0, 72px, 0) scale(0.965);
  filter: blur(14px);
  transition:
    opacity 980ms cubic-bezier(0.16, 1, 0.3, 1),
    transform 1180ms cubic-bezier(0.16, 1, 0.3, 1),
    filter 1180ms cubic-bezier(0.16, 1, 0.3, 1);
  transition-delay: var(--reveal-delay, 0ms);
  will-change: opacity, transform, filter;
}

.start-reveal.is-visible {
  opacity: 1;
  transform: translate3d(0, 0, 0) scale(1);
  filter: blur(0);
}

.start-header.start-reveal {
  transform: translate3d(-50%, -32px, 0);
}

.start-header.start-reveal.is-visible {
  transform: translate3d(-50%, 0, 0);
}

.start-hero__copy > .start-reveal:nth-child(2),
.why-section__lead.start-reveal,
.tools-benefits li.start-reveal,
.footer-cta__inner > .start-reveal:nth-child(2) {
  transform: translate3d(-18px, 28px, 0);
}

.start-hero__space-card.start-reveal,
.start-hero__mobile-part.start-reveal,
.why-editor-card.start-reveal,
.tools-section__group.start-reveal,
.compare-card.start-reveal {
  transform: translate3d(74px, 54px, 0) scale(0.94);
}

.start-hero__space-card.start-reveal.is-visible,
.start-hero__mobile-part.start-reveal.is-visible,
.why-editor-card.start-reveal.is-visible,
.tools-section__group.start-reveal.is-visible,
.compare-card.start-reveal.is-visible {
  transform: translate3d(0, 0, 0) scale(1);
}

.why-card.start-reveal:nth-child(even),
.pricing-card.start-reveal:nth-child(even),
.compare-panel.start-reveal:nth-child(even),
.tools-tabs__item.start-reveal:nth-child(even) {
  transform: translate3d(42px, 72px, 0) scale(0.965);
}

.why-card.start-reveal:nth-child(odd),
.pricing-card.start-reveal:nth-child(odd),
.compare-panel.start-reveal:nth-child(odd),
.tools-tabs__item.start-reveal:nth-child(odd) {
  transform: translate3d(-42px, 72px, 0) scale(0.965);
}

.why-card.start-reveal.is-visible,
.pricing-card.start-reveal.is-visible,
.compare-panel.start-reveal.is-visible,
.tools-tabs__item.start-reveal.is-visible {
  transform: translate3d(0, 0, 0) scale(1);
}

@media (min-width: 1001px) {
  .compare-panel.start-reveal:nth-child(even) {
    transform: translate3d(42px, calc(-50% + 72px), 0) scale(0.965);
  }

  .compare-panel.start-reveal:nth-child(odd) {
    transform: translate3d(-42px, calc(-50% + 72px), 0) scale(0.965);
  }

  .compare-panel.start-reveal.is-visible {
    transform: translate3d(0, -50%, 0) scale(1);
  }

  .compare-card.start-reveal {
    transform: translate3d(calc(-50% + 74px), calc(-22% + 54px), 0) scale(0.94);
  }

  .compare-card.start-reveal.is-visible {
    transform: translate3d(-50%, -22%, 0) scale(1);
  }

  .tools-section__group.start-reveal.is-visible {
    transform: translate(28px, 0) scale(1);
  }
}

.why-section {
  position: relative;
  z-index: 3;
  min-height: 100vh;
  background: #ffffff;
  color: #2C3541;
  scroll-margin-top: 0;
}

.why-section__inner {
  display: grid;
  grid-template-columns: minmax(0, 2fr) minmax(280px, 380px);
  gap: 20px;
  align-content: center;
  width: min(1240px, calc(100% - 64px));
  min-height: 100vh;
  margin: 0 auto;
  padding: 64px 0;
  box-sizing: border-box;
}

.why-section__content {
  min-width: 0;
  align-self: end;
}

.why-section h2 {
  max-width: 793px;
  color: #2C3541;
  font-size: 40px;
  line-height: 120%;
  font-weight: 600;
}

.why-section__lead {
  max-width: 793px;
  margin: 16px 0 0;
  color: #616C7D;
  font-size: 20px;
  line-height: 140%;
}

.why-section__cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
  margin-top: 69px;
}

.why-card,
.why-editor-card {
  align-self: end;
}

.why-card,
.why-editor-card {
  border-radius: 20px;
  box-sizing: border-box;
}

.why-card {
  min-height: 297px;
  padding: 28px 24px 28px 28px;
}

.why-card--spaces {
  background: #F4F8FF;
}

.why-card--training {
  background: #E7FBF9;
}

.why-card__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  border-radius: 15px;
  margin-bottom: 24px;
}

.why-card--spaces .why-card__icon {
  background: #E1ECFF;
}

.why-card--training .why-card__icon {
  background: #CAF7F3;
}

.why-card h3,
.why-editor-card h3 {
  color: #2C3541;
  font-size: 28px;
  line-height: 135%;
  font-weight: 400;
}

.why-card p,
.why-editor-card p {
  margin: 8px 0 0;
  color: #616C7D;
  font-size: 16px;
  line-height: 145%;
}

.why-editor-card {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: 478px;
  padding: 24px 24px 28px 24px;
  background: #FDF2E3;
}

.why-editor-card img {
  display: block;
  width: 100%;
  height: auto;
  margin: 0 auto 24px;
  border-radius: 20px;
}

.tools-section {
  position: relative;
  z-index: 3;
  min-height: 100vh;
  color: #2C3541;
  background: #CFE3FF url("/assets/images/start-page-tools.png") center / cover no-repeat;
  overflow: hidden;
}

.tools-section__inner {
  display: flex;
  flex-direction: column;
  width: min(1240px, calc(100% - 64px));
  min-height: 100vh;
  margin: 0 auto;
  padding: 100px 0 0;
  box-sizing: border-box;
}

.tools-section h2 {
  text-align: center;
  color: #2C3541;
  font-size: 40px;
  line-height: 120%;
  font-weight: 600;
}

.tools-tabs {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  align-items: end;
  margin-top: 32px;
  border-bottom: 2px solid #E9ECEF;
}

.tools-tabs__item {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 42px;
  color: #8E96A3;
  font-size: 18px;
  line-height: 135%;
  font-weight: 400;
  text-decoration: none;
}

.tools-tabs__item:hover,
.tools-tabs__item:focus-visible {
  text-decoration: none;
}

.tools-tabs__item.is-active {
  color: #2C3541;
}

.tools-tabs__item.is-active::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -2px;
  height: 2px;
  background: #3D9EFF;
}

.tools-tabs__item svg {
  flex: 0 0 auto;
}

.tools-tabs__item small {
  display: inline-flex;
  align-items: center;
  min-height: 18px;
  padding: 0 7px;
  border-radius: 1000px;
  background: linear-gradient(180deg, #3B82F6 0%, #64B0FC 100%);
  color: #ffffff;
  font-size: 11px;
  line-height: 12px;
  font-weight: 500;
}

.tools-section__body {
  position: relative;
  flex: 1;
  display: grid;
  gap: 40px;
  align-items: start;
  padding-top: 80px;
}

.tools-benefits {
  display: grid;
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
  color: #4B5563;
  font-size: 18px;
  line-height: 135%;
}

.tools-benefits li {
  position: relative;
  padding-left: 20px;
}

.tools-benefits li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #3D9EFF;
}

.tools-section__group {
  display: none;
  width: clamp(920px, 58vw, 760px);
  max-width: none;
  height: auto;
  margin-top: -20px;
  filter: drop-shadow(0 18px 26px rgba(67, 101, 143, 0.12));
}

.compare-section {
  position: relative;
  z-index: 3;
  min-height: 100vh;
  color: #ffffff;
  background: #14182A url("/assets/images/start-page-bg-dark.png") center / cover no-repeat;
  overflow: hidden;
}

.compare-section__inner {
  position: relative;
  width: min(1240px, calc(100% - 64px));
  min-height: 100vh;
  align-content: center;
  margin: 0 auto;
  padding: 80px 0;
  box-sizing: border-box;
}

.compare-panel {
  position: absolute;
  top: 52.2%;
  align-content: start;
  width: calc(50% - 10px);
  height: min(62vh, 611px);
  min-height: 611px;
  padding: 32px;
  border-radius: 20px;
  background: #FFFFFF1A;
  box-sizing: border-box;
  overflow: hidden;
  transform: translateY(-50%);
}

.compare-panel--without {
  left: 0;
}

.compare-panel--with {
  right: 0;
}

.compare-panel__header {
  display: flex;
  align-items: center;
  gap: 8px;
  position: relative;
  z-index: 2;
}

.compare-panel h2 {
  color: #BDBDBD;
  font-size: 28px;
  line-height: 135%;
  font-weight: 400;
}

.compare-panel--with h2 {
  color: #3D9EFF;
}

.compare-panel p {
  margin: 14px 0 0;
  color: #F8F8F8;
  font-size: 18px;
  line-height: 135%;
  position: relative;
  z-index: 2;
}

.compare-lines {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: auto;
  opacity: 0.88;
  pointer-events: none;
  z-index: 0;
}

.compare-card {
  position: absolute;
  left: 50%;
  top: calc(50% + 38px);
  z-index: 4;
  width: min(536px, calc((50% - 10px) * 0.95));
  height: auto;
  transform: translate(-50%, -22%);
  filter: drop-shadow(0 22px 34px rgba(0, 0, 0, 0.28));
}

.compare-label {
  position: absolute;
  z-index: 5;
  display: inline-flex;
  align-items: center;
  min-height: 35px;
  padding: 0 10px;
  border-radius: 8px;
  border: 1px solid #E9ECEF;
  background: transparent;
  color: #ffffff;
  font-size: 16px;
  line-height: 145%;
  white-space: nowrap;
}

.compare-route {
  position: absolute;
  z-index: 3;
  pointer-events: none;
  border-color: rgba(255, 255, 255, 0.78);
}

.compare-route--spaces {
  left: 15px;
  top: calc(30% + 20px);
  width: 16.5%;
  height: 66px;
  border-top: 1px solid;
  border-left: 1px solid;
  border-top-left-radius: 14px;
}

.compare-route--base {
  left: 0;
  top: calc(47.5% + 20px);
  right: calc(13% + 58px);
  height: 82px;
  border-bottom: 1px solid;
  border-right: 1px solid;
  border-bottom-right-radius: 14px;
}

.compare-route--docs {
  left: 0;
  top: calc(64% + 20px);
  right: calc(13% + 58px);
  height: 29px;
  border-top: 1px solid;
  border-right: 1px solid;
  border-top-right-radius: 14px;
}

.compare-route--access {
  left: 0;
  top: calc(75% + 17px);
  right: calc(35% + 48px);
  height: 44px;
  border-top: 1px solid;
  border-right: 1px solid;
  border-top-right-radius: 14px;
}

.compare-panel--without .compare-label {
  border: 1px solid #DEE3E8;
  background: #F1F3F5;
  color: #2C3541;
}

.compare-label--services {
  left: 20%;
  top: 52%;
}

.compare-label--chaos {
  left: 12%;
  top: 75%;
}

.compare-label--spaces {
  left: 19%;
  top: 30%;
}

.compare-label--base {
  right: 13%;
  top: 45%;
}

.compare-label--docs {
  right: 13%;
  top: 72%;
}

.compare-label--access {
  right: 35%;
  top: 85%;
}

.pricing-section {
  position: relative;
  z-index: 4;
  height: 100vh;
  background: #F4F8FF;
  color: #2C3541;
}

.pricing-section__inner {
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: min(1240px, calc(100% - 64px));
  height: 100%;
  margin: 0 auto;
  padding: 100px 0;
  box-sizing: border-box;
}

.pricing-section h2 {
  text-align: center;
  color: #2C3541;
  font-size: 56px;
  line-height: 110%;
  font-weight: 600;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
  margin-top: 32px;
}

.pricing-card {
  position: relative;
  min-height: 492px;
  padding: 18px 18px 26px;
  border: 1px solid #E9ECEF;
  border-radius: 16px;
  background: #ffffff;
  box-shadow: 0 6px 16px rgba(44, 53, 65, 0.06);
  box-sizing: border-box;
}

.pricing-card h3 {
  color: #4B5563;
  font-size: 20px;
  line-height: 32px;
  font-weight: 600;
  text-transform: uppercase;
}

.pricing-card__description {
  min-height: 44px;
  margin: 6px 0 0;
  color: #616C7D;
  font-size: 16px;
  line-height: 140%;
}

.pricing-card__price {
  display: flex;
  align-items: baseline;
  gap: 7px;
  margin-top: 16px;
  color: #2582DF;
}

.pricing-card__price span {
  font-size: 40px;
  line-height: 120%;
  font-weight: 600;
}

.pricing-card__price small {
  color: #8E96A3;
  font-size: 14px;
  line-height: 20px;
}

.pricing-card__annual {
  min-height: 48px;
  margin-top: 12px;
  color: #8E96A3;
  font-size: 14px;
  line-height: 20px;
}

.pricing-card__annual b {
  display: inline-block;
  color: #616C7D;
  font-size: 16px;
  line-height: 22px;
  font-weight: 600;
}

.pricing-card__annual small {
  margin-left: 7px;
  color: #8E96A3;
}

.pricing-card__annual strong {
  display: block;
  margin-top: 4px;
  color: #3DBE6C;
  font-size: 16px;
  line-height: 22px;
  font-weight: 600;
}

.pricing-card__annual span {
  display: block;
  margin-left: 0;
}

.pricing-features {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin: 20px 0 0;
  padding: 20px 0 0;
  border-top: 1px solid #E9ECEF;
  list-style: none;
}

.pricing-features li {
  position: relative;
  display: flex;
  align-items: flex-start;
  gap: 10px;
  min-height: 20px;
  color: #4B5563;
  font-size: 14px;
  line-height: 20px;
}

.pricing-features li.is-disabled {
  color: #AEB4BD;
}

.pricing-feature-icon {
  position: relative;
  flex: 0 0 auto;
  width: 20px;
  height: 20px;
  border-radius: 5px;
  background: #DCFCE7;
}

.pricing-feature-icon::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 10px;
  height: 7px;
  transform: translate(-50%, -50%);
  background: url("data:image/svg+xml,%3Csvg width='10' height='7' viewBox='0 0 10 7' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M8.625 0.625L3.125 6.125L0.625 3.625' stroke='%233DBE6C' stroke-width='1.25' stroke-linecap='round'/%3E%3C/svg%3E") center / contain no-repeat;
}

.pricing-features li.is-disabled .pricing-feature-icon {
  background: #F1F3F5;
}

.pricing-features li.is-disabled .pricing-feature-icon::before {
  width: 8px;
  height: 8px;
  background-image: url("data:image/svg+xml,%3Csvg width='8' height='8' viewBox='0 0 8 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0.625 0.625L3.625 3.625M3.625 3.625L6.625 6.625M3.625 3.625L6.625 0.625M3.625 3.625L0.625 6.625' stroke='%23AEB4BD' stroke-width='1.25' stroke-linecap='round'/%3E%3C/svg%3E");
}

.pricing-feature-select {
  align-items: center;
  min-height: 34px;
  margin: -4px 0 2px;
}

.pricing-feature-select .pricing-feature-icon {
  align-self: center;
}

.pricing-dropdown {
  position: relative;
  z-index: 1;
  flex: 1 1 auto;
  min-width: 0;
}

.pricing-dropdown.is-open {
  z-index: 30;
}

.pricing-feature-select__control {
  position: relative;
  display: flex;
  align-items: center;
  width: 100%;
  flex: 1 1 auto;
  min-width: 0;
  max-height: 34px;
  min-height: 34px;
  padding: 0 34px 0 12px;
  border: 1px solid #DCE4EC;
  border-radius: 8px;
  background: #ffffff;
  color: #4B5563;
  font-family: inherit;
  font-size: 14px;
  line-height: 135%;
  text-align: left;
  box-shadow: 0 1px 2px rgba(44, 53, 65, 0.04);
  cursor: pointer;
  transition:
    border-color 180ms ease,
    box-shadow 180ms ease;
}

.pricing-feature-select__control:hover,
.pricing-feature-select__control:focus-visible,
.pricing-dropdown.is-open .pricing-feature-select__control {
  outline: none;
  border-color: #3D9EFF;
}

.pricing-feature-select__control::after {
  content: "";
  position: absolute;
  right: 12px;
  top: 50%;
  width: 11px;
  height: 7px;
  background: url("data:image/svg+xml,%3Csvg width='11' height='7' viewBox='0 0 11 7' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0.75 0.75L5.41667 5.41667L10.0833 0.75' stroke='%234B5563' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") center / contain no-repeat;
  transform: translateY(-50%);
  transition: transform 220ms ease;
}

.pricing-dropdown.is-open .pricing-feature-select__control::after {
  transform: translateY(-50%) rotate(180deg);
}

.pricing-dropdown__menu {
  position: absolute;
  left: 0;
  right: 0;
  top: calc(100% + 6px);
  z-index: 31;
  padding: 0;
  margin: 0;
  border: 1px solid #E9ECEF;
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 14px 28px rgba(44, 53, 65, 0.14);
  list-style: none;
  overflow-y: auto;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(-6px) scale(0.98);
  transform-origin: top center;
  transition:
    opacity 180ms ease,
    transform 180ms ease,
    visibility 0s linear 180ms;
  scrollbar-width: thin;
  scrollbar-color: #E9ECEF transparent;
}

.pricing-dropdown.is-open .pricing-dropdown__menu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0) scale(1);
  transition:
    opacity 180ms ease,
    transform 180ms ease,
    visibility 0s;
}

.pricing-dropdown__menu li {
  display: flex;
  align-items: center;
  min-height: 40px;
  padding: 0 12px;
  border-radius: 7px;
  color: #4B5563;
  font-size: 14px;
  line-height: 20px;
  cursor: pointer;
}

.pricing-dropdown__menu li:hover,
.pricing-dropdown__menu li[aria-selected="true"] {
  color: #3D9EFF;
}

.pricing-dropdown__menu li:hover {
  background: #F7FAFF;
}

.pricing-dropdown__menu li[aria-selected="true"] {
  background: transparent;
}

.pricing-dropdown__menu::-webkit-scrollbar {
  width: 6px;
}

.pricing-dropdown__menu::-webkit-scrollbar-track {
  background: transparent;
}

.pricing-dropdown__menu::-webkit-scrollbar-thumb {
  border-radius: 999px;
  background: #E9ECEF;
}

.footer-cta {
  position: relative;
  z-index: 3;
  height: 459px;
  color: #ffffff;
  background: #2582DF url("/assets/images/start-page-footer-blue.png") center / cover no-repeat;
  overflow: hidden;
}

.footer-cta__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: min(1240px, calc(100% - 64px));
  height: 100%;
  margin: 0 auto;
  text-align: center;
}

.footer-cta h2 {
  color: #ffffff;
  font-size: 56px;
  line-height: 110%;
  font-weight: 600;
}

.footer-cta p {
  margin: 20px 0 0;
  color: #ffffff;
  font-size: 20px;
  line-height: 140%;
}

.footer-cta__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  min-height: 48px;
  margin-top: 44px;
  padding: 0 20px;
  border-radius: 12px;
  background: #ffffff;
  color: #2C3541;
  font-size: 16px;
  line-height: 22px;
  font-weight: 600;
  box-shadow: 0 16px 34px rgba(20, 24, 42, 0.14);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.footer-cta__button:hover,
.footer-cta__button:focus-visible {
  color: #2C3541;
  text-decoration: none;
  transform: translateY(-1px);
  box-shadow: 0 20px 40px rgba(20, 24, 42, 0.18);
}

.start-footer {
  position: relative;
  z-index: 3;
  height: 252px;
  background: #18192D;
  color: #ffffff;
}

.start-footer__inner {
  position: relative;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  grid-template-rows: 1fr auto;
  align-items: center;
  width: min(1240px, calc(100% - 64px));
  height: 100%;
  margin: 0 auto;
  padding: 56px 0 32px;
  box-sizing: border-box;
}

.start-footer__brand {
  display: inline-flex;
  align-items: center;
  gap: 20px;
  justify-self: start;
  align-self: start;
  color: #ffffff;
  font-size: 30px;
  line-height: 26.5px;
  font-weight: 400;
}

.start-footer__brand:hover,
.start-footer__brand:focus-visible {
  color: #ffffff;
  text-decoration: none;
}

.start-footer__brand svg {
  width: 60px;
  height: 60px;
  flex: 0 0 auto;
}

.start-footer__contacts {
  grid-column: 2 / 4;
  grid-row: 1 / 3;
  justify-self: center;
  align-self: end;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 58px;
}

.start-footer__socials {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 12px;
}

.start-footer__socials a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border: 2px solid #ffffff;
  border-radius: 50%;
  color: #ffffff;
  transition: transform 180ms ease, background-color 180ms ease;
}

.start-footer__socials a:hover,
.start-footer__socials a:focus-visible {
  background: rgba(255, 255, 255, 0.08);
  text-decoration: none;
  transform: translateY(-1px);
}

.start-footer__socials a[aria-label="Telegram"] svg {
  transform: translateX(-2px) translateY(-1px);
}

.start-footer__socials span {
  color: #ffffff;
  font-size: 13px;
  line-height: 1;
  font-weight: 700;
}

.start-footer__copyright {
  grid-column: 1;
  grid-row: 2;
  margin: 0;
  align-self: end;
  color: #8E96A3;
  font-size: 16px;
  line-height: 140%;
}

.start-footer__links {
  display: flex;
  align-items: center;
  gap: 24px;
}

.start-footer__links a {
  color: #FFFFFF;
  font-size: 16px;
  line-height: 140%;
  text-decoration-color: transparent;
  text-underline-offset: 4px;
}

.start-footer__links a:hover,
.start-footer__links a:focus-visible {
  color: #ffffff;
  text-decoration: none;
  text-decoration-color: transparent;
  text-shadow: 0 0 14px rgba(61, 158, 255, 0.72);
}

@media (max-width: 1280px) {
  .why-section__cards {
    margin-top: 48px;
  }

  .tools-section {
    background:
      radial-gradient(circle at 18% 104%, rgba(130, 192, 255, 0.52) 0, rgba(130, 192, 255, 0.28) 25%, rgba(130, 192, 255, 0) 44%),
      linear-gradient(112deg, #F7FBFF 0%, #DDEBFF 34%, #B7D8FF 66%, #8EC8FF 100%);
  }

  .tools-section__inner {
    width: calc(100% - 64px);
  }

  .tools-section__body {
    grid-template-columns: minmax(260px, 420px) minmax(0, 1fr);
    align-items: start;
  }

  .tools-section__group {
    display: block;
    grid-column: 2;
    grid-row: 1 / span 2;
    justify-self: end;
    align-self: start;
    margin-top: auto;
    transform: translate(28px, 0px);
  }

  .tools-section__group.start-reveal {
    transform: translate(74px, 54px) scale(0.94);
  }

  .tools-section__group.start-reveal.is-visible {
    transform: translate(28px, 0) scale(1);
  }

  .compare-section__inner {
    width: calc(100% - 64px);
  }

  .compare-panel {
    padding: 26px;
  }

  .compare-card {
    width: min(500px, calc((50% - 10px) * 0.95));
  }

  .pricing-grid {
    gap: 16px;
  }

  .pricing-card {
    padding: 18px 12px 22px;
  }
}

@media (max-width: 1000px) {
  .start-page {
    --space-card-x: 32%;
    --space-card-y: 47%;
    --space-card-width: clamp(460px, 42vw, 330px);
    --space-line-x: 55.5%;
    --space-line-y: 61.5%;
  }

  .start-header {
    grid-template-columns: auto 1fr;
    width: min(100% - 36px, 720px);
  }

  .start-nav {
    display: none;
  }

  .start-hero {
    grid-template-columns: 1fr;
    width: min(100% - 36px, 720px);
    height: calc(100vh - 68px);
    padding: 48px 0 46px;
  }

  .start-hero__visual {
    left: 50%;
    top: 0;
    width: 100vw;
    height: 100%;
    transform: translateX(-50%);
  }

  .start-hero__copy {
    padding-bottom: 0;
  }

  .start-hero__copy h1 {
    max-width: 640px;
    font-size: 42px;
  }

  .start-hero__visual::before {
    width: min(48vw, calc(var(--space-line-x) - var(--space-card-x)));
  }

  .start-hero__space-card {
    left: auto;
    right: -54px;
    top: auto;
    bottom: 40px;
    z-index: 3;
    width: min(440px, 68vw);
  }

  .start-hero__space-card.start-reveal {
    transform: translate3d(24px, 42px, 0) scale(0.96);
  }

  .start-hero__space-card.start-reveal.is-visible {
    transform: translate3d(0, 0, 0) scale(1);
  }

  .why-section__inner {
    grid-template-columns: 1fr;
    width: min(100% - 36px, 720px);
    padding: 72px 0;
  }

  .why-section__cards {
    margin-top: 46px;
  }

  .why-editor-card {
    min-height: 0;
  }

  .why-editor-card img {
    max-width: 420px;
  }

  .tools-section__inner {
    width: min(100% - 36px, 720px);
    padding-top: 72px;
  }

  .tools-tabs {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    row-gap: 10px;
  }

  .tools-section__body {
    grid-template-columns: 1fr;
    gap: 34px;
    padding-top: 48px;
  }

  .tools-section__group {
    grid-column: auto;
    grid-row: auto;
    justify-self: center;
    width: min(820px, 150vw);
    margin-top: auto;
    transform: translateX(7%);
  }

  .tools-section__group.start-reveal {
    transform: translateX(7%) translateY(54px) scale(0.94);
  }

  .tools-section__group.start-reveal.is-visible {
    transform: translateX(7%) translateY(0) scale(1);
  }

  .compare-section__inner {
    width: min(100% - 36px, 720px);
    padding: 72px 0;
  }

  .compare-panel {
    position: relative;
    top: auto;
    left: auto;
    right: auto;
    width: 100%;
    min-height: 360px;
    height: auto;
    margin: 0;
    transform: none;
  }

  .compare-panel--with {
    margin-top: 18px;
  }

  .compare-card {
    position: relative;
    left: auto;
    top: auto;
    display: block;
    width: min(560px, 90vw);
    margin: -190px auto 24px;
    transform: none;
  }

  .compare-card.start-reveal {
    transform: translateY(54px) scale(0.94);
  }

  .compare-card.start-reveal.is-visible {
    transform: translateY(0) scale(1);
  }

  .compare-lines {
    width: 100%;
    bottom: 0;
    top: auto;
  }

  .compare-label {
    font-size: 14px;
    left: 10%;
    min-height: 32px;
  }

  .compare-panel--with .compare-label {
    display: none;
  }

  .compare-route {
    display: none;
  }

  .pricing-section__inner {
    width: min(100% - 36px, 720px);
    justify-content: flex-start;
    padding: 72px 0;
  }

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

  .footer-cta__inner {
    width: min(100% - 36px, 720px);
  }

  .start-footer__inner {
    width: min(100% - 36px, 720px);
  }

}

@media (max-width: 560px) {
  .start-page {
    --start-header-offset: 56px;
    overflow-x: hidden;
  }

  .start-page,
  .start-viewport,
  .why-section,
  .tools-section,
  .compare-section,
  .pricing-section,
  .footer-cta,
  .start-footer {
    max-width: 100vw;
  }

  .start-hero__copy > .start-reveal,
  .why-section__content > .start-reveal,
  .tools-section h2.start-reveal,
  .tools-benefits li.start-reveal {
    transform: translate3d(0, 36px, 0) scale(0.975);
  }

  .start-hero__copy > .start-reveal.is-visible,
  .why-section__content > .start-reveal.is-visible,
  .tools-section h2.start-reveal.is-visible,
  .tools-benefits li.start-reveal.is-visible {
    transform: translate3d(0, 0, 0) scale(1);
  }

  .start-viewport::before {
    background:
      radial-gradient(circle at -10% 0%, rgba(255, 255, 255, 0.95) 0, rgba(255, 255, 255, 0.7) 24%, rgba(255, 255, 255, 0) 46%),
      radial-gradient(circle at 88% 10%, rgba(164, 207, 255, 0.9) 0, rgba(164, 207, 255, 0.48) 34%, rgba(164, 207, 255, 0) 62%),
      radial-gradient(circle at 28% 80%, rgba(188, 214, 255, 0.72) 0, rgba(188, 214, 255, 0.34) 34%, rgba(188, 214, 255, 0) 58%),
      linear-gradient(118deg, #F8FCFF 0%, #E6F1FF 25%, #CFE3FF 55%, #9FCCFF 100%);
  }

  .start-header {
    width: calc(100% - 28px);
    gap: 14px;
    padding-top: 18px;
  }

  .start-header::before {
    left: -8px;
    right: -8px;
    top: 10px;
    bottom: -8px;
    border-radius: 14px;
  }

  .start-logo span {
    font-size: 15px;
  }

  .start-logo__mark {
    width: 30px;
    height: 30px;
  }

  .start-header__actions {
    gap: 6px;
  }

  .start-header__login,
  .start-header__action {
    min-height: 38px;
    padding: 0 12px;
    font-size: 13px;
  }

  .start-header__login {
    padding: 0 8px;
  }

  .start-hero {
    width: calc(100% - 28px);
    height: calc(100vh - 56px);
    padding-top: 60px;
    /* padding: 1vh 0 16vh; */
  }

  .start-hero__copy {
    padding-bottom: 0;
    min-width: 0;
  }

  .start-hero__copy h1 {
    font-size: 36px;
    line-height: 1.12;
  }

  .start-hero__copy p {
    margin-top: 18px;
    font-size: 15px;
    line-height: 22px;
  }

  .start-hero__button {
    width: 100%;
    min-height: 50px;
    margin-top: 30px;
    box-sizing: border-box;
  }

  .start-page {
    --space-card-x: 40%;
    --space-card-y: 45%;
    --space-line-x: 54%;
    --space-line-y: 64%;
    --space-card-width: min(390px, 78vw);
  }

  .start-hero__mobile-part {
    position: absolute;
    right: -142px;
    bottom: -96px;
    z-index: 1;
    display: block;
    width: min(500px, 124vw);
    height: auto;
    filter: drop-shadow(0 18px 24px rgba(66, 94, 130, 0.16));
  }

  .start-hero__space-card {
    left: auto;
    right: 44px;
    top: auto;
    bottom: 34px;
    z-index: 3;
    width: min(350px, 86vw);
  }

  .start-hero__mobile-part.start-reveal {
    transform: translate3d(-18px, 46px, 0) scale(0.96);
  }

  .start-hero__space-card.start-reveal {
    transform: translate3d(24px, 42px, 0) scale(0.96);
  }

  .start-hero__mobile-part.start-reveal.is-visible,
  .start-hero__space-card.start-reveal.is-visible {
    transform: translate3d(0, 0, 0) scale(1);
  }

  .start-hero__visual::before {
    width: min(52vw, calc(var(--space-line-x) - var(--space-card-x)));
  }

  .why-section__inner {
    grid-template-columns: 1fr;
    width: calc(100% - 28px);
    padding: 56px 0;
    overflow: hidden;
  }

  .why-section h2 {
    font-size: 32px;
    line-height: 115%;
  }

  .why-section__lead {
    font-size: 15px;
    line-height: 22px;
  }

  .why-section__cards {
    grid-template-columns: 1fr;
    gap: 14px;
    margin-top: 32px;
  }

  .why-card {
    min-height: 0;
    padding: 22px;
  }

  .why-card__icon {
    width: 52px;
    height: 52px;
    margin-bottom: 24px;
  }

  .why-card h3,
  .why-editor-card h3 {
    font-size: 24px;
  }

  .why-card p,
  .why-editor-card p {
    font-size: 14px;
    line-height: 20px;
  }

  .why-editor-card {
    padding: 18px;
  }

  .why-editor-card img {
    margin-bottom: 22px;
  }

  .tools-section__inner {
    width: calc(100% - 28px);
    padding-top: 56px;
    overflow: hidden;
  }

  .tools-section h2 {
    font-size: 32px;
  }

  .tools-tabs {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    align-items: stretch;
    border-bottom: 0;
  }

  .tools-tabs__item {
    justify-content: flex-start;
    border-bottom: 1px solid rgba(255, 255, 255, 0.82);
  }

  .tools-tabs__item.is-active::after {
    right: auto;
    width: 100%;
  }

  .tools-benefits {
    font-size: 14px;
    gap: 12px;
  }

  .tools-section__group {
    width: 720px;
    margin-top: auto;
    transform: translateX(1%);
  }

  .tools-section__group.start-reveal {
    transform: translateX(1%) translateY(54px) scale(0.94);
  }

  .tools-section__group.start-reveal.is-visible {
    transform: translateX(1%) translateY(0) scale(1);
  }

  .compare-section__inner {
    width: calc(100% - 28px);
    padding: 56px 0;
  }

  .compare-panel {
    align-content: start;
    min-height: 330px;
    padding: 20px;
    border-radius: 16px;
  }

  .compare-panel h2 {
    font-size: 24px;
  }

  .compare-panel p {
    font-size: 15px;
    line-height: 135%;
  }

  .compare-card {
    width: 320px;
    max-width: none;
    margin-left: 50%;
    transform: translateX(-50%) translateY(10%);
  }

  .compare-card.start-reveal {
    transform: translateX(-50%) translateY(26%) scale(0.94);
  }

  .compare-card.start-reveal.is-visible {
    transform: translateX(-50%) translateY(10%) scale(1);
  }

  .compare-lines {
    width: 115%;
    opacity: 0.62;
  }

  .compare-panel--with .compare-label {
    display: none;
  }

  .pricing-section {
    height: auto;
    min-height: auto;
  }

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

  .pricing-section h2 {
    font-size: 32px;
  }

  .pricing-grid {
    grid-template-columns: 1fr;
    gap: 14px;
    margin-top: 28px;
  }

  .pricing-card {
    min-height: 0;
    padding: 20px 14px 22px;
  }

  .pricing-card__description {
    min-height: 0;
  }

  .pricing-card__price {
    margin-top: 20px;
  }

  .pricing-card__price span {
    font-size: 32px;
  }

  .pricing-card__annual {
    min-height: 0;
  }

  .pricing-features {
    gap: 9px;
  }

  .pricing-feature-select {
    min-height: 34px;
  }

  .pricing-feature-select__control {
    min-height: 34px;
    padding-right: 34px;
    font-size: 14px;
  }

  .footer-cta {
    height: 459px;
    background-position: center;
  }

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

  .footer-cta h2 {
    font-size: 32px;
    line-height: 115%;
  }

  .footer-cta p {
    max-width: 330px;
    margin-top: 24px;
    font-size: 14px;
    line-height: 20px;
  }

  .footer-cta__button {
    min-height: 42px;
    margin-top: 42px;
  }

  .start-footer {
    height: auto;
    min-height: 252px;
  }

  .start-footer__inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: calc(100% - 28px);
    min-height: 252px;
    padding: 32px 0 28px;
    gap: 24px;
    text-align: center;
  }

  .start-footer__brand {
    align-self: center;
    font-size: 28px;
  }

  .start-footer__brand svg {
    width: 52px;
    height: 52px;
  }

  .start-footer__contacts {
    order: 2;
    width: 100%;
    align-items: center;
    gap: 18px;
  }

  .start-footer__socials {
    justify-content: center;
    width: 100%;
  }

  .start-footer__socials a {
    width: 48px;
    height: 48px;
  }

  .start-footer__copyright {
    order: 4;
    width: 100%;
    text-align: center;
    font-size: 14px;
  }

  .start-footer__links {
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 10px;
  }

  .start-footer__links a {
    font-size: 14px;
  }

}

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

  .pricing-feature-select__control::after,
  .pricing-dropdown__menu {
    transition: none;
  }
}
