/* каким образом мне клод умудрился из 350 строчек сделать 630? ай да похуй я это даже переписывать не буду, сломается еще че*/
/* мы любим щиткод, правильно? я уверен там стилей в 2 раза больше чем надо, ну клод бля ну он же лучше знает поэтому похуй оставим так */

@font-face {
  font-family: "Geist";
  src: url("https://api.sulfik.eu.cc/fonts/Geist%5Bwght%5D.ttf") format("truetype");
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
}

* {
  box-sizing: border-box;
}

html,
body {
  min-height: 100%;
  margin: 0;
}

body {
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 36%, rgba(255, 255, 255, 0.035), transparent 34%),
    #050505;
  color: #ffffff;
  font-family: "Geist", sans-serif;
}

button {
  font: inherit;
}

.top-bar {
  position: fixed;
  z-index: 20;
  top: 20px;
  left: 50%;
  display: flex;
  align-items: center;
  gap: 12px;
  width: max-content;
  max-width: calc(100% - 32px);
  padding: 8px 10px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 14px;
  opacity: 0;
  background: rgba(18, 18, 18, 0.76);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.045);
  backdrop-filter: blur(18px);
  filter: blur(8px);
  transform: translate3d(-50%, -14px, 0) scale(0.97);
  transition: opacity 450ms ease, transform 550ms cubic-bezier(0.16, 1, 0.3, 1), filter 450ms ease;
  -webkit-backdrop-filter: blur(18px);
}

.top-bar.is-visible {
  opacity: 1;
  filter: blur(0);
  transform: translate3d(-50%, 0, 0) scale(1);
}

.top-bar-logo {
  width: 30px;
  height: 30px;
  flex: 0 0 auto;
  object-fit: contain;
}

.top-bar-divider {
  width: 1px;
  height: 22px;
  flex: 0 0 auto;
  background: rgba(255, 255, 255, 0.13);
}

.top-navigation {
  display: flex;
  align-items: center;
  gap: 2px;
}

.navigation-item {
  min-height: 36px;
  padding: 0 13px;
  border: 0;
  border-radius: 8px;
  background: transparent;
  color: rgba(255, 255, 255, 0.55);
  cursor: pointer;
  font-size: 0.9rem;
  font-weight: 500;
  transition: background-color 160ms ease, color 160ms ease;
}

.navigation-item:hover,
.navigation-item:focus-visible,
.navigation-item.is-active {
  background: rgba(255, 255, 255, 0.065);
  color: rgba(255, 255, 255, 0.94);
}

.navigation-item:focus-visible,
.billing-option:focus-visible,
.payment-button:focus-visible,
.download-button:focus-visible {
  outline: 2px solid rgba(255, 255, 255, 0.55);
  outline-offset: 3px;
}

.site-main,
.page-view {
  width: 100%;
  min-height: 100svh;
}

.page-view {
  position: fixed;
  inset: 0;
  overflow-x: hidden;
  overflow-y: auto;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  filter: blur(7px);
  transform: translate3d(0, 18px, 0) scale(0.99);
  transition:
    opacity 320ms ease,
    transform 440ms cubic-bezier(0.16, 1, 0.3, 1),
    filter 360ms ease,
    visibility 0s linear 440ms;
}

.page-view.is-active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  filter: blur(0);
  transform: translate3d(0, 0, 0) scale(1);
  transition-delay: 0s;
}

.home-view {
  display: grid;
  place-items: center;
  padding: 96px 24px 116px;
}

.intro {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
  text-align: center;
}

.intro-title,
.intro-subtitle {
  margin: 0;
  line-height: 1;
  white-space: nowrap;
}

.intro-title {
  font-size: clamp(3.4rem, 10vw, 8.5rem);
  font-weight: 800;
  letter-spacing: -0.055em;
}

.intro-subtitle {
  font-size: clamp(1.35rem, 3vw, 2.1rem);
  font-weight: 600;
  letter-spacing: -0.02em;
}

.intro-title .reveal-letter,
.intro-subtitle .reveal-letter {
  background: linear-gradient(105deg, #8d8d8d 0%, #b8b8b8 24%, #dedede 42%, #aaaaaa 60%, #d0d0d0 78%, #8d8d8d 100%);
  background-size: 260% 100%;
  background-clip: text;
  color: transparent;
  -webkit-background-clip: text;
}

.intro-title .reveal-letter {
  background-position: calc(100% - var(--letter-index) * 7%) 50%;
}

.intro-subtitle .reveal-letter {
  background-position: calc(100% - var(--letter-index) * 4%) 50%;
}

.reveal-letter {
  display: inline-block;
  opacity: 0;
  filter: blur(8px);
  transform: translate3d(-16px, 0, 0);
  transition: opacity 350ms cubic-bezier(0.2, 0.8, 0.2, 1), transform 450ms cubic-bezier(0.16, 1, 0.3, 1), filter 400ms ease;
}

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

.download-button {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 11px;
  min-height: 52px;
  margin-top: 14px;
  padding: 0 21px;
  border: 1px solid rgba(255, 255, 255, 0.75);
  border-radius: 10px;
  opacity: 0;
  background: linear-gradient(180deg, #f4f4f4, #d8d8d8);
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.28), inset 0 1px 0 rgba(255, 255, 255, 0.85);
  color: #101010;
  cursor: pointer;
  filter: blur(7px);
  font-size: 0.98rem;
  font-weight: 650;
  transform: translate3d(0, 12px, 0) scale(0.98);
  transition: opacity 400ms ease, transform 450ms cubic-bezier(0.16, 1, 0.3, 1), filter 400ms ease, background 150ms ease, box-shadow 150ms ease;
}

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

.download-button:hover {
  background: linear-gradient(180deg, #ffffff, #e5e5e5);
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.34), inset 0 1px 0 #ffffff;
  transform: translate3d(0, -2px, 0) scale(1);
}

.download-button:active {
  transform: translate3d(0, 0, 0) scale(0.985);
}

.download-button-icon {
  width: 19px;
  height: 19px;
  flex: 0 0 auto;
  object-fit: contain;
}

.download-button-icon.is-missing {
  display: none;
}

.license-notice {
  position: absolute;
  right: 24px;
  bottom: 22px;
  left: 24px;
  max-width: 780px;
  margin: 0 auto;
  opacity: 0;
  color: rgba(255, 255, 255, 0.46);
  font-size: clamp(0.88rem, 1.4vw, 1rem);
  font-weight: 430;
  line-height: 1.55;
  text-align: center;
  transform: translate3d(0, 8px, 0);
  transition: opacity 420ms ease, transform 480ms ease;
}

.license-notice.is-visible {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

.pricing-view {
  display: flex;
  align-items: center;
  padding: 112px 24px 48px;
  background: #050505;
}

.pricing-container {
  width: min(1200px, 100%);
  margin: auto;
}

.billing-switch {
  display: flex;
  width: max-content;
  margin: 0 auto 38px;
  padding: 4px;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 11px;
  background: rgba(255, 255, 255, 0.04);
}

.billing-option {
  min-height: 38px;
  padding: 0 16px;
  border: 0;
  border-radius: 7px;
  background: transparent;
  color: rgba(255, 255, 255, 0.48);
  cursor: pointer;
  font-size: 0.9rem;
  font-weight: 550;
  transition: background-color 220ms ease, color 220ms ease, box-shadow 220ms ease;
}

.billing-option.is-active {
  background: rgba(255, 255, 255, 0.1);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
  color: #ffffff;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.pricing-card {
  position: relative;
  display: flex;
  min-height: 460px;
  flex-direction: column;
  padding: 34px;
  border: 1px solid rgba(255, 255, 255, 0.065);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.014);
}

.plan-heading {
  display: flex;
  min-height: 92px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  text-align: center;
}

.plan-heading h3 {
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 1.35rem;
  font-weight: 650;
  letter-spacing: -0.035em;
}

.plan-icon {
  width: 46px;
  height: 46px;
  opacity: 0.72;
  object-fit: contain;
}

.annual-badge {
  position: absolute;
  top: 18px;
  left: 18px;
  display: none;
  color: rgba(255, 255, 255, 0.3);
  font-size: 0.7rem;
  font-weight: 560;
  letter-spacing: 0.04em;
}

.pricing-view[data-billing="yearly"] .annual-badge {
  display: block;
}

.plan-price {
  min-height: 78px;
  margin-top: 18px;
  text-align: center;
}

.plan-price strong {
  display: block;
  color: rgba(255, 255, 255, 0.88);
  font-size: clamp(2rem, 3vw, 2.55rem);
  font-weight: 680;
  letter-spacing: -0.055em;
}

.plan-price > span {
  display: block;
  margin-top: 5px;
  color: rgba(255, 255, 255, 0.36);
  font-size: 0.82rem;
}

.yearly-price {
  display: none;
}

.pricing-view[data-billing="yearly"] .monthly-price {
  display: none;
}

.pricing-view[data-billing="yearly"] .yearly-price {
  display: block;
}

.plan-features {
  display: grid;
  gap: 0;
  margin: 18px 0 26px;
  padding: 0;
  list-style: none;
  text-align: center;
}

.plan-features li {
  display: flex;
  min-height: 58px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.055);
  color: rgba(255, 255, 255, 0.34);
  font-size: 0.78rem;
}

.plan-features b {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
  font-weight: 540;
  text-align: center;
}

.payment-button {
  min-height: 45px;
  margin-top: auto;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 9px;
  background: rgba(255, 255, 255, 0.045);
  color: rgba(255, 255, 255, 0.76);
  cursor: pointer;
  font-size: 0.9rem;
  font-weight: 600;
  transition: background-color 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.payment-button:hover {
  border-color: rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.12);
  transform: translate3d(0, -1px, 0);
}

.payment-button:active {
  transform: translate3d(0, 0, 0) scale(0.99);
}

.developers-view {
  display: flex;
  align-items: center;
  padding: 112px 24px 48px;
  background: #050505;
}

.developers-container {
  width: min(860px, 100%);
  margin: auto;
}

.developers-label {
  margin: 0 0 30px;
  color: rgba(255, 255, 255, 0.32);
  font-size: 0.78rem;
  font-weight: 580;
  letter-spacing: 0.12em;
  text-align: center;
  text-transform: uppercase;
}

.developers-list {
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.075);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.014);
}

.developer-row {
  display: grid;
  grid-template-columns: 210px minmax(0, 1fr);
  gap: 38px;
  padding: 27px 30px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.065);
}

.developer-row:last-child {
  border-bottom: 0;
}

.developer-row > div {
  align-self: center;
  text-align: center;
}

.developer-name {
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 1.18rem;
  font-weight: 640;
  letter-spacing: -0.025em;
}

.developer-role {
  display: block;
  margin-top: 6px;
  color: rgba(255, 255, 255, 0.34);
  font-size: 0.82rem;
  font-weight: 500;
}

.developer-desc {
  margin: 0;
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.92rem;
  line-height: 1.58;
}

.developers-status {
  margin: 26px 0 0;
  color: rgba(255, 255, 255, 0.34);
  font-size: 0.9rem;
  text-align: center;
}

.is-instant .reveal-letter,
.is-instant .top-bar,
.is-instant .download-button,
.is-instant .license-notice {
  transition: none;
}

@media (max-width: 820px) {
  .pricing-grid {
    grid-template-columns: 1fr;
    max-width: 560px;
    margin: 0 auto;
  }

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

@media (max-width: 560px) {
  .top-bar {
    top: 12px;
    gap: 8px;
    width: calc(100% - 24px);
    padding: 7px 8px;
  }

  .top-bar-logo {
    width: 26px;
    height: 26px;
  }

  .top-navigation {
    flex: 1;
    justify-content: space-between;
  }

  .navigation-item {
    min-height: 34px;
    padding: 0 8px;
    font-size: clamp(0.74rem, 3.2vw, 0.86rem);
  }

  .home-view {
    padding: 88px 18px 132px;
  }

  .intro {
    gap: 14px;
  }

  .intro-title {
    font-size: clamp(2.9rem, 16vw, 4.5rem);
  }

  .intro-subtitle {
    font-size: clamp(1.2rem, 6vw, 1.6rem);
  }

  .license-notice {
    right: 18px;
    bottom: 18px;
    left: 18px;
    font-size: 0.85rem;
  }

  .pricing-view {
    padding: 94px 16px 32px;
  }

  .pricing-card {
    min-height: 440px;
    padding: 28px;
  }

  .developers-view {
    align-items: flex-start;
    padding: 94px 18px 32px;
  }

  .developer-row {
    grid-template-columns: 1fr;
    gap: 14px;
    padding: 24px 22px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .reveal-letter,
  .top-bar,
  .download-button,
  .license-notice,
  .page-view {
    transition-duration: 1ms;
  }
}
