html {
  max-width: 100%;
  overflow-x: hidden;
  scroll-padding-top: 76px;
}

section[id] {
  scroll-margin-top: 76px;
}

.header__controls {
  display: flex;
  align-items: center;
  margin-left: auto;
}

.mobile-menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, .22);
  border-radius: 14px;
  background: rgba(255, 255, 255, .12);
  color: #fff;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 4px;
  padding: 0;
  cursor: pointer;
  box-shadow: 0 8px 20px rgba(0, 0, 0, .16), inset 0 1px 0 rgba(255, 255, 255, .22);
  transition: .2s var(--ease-out);
}

.mobile-menu-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  transition: transform .2s var(--ease-out), opacity .16s var(--ease-out);
}

.mobile-menu-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.mobile-menu-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.mobile-menu-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

.mobile-menu-toggle:hover {
  background: rgba(255, 255, 255, .2);
}

.mobile-menu-toggle[aria-expanded="true"] {
  background: #80fff3;
  color: #15203a;
  border-color: transparent;
}

header.site.is-scrolled .mobile-menu-toggle {
  background: #fff;
  color: var(--hero-violet, var(--hero-blue, var(--brand-violet)));
  border-color: color-mix(in srgb, var(--hero-violet, var(--hero-blue, var(--brand-violet))) 18%, transparent);
  box-shadow: 0 8px 20px color-mix(in srgb, var(--hero-violet, var(--hero-blue, var(--brand-violet))) 16%, transparent);
}

header.site.is-scrolled .mobile-menu-toggle[aria-expanded="true"] {
  background: var(--hero-violet, var(--hero-blue, var(--brand-violet)));
  color: #fff;
}

@media (max-width: 1180px) {
  html {
    scroll-padding-top: 68px;
  }

  section[id] {
    scroll-margin-top: 68px;
  }

  header.site {
    z-index: 100;
  }

  header.site .row {
    height: 68px;
    position: relative;
  }

  .mobile-menu-toggle {
    display: flex !important;
    margin-left: auto;
    flex: 0 0 44px;
  }

  .header__controls {
    position: absolute;
    top: calc(100% + 10px);
    left: 0;
    right: 0;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 14px;
    margin: 0;
    padding: 18px;
    border: 1px solid rgba(255, 255, 255, .16);
    border-radius: 20px;
    background: rgba(7, 16, 34, .97);
    box-shadow: 0 24px 54px rgba(2, 11, 28, .36), inset 0 1px 0 rgba(255, 255, 255, .12);
    backdrop-filter: blur(18px) saturate(140%);
    -webkit-backdrop-filter: blur(18px) saturate(140%);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(-8px) scale(.985);
    transform-origin: top right;
    transition: opacity .18s var(--ease-out), transform .22s var(--ease-out), visibility .22s;
    z-index: 70;
    max-height: calc(100dvh - 86px);
    overflow-y: auto;
    overscroll-behavior: contain;
  }

  .header__controls.is-open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0) scale(1);
  }

  .header__controls nav.menu {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    font-size: 15px;
  }

  .header__controls nav.menu a,
  header.site.is-scrolled .header__controls nav.menu a {
    display: flex;
    align-items: center;
    min-height: 46px;
    padding: 11px 14px;
    border-radius: 12px;
    color: #fff;
    background: rgba(255, 255, 255, .07);
    border-color: rgba(255, 255, 255, .08);
  }

  .header__controls nav.menu a:hover,
  header.site.is-scrolled .header__controls nav.menu a:hover,
  .header__controls nav.menu a.is-active,
  header.site.is-scrolled .header__controls nav.menu a.is-active {
    transform: none;
    color: #fff;
    background: rgba(255, 255, 255, .14);
    border-color: rgba(128, 255, 243, .24);
    box-shadow: none;
  }

  .header__controls .header__actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin: 0;
    padding-top: 14px;
    border-top: 1px solid rgba(255, 255, 255, .12);
  }

  .header__controls .header-cta {
    width: 100%;
    min-height: 46px;
    padding: 12px 14px;
  }

  .header__controls .header-cta span:last-child {
    display: inline;
  }

  .hero {
    padding: 104px 0 68px;
    overflow: hidden;
  }

  .hero__circles {
    right: 0 !important;
  }

  .hero .row {
    gap: 44px;
  }

  .hero .left,
  .biz-carousel {
    width: 100%;
    max-width: 720px;
    margin-inline: auto;
  }

  .hero__title {
    max-width: 760px;
  }

  .hero__lead,
  .hero__lead-list {
    max-width: 680px;
  }

  .biz-stack {
    min-height: 0;
  }

  .biz-card .showcase-summary ~ .bc-app-head,
  .biz-card .showcase-activity {
    display: none;
  }

  .biz-carousel__nav {
    margin-top: 16px;
  }

  .skills-layer {
    display: none;
  }

  .floating-metrics {
    width: calc(100% - 48px);
    gap: 0;
    padding: 22px 28px;
  }

  section.band {
    padding: 72px 0;
  }

  section.band > .wrap > .sub {
    margin-bottom: 44px;
  }

  .pains-grid,
  .cats-grid,
  .tariffs-grid,
  .why-grid,
  .split-grid,
  .partners-two,
  .safety-grid,
  .founder-grid {
    gap: 18px;
  }

  .steps {
    gap: 24px 16px;
  }

  .cases-carousel {
    max-width: 760px;
    margin-inline: auto;
  }

  .case-card .stats:not(:has(.s:not([hidden]))) {
    display: none;
  }

  .contact-layout,
  .contact .row {
    max-width: 760px;
    margin-inline: auto;
  }
}

@media (max-width: 700px) {
  html {
    scroll-padding-top: 64px;
  }

  section[id] {
    scroll-margin-top: 64px;
  }

  .wrap {
    padding: 0 18px;
  }

  header.site .row {
    height: 64px;
  }

  .logo {
    gap: 8px;
  }

  .logo .mark {
    width: 34px;
    height: 34px;
    border-radius: 9px;
    font-size: 17px;
  }

  .logo .name {
    font-size: 15px;
    letter-spacing: .14em;
  }

  .mobile-menu-toggle {
    width: 42px;
    height: 42px;
    flex-basis: 42px;
  }

  .header__controls {
    top: calc(100% + 8px);
    padding: 16px;
    border-radius: 18px;
  }

  .header__controls nav.menu {
    grid-template-columns: 1fr;
  }

  .header__controls .header__actions {
    grid-template-columns: 1fr;
  }

  .header__controls .header-cta {
    min-height: 48px;
    font-size: 14px;
  }

  section.band {
    padding: 56px 0;
  }

  section.band > .wrap > h2 {
    font-size: clamp(30px, 8.5vw, 38px);
    line-height: 1.12;
    margin-bottom: 12px;
    text-wrap: balance;
  }

  section.band > .wrap > h2 br,
  .how-intro h2 br,
  .contact h2 br {
    display: none;
  }

  section.band > .wrap > .sub {
    margin-bottom: 34px;
    font-size: 16px;
    line-height: 1.5;
  }

  .hero {
    padding: 88px 0 56px;
  }

  .hero .row {
    gap: 34px;
  }

  .hero__pretitle {
    max-width: 100%;
    margin-bottom: 14px;
    white-space: normal;
    line-height: 1.35;
    letter-spacing: .08em;
  }

  .hero__title {
    margin-bottom: 16px;
    font-size: clamp(36px, 10.5vw, 46px);
    line-height: 1.04;
  }

  .hero__title br {
    display: none;
  }

  .hero__lead {
    margin-bottom: 20px;
    font-size: 16px;
    line-height: 1.5;
  }

  .hero__lead-list {
    margin-bottom: 20px;
  }

  .hero__lead-list li {
    font-size: 15px;
  }

  .hero__chips {
    gap: 7px;
    margin-bottom: 20px;
  }

  .hero__chip {
    padding: 7px 10px;
    font-size: 12px;
  }

  .hero__buttons {
    gap: 10px;
    margin-bottom: 20px;
  }

  .hero__link {
    min-height: 50px;
    padding: 14px 18px;
  }

  .hero__trust {
    align-items: flex-start;
    gap: 12px;
    line-height: 1.4;
  }

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

  .biz-card .bc-head {
    align-items: flex-start;
    margin-bottom: 14px;
    padding-bottom: 14px;
  }

  .bc-logo {
    width: 40px;
    height: 40px;
    flex: 0 0 40px;
  }

  .bc-balance {
    min-width: 78px;
  }

  .bc-task {
    padding: 14px;
  }

  .bc-task .row1,
  .bc-task .meta {
    flex-wrap: wrap;
  }

  .bc-task .meta {
    gap: 6px 10px;
  }

  .bc-app {
    display: grid;
    grid-template-columns: 34px minmax(0, 1fr) auto;
    align-items: center;
  }

  .bc-app .nm .s {
    flex-wrap: wrap;
    gap: 4px;
  }

  .bc-app .pick {
    grid-column: 2 / 4;
    justify-self: start;
    margin-top: 4px;
  }

  .showcase-kpis {
    gap: 6px;
  }

  .showcase-kpi {
    padding: 9px 5px;
  }

  .showcase-kpi strong {
    font-size: 17px;
  }

  .biz-carousel__nav {
    margin-top: 14px;
  }

  .metrics-band {
    padding: 0;
  }

  .floating-metrics {
    width: calc(100% - 36px);
    grid-template-columns: 1fr 1fr;
    margin: 0 auto;
    padding: 10px;
    gap: 0;
    transform: translateY(-24px);
    border-radius: 18px;
  }

  .floating-metrics .ff {
    min-height: 104px;
    justify-content: center;
    padding: 13px 8px;
  }

  .floating-metrics .ff:nth-child(odd) {
    border-right: 1px solid rgba(94, 19, 255, .1);
  }

  .floating-metrics .ff:nth-child(-n + 2) {
    border-bottom: 1px solid rgba(94, 19, 255, .1);
  }

  .floating-metrics .ff .v {
    font-size: 29px;
  }

  .floating-metrics .ff .l {
    font-size: 12px;
    line-height: 1.35;
  }

  .pains-grid,
  .cats-grid,
  .tariffs-grid,
  .steps,
  .why-grid,
  .split-grid,
  .partners-two,
  .safety-grid,
  .founder-grid {
    grid-template-columns: 1fr;
  }

  .steps {
    grid-template-columns: 1fr !important;
  }

  #protection .cats-grid,
  #protection .grid {
    grid-template-columns: 1fr !important;
  }

  .pain,
  .cat,
  .tariff,
  .wcard,
  .split-card,
  .safety-item {
    padding: 22px 20px;
  }

  .pains-after {
    margin-top: 30px;
    padding: 28px 20px;
  }

  .pains-after h3 {
    font-size: 24px;
  }

  .step {
    min-height: 218px;
    padding: 26px 20px 74px;
  }

  .step .num {
    left: 20px;
  }

  .step .ico {
    left: 20px;
    bottom: 18px;
  }

  .how-intro {
    gap: 24px;
    margin-bottom: 38px;
  }

  .how-intro__text {
    text-align: left;
  }

  .legal-panel,
  .docrow {
    align-items: flex-start;
  }

  .docrow {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .cases-carousel {
    padding: 0 0 62px;
  }

  .cases-viewport {
    margin: -10px;
    padding: 10px;
    border-radius: 18px;
  }

  .cases-track {
    gap: 14px;
  }

  .cases-col {
    flex-basis: 100%;
    grid-template-rows: none;
    gap: 14px;
  }

  .case-card {
    min-height: 0;
    border-radius: 18px;
  }

  .case-card .top {
    padding: 17px 17px 14px;
    gap: 11px;
  }

  .case-card .top .lg {
    width: 42px;
    height: 42px;
    border-radius: 11px;
    font-size: 16px;
  }

  .case-card .top .n {
    font-size: 16px;
  }

  .case-card .body {
    padding: 19px 17px 8px;
  }

  .case-card .body h4 {
    font-size: 18px;
  }

  .case-card .body p {
    font-size: 14px;
    line-height: 1.5;
  }

  .case-card .stats {
    gap: 6px;
    padding: 15px 10px;
  }

  .case-card .stats .v {
    font-size: 19px;
  }

  .case-card .stats .l {
    font-size: 10px;
  }

  .cases-nav {
    top: auto;
    bottom: 0;
  }

  .cases-nav--prev {
    left: calc(50% - 54px);
    transform: none;
  }

  .cases-nav--next {
    right: calc(50% - 54px);
    transform: none;
  }

  .cases-nav--prev:hover,
  .cases-nav--next:hover {
    transform: translateY(-2px);
  }

  .contact h2 {
    font-size: clamp(30px, 8.5vw, 38px);
    text-wrap: balance;
  }

  .contact-layout,
  .contact .row {
    gap: 22px;
  }

  .contact-character {
    min-height: 270px;
  }

  .contact-character img {
    max-height: 290px;
  }

  .contact-panel {
    gap: 14px;
  }

  .contact-panel .lead {
    font-size: 16px;
    line-height: 1.5;
  }

  .ci,
  .social-block {
    padding: 16px;
  }

  .ci .val {
    overflow-wrap: anywhere;
  }

  .contact-modal {
    padding: 16px;
  }

  .contact-modal__dialog {
    max-height: calc(100dvh - 32px);
    border-radius: 20px;
  }

  .contact-modal__form {
    padding: 36px 18px 20px;
  }

  .contact-modal__form h3 {
    padding-right: 34px;
    font-size: 24px;
  }

  .form-card .two {
    grid-template-columns: 1fr;
  }

  .form-card input,
  .form-card textarea,
  .form-card select {
    font-size: 16px;
  }

  .founder-avatar {
    width: 170px;
    height: 170px;
    font-size: 50px;
  }

  footer.site .container {
    padding-inline: 18px;
  }

  footer.site .footer__top {
    gap: 28px;
  }

  footer.site .footer__info {
    grid-template-columns: 50px 1fr;
    gap: 10px;
  }

  footer.site .footer__logo img {
    width: 50px;
    height: auto;
  }

  footer.site .footer__info-text {
    font-size: 14px;
    line-height: 1.5;
  }

  footer.site .footer__nav {
    width: 100%;
  }

  footer.site .footer__copy {
    padding: 22px 0;
    font-size: 12px;
  }
}

@media (max-width: 420px) {
  .wrap {
    padding: 0 15px;
  }

  .logo .name {
    font-size: 14px;
    letter-spacing: .11em;
  }

  .hero {
    padding-top: 82px;
  }

  .hero__title {
    font-size: 36px;
  }

  .hero__chip {
    white-space: normal;
  }

  .showcase-kpis {
    grid-template-columns: 1fr 1fr;
  }

  .showcase-kpi:last-child:nth-child(odd) {
    grid-column: 1 / -1;
  }

  .floating-metrics {
    width: calc(100% - 30px);
  }

  .floating-metrics .ff .v {
    font-size: 26px;
  }

  .case-card .stats {
    grid-template-columns: repeat(3, 1fr);
  }

  .contact-character {
    min-height: 235px;
  }

  .contact-character img {
    max-height: 255px;
  }
}

@media (max-width: 700px) {
  .hero {
    padding: 82px 0 38px;
  }

  .hero .row {
    display: flex !important;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
  }

  .hero .left {
    display: contents;
  }

  .hero__pretitle {
    order: 1;
    align-self: flex-start;
  }

  .hero__title {
    order: 2;
  }

  .hero__lead {
    order: 3;
  }

  .hero__lead-list {
    order: 4;
  }

  .hero__chips {
    order: 5;
    width: calc(100% + 36px);
    margin: 0 -18px 6px;
    padding: 2px 18px 8px;
    display: flex;
    flex-wrap: nowrap;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x proximity;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
  }

  .hero__chips::-webkit-scrollbar {
    display: none;
  }

  .hero__chip {
    min-height: 36px;
    scroll-snap-align: start;
    background: rgba(255, 255, 255, .12);
  }

  .biz-carousel {
    order: 6;
    margin: 18px auto 0;
  }

  .hero__buttons {
    order: 7;
    width: 100%;
    margin: 18px 0 0;
    display: grid;
    grid-template-columns: 1fr;
  }

  .hero__buttons .hero__link {
    width: 100%;
  }

  .biz-card {
    padding: 14px;
    border-radius: 18px;
    box-shadow: 0 18px 38px rgba(0, 0, 0, .2), 0 4px 12px rgba(0, 0, 0, .12);
  }

  .biz-card .bc-head {
    min-height: 46px;
    gap: 10px;
    margin-bottom: 10px;
    padding-bottom: 10px;
  }

  .bc-logo {
    width: 38px;
    height: 38px;
    flex-basis: 38px;
    border-radius: 10px;
    font-size: 14px;
  }

  .bc-co {
    font-size: 14px;
  }

  .bc-co-sub {
    max-width: 245px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    font-size: 10.5px;
  }

  .biz-card .bc-task {
    margin-bottom: 10px;
    padding: 12px;
    border-radius: 12px;
  }

  .biz-card .bc-task .title {
    font-size: 13.5px;
    line-height: 1.35;
  }

  .biz-card .showcase-description {
    display: -webkit-box;
    margin: 6px 0 8px;
    overflow: hidden;
    font-size: 11px;
    line-height: 1.4;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
  }

  .biz-card .showcase-meta {
    flex-wrap: nowrap;
    gap: 5px;
    overflow: hidden;
    white-space: nowrap;
    font-size: 10px;
  }

  .biz-card .showcase-meta span {
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .biz-card .showcase-kpis {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 5px;
    margin: 9px 0 0;
  }

  .biz-card .showcase-kpi {
    min-width: 0;
    padding: 8px 4px;
  }

  .biz-card .showcase-kpi strong {
    font-size: 16px;
  }

  .biz-card .showcase-kpi span {
    font-size: 9px;
    line-height: 1.2;
  }

  .biz-card .showcase-kpi:last-child:nth-child(odd) {
    grid-column: auto;
  }

  .biz-card .bc-app-head {
    gap: 8px;
    margin: 0 0 8px;
  }

  .biz-card .bc-app-head .l {
    font-size: 10px;
  }

  .biz-card .bc-app-head .c {
    max-width: 52%;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    font-size: 9.5px;
  }

  .biz-card .showcase-activity {
    padding-top: 10px;
    padding-bottom: 10px;
  }

  .biz-card .showcase-summary ~ .bc-app-head,
  .biz-card .showcase-activity {
    display: none;
  }

  .biz-card .showcase-activity__total {
    margin-bottom: -2px;
    font-size: 10px;
  }

  .biz-card .showcase-bars {
    gap: 8px;
    margin-top: 8px;
  }

  .biz-card .showcase-bar__head {
    margin-bottom: 4px;
    font-size: 9.5px;
  }

  .biz-card .showcase-bar__head strong {
    max-width: 68%;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    font-size: 10.5px;
  }

  .biz-card .showcase-bar__track {
    height: 6px;
  }

  .biz-carousel__nav {
    gap: 12px;
    margin-top: 12px;
  }

  .biz-carousel__arrow {
    width: 34px;
    height: 34px;
  }

  .biz-carousel__dot {
    width: 7px;
    height: 7px;
  }

  .biz-carousel__dot.is-active {
    width: 21px;
  }

  .metrics-band {
    min-height: 196px;
  }

  .floating-metrics {
    top: 0;
    transform: translateY(-20px);
    box-shadow: 0 18px 38px rgba(20, 80, 75, .16), 0 5px 14px rgba(0, 0, 0, .06);
  }

  section.band {
    padding: 52px 0;
  }

  section.band > .wrap > h2 {
    max-width: 360px;
    margin-right: auto;
    margin-left: auto;
  }

  section.band > .wrap > .sub {
    max-width: 350px;
    margin-bottom: 30px;
  }

  .pains-grid,
  .cats-grid,
  .tariffs-grid,
  .steps,
  .why-grid,
  .split-grid,
  .partners-two,
  .safety-grid,
  .founder-grid {
    gap: 14px;
  }

  .pain,
  .cat,
  .tariff,
  .wcard,
  .split-card,
  .safety-item {
    border-radius: 18px;
    box-shadow: 0 10px 28px rgba(28, 28, 28, .06);
  }

  .pain:hover,
  .cat:hover,
  .tariff:hover,
  .tariff.featured:hover,
  .wcard:hover,
  .split-card:hover,
  .step:hover {
    transform: none;
  }

  .pain,
  .cat,
  .wcard,
  .split-card,
  .safety-item {
    padding: 20px 18px;
  }

  .pain .ico,
  .cat .ico,
  .wcard .ico,
  .split-ico {
    width: 44px;
    height: 44px;
    border-radius: 12px;
  }

  .pain h4,
  .cat h4,
  .wcard h4,
  .split-card h3,
  .safety-item h4 {
    font-size: 18px;
  }

  .pain p,
  .cat p,
  .wcard p,
  .split-card p,
  .safety-item p {
    font-size: 14px;
    line-height: 1.5;
  }

  .pains-after {
    margin-top: 22px;
    border-radius: 18px;
  }

  .pains-grid,
  .cats-grid,
  .tariffs-grid,
  .why-grid,
  .split-grid,
  .partners-two,
  .safety-left,
  #protection .cats-grid {
    display: grid;
    grid-template-columns: none !important;
    grid-auto-flow: column;
    grid-auto-columns: minmax(280px, 88%);
    align-items: stretch;
    gap: 12px;
    width: calc(100% + 18px);
    margin-right: -18px;
    padding: 4px 18px 16px 0;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-padding-left: 0;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    overscroll-behavior-inline: contain;
    -webkit-overflow-scrolling: touch;
  }

  .pains-grid::-webkit-scrollbar,
  .cats-grid::-webkit-scrollbar,
  .tariffs-grid::-webkit-scrollbar,
  .why-grid::-webkit-scrollbar,
  .split-grid::-webkit-scrollbar,
  .partners-two::-webkit-scrollbar {
    display: none;
  }

  .safety-left::-webkit-scrollbar,
  #protection .cats-grid::-webkit-scrollbar {
    display: none;
  }

  .pains-grid > *,
  .cats-grid > *,
  .tariffs-grid > *,
  .why-grid > *,
  .split-grid > *,
  .partners-two > * {
    min-width: 0;
    min-height: 100%;
    scroll-snap-align: start;
    scroll-snap-stop: always;
  }

  .safety-left > *,
  #protection .cats-grid > * {
    min-width: 0;
    min-height: 100%;
    scroll-snap-align: start;
    scroll-snap-stop: always;
  }

  .safety-left .safety-item {
    height: 100%;
    padding: 20px 18px;
    border: 1px solid rgba(28, 28, 28, .06);
    border-radius: 18px;
    background: #fff;
  }

  .pain,
  .cat,
  .tariff,
  .wcard,
  .split-card {
    height: 100%;
  }

  .steps {
    padding-top: 8px;
  }

  .step {
    min-height: 0;
    padding: 25px 18px 20px 74px;
    border-radius: 18px;
  }

  .step .num {
    top: 20px;
    left: 18px;
  }

  .step h4 {
    margin: 0 0 7px;
  }

  .step .ico {
    position: static;
    width: 36px;
    height: 36px;
    margin-top: 12px;
  }

  .tariff {
    padding: 24px 20px;
  }

  .tariff.featured {
    transform: none;
  }

  .faq {
    gap: 10px;
  }

  .qa {
    border-radius: 16px;
  }

  .qa .q {
    min-height: 58px;
    padding: 15px 16px;
    font-size: 15px;
    line-height: 1.4;
  }

  .qa .a {
    padding: 0 16px 16px;
    font-size: 14px;
    line-height: 1.5;
  }

  .cases-viewport {
    margin: -8px;
    padding: 8px;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-behavior: smooth;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
  }

  .cases-viewport::-webkit-scrollbar {
    display: none;
  }

  .cases-track {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: 100%;
    gap: 12px;
    width: 100%;
    transform: none !important;
    transition: none !important;
  }

  .cases-col {
    display: contents;
  }

  .cases-col[aria-hidden="true"] {
    display: none;
  }

  .case-card {
    width: 100%;
    scroll-snap-align: start;
    scroll-snap-stop: always;
    box-shadow: 0 10px 26px rgba(94, 19, 255, .07);
  }

  .cases-nav.is-disabled {
    pointer-events: auto;
    opacity: 1;
  }

  .case-card .body p {
    margin-bottom: 12px;
  }

  .partners-row {
    justify-content: flex-start;
    overflow-x: auto;
    padding: 4px 2px 12px;
    scroll-snap-type: x proximity;
    scrollbar-width: none;
  }

  .partners-row::-webkit-scrollbar {
    display: none;
  }

  .partners-row > * {
    flex: 0 0 auto;
    scroll-snap-align: start;
  }

  .contact {
    padding-top: 52px;
    padding-bottom: 52px;
  }

  .contact-character {
    min-height: 235px;
  }

  .contact-character img {
    max-height: 255px;
  }
}

@media (max-width: 420px) {
  .hero__chips {
    width: calc(100% + 30px);
    margin-right: -15px;
    margin-left: -15px;
    padding-right: 15px;
    padding-left: 15px;
  }

  .hero__title {
    font-size: 35px;
  }

  .pains-grid,
  .cats-grid,
  .tariffs-grid,
  .why-grid,
  .split-grid,
  .partners-two,
  .safety-left,
  #protection .cats-grid {
    grid-auto-columns: minmax(272px, 90%);
    width: calc(100% + 15px);
    margin-right: -15px;
    padding-right: 15px;
  }

  .biz-card .showcase-description {
    -webkit-line-clamp: 2;
  }

  .biz-card .showcase-kpi strong {
    font-size: 15px;
  }
}

/* Mobile readability pass: inner pages should feel as deliberate as home. */
@media (max-width: 700px) {
  html {
    scroll-padding-top: 70px;
  }

  section[id] {
    scroll-margin-top: 70px;
  }

  body.mobile-menu-open::before {
    content: "";
    position: fixed;
    inset: 68px 0 0;
    z-index: 90;
    background: rgba(3, 8, 24, .5);
    backdrop-filter: blur(3px);
    -webkit-backdrop-filter: blur(3px);
    pointer-events: none;
  }

  header.site .row {
    height: 68px;
  }

  .logo .mark {
    width: 36px;
    height: 36px;
    flex: 0 0 36px;
    font-size: 18px;
  }

  .logo .name {
    font-size: 15.5px;
    letter-spacing: .13em;
  }

  .mobile-menu-toggle {
    width: 46px;
    height: 46px;
    flex-basis: 46px;
    gap: 5px;
    border: 1px solid rgba(255, 255, 255, .72);
    border-radius: 14px;
    background: rgba(255, 255, 255, .94);
    color: var(--hero-violet, var(--hero-blue, var(--brand-violet)));
    box-shadow: 0 10px 24px rgba(1, 8, 24, .2), inset 0 1px 0 #fff;
  }

  .mobile-menu-toggle span {
    width: 22px;
    height: 2.5px;
  }

  .mobile-menu-toggle[aria-expanded="true"] span:nth-child(1) {
    transform: translateY(7.5px) rotate(45deg);
  }

  .mobile-menu-toggle[aria-expanded="true"] span:nth-child(3) {
    transform: translateY(-7.5px) rotate(-45deg);
  }

  .mobile-menu-toggle[aria-expanded="true"],
  header.site.is-scrolled .mobile-menu-toggle[aria-expanded="true"] {
    background: #80fff3;
    color: #101a36;
  }

  .header__controls {
    top: calc(100% + 8px);
    left: 8px;
    right: 8px;
    gap: 12px;
    padding: 14px;
    border-radius: 22px;
    box-shadow: 0 28px 70px rgba(1, 7, 24, .42), inset 0 1px 0 rgba(255, 255, 255, .12);
  }

  .header__controls nav.menu {
    gap: 7px;
  }

  .header__controls nav.menu a,
  header.site.is-scrolled .header__controls nav.menu a {
    min-height: 50px;
    padding: 13px 15px;
    font-size: 16px;
  }

  .header__controls .header__actions {
    gap: 9px;
    padding-top: 12px;
  }

  .header__controls .header-cta {
    min-height: 52px;
    font-size: 15px;
  }

  .hero {
    padding: 90px 0 42px;
  }

  .hero__pretitle {
    margin-bottom: 15px;
    padding: 8px 13px;
    font-size: 12.5px;
  }

  .hero__title {
    margin-bottom: 19px;
    font-size: clamp(38px, 10.7vw, 43px);
    line-height: 1.06;
    letter-spacing: -.025em;
  }

  .hero__lead {
    margin-bottom: 22px;
    font-size: 17px;
    line-height: 1.55;
  }

  .hero__lead-list {
    gap: 10px;
    margin-bottom: 22px;
  }

  .hero__lead-list li {
    font-size: 16px;
    line-height: 1.5;
  }

  .hero__chips {
    width: 100%;
    margin: 0 0 4px;
    padding: 0;
    flex-wrap: wrap;
    overflow: visible;
    gap: 8px;
  }

  .hero__chip {
    min-height: 40px;
    padding: 9px 12px;
    font-size: 13px;
  }

  .hero__buttons {
    order: 6;
    gap: 11px;
    margin: 15px 0 5px;
  }

  .hero__link {
    min-height: 54px;
    padding: 15px 18px;
    font-size: 15.5px;
  }

  .biz-carousel {
    order: 7;
    margin-top: 20px;
  }

  .biz-card {
    padding: 16px;
    border-radius: 20px;
  }

  .biz-card .bc-head {
    min-height: 50px;
    margin-bottom: 12px;
    padding-bottom: 12px;
  }

  .bc-logo {
    width: 42px;
    height: 42px;
    flex-basis: 42px;
    font-size: 15px;
  }

  .bc-co {
    font-size: 15.5px;
  }

  .bc-co-sub {
    max-width: 250px;
    font-size: 11.5px;
  }

  .biz-card .bc-task {
    padding: 14px;
  }

  .biz-card .bc-task .title {
    font-size: 15px;
    line-height: 1.38;
  }

  .biz-card .showcase-description {
    margin: 8px 0 10px;
    font-size: 13px;
    line-height: 1.45;
    -webkit-line-clamp: 3;
  }

  .biz-card .showcase-meta {
    gap: 6px;
    font-size: 11px;
  }

  .biz-card .showcase-kpis {
    gap: 7px;
    margin-top: 11px;
  }

  .biz-card .showcase-kpi {
    min-height: 62px;
    padding: 9px 5px;
  }

  .biz-card .showcase-kpi strong,
  .biz-card .showcase-kpi:last-child:nth-child(odd) strong {
    font-size: 18px;
  }

  .biz-card .showcase-kpi span {
    font-size: 10px;
    line-height: 1.25;
  }

  .biz-carousel__nav {
    gap: 14px;
    margin-top: 14px;
  }

  .biz-carousel__arrow {
    width: 40px;
    height: 40px;
    font-size: 22px;
  }

  .metrics-band {
    min-height: 210px;
  }

  .floating-metrics .ff .v {
    font-size: 31px;
  }

  .floating-metrics .ff .l {
    font-size: 13px;
  }

  section.band {
    padding: 58px 0;
  }

  section.band > .wrap > h2,
  .contact h2 {
    font-size: clamp(33px, 9vw, 40px);
    line-height: 1.12;
  }

  section.band > .wrap > h2 br,
  .how-intro h2 br,
  .contact h2 br {
    display: initial;
  }

  .how-intro h2,
  .founder-text h2 {
    font-size: clamp(31px, 8.5vw, 36px) !important;
    line-height: 1.15 !important;
    letter-spacing: -.02em;
  }

  .pains-after h3 {
    font-size: 27px;
    line-height: 1.25;
  }

  .pains-after p,
  .how-intro .sub,
  .founder-text p {
    font-size: 16px;
    line-height: 1.55;
  }

  section.band > .wrap > .sub,
  .contact-panel .lead {
    font-size: 17px;
    line-height: 1.55;
  }

  .pain h4,
  .cat h4,
  .wcard h4,
  .split-card h3,
  .safety-item h4,
  .step h4 {
    font-size: 20px;
    line-height: 1.28;
  }

  .pain p,
  .cat p,
  .cat .ex,
  .wcard p,
  .split-card p,
  .safety-item p,
  .step p {
    font-size: 15.5px;
    line-height: 1.55;
  }

  .cat .from {
    font-size: 14.5px;
  }

  .tariff .desc,
  .tariff ul li {
    font-size: 15px;
    line-height: 1.5;
  }

  .tariff .cta,
  .contact-open {
    min-height: 52px;
    font-size: 15.5px;
  }

  .pain,
  .cat,
  .wcard,
  .split-card,
  .safety-item {
    padding: 23px 20px;
  }

  .step {
    padding: 27px 20px 22px 78px;
  }

  .step .num {
    left: 20px;
  }

  .case-card .top {
    padding: 19px 19px 16px;
  }

  .case-card .top .n {
    font-size: 17px;
  }

  .case-card .body {
    padding: 21px 19px 10px;
  }

  .case-card .body h4 {
    font-size: 20px;
    line-height: 1.3;
  }

  .case-card .body p {
    font-size: 15.5px;
    line-height: 1.55;
  }

  .case-card .stats {
    padding: 17px 10px;
  }

  .case-card .stats .v {
    font-size: 21px;
  }

  .case-card .stats .l {
    font-size: 11px;
  }

  .qa .q {
    min-height: 62px;
    padding: 17px 18px;
    font-size: 16px;
  }

  .qa .a {
    padding: 0 18px 18px;
    font-size: 15px;
    line-height: 1.55;
  }

  .ci,
  .social-block {
    padding: 18px;
  }

  footer.site .footer__info-text,
  footer.site .footer__nav a {
    font-size: 15px;
  }
}

@media (max-width: 360px) {
  .logo .name {
    font-size: 14.5px;
    letter-spacing: .1em;
  }

  .hero__title {
    font-size: 36px;
  }

  .hero__lead {
    font-size: 16px;
  }

  .biz-card .showcase-description {
    -webkit-line-clamp: 2;
  }
}
