/* ===== DESIGN TOKENS ===== */
:root {
  --bg-main: #F7F7F5;
  --bg-soft: #E7E8E2;
  --ink: #000E31;
  --ink-deep: #1a1a1a;
  --muted: #757573;
  --paper: #F7F7F5;
  --accent: #4BE0A4;
  --accent-teal: #4BE0CC;
  --glow: #2DD4BF;
}

/* ===== @FONT-FACE ===== */
/* WOFF2 preferred (30-50% smaller), OTF fallback. To convert: npx fonttools subset */
@font-face {
  font-family: "Stem";
  src: url("Font/EM-Stem/WOFF2/Stem-Light.woff2") format("woff2"),
       url("Font/EM-Stem/OTF/Stem-Light.otf") format("opentype");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Stem";
  src: url("Font/EM-Stem/WOFF2/Stem-Regular.woff2") format("woff2"),
       url("Font/EM-Stem/OTF/Stem-Regular.otf") format("opentype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Stem";
  src: url("Font/EM-Stem/WOFF2/Stem-Medium.woff2") format("woff2"),
       url("Font/EM-Stem/OTF/Stem-Medium.otf") format("opentype");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Stem";
  src: url("Font/EM-Stem/WOFF2/Stem-Bold.woff2") format("woff2"),
       url("Font/EM-Stem/OTF/Stem-Bold.otf") format("opentype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

/* ===== RESET ===== */
*, *::before, *::after { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }

body {
  background: var(--bg-main);
  color: var(--ink);
  font-family: "Stem", "Segoe UI", system-ui, sans-serif;
  font-weight: 400;
  line-height: 1.2;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
h1, h2, h3, p { margin: 0; }
ul { list-style: none; margin: 0; padding: 0; }

/* ===== FOCUS ===== */
:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
  border-radius: 4px;
}
.section-dark :focus-visible,
.hero :focus-visible {
  outline-color: var(--accent);
  outline-offset: 3px;
}

/* ===== SCREEN READER ONLY ===== */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* ===== SKIP LINK ===== */
.skip-link {
  position: absolute;
  top: -100%;
  left: 16px;
  z-index: 100;
  padding: 12px 24px;
  background: var(--accent);
  color: var(--ink);
  font-size: 16px;
  font-weight: 500;
  border-radius: 0 0 12px 12px;
  text-decoration: none;
  transition: top 0.2s;
}
.skip-link:focus {
  top: 0;
}

/* ===== LAYOUT ===== */
.page { overflow-x: hidden; }

.canvas {
  width: 100%;
  margin: 0 auto;
  background: var(--bg-main);
}

.section {
  position: relative;
  width: 100%;
  padding: 160px 0 220px;
}

.container {
  position: relative;
  z-index: 3;
  width: min(1200px, calc(100% - 48px));
  margin: 0 auto;
}

/* ===== SECTION THEMES ===== */
.section-light { background: var(--bg-main); }
.section-muted { background: var(--bg-soft); }
.section-dark { background: var(--ink); color: var(--paper); }

/* ===== SECTION LINE ===== */
.section-line {
  width: 100%;
  height: 2px;
  margin-bottom: 36px;
  background: var(--ink);
  opacity: 0.24;
}
.section-line-light {
  background: var(--paper);
  opacity: 0.42;
}

/* ===== SECTION GRID ===== */
.section-grid {
  display: grid;
  grid-template-columns: 200px minmax(0, 1fr);
  column-gap: clamp(40px, 12.5vw, 200px);
  align-items: start;
}

.section-grid-center {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 46px;
}

/* ===== SECTION CONTENT ===== */
.section-content {
  display: flex;
  flex-direction: column;
  gap: 46px;
}
.section-content-full {
  display: flex;
  flex-direction: column;
  gap: 46px;
}

/* ===== TYPOGRAPHY ===== */
.heading-sm {
  font-size: 24px;
  font-weight: 500;
  line-height: 1;
  color: var(--ink);
}
.heading-md {
  font-size: 34px;
  font-weight: 500;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--ink);
}
.heading-lg {
  font-size: 40px;
  font-weight: 300;
  line-height: 1.2;
  color: var(--ink);
}
.heading-lg-strong {
  font-weight: 400;
}

.light { color: var(--paper); }
.center { text-align: center; }

.source-text {
  font-size: 13px;
  font-weight: 400;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: var(--ink);
  text-align: right;
}

/* ===== CHIP ===== */
.chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  width: 200px;
  height: 44px;
  padding: 2px 20px;
  border-radius: 12px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
}
.chip img { width: 24px; height: 24px; }
.chip-dark { border: 2px solid var(--accent); color: var(--ink); }
.chip-light { border: 2px solid var(--accent); color: var(--paper); }

/* ===== BUTTON ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 38px;
  min-width: 267px;
  min-height: 56px;
  border-radius: 12px;
  font-size: 24px;
  font-weight: 500;
  line-height: 1;
  color: var(--ink);
  background: radial-gradient(circle at 50% 108%, var(--accent) 19.7%, #78e8bb 35%, #a5f0d2 50.2%, #d2f7e8 65.5%, #fff 80.8%);
  box-shadow: 0 0 20px 0 var(--glow);
  transition: transform 0.2s;
}
.btn:hover { transform: translateY(-2px); }

/* ===== TEXTURES ===== */
.texture {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}
.texture-a {
  background-image: linear-gradient(0deg, rgba(0, 14, 49, 0.2), rgba(0, 14, 49, 0.2)),
                     url("assets/texture-a.png");
}
.texture-b {
  background-image: linear-gradient(0deg, rgba(0, 14, 49, 0.2), rgba(0, 14, 49, 0.2)),
                     url("assets/texture-b.png");
}

/* ===== 1. HERO ===== */
.hero,
.hero-container {
  min-height: 900px;
  height: 100vh;
}

@supports (height: 100dvh) {
  .hero,
  .hero-container {
    height: 100dvh;
  }
}

.hero {
  padding: 0;
  overflow: hidden;
  background: #040E16;
}
.hero-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  z-index: 1;
}
.hero-container {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1600px;
  margin: 0 auto;
}

.brand-bar {
  position: absolute;
  left: 190px;
  top: 36.55px;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 15px;
}
.brand-mark {
  position: relative;
  width: 175px;
  height: 60px;
  flex-shrink: 0;
}
.brand-mark img {
  position: absolute;
  display: block;
}
.brand-text {
  left: 6.14%;
  top: 38.14%;
  width: 88.6%;
  height: 23.84%;
}
.brand-symbol {
  left: 33.77%;
  top: 0;
  width: 33.76%;
  height: 100%;
}
.brand-dot {
  left: 46.93%;
  top: 38.16%;
  width: 7.46%;
  height: 25%;
}
.brand-subtitle {
  color: var(--paper);
  font-size: 15.21px;
  font-weight: 700;
  letter-spacing: 1.14px;
  text-transform: uppercase;
  line-height: 1;
}

.hero-content {
  position: absolute;
  left: 195px;
  top: 150px;
  z-index: 3;
  width: 1038px;
}
.hero h1 {
  max-width: 845px;
  color: var(--paper);
  font-size: 80px;
  font-weight: 400;
  line-height: 1;
  letter-spacing: -0.02em;
}
.hero-lead {
  color: var(--paper);
  font-size: 30px;
  font-weight: 400;
  line-height: 1;
  letter-spacing: -0.02em;
  margin-top: 46px;
}
.pill-list {
  display: flex;
  gap: 6px;
  margin-top: 46px;
}
.pill {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  height: 52px;
  padding: 0 12px;
  border-radius: 12px;
  background: rgba(0, 14, 49, 0.65);
  color: var(--paper);
}
@supports (backdrop-filter: blur(1px)) {
  .pill {
    background: rgba(0, 14, 49, 0.4);
    backdrop-filter: blur(4.45px);
  }
}
.pill:nth-child(1),
.pill:nth-child(2) { width: 196px; }
.pill:nth-child(3) { width: 249px; }
.pill img { width: 20px; height: 20px; flex-shrink: 0; }
.pill span {
  font-size: 13px;
  font-weight: 400;
  line-height: 1.2;
  letter-spacing: -0.02em;
}
/* Hero CTA — SVG swap on hover */
.hero-cta {
  display: inline-block;
  position: relative;
  width: 267px;
  height: 56px;
  margin-top: 56px;
}
.hero-cta-default,
.hero-cta-hover {
  position: absolute;
  max-width: none;
  transition: opacity 0.25s ease;
}
.hero-cta-default {
  top: 0;
  left: 0;
  width: 267px;
  height: 56px;
  opacity: 1;
}
.hero-cta-hover {
  top: -20px;
  left: -20px;
  width: 303px;
  height: 96px;
  opacity: 0;
}
.hero-cta:hover .hero-cta-default { opacity: 0; }
.hero-cta:hover .hero-cta-hover   { opacity: 1; }

.final-cta-btn { margin-top: 0; }

/* ===== 2. CONTEXT / SLIDER ===== */
.section-context {
  min-height: 836px;
  padding: 160px 0 220px;
}
.slider {
  position: relative;
  height: 497px;
}
.slide {
  display: none;
  opacity: 0;
  transition: opacity 0.35s ease;
}
.slide.active {
  display: block;
  position: relative;
  height: 100%;
  opacity: 1;
}

.section-context .pager {
  position: absolute;
  bottom: 0;
  left: calc(200px + clamp(40px, 12.5vw, 200px));
}
.pager {
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  width: 130px;
  height: 40px;
  padding: 0 12px;
  border-radius: 12px;
  background: var(--ink);
  color: var(--paper);
  font-size: 13px;
  font-family: inherit;
  line-height: 1;
  gap: 4px;
  text-transform: uppercase;
  white-space: nowrap;
}
.pager-current,
.pager-sep,
.pager img {
  flex-shrink: 0;
}
.pager-sep { color: var(--muted); }
.pager img {
  width: 39px;
  height: 26px;
  margin-left: auto;
}

/* --- Slide 3 layout --- */
.slide3-layout .section-grid {
  margin-bottom: 36px;
}

.context-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
  width: 100%;
}
.context-card {
  display: flex;
  flex-direction: column;
  gap: 18px;
  padding: 28px 20px;
  border-radius: 12px;
  min-height: 240px;
  box-sizing: border-box;
}
.context-card-gray {
  background: #e7e8e2;
  flex: 1 1 300px;
  min-width: 0;
  transition: background 0.3s ease;
}
@media (hover: hover) {
  .context-card-gray:hover {
    background: #55eaae;
  }
}
.context-card-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}
.card-icon {
  width: 90px;
  height: 92px;
  flex-shrink: 0;
}
.card-label {
  font-size: 13px;
  font-weight: 400;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: var(--ink);
}
.context-card-text { display: flex; flex-direction: column; gap: 16px; }
.context-card h3 {
  font-size: 21px;
  font-weight: 400;
  line-height: 1.2;
  letter-spacing: -0.01em;
  color: var(--ink);
}
.context-card p {
  font-size: 13px;
  font-weight: 400;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: var(--ink);
}

/* ===== 3. SOLUTION ===== */
.section-solution {
  min-height: 1035px;
  overflow: hidden;
}
.solution-column {
  display: flex;
  flex-direction: column;
  gap: 68px;
  margin-top: 36px;
}
.solution-layout {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  gap: 36px;
}
.solution-text {
  display: flex;
  flex-direction: column;
  gap: 46px;
  width: min(592px, 100%);
  flex-shrink: 1;
  min-width: 0;
}
.lists-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
.list-title {
  color: var(--paper);
  font-size: 21px;
  font-weight: 400;
  line-height: 1.2;
  letter-spacing: -0.01em;
  padding: 10px 0;
}
.check-list { display: flex; flex-direction: column; gap: 10px; }
.check-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 12px;
  border-radius: 12px;
  background: rgba(0, 14, 49, 0.6);
}
@supports (backdrop-filter: blur(1px)) {
  .check-list li {
    background: rgba(0, 14, 49, 0.4);
    backdrop-filter: blur(3.15px);
  }
}
.check-list img { width: 20px; height: 20px; flex-shrink: 0; }
.check-list span {
  color: var(--paper);
  font-size: 13px;
  line-height: 1.2;
  letter-spacing: -0.02em;
}
.desktop-break {
  display: inline;
}

.illustration-wrap {
  width: 507px;
  max-width: 100%;
  flex-shrink: 0;
}
.solution-illustration {
  width: 100%;
  height: auto;
}

/* ===== 4. MECHANICS ===== */
.section-mechanics {
  min-height: 1398px;
  content-visibility: auto;
  contain-intrinsic-size: auto 1398px;
}
.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(320px, 100%), 1fr));
  gap: 4px;
}
.step-card {
  min-height: 238px;
  border-radius: 12px;
  padding: 28px 20px;
  background: var(--bg-soft);
  color: var(--ink);
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.step-card.dark { background: var(--ink); color: var(--paper); }
.step-card.accent { background: var(--accent); color: var(--ink); }
.step-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}
.step-num {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid currentColor;
  display: grid;
  place-items: center;
  font-size: 24px;
  font-weight: 500;
  line-height: 1;
}
.step-top img { width: 79px; height: 40px; }
.step-card h3 {
  font-size: 21px;
  font-weight: 400;
  line-height: 1.2;
  letter-spacing: -0.01em;
}
.step-card p {
  font-size: 13px;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

/* ===== 5. VALUE ===== */
.section-value {
  min-height: 1056px;
  overflow: hidden;
  content-visibility: auto;
  contain-intrinsic-size: auto 1056px;
}
.value-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(480px, 100%), 1fr));
  gap: 4px;
}
.value-card {
  height: 240px;
  border-radius: 12px;
  overflow: hidden;
  background: rgba(0, 14, 49, 0.6);
  color: var(--paper);
  display: grid;
  grid-template-columns: 240px 1fr;
}
@supports (backdrop-filter: blur(1px)) {
  .value-card {
    background: rgba(0, 14, 49, 0.4);
    backdrop-filter: blur(3.15px);
  }
}
.value-media {
  display: grid;
  place-items: center;
  background: var(--paper);
  border-radius: 12px 0 0 12px;
}
.value-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 1 / 1;
}
.value-text {
  padding: 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 28px;
}
.value-card h3 {
  font-size: 34px;
  font-weight: 500;
  line-height: 1.1;
  letter-spacing: -0.02em;
}
.value-card p {
  font-size: 19.6px;
  font-weight: 400;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

/* ===== 6. BIAS ===== */
.section-bias {
  min-height: 1066px;
  content-visibility: auto;
  contain-intrinsic-size: auto 1066px;
}
.section-bias .chip { margin-bottom: 56px; }
.bias-layout {
  display: grid;
  grid-template-columns: 1fr minmax(280px, 500px);
  gap: clamp(36px, 8vw, 116px);
  align-items: start;
}
.bias-text {
  display: flex;
  flex-direction: column;
  gap: 46px;
  padding-top: 30px;
}
.bias-notes { display: flex; flex-direction: column; gap: 4px; }

.bias-note {
  position: relative;
  width: 100%;
  height: 269px;
  overflow: visible;
}
.bias-note-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
.bias-note-content {
  position: relative;
  z-index: 2;
  padding: 32px 38px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 22px;
  height: 100%;
}
.bias-note-dark { color: var(--paper); }
.bias-note-light { color: var(--ink); }

.bias-note h3 {
  font-size: 24px;
  font-weight: 500;
  line-height: 1;
  text-align: center;
}
.bias-note p {
  font-size: 21px;
  font-weight: 400;
  line-height: 1.2;
  letter-spacing: -0.01em;
  text-align: center;
}
.bias-note-line {
  width: min(425px, 100%);
  height: 1px;
  margin: 0 auto;
}
.bias-note-dark .bias-note-line { background: rgba(247,247,245,0.3); }
.bias-note-light .bias-note-line { background: rgba(0,14,49,0.3); }

/* ===== 7. TABLE ===== */
.section-table {
  min-height: 1080px;
  content-visibility: auto;
  contain-intrinsic-size: auto 1080px;
}
.table-wrap {
  width: min(1200px, calc(100% - 48px));
  margin: 46px auto 0;
  overflow-x: auto;
}
.decision-table {
  display: grid;
  grid-template-columns: 196px 1fr 1fr;
  gap: 4px;
  width: 100%;
  min-width: 700px;
}
.decision-table thead,
.decision-table tbody { display: contents; }
.decision-table tr { display: contents; }
.decision-table th,
.decision-table td {
  padding: 10px 20px;
  border-radius: 12px;
  text-align: left;
  display: flex;
  align-items: center;
}
.decision-table thead th {
  background: var(--ink);
  color: var(--paper);
  font-size: 13px;
  font-weight: 500;
  line-height: 1.2;
}
.decision-table tbody td {
  background: var(--bg-soft);
  color: var(--ink);
  font-size: 21px;
  font-weight: 400;
  line-height: 1.2;
  letter-spacing: -0.01em;
  min-height: 100px;
}
.decision-table tbody td:first-child {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0;
}
.accent-cell { background: var(--accent) !important; }

/* ===== 8. FINAL CTA ===== */
.final-cta {
  min-height: 753px;
  padding: 160px clamp(24px, 12vw, 200px) 220px;
  text-align: center;
  overflow: visible;
}
.cta-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 36px;
}
.final-cta .section-line {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
}
.final-cta h2 {
  color: var(--paper);
  font-size: 56px;
  font-weight: 500;
  line-height: 1.2;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1660px) {
  .brand-bar { left: max(24px, 5vw); }
  .hero-content {
    left: max(24px, 5vw);
    width: min(1038px, calc(100% - max(48px, 10vw)));
  }
  .hero h1 { max-width: none; }
  .solution-layout { flex-direction: column; }
}

@media (max-width: 980px) {
  .desktop-break { display: none; }
  .section { min-height: 0 !important; padding: 110px 0 140px; }
  .section-grid { grid-template-columns: 1fr; row-gap: 28px; }
  .hero {
    min-height: 840px;
    height: auto !important;
    padding: 24px 0 120px;
  }
  .hero-video { object-position: 65% center; }
  .hero-container { width: calc(100% - 28px); min-height: 0; height: auto; margin: 0 auto; }
  .brand-bar { position: relative; left: auto; top: auto; margin: 0 0 53px; }
  .hero-content {
    position: relative;
    left: auto; top: auto;
    width: auto;
    display: flex;
    flex-direction: column;
    gap: 46px;
    padding: 0 14px;
  }
  .hero h1 { max-width: none; font-size: clamp(44px, 8vw, 72px); }
  .hero-lead { font-size: clamp(22px, 3.4vw, 30px); margin-top: 0; }
  .pill-list { flex-wrap: wrap; margin-top: 0; }
  .pill:nth-child(1), .pill:nth-child(2), .pill:nth-child(3) { width: fit-content; }
  .hero-cta { margin-top: 0; }
  .chip { width: fit-content; padding: 0 18px; }

  /* Слайдер: auto-height + пагинатор в поток */
  .slider { height: auto; }
  .slide.active { height: auto; }
  .section-context .pager { position: static; margin-top: 28px; }

  /* Value: убираем фиксированную высоту, стек */
  .value-card { grid-template-columns: 1fr; height: auto; }
  .value-media { min-height: 190px; border-radius: 12px 12px 0 0; }
  .value-grid { gap: 16px; }

  /* Lists: 1 колонка */
  .lists-grid { grid-template-columns: 1fr; gap: 24px; }

  /* Solution: уменьшаем gap между chip и контентом */
  .solution-column { gap: 40px; }

  /* Контекст-карточки */
  .context-cards { flex-direction: column; gap: 12px; }

  /* Steps: увеличиваем зазор между стэкающимися карточками */
  .steps-grid { gap: 12px; }

  /* Bias: фиксированная высота → auto */
  .bias-layout { grid-template-columns: 1fr; }
  .bias-note { height: auto; min-height: 200px; }
  .bias-notes { gap: 12px; }

  /* Таблица: зазор между строками */
  .decision-table { gap: 8px; }

  .final-cta h2 { font-size: clamp(34px, 6vw, 56px); }
}

@media (max-width: 640px) {
  /* Паддинги секций — экономим экран */
  .section { padding: 72px 0 90px; }
  .section-context { min-height: 0; padding: 72px 0 90px; }

  /* Hero */
  .hero { min-height: 700px; padding: 20px 0 80px; }
  .hero-video { object-position: 70% center; }
  .hero-content { gap: 32px; padding: 0 10px; }
  .hero h1 { font-size: clamp(36px, 9vw, 52px); }
  .hero-lead { font-size: clamp(18px, 4.5vw, 24px); }

  /* Контейнеры */
  .container, .section-line, .table-wrap {
    width: calc(100% - 28px);
  }

  /* Бренд */
  .brand-subtitle { font-size: 12px; letter-spacing: 0.7px; }
  .brand-mark { width: 150px; }

  /* Пилы → сетка */
  .pill-list { display: grid; gap: 8px; }
  .pill { width: 100% !important; }

  /* Кнопки */
  .btn { width: 100%; min-width: 0; font-size: 22px; }

  /* Типографика — fluid на маленьких экранах */
  .heading-lg { font-size: clamp(24px, 6vw, 34px); }
  .heading-md { font-size: clamp(22px, 5.5vw, 30px); }
  .heading-sm { font-size: 20px; }

  /* Убираем декоративные переносы */
  .hero h1 br,
  .heading-lg br,
  .heading-md br { display: none; }

  /* Value-карточки — адаптация текста */
  .value-card h3 { font-size: 26px; }
  .value-card p { font-size: 16px; }
  .value-text { padding: 16px; gap: 16px; }

  /* Step-карточки */
  .step-card { min-height: auto; }
  .step-card h3 { font-size: 18px; }

  /* Bias-заметки */
  .bias-note h3 { font-size: 20px; }
  .bias-note p { font-size: 17px; }
  .bias-note-content { padding: 24px 20px; }

  /* Контекст-карточки */
  .context-card { min-height: auto; padding: 22px 16px; }
  .card-icon { width: 70px; height: 72px; }
  .context-cards { gap: 10px; }

  /* Таблица — шрифты */
  .decision-table tbody td { font-size: 16px; min-height: 80px; }
  .decision-table { gap: 6px; }

  /* Финальный CTA */
  .final-cta { min-height: auto; padding: 72px 14px 90px; }
  .final-cta h2 { font-size: clamp(28px, 7vw, 40px); }
  .final-cta h2 br { display: none; }

  /* Solution-иллюстрация — скрываем на мобилке */
  .illustration-wrap { display: none; }

  /* Chip на мобилке */
  .section-bias .chip { margin-bottom: 32px; }

  /* Карточки — зазоры на мелких экранах */
  .steps-grid { gap: 10px; }
  .value-grid { gap: 12px; }
  .bias-notes { gap: 10px; }
  .check-list { gap: 8px; }

  /* Section content — чуть уменьшаем внутренний gap */
  .section-content { gap: 32px; }
  .section-content-full { gap: 32px; }

  /* Section-line — чуть меньше отступ */
  .section-line { margin-bottom: 24px; }
}

/* ===== REDUCED MOTION ===== */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  .hero-video { display: none; }
}

/* ===== TEXT OVERFLOW SAFETY ===== */
.heading-lg,
.heading-md,
.heading-sm,
.hero h1,
.hero-lead,
.value-card h3,
.value-card p,
.step-card h3,
.step-card p,
.bias-note h3,
.bias-note p {
  overflow-wrap: break-word;
  word-break: break-word;
}

/* ===== TABLE WRAP SCROLL HINT ===== */
.table-wrap:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
  border-radius: 12px;
}
