/* ============================================================
   Doctor Help — лендинг. Оригинальный дизайн, 2026.
   Палитра построена на градиентах фирменного знака boro64.
   ============================================================ */

:root {
  /* Палитра из логотипа */
  --pink:      #FF8ADF;
  --pink-hot:  #FF7ADE;
  --magenta:   #EE58D8;
  --purple:    #B232C8;
  --deep:      #5E169A;
  --ink-dark:  #1C0530;

  /* Поверхности */
  --bg:        #0D0614;
  --bg-2:      #140A1F;
  --surface:   rgba(255, 255, 255, .04);
  --surface-2: rgba(255, 255, 255, .07);
  --line:      rgba(255, 255, 255, .09);
  --line-soft: rgba(255, 255, 255, .05);

  /* Текст */
  --ink:       #F6EDFC;
  --muted:     #BCA9D2;
  --faint:     #9B87B5;

  --grad: linear-gradient(120deg, var(--pink) 0%, var(--magenta) 38%, var(--purple) 72%, var(--deep) 100%);
  --grad-soft: linear-gradient(120deg, rgba(255,138,223,.16), rgba(178,50,200,.10) 55%, rgba(94,22,154,.14));

  --radius:    24px;
  --radius-sm: 14px;

  --font-display: "Unbounded", "Manrope", system-ui, sans-serif;
  --font-text: "Manrope", system-ui, -apple-system, "Segoe UI", sans-serif;

  --shadow-lg: 0 24px 80px rgba(28, 5, 48, .55);
  --header-h: 72px;
}

/* ---------- Сброс и база ---------- */

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 16px);
}

html { overflow-x: clip; }

body {
  margin: 0;
  font-family: var(--font-text);
  font-size: 17px;
  line-height: 1.65;
  color: var(--ink);
  background:
    radial-gradient(1100px 520px at 85% -5%, rgba(178, 50, 200, .14), transparent 62%),
    radial-gradient(900px 620px at -10% 30%, rgba(94, 22, 154, .18), transparent 60%),
    var(--bg);
  -webkit-font-smoothing: antialiased;
}

/* Зерно поверх всего — матовая глубина */
body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 3;
  pointer-events: none;
  opacity: .05;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

img { max-width: 100%; display: block; }

h1, h2, h3 { margin: 0 0 .5em; line-height: 1.15; letter-spacing: -.01em; }
p { margin: 0 0 1em; }
p:last-child { margin-bottom: 0; }

.container {
  width: min(1180px, calc(100% - 48px));
  margin-inline: auto;
}

::selection { background: rgba(238, 88, 216, .4); color: #fff; }

:focus-visible {
  outline: 2px solid var(--pink-hot);
  outline-offset: 3px;
  border-radius: 6px;
}

/* ---------- Шапка ---------- */

.header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 50;
  height: var(--header-h);
  display: flex;
  align-items: center;
  transition: background .35s ease, border-color .35s ease, backdrop-filter .35s ease;
  border-bottom: 1px solid transparent;
}

.header.is-scrolled {
  background: rgba(13, 6, 20, .72);
  backdrop-filter: blur(18px) saturate(1.3);
  -webkit-backdrop-filter: blur(18px) saturate(1.3);
  border-bottom-color: var(--line-soft);
}

.header__inner {
  display: flex;
  align-items: center;
  gap: 28px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: var(--ink);
}

.brand__mark {
  width: 40px; height: 40px;
  filter: drop-shadow(0 4px 16px rgba(238, 88, 216, .45));
  transition: transform .4s cubic-bezier(.2, .8, .2, 1);
}
.brand:hover .brand__mark { transform: rotate(-6deg) scale(1.06); }

.brand__name {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.05rem;
  letter-spacing: .01em;
  white-space: nowrap;
}

.nav {
  display: flex;
  gap: 4px;
  margin-left: auto;
}

.nav a {
  color: var(--muted);
  text-decoration: none;
  font-size: .92rem;
  font-weight: 500;
  padding: 8px 14px;
  border-radius: 999px;
  transition: color .25s ease, background .25s ease;
}

.nav a:hover { color: var(--ink); background: var(--surface-2); }

.header__cta { flex-shrink: 0; }

/* ---------- Кнопки, бейджи ---------- */

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 26px;
  border-radius: 999px;
  font-family: var(--font-text);
  font-weight: 700;
  font-size: .98rem;
  text-decoration: none;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform .25s cubic-bezier(.2, .8, .2, 1), box-shadow .25s ease, background .25s ease, border-color .25s ease;
}

.btn--primary {
  background: var(--grad);
  color: #fff;
  box-shadow: 0 10px 32px rgba(238, 88, 216, .35), inset 0 1px 0 rgba(255, 255, 255, .25);
}
.btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 44px rgba(238, 88, 216, .5), inset 0 1px 0 rgba(255, 255, 255, .25);
}

.btn--ghost {
  background: var(--surface);
  border-color: var(--line);
  color: var(--ink);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}
.btn--ghost:hover {
  background: var(--surface-2);
  border-color: rgba(255, 138, 223, .4);
  transform: translateY(-2px);
}

.btn--sm { padding: 9px 18px; font-size: .88rem; }
.btn--lg { padding: 17px 32px; font-size: 1.05rem; }

.badge {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 8px 16px;
  border-radius: 999px;
  font-size: .84rem;
  font-weight: 600;
  color: var(--pink);
  background: rgba(238, 88, 216, .09);
  border: 1px solid rgba(238, 88, 216, .25);
  margin-bottom: 26px;
}

/* ---------- Hero ---------- */

.hero {
  position: relative;
  padding: calc(var(--header-h) + 72px) 0 84px;
  overflow: visible;
}

.hero__aurora {
  position: absolute;
  inset: -20% -10% auto;
  height: 130%;
  z-index: -1;
  filter: blur(70px);
  opacity: .55;
}

.blob {
  position: absolute;
  border-radius: 50%;
  will-change: transform;
}
.blob--1 {
  width: 46vw; height: 46vw; left: -8vw; top: 4%;
  background: radial-gradient(circle at 30% 30%, rgba(94, 22, 154, .5), transparent 65%);
  animation: drift1 26s ease-in-out infinite alternate;
}
.blob--2 {
  width: 40vw; height: 40vw; right: -6vw; top: 18%;
  background: radial-gradient(circle at 60% 40%, rgba(238, 88, 216, .38), transparent 62%);
  animation: drift2 22s ease-in-out infinite alternate;
}
.blob--3 {
  width: 30vw; height: 30vw; left: 34%; top: 55%;
  background: radial-gradient(circle at 50% 50%, rgba(255, 138, 223, .22), transparent 60%);
  animation: drift3 19s ease-in-out infinite alternate;
}

@keyframes drift1 { to { transform: translate(9vw, 6vh) scale(1.12); } }
@keyframes drift2 { to { transform: translate(-7vw, 8vh) scale(.92); } }
@keyframes drift3 { to { transform: translate(5vw, -7vh) scale(1.18); } }

.hero__grid {
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 48px;
  align-items: center;
}

.hero__title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(2.1rem, 5.2vw, 4.1rem);
  line-height: 1.08;
  letter-spacing: -.015em;
  margin-bottom: 22px;
  text-wrap: balance;
}

.section__title { text-wrap: balance; }

.grad-text {
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero__lead {
  font-size: clamp(1.02rem, 1.6vw, 1.2rem);
  color: var(--muted);
  max-width: 34em;
  margin-bottom: 34px;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 52px;
}

.hero__stats {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  margin: 0;
  padding-top: 28px;
  border-top: 1px solid var(--line-soft);
}

.stat { display: flex; flex-direction: column-reverse; gap: 2px; }

.stat__value {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.7rem, 3vw, 2.3rem);
  line-height: 1.1;
  background: linear-gradient(120deg, #fff, var(--pink));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.stat__plus { color: var(--magenta); -webkit-text-fill-color: var(--magenta); }
.stat__unit { font-size: .6em; }

.stat dt {
  order: -1;
  font-size: .8rem;
  color: var(--faint);
  max-width: 12em;
}

/* Визуал hero: орбиты + маскот + чипы */

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

.orbit {
  position: relative;
  width: min(420px, 100%);
  aspect-ratio: 1;
  display: grid;
  place-items: center;
}

.orbit__ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(255, 138, 223, .18);
}
.orbit__ring--outer { inset: 0; border-style: dashed; animation: spin 60s linear infinite; }
.orbit__ring--inner {
  inset: 13%;
  border-color: rgba(178, 50, 200, .3);
  box-shadow: inset 0 0 60px rgba(94, 22, 154, .35);
  animation: spin 42s linear infinite reverse;
}

@keyframes spin { to { transform: rotate(360deg); } }

.orbit__mascot {
  width: 56%;
  filter: drop-shadow(0 24px 60px rgba(238, 88, 216, .5));
  animation: float 7s ease-in-out infinite;
}

@keyframes float {
  0%, 100% { transform: translateY(0) rotate(-2deg); }
  50% { transform: translateY(-16px) rotate(2deg); }
}

.chip {
  position: absolute;
  padding: 9px 16px;
  border-radius: 999px;
  font-size: .8rem;
  font-weight: 700;
  color: var(--ink);
  background: rgba(20, 10, 31, .6);
  border: 1px solid var(--line);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 10px 30px rgba(13, 6, 20, .5);
  white-space: nowrap;
  animation: chipFloat 6s ease-in-out infinite;
}

.chip--1 { top: 6%;  left: 4%;  animation-delay: -0.4s; }
.chip--2 { top: 16%; right: -2%; animation-delay: -1.6s; }
.chip--3 { bottom: 22%; left: -4%; animation-delay: -2.8s; }
.chip--4 { bottom: 5%; right: 6%; animation-delay: -3.7s; }
.chip--5 { top: 46%; right: -6%; animation-delay: -5s; }

@keyframes chipFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

/* ---------- Бегущая строка ---------- */

.ticker {
  overflow: hidden;
  border-block: 1px solid var(--line-soft);
  background: rgba(20, 10, 31, .45);
  padding: 16px 0;
  position: relative;
  z-index: 2;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 7%, #000 93%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 7%, #000 93%, transparent);
}

.ticker__track {
  display: flex;
  align-items: center;
  gap: 34px;
  width: max-content;
  animation: ticker 36s linear infinite;
}

.ticker span {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: .82rem;
  text-transform: uppercase;
  letter-spacing: .14em;
  color: var(--faint);
  white-space: nowrap;
}

.ticker i {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--grad);
  flex-shrink: 0;
}

@keyframes ticker { to { transform: translateX(-50%); } }

/* ---------- Секции ---------- */

.section { padding: 108px 0; position: relative; }
.section--alt {
  background:
    radial-gradient(900px 480px at 108% 12%, rgba(94, 22, 154, .14), transparent 60%),
    radial-gradient(700px 420px at -8% 88%, rgba(238, 88, 216, .08), transparent 55%);
}

.section__head { max-width: 720px; margin-bottom: 56px; }

.kicker {
  font-size: .8rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .22em;
  color: var(--magenta);
  margin-bottom: 14px;
}

.section__title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.6rem, 3.4vw, 2.5rem);
  margin-bottom: 16px;
}

.section__lead {
  color: var(--muted);
  font-size: clamp(1rem, 1.4vw, 1.12rem);
}

/* ---------- Bento: возможности ---------- */

.bento {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.card {
  position: relative;
  padding: 30px;
  border-radius: var(--radius);
  background: var(--surface);
  border: 1px solid var(--line);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  transition: transform .35s cubic-bezier(.2, .8, .2, 1), border-color .35s ease, background .35s ease;
  overflow: hidden;
}

.card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--grad-soft);
  opacity: 0;
  transition: opacity .4s ease;
  pointer-events: none;
}

.card:hover {
  transform: translateY(-5px);
  border-color: rgba(255, 138, 223, .38);
  background: var(--surface-2);
}
.card:hover::before { opacity: 1; }

.card--wide { grid-column: span 2; }

.card__head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
}

.card__head .card__icon { margin-bottom: 20px; }

.card__tag {
  flex-shrink: 0;
  margin-top: 4px;
  padding: 7px 14px;
  border-radius: 999px;
  font-size: .74rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--pink);
  background: rgba(238, 88, 216, .1);
  border: 1px solid rgba(238, 88, 216, .3);
}

.card--product {
  border-color: rgba(238, 88, 216, .28);
  background:
    radial-gradient(420px 220px at 100% 0%, rgba(238, 88, 216, .12), transparent 70%),
    var(--surface);
}
.card--product::before { opacity: 1; }

.card__icon {
  width: 52px; height: 52px;
  display: grid;
  place-items: center;
  border-radius: 16px;
  color: var(--pink);
  background: rgba(238, 88, 216, .1);
  border: 1px solid rgba(238, 88, 216, .22);
  margin-bottom: 20px;
}

.card h3 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.04rem;
  margin-bottom: 10px;
}

.card p { color: var(--muted); font-size: .95rem; }

/* ---------- Защищаемые данные: панель ---------- */

.sec-band {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 24px;
  margin-top: 28px;
  padding: 30px 32px;
  border-radius: var(--radius);
  background: var(--surface);
  border: 1px solid var(--line);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.sec-band .card__icon { margin: 0; }

.sec-band__body h3 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.12rem;
  margin-bottom: 12px;
}

.sec-band__body > p {
  margin: 0 0 16px;
  color: var(--muted);
  font-size: .95rem;
  line-height: 1.6;
  max-width: 62em;
}

.sec-band__body > p:last-child { margin-bottom: 0; }
.sec-band .tags { margin: 0 0 18px; }

/* ---------- Подход: шаги + принципы ---------- */

.steps {
  list-style: none;
  margin: 0 0 44px;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  counter-reset: step;
}

.step {
  position: relative;
  padding: 26px;
  border-radius: var(--radius-sm);
  background: var(--surface);
  border: 1px solid var(--line-soft);
}

.step__num {
  display: block;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.5rem;
  margin-bottom: 14px;
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.step h3 {
  font-family: var(--font-text);
  font-weight: 800;
  font-size: 1.02rem;
  margin-bottom: 8px;
}

.step p { color: var(--muted); font-size: .9rem; margin: 0; }

.principles {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.principle {
  padding: 22px 24px;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(238, 88, 216, .18);
  background: linear-gradient(160deg, rgba(238, 88, 216, .08), rgba(94, 22, 154, .06));
}

.principle h3 {
  font-size: .98rem;
  font-weight: 800;
  margin-bottom: 8px;
  color: var(--pink);
}

.principle p { color: var(--muted); font-size: .89rem; margin: 0; }

/* ---------- Экспертиза ---------- */

.metrics {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 28px;
}

.metric {
  padding: 28px 26px;
  border-radius: var(--radius);
  background: var(--surface);
  border: 1px solid var(--line);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.metric__value {
  display: block;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(1.5rem, 2.6vw, 2.1rem);
  line-height: 1.1;
  margin-bottom: 10px;
  background: linear-gradient(120deg, #fff, var(--pink));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.metric__label { color: var(--muted); font-size: .88rem; }

/* ---------- Продукт: панель в секции опыта ---------- */

.product {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 36px;
  padding: 38px 40px;
  border-radius: var(--radius);
  background:
    radial-gradient(520px 280px at 0% 0%, rgba(238, 88, 216, .1), transparent 65%),
    var(--surface);
  border: 1px solid rgba(238, 88, 216, .24);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: var(--shadow-lg);
}

.product__head {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
  margin-bottom: 16px;
}

.product__head h3 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.15rem, 2vw, 1.45rem);
  margin: 0;
}

.product__tag {
  padding: 7px 14px;
  border-radius: 999px;
  font-size: .74rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: #fff;
  background: var(--grad);
  box-shadow: 0 6px 20px rgba(238, 88, 216, .35);
  white-space: nowrap;
}

.product__lead { color: var(--muted); font-size: .97rem; }

.product__features {
  list-style: none;
  margin: 22px 0 0;
  padding: 0;
  display: grid;
  gap: 12px;
}

.product__features li {
  position: relative;
  padding-left: 32px;
  color: var(--ink);
  font-size: .93rem;
  line-height: 1.5;
}

.product__features li::before {
  content: "";
  position: absolute;
  left: 0; top: 4px;
  width: 17px; height: 17px;
  border-radius: 6px;
  background:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M5 12.5l4 4L19 7' fill='none' stroke='%23FF8ADF' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") center / contain no-repeat,
    rgba(238, 88, 216, .12);
  border: 1px solid rgba(238, 88, 216, .3);
}

.product__metrics {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  align-content: start;
}

.pm {
  padding: 24px 22px;
  border-radius: var(--radius-sm);
  background: var(--surface);
  border: 1px solid var(--line);
}

.pm__value {
  display: block;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(1.25rem, 2vw, 1.6rem);
  line-height: 1.15;
  margin-bottom: 8px;
  background: linear-gradient(120deg, #fff, var(--pink));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.pm__label { color: var(--muted); font-size: .82rem; line-height: 1.45; }

.pm--accent {
  border-color: rgba(255, 138, 223, .35);
  background: linear-gradient(160deg, rgba(238, 88, 216, .12), rgba(94, 22, 154, .08));
}

.product__note {
  margin: 14px 0 0;
  color: var(--muted);
  font-size: .8rem;
}

.subsection {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.2rem;
  margin: 64px 0 16px;
}

.subsection__lead {
  color: var(--muted);
  max-width: 64em;
  margin: 0 0 28px;
}

.expertise-note {
  padding: 34px 36px;
  border-radius: var(--radius);
  background: var(--surface);
  border: 1px solid var(--line);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.expertise-note h3 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.05rem;
  margin-bottom: 18px;
}

.notes-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 20px;
}

.tags {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 0 0 20px;
  padding: 0;
}

.tags li {
  padding: 7px 14px;
  border-radius: 999px;
  font-size: .82rem;
  font-weight: 600;
  color: var(--muted);
  background: var(--surface-2);
  border: 1px solid var(--line);
}

.expertise-note > p { color: var(--muted); max-width: 62em; }

/* ---------- Таймлайн эволюции ---------- */

.timeline {
  list-style: none;
  margin: 0;
  padding: 0 0 0 34px;
  position: relative;
}

.timeline::before {
  content: "";
  position: absolute;
  left: 7px; top: 8px; bottom: 8px;
  width: 2px;
  background: linear-gradient(180deg, var(--deep), var(--purple) 35%, var(--magenta) 75%, var(--pink));
  border-radius: 2px;
  opacity: .55;
}

.tl-item {
  position: relative;
  padding: 0 0 44px;
  max-width: 680px;
}

.tl-item:last-child { padding-bottom: 0; }

.tl-item__dot {
  position: absolute;
  left: -34px; top: 7px;
  width: 16px; height: 16px;
  border-radius: 50%;
  background: var(--bg);
  border: 3px solid var(--purple);
  box-shadow: 0 0 0 5px rgba(178, 50, 200, .15);
}

.tl-item--now .tl-item__dot {
  border-color: var(--pink-hot);
  box-shadow: 0 0 0 5px rgba(255, 138, 223, .2), 0 0 24px rgba(255, 138, 223, .55);
}

.tl-item__era {
  font-size: .78rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .18em;
  color: var(--magenta);
  margin-bottom: 6px;
}

.tl-item h3 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.12rem;
  margin-bottom: 10px;
}

.tl-item p { color: var(--muted); font-size: .96rem; }

/* ---------- CTA ---------- */

.cta { padding: 120px 0; }

.cta__inner {
  position: relative;
  text-align: center;
  padding: clamp(48px, 7vw, 88px) clamp(24px, 6vw, 96px);
  border-radius: 32px;
  background:
    radial-gradient(600px 300px at 50% -20%, rgba(238, 88, 216, .22), transparent 70%),
    var(--surface);
  border: 1px solid rgba(238, 88, 216, .22);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}

.cta__mark {
  margin: 0 auto 24px;
  filter: drop-shadow(0 12px 32px rgba(238, 88, 216, .5));
  animation: float 7s ease-in-out infinite;
}

.cta__title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.7rem, 3.6vw, 2.6rem);
  margin-bottom: 14px;
}

.cta__lead {
  color: var(--muted);
  max-width: 34em;
  margin: 0 auto 34px;
}

.cta__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
}

/* ---------- Футер ---------- */

.footer {
  border-top: 1px solid var(--line-soft);
  padding: 36px 0 44px;
  background: rgba(13, 6, 20, .55);
}

.footer__inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px 32px;
}

.footer__brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--muted);
  font-weight: 600;
  font-size: .92rem;
}

.footer__copy { margin: 0; color: var(--faint); font-size: .86rem; }
.footer__note { margin: 0 0 0 auto; color: var(--faint); font-size: .78rem; max-width: 34em; }

/* ---------- Появление при скролле ---------- */

[data-reveal] {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity .8s cubic-bezier(.2, .65, .2, 1), transform .8s cubic-bezier(.2, .65, .2, 1);
  transition-delay: var(--reveal-delay, 0s);
}

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

/* Без JS: контент виден сразу */
.no-js [data-reveal] { opacity: 1; transform: none; }

/* ---------- Адаптив ---------- */

@media (max-width: 1024px) {
  .bento { grid-template-columns: repeat(2, 1fr); }
  .steps, .principles, .metrics { grid-template-columns: repeat(2, 1fr); }
  .hero__grid { grid-template-columns: 1fr; gap: 56px; }
  .hero__visual { order: -1; }
  .orbit { width: min(340px, 78vw); }
  .footer__note { margin-left: 0; }
  .product { grid-template-columns: 1fr; gap: 28px; padding: 30px 26px; }
}

@media (max-width: 720px) {
  .section { padding: 76px 0; }
  .hero { padding-top: calc(var(--header-h) + 44px); }

  .nav { display: none; }
  .header__inner { justify-content: space-between; }

  .bento, .steps, .principles, .metrics { grid-template-columns: 1fr; }
  .card--wide { grid-column: auto; }
  .notes-grid { grid-template-columns: 1fr; }

  .hero__stats { gap: 24px 32px; }
  .hero__actions .btn { flex: 1 1 auto; justify-content: center; }

  .footer__inner { flex-direction: column; align-items: flex-start; }
  .product__metrics { grid-template-columns: 1fr; }

  .sec-band { grid-template-columns: 1fr; padding: 26px 24px; }
  .sec-band .card__icon { margin-bottom: 18px; }
}

/* ---------- Доступность: меньше движения ---------- */

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

  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }

  .ticker__track { animation: none; }

  [data-reveal] {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .blob { animation: none; }
}
