/* Web App Store — общая типографика заголовков и их элементов.
   Подключается на лендинге (index.html) и в статьях (public/articles/*.html).
   Только размеры и стили; цвета задаются в темах (лендинг / article.css). */

/* H1 — страница / hero */
.hero h1,
.article h1 {
  font-size: clamp(34px, 6vw, 64px);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.04;
  margin-bottom: 20px;
}

/* H2 — секция */
h2 {
  font-size: clamp(28px, 4.5vw, 44px);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.12;
  margin-bottom: 16px;
}

/* H3 — подзаголовок / карточка */
.reason h3,
.article h3 {
  font-size: 18px;
  font-weight: 700;
  letter-spacing: -0.01em;
  margin-bottom: 8px;
}

/* Подзаголовок под H1/H2 */
.section-sub,
.hero-sub,
.lead {
  font-size: clamp(15px, 2vw, 18px);
}

/* Надзаголовок (eyebrow) над H1 */
.eyebrow {
  display: inline-block;
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 12px;
}

/* ---------- Шапка (nav) ---------- */
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  max-width: 1120px;
  margin: 0 auto;
  height: var(--nav-h);
  padding: 0 20px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  font-size: 17px;
  letter-spacing: -0.01em;
  white-space: nowrap;
  text-decoration: none;
}

.nav-logo .logo-mark {
  width: 30px;
  height: 30px;
  border-radius: 8px;
  overflow: hidden;
  flex: none;
}

.logo-mark svg {
  display: block;
  width: 100%;
  height: 100%;
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  border-radius: 12px;
  font-size: 14.5px;
  font-weight: 600;
  text-decoration: none;
  white-space: nowrap;
}
