:root {
  --ink: #0a0d12;
  --muted: #626d7e;
  --line: #e4e8ef;
  --soft: #f5f7fa;
  --blue: #2169ff;
  --blue-dark: #1554df;
  --red: #ff4f69;
  --red-dark: #e93855;
  --navy: #07101e;
  --radius-sm: 14px;
  --radius-md: 22px;
  --radius-lg: 30px;
  --shadow: 0 18px 50px rgba(10, 19, 38, .08);
  --shell: 1240px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
  background: #fff;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button, input { font: inherit; }
svg { fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }

.skip-link { position: fixed; left: 16px; top: -80px; z-index: 200; background: #000; color: #fff; padding: 12px 18px; border-radius: 12px; }
.skip-link:focus { top: 16px; }
.shell { width: min(calc(100% - 40px), var(--shell)); margin-inline: auto; }

.site-header { position: sticky; top: 0; z-index: 100; background: rgba(255,255,255,.82); backdrop-filter: blur(18px); border-bottom: 1px solid rgba(228,232,239,.8); }
.header-inner { height: 72px; display: flex; align-items: center; gap: 28px; }
.brand { width: 136px; flex: 0 0 auto; }
.brand img { width: 100%; height: auto; }
.desktop-nav { display: flex; gap: 34px; margin-left: auto; align-items: center; }
.desktop-nav a { font-size: 13px; font-weight: 700; color: #252b35; transition: color .2s ease; }
.desktop-nav a:hover { color: var(--blue); }
.header-actions { display: flex; align-items: center; gap: 10px; }

.button { min-height: 46px; padding: 0 20px; border-radius: 14px; display: inline-flex; align-items: center; justify-content: center; gap: 10px; font-weight: 800; font-size: 14px; border: 1px solid transparent; transition: transform .2s ease, box-shadow .2s ease, background .2s ease; cursor: pointer; }
.button:hover { transform: translateY(-2px); }
.button svg { width: 18px; height: 18px; }
.button--large { min-height: 54px; padding-inline: 24px; }
.button--dark { background: #07090d; color: #fff; box-shadow: 0 10px 24px rgba(0,0,0,.15); }
.button--blue { background: linear-gradient(135deg, #1762ef, #2877ff); color: #fff; box-shadow: 0 12px 26px rgba(33,105,255,.24); }
.button--red { background: linear-gradient(135deg, #f23b5b, #ff5d75); color: #fff; box-shadow: 0 12px 26px rgba(255,79,105,.22); }
.button--outline { border-color: #d7dde7; background: rgba(255,255,255,.84); }

.menu-toggle { display: none; width: 44px; height: 44px; border: 1px solid var(--line); background: white; border-radius: 12px; padding: 11px; }
.menu-toggle span { display: block; height: 2px; background: #111; margin: 4px 0; }
.mobile-menu { border-top: 1px solid var(--line); background: #fff; }
.mobile-menu-inner { padding-block: 18px 24px; display: grid; gap: 14px; }
.mobile-menu-inner > a:not(.button) { font-weight: 700; padding: 8px 0; }




























.section { padding: 104px 0; }
.section--soft { background: linear-gradient(180deg, #f7f9fc, #fff); }
.section-heading { margin-bottom: 42px; }
.section-heading.centered { text-align: center; max-width: 760px; margin-inline: auto; }
.section-kicker { display: block; text-transform: uppercase; letter-spacing: .11em; color: var(--blue); font-size: 11px; font-weight: 900; margin-bottom: 10px; }
.section-kicker--red { color: var(--red); }
.section-heading h2, .audience-card h2 { margin: 0; font-size: clamp(30px, 3.4vw, 44px); letter-spacing: -.035em; line-height: 1.05; }
.section-heading p { margin: 14px auto 0; max-width: 620px; color: var(--muted); line-height: 1.6; }

.how {
  padding: 72px 0 82px;
  background:
    radial-gradient(circle at 50% 16%, rgba(33,105,255,.035), transparent 34%),
    #fff;
}
.how-shell { max-width: 1050px; }
.how-heading { margin-bottom: 14px; }
.how-heading h2 { font-size: clamp(30px, 3vw, 40px); }
.role-tabs {
  width: max-content;
  margin: 0 auto 28px;
  padding: 3px;
  border: 1px solid #dfe5ee;
  border-radius: 999px;
  background: #fff;
  display: flex;
  box-shadow: 0 8px 24px rgba(14,31,61,.035);
}
.role-tab {
  min-width: 112px;
  height: 36px;
  padding: 0 22px;
  border: 0;
  border-radius: 999px;
  background: transparent;
  font-size: 13px;
  font-weight: 800;
  color: #566172;
  cursor: pointer;
  transition: color .2s ease, background .2s ease, box-shadow .2s ease;
}
.role-tab.is-active {
  color: #fff;
  background: linear-gradient(135deg, #1762ef, #2877ff);
  box-shadow: 0 8px 18px rgba(33,105,255,.22);
}
.steps-grid {
  max-width: 930px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 44px minmax(0, 1fr) 44px minmax(0, 1fr);
  gap: 0;
  align-items: center;
}
.step-card {
  position: relative;
  min-height: 214px;
  padding: 22px 24px 24px;
  background: rgba(255,255,255,.96);
  border: 1px solid #dfe5ee;
  border-radius: 18px;
  box-shadow: 0 12px 32px rgba(15,28,50,.035);
}
.step-icon {
  width: 50px;
  height: 50px;
  border-radius: 15px;
  display: grid;
  place-items: center;
  color: var(--blue);
  background: linear-gradient(145deg, #f5f8ff, #eaf1ff);
}
.feature-icon {
  width: 54px;
  height: 54px;
  border-radius: 17px;
  display: grid;
  place-items: center;
  color: var(--blue);
  background: #eef4ff;
  font-size: 24px;
}
.step-icon svg { width: 29px; height: 29px; stroke-width: 1.7; }
.step-title {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  margin-top: 18px;
}
.step-number {
  flex: 0 0 auto;
  width: 17px;
  height: 17px;
  margin-top: 1px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: #fff;
  background: var(--blue);
  font-size: 9px;
  line-height: 1;
  font-weight: 900;
  box-shadow: 0 5px 12px rgba(33,105,255,.18);
}
.step-card h3 {
  margin: 0;
  font-size: 16px;
  line-height: 1.3;
  letter-spacing: -.015em;
}
.step-card p {
  margin: 10px 0 0 25px;
  color: #596577;
  line-height: 1.55;
  font-size: 12px;
}
.step-arrow {
  width: 44px;
  display: grid;
  place-items: center;
  color: #7d8999;
}
.step-arrow svg { width: 34px; height: 18px; stroke-width: 1.45; }

.audience {
  padding: 42px 0 58px;
  background:
    radial-gradient(circle at 22% 42%, rgba(33,105,255,.035), transparent 24%),
    #fff;
}
.audience-grid {
  display: grid;
  grid-template-columns: minmax(0, .96fr) minmax(0, 1.08fr);
  gap: 18px;
  align-items: stretch;
}
.audience-card {
  position: relative;
  isolation: isolate;
  min-width: 0;
  min-height: 430px;
  padding: 30px;
  border-radius: 26px;
  display: grid;
  gap: 14px;
  overflow: hidden;
}
.audience-card--client {
  grid-template-columns: minmax(0, 1fr) 204px;
  border: 1px solid #e2e7ef;
  background:
    radial-gradient(circle at 84% 36%, rgba(33,105,255,.105), transparent 28%),
    linear-gradient(145deg, #fff 0%, #fff 68%, #f7faff 100%);
  box-shadow: 0 16px 46px rgba(14,30,56,.045);
}
.audience-card--trainer {
  grid-template-columns: 205px minmax(0, 1fr);
  color: #fff;
  background:
    radial-gradient(circle at 76% 110%, rgba(33,105,255,.31), transparent 35%),
    radial-gradient(circle at 102% 88%, rgba(255,79,105,.25), transparent 35%),
    linear-gradient(135deg, #07101e 0%, #0a1423 56%, #101426 100%);
  box-shadow: 0 18px 50px rgba(6,14,26,.14);
}
.audience-copy {
  position: relative;
  z-index: 5;
  min-width: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.audience-eyebrow {
  display: block;
  margin-bottom: 12px;
  color: #3c4656;
  font-size: 12px;
  line-height: 1;
  font-weight: 850;
}
.audience-eyebrow--light { color: rgba(255,255,255,.82); }
.audience-card h2 {
  max-width: 390px;
  margin: 0;
  font-size: clamp(27px, 2.25vw, 36px);
  line-height: 1.08;
  letter-spacing: -.036em;
}
.check-list {
  list-style: none;
  width: 100%;
  margin: 24px 0 22px;
  padding: 0;
  display: grid;
  gap: 13px;
}
.check-list li {
  position: relative;
  padding-left: 24px;
  color: #4d5868;
  font-size: 13px;
  line-height: 1.42;
}
.check-list li::before {
  content: "";
  position: absolute;
  left: 1px;
  top: 4px;
  width: 12px;
  height: 7px;
  border-left: 2px solid var(--blue);
  border-bottom: 2px solid var(--blue);
  transform: rotate(-45deg);
}
.check-list--red li { color: rgba(255,255,255,.78); }
.check-list--red li::before { border-color: var(--red); }
.audience-button {
  min-height: 44px;
  margin-top: auto;
  padding-inline: 18px;
  border-radius: 11px;
  font-size: 13px;
  white-space: nowrap;
}
.audience-visual {
  position: relative;
  z-index: 2;
  min-width: 0;
  min-height: 330px;
  align-self: end;
}
.audience-orbit {
  position: absolute;
  z-index: -1;
  pointer-events: none;
  border: 2px solid transparent;
  border-radius: 50%;
  filter: drop-shadow(0 0 10px currentColor);
  opacity: .7;
}
.audience-orbit--client-one {
  width: 390px;
  height: 180px;
  right: -185px;
  bottom: 12px;
  color: rgba(33,105,255,.23);
  border-color: rgba(33,105,255,.28);
  transform: rotate(-17deg);
}
.audience-orbit--client-two {
  width: 330px;
  height: 145px;
  right: -140px;
  bottom: -6px;
  color: rgba(124,188,255,.16);
  border-color: rgba(116,180,255,.22);
  transform: rotate(10deg);
}
.audience-phone {
  position: absolute;
  z-index: 3;
  width: 188px;
  height: 362px;
  left: 50%;
  bottom: -12px;
  padding: 7px;
  border-radius: 34px;
  background: linear-gradient(145deg, #090d14, #252c37 52%, #06080d);
  box-shadow:
    0 24px 48px rgba(12,21,36,.25),
    inset 0 0 0 1px rgba(255,255,255,.18);
  transform: translateX(-50%) rotate(-1.5deg);
}
.audience-phone-notch {
  position: absolute;
  z-index: 4;
  width: 72px;
  height: 18px;
  left: 50%;
  top: 9px;
  border-radius: 999px;
  background: #05070b;
  transform: translateX(-50%);
}
.audience-phone-screen {
  position: relative;
  height: 100%;
  padding: 10px 9px 9px;
  border-radius: 28px;
  overflow: hidden;
  color: #161c27;
  background: linear-gradient(180deg, #f8faff, #f1f5fb);
}
.audience-phone-status {
  height: 17px;
  padding: 0 5px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 6px;
}
.audience-phone-status > span { display: flex; gap: 2px; align-items: end; }
.audience-phone-status i { display: block; width: 2px; background: #171b22; border-radius: 2px; }
.audience-phone-status i:nth-child(1) { height: 3px; }
.audience-phone-status i:nth-child(2) { height: 5px; }
.audience-phone-status i:nth-child(3) { width: 7px; height: 4px; border: 1px solid #171b22; background: transparent; }
.audience-phone-heading {
  height: 29px;
  display: grid;
  grid-template-columns: 22px 1fr 22px;
  align-items: center;
  text-align: center;
  font-size: 7px;
}
.audience-phone-heading > span { color: #657082; font-weight: 850; }
.audience-session-card,
.audience-progress-card {
  padding: 10px;
  border: 1px solid #e2e7ef;
  border-radius: 12px;
  background: rgba(255,255,255,.94);
  box-shadow: 0 7px 18px rgba(16,32,59,.045);
}
.audience-session-card { margin-top: 3px; }
.audience-person {
  display: grid;
  grid-template-columns: 28px 1fr;
  gap: 7px;
  align-items: center;
}
.audience-person b,
.audience-person small { display: block; }
.audience-person b { font-size: 6.7px; line-height: 1.25; }
.audience-person small { margin-top: 2px; color: #8791a0; font-size: 5.5px; }
.audience-avatar {
  position: relative;
  width: 28px;
  height: 28px;
  border-radius: 8px;
  overflow: hidden;
  background: linear-gradient(145deg, #f5dfd4, #dfb9a3);
}
.audience-avatar::before {
  content: "";
  position: absolute;
  width: 11px;
  height: 12px;
  left: 8px;
  top: 5px;
  border-radius: 50% 50% 45% 45%;
  background: #d69776;
  box-shadow: 0 -4px 0 2px #3c2725;
}
.audience-avatar::after {
  content: "";
  position: absolute;
  width: 24px;
  height: 14px;
  left: 2px;
  bottom: -6px;
  border-radius: 50% 50% 0 0;
  background: #1d355a;
}
.audience-session-card > strong,
.audience-session-card > small { display: block; }
.audience-session-card > strong { margin-top: 10px; font-size: 11px; }
.audience-session-card > small { margin-top: 3px; color: #7b8696; font-size: 6px; }
.audience-phone-action {
  height: 25px;
  margin-top: 9px;
  border-radius: 7px;
  display: grid;
  place-items: center;
  color: #fff;
  background: linear-gradient(135deg, #1762ef, #2877ff);
  font-size: 6.5px;
  font-weight: 850;
  box-shadow: 0 6px 12px rgba(33,105,255,.2);
}
.audience-progress-card { margin-top: 8px; }
.audience-progress-title,
.audience-progress-bottom { display: flex; align-items: center; justify-content: space-between; }
.audience-progress-title b { font-size: 7px; }
.audience-progress-title span { color: #19ae70; font-size: 6px; font-weight: 850; }
.audience-progress-card > small { display: block; margin-top: 8px; color: #8a94a3; font-size: 5.5px; }
.audience-progress-card > strong { display: block; margin-top: 2px; font-size: 14px; }
.audience-progress-bottom { margin-top: 8px; color: #808b9b; font-size: 5.5px; }
.audience-progress-bottom b { color: #2767e7; font-size: 7px; }
.audience-progress-line { height: 5px; margin-top: 5px; border-radius: 99px; overflow: hidden; background: #e8edf5; }
.audience-progress-line i { display: block; width: 67%; height: 100%; border-radius: inherit; background: linear-gradient(90deg, #2169ff, #50a0ff); }
.audience-phone-nav {
  position: absolute;
  left: 10px;
  right: 10px;
  bottom: 9px;
  height: 24px;
  border-top: 1px solid #e5e9f0;
  display: grid;
  grid-template-columns: repeat(4,1fr);
  place-items: center;
}
.audience-phone-nav i {
  width: 7px;
  height: 7px;
  border: 1.4px solid #9da7b5;
  border-radius: 2px;
}
.audience-phone-nav i:first-child { border-color: var(--blue); background: rgba(33,105,255,.08); }
.audience-orbit--trainer-blue {
  width: 480px;
  height: 180px;
  right: -80px;
  bottom: -26px;
  color: rgba(33,105,255,.34);
  border-color: rgba(41,120,255,.45);
  transform: rotate(-8deg);
}
.audience-orbit--trainer-red {
  width: 460px;
  height: 155px;
  right: -120px;
  bottom: -42px;
  color: rgba(255,79,105,.3);
  border-color: rgba(255,79,105,.42);
  transform: rotate(11deg);
}
.audience-laptop {
  position: absolute;
  z-index: 3;
  width: 418px;
  right: -26px;
  bottom: 12px;
  filter: drop-shadow(0 25px 35px rgba(0,0,0,.32));
  transform: perspective(950px) rotateY(-4deg) rotateX(1deg);
  transform-origin: center bottom;
}
.audience-laptop-screen {
  width: 374px;
  height: 238px;
  margin-left: 16px;
  padding: 7px;
  border-radius: 14px 14px 8px 8px;
  background: linear-gradient(145deg, #263140, #080d15 48%, #1b2532);
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.13);
}
.trainer-ui {
  height: 100%;
  border-radius: 8px;
  overflow: hidden;
  display: grid;
  grid-template-columns: 42px 1fr;
  color: #dbe5f3;
  background: #08111d;
}
.trainer-ui-sidebar {
  padding: 11px 8px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 9px;
  background: #07101b;
  border-right: 1px solid rgba(255,255,255,.055);
}
.trainer-ui-sidebar b { margin-bottom: 5px; color: #fff; font-size: 7px; font-weight: 900; }
.trainer-ui-sidebar span { width: 18px; height: 15px; border-radius: 4px; background: rgba(255,255,255,.055); }
.trainer-ui-sidebar span.is-active { background: #1762ef; box-shadow: 0 4px 10px rgba(33,105,255,.25); }
.trainer-ui-main { min-width: 0; }
.trainer-ui-top {
  height: 42px;
  padding: 8px 12px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid rgba(255,255,255,.055);
}
.trainer-ui-top small,
.trainer-ui-top b { display: block; }
.trainer-ui-top small { color: #718096; font-size: 5px; }
.trainer-ui-top b { margin-top: 2px; color: #eef4fc; font-size: 8px; }
.trainer-ui-top > span { color: #5a687b; font-size: 7px; }
.trainer-ui-content {
  padding: 10px;
  display: grid;
  grid-template-columns: 1.45fr .85fr;
  gap: 9px;
}
.trainer-ui-schedule,
.trainer-ui-stats > div {
  border: 1px solid rgba(255,255,255,.06);
  border-radius: 7px;
  background: rgba(255,255,255,.025);
}
.trainer-ui-schedule { padding: 9px; }
.trainer-ui-section-title { display: flex; justify-content: space-between; align-items: center; }
.trainer-ui-section-title b { font-size: 6.5px; }
.trainer-ui-section-title span { color: #4d8dff; font-size: 5px; }
.trainer-ui-session {
  margin-top: 8px;
  padding: 7px;
  border-radius: 6px;
  display: grid;
  grid-template-columns: 5px 1fr auto;
  gap: 6px;
  align-items: center;
  background: rgba(255,255,255,.035);
}
.trainer-ui-session i { width: 5px; height: 5px; border-radius: 50%; background: var(--blue); }
.trainer-ui-session b,
.trainer-ui-session small { display: block; }
.trainer-ui-session b { font-size: 5.5px; }
.trainer-ui-session small { margin-top: 2px; color: #718096; font-size: 4.6px; }
.trainer-ui-session em {
  padding: 3px 4px;
  border-radius: 4px;
  color: #45d1a0;
  background: rgba(44,190,139,.08);
  font-size: 4.3px;
  font-style: normal;
}
.trainer-ui-stats { display: grid; gap: 7px; }
.trainer-ui-stats > div { position: relative; min-height: 50px; padding: 8px; overflow: hidden; }
.trainer-ui-stats small,
.trainer-ui-stats strong { display: block; }
.trainer-ui-stats small { max-width: 65px; color: #77869a; font-size: 5px; line-height: 1.3; }
.trainer-ui-stats strong { margin-top: 4px; color: #f7fbff; font-size: 12px; }
.trainer-ui-stats > div:last-child strong { font-size: 10px; }
.trainer-ui-ring {
  position: absolute;
  width: 23px;
  height: 23px;
  right: 7px;
  bottom: 7px;
  border: 3px solid rgba(255,255,255,.08);
  border-top-color: #36d99a;
  border-right-color: #36d99a;
  border-radius: 50%;
  transform: rotate(28deg);
}
.audience-laptop-base {
  position: relative;
  width: 418px;
  height: 20px;
  margin-top: -1px;
  border-radius: 3px 3px 15px 15px;
  background: linear-gradient(180deg, #5d6977, #c6ced6 32%, #52606d 62%, #151d27);
  clip-path: polygon(4% 0, 96% 0, 100% 78%, 92% 100%, 8% 100%, 0 78%);
}
.audience-laptop-base i {
  position: absolute;
  width: 76px;
  height: 4px;
  left: 50%;
  top: 3px;
  border-radius: 0 0 5px 5px;
  background: rgba(18,26,35,.55);
  transform: translateX(-50%);
}

.trust {
  padding: 56px 0 52px;
  background:
    radial-gradient(circle at 50% 22%, rgba(33,105,255,.035), transparent 34%),
    #fff;
}
.trust-shell { max-width: 1240px; }
.trust-heading { margin-bottom: 20px; }
.trust-heading h2 { font-size: clamp(28px, 2.7vw, 36px); }
.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border: 1px solid #e3e8f0;
  border-radius: 20px;
  overflow: hidden;
  background: rgba(255,255,255,.96);
  box-shadow: 0 14px 42px rgba(17,34,61,.045);
}
.trust-item {
  position: relative;
  min-width: 0;
  min-height: 104px;
  padding: 20px 22px;
  display: flex;
  align-items: center;
  gap: 14px;
  border-right: 1px solid #e8ecf2;
  background: linear-gradient(180deg, rgba(255,255,255,.98), rgba(252,253,255,.98));
  transition: background .2s ease, transform .2s ease;
}
.trust-item:last-child { border-right: 0; }
.trust-item:hover { background: #fff; transform: translateY(-1px); }
.trust-icon {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  color: var(--blue);
  background: linear-gradient(145deg, #f5f8ff, #eaf1ff);
  box-shadow: inset 0 0 0 1px rgba(33,105,255,.035);
}
.trust-icon svg { width: 25px; height: 25px; stroke-width: 1.75; }
.trust-item h3 {
  margin: 0;
  font-size: 14px;
  line-height: 1.25;
  letter-spacing: -.01em;
}
.trust-item p {
  margin: 6px 0 0;
  max-width: 190px;
  font-size: 11px;
  line-height: 1.48;
  color: var(--muted);
}

.faq { padding: 38px 0 62px; }
.faq .section-heading { margin-bottom: 22px; }
.faq-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  align-items: start;
}
.faq-column {
  overflow: hidden;
  border: 1px solid #e2e7ef;
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 15px 42px rgba(9, 20, 39, .035);
}
.faq-item {
  background: #fff;
  transition: background-color .2s ease;
}
.faq-item + .faq-item { border-top: 1px solid #e7ebf1; }
.faq-item summary {
  min-height: 58px;
  padding: 0 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  list-style: none;
  cursor: pointer;
  color: #111827;
  font-size: 13px;
  font-weight: 800;
  line-height: 1.35;
  transition: color .2s ease, background-color .2s ease;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::marker { content: ""; }
.faq-item summary:hover { background: #fafcff; color: var(--blue); }
.faq-item summary:focus-visible {
  position: relative;
  z-index: 2;
  outline: 3px solid rgba(33, 105, 255, .2);
  outline-offset: -3px;
}
.faq-question { min-width: 0; }
.faq-plus {
  position: relative;
  width: 18px;
  height: 18px;
  flex: 0 0 18px;
  color: #1f2937;
  transition: transform .22s ease, color .22s ease;
}
.faq-plus::before,
.faq-plus::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 11px;
  height: 1.8px;
  border-radius: 2px;
  background: currentColor;
  transform: translate(-50%, -50%);
}
.faq-plus::after { transform: translate(-50%, -50%) rotate(90deg); }
.faq-item[open] { background: #fbfcff; }
.faq-item[open] summary { color: var(--blue); }
.faq-item[open] .faq-plus { color: var(--blue); transform: rotate(45deg); }
.faq-item p {
  margin: 0;
  padding: 0 48px 17px 18px;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.58;
}

.final-cta { padding: 12px 0 36px; }
.final-cta-inner { min-height: 180px; padding: 34px 40px; border-radius: 26px; color: white; background: linear-gradient(135deg,#06101f,#0e1a32 56%,#240a1a); display: flex; align-items: center; justify-content: space-between; gap: 30px; position: relative; overflow: hidden; }
.final-cta h2 { margin: 0; font-size: clamp(28px,3.2vw,42px); letter-spacing: -.035em; }
.final-cta p { margin: 8px 0 0; color: rgba(255,255,255,.68); }
.final-actions { display:flex; gap:12px; flex: 0 0 auto; }
.cta-lights { position:absolute; inset:0; pointer-events:none; background: radial-gradient(ellipse at -6% 110%, transparent 0 46%, rgba(33,105,255,.75) 47%, transparent 49%), radial-gradient(ellipse at 112% 115%, transparent 0 48%, rgba(255,79,105,.72) 49%, transparent 51%); opacity:.72; }
.final-cta-inner > *:not(.cta-lights) { position:relative; z-index:2; }

.site-footer { padding: 14px 0 30px; }
.footer-inner { display: flex; align-items: center; gap: 28px; }
.brand--footer { width: 130px; }
.footer-inner p { margin: 0; color: var(--muted); font-size: 11px; }
.footer-inner nav { margin-left: auto; display: flex; gap: 24px; }
.footer-inner nav a { font-size: 10px; color: var(--muted); }

.reveal { opacity: 0; transform: translateY(16px); transition: opacity .65s ease, transform .65s ease; }
.reveal.is-visible { opacity: 1; transform: none; }
.reveal--delay { transition-delay: .1s; }

@media (max-width: 1080px) {
  .desktop-nav { display: none; }
  .menu-toggle { display: block; }
  
  
  
  
  
}

@media (max-width: 820px) {
  .trust { padding: 50px 0 46px; }
  .trust-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .trust-item:nth-child(2) { border-right: 0; }
  .trust-item:nth-child(-n+2) { border-bottom: 1px solid #e8ecf2; }
}

@media (max-width: 560px) {
  .trust { padding: 44px 0 40px; }
  .trust-heading { margin-bottom: 16px; }
  .trust-grid { grid-template-columns: 1fr; border-radius: 18px; }
  .trust-item {
    min-height: 92px;
    padding: 17px 18px;
    border-right: 0;
    border-bottom: 1px solid #e8ecf2;
  }
  .trust-item:nth-child(2) { border-right: 0; }
  .trust-item:nth-child(-n+2) { border-bottom: 1px solid #e8ecf2; }
  .trust-item:last-child { border-bottom: 0; }
  .trust-icon { width: 42px; height: 42px; border-radius: 13px; }
  .trust-item p { max-width: none; }
}

@media (max-width: 760px) {
  .shell { width: min(calc(100% - 28px), var(--shell)); }
  .header-inner { height: 64px; }
  .brand { width: 112px; }
  .header-actions > .button { display:none; }
  
  
  
  
  
  
  
  
  
  
  
  .section { padding: 78px 0; }
  .faq { padding: 34px 0 48px; }
  .faq .section-heading { margin-bottom: 17px; }
  .faq-grid { grid-template-columns: 1fr; gap: 12px; }
  .faq-column { border-radius: 16px; }
  .faq-item summary { min-height: 56px; padding: 0 16px; font-size: 12.5px; }
  .faq-item p { padding: 0 42px 16px 16px; }
  .final-cta-inner { flex-direction:column; align-items:flex-start; padding:28px 22px; }
  .final-actions { width:100%; display:grid; grid-template-columns:1fr; }
  .footer-inner { flex-wrap:wrap; }
  .footer-inner nav { width:100%; margin:0; flex-wrap:wrap; gap:12px 18px; }
}

@media (max-width: 1120px) {
  .audience-grid { grid-template-columns: minmax(0, .94fr) minmax(0, 1.06fr); }
  .audience-card { min-height: 410px; padding: 25px; }
  .audience-card--client { grid-template-columns: minmax(0, 1fr) 170px; }
  .audience-card--trainer { grid-template-columns: 170px minmax(0, 1fr); }
  .audience-card h2 { font-size: clamp(25px, 2.7vw, 32px); }
  .check-list { gap: 11px; }
  .check-list li { font-size: 12px; }
  .audience-phone { width: 170px; height: 338px; }
  .audience-laptop { width: 350px; right: -40px; }
  .audience-laptop-screen { width: 318px; height: 218px; margin-left: 13px; }
  .audience-laptop-base { width: 350px; }
  .trainer-ui { grid-template-columns: 36px 1fr; }
  .trainer-ui-content { grid-template-columns: 1.35fr .85fr; padding: 8px; gap: 7px; }
  .trainer-ui-session { padding: 6px; }
}

@media (max-width: 980px) and (min-width: 861px) {
  .audience-laptop { width: 300px; right: -42px; }
  .audience-laptop-screen { width: 272px; height: 202px; margin-left: 11px; }
  .audience-laptop-base { width: 300px; }
  .trainer-ui { grid-template-columns: 31px 1fr; }
  .trainer-ui-sidebar { padding-inline: 6px; }
  .trainer-ui-content { grid-template-columns: 1.28fr .78fr; padding: 7px; gap: 6px; }
  .trainer-ui-session { margin-top: 6px; padding: 5px; gap: 4px; }
  .trainer-ui-stats { gap: 5px; }
  .trainer-ui-stats > div { min-height: 44px; padding: 6px; }
}

@media (max-width: 860px) {
  .audience { padding-top: 28px; }
  .audience-grid { grid-template-columns: 1fr; }
  .audience-card { min-height: 420px; }
  .audience-card--client { grid-template-columns: minmax(0, 1fr) 210px; }
  .audience-card--trainer { grid-template-columns: 210px minmax(0, 1fr); }
  .audience-phone { width: 188px; height: 362px; }
  .audience-laptop { width: 430px; right: -20px; }
  .audience-laptop-screen { width: 386px; height: 238px; margin-left: 17px; }
  .audience-laptop-base { width: 430px; }
}

@media (max-width: 620px) {
  .audience { padding: 18px 0 40px; }
  .audience-card {
    min-height: 0;
    padding: 25px 21px;
    grid-template-columns: 1fr;
    gap: 12px;
    border-radius: 22px;
  }
  .audience-card--client,
  .audience-card--trainer { grid-template-columns: 1fr; }
  .audience-card h2 { max-width: 315px; font-size: 29px; }
  .check-list { margin: 21px 0 22px; }
  .check-list li { font-size: 13px; }
  .audience-button { width: 100%; }
  .audience-visual { width: 100%; min-height: 330px; margin-top: 10px; }
  .audience-visual--trainer { min-height: 260px; }
  .audience-phone { width: 176px; height: 342px; bottom: -28px; }
  .audience-laptop { width: 338px; right: 50%; bottom: 4px; transform: translateX(50%) perspective(950px) rotateY(-3deg); }
  .audience-laptop-screen { width: 304px; height: 205px; margin-left: 13px; }
  .audience-laptop-base { width: 338px; }
  .trainer-ui { grid-template-columns: 34px 1fr; }
  .trainer-ui-content { grid-template-columns: 1.32fr .8fr; }
  .audience-orbit--trainer-blue,
  .audience-orbit--trainer-red { right: -150px; }
}

@media (max-width: 390px) {
  .audience-card h2 { font-size: 27px; }
  .audience-laptop { width: 312px; }
  .audience-laptop-screen { width: 281px; height: 195px; margin-left: 12px; }
  .audience-laptop-base { width: 312px; }
  .trainer-ui-stats > div { padding: 6px; }
  .trainer-ui-stats strong { font-size: 10px; }
}

@media (prefers-reduced-motion: reduce) {
  * { scroll-behavior:auto !important; transition:none !important; animation:none !important; }
  .reveal { opacity:1; transform:none; }
}

.hm-laptop {
  position: absolute;
  z-index: 2;
  width: 620px;
  height: 430px;
  left: 72px;
  top: 58px;
  transform: perspective(1350px) rotateY(-4deg) rotateX(1deg);
  transform-origin: center bottom;
}

.hm-laptop-screen {
  position: relative;
  height: 376px;
  overflow: hidden;
  padding: 10px;
  border: 1px solid rgba(255,255,255,.68);
  border-radius: 25px 25px 16px 16px;
  background: linear-gradient(145deg, #151b25, #05070a);
  box-shadow: 0 28px 70px rgba(7,13,24,.22), inset 0 0 0 1px rgba(255,255,255,.08);
}

.hm-laptop-screen::before {
  content: "";
  position: absolute;
  width: 5px;
  height: 5px;
  left: 50%;
  top: 3px;
  border-radius: 50%;
  background: #303844;
  transform: translateX(-50%);
  z-index: 4;
}

.hm-dashboard {
  height: 100%;
  display: grid;
  grid-template-columns: 62px 1fr;
  overflow: hidden;
  border-radius: 16px 16px 9px 9px;
  background: #f5f7fb;
}

.hm-sidebar {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
  padding: 19px 0;
  background: #0b1422;
}

.hm-sidebar span {
  width: 25px;
  height: 25px;
  border-radius: 8px;
  background: rgba(255,255,255,.07);
}

.hm-sidebar span.is-active {
  background: linear-gradient(145deg, #2169ff, #4b86ff);
  box-shadow: 0 8px 18px rgba(33,105,255,.32);
}

.hm-brand-mark {
  width: 28px;
  height: 28px;
  margin-bottom: 2px;
  display: grid;
  place-items: center;
  border-radius: 9px;
  color: #fff;
  background: linear-gradient(145deg, #2169ff, #ff4f69);
  font-size: 10px;
  font-weight: 900;
}

.hm-main {
  padding: 20px 20px 16px;
}

.hm-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 14px;
}

.hm-topbar strong {
  font-size: 18px;
}

.hm-topbar > div {
  display: flex;
  align-items: center;
  gap: 10px;
}

.hm-topbar i {
  width: 17px;
  height: 17px;
  border: 2px solid #b4bdc9;
  border-top-color: transparent;
  border-radius: 50%;
}

.hm-topbar b {
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #315274;
  background: #dce7f3;
  font-size: 9px;
}

.hm-dashboard-grid {
  display: grid;
  grid-template-columns: 1.04fr .96fr;
  gap: 11px;
}

.hm-panel {
  min-width: 0;
  border: 1px solid #e3e8ef;
  border-radius: 14px;
  background: #fff;
  box-shadow: 0 8px 20px rgba(10,17,30,.035);
}

.hm-panel small {
  color: #7e8897;
}

.hm-panel--session,
.hm-panel--progress {
  min-height: 142px;
  padding: 13px;
}

.hm-panel--calendar,
.hm-panel--list {
  min-height: 132px;
  padding: 12px;
}

.hm-panel--session > small {
  font-size: 8px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .05em;
}

.hm-session-person {
  display: grid;
  grid-template-columns: 32px 1fr;
  gap: 8px;
  align-items: center;
  margin-top: 10px;
}

.hm-session-person > span {
  width: 32px;
  height: 32px;
  display: grid;
  place-items: center;
  border-radius: 10px;
  color: #36577a;
  background: #dbe6f2;
  font-size: 7px;
  font-weight: 900;
}

.hm-session-person strong,
.hm-session-person em {
  display: block;
}

.hm-session-person strong {
  font-size: 9px;
}

.hm-session-person em {
  margin-top: 2px;
  color: #9199a5;
  font-size: 6px;
  font-style: normal;
}

.hm-session-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 10px;
}

.hm-session-meta b {
  font-size: 8px;
}

.hm-session-meta span {
  padding: 4px 7px;
  border-radius: 999px;
  color: #0b956f;
  background: #e8faf4;
  font-size: 6px;
  font-weight: 850;
}

.hm-panel--session button {
  width: 100%;
  height: 27px;
  margin-top: 9px;
  border: 0;
  border-radius: 8px;
  color: #fff;
  background: linear-gradient(90deg, #1762ef, #347cff);
  font-size: 7px;
  font-weight: 850;
}

.hm-panel-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}

.hm-panel-head small {
  font-size: 8px;
  font-weight: 800;
}

.hm-panel-head strong {
  color: #2169ff;
  font-size: 8px;
}

.hm-panel-head span {
  color: #9ba3ad;
  font-size: 6px;
}

.hm-panel--progress svg {
  width: 100%;
  height: 86px;
  margin-top: 9px;
}

.hm-area {
  fill: url(#hmArea);
  stroke: none;
}

.hm-line {
  fill: none;
  stroke: #2169ff;
  stroke-width: 4;
  stroke-linecap: round;
}

.hm-week,
.hm-days {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 3px;
  margin-top: 10px;
  text-align: center;
}

.hm-week span {
  color: #9ba4b1;
  font-size: 6px;
  font-weight: 850;
}

.hm-days {
  margin-top: 5px;
}

.hm-days span,
.hm-days b {
  height: 22px;
  display: grid;
  place-items: center;
  border-radius: 7px;
  font-size: 7px;
}

.hm-days span {
  color: #596373;
}

.hm-days b {
  color: #fff;
  background: #0a0d12;
}

.hm-times {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 5px;
  margin-top: 9px;
}

.hm-times span,
.hm-times b {
  height: 23px;
  display: grid;
  place-items: center;
  border: 1px solid #e1e6ec;
  border-radius: 7px;
  font-size: 6px;
}

.hm-times span {
  color: #7c8592;
}

.hm-times b {
  color: #1762ef;
  border-color: #9bb9ff;
  background: #f0f5ff;
}

.hm-list-row {
  display: grid;
  grid-template-columns: 7px 1fr auto;
  gap: 7px;
  align-items: center;
  margin-top: 9px;
  padding: 7px;
  border-radius: 8px;
  background: #f7f9fc;
}

.hm-list-row i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #2169ff;
}

.hm-list-row strong,
.hm-list-row small {
  display: block;
}

.hm-list-row strong {
  font-size: 7px;
}

.hm-list-row small {
  margin-top: 2px;
  font-size: 5px;
}

.hm-list-row > b {
  color: #1762ef;
  font-size: 5px;
}

.hm-laptop-base {
  position: absolute;
  width: 690px;
  height: 48px;
  left: -35px;
  bottom: 3px;
  border-radius: 5px 5px 55% 55%;
  background: linear-gradient(180deg, #d9dee6 0%, #929ba8 52%, #d8dce3 100%);
  box-shadow: 0 22px 36px rgba(10,17,28,.17);
  transform: perspective(760px) rotateX(66deg);
  transform-origin: top center;
}

.hm-laptop-base span {
  position: absolute;
  width: 96px;
  height: 7px;
  left: 50%;
  top: 2px;
  border-radius: 0 0 12px 12px;
  background: #7f8894;
  transform: translateX(-50%);
}

/* v5.7 — “Как это работает”: compact preview-aligned steps. */
@media (max-width: 980px) {
  .steps-grid {
    max-width: 820px;
    grid-template-columns: minmax(0, 1fr) 32px minmax(0, 1fr) 32px minmax(0, 1fr);
  }
  .step-arrow { width: 32px; }
  .step-arrow svg { width: 25px; }
  .step-card { padding-inline: 20px; }
  .step-card p { margin-left: 0; }
}

@media (max-width: 760px) {
  .how { padding: 56px 0 62px; }
  .how-heading { margin-bottom: 12px; }
  .role-tabs { margin-bottom: 22px; }
  .role-tab { min-width: 104px; padding-inline: 18px; }
  .steps-grid { grid-template-columns: 1fr; gap: 12px; max-width: 520px; }
  .step-arrow { display: none; }
  .step-card { min-height: 0; padding: 20px; }
  .step-title { margin-top: 15px; }
  .step-card p { margin: 9px 0 0 25px; }
}

@media (max-width: 480px) {
  .how { padding: 50px 0 54px; }
  .how-heading h2 { font-size: 29px; }
  .role-tabs { width: 100%; max-width: 272px; }
  .role-tab { flex: 1; min-width: 0; padding-inline: 12px; }
  .step-card { border-radius: 16px; }
  .step-icon { width: 46px; height: 46px; border-radius: 14px; }
  .step-icon svg { width: 27px; height: 27px; }
  .step-card h3 { font-size: 15px; }
  .step-card p { font-size: 12px; }
}

/* v5.6 — hero foundation: consolidated hybrid scene based on v5.5. */
:focus-visible {
  outline: 3px solid rgba(33, 105, 255, .38);
  outline-offset: 3px;
}

body { overflow-x: hidden; }
section[id] { scroll-margin-top: 88px; }
.steps-grid[hidden], .mobile-menu[hidden] { display: none !important; }
.footer-link-disabled { font-size: 10px; color: var(--muted); cursor: default; }
.reveal { opacity: 1; transform: none; }
.js .reveal { opacity: 0; transform: translateY(14px); }
.js .reveal.is-visible { opacity: 1; transform: none; }

.site-header {
  background: rgba(255,255,255,.9);
  border-bottom-color: rgba(228,232,239,.64);
}

.hero {
  position: relative;
  padding: 34px 0 0;
  overflow: hidden;
  background:
    radial-gradient(circle at 73% 19%, rgba(33,105,255,.075), transparent 29%),
    radial-gradient(circle at 94% 59%, rgba(255,79,105,.052), transparent 23%),
    linear-gradient(180deg, #fff 0%, #fcfdff 68%, #f7f9fd 100%);
}

.hero-ambient {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 38% 38%, rgba(33,105,255,.055) 0 2px, transparent 3px),
    radial-gradient(circle at 96% 16%, rgba(33,105,255,.08) 0 7px, transparent 8px),
    radial-gradient(circle at 58% 70%, rgba(255,255,255,.96) 0 4px, transparent 5px);
  background-size: auto;
  border: 0;
  border-radius: 0;
  box-shadow: none;
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(440px, .88fr) minmax(650px, 1.12fr);
  gap: 18px;
  align-items: center;
}

.hero-copy {
  position: relative;
  z-index: 20;
  padding: 44px 0 38px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  text-transform: uppercase;
  letter-spacing: .09em;
  font-size: 11px;
  font-weight: 900;
}

.eyebrow span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--blue);
  box-shadow: 0 0 0 6px rgba(33,105,255,.09), 0 0 18px rgba(33,105,255,.34);
}

.hero h1 {
  max-width: 610px;
  margin: 21px 0 0;
  font-size: clamp(43px, 4.35vw, 63px);
  line-height: 1.015;
  letter-spacing: -.052em;
}

.hero h1 > span { display: block; white-space: nowrap; }
.hero h1 em { color: var(--blue); font-style: normal; }
.hero h1 strong { color: var(--red); font-weight: 800; }

.hero-lead {
  max-width: 535px;
  margin: 23px 0 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.62;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 26px;
}

.hero-actions .button--large { min-width: 205px; }

.hero-mini-benefits {
  display: grid;
  grid-template-columns: repeat(4, minmax(0,1fr));
  gap: 14px;
  max-width: 590px;
  margin-top: 30px;
}

.hero-mini-benefits > div { min-width: 0; }
.hero-mini-benefits b, .hero-mini-benefits small { display: block; }
.hero-mini-benefits b { font-size: 11px; line-height: 1.25; }
.hero-mini-benefits small { margin-top: 3px; color: var(--muted); font-size: 10px; line-height: 1.3; }

.mini-icon,
.value-icon {
  display: grid;
  place-items: center;
  color: var(--blue);
  background: linear-gradient(145deg, #f7faff, #eaf2ff);
  border: 1px solid rgba(33,105,255,.08);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.9);
}

.mini-icon {
  width: 34px;
  height: 34px;
  margin-bottom: 8px;
  border-radius: 11px;
}

.mini-icon svg { width: 18px; height: 18px; }

.hero-visual--native {
  position: relative;
  min-height: 535px;
  display: grid;
  place-items: center;
  overflow: visible;
}

.hm-stage {
  position: relative;
  width: 805px;
  height: 535px;
  flex: 0 0 auto;
  isolation: isolate;
  transform-origin: center center;
}

.hm-stage::before {
  content: "";
  position: absolute;
  z-index: -8;
  inset: 42px 18px 42px 28px;
  border-radius: 48%;
  pointer-events: none;
  background:
    radial-gradient(ellipse at 53% 45%, rgba(255,255,255,.98) 0 29%, rgba(238,246,255,.71) 50%, rgba(33,105,255,.05) 68%, transparent 80%),
    radial-gradient(ellipse at 77% 76%, rgba(255,79,105,.055), transparent 45%);
  filter: blur(5px);
}

.hm-stage::after {
  content: "";
  position: absolute;
  z-index: 0;
  left: 108px;
  right: 43px;
  bottom: 23px;
  height: 74px;
  border-radius: 50%;
  pointer-events: none;
  background: radial-gradient(ellipse at center, rgba(9,22,43,.24), rgba(9,22,43,.05) 48%, transparent 74%);
  filter: blur(17px);
}

.hero-visual--native .hm-light-layer {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 1015px;
  max-width: none;
  height: auto;
  margin: 0;
  transform: translate(-50%, -50%);
  filter: none;
  mix-blend-mode: normal;
  pointer-events: none;
  user-select: none;
}

.hero-visual--native .hm-light-layer--back {
  z-index: -6;
  opacity: .95;
  filter: saturate(1.03);
}

.hero-visual--native .hm-light-layer--front {
  z-index: 7;
  opacity: .97;
  filter: saturate(1.08);
}

.hm-laptop {
  z-index: 2;
  width: 632px;
  height: 437px;
  left: 66px;
  top: 49px;
  transform: perspective(1550px) rotateY(-2.4deg) rotateX(1.2deg) rotateZ(-.45deg);
  transform-origin: center bottom;
  filter: drop-shadow(0 34px 32px rgba(8,19,38,.16));
}

.hm-laptop-screen {
  height: 365px;
  padding: 9px;
  border-radius: 24px 24px 15px 15px;
  border-color: rgba(255,255,255,.7);
  box-shadow:
    0 29px 72px rgba(5,13,28,.22),
    0 0 0 1px rgba(50,105,196,.1),
    0 0 38px rgba(43,108,255,.12),
    inset 0 0 0 1px rgba(255,255,255,.1);
}

.hm-dashboard { grid-template-columns: 56px 1fr; }
.hm-sidebar { gap: 13px; padding: 17px 0; }
.hm-sidebar span { width: 23px; height: 23px; border-radius: 7px; }
.hm-brand-mark { width: 29px; height: 29px; font-size: 10px; }
.hm-main { padding: 17px 17px 14px; }
.hm-topbar { margin-bottom: 12px; }
.hm-topbar strong { font-size: 17px; }
.hm-dashboard-grid { gap: 10px; }
.hm-panel--session, .hm-panel--progress { min-height: 139px; padding: 12px; }
.hm-panel--calendar, .hm-panel--list { min-height: 127px; padding: 11px; }
.hm-panel--progress svg { height: 78px; }

.hm-session-person > span {
  position: relative;
  overflow: hidden;
  color: transparent;
  background: linear-gradient(145deg, #ffe4da, #f3b9b6 55%, #475a76 56%);
}

.hm-session-person > span::before {
  content: "";
  position: absolute;
  width: 12px;
  height: 12px;
  left: 10px;
  top: 5px;
  border-radius: 50%;
  background: #f0c1a9;
  box-shadow: 0 -3px 0 #4a2f2c;
}

.hm-session-person > span::after {
  content: "";
  position: absolute;
  width: 24px;
  height: 18px;
  left: 4px;
  bottom: -7px;
  border-radius: 50% 50% 20% 20%;
  background: #172c4b;
}

.hm-laptop-base {
  width: 700px;
  height: 91px;
  left: -34px;
  bottom: -1px;
  overflow: hidden;
  border-radius: 6px 6px 48% 48%;
  background: linear-gradient(180deg, #f8fafd 0%, #d5dde8 34%, #9ba8b9 66%, #687688 100%);
  box-shadow:
    0 21px 31px rgba(7,19,39,.22),
    -24px 8px 31px rgba(43,108,255,.2),
    27px 11px 32px rgba(255,73,104,.17);
  transform: perspective(800px) rotateX(62deg);
  clip-path: polygon(5% 0, 95% 0, 100% 84%, 93% 100%, 7% 100%, 0 84%);
}

.hm-laptop-base::before {
  content: "";
  position: absolute;
  left: 73px;
  right: 73px;
  top: 10px;
  height: 42px;
  border: 1px solid rgba(10,17,28,.2);
  border-radius: 5px;
  opacity: .82;
  background-color: #1b2431;
  background-image:
    repeating-linear-gradient(90deg, rgba(255,255,255,.16) 0 10px, transparent 10px 14px),
    repeating-linear-gradient(0deg, rgba(255,255,255,.13) 0 7px, transparent 7px 11px);
  box-shadow: inset 0 -7px 12px rgba(0,0,0,.22);
}

.hm-laptop-base::after {
  content: "";
  position: absolute;
  width: 122px;
  height: 29px;
  left: 50%;
  bottom: 7px;
  border: 1px solid rgba(70,83,101,.32);
  border-radius: 6px;
  background: rgba(231,236,243,.48);
  transform: translateX(-50%);
}

.hm-laptop-base span { width: 96px; height: 5px; top: 0; z-index: 2; background: #7a8796; }

.hm-phone {
  position: absolute;
  z-index: 5;
  width: 193px;
  height: 398px;
  right: 22px;
  top: 111px;
  padding: 6px;
  border: 2px solid #171c24;
  border-radius: 34px;
  background: #07090c;
  box-shadow:
    0 34px 58px rgba(4,12,28,.31),
    0 0 0 1px rgba(255,255,255,.25),
    -8px 0 32px rgba(43,108,255,.2),
    12px 12px 30px rgba(255,73,104,.16);
  transform: perspective(1000px) rotateY(-5deg) rotateZ(1.2deg);
}

.hm-phone-notch {
  position: absolute;
  z-index: 4;
  width: 65px;
  height: 16px;
  left: 50%;
  top: 10px;
  border-radius: 999px;
  background: #05070a;
  transform: translateX(-50%);
}

.hm-phone-screen {
  position: relative;
  height: 100%;
  overflow: hidden;
  padding: 13px 10px 48px;
  border-radius: 27px;
  background: #f8faff;
}

.hm-phone-status {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 4px;
  color: #202734;
  font-size: 6px;
  font-weight: 850;
}

.hm-phone-signals { display: flex; align-items: end; gap: 2px; height: 7px; }
.hm-phone-signals i { display: block; width: 2px; border-radius: 2px; background: #202734; }
.hm-phone-signals i:nth-child(1) { height: 3px; }
.hm-phone-signals i:nth-child(2) { height: 5px; }
.hm-phone-signals i:nth-child(3) { height: 7px; }

.hm-phone-toolbar {
  display: grid;
  grid-template-columns: 24px 1fr 24px;
  align-items: center;
  margin-top: 15px;
}

.hm-phone-toolbar strong { text-align: center; font-size: 10px; }
.hm-phone-toolbar button { width: 24px; height: 24px; padding: 0; display: grid; place-items: center; border: 0; color: #253043; background: transparent; }
.hm-phone-toolbar svg { width: 13px; height: 13px; }

.hm-phone-filters {
  display: flex;
  gap: 4px;
  margin-top: 11px;
  padding-bottom: 9px;
  border-bottom: 1px solid #e7ebf2;
}

.hm-phone-filters span,
.hm-phone-filters b {
  min-width: 31px;
  height: 19px;
  padding: 0 7px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  font-size: 5px;
  font-style: normal;
}

.hm-phone-filters span { color: #657082; background: #eef1f6; }
.hm-phone-filters b { color: #fff; background: #2169ff; }

.hm-trainer-list { display: grid; gap: 7px; margin-top: 9px; }
.hm-trainer-card {
  display: grid;
  grid-template-columns: 35px minmax(0,1fr) auto;
  gap: 7px;
  align-items: center;
  min-height: 65px;
  padding: 8px 7px;
  border: 1px solid #e4e9f0;
  border-radius: 11px;
  background: #fff;
  box-shadow: 0 7px 17px rgba(11,18,31,.04);
}
.hm-trainer-card--muted { opacity: .72; }
.hm-trainer-card strong, .hm-trainer-card small, .hm-trainer-card em { display: block; }
.hm-trainer-card strong { overflow: hidden; color: #202633; font-size: 6.5px; line-height: 1.25; text-overflow: ellipsis; white-space: nowrap; }
.hm-trainer-card small { margin-top: 3px; color: #8b94a2; font-size: 5px; line-height: 1.2; }
.hm-trainer-card em { margin-top: 5px; color: #30394a; font-size: 5px; font-style: normal; font-weight: 800; }
.hm-trainer-card > b { align-self: end; padding: 3px 4px; border-radius: 5px; color: #ad7612; background: #fff6d8; font-size: 5px; }

.hm-trainer-avatar {
  position: relative;
  width: 35px;
  height: 43px;
  overflow: hidden;
  border-radius: 8px;
  background: linear-gradient(145deg, #dceaff, #aac9ff);
}
.hm-trainer-avatar::before {
  content: "";
  position: absolute;
  width: 14px;
  height: 14px;
  left: 10px;
  top: 7px;
  border-radius: 50%;
  background: #e8b99f;
  box-shadow: 0 -4px 0 #49342e;
}
.hm-trainer-avatar::after {
  content: "";
  position: absolute;
  width: 31px;
  height: 27px;
  left: 2px;
  bottom: -11px;
  border-radius: 50% 50% 12% 12%;
  background: #111c31;
}
.hm-trainer-avatar--man { background: linear-gradient(145deg, #f1e6dd, #d6baa5); }
.hm-trainer-avatar--man::before { background: #c78e6d; box-shadow: 0 -4px 0 #2d211e; }
.hm-trainer-avatar--man::after { background: #33435d; }
.hm-trainer-avatar--woman-two { background: linear-gradient(145deg, #e5dfff, #b9abef); }
.hm-trainer-avatar--woman-two::after { background: #3e2b5d; }

.hm-phone-nav {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 43px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  align-items: center;
  border-top: 1px solid #e4e8ef;
  background: rgba(255,255,255,.96);
}
.hm-phone-nav span { display: grid; place-items: center; color: #9ba4b2; }
.hm-phone-nav span.is-active { color: #2169ff; }
.hm-phone-nav svg { width: 12px; height: 12px; }

.value-strip {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(4,1fr);
  margin-top: 3px;
  overflow: hidden;
  border: 1px solid rgba(224,229,237,.9);
  border-radius: 22px;
  background: rgba(255,255,255,.92);
  box-shadow: 0 18px 46px rgba(10,19,38,.065);
  backdrop-filter: blur(12px);
}
.value-strip article {
  min-height: 93px;
  padding: 20px 24px;
  display: flex;
  align-items: center;
  gap: 14px;
  border-right: 1px solid var(--line);
}
.value-strip article:last-child { border-right: 0; }
.value-icon { width: 42px; height: 42px; flex: 0 0 auto; border-radius: 13px; }
.value-icon svg { width: 21px; height: 21px; }
.value-strip h3 { margin: 0; font-size: 14px; }
.value-strip p { margin: 5px 0 0; color: var(--muted); font-size: 11px; line-height: 1.42; }

@media (max-width: 1320px) {
  .hero-grid { grid-template-columns: minmax(405px, .91fr) minmax(585px, 1.09fr); gap: 8px; }
  .hm-stage { transform: scale(.9); }
}

@media (max-width: 1080px) {
  .desktop-nav { display: none; }
  .menu-toggle { display: block; }
  .header-actions { margin-left: auto; }
  .hero { padding-top: 24px; }
  .hero-grid { grid-template-columns: 1fr; gap: 0; }
  .hero-copy { padding: 30px 0 8px; }
  .hero h1 { max-width: 760px; font-size: clamp(42px, 6.1vw, 58px); }
  .hero h1 > span { display: inline; white-space: normal; }
  .hero h1 > span:not(:last-child)::after { content: " "; }
  .hero-lead { max-width: 650px; }
  .hero-mini-benefits { max-width: 600px; grid-template-columns: repeat(4,minmax(0,1fr)); }
  .hero-visual--native { min-height: 500px; }
  .hm-stage { transform: scale(.86); }
  .value-strip article { padding-inline: 18px; }
}

@media (max-width: 900px) {
  .hero-visual--native { min-height: 470px; }
  .hm-stage { transform: scale(.8); }
}

@media (max-width: 760px) {
  .hero { padding-top: 16px; }
  .hero-copy { padding: 24px 0 5px; }
  .hero h1 { margin-top: 18px; font-size: clamp(35px, 10.6vw, 47px); line-height: 1.02; }
  .hero h1 > span { display: block; }
  .hero h1 > span:not(:last-child)::after { content: none; }
  .hero-lead { margin-top: 19px; font-size: 15px; line-height: 1.58; }
  .hero-actions { display: grid; grid-template-columns: 1fr 1fr; gap: 9px; margin-top: 22px; }
  .hero-actions .button { min-width: 0; padding-inline: 11px; font-size: 11px; }
  .hero-mini-benefits { grid-template-columns: repeat(2, 1fr); gap: 14px 18px; margin-top: 24px; }
  .hero-visual--native { min-height: 365px; margin-top: 6px; overflow: hidden; }
  .hm-stage { position: absolute; left: 50%; top: -5px; transform: translateX(-50%) scale(.61); transform-origin: top center; }
  .hero-visual--native .hm-light-layer { width: 990px; }
  .value-strip { grid-template-columns: 1fr 1fr; margin-top: 0; }
  .value-strip article { min-height: 89px; padding: 17px 15px; }
  .value-strip article:nth-child(2) { border-right: 0; }
  .value-strip article:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
  .value-strip h3 { font-size: 13px; }
  .value-strip p { font-size: 10px; }
}

@media (max-width: 440px) {
  .hero h1 { font-size: clamp(33px, 10.2vw, 43px); }
  .hero-actions { grid-template-columns: 1fr; }
  .hero-actions .button { min-height: 50px; font-size: 12px; }
  .hero-visual--native { min-height: 300px; }
  .hm-stage { top: 0; transform: translateX(-50%) scale(.495); }
  .value-strip article { align-items: flex-start; gap: 10px; padding: 15px 12px; }
  .value-icon { width: 36px; height: 36px; border-radius: 11px; }
  .value-icon svg { width: 18px; height: 18px; }
}

@media (prefers-reduced-motion: reduce) {
  .reveal, .js .reveal { opacity: 1; transform: none; }
}

/* v5.11 — final call to action and footer aligned with the approved preview. */
.final-cta {
  padding: 18px 0 24px;
}
.final-cta-inner {
  min-height: 178px;
  padding: 30px 36px 28px;
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 24px;
  color: #fff;
  background:
    radial-gradient(circle at 50% -35%, rgba(66,110,255,.12), transparent 52%),
    linear-gradient(112deg, #06101f 0%, #091426 47%, #151126 77%, #250b1b 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 18px;
  text-align: center;
  position: relative;
  isolation: isolate;
  overflow: hidden;
  box-shadow: 0 20px 48px rgba(5,13,27,.13);
}
.final-cta-copy {
  position: relative;
  z-index: 3;
  max-width: 760px;
}
.final-cta h2 {
  margin: 0;
  font-size: clamp(25px, 2.5vw, 36px);
  line-height: 1.08;
  letter-spacing: -.035em;
}
.final-cta p {
  margin: 7px 0 0;
  color: rgba(255,255,255,.68);
  font-size: 12px;
  line-height: 1.55;
}
.final-actions {
  position: relative;
  z-index: 3;
  display: flex;
  gap: 14px;
  justify-content: center;
}
.final-actions .button {
  min-width: 218px;
  min-height: 48px;
  border-radius: 12px;
  font-size: 12px;
  box-shadow: 0 12px 28px rgba(0,0,0,.18);
}
.final-actions .button:hover {
  transform: translateY(-2px) scale(1.01);
}
.cta-lights {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  overflow: hidden;
  opacity: 1;
  background: none;
}
.cta-light {
  position: absolute;
  left: 50%;
  bottom: -89px;
  width: 920px;
  height: 168px;
  border: 2px solid currentColor;
  border-radius: 50%;
  transform: translateX(-50%);
  filter: drop-shadow(0 0 10px currentColor) drop-shadow(0 0 24px currentColor);
  opacity: .85;
}
.cta-light::before,
.cta-light::after {
  content: "";
  position: absolute;
  inset: 15px -18px -13px;
  border: 1px solid currentColor;
  border-radius: 50%;
  opacity: .52;
}
.cta-light::after {
  inset: 31px -34px -27px;
  opacity: .24;
}
.cta-light--blue {
  color: #1e72ff;
  margin-left: -255px;
  transform: translateX(-50%) rotate(2deg);
}
.cta-light--red {
  color: #ff375f;
  margin-left: 280px;
  transform: translateX(-50%) rotate(-2deg);
}
.final-cta-inner::after {
  content: "";
  position: absolute;
  z-index: 2;
  left: 20%;
  right: 20%;
  bottom: -42px;
  height: 92px;
  border-radius: 50%;
  background: radial-gradient(ellipse, rgba(48,88,255,.16), transparent 66%);
  filter: blur(12px);
  pointer-events: none;
}
.final-cta-inner > *:not(.cta-lights) {
  position: relative;
  z-index: 3;
}

.site-footer {
  padding: 0 0 28px;
  background: #fff;
}
.footer-inner {
  min-height: 72px;
  display: grid;
  grid-template-columns: 136px minmax(170px, 1fr) auto auto;
  align-items: center;
  gap: 28px;
}
.brand--footer {
  width: 126px;
}
.footer-copy {
  margin: 0;
  color: #7a8493;
  font-size: 10px;
  white-space: nowrap;
}
.footer-docs {
  margin: 0;
  display: flex;
  align-items: center;
  gap: 24px;
}
.footer-link-disabled {
  color: #727d8e;
  font-size: 10px;
  line-height: 1.3;
  cursor: default;
  white-space: nowrap;
}
.footer-socials {
  display: flex;
  align-items: center;
  gap: 9px;
}
.footer-social {
  width: 31px;
  height: 31px;
  border: 1px solid #bfc6d1;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: #506074;
  background: #fff;
}
.footer-social svg {
  width: 17px;
  height: 17px;
  stroke-width: 1.6;
}
.footer-social--disabled {
  opacity: .82;
  cursor: default;
}

@media (max-width: 940px) {
  .final-cta-inner { min-height: 166px; padding-inline: 26px; }
  .cta-light { width: 760px; }
  .cta-light--blue { margin-left: -210px; }
  .cta-light--red { margin-left: 225px; }
  .footer-inner {
    grid-template-columns: 126px 1fr auto;
    gap: 18px 24px;
  }
  .footer-docs {
    grid-column: 2 / 4;
    grid-row: 2;
    justify-content: flex-end;
  }
  .footer-socials {
    grid-column: 3;
    grid-row: 1;
  }
}

@media (max-width: 760px) {
  .final-cta { padding: 10px 0 20px; }
  .final-cta-inner {
    min-height: 0;
    padding: 29px 20px 26px;
    border-radius: 20px;
    align-items: center;
    gap: 19px;
    text-align: center;
  }
  .final-cta h2 { max-width: 520px; font-size: clamp(25px, 7vw, 31px); }
  .final-cta p { max-width: 390px; margin-inline: auto; }
  .final-actions {
    width: min(100%, 440px);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }
  .final-actions .button {
    min-width: 0;
    width: 100%;
    padding-inline: 12px;
    font-size: 11px;
  }
  .cta-light {
    bottom: -82px;
    width: 590px;
    height: 138px;
  }
  .cta-light--blue { margin-left: -164px; }
  .cta-light--red { margin-left: 175px; }

  .site-footer { padding-bottom: 24px; }
  .footer-inner {
    min-height: 0;
    padding-top: 8px;
    grid-template-columns: 1fr auto;
    gap: 14px 18px;
  }
  .brand--footer { width: 116px; }
  .footer-copy {
    grid-column: 1 / -1;
    grid-row: 2;
    white-space: normal;
  }
  .footer-docs {
    grid-column: 1 / -1;
    grid-row: 3;
    justify-content: flex-start;
    flex-wrap: wrap;
    gap: 8px 18px;
  }
  .footer-socials {
    grid-column: 2;
    grid-row: 1;
  }
}

@media (max-width: 480px) {
  .final-cta-inner { padding: 27px 16px 24px; }
  .final-cta h2 { font-size: 26px; }
  .final-actions { grid-template-columns: 1fr; max-width: 292px; }
  .final-actions .button { min-height: 47px; font-size: 12px; }
  .cta-light { width: 470px; bottom: -76px; }
  .cta-light--blue { margin-left: -132px; }
  .cta-light--red { margin-left: 141px; }
  .footer-inner { grid-template-columns: 1fr; }
  .footer-socials { grid-column: 1; grid-row: 2; }
  .footer-copy { grid-column: 1; grid-row: 3; }
  .footer-docs { grid-column: 1; grid-row: 4; display: grid; gap: 8px; }
}

/* v5.12.1 — compact header only */
.site-header {
  background: rgba(255,255,255,.94);
}
.site-header .header-inner {
  height: 64px;
  gap: 22px;
}
.site-header .brand {
  width: 126px;
}
.site-header .desktop-nav {
  gap: 28px;
}
.site-header .desktop-nav a {
  font-size: 12px;
  font-weight: 700;
}
.site-header .header-actions {
  gap: 8px;
}
.site-header .header-actions .button {
  min-height: 42px;
  padding-inline: 18px;
  border-radius: 13px;
  font-size: 13px;
}
.site-header .header-actions .button svg {
  width: 17px;
  height: 17px;
}
.site-header .menu-toggle {
  width: 42px;
  height: 42px;
  padding: 10px;
}
@media (max-width: 1024px) {
  .site-header .header-inner {
    height: 60px;
    gap: 16px;
  }
  .site-header .brand {
    width: 120px;
  }
}
@media (max-width: 760px) {
  .site-header .brand {
    width: 116px;
  }
  .site-header .header-inner {
    height: 58px;
  }
  section[id] {
    scroll-margin-top: 74px;
  }
}

/* v5.13.0 — final cross-page polish and responsive audit. */
section[id] {
  scroll-margin-top: 78px;
}

.hero-grid,
.hero-copy,
.hero-visual--native,
.audience-grid,
.audience-card,
.faq-grid,
.trust-grid {
  min-width: 0;
}

.hero-visual--native {
  width: 100%;
}

/* The compact header has enough room for the approved desktop navigation
   on standard tablets and small laptops. */
@media (min-width: 901px) and (max-width: 1080px) {
  .site-header .desktop-nav {
    display: flex;
    gap: 22px;
  }
  .site-header .desktop-nav a {
    font-size: 11px;
  }
  .site-header .menu-toggle {
    display: none;
  }
  .site-header .header-actions {
    margin-left: 0;
  }
  .site-header .header-actions .button {
    min-height: 40px;
    padding-inline: 16px;
    font-size: 12px;
  }
}

/* Prevent the fixed-size hybrid device scene from widening the tablet grid.
   The scene remains layered HTML/CSS and is visually centred inside its cell. */
@media (max-width: 1080px) {
  .hero-copy,
  .hero-visual--native {
    max-width: 100%;
  }
  .hero-visual--native {
    overflow: hidden;
  }
}

@media (max-width: 900px) {
  .site-header .desktop-nav {
    display: none;
  }
  .site-header .menu-toggle {
    display: block;
  }
  .site-header .header-actions {
    margin-left: auto;
  }
}

@media (max-width: 760px) {
  section[id] {
    scroll-margin-top: 70px;
  }
}

/* v5.13.3 — transition layers moved behind the hero content. */
.hero {
  padding-bottom: 38px;
}
.hero-grid {
  z-index: 2;
}
.hero::after {
  content: "";
  position: absolute;
  z-index: 0;
  left: 0;
  right: 0;
  bottom: -1px;
  height: 218px;
  pointer-events: none;
  background:
    radial-gradient(ellipse at 52% 100%, rgba(33,105,255,.052), transparent 66%),
    linear-gradient(180deg, rgba(247,249,253,0) 0%, rgba(247,249,253,.28) 58%, #f7f9fd 100%);
}
.hero-transition {
  position: relative;
  z-index: 3;
  margin-top: -58px;
  padding: 0;
  scroll-margin-top: 78px;
  background: transparent;
  isolation: isolate;
}
.hero-transition::before {
  content: "";
  position: absolute;
  z-index: -2;
  left: 0;
  right: 0;
  top: 58px;
  height: 156px;
  pointer-events: none;
  background:
    radial-gradient(ellipse at 50% 0%, rgba(33,105,255,.024), transparent 55%),
    linear-gradient(180deg, rgba(247,249,253,.68) 0%, rgba(250,252,255,.28) 48%, rgba(255,255,255,0) 100%);
}
.hero-transition::after {
  content: "";
  position: absolute;
  z-index: -1;
  left: 50%;
  top: 54px;
  width: min(86vw, 1040px);
  height: 84px;
  transform: translateX(-50%);
  border-radius: 50%;
  background: radial-gradient(ellipse, rgba(33,105,255,.038), transparent 70%);
  filter: blur(16px);
  opacity: .25;
  pointer-events: none;
}
.hero-transition .value-strip {
  position: relative;
  z-index: 2;
  margin-top: 0;
  box-shadow:
    0 12px 30px rgba(10,19,38,.045),
    0 2px 8px rgba(33,105,255,.018),
    inset 0 1px 0 rgba(255,255,255,.98);
}
.how {
  position: relative;
  z-index: 1;
  margin-top: -2px;
  padding-top: 29px;
  background:
    radial-gradient(ellipse at 50% 0%, rgba(33,105,255,.016), transparent 30%),
    linear-gradient(180deg, rgba(250,252,255,.62) 0%, #fff 170px);
}

@media (max-width: 760px) {
  .hero {
    padding-bottom: 27px;
  }
  .hero::after {
    height: 168px;
    background:
      radial-gradient(ellipse at 50% 100%, rgba(33,105,255,.042), transparent 68%),
      linear-gradient(180deg, rgba(247,249,253,0) 0%, rgba(247,249,253,.24) 60%, #f7f9fd 100%);
  }
  .hero-transition {
    margin-top: -38px;
    scroll-margin-top: 72px;
  }
  .hero-transition::before {
    top: 38px;
    height: 142px;
  }
  .hero-transition::after {
    top: 36px;
    height: 78px;
    opacity: .22;
  }
  .how {
    margin-top: -1px;
    padding-top: 25px;
  }
}

@media (max-width: 440px) {
  .hero {
    padding-bottom: 23px;
  }
  .hero-transition {
    margin-top: -31px;
  }
  .hero-transition::before {
    top: 31px;
    height: 132px;
  }
  .hero-transition::after {
    top: 29px;
  }
  .how {
    padding-top: 23px;
  }
}


/* v5.13.4 — keep the transition below the section content and restore full contrast. */
.how-shell {
  position: relative;
  z-index: 4;
}
.how-heading,
.role-tabs {
  position: relative;
  z-index: 5;
  opacity: 1 !important;
  transform: none !important;
}
.how-heading h2 {
  color: var(--ink);
  opacity: 1;
}
.role-tabs {
  filter: none;
}

/* v5.13.5 — remove the full-width transition rectangle and keep only a soft centered glow. */
.hero-transition::before {
  left: 50%;
  right: auto;
  top: 48px;
  width: min(1120px, calc(100% - 56px));
  height: 142px;
  transform: translateX(-50%);
  border-radius: 50%;
  background: radial-gradient(
    ellipse at 50% 0%,
    rgba(33,105,255,.034) 0%,
    rgba(247,249,253,.23) 35%,
    rgba(255,255,255,0) 74%
  );
  filter: blur(18px);
  opacity: .72;
}
.hero-transition::after {
  top: 52px;
  width: min(920px, calc(100% - 110px));
  height: 74px;
  background: radial-gradient(ellipse, rgba(33,105,255,.032), transparent 72%);
  filter: blur(18px);
  opacity: .22;
}
.how {
  background:
    radial-gradient(ellipse at 50% 0%, rgba(33,105,255,.012), transparent 28%),
    #fff;
}

@media (max-width: 760px) {
  .hero-transition::before {
    top: 31px;
    width: calc(100% - 32px);
    height: 126px;
    filter: blur(15px);
  }
  .hero-transition::after {
    top: 34px;
    width: calc(100% - 70px);
    height: 66px;
  }
}

@media (max-width: 440px) {
  .hero-transition::before {
    top: 26px;
    width: calc(100% - 24px);
    height: 118px;
  }
  .hero-transition::after {
    top: 28px;
    width: calc(100% - 48px);
  }
}

/* v5.13.6 — tighten the vertical rhythm between “Как это работает” and the audience cards. */
.how {
  padding-bottom: 24px;
}
.audience {
  padding-top: 24px;
}

@media (max-width: 860px) {
  .how {
    padding-bottom: 22px;
  }
  .audience {
    padding-top: 22px;
  }
}

@media (max-width: 620px) {
  .how {
    padding-bottom: 20px;
  }
  .audience {
    padding-top: 18px;
  }
}

/* v5.13.7 — align the lower-section vertical rhythm. */
.audience {
  padding-bottom: 26px;
}
.trust {
  padding-top: 34px;
  padding-bottom: 26px;
}
.faq {
  padding-top: 28px;
}

@media (max-width: 860px) {
  .audience {
    padding-bottom: 22px;
  }
  .trust {
    padding-top: 26px;
    padding-bottom: 22px;
  }
  .faq {
    padding-top: 24px;
  }
}

@media (max-width: 620px) {
  .audience {
    padding-bottom: 18px;
  }
  .trust {
    padding-top: 22px;
    padding-bottom: 18px;
  }
  .faq {
    padding-top: 20px;
  }
}

/* v5.13.8 — compact mobile header and navigation only. */
@media (max-width: 900px) {
  .site-header {
    overflow: visible;
  }

  .site-header .header-inner {
    height: 58px;
    gap: 12px;
  }

  .site-header .brand {
    width: 104px;
  }

  .site-header .menu-toggle {
    width: 44px;
    height: 44px;
    padding: 10px;
    border-radius: 13px;
    box-shadow: 0 7px 20px rgba(14, 31, 61, .055);
  }

  .site-header .menu-toggle span {
    height: 2px;
    margin: 3px 0;
  }

  .mobile-menu {
    position: absolute;
    z-index: 110;
    top: 100%;
    left: 0;
    right: 0;
    border-top: 0;
    background: transparent;
    padding: 10px 12px 14px;
  }

  .mobile-menu::before {
    content: "";
    position: fixed;
    z-index: -1;
    inset: 58px 0 0;
    background: rgba(8, 14, 25, .18);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
  }

  .mobile-menu-inner {
    width: min(100%, 520px);
    margin-inline: auto;
    padding: 10px;
    display: grid;
    gap: 2px;
    border: 1px solid rgba(220, 226, 235, .94);
    border-radius: 0 0 20px 20px;
    background: rgba(255, 255, 255, .98);
    box-shadow: 0 24px 60px rgba(10, 19, 38, .16);
  }

  .mobile-menu-inner > a:not(.button) {
    min-height: 46px;
    padding: 0 14px;
    display: flex;
    align-items: center;
    border-radius: 11px;
    font-size: 15px;
    line-height: 1.2;
    font-weight: 750;
  }

  .mobile-menu-inner > a:not(.button):hover,
  .mobile-menu-inner > a:not(.button):focus-visible {
    background: #f4f7fb;
  }

  .mobile-menu-inner .button {
    width: 100%;
    min-height: 48px;
    margin-top: 8px;
    border-radius: 13px;
    font-size: 14px;
  }

  body:has(.mobile-menu:not([hidden])) {
    overflow: hidden;
  }

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

@media (max-width: 480px) {
  .site-header .brand {
    width: 100px;
  }

  .mobile-menu {
    padding-inline: 10px;
  }

  .mobile-menu-inner {
    border-radius: 0 0 18px 18px;
  }
}

/* v5.13.9 — compact, fixed mobile menu card (Safari-safe). */
html {
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

@media (max-width: 900px) {
  body.mobile-menu-open {
    overflow: hidden;
    touch-action: none;
  }

  .site-header {
    overflow: visible;
  }

  .mobile-menu {
    position: fixed;
    z-index: 120;
    top: 58px;
    left: 0;
    right: 0;
    bottom: auto;
    padding: 8px 12px 0;
    border: 0;
    background: transparent;
  }

  .mobile-menu::before {
    content: "";
    position: fixed;
    z-index: -1;
    inset: 58px 0 0;
    background: rgba(7, 13, 24, .32);
    -webkit-backdrop-filter: blur(7px);
    backdrop-filter: blur(7px);
  }

  .mobile-menu-inner,
  .mobile-menu-inner.shell {
    width: min(calc(100% - 8px), 430px);
    height: auto;
    min-height: 0;
    max-height: none;
    margin: 0 auto;
    padding: 8px;
    display: grid;
    grid-template-columns: 1fr;
    grid-auto-rows: minmax(40px, auto);
    align-content: start;
    gap: 1px;
    border: 1px solid rgba(220, 226, 235, .98);
    border-radius: 16px;
    background: #fff;
    box-shadow: 0 22px 54px rgba(10, 19, 38, .22);
  }

  .mobile-menu-inner > a:not(.button) {
    width: 100%;
    min-height: 40px;
    height: 40px;
    padding: 0 12px;
    display: flex;
    align-items: center;
    border-radius: 9px;
    font-size: 14px;
    line-height: 1;
    font-weight: 750;
  }

  .mobile-menu-inner .button {
    width: 100%;
    min-height: 44px;
    height: 44px;
    margin-top: 6px;
    padding: 0 16px;
    border-radius: 11px;
    font-size: 14px;
  }
}

@media (max-width: 480px) {
  .mobile-menu {
    padding: 7px 10px 0;
  }

  .mobile-menu-inner,
  .mobile-menu-inner.shell {
    width: 100%;
    padding: 7px;
    border-radius: 15px;
  }

  .mobile-menu-inner > a:not(.button) {
    min-height: 39px;
    height: 39px;
    padding-inline: 11px;
    font-size: 13.5px;
  }

  .mobile-menu-inner .button {
    min-height: 43px;
    height: 43px;
  }
}

/* v5.13.10 — final compact open-state mobile navigation. */
@media (max-width: 900px) {
  .mobile-menu {
    top: 58px;
    padding: 6px 12px 0;
  }

  .mobile-menu::before {
    inset: 58px 0 0;
    background: rgba(7, 13, 24, .48);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
  }

  .mobile-menu-inner,
  .mobile-menu-inner.shell {
    width: min(calc(100% - 12px), 420px);
    padding: 6px;
    gap: 0;
    grid-auto-rows: 34px;
    border-radius: 15px;
    background: #fff;
    box-shadow: 0 18px 44px rgba(10, 19, 38, .24);
  }

  .mobile-menu-inner > a:not(.button) {
    min-height: 34px;
    height: 34px;
    padding: 0 12px;
    border-radius: 8px;
    font-size: 13px;
    line-height: 1;
    font-weight: 750;
  }

  .mobile-menu-inner .button {
    min-height: 42px;
    height: 42px;
    margin-top: 5px;
    padding: 0 14px;
    border-radius: 10px;
    font-size: 13px;
  }
}

@media (max-width: 480px) {
  .mobile-menu {
    padding: 6px 8px 0;
  }

  .mobile-menu-inner,
  .mobile-menu-inner.shell {
    width: 100%;
    padding: 6px;
    border-radius: 14px;
  }

  .mobile-menu-inner > a:not(.button) {
    min-height: 33px;
    height: 33px;
    padding-inline: 11px;
    font-size: 12.5px;
  }

  .mobile-menu-inner .button {
    min-height: 41px;
    height: 41px;
    margin-top: 5px;
    font-size: 13px;
  }
}

/* v5.13.11 — keep the mobile CTA inside the menu card. */
@media (max-width: 900px) {
  .mobile-menu-inner,
  .mobile-menu-inner.shell {
    height: auto;
    min-height: 0;
    max-height: none;
    grid-auto-rows: auto;
    align-content: start;
    overflow: hidden;
    padding-bottom: 7px;
  }

  .mobile-menu-inner > a:not(.button) {
    min-height: 34px;
    height: 34px;
  }

  .mobile-menu-inner .button {
    position: static;
    align-self: auto;
    min-height: 42px;
    height: 42px;
    margin: 5px 0 0;
    flex: 0 0 auto;
  }
}

@media (max-width: 480px) {
  .mobile-menu-inner,
  .mobile-menu-inner.shell {
    padding-bottom: 7px;
  }

  .mobile-menu-inner .button {
    min-height: 41px;
    height: 41px;
  }
}
/* v5.13.12 — final mobile density polish. Desktop and tablet layouts remain unchanged. */
@media (max-width: 620px) {
  .hero {
    padding-top: 10px;
  }

  .hero-copy {
    padding: 18px 0 2px;
  }

  .hero h1 {
    margin-top: 15px;
    font-size: clamp(32px, 9.5vw, 40px);
    line-height: 1.035;
    letter-spacing: -.042em;
  }

  .hero-lead {
    margin-top: 16px;
    font-size: 14px;
    line-height: 1.5;
  }

  .hero-actions {
    margin-top: 18px;
    gap: 8px;
  }

  .hero-actions .button {
    min-height: 48px;
  }

  .hero-mini-benefits {
    margin-top: 20px;
    gap: 12px 16px;
  }

  .hero-mini-benefits b {
    font-size: 10.5px;
  }

  .hero-mini-benefits small {
    font-size: 9.5px;
  }

  .hero-visual--native {
    min-height: 330px;
    margin-top: 0;
  }

  .hm-stage {
    top: -8px;
    transform: translateX(-50%) scale(.565);
  }

  .how {
    padding-top: 38px;
  }

  .how-heading {
    margin-bottom: 10px;
  }

  .how-heading h2 {
    font-size: 30px;
  }

  .role-tabs {
    margin-bottom: 18px;
  }

  .steps-grid {
    gap: 10px;
  }

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

  .step-icon {
    width: 42px;
    height: 42px;
    border-radius: 13px;
  }

  .step-icon svg {
    width: 24px;
    height: 24px;
  }

  .step-title {
    margin-top: 12px;
  }

  .step-card h3 {
    font-size: 14.5px;
  }

  .step-card p {
    margin: 7px 0 0 24px;
    font-size: 11.5px;
    line-height: 1.45;
  }

  .audience {
    padding-top: 16px;
  }

  .audience-grid {
    gap: 14px;
  }

  .audience-card {
    padding: 21px 18px;
    gap: 9px;
    border-radius: 20px;
  }

  .audience-card h2 {
    max-width: 300px;
    font-size: 27px;
    line-height: 1.04;
  }

  .check-list {
    margin: 17px 0 18px;
    gap: 10px;
  }

  .check-list li {
    font-size: 12.5px;
    line-height: 1.38;
  }

  .audience-button {
    min-height: 48px;
  }

  .audience-visual {
    min-height: 292px;
    margin-top: 4px;
  }

  .audience-visual--trainer {
    min-height: 232px;
  }

  .audience-phone {
    width: 160px;
    height: 312px;
    bottom: -25px;
  }

  .audience-laptop {
    width: 305px;
    bottom: 1px;
  }

  .audience-laptop-screen {
    width: 275px;
    height: 190px;
    margin-left: 12px;
  }

  .audience-laptop-base {
    width: 305px;
  }

  .trust {
    padding-top: 20px;
    padding-bottom: 16px;
  }

  .trust-heading {
    margin-bottom: 14px;
  }

  .trust-heading h2 {
    font-size: 31px;
  }

  .trust-grid {
    border-radius: 17px;
  }

  .trust-item {
    min-height: 82px;
    padding: 14px 15px;
    gap: 13px;
  }

  .trust-icon {
    width: 38px;
    height: 38px;
    border-radius: 12px;
  }

  .trust-icon svg {
    width: 22px;
    height: 22px;
  }

  .trust-item h3 {
    font-size: 14px;
  }

  .trust-item p {
    margin-top: 4px;
    font-size: 11.5px;
    line-height: 1.42;
  }

  .faq {
    padding-top: 18px;
    padding-bottom: 38px;
  }

  .faq .section-heading {
    margin-bottom: 15px;
  }

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

  .faq-grid {
    gap: 10px;
  }

  .faq-column {
    border-radius: 15px;
  }

  .faq-item summary {
    min-height: 52px;
    padding: 0 14px;
    gap: 12px;
    font-size: 12px;
    line-height: 1.35;
  }

  .faq-item p {
    padding: 0 38px 14px 14px;
    font-size: 11.5px;
    line-height: 1.5;
  }

  .faq-plus {
    width: 18px;
    height: 18px;
  }

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

  .final-cta-inner {
    padding: 24px 17px 22px;
    gap: 15px;
  }

  .final-cta h2 {
    font-size: 25px;
    line-height: 1.08;
  }

  .final-cta p {
    margin-top: 7px;
    font-size: 12px;
  }

  .final-actions {
    gap: 8px;
  }

  .final-actions .button {
    min-height: 46px;
  }

  .site-footer {
    padding-bottom: 20px;
  }
}

@media (max-width: 440px) {
  .hero h1 {
    font-size: clamp(31px, 9.2vw, 38px);
  }

  .hero-actions .button {
    min-height: 48px;
  }

  .hero-visual--native {
    min-height: 278px;
  }

  .hm-stage {
    top: -4px;
    transform: translateX(-50%) scale(.46);
  }

  .how-heading h2 {
    font-size: 28px;
  }

  .audience-card h2 {
    font-size: 25px;
  }

  .audience-visual {
    min-height: 276px;
  }

  .audience-visual--trainer {
    min-height: 220px;
  }

  .audience-phone {
    width: 152px;
    height: 298px;
  }

  .audience-laptop {
    width: 286px;
  }

  .audience-laptop-screen {
    width: 258px;
    height: 181px;
    margin-left: 11px;
  }

  .audience-laptop-base {
    width: 286px;
  }

  .trust-heading h2,
  .faq .section-heading h2 {
    font-size: 29px;
  }
}

/* v5.13.13 — active VK footer link */
.footer-social[href] {
  cursor: pointer;
  transition: color .2s ease, border-color .2s ease, background-color .2s ease, transform .2s ease;
}
.footer-social[href]:hover {
  color: var(--blue);
  border-color: rgba(33, 105, 255, .45);
  background: rgba(33, 105, 255, .06);
  transform: translateY(-1px);
}
.footer-social[href]:focus-visible {
  color: var(--blue);
}

/* v5.13.15 — Yandex Metrica cookie notice */
.footer-docs a {
  color: inherit;
  text-decoration: none;
  transition: color .18s ease;
}

.footer-docs a:hover {
  color: var(--blue);
}

.cookie-notice-layer {
  position: fixed;
  right: 0;
  bottom: 14px;
  left: 0;
  z-index: 5000;
  display: flex;
  justify-content: center;
  padding: 0 16px;
  pointer-events: none;
}

.cookie-notice-layer[hidden] {
  display: none;
}

.cookie-notice {
  width: min(1120px, 100%);
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 20px;
  padding: 15px 15px 15px 19px;
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: 17px;
  background: rgba(11, 14, 20, .97);
  box-shadow: 0 22px 72px rgba(15, 23, 42, .28);
  color: #fff;
  pointer-events: auto;
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.cookie-notice-copy {
  min-width: 0;
}

.cookie-notice h2 {
  margin: 0 0 4px;
  color: #fff;
  font-size: 14px;
  line-height: 1.25;
  font-weight: 760;
  letter-spacing: -.01em;
}

.cookie-notice p {
  margin: 0;
  color: rgba(255, 255, 255, .72);
  font-size: 11.5px;
  line-height: 1.5;
}

.cookie-notice-links {
  white-space: nowrap;
}

.cookie-notice a {
  color: #fff;
  text-decoration: underline;
  text-decoration-color: rgba(255, 255, 255, .35);
  text-underline-offset: 3px;
}

.cookie-notice a:hover {
  text-decoration-color: #fff;
}

.cookie-notice-button {
  min-width: 98px;
  min-height: 38px;
  padding: 0 17px;
  border: 0;
  border-radius: 11px;
  background: #fff;
  color: #111318;
  font: inherit;
  font-size: 12px;
  font-weight: 760;
  cursor: pointer;
  transition: opacity .18s ease, transform .18s ease;
}

.cookie-notice-button:hover {
  opacity: .92;
}

.cookie-notice-button:active {
  transform: scale(.98);
}

@media (max-width: 700px) {
  .cookie-notice-layer {
    bottom: calc(10px + env(safe-area-inset-bottom));
    padding: 0 10px;
  }

  .cookie-notice {
    grid-template-columns: 1fr;
    gap: 11px;
    padding: 14px;
    border-radius: 15px;
  }

  .cookie-notice h2 {
    font-size: 13px;
  }

  .cookie-notice p {
    font-size: 11px;
    line-height: 1.45;
  }

  .cookie-notice-links {
    white-space: normal;
  }

  .cookie-notice-button {
    width: 100%;
  }
}

@media (prefers-reduced-motion: reduce) {
  .cookie-notice-button {
    transition: none;
  }
}

.footer-docs a {
  font-size: 10px;
  line-height: 1.3;
  white-space: nowrap;
}
