/* ─────────────────────────────────────────────
   Палитра & переменные
   ───────────────────────────────────────────── */
:root {
  --bg:         #15172a;
  --bg-dark:    #0f1122;
  --bg-elev:    #1c1f36;
  --line:       rgba(255, 255, 255, 0.08);

  --text:       #e9ecf5;
  --text-soft:  #b9bcd1;
  --text-mute:  #7f83a0;

  --teal:       #7ed4d9;
  --lavender:   #b5a5d8;

  --mint-glow:  rgba(56, 220, 200, 0.35);

  --grad-title: linear-gradient(90deg, #9ce0e3 0%, #c7b6ec 100%);
  --grad-mint:  linear-gradient(135deg, #3ef0a4 0%, #2ad4c5 50%, #2cb6e8 100%);

  --radius-sm: 12px;
  --radius:    20px;
  --radius-lg: 28px;

  --shadow-mint: 0 10px 32px -10px var(--mint-glow);

  --nav-h: 67px;
}

/* ─────────────────────────────────────────────
   Сброс
   ───────────────────────────────────────────── */
* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Manrope', system-ui, -apple-system, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  position: relative;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
ul, ol { list-style: none; }

.container {
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 clamp(14px, 4vw, 24px);
}

/* ─────────────────────────────────────────────
   Фоновое свечение (aurora)
   ───────────────────────────────────────────── */
.aurora {
  position: fixed;
  inset: 0;
  z-index: -1;
  overflow: hidden;
  pointer-events: none;
}
.aurora__blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
  opacity: 0.35;
  animation: float 18s ease-in-out infinite;
}
.aurora__blob--mint {
  width: 520px; height: 520px;
  background: #2bd99c;
  top: -120px; left: -120px;
  opacity: 0.18;
}
.aurora__blob--violet {
  width: 600px; height: 600px;
  background: #8a6cd6;
  top: 30%; right: -180px;
  opacity: 0.22;
  animation-delay: -6s;
}
.aurora__blob--teal {
  width: 480px; height: 480px;
  background: #4ab8c2;
  bottom: -160px; left: 30%;
  opacity: 0.18;
  animation-delay: -12s;
}
@keyframes float {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50%      { transform: translate(40px, -30px) scale(1.08); }
}

/* ─────────────────────────────────────────────
   Типографика — общая
   ───────────────────────────────────────────── */
h1, h2, h3 {
  font-family: 'Manrope', sans-serif;
  font-weight: 700;
  letter-spacing: -0.01em;
  line-height: 1.1;
  color: var(--text);
}

.eyebrow {
  display: inline-block;
  font-size: 18px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--teal);
  font-weight: 600;
  margin-bottom: 18px;
}
.eyebrow--center {
  display: block;
  text-align: center;
}

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

.section__title {
  font-size: clamp(24px, 6vw, 70px);
  margin-bottom: 18px;
  max-width: 820px;
  overflow-wrap: break-word;
}
.section__title--center {
  text-align: center;
  margin: 0 auto 24px;
}
.section__lead {
  font-size: 18px;
  color: var(--text-soft);
  max-width: 720px;
  margin-bottom: 24px;
}
.hint {
  color: var(--text-mute);
  font-size: 18px;
  font-style: italic;
  margin-top: 16px;
}

/* ─────────────────────────────────────────────
   Кнопки
   ───────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 32px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 18px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.3s ease, filter 0.2s ease;
  white-space: nowrap;
  border: none;
}
.btn--mint {
  background: var(--grad-mint);
  color: #0a1a22;
  box-shadow: var(--shadow-mint);
}
.btn--mint:hover {
  transform: translateY(-2px);
  filter: brightness(1.08);
  box-shadow: 0 14px 40px -10px var(--mint-glow);
}
.btn--sm { padding: 11px 22px; font-size: 18px; }

/* ─────────────────────────────────────────────
   Навигация
   ───────────────────────────────────────────── */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  background: rgba(21, 23, 42, 0.65);
  border-bottom: 1px solid var(--line);
}
.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 16px;
  padding-bottom: 16px;
  gap: 32px;
}
.nav__logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  font-size: 18px;
}
.nav__logo-mark {
  width: 34px;
  height: 34px;
  display: block;
  filter: drop-shadow(0 0 10px rgba(56, 220, 200, 0.45));
  transition: transform 0.6s ease;
}
.nav__logo:hover .nav__logo-mark {
  transform: rotate(60deg);
}
.nav__links {
  display: flex;
  gap: 28px;
  font-size: 18px;
  color: var(--text-soft);
}
.nav__links a {
  transition: color 0.2s ease;
}
.nav__links a:hover { color: var(--teal); }

/* ─────────────────────────────────────────────
   Hero — мобильная база
   ───────────────────────────────────────────── */
.hero {
  position: relative;
}
.hero__inner {
  text-align: center;
  width: 100%;
}
.hero__logo {
  width: 120px;
  height: auto;
  display: block;
  margin: 0 auto 18px;
  filter: drop-shadow(0 0 24px rgba(56, 220, 200, 0.35));
  animation: floaty 9s ease-in-out infinite;
}
@keyframes floaty {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50%      { transform: translateY(-6px) rotate(30deg); }
}
@media (prefers-reduced-motion: reduce) {
  .hero__logo { animation: none; }
}
.hero__title {
  font-size: clamp(28px, 8vw, 56px);
  font-weight: 800;
  letter-spacing: -0.02em;
  margin: 8px auto 50px;
  max-width: 920px;
  line-height: 1.05;
}
.hero__title .grad-text {
  background: var(--grad-mint);
  -webkit-background-clip: text;
          background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}
.hero__sub__header {
  font-size: clamp(18px, 6.5vw, 30px);
  color: var(--teal);
  margin: 0 auto 30px;
  line-height: 1.5;
}
.hero__titleh2 {
  font-size: clamp(20px, 5vw, 45px);
  font-weight: 600;
  letter-spacing: -0.015em;
  margin: 6px auto 30px;
  max-width: 920px;
  line-height: 1.2;
}
.hero__meta {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  max-width: 780px;
  margin: 24px auto 0;
  padding: 20px 22px;
  background: rgba(255, 255, 255, 0.025);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
}
.meta-item__value {
  font-size: 18px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 4px;
}
.meta-item__label {
  font-size: 13px;
  color: var(--text-mute);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.hero > .container:not(.hero__inner) {
  margin-top: 48px;
  text-align: center;
}

/* ─────────────────────────────────────────────
   Hero — десктоп: ровно один экран, всё умещается
   ───────────────────────────────────────────── */
@media (min-width: 861px) {
  .hero {
    min-height: calc(100vh - var(--nav-h));
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    padding-top: clamp(16px, 2.4vh, 32px);
    padding-bottom: clamp(20px, 3vh, 40px);
    gap: clamp(18px, 3.5vh, 44px);
  }

  .hero__logo        { width: clamp(300px, 11vh, 500px); margin-bottom: clamp(6px, 1vh, 14px); }
  .hero__title       { font-size: clamp(44px, 7.8vh, 88px); margin: clamp(4px, 0.6vh, 8px) auto 20px; }
  .hero__sub__header { font-size: clamp(22px, 2.6vh, 28px); margin: 0 auto 20px; }
  .hero__titleh2     { font-size: clamp(28px, 3.6vh, 40px); margin: 0 auto clamp(6px, 1vh, 14px); }
  .hero__meta        { margin: clamp(12px, 2.2vh, 28px) auto 0; padding: clamp(12px, 1.8vh, 20px) 22px; gap: clamp(12px, 1.6vh, 20px); }
  .meta-item__value  { font-size: 18px; }
  .meta-item__label  { font-size: 13px; }

  .hero > .container:not(.hero__inner) {
    margin-top: auto;
    margin-bottom: auto;
  }
  .hero > .container:not(.hero__inner) .eyebrow {
    margin-bottom: clamp(6px, 0.9vh, 12px);
  }
  .hero > .container:not(.hero__inner) .section__title {
    font-size: clamp(20px, 3.4vh, 34px);
    margin: 0 auto clamp(6px, 1vh, 14px);
    max-width: 820px;
    line-height: 1.15;
  }
  .hero > .container:not(.hero__inner) .section__lead {
    font-size: 18px;
    max-width: 720px;
    margin: 0 auto;
    line-height: 1.55;
  }
}

/* ─────────────────────────────────────────────
   Секции
   ───────────────────────────────────────────── */
.section {
  padding: clamp(48px, 9vw, 100px) 0;
  position: relative;
}
.section--dark {
  background: var(--bg-dark);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

/* ─────────────────────────────────────────────
   Pillars (4 направления)
   ───────────────────────────────────────────── */
.pillars {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
  margin-top: 56px;
}
.pillar {
  padding: 36px 32px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  transition: transform 0.3s ease, border-color 0.3s ease, background 0.3s ease;
}
.pillar:hover {
  transform: translateY(-4px);
  border-color: rgba(126, 212, 217, 0.25);
  background: rgba(255, 255, 255, 0.035);
}
.pillar__title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(22px, 5vw, 30px);
  font-weight: 500;
  margin-bottom: 16px;
  letter-spacing: -0.005em;
}
.pillar__title--teal     { color: var(--teal); }
.pillar__title--lavender { color: var(--lavender); }
.pillar p {
  color: var(--text-soft);
  font-size: 18px;
  line-height: 1.7;
}

/* ─────────────────────────────────────────────
   Программа — модули
   ───────────────────────────────────────────── */
.modules {
  display: grid;
  gap: 14px;
  margin-top: 48px;
}
.module {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color 0.3s ease, background 0.3s ease, box-shadow 0.3s ease;
}
.module:hover {
  border-color: rgba(181, 165, 216, 0.25);
  background: rgba(255, 255, 255, 0.035);
}
.module details { width: 100%; }
.module__head {
  display: flex;
  align-items: center;
  gap: clamp(12px, 3vw, 24px);
  padding: clamp(14px, 3vw, 22px) clamp(16px, 4vw, 28px);
  cursor: pointer;
  list-style: none;
  user-select: none;
  -webkit-tap-highlight-color: transparent;
}
.module__head::-webkit-details-marker { display: none; }
.module__head::marker { content: ""; }
.module__num {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(24px, 5vw, 34px);
  font-weight: 400;
  color: var(--teal);
  line-height: 1;
  min-width: clamp(22px, 4vw, 32px);
  opacity: 0.85;
  flex-shrink: 0;
}
.module__title {
  font-size: clamp(16px, 3.2vw, 19px);
  font-weight: 600;
  flex: 1;
  margin: 0;
  letter-spacing: -0.005em;
}
.module__chevron {
  width: 10px;
  height: 10px;
  border-right: 2px solid var(--text-mute);
  border-bottom: 2px solid var(--text-mute);
  transform: rotate(45deg) translate(-2px, -2px);
  transition: transform 0.3s ease, border-color 0.3s ease;
  flex-shrink: 0;
}
.module:hover .module__chevron {
  border-color: var(--teal);
}
.module details[open] .module__chevron {
  transform: rotate(-135deg) translate(-2px, -2px);
}
.module__content {
  padding: 0 clamp(16px, 4vw, 28px) clamp(16px, 3vw, 24px) clamp(16px, 12vw, 84px);
  animation: moduleExpand 0.3s ease both;
}
@keyframes moduleExpand {
  from { opacity: 0; transform: translateY(-4px); }
  to   { opacity: 1; transform: translateY(0); }
}
.module__desc {
  color: var(--text-soft);
  font-size: 18px;
  margin-bottom: 12px;
  line-height: 1.6;
}
.module__tag {
  display: inline-block;
  font-size: 18px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-mute);
  padding: 5px 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
}

/* ─────────────────────────────────────────────
   Для кого — чек-лист
   ───────────────────────────────────────────── */
.checklist {
  display: grid;
  gap: 14px;
  margin-top: 32px;
  max-width: 760px;
}
.checklist li {
  position: relative;
  padding: clamp(14px, 3vw, 18px) clamp(16px, 4vw, 22px) clamp(14px, 3vw, 18px) clamp(44px, 12vw, 56px);
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  color: var(--text-soft);
  font-size: 18px;
  line-height: 1.55;
}
.checklist li::before {
  content: "";
  position: absolute;
  left: clamp(14px, 3vw, 20px);
  top: 50%;
  transform: translateY(-50%);
  width: 22px; height: 22px;
  border-radius: 50%;
  background: var(--grad-mint);
  box-shadow: 0 0 12px var(--mint-glow);
}
.checklist li::after {
  content: "";
  position: absolute;
  left: calc(clamp(14px, 3vw, 20px) + 6px);
  top: 50%;
  width: 6px; height: 10px;
  border: solid #0a1a22;
  border-width: 0 2px 2px 0;
  transform: translateY(-65%) rotate(45deg);
}

/* ─────────────────────────────────────────────
   Светлая секция — Программа
   ───────────────────────────────────────────── */
#program {
  background: #f7f6f1;
  color: #1a1f2e;
  border-top: 1px solid rgba(0, 0, 0, 0.04);
  border-bottom: 1px solid rgba(0, 0, 0, 0.04);
}
#program .eyebrow {
  background: linear-gradient(90deg, #1cc78a 0%, #2cb6e8 100%);
  -webkit-background-clip: text;
          background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}
#program .section__title { color: #14182a; }
#program .section__lead  { color: #525874; }
#program .grad-text {
  background: linear-gradient(90deg, #1cc78a 0%, #2cb6e8 100%);
  -webkit-background-clip: text;
          background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}
#program .module {
  background: #ffffff;
  border: 1px solid rgba(20, 24, 42, 0.06);
  box-shadow: 0 4px 18px -8px rgba(20, 24, 42, 0.08);
}
#program .module:hover {
  border-color: rgba(44, 182, 232, 0.35);
  background: #ffffff;
  box-shadow: 0 14px 32px -10px rgba(20, 24, 42, 0.12);
}
#program .module__num {
  background: linear-gradient(135deg, #1cc78a 0%, #2cb6e8 100%);
  -webkit-background-clip: text;
          background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  opacity: 1;
}
#program .module__title { color: #14182a; }
#program .module__desc  { color: #525874; }
#program .module__tag {
  color: #7f8499;
  border-color: rgba(20, 24, 42, 0.1);
  background: rgba(20, 24, 42, 0.02);
}
#program .module__chevron {
  border-color: #7f8499;
}
#program .module:hover .module__chevron,
#program .module details[open] .module__chevron {
  border-color: #2cb6e8;
}
#program .hint { color: #8a8fa3; }

/* ─────────────────────────────────────────────
   Наставник
   ───────────────────────────────────────────── */
.mentor {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 56px;
  align-items: center;
}
.mentor__photo {
  position: relative;
}
.mentor__photo-inner {
  width: 100%;
  aspect-ratio: 1 / 1;
  border-radius: 50%;
  background:
    radial-gradient(circle at 30% 30%, rgba(126, 212, 217, 0.15), transparent 60%),
    radial-gradient(circle at 70% 70%, rgba(181, 165, 216, 0.18), transparent 60%),
    rgba(255, 255, 255, 0.025);
  border: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.mentor__photo-inner::before {
  content: "";
  position: absolute;
  inset: -2px;
  border-radius: 50%;
  background: conic-gradient(from 180deg, transparent, rgba(126, 212, 217, 0.25), transparent 50%, rgba(181, 165, 216, 0.25), transparent);
  z-index: -1;
  animation: rotate 14s linear infinite;
}
@keyframes rotate {
  to { transform: rotate(360deg); }
}
.mentor__photo-placeholder {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  color: var(--text-mute);
  text-align: center;
  font-size: 18px;
  line-height: 1.4;
}
.mentor__text p {
  color: var(--text-soft);
  font-size: 18px;
  margin-bottom: 14px;
}

/* ─────────────────────────────────────────────
   Footer
   ───────────────────────────────────────────── */
.footer {
  padding: 32px 0;
  border-top: 1px solid var(--line);
  color: var(--text-mute);
  font-size: 18px;
}
.footer__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}
.footer__dot { opacity: 0.5; }
.footer a:hover { color: var(--teal); }

/* ─────────────────────────────────────────────
   Адаптив
   ───────────────────────────────────────────── */
@media (max-width: 860px) {
  .nav__links { display: none; }
  .pillars { grid-template-columns: 1fr; gap: 16px; }
  .pillar { padding: clamp(20px, 5vw, 28px) clamp(18px, 4vw, 24px); }
  .hero { padding: 60px 0 80px; }
  .hero__meta { grid-template-columns: 1fr; padding: clamp(16px, 4vw, 24px); }
  .mentor { grid-template-columns: 1fr; gap: 36px; }
  .mentor__photo { max-width: 220px; margin: 0 auto; }
}

@media (max-width: 480px) {
  .btn { padding: 14px 22px; }
  .nav__inner { gap: 14px; padding-top: 12px; padding-bottom: 12px; }
  .nav__logo-mark { width: 28px; height: 28px; }
  .footer__inner { gap: 8px; }
}

@media (max-width: 360px) {
  .nav__logo-text { display: none; }
  .nav__inner { gap: 10px; }
  .hero { padding: 40px 0 56px; }
  .hero__logo { width: 96px; margin-bottom: 14px; }
  .hero__title { margin-bottom: 20px; }
  .hero__sub__header { margin-bottom: 16px; }
  .hero__titleh2 { margin-bottom: 16px; }
  .hero__meta { padding: 16px 14px; gap: 12px; border-radius: 22px; }
  .hero > .container:not(.hero__inner) { margin-top: 32px; }
  .pillar { padding: 20px 18px; }
  .pillars { margin-top: 36px; }
  .modules { margin-top: 32px; }
  .checklist { margin-top: 24px; }
  .module__num { min-width: auto; }
  .checklist li { font-size: 16px; }
  .pillar p, .module__desc, .mentor__text p { font-size: 16px; }
  .eyebrow { font-size: 14px; letter-spacing: 0.18em; }
}

@media (max-width: 300px) {
  .hero__logo { width: 84px; margin-bottom: 12px; }
  .hero__title { font-size: 26px; margin-bottom: 16px; font-weight: 700; }
  .hero__sub__header { font-size: 15px; margin-bottom: 12px; line-height: 1.4; }
  .hero__titleh2 { font-size: 18px; margin-bottom: 14px; line-height: 1.25; }
  .hero__meta { padding: 14px 12px; gap: 10px; border-radius: 18px; }
  .meta-item__value { font-size: 16px; }
  .meta-item__label { font-size: 11px; letter-spacing: 0.05em; }
  .hero > .container:not(.hero__inner) { margin-top: 24px; }
  .section { padding: 56px 0; }
  .section__title { font-size: 24px; line-height: 1.18; }
  .section__lead { font-size: 15px; line-height: 1.5; }
  .pillars { gap: 12px; margin-top: 28px; }
  .pillar { padding: 18px 14px; }
  .pillar__title { font-size: 22px; margin-bottom: 10px; }
  .pillar p, .module__desc, .mentor__text p, .checklist li { font-size: 15px; line-height: 1.5; }
  .modules { margin-top: 24px; gap: 10px; }
  .module__head { padding: 12px 14px; gap: 10px; }
  .module__num { font-size: 22px; }
  .module__title { font-size: 14px; }
  .module__content { padding: 0 14px 14px 14px; }
  .module__tag { font-size: 11px; padding: 4px 9px; letter-spacing: 0.06em; }
  .checklist { margin-top: 20px; gap: 10px; }
  .checklist li { padding: 13px 14px 13px 42px; }
  .checklist li::before { left: 12px; width: 18px; height: 18px; }
  .checklist li::after { left: 17px; }
  .mentor { gap: 24px; }
  .mentor__photo { max-width: 170px; }
  .eyebrow { font-size: 12px; letter-spacing: 0.14em; margin-bottom: 12px; }
  .footer { padding: 24px 0; font-size: 14px; }
}

@media (max-width: 240px) {
  .container { padding: 0 10px; }
  .nav__inner { padding-top: 10px; padding-bottom: 10px; gap: 8px; }
  .nav__logo-mark { width: 24px; height: 24px; }
  .btn--sm { padding: 8px 12px; font-size: 13px; letter-spacing: 0.02em; }
  .hero__logo { width: 72px; margin-bottom: 12px; }
  .hero__title { font-size: 24px; margin-bottom: 16px; }
  .hero__sub__header { font-size: 14px; margin-bottom: 12px; line-height: 1.4; }
  .hero__titleh2 { font-size: 16px; margin-bottom: 14px; line-height: 1.25; }
  .hero__meta { padding: 12px 10px; gap: 10px; border-radius: 16px; }
  .meta-item__value { font-size: 14px; }
  .meta-item__label { font-size: 10px; letter-spacing: 0.06em; }
  .section__title { font-size: 22px; }
  .section__lead, .pillar p, .module__desc, .checklist li, .mentor__text p { font-size: 14px; line-height: 1.5; }
  .eyebrow { font-size: 11px; letter-spacing: 0.12em; margin-bottom: 10px; }
  .pillar { padding: 16px 14px; }
  .pillar__title { font-size: 20px; margin-bottom: 10px; }
  .module__head { padding: 12px 12px; gap: 10px; }
  .module__num { font-size: 20px; }
  .module__title { font-size: 14px; }
  .module__content { padding: 0 12px 14px 12px; }
  .module__tag { font-size: 10px; letter-spacing: 0.08em; padding: 4px 8px; }
  .checklist li { padding: 12px 12px 12px 36px; }
  .checklist li::before { left: 10px; width: 16px; height: 16px; }
  .checklist li::after { left: 14px; width: 4px; height: 8px; }
  .mentor { gap: 20px; }
  .mentor__photo { max-width: 140px; }
  .footer { font-size: 12px; padding: 20px 0; }
  .hint { font-size: 14px; }
}

@media (max-width: 200px) {
  .container { padding: 0 8px; }
  .nav__inner { padding-top: 8px; padding-bottom: 8px; gap: 6px; }
  .nav__logo-mark { width: 22px; height: 22px; }
  .btn--sm { padding: 6px 10px; font-size: 11px; letter-spacing: 0; }
  .hero__logo { width: 56px; margin-bottom: 10px; }
  .hero__title { font-size: 20px; margin: 4px auto 14px; line-height: 1.1; }
  .hero__sub__header { font-size: 12px; margin-bottom: 10px; line-height: 1.35; }
  .hero__titleh2 { font-size: 13px; margin-bottom: 10px; line-height: 1.25; }
  .hero__meta { padding: 10px 8px; gap: 8px; border-radius: 12px; }
  .meta-item__value { font-size: 12px; }
  .meta-item__label { font-size: 9px; letter-spacing: 0.04em; }
  .section__title { font-size: 18px; line-height: 1.2; }
  .section__lead, .pillar p, .module__desc, .checklist li, .mentor__text p { font-size: 12px; line-height: 1.45; }
  .eyebrow { font-size: 10px; letter-spacing: 0.08em; margin-bottom: 8px; }
  .pillar { padding: 12px 10px; }
  .pillar__title { font-size: 16px; margin-bottom: 8px; }
  .module__head { padding: 10px; gap: 8px; }
  .module__num { font-size: 16px; }
  .module__title { font-size: 12px; }
  .module__content { padding: 0 10px 12px 10px; }
  .module__tag { font-size: 9px; padding: 3px 6px; letter-spacing: 0.04em; }
  .checklist li { padding: 10px 10px 10px 30px; }
  .checklist li::before { left: 8px; width: 14px; height: 14px; }
  .checklist li::after { left: 12px; width: 4px; height: 6px; }
  .mentor { gap: 16px; }
  .mentor__photo { max-width: 100px; }
  .footer { font-size: 10px; padding: 16px 0; }
  .footer__inner { gap: 6px; }
  .hint { font-size: 12px; }
}

/* ─────────────────────────────────────────────
   Появление при скролле
   ───────────────────────────────────────────── */
@media (prefers-reduced-motion: no-preference) {
  .section, .hero__inner > * {
    animation: rise 0.7s ease both;
  }
  @keyframes rise {
    from { opacity: 0; transform: translateY(20px); }
    to   { opacity: 1; transform: translateY(0); }
  }
}
