/* =====================================
   1) BASE / RESET / TOKENS
===================================== */
:root {
  --bg-main: #ffffff;
  --bg-surface: #f5f9ff;
  --bg-soft: #e4f2ff;
  --bg-soft-2: #b6dafa;
  --text-main: #000000;
  --text-dark: #16151e;
  --text-muted: #6d7480;
  --accent: #2c58b6;
  --accent-strong: #24489a;
  --line: #d6deeb;
  --success: #16b66f;
  --danger: #e22b2b;

  --radius-xs: 10px;
  --radius-sm: 16px;
  --radius-md: 24px;
  --radius-lg: 40px;

  --container: 1220px;
  --transition: 240ms ease;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body,
h1,
h2,
h3,
p,
ul,
figure,
fieldset,
legend {
  margin: 0;
}

ul {
  list-style: none;
  padding: 0;
}

img,
video {
  display: block;
  max-width: 100%;
  height: auto;
}

button,
input {
  font: inherit;
  color: inherit;
}

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

.page {
  min-width: 320px;
  background: var(--bg-main);
  color: var(--text-main);
  font-family: "SF Pro Display", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.35;
  overflow-x: hidden;
}

.page.lock-scroll {
  overflow: hidden;
}

main {
  padding-top: 110px;
  background: var(--bg-main);
}

.container {
  width: min(100% - 32px, var(--container));
  margin-inline: auto;
}

.accent {
  color: var(--accent);
}

.button {
  border: 0;
  border-radius: 20px;
  cursor: pointer;
  transition: transform var(--transition), background-color var(--transition), box-shadow var(--transition), opacity var(--transition);
}

.button:focus-visible,
.burger:focus-visible,
.nav__link:focus-visible,
.faq__question:focus-visible,
.popup__input:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

.button--primary {
  background: var(--accent);
  color: #fff;
  font-weight: 600;
  font-size: 20px;
  line-height: 20px;
  padding: 20px 20px;
}

.button--primary:hover {
  background: var(--accent-strong);
  transform: translateY(-2px);
}

.button--primary:active {
  transform: translateY(0);
}

.button--header-cta,
.button--hero-cta,
.button--benefits-cta,
.button--faq-cta,
.button--final-cta,
.button--mobile-menu-cta,
.button--popup-submit {
  background: var(--accent);
  color: #fff;
}

.button--hero-cta {
  font-size: 22px;
  line-height: 26px;
}

.button--benefits-cta {
  width: fit-content;
  padding: 14px 28px;
  font-size: 16px;
  line-height: 20px;
}

.button--faq-cta {
  padding-inline: 32px;
}

.button--final-cta {
  background: #16151e;
}

.button--final-cta:hover {
  background: #0d0d12;
}

.logo {
  display: inline-flex;
  align-items: center;
}

.logo__image {
  width: auto;
  height: 46px;
}

/* =====================================
   2) DESKTOP LAYOUT / COMPONENTS
===================================== */

/* Header */
.header {
  position: fixed;
  inset: 20px 0 auto 0;
  z-index: 40;
  background: transparent;
  border: 0;
  backdrop-filter: none;
  padding: 0;
}

.header__container {
  width: min(100% - 64px, 1280px);
  margin-inline: auto;
  min-height: 90px;
  display: grid;
  grid-template-columns: auto 1fr auto auto;
  align-items: center;
  gap: 0px;
  padding: 0 20px;
  border-radius: 30px;
  background: #699ff179;
  border: 1px solid #699FF1;
  backdrop-filter: blur(9px);
  box-shadow: 0 4px 12px #B6DAFA;
}

.header__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 0;
  font-size: 16px;
  line-height: 20px;
  border-radius: 20px;
  padding: 15px 36px;
  font-weight: 600;
  white-space: nowrap;
  justify-self: end;
}

.nav {
  display: block;
  justify-self: center;
}

.nav__list {
  display: flex;
  align-items: center;
  gap: 60px;
}

.nav__link {
  color: #000;
  font-size: 16px;
  line-height: 20px;
  font-weight: 500;
  opacity: 0.96;
  transition: opacity var(--transition), color var(--transition);
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

.nav__link:hover {
  opacity: 1;
  color: var(--accent);
}

.header .logo__image {
  height: 55px;
}

.burger {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 12px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 4px;
  background: transparent;
  cursor: pointer;
}

.burger__line {
  width: 18px;
  height: 2px;
  border-radius: 6px;
  background: #fff;
  transition: transform var(--transition), opacity var(--transition);
}

.burger.is-open .burger__line:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.burger.is-open .burger__line:nth-child(2) {
  opacity: 0;
}

.burger.is-open .burger__line:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

.header__mobile-menu {
  display: none;
  position: absolute;
  left: 0;
  right: 0;
  top: calc(100% + 10px);
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  pointer-events: none;
  transition: max-height var(--transition), opacity var(--transition);
  background: rgba(20, 21, 24, 0.86);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.header__mobile-menu.is-open {
  max-height: 360px;
  opacity: 1;
  pointer-events: auto;
}

.header__mobile-nav {
  width: min(100% - 32px, var(--container));
  margin: 0 auto 14px;
  padding-top: 10px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.header__mobile-link {
  display: block;
  background: rgba(255, 255, 255, 0.06);
  border-radius: 12px;
  padding: 14px 16px;
  color: #fff;
  font-size: 16px;
  line-height: 20px;
}

/* CTA в header: ДНК-Автора (alt style) */
.header-dna-btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 20px;
  border-radius: 20px;
  margin-right: 20px;
  color: #0f1630;
  text-decoration: none;
  font-weight: 600;
  font-size: 16px;
  line-height: 1;
  letter-spacing: 0.2px;
  white-space: nowrap;

  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.95), rgba(235, 244, 255, 0.92));
  border: 1px solid rgba(44, 88, 182, 0.28);
  box-shadow:
    0 8px 20px rgba(44, 88, 182, 0.22),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);

  transition: transform 0.28s ease, box-shadow 0.28s ease, color 0.28s ease;
  overflow: hidden;
}

.header-dna-btn::before {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(120deg, #2c58b6, #7fa8ff, #2c58b6);
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0.9;
  pointer-events: none;
}

.header-dna-btn::after {
  content: "";
  position: absolute;
  top: -120%;
  left: -30%;
  width: 35%;
  height: 340%;
  transform: rotate(20deg);
  background: linear-gradient(
    90deg,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 0.65) 50%,
    rgba(255, 255, 255, 0) 100%
  );
  animation: dnaShine 3.4s ease-in-out infinite;
  pointer-events: none;
}

.header-dna-btn__dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, #9bffcf 0%, #32d98e 70%);
  box-shadow: 0 0 0 0 rgba(50, 217, 142, 0.55);
  animation: dnaPulse 2s infinite;
}

.header-dna-btn:hover {
  transform: translateY(-1px) scale(1.035);
  color: #1a2f73;
  box-shadow:
    0 12px 28px rgba(44, 88, 182, 0.32),
    0 0 0 1px rgba(127, 168, 255, 0.35),
    inset 0 1px 0 rgba(255, 255, 255, 0.95);
}

.header-dna-btn:active {
  transform: translateY(0) scale(0.99);
}

@keyframes dnaPulse {
  0% { box-shadow: 0 0 0 0 rgba(50, 217, 142, 0.55); }
  70% { box-shadow: 0 0 0 9px rgba(50, 217, 142, 0); }
  100% { box-shadow: 0 0 0 0 rgba(50, 217, 142, 0); }
}

@keyframes dnaShine {
  0% { left: -45%; }
  55% { left: 130%; }
  100% { left: 130%; }
}

@media (max-width: 1024px) {
  .header-dna-btn {
    font-size: 14px;
    padding: 10px 14px;
    gap: 8px;
  }
}

/* Hero */
.hero {
  padding: 90px 0 90px;
}

.hero__container {
  display: grid;
  justify-items: center;
  text-align: center;
  gap: 50px;
}

.hero__title {
  max-width: 900px;
  font-size: 50px;
  line-height: 60px;
  font-weight: 500;
  letter-spacing: -0.03em;
}

.hero__tags {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}

.hero__tag {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  border-radius: 999px;
  padding: 5px 10px 5px 10px;
  background: var(--bg-soft);
  border: 1px solid var(--bg-soft-2);
  box-shadow: 0 5px 12px #B6DAFA;
  opacity: 0;
  transform: translateY(10px) scale(0.98);
  animation: hero-tag-reveal 520ms cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.hero__tag:nth-child(1) {
  animation-delay: 250ms;
}

.hero__tag:nth-child(2) {
  animation-delay: 500ms;
}

.hero__tag:nth-child(3) {
  animation-delay: 750ms;
}

.hero__tag-icon {
  width: 20px;
  height: 20px;
  flex: 0 0 20px;
}

.hero__tag-text {
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.02em;
  font-size: 16px;
  line-height: 20px;
  font-weight: 500;
  white-space: nowrap;
}

@keyframes hero-tag-reveal {
  from {
    opacity: 0;
    transform: translateY(10px) scale(0.98);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes hero-cta-reveal {
  from {
    opacity: 0;
    transform: translateY(22px) scale(0.94);
    filter: blur(3px);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
    filter: blur(0);
  }
}

@keyframes hero-parallax-reveal {
  from {
    opacity: 0;
    transform: translateY(62px) scale(0.96);
    filter: blur(8px);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
    filter: blur(0);
  }
}

.hero__cta {
  min-width: 264px;
  padding-inline: 34px;
  opacity: 1;
}

.js-ready .hero__cta {
  opacity: 0;
  animation: hero-cta-reveal 600ms cubic-bezier(0.22, 1, 0.36, 1) 900ms forwards;
}

.hero__parallax {
  width: min(100%, 1120px);
  position: relative;
  aspect-ratio: 16 / 9;
  border-radius: 48px;
  overflow: visible;
  border: 1px solid #7fb2f6;
  background: linear-gradient(135deg, #92bbf4 0%, #5a95ef 100%);
  box-shadow: 0 16px 40px rgba(44, 88, 182, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.35);
  isolation: isolate;
  transition: box-shadow 280ms ease, transform 320ms cubic-bezier(0.22, 1, 0.36, 1);
  will-change: transform;
}

.js-ready .hero__parallax {
  opacity: 0;
  animation: hero-parallax-reveal 600ms cubic-bezier(0.22, 1, 0.36, 1) 1200ms forwards;
}

.hero__parallax::before {
  content: "";
  position: absolute;
  inset: 12px;
  border-radius: 38px;
  border: 1px solid rgba(214, 232, 255, 0.55);
  background: linear-gradient(145deg, rgba(233, 243, 255, 0.24) 0%, rgba(148, 189, 245, 0.14) 100%);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.2);
  pointer-events: none;
  z-index: 0;
}

.hero__parallax.is-hovered {
  box-shadow: 0 28px 56px rgba(44, 88, 182, 0.28), inset 0 1px 0 rgba(255, 255, 255, 0.45);
}

.hero__parallax-bg {
  position: absolute;
  inset: 32px;
  border-radius: 32px;
  background: linear-gradient(145deg, rgba(197, 224, 255, 0.24) 0%, rgba(123, 174, 244, 0.08) 100%);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.26);
  pointer-events: none;
  z-index: 0;
}

.hero__parallax-layer {
  position: absolute;
  inset: 0;
  will-change: transform;
  transition: transform 260ms ease-out, filter 260ms ease-out;
  transform-origin: center center;
  pointer-events: none;
  z-index: 1;
}

.hero__parallax-layer--back {
  inset: -11% -12% -15%;
  opacity: 0.98;
  filter: drop-shadow(0 36px 58px rgba(17, 46, 95, 0.48));
  z-index: 8;
}

.hero__parallax-layer--front {
  inset: 9% 7% 8%;
  border-radius: 28px;
  overflow: hidden;
  border: 1px solid rgba(215, 233, 255, 0.9);
  box-shadow: 0 40px 72px rgba(16, 43, 84, 0.48), 0 20px 38px rgba(16, 43, 84, 0.3);
  opacity: 1;
  z-index: 4;
}

.hero__parallax-layer--front::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(to right, rgba(240, 248, 255, 0.45), rgba(255, 255, 255, 0) 18%, rgba(255, 255, 255, 0) 82%, rgba(240, 248, 255, 0.45)),
    linear-gradient(to bottom, rgba(240, 248, 255, 0.45), rgba(255, 255, 255, 0) 18%, rgba(255, 255, 255, 0) 82%, rgba(240, 248, 255, 0.45));
  box-shadow: inset 0 0 0 1px rgba(228, 240, 255, 0.82);
  z-index: 1;
}

.hero__parallax-image {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/* Marquee */
.marquee {
  padding: 10px 0 90px;
  background: transparent;
}

.marquee__container {
  display: flex;
  justify-content: center;
}

.marquee__inner {
  width: min(100%, 1120px);
  background: var(--accent);
  border-radius: 46px;
  padding: 50px 0;
  overflow: hidden;
}

.marquee__track {
  --marquee-duration: 30s;
  display: flex;
  align-items: center;
  width: max-content;
  gap: 0;
  animation: ticker var(--marquee-duration) linear infinite;
  will-change: transform;
}

.marquee__group {
  flex: 0 0 auto;
  min-width: max-content;
  display: flex;
  align-items: center;
  gap: 25px;
  padding-right: 32px;
}

.marquee__item {
  flex: 0 0 auto;
  min-width: 84px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.marquee__logo {
  width: auto;
  flex-shrink: 0;
}

.marquee__logo--vc {
  height: 34px;
}

.marquee__logo--zen {
  height: 28px;
}

@keyframes ticker {
  0% {
    transform: translate3d(0, 0, 0);
  }
  100% {
    transform: translate3d(-50%, 0, 0);
  }
}

/* Shared badge */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  width: fit-content;
  max-width: 100%;
  justify-self: center;
  border-radius: 999px;
  font-size: 16px;
  line-height: 20px;
  text-transform: uppercase;
  font-weight: 600;
  letter-spacing: 0.02em;
  padding: 5px 15px 5px 10px;
  box-shadow: 0 4px 4px #8ED4B5;
}

.badge img {
  width: 20px;
  height: 20px;
}

.badge--solution {
  background: #DAF6E1;
  color: #16b66f;
  border: 1px solid #8ED4B5;
  box-shadow: 0 4px 10px rgba(22, 182, 111, 0.28);
}

.solution--on .badge--solution {
  background: #daf6e1;
  color: #16b66f;
  border-color: #8ed4b5;
  box-shadow: 0 4px 10px rgba(22, 182, 111, 0.28);
}

.solution--off .badge--solution {
  background: #ffe5e5;
  color: #d72424;
  border-color: #f2b4b4;
  box-shadow: 0 4px 10px rgba(215, 36, 36, 0.2);
}

.badge--benefits {
  background: var(--bg-soft);
  color: var(--accent);
  border: 1px solid var(--bg-soft-2);
  box-shadow: 0 4px 12px #B6DAFA;
}

.badge--capabilities {
  background: var(--bg-soft);
  color: var(--accent);
  border: 1px solid var(--bg-soft-2);
  box-shadow: 0 4px 12px #B6DAFA;
}

/* Solution */
.solution {
  padding: 40px 0 84px;
}

.solution__container {
  width: min(100%, 1120px);
  margin-inline: auto;
  display: grid;
  gap: 50px;
}

.solution__top {
  width: min(100%, 960px);
  margin-inline: auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 30px;
}

.solution__title {
  max-width: 784px;
  margin-inline: 0;
  text-align: left;
  color: var(--text-main);
  font-size: 50px;
  line-height: 60px;
  font-weight: 500;
  letter-spacing: -0.025em;
}

.solution__switch {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  cursor: pointer;
}

.solution__checkbox {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.solution__track {
  --track-padding: 5px;
  --thumb-size: 50px;
  width: 110px;
  height: 60px;
  border-radius: 999px;
  border: 2px solid #8ED4B5;
  background: #DAF6E1;
  padding: var(--track-padding);
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  transition: background-color var(--transition), border-color var(--transition), box-shadow var(--transition);
}

.solution__thumb {
  width: var(--thumb-size);
  height: var(--thumb-size);
  border-radius: 999px;
  background: #16B66F;
  position: absolute;
  top: 50%;
  left: var(--track-padding);
  transform: translateY(-50%);
  transition: left var(--transition), background-color var(--transition), box-shadow var(--transition);
  box-shadow: 0 4px 10px rgba(22, 182, 111, 0.32);
}

.solution__checkbox:checked + .solution__track .solution__thumb {
  left: calc(100% - var(--track-padding) - var(--thumb-size));
  background: #16B66F;
}

.solution--off .solution__track {
  background: #ffe5e5;
  border-color: #f2b4b4;
  box-shadow: 0 4px 10px rgba(215, 36, 36, 0.14);
}

.solution--off .solution__thumb {
  background: #d72424;
  box-shadow: 0 4px 10px rgba(215, 36, 36, 0.28);
}

.solution__switch-text {
  color: #16b66f;
  font-size: 20px;
  line-height: 24px;
  font-weight: 600;
  transition: color var(--transition);
}

.solution--on .solution__switch-text {
  color: #16b66f;
}

.solution--off .solution__switch-text {
  color: #d72424;
}

.solution__panel {
  width: min(100%, 980px);
  margin-inline: auto;
  border-radius: 30px;
}

.solution__panel[hidden] {
  display: none;
}

.article-card {
  border-radius: 30px;
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: 0 10px 28px rgba(22, 21, 30, 0.08);
  color: var(--text-dark);
  padding: 25px;
}

.article-card--off {
  background: #fff;
  border-color: #f0b9c2;
}

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

.article-card__author {
  display: flex;
  align-items: center;
  gap: 15px;
}

.article-card__avatar {
  width: 50px;
  height: 50px;
  border-radius: 999px;
  object-fit: cover;
}

.article-card__name {
  color: var(--text-dark);
  font-size: 16px;
  line-height: 20px;
  font-weight: 600;
}

.article-card__meta {
  color: #8a909b;
  font-size: 16px;
  line-height: 20px;
  font-weight: 400;
}

.article-card__follow {
  border: 0;
  border-radius: 14px;
  background: var(--accent);
  color: #fff;
  font-size: 16px;
  line-height: 20px;
  padding: 10px 10px;
}

.article-card__title {
  margin-top: 16px;
  color: var(--text-dark);
  font-size: 30px;
  line-height: 36px;
  font-weight: 500;
}

.article-card__desc {
  margin-top: 8px;
  color: #8a909b;
  font-size: 32px;
  line-height: 40px;
}

.article-card__image {
  margin-top: 15px;
  width: 100%;
  max-height: 300px;
  border-radius: 30px;
  object-fit: cover;
}

.article-card__link {
  margin-top: 14px;
  color: var(--accent);
  font-size: 16px;
  line-height: 20px;
}

.article-card__footer {
  margin-top: 16px;
  display: grid;
  gap: 16px;
}

.article-card__reaction-row {
  display: flex;
  align-items: center;
  gap: 8px;
}

.article-card__pill {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  min-height: 33px;
  padding: 0px 10px 0px 10px;
  border-radius: 999px;
  background: #f2f6fc;
}

.article-card__pill-icon {
  width: 16px;
  height: 16px;
}

.article-card__pill-value {
  color: var(--text-dark);
  font-size: 13px;
  line-height: 16px;
  font-weight: 600;
}

.article-card__pill--plus {
  width: 34px;
  justify-content: center;
  padding-inline: 0;
}

.article-card__actions-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 14px;
}

.article-card__actions-left {
  display: flex;
  align-items: center;
  gap: 10px;
}

.article-card__icon-btn {
  appearance: none;
  border: 0;
  background: transparent;
  padding: 0;
  width: 13px;
  height: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: default;
}

.article-card__icon-btn img {
  width: 18px;
  height: 18px;
  opacity: 0.72;
}

.article-card__action-value {
  color: var(--text-dark);
  font-size: 13px;
  line-height: 16px;
  font-weight: 500;
  margin-right: 5px;
}

.article-card__views {
  color: var(--text-dark);
  font-size: 16px;
  line-height: 20px;
  font-weight: 500;
}

/* Insight */
.insight {
  width: min(100% - 32px, 1120px);
  margin: 0 auto;
  border-radius: 42px;
  background: var(--accent);
  padding: 72px 0;
  position: relative;
  overflow: hidden;
}

.insight::before {
  content: "";
  position: absolute;
  inset: -12% -20%;
  pointer-events: none;
  background: linear-gradient(110deg, rgba(255, 255, 255, 0) 30%, rgba(255, 255, 255, 0.22) 48%, rgba(255, 255, 255, 0) 68%);
  transform: translateX(-125%);
  opacity: 0;
  transition: transform 1000ms cubic-bezier(0.22, 1, 0.36, 1), opacity 420ms ease;
}

.insight.insight--animated::before {
  transform: translateX(115%);
  opacity: 1;
}

.insight__container {
  min-height: 160px;
}

.insight__title {
  max-width: 750px;
  margin-inline: auto;
  text-align: center;
  color: #fff;
  font-size: 50px;
  line-height: 60px;
  font-weight: 600;
}

.insight__title-brand {
  display: inline-flex;
  align-items: center;
  vertical-align: middle;
  margin: 0 4px;
}

.insight__title-brand img {
  width: auto;
  height: 52px;
  transform: none;
}

.js-ready [data-logo-drop] {
  opacity: 0;
  transform: translateY(-110px) rotate(-16deg) scale(0.84);
  filter: drop-shadow(0 16px 24px rgba(19, 53, 115, 0.28));
}

.js-ready [data-logo-drop].is-visible {
  opacity: 1;
  filter: drop-shadow(0 8px 14px rgba(19, 53, 115, 0.2));
  animation: insight-logo-drop 980ms cubic-bezier(0.2, 0.9, 0.28, 1.08) 120ms both;
}

@keyframes insight-logo-drop {
  0% {
    transform: translateY(-110px) rotate(-16deg) scale(0.84);
  }
  62% {
    transform: translateY(6px) rotate(-3deg) scale(1.06);
  }
  100% {
    transform: translateY(0) rotate(-6deg) scale(1);
  }
}

/* Benefits */
.benefits {
  padding: 86px 0;
}

.benefits__container {
  width: min(100%, 950px);
  margin-inline: auto;
  display: grid;
  gap: 30px;
}

.benefits__item {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 50px;
  padding: 25px;
}

.benefits__item--reverse .benefits__content {
  order: 2;
}

.benefits__item--reverse .benefits__image {
  order: 1;
}

.benefits__content {
  display: grid;
  gap: 14px;
  width: 400px;
}

.benefits__subtitle {
  color: var(--text-dark);
  font-size: 35px;
  line-height: 42px;
  font-weight: 600;
}

.benefits__text {
  color: #4F7192;
  font-size: 16px;
  line-height: 20px;
  font-weight: 400;
}

.benefits__image {
  width: auto;
  max-width: 79%;
  max-height: 79%;
  border-radius: 20px;
  object-fit: contain;
  box-shadow: 0 4px 12px #00000050;
}

.benefits__media {
  width: 500px;
  height: 350px;
  border-radius: 34px;
  border: 1px solid #bfd9f8;
  background: #e4f2ff;
  display: grid;
  place-items: center;
  padding: 20px;
}

/* Capabilities */
.capabilities {
  padding: 80px 0 88px;
}

.capabilities__container {
  width: min(100%, 1120px);
  margin-inline: auto;
  display: grid;
  gap: 36px;
}

.capabilities__title {
  max-width: 940px;
  margin-inline: auto;
  text-align: center;
  color: var(--text-main);
  font-size: 50px;
  line-height: 60px;
  font-weight: 500;
}

.capabilities__lead {
  max-width: 760px;
  margin: 18px auto 36px;
  text-align: center;
  color: var(--text-muted);
  font-size: 24px;
  line-height: 36px;
}

.word-reveal {
  display: flex;
  flex-wrap: wrap;
  gap: 0.3ch;
}

.word-reveal span {
  display: inline-block;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 380ms ease, transform 380ms ease;
}

.word-reveal.is-visible span {
  opacity: 1;
  transform: translateY(0);
}

.js-ready [data-reveal] {
  opacity: 0;
  transform: translateY(34px);
  transition: opacity 760ms cubic-bezier(0.22, 1, 0.36, 1), transform 760ms cubic-bezier(0.22, 1, 0.36, 1);
  will-change: opacity, transform;
}

.js-ready [data-reveal].is-visible {
  opacity: 1;
  transform: none;
}

.js-ready [data-reveal="hero-cta"] {
  transform: translateY(20px) scale(0.93);
}

.js-ready [data-reveal="hero-parallax"] {
  transform: translateY(54px) scale(0.96);
  transition-duration: 900ms;
}

.js-ready [data-reveal="insight-title"] {
  transform: translateY(34px) scale(0.97);
  filter: blur(4px);
}

.js-ready [data-reveal="insight-title"].is-visible {
  filter: blur(0);
}

.js-ready [data-reveal="badge-pop"] {
  transform: translateY(16px) scale(0.88);
  transition-duration: 620ms;
}

.js-ready [data-reveal="cap-title"] {
  transform: translateY(30px) scale(0.98);
  transition-delay: 220ms;
}

.js-ready [data-reveal="benefit-left"] {
  transform: translate3d(-54px, 14px, 0);
}

.js-ready [data-reveal="benefit-right"] {
  transform: translate3d(54px, 14px, 0);
}

.js-ready [data-reveal="faq-item"] {
  transform: translateY(22px);
}

.faq__item:nth-child(1) {
  transition-delay: 40ms;
}

.faq__item:nth-child(2) {
  transition-delay: 90ms;
}

.faq__item:nth-child(3) {
  transition-delay: 140ms;
}

.faq__item:nth-child(4) {
  transition-delay: 190ms;
}

.js-ready [data-reveal="final-title"] {
  transform: translateY(30px) scale(0.98);
}

.js-ready [data-reveal="final-button"] {
  transform: translateY(20px) scale(0.92);
  transition-duration: 640ms;
}

.js-ready [data-reveal="final-image"] {
  transform: translateY(42px) scale(0.95);
  transition-duration: 920ms;
}

.capabilities__layout {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 18px;
  align-items: stretch;
}

.capabilities__tabs {
  display: grid;
  gap: 10px;
}

.capabilities__tab {
  width: 100%;
  border-radius: 28px;
  border: 1px solid #d8dde7;
  background: #f1f3f6;
  color: #8a8f99;
  text-align: left;
  padding: 18px 20px;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: transform var(--transition), border-color var(--transition), background var(--transition), color var(--transition), box-shadow var(--transition);
}

.capabilities__tab:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(44, 88, 182, 0.1);
}

.capabilities__tab-head {
  display: flex;
  align-items: center;
  gap: 10px;
}

.capabilities__tab-icon {
  width: 20px;
  height: 20px;
  flex: 0 0 20px;
  opacity: 0.5;
}

.capabilities__tab-title {
  display: block;
  color: inherit;
  font-size: 24px;
  line-height: 30px;
  font-weight: 600;
}

.capabilities__tab-description {
  display: block;
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  margin-top: 0;
  transform: translateY(8px);
  color: inherit;
  font-size: 16px;
  line-height: 24px;
  transition: max-height 420ms cubic-bezier(0.22, 1, 0.36, 1), opacity 340ms ease, transform 340ms ease, margin-top 340ms ease;
}

.capabilities__tab.is-active {
  background: var(--bg-soft);
  border-color: var(--bg-soft-2);
  color: var(--text-main);
  box-shadow: 0 14px 30px rgba(44, 88, 182, 0.12);
  padding-top: 14px;
  padding-bottom: 14px;
}

.capabilities__tab.is-active .capabilities__tab-head {
  align-items: flex-start;
  gap: 8px;
}

.capabilities__tab.is-active .capabilities__tab-icon {
  opacity: 1;
}

.capabilities__tab.is-active .capabilities__tab-description {
  max-height: 170px;
  opacity: 1;
  margin-top: 12px;
  transform: translateY(0);
}

.capabilities__preview {
  width: 600px;
  height: 450px;
  border-radius: 34px;
  border: 1px solid #d6e3f7;
  background: #e4f2ff;
  display: grid;
  place-items: center;
  padding: 26px;
  overflow: hidden;
}

.capabilities__preview img {
  width: auto;
  max-width: 90%;
  max-height: 90%;
  object-fit: contain;
  border-radius: 10px;
  box-shadow: 0 4px 12px #00000032;
  transition: opacity 420ms ease, transform 460ms cubic-bezier(0.22, 1, 0.36, 1), filter 420ms ease;
}

.capabilities__preview img.is-switching {
  opacity: 0;
  transform: scale(1.04);
  filter: blur(6px);
}

.capabilities__preview img.is-entering {
  opacity: 0;
  transform: scale(0.985);
  filter: blur(3px);
}

/* FAQ */
.faq {
  padding: 64px 0;
}

.faq__container {
  width: min(100%, 1120px);
  margin-inline: auto;
  background: #16151e;
  border-radius: 46px;
  padding: 42px;
}

.faq__title {
  color: #f4f6fb;
  text-align: center;
  font-size: 50px;
  line-height: 60px;
  font-weight: 500;
}

.faq__list {
  width: min(100%, 980px);
  margin: 30px auto 0;
  display: grid;
  gap: 12px;
}

.faq__item {
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  background: rgba(255, 255, 255, 0.03);
  overflow: hidden;
}

.faq__question {
  width: 100%;
  border: 0;
  background: transparent;
  color: #f5f6fa;
  font-size: 16px;
  line-height: 20px;
  font-weight: 500;
  text-align: left;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 20px 22px;
  cursor: pointer;
}

.faq__question:hover {
  background: rgba(255, 255, 255, 0.03);
}

.faq__arrow {
  width: 16px;
  height: 16px;
  border-right: 3px solid #fff;
  border-bottom: 3px solid #fff;
  transform: rotate(45deg);
  transition: transform var(--transition);
  flex: 0 0 auto;
  margin-right: 4px;
}

.faq__item.is-open .faq__arrow {
  transform: rotate(-135deg);
}

.faq__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 320ms ease;
  color: #b6bac4;
  font-size: 16px;
  line-height: 20px;
  font-weight: 400;
  padding: 0 22px;
}

.faq__answer p {
  padding-bottom: 24px;
}

.faq__cta {
  margin-top: 42px;
  text-align: center;
  display: grid;
  justify-items: center;
  gap: 22px;
}

.faq__cta-text {
  color: #f2f5fb;
  font-size: 35px;
  line-height: 53px;
  font-weight: 500;
}

/* Final CTA */
.final-cta {
  padding: 50px 0 0;
}

.final-cta__container {
  width: min(100%, 1120px);
  margin-inline: auto;
  background: var(--accent);
  border-radius: 46px 46px 0 0;
  padding: 40px 34px 0;
  text-align: center;
  display: grid;
  justify-items: center;
  gap: 24px;
  overflow: hidden;
}

.final-cta__title {
  max-width: 920px;
  color: #f5f8ff;
  font-size: 50px;
  line-height: 60px;
  font-weight: 500;
}

.final-cta__logo {
  display: inline-flex;
  vertical-align: middle;
  margin-inline: 4px;
}

.final-cta__logo-image {
  width: auto;
  height: 62px;
}

.final-cta__image-wrap {
  width: min(100%, 980px);
  margin-bottom: -120px;
}

.final-cta__image {
  width: 100%;
  border-radius: 26px;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

/* Footer */
.footer {
  margin-top: -40px;
  background: #16151e;
  padding: 120px 0 34px;
  position: relative;
  z-index: 2;
}

.footer__container {
  width: min(100%, 1120px);
  margin-inline: auto;
  display: grid;
  justify-items: center;
  gap: 20px;
}

.footer__nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 24px;
}

.footer__nav a {
  color: #c7cedb;
  font-size: 20px;
  line-height: 28px;
  transition: color var(--transition);
}

.footer__nav a:hover {
  color: #fff;
}

.footer__meta {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.footer__telegram {
  width: 42px;
  height: 42px;
  border-radius: 999px;
  border: 1px solid rgba(182, 218, 250, 0.45);
  background: rgba(44, 88, 182, 0.2);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: transform var(--transition), background-color var(--transition), border-color var(--transition);
}

.footer__telegram:hover {
  transform: translateY(-1px);
  background: rgba(44, 88, 182, 0.35);
  border-color: rgba(182, 218, 250, 0.75);
}

.footer__telegram svg {
  width: 20px;
  height: 20px;
  fill: #dce9ff;
}

.footer__email {
  border: 1px solid rgba(182, 218, 250, 0.45);
  border-radius: 999px;
  background: transparent;
  color: #c7cedb;
  min-height: 42px;
  padding: 0 16px;
  font-size: 16px;
  line-height: 20px;
  cursor: pointer;
  transition: transform var(--transition), color var(--transition), border-color var(--transition), background-color var(--transition);
}

.footer__email:hover {
  transform: translateY(-1px);
  color: #ffffff;
  border-color: rgba(182, 218, 250, 0.8);
  background: rgba(255, 255, 255, 0.04);
}

.footer__email.is-copied {
  color: #8fd6ae;
  border-color: rgba(143, 214, 174, 0.8);
  background: rgba(143, 214, 174, 0.08);
}

.footer__copy {
  color: #97a0b1;
  font-size: 16px;
  line-height: 22px;
}

/* Legal pages */
.legal-page {
  background: var(--bg-main);
}

.header--legal {
  position: sticky;
  top: 0;
  inset: 0 0 auto 0;
  z-index: 30;
  padding: 16px 0;
  background: rgba(255, 255, 255, 0.86);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid #d6deeb;
}

.header__container--legal {
  width: min(100% - 32px, 1120px);
  min-height: 74px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 0 16px;
  border-radius: 22px;
  background: #699ff179;
  border: 1px solid #699ff1;
  backdrop-filter: blur(9px);
  box-shadow: 0 4px 12px #b6dafa;
}

.legal-header__back {
  padding: 12px 20px;
  font-size: 15px;
  line-height: 20px;
  border-radius: 14px;
}

.legal-main {
  padding: 38px 0 80px;
}

.legal-card {
  width: min(100% - 32px, 1120px);
  margin: 0 auto;
  background: #f8fbff;
  border: 1px solid #d6deeb;
  border-radius: 28px;
  padding: 30px;
}

.legal-title {
  color: var(--text-dark);
  font-size: 44px;
  line-height: 52px;
  font-weight: 600;
}

.legal-updated {
  margin-top: 10px;
  color: #657185;
  font-size: 15px;
  line-height: 20px;
}

.legal-content {
  margin-top: 28px;
  display: grid;
  gap: 20px;
}

.legal-content h2 {
  color: var(--text-dark);
  font-size: 26px;
  line-height: 32px;
  font-weight: 600;
}

.legal-content p {
  color: #2d3d57;
  font-size: 18px;
  line-height: 28px;
}

.legal-email {
  color: var(--accent);
  font-weight: 600;
}

.footer--legal {
  margin-top: 0;
  padding-top: 56px;
}

/* Popup */
.popup {
  position: fixed;
  inset: 0;
  z-index: 120;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px 16px;
  overflow-x: hidden;
  pointer-events: none;
  opacity: 0;
  transition: opacity var(--transition);
}

.popup.is-open {
  pointer-events: auto;
  opacity: 1;
}

.popup__overlay {
  position: absolute;
  inset: 0;
  background: rgba(8, 11, 20, 0.62);
  backdrop-filter: blur(2px);
}

.popup__dialog {
  position: relative;
  width: 100%;
  max-width: 500px;
  margin: 0 auto;
  border-radius: 26px;
  background: #f8fbff;
  border: 1px solid #b6dafa;
  color: #16151e;
  padding: 26px;
  transform: translateY(16px) scale(0.98);
  transition: transform var(--transition);
}

.popup.is-open .popup__dialog {
  transform: translateY(0) scale(1);
}

.popup__close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 39px;
  height: 39px;
  border: 0;
  border-radius: 999px;
  background: #ddebff;
  cursor: pointer;
}

.popup__close span {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 18px;
  height: 2px;
  border-radius: 4px;
  background: #2c58b6;
}

.popup__close span:first-child {
  transform: translate(-50%, -50%) rotate(45deg);
}

.popup__close span:last-child {
  transform: translate(-50%, -50%) rotate(-45deg);
}

.popup__form {
  display: grid;
  gap: 12px;
  min-width: 0;
  max-width: 100%;
}

.popup__title {
  text-align: center;
  font-size: 30px;
  line-height: 36px;
  font-weight: 500;
  margin-bottom: 8px;
}

.popup__label {
  color: #2f476d;
  font-size: 16px;
  line-height: 20px;
  font-weight: 500;
}

.popup__label--trap,
.popup__input--trap {
  position: absolute !important;
  left: -9999px !important;
  width: 1px !important;
  height: 1px !important;
  opacity: 0 !important;
  pointer-events: none !important;
}

.popup__input {
  width: 100%;
  max-width: 100%;
  min-height: 52px;
  border-radius: 12px;
  border: 1px solid #b6dafa;
  background: #fff;
  color: #16151e;
  padding: 0 16px;
  font-size: 16px;
  line-height: 20px;
}

.popup__input.is-invalid {
  border-color: #e36565;
}

.popup__platforms {
  border: 0;
  padding: 0;
  margin: 0;
  min-inline-size: 0;
  max-width: 100%;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.popup__legend {
  grid-column: 1 / -1;
  color: #2f476d;
  font-size: 16px;
  line-height: 20px;
  margin-bottom: 2px;
  font-weight: 500;
}

.popup__platform-option {
  display: block;
  min-width: 0;
}

.popup__platform-input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.popup__platform-ui {
  width: 100%;
  max-width: 100%;
  min-height: 52px;
  border-radius: 12px;
  border: 1px solid #b6dafa;
  background: #fff;
  display: grid;
  place-items: center;
  padding: 10px;
  transition: color var(--transition), transform var(--transition);
}

.popup__platform-ui img {
  max-height: 30px;
  width: auto;
  filter: invert(1);
}

.popup__platform-input:checked + .popup__platform-ui {
  background-color: #2c58b6;
}

.popup__platform-option:hover .popup__platform-ui {
  transform: translateY(-1px);
}

.popup__platforms.is-invalid .popup__platform-ui {
  border-color: #e36565;
}

.popup__submit {
  margin-top: 4px;
  width: 100%;
  max-width: 100%;
  min-height: 56px;
}

.popup__status {
  min-height: 28px;
  font-size: 14px;
  line-height: 18px;
}

.popup__status--success {
  color: #56d090;
}

.popup__status--error {
  color: #f09d9d;
}

/* =====================================
   3) MEDIA QUERIES / ADAPTIVE
===================================== */

@media (max-width: 1279px) {
  .hero__title {
    font-size: clamp(52px, 6vw, 73px);
    line-height: 1.1;
  }

  .solution__title,
  .capabilities__title,
  .faq__title,
  .faq__cta-text,
  .final-cta__title {
    font-size: clamp(44px, 5.3vw, 72px);
    line-height: 1.08;
  }

  .article-card__name {
    font-size: clamp(26px, 3.7vw, 45px);
    line-height: 1.16;
  }

  .article-card__title {
    font-size: clamp(34px, 4.7vw, 64px);
    line-height: 1.14;
  }

  .article-card__desc,
  .benefits__text,
  .capabilities__tab-description {
    font-size: clamp(18px, 2.3vw, 30px);
    line-height: 1.38;
  }

  .benefits__subtitle,
  .capabilities__tab-title,
  .popup__title {
    font-size: clamp(30px, 3.8vw, 56px);
    line-height: 1.16;
  }
}

@media (max-width: 1023px) {
  main {
    padding-top: 96px;
  }

  .header {
    inset: 0 0 auto 0;
    padding: 10px 0;
  }

  .header__container {
    width: min(100% - 24px, 1280px);
    min-height: 64px;
    grid-template-columns: auto 1fr auto auto;
    gap: 0;
    padding: 0 12px;
    border-radius: 20px;
    background: #699ff179;
    border: 1px solid #699ff1;
    backdrop-filter: blur(9px);
    box-shadow: 0 4px 12px #b6dafa;
  }

  .header__cta {
    font-size: 16px;
    line-height: 20px;
    border-radius: 20px;
    padding: 12px 16px;
  }

  .header .logo__image {
    height: 36px;
  }

  .container {
    width: min(100% - 24px, var(--container));
  }

  .nav {
    display: none;
  }

  .burger {
    display: inline-flex;
  }

  .header__mobile-menu {
    display: block;
  }

  .hero {
    padding: 36px 0 22px;
  }

  .hero__container {
    gap: 26px;
  }

  .hero__title {
    font-size: clamp(42px, 8vw, 58px);
    line-height: 1.08;
  }

  .hero__tag-text {
    font-size: 14px;
    line-height: 18px;
  }

  .hero__parallax {
    border-radius: 28px;
  }

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

  .marquee {
    padding-bottom: 44px;
  }

  .marquee__inner {
    border-radius: 26px;
  }

  .solution {
    padding-top: 20px;
  }

  .solution__top {
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
    gap: 16px;
  }

  .solution__title {
    text-align: center;
    font-size: clamp(44px, 7vw, 62px);
    line-height: 1.08;
  }

  .solution__switch-text {
    font-size: 24px;
    line-height: 30px;
  }

  .solution__track {
    --track-padding: 4px;
    --thumb-size: 40px;
    width: 118px;
    height: 56px;
  }

  .article-card {
    padding: 16px;
  }

  .article-card__name {
    font-size: 28px;
    line-height: 34px;
  }

  .article-card__meta {
    font-size: 18px;
    line-height: 24px;
  }

  .article-card__follow {
    font-size: 22px;
    line-height: 28px;
  }

  .article-card__title {
    font-size: 38px;
    line-height: 46px;
  }

  .article-card__desc,
  .article-card__link {
    font-size: 22px;
    line-height: 30px;
  }

  .article-card__pill-value,
  .article-card__action-value {
    font-size: 22px;
    line-height: 28px;
  }

  .article-card__views {
    font-size: 34px;
    line-height: 40px;
  }

  .insight {
    width: min(100% - 24px, 1120px);
    border-radius: 28px;
    padding: 46px 0;
  }

  .insight__title {
    font-size: clamp(36px, 6.4vw, 52px);
    line-height: 1.1;
  }

  .benefits {
    padding: 62px 0;
  }

  .benefits__item {
    grid-template-columns: 1fr;
    border-radius: 24px;
    padding: 18px;
  }

  .benefits__item--reverse .benefits__content,
  .benefits__item--reverse .benefits__image {
    order: initial;
  }

  .benefits__subtitle {
    font-size: clamp(30px, 6vw, 44px);
    line-height: 1.15;
  }

  .benefits__text {
    font-size: clamp(18px, 3vw, 24px);
    line-height: 1.4;
  }

  .capabilities {
    padding: 60px 0 64px;
  }

  .capabilities__container {
    gap: 26px;
  }

  .capabilities__title {
    font-size: clamp(40px, 6.5vw, 56px);
    line-height: 1.1;
  }

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

  .capabilities__tab-title {
    font-size: clamp(28px, 4.5vw, 42px);
    line-height: 1.15;
  }

  .capabilities__tab-description {
    font-size: clamp(18px, 3vw, 24px);
    line-height: 1.4;
  }

  .capabilities__preview {
    width: 100%;
    max-width: 100%;
    min-height: 420px;
    max-height: 420px;
    border-radius: 22px;
  }

  .faq {
    padding: 48px 0;
  }

  .faq__container {
    border-radius: 28px;
    padding: 26px;
  }

  .faq__title,
  .faq__cta-text,
  .final-cta__title {
    font-size: clamp(40px, 6.4vw, 54px);
    line-height: 1.08;
  }

  .faq__question {
    font-size: 22px;
    line-height: 28px;
  }

  .faq__answer {
    font-size: 18px;
    line-height: 28px;
  }

  .final-cta {
    padding-top: 38px;
  }

  .final-cta__container {
    border-radius: 28px 28px 0 0;
    padding: 28px 20px 0;
  }

  .final-cta__logo-image {
    height: 48px;
  }

  .final-cta__image-wrap {
    margin-bottom: -8px;
  }

  .footer {
    padding-top: 90px;
  }

  .footer__meta {
    gap: 10px;
  }

  .footer__telegram {
    width: 38px;
    height: 38px;
  }

  .footer__telegram svg {
    width: 18px;
    height: 18px;
  }

  .footer__email {
    min-height: 38px;
    font-size: 14px;
    line-height: 18px;
    padding: 0 12px;
  }

  .footer__nav a {
    font-size: 18px;
    line-height: 24px;
  }

  .legal-main {
    padding: 26px 0 54px;
  }

  .legal-card {
    width: min(100% - 24px, 1120px);
    border-radius: 20px;
    padding: 22px;
  }

  .legal-title {
    font-size: clamp(30px, 6.4vw, 40px);
    line-height: 1.14;
  }

  .legal-content h2 {
    font-size: 23px;
    line-height: 30px;
  }

  .legal-content p {
    font-size: 16px;
    line-height: 24px;
  }

  .popup__dialog {
    width: min(100%, 720px);
    border-radius: 20px;
    padding: 20px;
  }

  .popup__title {
    font-size: clamp(30px, 5vw, 42px);
    line-height: 1.14;
  }

  .popup__label,
  .popup__legend,
  .popup__input,
  .popup__status {
    font-size: 18px;
    line-height: 24px;
  }

  .popup__input,
  .popup__platform-ui,
  .popup__submit {
    min-height: 52px;
  }
}

@media (max-width: 767px) {
  main {
    padding-top: 82px;
  }

  .container {
    width: min(100% - 16px, var(--container));
  }

  .header {
    position: fixed;
    top: 10px;
    left: 50%;
    right: auto;
    width: min(calc(100vw - 16px), var(--container));
    max-width: min(calc(100vw - 16px), var(--container));
    padding: 0;
    transform: translateX(-50%);
  }

  .header__container {
    width: 100%;
    max-width: none;
    margin: 0;
    min-height: 54px;
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 0 10px;
    border-radius: 18px;
    background: #699ff179;
    border: 1px solid #699ff1;
    backdrop-filter: blur(9px);
    box-shadow: 0 4px 12px #b6dafa;
  }

  .logo__image {
    height: 32px;
  }

  .header__cta {
    font-size: 11px;
    line-height: 14px;
    padding: 8px 10px;
    border-radius: 14px;
    flex: 0 1 44vw;
    max-width: 44vw;
    min-width: 0;
    margin-left: auto;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .burger {
    display: none !important;
  }

  .header__mobile-menu {
    display: none !important;
  }

  .hero {
    padding: 28px 0 18px;
  }

  .hero__title {
    font-size: clamp(32px, 10vw, 44px);
    line-height: 1.08;
  }

  .hero__tags {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    justify-content: center;
    width: 90%;
    gap: 10px;
    overflow-x: clip;
  }

  .hero__tag {
    width: 100%;
    justify-content: center;
    min-width: 0;
    max-width: 100%;
    padding: 5px 8px;
    overflow: hidden;
  }

  .hero__tag:nth-child(3) {
    grid-column: 1 / -1;
    justify-self: center;
    width: min(100%, 200px);
    max-width: 100%;
  }

  .hero__tag-text {
    font-size: 10px;
    line-height: 14px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .hero__cta,
  .button--primary {
    font-size: 16px;
    line-height: 20px;
    padding: 14px 20px;
  }

  .header__cta {
    font-size: 11px;
    line-height: 14px;
    padding: 8px 10px;
  }

  .hero__cta {
    width: min(100%, 250px);
  }

  .hero__parallax {
    aspect-ratio: 4 / 3;
    border-radius: 18px;
    overflow: hidden;
    width: 100%;
    max-width: 100%;
  }

  .hero__parallax-layer--back {
    inset: 4% 2% 8%;
    filter: none;
  }

  .hero__parallax-layer--front {
    inset: 14% 4% 16%;
    border-radius: 12px;
  }

  .hero__parallax-caption {
    bottom: 10px;
    width: 96%;
    gap: 6px;
    grid-template-columns: 1fr;
  }

  .hero__metric {
    border-radius: 10px;
    padding: 8px 10px;
  }

  .hero__metric b {
    font-size: 16px;
    line-height: 20px;
  }

  .hero__metric small {
    font-size: 11px;
    line-height: 14px;
  }

  .marquee {
    padding-bottom: 34px;
  }

  .marquee__inner {
    border-radius: 18px;
    padding: 12px 0;
  }

  .marquee__group {
    gap: 18px;
    padding-right: 18px;
  }

  .marquee__item {
    min-width: 58px;
  }

  .marquee__logo--vc {
    height: 22px;
  }

  .marquee__logo--zen {
    height: 18px;
  }

  .solution {
    padding: 14px 0 56px;
  }

  .badge {
    font-size: 13px;
    line-height: 17px;
    padding: 4px 10px 4px 6px;
  }

  .badge img {
    width: 20px;
    height: 20px;
  }

  .solution__title {
    font-size: clamp(34px, 9vw, 44px);
    line-height: 1.08;
  }

  .solution__switch-text {
    font-size: 17px;
    line-height: 22px;
  }

  .solution__track {
    --track-padding: 4px;
    --thumb-size: 36px;
    width: 98px;
    height: 48px;
  }

  .article-card {
    border-radius: 16px;
    padding: 12px;
  }

  .article-card__avatar {
    width: 40px;
    height: 40px;
  }

  .article-card__name {
    font-size: 16px;
    line-height: 20px;
  }

  .article-card__meta {
    font-size: 12px;
    line-height: 16px;
  }

  .article-card__follow {
    font-size: 12px;
    line-height: 16px;
    border-radius: 10px;
    padding: 10px 12px;
  }

  .article-card__title {
    font-size: 23px;
    line-height: 28px;
  }

  .article-card__desc,
  .article-card__link {
    font-size: 16px;
    line-height: 22px;
  }

  .article-card__pill {
    min-height: 28px;
    padding: 5px 10px;
  }

  .article-card__pill-icon {
    width: 14px;
    height: 14px;
  }

  .article-card__pill-value,
  .article-card__action-value {
    font-size: 14px;
    line-height: 18px;
  }

  .article-card__views {
    font-size: 30px;
    line-height: 34px;
  }

  .insight {
    width: min(100% - 16px, 1120px);
    border-radius: 20px;
    padding: 30px 0;
  }

  .insight__title {
    font-size: clamp(28px, 8vw, 36px);
    line-height: 1.1;
  }

  .insight__title-brand img {
    height: 36px;
  }

  .benefits,
  .capabilities {
    padding: 48px 0;
  }

  .benefits__container,
  .capabilities__container {
    gap: 18px;
  }

  .benefits__item {
    border-radius: 18px;
    padding: 12px;
    gap: 12px;
    display: flex;
    flex-direction: column;
    align-items: stretch;
  }

  .benefits__content {
    order: 2;
    width: 100%;
    gap: 10px;
  }

  .benefits__item--reverse .benefits__content {
    order: 2;
  }

  .benefits__media {
    order: 1;
    width: 100%;
    min-height: 220px;
    border-radius: 16px;
    padding: 12px;
    margin-bottom: 2px;
  }

  .benefits__image {
    max-width: 88%;
    max-height: 88%;
  }

  .benefits__subtitle {
    font-size: 26px;
    line-height: 30px;
  }

  .benefits__text {
    font-size: 16px;
    line-height: 24px;
  }

  .benefits__image {
    border-radius: 14px;
  }

  .benefits__media {
    min-height: 260px;
    border-radius: 18px;
    padding: 10px;
  }

  .capabilities__title {
    font-size: clamp(32px, 9vw, 42px);
    line-height: 1.1;
  }

  .capabilities__tab {
    border-radius: 18px;
    padding: 14px 14px;
  }

  .capabilities__tab-title {
    font-size: 23px;
    line-height: 28px;
  }

  .capabilities__tab-description {
    font-size: 16px;
    line-height: 24px;
  }

  .capabilities__preview {
    width: 100%;
    max-width: 100%;
    min-height: 280px;
    max-height: 280px;
    border-radius: 16px;
    padding: 10px;
  }

  .faq {
    padding: 38px 0;
  }

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

  .faq__title,
  .faq__cta-text,
  .final-cta__title {
    font-size: clamp(31px, 9vw, 40px);
    line-height: 1.1;
  }

  .faq__list {
    margin-top: 16px;
    gap: 8px;
  }

  .faq__item {
    border-radius: 12px;
  }

  .faq__question {
    font-size: 16px;
    line-height: 22px;
    padding: 14px;
  }

  .faq__arrow {
    width: 12px;
    height: 12px;
    border-width: 2px;
  }

  .faq__answer {
    font-size: 14px;
    line-height: 22px;
    padding: 0 14px;
  }

  .faq__answer p {
    padding-bottom: 14px;
  }

  .faq__cta {
    margin-top: 24px;
    gap: 14px;
  }

  .final-cta {
    padding-top: 26px;
  }

  .final-cta__container {
    border-radius: 20px 20px 0 0;
    padding: 20px 14px 0;
    gap: 14px;
  }

  .final-cta__logo-image {
    height: 34px;
  }

  .final-cta__image-wrap {
    border-radius: 14px;
    margin-bottom: -2px;
  }

  .final-cta__image {
    border-radius: 14px;
  }

  .footer {
    margin-top: -8px;
    padding: 72px 0 24px;
  }

  .footer__container {
    gap: 12px;
  }

  .footer__nav {
    gap: 8px 12px;
    text-align: center;
  }

  .footer__nav a {
    font-size: 13px;
    line-height: 18px;
  }

  .footer__copy {
    font-size: 12px;
    line-height: 16px;
  }

  .footer__meta {
    gap: 8px;
  }

  .footer__telegram {
    width: 34px;
    height: 34px;
  }

  .footer__telegram svg {
    width: 16px;
    height: 16px;
  }

  .footer__email {
    min-height: 34px;
    font-size: 12px;
    line-height: 16px;
    padding: 0 10px;
  }

  .header--legal {
    padding: 10px 0;
  }

  .header__container--legal {
    width: min(100% - 16px, 1120px);
    min-height: 54px;
    padding: 0 10px;
    border-radius: 18px;
  }

  .header--legal .logo__image {
    height: 36px;
  }

  .legal-header__back {
    padding: 10px 14px;
    font-size: 13px;
    line-height: 16px;
    border-radius: 12px;
  }

  .legal-main {
    padding: 16px 0 34px;
  }

  .legal-card {
    width: min(100% - 16px, 1120px);
    border-radius: 16px;
    padding: 14px;
  }

  .legal-title {
    font-size: clamp(24px, 7vw, 32px);
    line-height: 1.16;
  }

  .legal-updated {
    margin-top: 8px;
    font-size: 13px;
    line-height: 17px;
  }

  .legal-content {
    margin-top: 14px;
    gap: 14px;
  }

  .legal-content h2 {
    font-size: 18px;
    line-height: 24px;
  }

  .legal-content p {
    font-size: 14px;
    line-height: 22px;
  }

  .popup {
    padding: 12px;
    align-items: center;
    justify-content: center;
    overflow-x: hidden;
  }

  .popup__dialog {
    width: min(360px, calc(100% - 24px));
    max-width: min(360px, calc(100% - 24px));
    min-width: 0;
    max-height: calc(100dvh - 24px);
    border-radius: 16px;
    padding: 12px;
    overflow: hidden;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }

  .popup__close {
    top: 6px;
    right: 6px;
    width: 28px;
    height: 28px;
  }

  .popup__close span {
    width: 12px;
  }

  .popup__title {
    font-size: 18px;
    line-height: 24px;
    margin-bottom: 2px;
    padding: 0 28px;
  }

  .popup__label,
  .popup__legend,
  .popup__status,
  .popup__input {
    font-size: 12px;
    line-height: 16px;
  }

  .popup__input:focus-visible {
    outline: none;
    box-shadow: 0 0 0 2px #2c58b6 inset;
  }

  .popup__form,
  .popup__form > * {
    min-width: 0;
    max-width: 100%;
  }

  .popup__input,
  .popup__platform-ui,
  .popup__submit {
    min-height: 42px;
    border-radius: 12px;
  }

  .popup__submit {
    width: 100%;
    max-width: 100%;
    white-space: normal;
    font-size: 14px;
    line-height: 18px;
    padding: 12px 16px;
  }

  .popup__platform-ui img {
    max-width: 64px;
    max-height: 18px;
  }

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

  .popup__platform-ui img {
    max-height: 20px;
  }
}

@media (max-width: 430px) {
  main {
    padding-top: 78px;
  }

  .header {
    top: 8px;
    width: calc(100vw - 12px);
    max-width: calc(100vw - 12px);
    padding: 0;
  }

  .header__container {
    width: 100%;
    max-width: none;
    min-height: 50px;
    gap: 8px;
    padding: 0 8px;
    border-radius: 16px;
  }

  .logo__image {
    height: 25px;
  }

  .header__cta {
    flex: 0 1 41vw;
    max-width: 35vw;
    font-size: 13px;
    line-height: 16px;
    font-weight: 500;
    padding: 10px 0px;
    border-radius: 12px;
  }

  .popup {
    padding: 8px 0;
  }

  .popup__dialog {
    width: min(340px, calc(100% - 40px)) !important;
    max-width: min(340px, calc(100% - 40px)) !important;
    max-height: calc(100dvh - 16px);
    padding: 10px;
    border-radius: 14px;
  }

  .popup__close {
    top: 8px;
    right: 8px;
    width: 24px;
    height: 24px;
  }

  .popup__close span {
    width: 10px;
  }

  .popup__title {
    font-size: 17px;
    line-height: 22px;
    padding: 0 30px;
  }

  .popup__form {
    gap: 10px;
  }

  .popup__label,
  .popup__legend,
  .popup__status {
    font-size: 11px;
    line-height: 14px;
  }

  .popup__input,
  .popup__platform-ui,
  .popup__submit {
    min-height: 40px;
    border-radius: 10px;
  }

  .popup__input {
    padding: 0 12px;
    font-size: 16px;
    line-height: 20px;
  }

  .popup__platform-ui {
    padding: 8px;
  }

  .popup__platform-ui img {
    max-width: 56px;
    max-height: 16px;
  }

  .popup__submit {
    font-size: 13px;
    line-height: 16px;
    padding: 10px 12px;
  }
}

@media (hover: none) {
  .button--primary:hover,
  .capabilities__tab:hover,
  .faq__question:hover {
    transform: none;
    background: inherit;
  }
}

/* =====================================
   VC REPORT PAGES
===================================== */
.report-page {
  min-width: 320px;
  background: var(--bg-main);
  color: var(--text-main);
  font-family: "SF Pro Display", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.35;
  overflow-x: hidden;
}

.report-page .container {
  width: min(100% - 64px, var(--container));
  margin-inline: auto;
}

.report-header {
  position: fixed;
  inset: 20px 0 auto 0;
  z-index: 40;
  background: transparent;
  border: 0;
  padding: 0;
}

.report-header__container {
  width: min(100% - 64px, 1280px);
  min-height: 90px;
  margin-inline: auto;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 0;
  padding: 0 20px;
  border-radius: 30px;
  background: #699ff179;
  border: 1px solid #699ff1;
  backdrop-filter: blur(9px);
  box-shadow: 0 4px 12px #b6dafa;
}

.report-logo {
  display: inline-flex;
  align-items: center;
}

.report-logo img {
  width: auto;
  height: 55px;
}

.report-nav {
  justify-self: center;
  display: flex;
  align-items: center;
  gap: 60px;
}

.report-nav a {
  color: #000;
  font-size: 16px;
  line-height: 20px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  opacity: 0.96;
  transition: opacity var(--transition), color var(--transition);
}

.report-nav a:hover {
  opacity: 1;
  color: var(--accent);
}

.report-header__cta {
  justify-self: end;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 0;
  padding: 15px 36px;
  border-radius: 20px;
  background: var(--accent);
  color: #fff;
  font-size: 16px;
  line-height: 20px;
  font-weight: 600;
  white-space: nowrap;
  transition: transform var(--transition), background-color var(--transition), box-shadow var(--transition), opacity var(--transition);
}

.report-header__cta:hover {
  background: var(--accent-strong);
  transform: translateY(-2px);
}

.report-main {
  padding: 142px 0 0;
  background: var(--bg-main);
}

.report-hero {
  display: grid;
  justify-items: center;
  gap: 28px;
  text-align: center;
}

.report-title {
  max-width: 840px;
  color: var(--text-dark);
  font-size: clamp(38px, 4.6vw, 58px);
  line-height: 1.06;
  font-weight: 500;
  letter-spacing: 0;
}

.report-chips {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}

.report-chips li,
.report-pill {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  border-radius: 999px;
  padding: 5px 10px;
  background: var(--bg-soft);
  border: 1px solid var(--bg-soft-2);
  box-shadow: 0 5px 12px #b6dafa;
  color: var(--accent);
  font-size: 16px;
  line-height: 20px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

.report-chips li {
  opacity: 0;
  transform: translateY(10px) scale(0.98);
  animation: hero-tag-reveal 520ms cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.report-chips li:nth-child(1) {
  animation-delay: 250ms;
}

.report-chips li:nth-child(2) {
  animation-delay: 500ms;
}

.report-chips li:nth-child(3) {
  animation-delay: 750ms;
}

.report-chips img {
  width: 20px;
  height: 20px;
  flex: 0 0 20px;
}

.report-pill {
  width: fit-content;
  padding-inline: 14px;
}

.request-layout {
  margin-top: 64px;
  display: grid;
  grid-template-columns: minmax(280px, 390px) minmax(360px, 560px);
  justify-content: center;
  align-items: stretch;
  gap: 34px;
}

.request-steps {
  display: grid;
  gap: 26px;
}

.request-step {
  min-height: 126px;
  padding: 21px 22px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: #f0f7ff;
  box-shadow: 0 7px 22px rgba(36, 89, 198, 0.08);
}

.request-step h2 {
  color: var(--accent);
  font-size: 25px;
  line-height: 1.1;
  font-weight: 700;
}

.request-step p {
  margin-top: 16px;
  color: #1f2e48;
  font-size: 16px;
  line-height: 1.35;
  font-weight: 500;
}

.request-card {
  min-height: 418px;
  padding: 76px min(12%, 96px) 64px;
  border-radius: 26px;
  background: var(--accent);
  color: #fff;
  display: grid;
  align-content: start;
  gap: 22px;
}

.request-card h2 {
  text-align: center;
  font-size: clamp(30px, 3.5vw, 42px);
  line-height: 1.1;
  font-weight: 600;
}

.request-form {
  display: grid;
  gap: 20px;
}

.report-field {
  display: grid;
  gap: 8px;
}

.report-field span {
  color: inherit;
  font-size: 14px;
  font-weight: 700;
}

.request-card .report-field span {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
}

.report-field input {
  width: 100%;
  min-height: 54px;
  border: 2px solid transparent;
  border-radius: 18px;
  background: var(--bg-soft);
  color: var(--text-dark);
  padding: 0 22px;
  font-size: 16px;
  font-weight: 500;
  outline: none;
  transition: border-color var(--transition), box-shadow var(--transition), background-color var(--transition);
}

.report-field input::placeholder {
  color: #626f81;
}

.report-field input:focus-visible {
  border-color: #0a111f;
  box-shadow: 0 0 0 4px rgba(255, 255, 255, 0.28);
  background: #fff;
}

.report-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  border: 0;
  border-radius: 14px;
  padding: 0 22px;
  background: var(--accent);
  color: #fff;
  cursor: pointer;
  font-size: 16px;
  line-height: 20px;
  font-weight: 600;
  text-align: center;
  transition: transform var(--transition), background-color var(--transition), color var(--transition), box-shadow var(--transition), opacity var(--transition);
}

.report-button:hover {
  background: var(--accent-strong);
  transform: translateY(-2px);
  box-shadow: 0 12px 24px rgba(36, 89, 198, 0.2);
}

.report-button:disabled {
  opacity: 0.64;
  cursor: wait;
  transform: none;
  box-shadow: none;
}

.report-button--dark {
  background: #16151e;
  color: #fff;
}

.report-button--dark:hover {
  background: #0d0d12;
}

.report-button--light {
  background: #fff;
  color: var(--text-dark);
}

.report-button--light:hover {
  background: #edf4ff;
  color: var(--text-dark);
}

.report-button--secondary {
  background: #e8f2ff;
  color: var(--accent);
}

.report-button--secondary:hover {
  background: var(--accent-strong);
  color: #fff;
}

.report-status {
  min-height: 22px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 14px;
  line-height: 20px;
  font-weight: 500;
  text-align: center;
}

.survey-card .report-status {
  color: rgba(255, 255, 255, 0.82);
  text-align: center;
}

.report-status.is-ok {
  color: #dfffee;
}

.survey-card .report-status.is-ok {
  color: #e6fff3;
}

.report-status.is-error {
  color: #ffe0e0;
}

.survey-card .report-status.is-error {
  color: #ffe5e5;
}

.request-success {
  display: grid;
  gap: 14px;
  padding: 16px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.12);
  text-align: center;
}

.request-success p {
  color: #fff;
  font-size: 16px;
  line-height: 22px;
  font-weight: 500;
}

.result-layout {
  width: min(100% - 64px, 1120px);
  margin-top: 58px;
  display: grid;
  grid-template-columns: minmax(320px, 390px) minmax(0, 660px);
  justify-content: center;
  align-items: start;
  gap: 34px;
}

.result-column {
  display: grid;
  gap: 18px;
}

.result-status-card {
  min-height: 126px;
  padding: 24px 30px;
  border-radius: 28px;
  background: #e8f4ff;
  color: var(--text-dark);
}

.result-status-card h2 {
  font-size: clamp(24px, 2.5vw, 32px);
  line-height: 1.08;
  font-weight: 600;
}

.result-status-card ul {
  margin-top: 10px;
  padding-left: 18px;
  color: var(--text-dark);
  font-size: 16px;
  line-height: 22px;
  font-weight: 500;
}

.result-status-card p {
  margin-top: 12px;
  color: var(--text-muted);
  font-size: 14px;
  line-height: 20px;
  font-weight: 500;
}

.report-preview {
  position: relative;
  min-height: 460px;
  aspect-ratio: 390 / 460;
  overflow: hidden;
  border: 5px solid var(--accent);
  border-radius: 22px;
  background: #f8fbff;
  box-shadow: 0 14px 34px rgba(36, 89, 198, 0.16);
}

.report-preview__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
}

.report-preview--ready {
  min-height: 0;
  aspect-ratio: 390 / 460;
  border-width: 1px;
  border-color: rgba(36, 89, 198, 0.28);
  background: #fff;
}

.report-preview--ready .report-preview__image {
  display: block;
  object-fit: cover;
  object-position: top center;
}

.report-preview--loading::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
  height: 54%;
  background: rgba(255, 255, 255, 0.38);
  backdrop-filter: blur(8px);
}

.report-preview--ready::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
  height: 38%;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(248, 251, 255, 0), rgba(248, 251, 255, 0.86) 68%, #f8fbff 100%);
}

.report-preview__badge {
  position: absolute;
  left: 50%;
  bottom: 29%;
  z-index: 3;
  transform: translateX(-50%);
  min-width: min(86%, 300px);
  padding: 17px 20px;
  border-radius: 18px;
  background: var(--accent);
  color: #fff;
  box-shadow: 0 14px 28px rgba(36, 89, 198, 0.25);
  font-size: 18px;
  line-height: 24px;
  font-weight: 600;
  text-align: center;
}

.report-preview--ready .report-preview__badge {
  display: none;
}

.mock-report {
  min-height: 100%;
  height: 100%;
  padding: 22px;
  background: #fff;
  color: #061747;
}

.mock-report__logo {
  color: var(--accent);
  font-size: 12px;
  font-weight: 700;
}

.mock-report__title {
  margin-top: 28px;
  font-size: 20px;
  line-height: 26px;
  font-weight: 700;
  text-align: center;
}

.mock-report__hero {
  width: 78%;
  margin: 16px auto 0;
  padding: 12px;
  border-radius: 12px;
  background: var(--accent);
}

.mock-report__hero span,
.mock-report__hero strong,
.mock-report__grid span,
.mock-report__bars span {
  display: block;
  border-radius: 999px;
  background: #dfeaff;
}

.mock-report__hero span {
  height: 28px;
}

.mock-report__hero strong {
  width: 54%;
  height: 8px;
  margin: 10px auto 0;
}

.mock-report__grid {
  margin-top: 22px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.mock-report__grid span {
  height: 82px;
  border: 1px solid #cbdcf7;
  background: #f2f7ff;
}

.mock-report__bars {
  margin-top: 26px;
  display: grid;
  gap: 14px;
}

.mock-report__bars span {
  height: 13px;
  background: linear-gradient(90deg, #b5ccfb, var(--accent));
}

.mock-report__bars span:nth-child(2) {
  width: 76%;
}

.mock-report__bars span:nth-child(3) {
  width: 88%;
}

.mock-report__bars span:nth-child(4) {
  width: 58%;
}

.result-actions {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.result-actions--single {
  grid-template-columns: 1fr;
}

.result-survey {
  min-width: 0;
  display: grid;
  gap: 18px;
  align-content: start;
}

.result-survey__intro {
  display: grid;
  justify-items: center;
  gap: 12px;
  padding-inline: 10px;
  text-align: center;
}

.result-survey__intro h2 {
  max-width: 620px;
  color: var(--text-dark);
  font-size: clamp(28px, 3vw, 42px);
  line-height: 1.14;
  font-weight: 500;
}

.result-survey__intro p {
  max-width: 560px;
  color: var(--text-muted);
  font-size: 16px;
  line-height: 23px;
  font-weight: 500;
}

.result-survey .survey-card,
.result-survey .survey-success {
  width: 100%;
}

.survey-card--inline {
  padding: 30px clamp(20px, 3vw, 34px) 30px;
  gap: 24px;
}

.survey-actions--single {
  grid-template-columns: minmax(180px, 260px);
  justify-content: center;
}

.result-survey .survey-success p {
  color: rgba(255, 255, 255, 0.82);
  font-size: 16px;
  line-height: 22px;
}

.survey-invite {
  min-height: 604px;
  padding: clamp(42px, 7vw, 96px) clamp(28px, 5.5vw, 82px);
  border-radius: 30px;
  background: var(--accent);
  color: #fff;
  display: grid;
  place-items: center;
  align-content: center;
  justify-items: center;
  gap: 34px;
  text-align: center;
}

.survey-invite h2 {
  max-width: 620px;
  font-size: clamp(30px, 3.2vw, 42px);
  line-height: 1.18;
  font-weight: 500;
}

.result-missing {
  margin-top: 58px;
  padding: 48px;
  border-radius: 28px;
  background: #e8f4ff;
  text-align: center;
  display: grid;
  justify-items: center;
  gap: 16px;
}

.result-missing h2 {
  font-size: 34px;
  line-height: 42px;
  font-weight: 600;
}

.result-missing p {
  color: var(--text-muted);
}

.survey-page {
  width: min(100% - 64px, 920px);
  padding-top: 38px;
  display: grid;
  grid-template-columns: 1fr;
  justify-items: center;
  align-items: start;
  gap: 30px;
}

.survey-page__intro {
  max-width: 780px;
  display: grid;
  justify-items: center;
  gap: 18px;
  text-align: center;
}

.survey-page__intro h1 {
  color: var(--text-dark);
  font-size: clamp(38px, 5vw, 64px);
  line-height: 1.04;
  font-weight: 500;
}

.survey-page__intro p {
  max-width: 680px;
  color: var(--text-muted);
  font-size: 18px;
  line-height: 28px;
  font-weight: 500;
}

.survey-card,
.survey-success {
  width: min(100%, 720px);
  border: 0;
  border-radius: 30px;
  background: var(--accent);
  color: #fff;
  box-shadow: 0 22px 54px rgba(36, 89, 198, 0.24);
}

.survey-card {
  position: relative;
  overflow: hidden;
  padding: 34px clamp(22px, 4vw, 38px) 32px;
  display: grid;
  gap: 28px;
}

.survey-card::before {
  display: none;
  content: "";
  width: min(100%, 420px);
  height: 12px;
  justify-self: center;
  border-radius: 999px;
  background:
    linear-gradient(
      90deg,
      #050609 0 11%,
      transparent 11% 17%,
      #f8fbff 17% 28%,
      transparent 28% 34%,
      #f8fbff 34% 45%,
      transparent 45% 51%,
      #f8fbff 51% 62%,
      transparent 62% 68%,
      #f8fbff 68% 79%,
      transparent 79% 85%,
      #f8fbff 85% 96%,
      transparent 96% 100%
    );
}

.survey-progress {
  width: min(100%, 420px);
  justify-self: center;
  display: grid;
  grid-template-columns: repeat(7, minmax(20px, 1fr));
  gap: 14px;
}

.survey-progress span {
  height: 12px;
  border-radius: 999px;
  background: #f8fbff;
  transition: background-color var(--transition), transform var(--transition);
}

.survey-progress span.is-active {
  background: #050609;
  transform: scaleX(1.08);
}

.survey-questions {
  display: grid;
  gap: 28px;
}

.survey-question {
  min-width: 0;
  display: grid;
  gap: 12px;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
}

.survey-question + .survey-question {
  padding-top: 2px;
}

.survey-question__badge {
  width: fit-content;
  justify-self: center;
  min-height: 30px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 5px 13px;
  background: #eaf4ff;
  color: var(--accent);
  font-size: 13px;
  line-height: 16px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

.survey-question legend {
  width: 100%;
  display: grid;
  gap: 18px;
  padding: 0;
  color: #fff;
  font-size: clamp(22px, 2.8vw, 31px);
  line-height: 1.12;
  font-weight: 600;
  text-align: left;
}

.survey-question__title {
  display: block;
}

.survey-note {
  margin-top: -2px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 15px;
  line-height: 21px;
  font-weight: 500;
}

.survey-options {
  margin-top: 14px;
  display: grid;
  gap: 4px;
}

.survey-extended-contact {
  margin-top: 8px;
}

.survey-card .survey-extended-contact span {
  color: rgba(255, 255, 255, 0.9);
}

.survey-card .survey-extended-contact input {
  min-height: 50px;
  border-color: transparent;
  background: #fff;
  box-shadow: 0 8px 22px rgba(6, 24, 67, 0.1);
}

.survey-option {
  min-height: 30px;
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 4px 6px;
  border: 0;
  border-radius: 10px;
  background: transparent;
  color: rgba(255, 255, 255, 0.9);
  font-size: 16px;
  line-height: 21px;
  font-weight: 500;
  cursor: pointer;
  transition: background-color var(--transition), color var(--transition);
}

.survey-option:hover {
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
}

.survey-option input {
  flex: 0 0 auto;
  width: 17px;
  height: 17px;
  margin-top: 2px;
  accent-color: #fff;
}

.survey-actions {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  align-items: center;
}

.survey-actions.survey-actions--single {
  grid-template-columns: 1fr;
  justify-items: center;
}

.survey-card .survey-actions .report-button {
  width: fit-content;
  min-width: 116px;
  justify-self: center;
  border-radius: 999px;
  padding-inline: 24px;
  background: #050609;
  color: #fff;
  box-shadow: none;
}

.survey-card .survey-actions .report-button:hover {
  background: #0d0d12;
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.16);
}

.survey-card .survey-actions .report-button--secondary {
  background: rgba(255, 255, 255, 0.88);
  color: var(--accent);
}

.survey-card .survey-actions .report-button--secondary:hover {
  background: #fff;
  color: var(--accent);
}

.survey-success {
  padding: 38px;
  display: grid;
  justify-items: center;
  gap: 18px;
  text-align: center;
}

.survey-success h2 {
  color: #fff;
  font-size: 32px;
  line-height: 40px;
  font-weight: 600;
}

.survey-success .report-button {
  background: #050609;
  color: #fff;
}

.product-cta {
  margin-top: 108px;
}

.product-cta__inner {
  width: min(100%, 1120px);
  margin-inline: auto;
  overflow: hidden;
  display: grid;
  justify-items: center;
  gap: 24px;
  padding: 52px 34px 44px;
  border-radius: 46px 46px 0 0;
  background: var(--accent);
  text-align: center;
}

.product-cta h2 {
  max-width: 920px;
  color: #f5f8ff;
  font-size: 50px;
  line-height: 60px;
  font-weight: 500;
}

.product-cta h2 img {
  display: inline-block;
  width: auto;
  height: 62px;
  margin-inline: 4px;
  vertical-align: middle;
}

.product-cta__button {
  min-width: 154px;
}

.product-cta__image {
  width: min(100%, 980px);
  display: block;
  margin-bottom: 0;
  border-radius: 26px;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.report-footer {
  padding: 42px 0 34px;
  background: #16151e;
  color: #d8dfeb;
}

.report-page:not([data-report-page="survey"]) .report-footer {
  margin-top: 0;
  padding-top: 52px;
}

.report-footer__container {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px 22px;
}

.report-footer a {
  color: #c7cedb;
  font-size: 20px;
  line-height: 28px;
  transition: color var(--transition);
}

.report-footer a:hover {
  color: #fff;
}

.report-page [hidden] {
  display: none !important;
}

@media (max-width: 1023px) {
  .report-main {
    padding-top: 118px;
  }

  .report-header {
    inset: 0 0 auto 0;
    padding: 10px 0;
  }

  .report-header__container {
    width: min(100% - 24px, 1280px);
    min-height: 64px;
    grid-template-columns: auto 1fr auto;
    gap: 0;
    padding: 0 12px;
    border-radius: 20px;
  }

  .report-logo img {
    height: 36px;
  }

  .report-nav {
    display: none;
  }

  .report-header__cta {
    padding: 12px 16px;
  }

  .report-page .container {
    width: min(100% - 24px, var(--container));
  }

  .request-layout,
  .result-layout,
  .survey-page {
    width: min(100% - 24px, var(--container));
    grid-template-columns: 1fr;
  }

  .result-column,
  .result-survey {
    width: min(100%, 720px);
    justify-self: center;
  }

  .survey-invite {
    min-height: 360px;
    padding: 48px 28px;
  }

  .survey-page__intro {
    position: static;
  }

  .product-cta h2 {
    font-size: 42px;
    line-height: 50px;
  }
}

@media (max-width: 767px) {
  .report-main {
    padding-top: 96px;
  }

  .report-page .container {
    width: min(100% - 16px, var(--container));
  }

  .report-header {
    top: 10px;
    left: 50%;
    right: auto;
    width: min(calc(100vw - 16px), var(--container));
    max-width: min(calc(100vw - 16px), var(--container));
    padding: 0;
    transform: translateX(-50%);
  }

  .report-header__container {
    width: 100%;
    max-width: none;
    min-height: 54px;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 0 10px;
    border-radius: 18px;
  }

  .report-logo img {
    height: 32px;
  }

  .report-header__cta {
    flex: 0 1 44vw;
    max-width: 44vw;
    min-width: 0;
    margin-left: auto;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    padding: 8px 10px;
    border-radius: 14px;
    font-size: 11px;
    line-height: 14px;
  }

  .report-hero {
    gap: 20px;
  }

  .report-title {
    font-size: clamp(30px, 9vw, 42px);
    line-height: 1.08;
  }

  .report-chips {
    gap: 8px;
  }

  .report-chips li,
  .report-pill {
    min-height: 34px;
    font-size: 12px;
    line-height: 16px;
  }

  .request-layout,
  .result-layout {
    width: min(100% - 16px, var(--container));
    margin-top: 36px;
    gap: 16px;
  }

  .request-step {
    min-height: 0;
  }

  .request-step h2 {
    font-size: 22px;
  }

  .request-card {
    min-height: 0;
    padding: 34px 18px;
    border-radius: 24px;
  }

  .request-card h2 {
    font-size: 32px;
  }

  .result-status-card,
  .survey-invite,
  .survey-card,
  .survey-success,
  .result-missing {
    border-radius: 22px;
  }

  .report-preview,
  .mock-report {
    min-height: 0;
  }

  .report-preview {
    width: 100%;
    aspect-ratio: 390 / 460;
  }

  .report-preview--ready {
    aspect-ratio: 390 / 460;
  }

  .report-preview__badge {
    bottom: 27%;
    min-width: min(88%, 260px);
    padding: 13px 16px;
    font-size: 14px;
    line-height: 19px;
  }

  .result-actions,
  .survey-actions {
    grid-template-columns: 1fr;
  }

  .survey-actions--single {
    grid-template-columns: minmax(0, 1fr);
  }

  .survey-page {
    padding-top: 22px;
  }

  .survey-card,
  .survey-success {
    padding: 24px 18px;
  }

  .survey-card--inline {
    padding: 24px 18px;
  }

  .survey-question {
    padding: 0;
  }

  .survey-card::before {
    height: 10px;
  }

  .survey-progress {
    gap: 8px;
  }

  .survey-progress span {
    height: 10px;
  }

  .survey-options {
    margin-top: 12px;
    gap: 6px;
  }

  .survey-question legend {
    font-size: 18px;
    line-height: 24px;
  }

  .product-cta {
    margin-top: 54px;
  }

  .product-cta__inner {
    gap: 24px;
    padding: 42px 16px 28px;
    border-radius: 30px 30px 0 0;
  }

  .product-cta h2 {
    font-size: 34px;
    line-height: 42px;
  }

  .product-cta h2 img {
    height: 42px;
  }

  .product-cta__image {
    width: 100%;
    max-width: 680px;
    margin-bottom: 0;
    border-radius: 18px;
  }

  .report-footer {
    padding-top: 38px;
  }

  .report-page:not([data-report-page="survey"]) .report-footer {
    padding-top: 38px;
  }
}

@media (max-width: 430px) {
  .report-main {
    padding-top: 88px;
  }

  .report-header {
    top: 8px;
    width: calc(100vw - 12px);
    max-width: calc(100vw - 12px);
  }

  .report-header__container {
    min-height: 50px;
    gap: 8px;
    padding: 0 8px;
    border-radius: 16px;
  }

  .report-logo img {
    height: 25px;
  }

  .report-header__cta {
    flex: 0 1 41vw;
    max-width: 35vw;
    padding: 10px 0;
    border-radius: 12px;
    font-size: 13px;
    line-height: 16px;
    font-weight: 500;
  }

  .report-title {
    font-size: 30px;
  }

  .request-card .report-field input {
    min-height: 50px;
    padding-inline: 16px;
  }

  .survey-invite h2,
  .result-survey__intro h2 {
    font-size: 26px;
  }
}
