/* Light Trust v2 — светлый лендинг */

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

html,
body {
  margin: 0;
  padding: 0;
  min-height: 100%;
  font-family: var(--v2-font-body);
  font-size: 17px;
  line-height: 1.55;
  color: var(--v2-text);
  background: var(--v2-bg);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

body.v2 {
  position: relative;
  /* Маркеры вариантов (v2-catalog-grid, v2-articles-cards и т.д.) висят на body
     для уникальности DOM — не превращаем страницу в grid/flex-контейнер. */
  display: block;
  margin-left: 0;
  grid-template-columns: unset;
  flex-direction: unset;
  gap: unset;
}

/* Мягкий фон без сетки и glow */
.v2-bg {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse 70% 45% at 90% 0%, rgba(13, 148, 136, 0.06), transparent 50%),
    radial-gradient(ellipse 50% 40% at 0% 100%, rgba(245, 158, 11, 0.04), transparent 45%),
    var(--v2-bg);
}

.v2-wrap {
  position: relative;
  z-index: 1;
  box-sizing: border-box;
  width: min(100%, var(--v2-max));
  max-width: var(--v2-max);
  margin-inline: auto;
  padding: 0 20px 120px;
}

/* Topbar — фиксирован на десктопе, sticky на узких экранах до dock */
.v2-topbar {
  position: sticky;
  top: 0;
  z-index: 100;
  margin: 0 -20px;
  padding: 0 20px;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--v2-border);
  transition: box-shadow 0.2s ease, background 0.2s ease;
}

.v2-topbar.is-scrolled {
  background: rgba(255, 255, 255, 0.97);
  box-shadow: 0 4px 24px rgba(15, 23, 42, 0.08);
}

.v2-topbar-spacer {
  display: none;
}

@media (min-width: 768px) {
  .v2-topbar {
    position: fixed;
    left: 0;
    right: 0;
    top: 0;
    margin: 0;
    padding: 0 max(20px, env(safe-area-inset-right)) 0 max(20px, env(safe-area-inset-left));
  }

  .v2-topbar-spacer {
    display: block;
    height: 72px;
    flex-shrink: 0;
  }

  .v2-topbar-cta {
    flex-shrink: 0;
    box-shadow: var(--v2-shadow-sm), 0 4px 14px var(--v2-accent-glow);
  }

  .v2-connect-menu--topbar {
    position: relative;
    flex-shrink: 0;
  }
}

.v2-topbar-inner {
  box-sizing: border-box;
  width: min(100%, var(--v2-max));
  max-width: var(--v2-max);
  margin-inline: auto;
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.v2-logo {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: var(--v2-text);
  font-family: var(--v2-font-body);
  font-weight: 700;
  font-size: 1.05rem;
  letter-spacing: -0.02em;
}

.v2-logo-mark {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: var(--v2-accent-muted);
  border: 1px solid var(--v2-accent-soft);
  display: grid;
  place-items: center;
  font-size: 1.15rem;
  color: var(--v2-accent);
  overflow: hidden;
  flex-shrink: 0;
}

.v2-logo-mark img {
  width: 28px;
  height: 28px;
  display: block;
  object-fit: contain;
}

.v2-logo-wordmark {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  line-height: 1;
}

.v2-logo-name {
  color: var(--v2-text);
}

.v2-logo-badge {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 11px;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--v2-on-accent);
  background: var(--v2-accent);
  box-shadow: var(--v2-shadow-sm), 0 3px 12px var(--v2-accent-glow);
}

.v2-logo:hover .v2-logo-badge {
  background: var(--v2-accent-hover);
  box-shadow: var(--v2-shadow-sm), 0 4px 16px var(--v2-accent-glow);
}

.v2-nav {
  display: none;
  gap: 28px;
}

.v2-nav a {
  color: var(--v2-text-muted);
  text-decoration: none;
  font-size: 0.92rem;
  font-weight: 500;
  transition: color 0.15s;
}

.v2-nav a:hover {
  color: var(--v2-accent);
}

.v2-nav a[aria-current="page"] {
  color: var(--v2-accent);
  font-weight: 600;
}

.v2-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 48px;
  padding: 0 22px;
  border-radius: 999px;
  font-family: var(--v2-font-body);
  font-weight: 600;
  font-size: 0.92rem;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: transform 0.15s, box-shadow 0.2s, background 0.2s;
}

.v2-btn:active {
  transform: scale(0.98);
}

.v2-btn-primary {
  color: var(--v2-on-accent);
  background: var(--v2-accent);
  box-shadow: var(--v2-shadow-sm), 0 4px 14px var(--v2-accent-glow);
}

.v2-btn-primary:hover {
  background: var(--v2-accent-hover);
  box-shadow: var(--v2-shadow), 0 6px 20px var(--v2-accent-glow);
}

.v2-btn-ghost {
  color: var(--v2-text);
  background: var(--v2-highlight-soft);
  border: 1px solid #fde68a;
  box-shadow: var(--v2-shadow-sm);
}

.v2-btn-ghost:hover {
  background: #fef3c7;
}

.v2-btn-outline {
  color: var(--v2-text);
  background: var(--v2-bg-elevated);
  border: 1px solid var(--v2-border-strong);
  box-shadow: var(--v2-shadow-sm);
}

.v2-btn-outline:hover {
  border-color: var(--v2-accent);
  color: var(--v2-accent);
}

/* Hero — много воздуха */
.v2-hero {
  display: grid;
  gap: 32px;
  padding: 48px 0 40px;
}

@media (min-width: 900px) {
  .v2-hero {
    grid-template-columns: 1.1fr 0.9fr;
    align-items: center;
    gap: 48px;
    padding: 64px 0 56px;
  }
}

.v2-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 20px;
  padding: 8px 14px;
  border-radius: 999px;
  font-family: var(--v2-font-mono);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--v2-accent);
  background: var(--v2-accent-muted);
  border: 1px solid var(--v2-accent-soft);
}

.v2-hero h1 {
  margin: 0 0 20px;
  font-family: var(--v2-font-display);
  font-size: clamp(2rem, 5vw, 2.75rem);
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--v2-text);
}

.v2-hero-lead {
  margin: 0 0 28px;
  max-width: 48ch;
  color: var(--v2-text-muted);
  font-size: 1.1rem;
  line-height: 1.6;
}

.v2-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 28px;
}

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

.v2-chips li {
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--v2-text-muted);
  background: var(--v2-bg-elevated);
  border: 1px solid var(--v2-border);
  box-shadow: var(--v2-shadow-sm);
}

/* Правая колонка — светлая карточка шагов */
.v2-bento-steps {
  display: grid;
  gap: 12px;
  padding: 28px;
  border-radius: var(--v2-radius-lg);
  background: var(--v2-bg-elevated);
  border: 1px solid var(--v2-border);
  box-shadow: var(--v2-shadow-lg);
}

.v2-bento-steps .v2-tile-main {
  grid-column: 1 / -1;
  padding: 0 0 16px;
  margin-bottom: 8px;
  border-bottom: 1px solid var(--v2-border);
  background: none;
  border-radius: 0;
  box-shadow: none;
}

.v2-tile {
  border-radius: var(--v2-radius);
  padding: 16px;
  background: var(--v2-bg-subtle);
  border: 1px solid var(--v2-border);
  transition: box-shadow 0.2s, border-color 0.2s;
}

.v2-tile:hover {
  border-color: var(--v2-border-strong);
  box-shadow: var(--v2-shadow-sm);
}

.v2-tile-label {
  margin: 0 0 6px;
  font-family: var(--v2-font-mono);
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: var(--v2-accent);
}

.v2-tile h3 {
  margin: 0 0 4px;
  font-family: var(--v2-font-body);
  font-size: 1rem;
  font-weight: 600;
  color: var(--v2-text);
}

.v2-tile p {
  margin: 0;
  font-size: 0.88rem;
  color: var(--v2-text-dim);
}

.v2-step-num {
  display: inline-flex;
  width: 32px;
  height: 32px;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  margin: 0;
  font-family: var(--v2-font-mono);
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--v2-on-accent);
  background: var(--v2-accent);
}

/* Иконка или цифра слева, заголовок справа — одна строка */
.v2-trust-item,
.v2-platform-card,
.v2-case-card,
.v2-when-card,
.v2-step-card,
.v2-catalog-card,
.v2-bento-steps > .v2-tile:has(> .v2-step-num) {
  display: grid;
  grid-template-columns: auto 1fr;
  column-gap: 12px;
  row-gap: 8px;
  align-items: center;
}

.v2-trust-icon,
.v2-catalog-icon,
.v2-step-num {
  grid-column: 1;
  grid-row: 1;
  align-self: center;
  margin: 0;
}

.v2-trust-item strong,
.v2-platform-card h3,
.v2-case-card h3,
.v2-when-card h3,
.v2-step-card h3,
.v2-catalog-card h2,
.v2-bento-steps > .v2-tile:has(> .v2-step-num) h3 {
  grid-column: 2;
  grid-row: 1;
  margin: 0;
  align-self: center;
}

.v2-trust-item > span:not(.v2-trust-icon),
.v2-platform-card p,
.v2-case-card p,
.v2-when-card p,
.v2-step-card p,
.v2-catalog-card p,
.v2-bento-steps > .v2-tile:has(> .v2-step-num) p {
  grid-column: 1 / -1;
  grid-row: 2;
  margin: 0;
}

.v2-catalog-card .v2-catalog-more {
  grid-column: 1 / -1;
  grid-row: 3;
  margin: 0;
}

/* Метрики — горизонтальные карточки */
.v2-bento {
  display: grid;
  gap: 16px;
  margin: 16px 0 48px;
}

@media (min-width: 640px) {
  .v2-bento {
    grid-template-columns: repeat(4, 1fr);
  }
  .v2-bento .v2-tile-wide {
    grid-column: span 2;
  }
}

.v2-bento .v2-tile {
  background: var(--v2-bg-elevated);
  box-shadow: var(--v2-shadow);
  border: 1px solid var(--v2-border);
}

.v2-metric strong {
  display: block;
  font-family: var(--v2-font-display);
  font-size: 1.75rem;
  font-weight: 600;
  color: var(--v2-accent);
  letter-spacing: -0.02em;
}

.v2-metric span {
  font-size: 0.84rem;
  color: var(--v2-text-dim);
}

/* Features — bento светлый */
.v2-section {
  margin-bottom: 28px;
}

.v2-section > h2 {
  margin: 0 0 24px;
  font-family: var(--v2-font-display);
  font-size: 1.65rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--v2-text);
}

.v2-section-lead {
  margin: -12px 0 24px;
  max-width: 58ch;
  color: var(--v2-text-muted);
  font-size: 0.98rem;
  line-height: 1.6;
}

/* Преимущества: заголовок строкой, сетка 2×2 */
.v2-features-section {
  display: block;
}

.v2-features-head {
  margin-bottom: 20px;
}

.v2-features-head h2 {
  margin: 0;
  font-family: var(--v2-font-display);
  font-size: clamp(1.35rem, 3vw, 1.75rem);
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.2;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.v2-features-lead {
  margin: 10px 0 0;
  max-width: 62ch;
}

.v2-features-grid {
  display: grid;
  gap: 16px;
  grid-template-columns: 1fr;
}

@media (min-width: 640px) {
  .v2-features-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    align-items: stretch;
  }

  .v2-features-grid .v2-feature-card {
    min-height: 168px;
  }
}

.v2-feature-card {
  background: var(--v2-bg-elevated);
  box-shadow: var(--v2-shadow);
  display: flex;
  flex-direction: column;
  padding: 22px 24px;
  border-radius: var(--v2-radius-lg);
  border: 1px solid var(--v2-border);
  transition: box-shadow 0.2s ease, border-color 0.2s ease;
}

.v2-feature-head {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 8px;
}

.v2-feature-head h3 {
  margin: 0;
  font-family: var(--v2-font-display);
  font-size: 1.08rem;
  font-weight: 600;
  line-height: 1.25;
  color: var(--v2-text);
}

.v2-feature-head .v2-tile-icon {
  margin-bottom: 0;
  flex-shrink: 0;
}

.v2-feature-card:hover {
  box-shadow: var(--v2-shadow-lg);
  border-color: var(--v2-accent-soft);
}

.v2-feature-card p {
  margin: 0;
  flex: 1;
  color: var(--v2-text-muted);
  font-size: 0.95rem;
  line-height: 1.55;
}

.v2-tile-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  margin-bottom: 12px;
  border-radius: 12px;
  background: var(--v2-accent-muted);
  font-size: 1.25rem;
  line-height: 1;
}

@media (max-width: 639px) {
  .v2-features-head h2 {
    white-space: normal;
    overflow: visible;
    text-overflow: unset;
  }
}

/* legacy bento tiles (hero aside) */
.v2-features-bento {
  display: grid;
  gap: 16px;
}

.v2-features-bento .v2-tile {
  background: var(--v2-bg-elevated);
  box-shadow: var(--v2-shadow);
  display: flex;
  flex-direction: column;
  min-height: 0;
}

.v2-tile-icon-lg {
  width: 48px;
  height: 48px;
  font-size: 1.45rem;
}

/* CTA */
.v2-cta-strip {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 32px 36px;
  border-radius: var(--v2-radius-lg);
  background: var(--v2-accent-muted);
  border: 1px solid var(--v2-accent-soft);
}

@media (min-width: 640px) {
  .v2-cta-strip {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
}

.v2-cta-strip strong {
  display: block;
  font-family: var(--v2-font-display);
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 6px;
  color: var(--v2-text);
}

.v2-cta-strip p {
  margin: 0;
  color: var(--v2-text-muted);
  font-size: 0.95rem;
}

/* Статьи */
.v2-articles {
  display: grid;
  gap: 12px;
}

@media (min-width: 640px) {
  .v2-articles {
    grid-template-columns: repeat(2, 1fr);
  }
}

.v2-article-link {
  display: block;
  padding: 18px 20px;
  border-radius: var(--v2-radius);
  text-decoration: none;
  color: var(--v2-text);
  background: var(--v2-bg-elevated);
  border: 1px solid var(--v2-border);
  box-shadow: var(--v2-shadow-sm);
  transition: border-color 0.2s, box-shadow 0.2s, transform 0.2s;
}

.v2-article-link:hover {
  border-color: var(--v2-accent);
  box-shadow: var(--v2-shadow);
  transform: translateY(-2px);
}

.v2-article-link span {
  display: block;
  font-size: 0.7rem;
  font-family: var(--v2-font-mono);
  font-weight: 500;
  color: var(--v2-accent);
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.v2-article-link {
  font-weight: 500;
  font-size: 0.95rem;
  line-height: 1.4;
}

/* FAQ */
.v2-faq details {
  border-radius: var(--v2-radius);
  margin-bottom: 10px;
  background: var(--v2-bg-elevated);
  border: 1px solid var(--v2-border);
  box-shadow: var(--v2-shadow-sm);
}

.v2-faq summary {
  padding: 18px 20px;
  font-weight: 600;
  font-size: 0.98rem;
  cursor: pointer;
  list-style: none;
  color: var(--v2-text);
}

.v2-faq summary::-webkit-details-marker {
  display: none;
}

.v2-faq details[open] summary {
  color: var(--v2-accent);
}

.v2-faq .v2-faq-body {
  padding: 0 20px 18px;
  color: var(--v2-text-muted);
  font-size: 0.95rem;
  line-height: 1.6;
}

/* Footer */
.v2-footer {
  margin-top: 56px;
  padding-top: 32px;
  border-top: 1px solid var(--v2-border);
  font-size: 0.88rem;
  color: var(--v2-text-dim);
  line-height: 1.6;
}

.v2-footer code {
  font-size: 0.82rem;
  background: var(--v2-bg-subtle);
  padding: 2px 6px;
  border-radius: 4px;
}

.v2-preview-badge {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 100;
  padding: 10px 16px;
  border-radius: 999px;
  font-family: var(--v2-font-mono);
  font-size: 0.68rem;
  font-weight: 500;
  color: var(--v2-on-accent);
  background: var(--v2-accent);
  box-shadow: var(--v2-shadow);
  border: 2px solid var(--v2-bg-elevated);
}

@media (min-width: 768px) {
  .v2-nav {
    display: flex;
  }
}

/* Доверие — одна строка */
.v2-trust-strip {
  display: grid;
  gap: 12px;
  padding: 24px 28px;
  border-radius: var(--v2-radius-lg);
  background: var(--v2-bg-elevated);
  border: 1px solid var(--v2-border);
  box-shadow: var(--v2-shadow);
}

@media (min-width: 640px) {
  .v2-trust-strip {
    grid-template-columns: repeat(4, 1fr);
  }
}

.v2-trust-item {
  margin: 0;
}

.v2-trust-icon {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  font-size: 1.1rem;
  background: var(--v2-accent-muted);
  border: 1px solid var(--v2-accent-soft);
}

.v2-trust-item strong {
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--v2-text);
}

.v2-trust-item > span:not(.v2-trust-icon) {
  font-size: 0.82rem;
  color: var(--v2-text-dim);
  line-height: 1.4;
}

/* Как подключиться — полная секция */
.v2-steps-block h2 {
  margin: 0 0 20px;
}

.v2-steps-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 16px;
}

@media (min-width: 700px) {
  .v2-steps-list {
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
  }
}

.v2-step-card {
  padding: 24px;
  border-radius: var(--v2-radius);
  background: var(--v2-bg-elevated);
  border: 1px solid var(--v2-border);
  box-shadow: var(--v2-shadow-sm);
}

.v2-step-card h3 {
  font-size: 1.05rem;
  font-weight: 600;
}

.v2-step-card p {
  font-size: 0.9rem;
  color: var(--v2-text-muted);
  line-height: 1.55;
}

/* Платформы */
.v2-platform-grid {
  display: grid;
  gap: 16px;
}

@media (min-width: 560px) {
  .v2-platform-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.v2-platform-card {
  padding: 22px;
  border-radius: var(--v2-radius);
  background: var(--v2-bg-elevated);
  border: 1px solid var(--v2-border);
  box-shadow: var(--v2-shadow-sm);
}

.v2-platform-card h3 {
  font-size: 1rem;
  font-weight: 600;
}

.v2-platform-card p {
  font-size: 0.88rem;
  color: var(--v2-text-dim);
}

/* С / без VPN */
.v2-compare {
  border-radius: var(--v2-radius-lg);
  overflow: hidden;
  border: 1px solid var(--v2-border);
  box-shadow: var(--v2-shadow);
  background: var(--v2-bg-elevated);
}

.v2-compare table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.92rem;
}

.v2-compare th,
.v2-compare td {
  padding: 14px 18px;
  text-align: left;
  border-bottom: 1px solid var(--v2-border);
}

.v2-compare th {
  font-weight: 600;
  background: var(--v2-bg-subtle);
  color: var(--v2-text);
}

.v2-compare th:first-child {
  width: 36%;
}

.v2-compare td:last-child {
  color: var(--v2-accent);
  font-weight: 500;
}

.v2-compare tr:last-child th,
.v2-compare tr:last-child td {
  border-bottom: none;
}

.v2-compare-caption {
  margin: 0 0 16px;
  color: var(--v2-text-muted);
  font-size: 0.95rem;
}

/* Отзывы */
.v2-reviews-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 20px;
}

.v2-reviews-head h2 {
  margin: 0;
}

.v2-review-nav {
  display: flex;
  gap: 8px;
}

.v2-review-btn {
  width: 44px;
  height: 44px;
  border-radius: 999px;
  border: 1px solid var(--v2-border-strong);
  background: var(--v2-bg-elevated);
  color: var(--v2-text);
  font-size: 1.15rem;
  cursor: pointer;
  transition: border-color 0.15s, background 0.15s;
}

.v2-review-btn:hover {
  border-color: var(--v2-accent);
  color: var(--v2-accent);
}

.v2-review-track {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  padding-bottom: 4px;
  scrollbar-width: none;
}

.v2-review-track::-webkit-scrollbar {
  display: none;
}

.v2-review-card {
  flex: 0 0 min(100%, 420px);
  scroll-snap-align: start;
  padding: 24px;
  border-radius: var(--v2-radius);
  background: var(--v2-bg-elevated);
  border: 1px solid var(--v2-border);
  box-shadow: var(--v2-shadow);
}

.v2-review-stars {
  display: block;
  margin-bottom: 12px;
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  color: #d97706;
}

.v2-review-card blockquote {
  margin: 0 0 14px;
  font-size: 0.98rem;
  line-height: 1.55;
  color: var(--v2-text-muted);
  font-style: normal;
}

.v2-review-card cite {
  font-style: normal;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--v2-text-dim);
}

/* Сценарии */
.v2-cases-grid {
  display: grid;
  gap: 16px;
}

@media (min-width: 640px) {
  .v2-cases-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.v2-case-card {
  padding: 22px;
  border-radius: var(--v2-radius);
  background: var(--v2-bg-elevated);
  border: 1px solid var(--v2-border);
  box-shadow: var(--v2-shadow-sm);
}

.v2-case-card h3 {
  font-size: 1rem;
  font-weight: 600;
}

.v2-case-card p {
  font-size: 0.88rem;
  color: var(--v2-text-dim);
}

/* Когда нужен VPN — 2×2 */
.v2-when-grid {
  display: grid;
  gap: 16px;
}

@media (min-width: 640px) {
  .v2-when-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.v2-when-card {
  padding: 22px;
  border-radius: var(--v2-radius);
  background: var(--v2-bg-elevated);
  border: 1px solid var(--v2-border);
  box-shadow: var(--v2-shadow-sm);
}

.v2-when-card h3 {
  font-size: 1rem;
  font-weight: 600;
}

.v2-when-card p {
  font-size: 0.88rem;
  color: var(--v2-text-dim);
  line-height: 1.55;
}

/* Проверка подключения — ссылки на статьи */
.v2-tools-grid {
  display: grid;
  gap: 12px;
}

@media (min-width: 700px) {
  .v2-tools-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.v2-tool-link {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 20px 44px 20px 20px;
  border-radius: var(--v2-radius);
  text-decoration: none;
  color: var(--v2-text);
  background: var(--v2-bg-elevated);
  border: 1px solid var(--v2-border);
  box-shadow: var(--v2-shadow-sm);
  transition: border-color 0.2s, box-shadow 0.2s, transform 0.2s;
}

.v2-tool-link:hover {
  border-color: var(--v2-accent);
  box-shadow: var(--v2-shadow);
  transform: translateY(-2px);
}

.v2-tool-label {
  font-family: var(--v2-font-mono);
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--v2-accent);
}

.v2-tool-link strong {
  font-size: 0.98rem;
  font-weight: 600;
  line-height: 1.35;
}

.v2-tool-link p {
  margin: 0;
  font-size: 0.85rem;
  color: var(--v2-text-dim);
  line-height: 1.45;
}

.v2-tool-arrow {
  position: absolute;
  right: 18px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.2rem;
  color: var(--v2-accent);
  font-weight: 600;
}

/* Trust checklist */
.v2-trust-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 12px;
}

.v2-trust-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 14px 18px;
  border-radius: var(--v2-radius);
  background: var(--v2-bg-elevated);
  border: 1px solid var(--v2-border);
  font-size: 0.95rem;
  color: var(--v2-text-muted);
}

.v2-trust-list .v2-list-mark {
  flex-shrink: 0;
  color: var(--v2-accent);
  font-weight: 700;
}

/* SEO footer */
.v2-seo-footer {
  padding: 32px;
  border-radius: var(--v2-radius-lg);
  background: var(--v2-bg-subtle);
  border: 1px solid var(--v2-border);
}

.v2-seo-footer h2 {
  margin: 0 0 16px;
  font-family: var(--v2-font-display);
  font-size: 1.35rem;
  font-weight: 600;
}

.v2-seo-footer p {
  margin: 0 0 12px;
  color: var(--v2-text-muted);
  font-size: 0.95rem;
  line-height: 1.65;
}

.v2-seo-footer p:last-child {
  margin-bottom: 0;
}

/* Финальный CTA */
.v2-final-cta {
  text-align: center;
  padding: 48px 32px;
  border-radius: var(--v2-radius-lg);
  background: var(--v2-text);
  color: #f8fafc;
  box-shadow: var(--v2-shadow-lg);
}

.v2-final-cta h2 {
  margin: 0 0 12px;
  font-family: var(--v2-font-display);
  font-size: clamp(1.35rem, 3vw, 1.75rem);
  font-weight: 600;
  color: #fff;
}

.v2-final-cta p {
  margin: 0 auto 24px;
  max-width: 42ch;
  color: #cbd5e1;
  font-size: 1rem;
  line-height: 1.55;
}

.v2-final-cta .v2-btn-primary {
  background: var(--v2-accent);
  color: var(--v2-on-accent);
}

.v2-cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}

.v2-final-cta .v2-cta-row {
  margin-top: 4px;
}

.v2-final-cta .v2-btn-outline {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.35);
  background: transparent;
}

.v2-final-cta .v2-btn-outline:hover {
  border-color: #fff;
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
}

/* Подвал сайта */
.v2-site-footer {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 48px;
  padding-top: 32px;
  border-top: 1px solid var(--v2-border);
}

@media (min-width: 640px) {
  .v2-site-footer {
    flex-direction: row;
    align-items: flex-start;
    justify-content: space-between;
  }
}

.v2-site-footer p {
  margin: 0;
  font-size: 0.88rem;
  color: var(--v2-text-dim);
}

.v2-footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 16px 24px;
}

.v2-footer-nav a {
  color: var(--v2-text-muted);
  text-decoration: none;
  font-size: 0.88rem;
  font-weight: 500;
}

.v2-footer-nav a:hover {
  color: var(--v2-accent);
}

.v2-disclaimer {
  margin-top: 12px;
  font-size: 0.78rem;
  color: var(--v2-text-dim);
  max-width: 52ch;
}

/* Мобильная нижняя панель: меню + подключение */
.v2-mobile-dock {
  display: none;
  position: fixed;
  left: 12px;
  right: 12px;
  bottom: 12px;
  z-index: 90;
  align-items: center;
  gap: 10px;
  padding: 10px 10px 10px 12px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid var(--v2-border);
  box-shadow: var(--v2-shadow-lg), 0 8px 32px rgba(15, 23, 42, 0.12);
  backdrop-filter: blur(12px);
}

.v2-dock-menu-btn {
  flex: 0 0 auto;
  min-height: 48px;
  padding: 0 16px;
  border-radius: 999px;
  border: 1px solid var(--v2-border-strong);
  background: var(--v2-bg-elevated);
  color: var(--v2-text);
  font-family: var(--v2-font-body);
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
}

.v2-dock-menu-btn:hover {
  border-color: var(--v2-accent);
  color: var(--v2-accent);
}

.v2-connect-menu {
  position: relative;
}

.v2-connect-popover {
  position: absolute;
  z-index: 120;
  min-width: 280px;
  padding: 8px;
  border-radius: var(--v2-radius-lg);
  background: var(--v2-bg-elevated);
  border: 1px solid var(--v2-border);
  box-shadow: var(--v2-shadow-lg), 0 12px 40px rgba(15, 23, 42, 0.12);
}

.v2-connect-popover[hidden] {
  display: none;
}

.v2-connect-menu--topbar .v2-connect-popover {
  top: calc(100% + 10px);
  right: 0;
}

.v2-connect-menu--dock {
  flex: 1;
  min-width: 0;
}

.v2-connect-menu--dock .v2-connect-trigger {
  width: 100%;
}

.v2-connect-menu--dock .v2-connect-popover {
  left: 0;
  right: 0;
  bottom: calc(100% + 10px);
  top: auto;
}

.v2-connect-option {
  display: block;
  padding: 12px 14px;
  border-radius: var(--v2-radius);
  color: var(--v2-text);
  text-decoration: none;
  font-size: 0.92rem;
  font-weight: 600;
  line-height: 1.35;
  transition: background 0.15s, color 0.15s;
}

.v2-connect-option:hover {
  background: var(--v2-accent-muted);
  color: var(--v2-accent);
}

.v2-connect-option + .v2-connect-option {
  margin-top: 4px;
}

.v2-dock-cta {
  min-height: 48px;
  box-shadow: var(--v2-shadow-sm), 0 4px 14px var(--v2-accent-glow);
}

.v2-connect-menu--dock .v2-dock-cta {
  flex: 1;
}

.v2-mobile-panel {
  position: fixed;
  left: 12px;
  right: 12px;
  bottom: 82px;
  z-index: 89;
  padding: 12px;
  border-radius: var(--v2-radius-lg);
  background: var(--v2-bg-elevated);
  border: 1px solid var(--v2-border);
  box-shadow: var(--v2-shadow-lg);
}

.v2-mobile-panel[hidden] {
  display: none;
}

.v2-mobile-panel nav {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.v2-mobile-panel a {
  display: block;
  padding: 12px 14px;
  border-radius: var(--v2-radius);
  color: var(--v2-text);
  text-decoration: none;
  font-weight: 500;
  font-size: 0.95rem;
}

.v2-mobile-panel a:hover,
.v2-mobile-panel a[aria-current="page"] {
  background: var(--v2-accent-muted);
  color: var(--v2-accent);
}

@media (max-width: 767px) {
  .v2-mobile-dock {
    display: flex;
  }

  .v2-topbar-inner > .v2-connect-menu--topbar,
  .v2-topbar-inner > .v2-topbar-cta,
  .v2-topbar-inner > .v2-btn-ghost {
    display: none;
  }

  .v2-wrap {
    padding-bottom: 108px;
  }

  body.v2:has(.v2-mobile-dock) .v2-preview-badge {
    bottom: 92px;
  }
}

/* Устаревший одиночный sticky — скрыт, заменён dock */
.v2-sticky-cta {
  display: none !important;
}

@media (min-width: 768px) {
  .v2-mobile-panel,
  .v2-mobile-dock {
    display: none !important;
  }
}

/* Статья */
.v2-page-narrow {
  box-sizing: border-box;
  width: min(100%, var(--v2-article-max, 880px));
  max-width: var(--v2-article-max, 880px);
  margin-inline: auto;
}

.v2-breadcrumb {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  margin: 24px 0 20px;
  font-size: 0.85rem;
  color: var(--v2-text-dim);
}

.v2-breadcrumb a {
  color: var(--v2-accent);
  text-decoration: none;
  font-weight: 500;
}

.v2-breadcrumb a:hover {
  text-decoration: underline;
}

.v2-article-card {
  padding: 32px 28px;
  border-radius: var(--v2-radius-lg);
  background: var(--v2-bg-elevated);
  border: 1px solid var(--v2-border);
  box-shadow: var(--v2-shadow-lg);
  margin-bottom: 32px;
}

@media (min-width: 640px) {
  .v2-article-card {
    padding: 40px 36px;
  }
}

.v2-article-card h1 {
  margin: 0 0 12px;
  font-family: var(--v2-font-display);
  font-size: clamp(1.5rem, 4vw, 2rem);
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

.v2-article-meta {
  margin: 0 0 24px;
  font-size: 0.85rem;
  color: var(--v2-text-dim);
}

.v2-prose h2 {
  margin: 28px 0 12px;
  font-family: var(--v2-font-display);
  font-size: 1.25rem;
  font-weight: 600;
}

.v2-prose p,
.v2-prose li {
  color: var(--v2-text-muted);
  line-height: 1.65;
}

.v2-prose ul,
.v2-prose ol {
  margin: 0 0 16px;
  padding-left: 1.25rem;
}

.v2-prose .article-list-ordered {
  list-style-type: decimal;
}

.v2-prose .article-quote {
  margin: 20px 0 24px;
  padding: 16px 20px 16px 22px;
  border-left: 4px solid var(--v2-accent, #4c6ef5);
  border-radius: 0 var(--v2-radius-sm, 10px) var(--v2-radius-sm, 10px) 0;
  background: var(--v2-bg-subtle);
}

.v2-prose .article-quote p {
  margin: 0;
  font-size: 1.05rem;
  color: var(--v2-text);
  font-style: italic;
  line-height: 1.55;
}

.v2-prose .article-quote-cite {
  display: block;
  margin-top: 10px;
  font-size: 0.82rem;
  color: var(--v2-text-dim);
  font-style: normal;
}

.v2-prose .article-table-wrap {
  margin: 20px 0 24px;
  overflow-x: auto;
  border-radius: var(--v2-radius-sm, 10px);
  border: 1px solid var(--v2-border);
  background: var(--v2-surface, #fff);
}

.v2-prose .article-table {
  width: 100%;
  min-width: 280px;
  border-collapse: collapse;
  font-size: 0.92rem;
}

.v2-prose .article-table caption {
  caption-side: top;
  padding: 12px 16px;
  text-align: left;
  font-weight: 600;
  color: var(--v2-text);
  background: var(--v2-bg-subtle);
  border-bottom: 1px solid var(--v2-border);
}

.v2-prose .article-table th,
.v2-prose .article-table td {
  padding: 10px 16px;
  text-align: left;
  border-bottom: 1px solid var(--v2-border);
  vertical-align: top;
}

.v2-prose .article-table th {
  background: var(--v2-bg-subtle);
  font-weight: 600;
  color: var(--v2-text);
}

.v2-prose .article-home-link {
  margin: 16px 0 20px;
  padding: 14px 16px;
  font-size: 0.92rem;
  line-height: 1.55;
  color: var(--v2-text-dim);
  background: var(--v2-bg-subtle);
  border-radius: var(--v2-radius-sm, 10px);
  border-left: 3px solid var(--v2-accent, #4c6ef5);
}

.v2-prose .article-home-link a {
  color: var(--v2-accent, #4c6ef5);
  font-weight: 600;
  text-decoration: none;
}

.v2-prose .article-home-link a:hover {
  text-decoration: underline;
}

.v2-prose .article-table tbody tr:last-child td {
  border-bottom: none;
}

.article-figure {
  margin: 1.25em 0 1.5em;
  border-radius: var(--v2-radius);
  overflow: hidden;
  background: var(--v2-bg-subtle);
  border: 1px solid var(--v2-border);
}

.article-figure img {
  display: block;
  width: 100%;
  max-width: 100%;
  height: auto;
  max-height: 400px;
  object-fit: contain;
}

.v2-prose .article-figure {
  margin: 1.25em 0 1.5em;
}

.v2-prose .article-figure figcaption {
  padding: 10px 16px 12px;
  font-size: 0.82rem;
  color: var(--v2-text-dim);
  line-height: 1.45;
  border-top: 1px solid var(--v2-border);
}

.v2-toc {
  margin: 0 0 28px;
  padding: 20px 22px;
  border-radius: var(--v2-radius);
  background: var(--v2-bg-subtle);
  border: 1px solid var(--v2-border);
}

.v2-toc strong {
  display: block;
  margin-bottom: 10px;
  font-size: 0.8rem;
  font-family: var(--v2-font-mono);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--v2-accent);
}

.v2-toc ol {
  margin: 0;
  padding-left: 1.2rem;
}

.v2-toc a {
  color: var(--v2-text);
  text-decoration: none;
  font-size: 0.92rem;
}

.v2-toc a:hover {
  color: var(--v2-accent);
}

.v2-article-cta {
  margin: 28px 0 20px;
  padding: 24px;
  border-radius: var(--v2-radius);
  background: var(--v2-accent-muted);
  border: 1px solid var(--v2-accent-soft);
  text-align: center;
}

.v2-related h2 {
  margin: 0 0 16px;
  font-size: 1.15rem;
}

.v2-articles-more {
  margin-top: 16px;
}

/* Каталог статей */
.v2-catalog-head {
  margin-bottom: 28px;
}

.v2-catalog-head h1 {
  margin: 0 0 12px;
  font-family: var(--v2-font-display);
  font-size: clamp(1.5rem, 4vw, 2rem);
  font-weight: 600;
  letter-spacing: -0.02em;
}

.v2-catalog-grid {
  display: grid;
  gap: 16px;
  margin-bottom: 40px;
}

@media (min-width: 640px) {
  .v2-catalog-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.v2-catalog-card {
  padding: 22px;
  border-radius: var(--v2-radius);
  background: var(--v2-bg-elevated);
  border: 1px solid var(--v2-border);
  box-shadow: var(--v2-shadow-sm);
}

.v2-catalog-icon {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border-radius: 12px;
  font-size: 1.1rem;
  background: var(--v2-accent-muted);
  border: 1px solid var(--v2-accent-soft);
}

.v2-catalog-card h2 {
  font-family: var(--v2-font-body);
  font-size: 1.02rem;
  font-weight: 600;
  line-height: 1.35;
}

.v2-catalog-card h2 a {
  color: var(--v2-text);
  text-decoration: none;
}

.v2-catalog-card h2 a:hover {
  color: var(--v2-accent);
}

.v2-catalog-card p {
  font-size: 0.88rem;
  color: var(--v2-text-dim);
  line-height: 1.5;
}

.v2-catalog-more {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--v2-accent);
  text-decoration: none;
}

.v2-catalog-more:hover {
  text-decoration: underline;
}

.v2-faq summary::after {
  content: "+";
  float: right;
  font-weight: 400;
  color: var(--v2-text-dim);
}

.v2-faq details[open] summary::after {
  content: "−";
  color: var(--v2-accent);
}

/* Hero variants (per-site) */
.v2-hero--centered {
  display: block;
  padding: 56px 0 48px;
  text-align: center;
}

.v2-hero-centered-inner {
  max-width: 720px;
  margin: 0 auto;
}

.v2-hero--centered .v2-hero-lead {
  margin-left: auto;
  margin-right: auto;
}

.v2-hero--centered .v2-hero-actions,
.v2-hero--centered .v2-chips {
  justify-content: center;
}

.v2-hero-stats-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  margin: 0 0 24px;
}

.v2-hero-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  min-width: 120px;
  padding: 14px 16px;
  border-radius: var(--v2-radius);
  background: var(--v2-bg-elevated);
  border: 1px solid var(--v2-border);
  font-size: 0.85rem;
  color: var(--v2-text-muted);
}

.v2-hero-stat strong {
  font-size: 1.1rem;
  color: var(--v2-text);
}

.v2-hero--stacked {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.v2-hero-stack {
  display: grid;
  gap: 12px;
}

@media (min-width: 700px) {
  .v2-hero-stack {
    grid-template-columns: repeat(3, 1fr);
  }
}

.v2-hero-stack-card {
  padding: 18px;
  border-radius: var(--v2-radius);
  background: var(--v2-bg-elevated);
  border: 1px solid var(--v2-border);
  box-shadow: var(--v2-shadow-sm);
}

.v2-hero--split {
  display: grid;
  gap: 32px;
}

@media (min-width: 900px) {
  .v2-hero--split {
    grid-template-columns: 1.1fr 0.9fr;
    align-items: center;
    gap: 48px;
    padding: 64px 0 56px;
  }
}

/* Catalog list layout */
.v2-catalog-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.v2-catalog-list .v2-catalog-card {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 16px;
  align-items: start;
}

.v2-catalog-list .v2-catalog-more {
  align-self: center;
  white-space: nowrap;
}

/* Article shell variant */
.v2-article-sheet {
  padding: 28px 24px;
  border-radius: var(--v2-radius-lg);
  background: var(--v2-bg-elevated);
  border: 1px solid var(--v2-border);
  box-shadow: var(--v2-shadow);
}

/* Per-site class suffix — без доп. вертикальных отступов (только для уникальности DOM) */
.v2-section--v1,
.v2-section--v2,
.v2-section--v3 {
  /* intentionally empty */
}

/* ——— Form variants: reviews ——— */
.v2-review-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 16px;
}

.v2-reviews--stack .v2-review-stack {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.v2-reviews--stack .v2-review-card {
  flex: none;
  width: 100%;
}

/* ——— Form variants: FAQ ——— */
.v2-faq--two-col .v2-faq-grid,
.v2-faq--cards .v2-faq-stack {
  display: grid;
  gap: 14px;
}

@media (min-width: 640px) {
  .v2-faq--two-col .v2-faq-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.v2-faq-card {
  padding: 18px 20px;
  border-radius: var(--v2-radius);
  background: var(--v2-bg-elevated);
  border: 1px solid var(--v2-border);
  box-shadow: var(--v2-shadow-sm);
}

.v2-faq-card h3 {
  margin: 0 0 8px;
  font-family: var(--v2-font-display);
  font-size: 1.05rem;
}

.v2-faq-card p {
  margin: 0;
  color: var(--v2-text-muted);
}

.v2-faq-card--raised {
  box-shadow: var(--v2-shadow);
}

/* ——— Form variants: steps ——— */
.v2-steps-timeline {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0;
  border-left: 2px solid var(--v2-accent-soft);
  margin-left: 12px;
}

.v2-step-timeline-item {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 16px;
  padding: 16px 0 16px 20px;
  position: relative;
}

.v2-step-timeline-body h3 {
  margin: 0 0 6px;
}

.v2-steps-compact {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.v2-step-compact {
  display: grid;
  grid-template-columns: minmax(120px, 34%) 1fr;
  gap: 12px;
  padding: 14px 16px;
  border-radius: var(--v2-radius);
  background: var(--v2-bg-elevated);
  border: 1px solid var(--v2-border);
}

.v2-step-compact strong {
  display: flex;
  align-items: center;
  gap: 8px;
}

.v2-step-compact span:last-child {
  color: var(--v2-text-muted);
}

/* ——— Form variants: home articles ——— */
.v2-articles-cards {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 14px;
}

.v2-article-card-home {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 18px;
  border-radius: var(--v2-radius);
  background: var(--v2-bg-elevated);
  border: 1px solid var(--v2-border);
  text-decoration: none;
  color: inherit;
  box-shadow: var(--v2-shadow-sm);
  transition: border-color 0.15s, box-shadow 0.15s;
}

.v2-article-card-home:hover {
  border-color: var(--v2-accent);
  box-shadow: var(--v2-shadow);
}

.v2-article-card-home strong {
  font-family: var(--v2-font-display);
  font-size: 1.05rem;
}

.v2-article-card-home p {
  margin: 0;
  font-size: 0.92rem;
  color: var(--v2-text-muted);
}

.v2-articles-compact {
  display: flex;
  flex-direction: column;
  gap: 0;
  border: 1px solid var(--v2-border);
  border-radius: var(--v2-radius);
  overflow: hidden;
}

.v2-article-compact {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  padding: 14px 18px;
  text-decoration: none;
  color: var(--v2-text);
  border-bottom: 1px solid var(--v2-border);
  background: var(--v2-bg-elevated);
}

.v2-article-compact:last-child {
  border-bottom: none;
}

.v2-article-compact:hover {
  background: var(--v2-accent-muted);
  color: var(--v2-accent);
}

/* ——— Article layout variants ——— */
.article-lead-box {
  padding: 20px 22px;
  margin-bottom: 1.5rem;
  border-radius: var(--v2-radius);
  background: var(--v2-accent-muted);
  border: 1px solid var(--v2-accent-soft);
}

.article-lead-box p {
  margin: 0;
}

.article-intro-dropcap::first-letter {
  float: left;
  font-family: var(--v2-font-display);
  font-size: 3.2rem;
  line-height: 0.85;
  padding-right: 10px;
  padding-top: 4px;
  color: var(--v2-accent);
}

.article-section--stripe {
  padding: 20px 18px;
  margin: 1.25rem -18px;
  border-radius: var(--v2-radius);
  background: var(--v2-bg-subtle);
}

.article-section--numbered {
  position: relative;
}

.article-section-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  margin-right: 10px;
  border-radius: 999px;
  font-family: var(--v2-font-mono);
  font-size: 0.85rem;
  color: var(--v2-on-accent);
  background: var(--v2-accent);
  vertical-align: middle;
}

.article-h2-numbered {
  display: inline-flex;
  align-items: center;
}

.article-h2-minimal {
  font-size: 1.05rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-family: var(--v2-font-body);
  font-weight: 700;
}

.article-section--minimal {
  margin-bottom: 1.75rem;
}

.article-intro-callout {
  padding: 18px 20px;
  margin-bottom: 1.5rem;
  border-left: 4px solid var(--v2-accent);
  background: var(--v2-bg-elevated);
  border-radius: 0 var(--v2-radius) var(--v2-radius) 0;
  box-shadow: var(--v2-shadow-sm);
}

.article-intro-callout p {
  margin: 0;
}

.article-quote--wide {
  margin: 1.5rem -12px;
  padding: 20px 24px;
  border-radius: var(--v2-radius);
  background: var(--v2-highlight-soft);
  border: none;
  font-family: var(--v2-font-display);
  font-size: 1.15rem;
}

.article-section + .article-section {
  margin-top: 1.5rem;
}

