/* Effecto Blog · dark editorial + brand accent */
:root {
  --bg: #0a0814;
  --bg-soft: #110d1f;
  --bg-elev: #181229;
  --fg: #ffffff;
  --fg-muted: #b9b1c8;
  --fg-faint: #6f6582;
  --border: rgba(168, 132, 247, 0.12);
  --border-strong: rgba(168, 132, 247, 0.24);
  --accent: #a855f7;
  --accent-2: #7c3aed;
  --accent-3: #c084fc;
  --grad: linear-gradient(135deg, #7c3aed 0%, #a855f7 100%);
  --grad-soft: linear-gradient(135deg, rgba(124, 58, 237, 0.18) 0%, rgba(168, 85, 247, 0.18) 100%);
  --font-display: 'Unbounded', system-ui, sans-serif;
  --font-body: 'PT Root UI', system-ui, sans-serif;
  --container: 1200px;
  --radius: 14px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background:
    radial-gradient(ellipse 60% 40% at 15% 10%, rgba(124, 58, 237, 0.18) 0%, transparent 60%),
    radial-gradient(ellipse 50% 35% at 85% 80%, rgba(168, 85, 247, 0.14) 0%, transparent 65%),
    radial-gradient(circle at 30% 50%, rgba(99, 102, 241, 0.06) 0%, transparent 50%),
    var(--bg);
  background-attachment: fixed;
  color: var(--fg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  font-size: 16px;
  position: relative;
  overflow-x: hidden;
}
body::before {
  content: "";
  position: fixed;
  inset: 0;
  background-image:
    radial-gradient(1px 1px at 20% 25%, rgba(255,255,255,0.6) 0%, transparent 100%),
    radial-gradient(1px 1px at 60% 70%, rgba(255,255,255,0.4) 0%, transparent 100%),
    radial-gradient(1px 1px at 80% 15%, rgba(255,255,255,0.5) 0%, transparent 100%),
    radial-gradient(1px 1px at 35% 85%, rgba(255,255,255,0.3) 0%, transparent 100%),
    radial-gradient(1px 1px at 90% 50%, rgba(168, 132, 247, 0.5) 0%, transparent 100%),
    radial-gradient(1px 1px at 10% 60%, rgba(168, 132, 247, 0.4) 0%, transparent 100%);
  pointer-events: none;
  z-index: 0;
}
body > * { position: relative; z-index: 1; }

a { color: inherit; text-decoration: none; }
img, svg { max-width: 100%; display: block; }

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

/* ============ NAV ============ */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(10, 8, 20, 0.85);
  backdrop-filter: saturate(180%) blur(14px);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid var(--border);
}
.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 14px 24px;
}
.nav__brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 18px;
  letter-spacing: -0.01em;
}
.nav__brand-mark {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--grad);
  color: #ffffff;
  border-radius: 8px;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 18px;
  letter-spacing: -0.02em;
  box-shadow: 0 4px 18px -4px rgba(124, 58, 237, 0.5);
}
.nav__links {
  display: flex;
  align-items: center;
  gap: 4px;
}
.nav__link {
  padding: 8px 14px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 500;
  color: var(--fg-muted);
  transition: color 0.2s, background 0.2s;
}
.nav__link:hover {
  color: var(--fg);
  background: rgba(168, 132, 247, 0.08);
}
.nav__cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 10px 18px;
  background: var(--grad);
  color: #ffffff;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.01em;
  transition: transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 4px 16px -4px rgba(124, 58, 237, 0.6);
}
.nav__cta:hover { transform: translateY(-1px); box-shadow: 0 8px 22px -6px rgba(124, 58, 237, 0.7); }

@media (max-width: 720px) {
  .nav__links { display: none; }
}

/* ============ HERO ============ */
.hero {
  padding: 80px 0 96px;
  position: relative;
  overflow: hidden;
}
.hero__grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 64px;
  align-items: center;
}
.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  background: var(--grad-soft);
  border: 1px solid rgba(168, 132, 247, 0.25);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent-3);
  margin-bottom: 24px;
}
.hero__eyebrow::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 12px var(--accent);
}
.hero__title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(36px, 5vw, 64px);
  letter-spacing: -0.025em;
  line-height: 1.05;
  margin-bottom: 24px;
}
.hero__title em {
  font-style: normal;
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.hero__lead {
  font-size: 18px;
  color: var(--fg-muted);
  line-height: 1.6;
  margin-bottom: 32px;
  max-width: 540px;
}
.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 40px;
}
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 24px;
  border-radius: 10px;
  font-size: 15px;
  font-weight: 600;
  transition: transform 0.2s, box-shadow 0.2s, background 0.2s;
  cursor: pointer;
  border: none;
  font-family: inherit;
}
.btn--primary {
  background: var(--grad);
  color: #ffffff;
  box-shadow: 0 8px 24px -8px rgba(124, 58, 237, 0.6);
}
.btn--primary:hover { transform: translateY(-2px); box-shadow: 0 14px 32px -10px rgba(124, 58, 237, 0.75); }
.btn--ghost {
  background: rgba(168, 132, 247, 0.08);
  color: var(--fg);
  border: 1px solid var(--border-strong);
}
.btn--ghost:hover { background: rgba(168, 132, 247, 0.15); border-color: rgba(168, 132, 247, 0.4); }
.hero__stats {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  padding-top: 32px;
  border-top: 1px solid var(--border);
}
.hero__stat-num {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 28px;
  letter-spacing: -0.02em;
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  display: block;
}
.hero__stat-label {
  font-size: 13px;
  color: var(--fg-muted);
  margin-top: 4px;
}

/* Hero portrait card */
.hero__portrait {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  background: var(--grad-soft);
  border: 1px solid var(--border-strong);
  box-shadow: 0 24px 60px -20px rgba(124, 58, 237, 0.35);
  width: 100%;
  max-width: 420px;
  margin: 0 auto;
}
.hero__portrait img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  object-position: center;
}
.hero__portrait::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(10, 8, 20, 0.85) 100%);
  pointer-events: none;
}
.hero__portrait-info {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 20px;
  z-index: 2;
  color: #ffffff;
}
.hero__portrait-name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 22px;
  letter-spacing: -0.01em;
  margin-bottom: 4px;
}
.hero__portrait-role {
  font-size: 13px;
  color: var(--fg-muted);
}
.hero__portrait-tag {
  position: absolute;
  top: 16px;
  right: 16px;
  padding: 6px 12px;
  background: rgba(10, 8, 20, 0.7);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(168, 132, 247, 0.3);
  border-radius: 999px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--accent-3);
  z-index: 2;
}

@media (max-width: 880px) {
  .hero__grid { grid-template-columns: 1fr; gap: 40px; }
  .hero__portrait { max-width: 340px; }
}
@media (max-width: 480px) {
  .hero__portrait { max-width: 280px; }
  .hero__portrait-info { padding: 16px; }
  .hero__portrait-name { font-size: 18px; }
  .hero__portrait-role { font-size: 12px; }
}

/* ============ ARTICLES GRID ============ */
.section { padding: 96px 0; position: relative; }
.section--articles {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.section-head { max-width: 720px; margin-bottom: 56px; }
.section-head__eyebrow {
  display: inline-block;
  padding: 6px 14px;
  background: var(--grad-soft);
  border: 1px solid rgba(168, 132, 247, 0.25);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent-3);
  margin-bottom: 20px;
}
.section-head__title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(32px, 4vw, 48px);
  letter-spacing: -0.02em;
  line-height: 1.1;
  margin-bottom: 16px;
}
.section-head__title em {
  font-style: normal;
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.section-head__lead {
  font-size: 17px;
  color: var(--fg-muted);
  max-width: 580px;
}

.articles-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 28px;
}
.article-card {
  background: var(--bg-soft);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  transition: transform 0.25s, border-color 0.25s, box-shadow 0.25s;
  position: relative;
  overflow: hidden;
}
.article-card::before {
  content: "";
  position: absolute;
  inset: -1px;
  background: var(--grad);
  border-radius: var(--radius);
  opacity: 0;
  transition: opacity 0.3s;
  z-index: -1;
}
.article-card:hover {
  transform: translateY(-4px);
  border-color: rgba(168, 132, 247, 0.4);
  box-shadow: 0 20px 50px -20px rgba(124, 58, 237, 0.4);
}
.article-card__tag {
  display: inline-block;
  padding: 4px 10px;
  background: var(--grad-soft);
  border: 1px solid rgba(168, 132, 247, 0.25);
  border-radius: 6px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--accent-3);
  align-self: flex-start;
}
.article-card__title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 22px;
  letter-spacing: -0.015em;
  line-height: 1.25;
  color: var(--fg);
}
.article-card__title a:hover { color: var(--accent-3); }
.article-card__excerpt {
  font-size: 15px;
  color: var(--fg-muted);
  line-height: 1.55;
  flex-grow: 1;
}
.article-card__meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 16px;
  border-top: 1px solid var(--border);
  font-size: 13px;
  color: var(--fg-faint);
}
.article-card__meta-stat { display: flex; align-items: center; gap: 12px; }
.article-card__author {
  display: flex;
  align-items: center;
  gap: 8px;
}
.article-card__author img {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  object-fit: cover;
  border: 1px solid var(--border-strong);
}
.cat--soon {
  background: rgba(168, 132, 247, 0.06);
  border: 1px dashed rgba(168, 132, 247, 0.3);
  border-radius: 8px;
  padding: 32px 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-size: 14px;
  color: var(--fg-muted);
  min-height: 100%;
}

/* ============ ABOUT AUTHOR BLOCK ============ */
.section--about {
  background: var(--bg-soft);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.author-card {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 48px;
  align-items: center;
  padding: 48px;
  background: var(--bg-elev);
  border: 1px solid var(--border-strong);
  border-radius: 20px;
  position: relative;
  overflow: hidden;
}
.author-card::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -10%;
  width: 50%;
  height: 200%;
  background: radial-gradient(circle, rgba(124, 58, 237, 0.18) 0%, transparent 60%);
  pointer-events: none;
}
.author-card__photo {
  aspect-ratio: 5 / 6;
  border-radius: 16px;
  overflow: hidden;
  border: 2px solid rgba(168, 132, 247, 0.3);
  box-shadow: 0 12px 32px -8px rgba(124, 58, 237, 0.5);
  background: var(--bg-soft);
}
.author-card__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 25%;
}
.author-card__name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 28px;
  letter-spacing: -0.015em;
  margin-bottom: 6px;
}
.author-card__role {
  font-size: 14px;
  color: var(--accent-3);
  font-weight: 600;
  letter-spacing: 0.02em;
  margin-bottom: 16px;
}
.author-card__bio {
  font-size: 15px;
  color: var(--fg-muted);
  line-height: 1.6;
  margin-bottom: 20px;
}
.author-card__links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 14px;
}
.author-card__links a {
  color: var(--fg-muted);
  transition: color 0.2s;
}
.author-card__links a:hover { color: var(--accent-3); }

@media (max-width: 720px) {
  .author-card { grid-template-columns: 1fr; gap: 24px; padding: 32px; }
  .author-card__photo { max-width: 200px; }
}

/* ============ TOPICS ============ */
.topics-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 14px;
}
.topic-chip {
  padding: 16px 20px;
  background: var(--bg-soft);
  border: 1px solid var(--border);
  border-radius: 12px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: -0.005em;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  transition: border-color 0.2s, transform 0.2s, background 0.2s;
}
.topic-chip:hover {
  border-color: rgba(168, 132, 247, 0.5);
  transform: translateY(-2px);
  background: var(--bg-elev);
}
.topic-chip__count {
  font-size: 12px;
  color: var(--fg-faint);
  background: rgba(168, 132, 247, 0.1);
  padding: 2px 8px;
  border-radius: 999px;
  border: 1px solid rgba(168, 132, 247, 0.15);
}

/* ============ CTA SECTION ============ */
.section--cta {
  background: var(--bg-soft);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}
.cta-block {
  padding: 64px;
  background: var(--grad);
  border-radius: 24px;
  text-align: center;
  position: relative;
  overflow: hidden;
  box-shadow: 0 24px 60px -16px rgba(124, 58, 237, 0.5);
}
.cta-block::before, .cta-block::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  pointer-events: none;
}
.cta-block::before {
  width: 320px;
  height: 320px;
  top: -120px;
  left: -120px;
}
.cta-block::after {
  width: 240px;
  height: 240px;
  bottom: -80px;
  right: -80px;
}
.cta-block__title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(28px, 3.5vw, 40px);
  letter-spacing: -0.02em;
  color: #ffffff;
  margin-bottom: 16px;
  position: relative;
}
.cta-block__lead {
  font-size: 17px;
  color: rgba(255, 255, 255, 0.85);
  max-width: 540px;
  margin: 0 auto 32px;
  position: relative;
}
.cta-block__btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 16px 32px;
  background: #ffffff;
  color: var(--accent-2);
  border-radius: 12px;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: -0.005em;
  transition: transform 0.2s, box-shadow 0.2s;
  position: relative;
}
.cta-block__btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 32px -8px rgba(0, 0, 0, 0.3);
}
@media (max-width: 720px) {
  .cta-block { padding: 40px 24px; }
}

/* ============ FOOTER ============ */
.footer {
  background: var(--bg);
  color: var(--fg-muted);
  padding: 56px 0 32px;
  border-top: 1px solid var(--border);
}
.footer__grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}
.footer__col h4 {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--fg);
  margin-bottom: 18px;
}
.footer__col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer__col a {
  font-size: 14px;
  color: var(--fg-muted);
  transition: color 0.2s;
}
.footer__col a:hover { color: var(--accent-3); }
.footer__brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 18px;
  margin-bottom: 16px;
}
.footer__about {
  font-size: 14px;
  line-height: 1.55;
  max-width: 320px;
}
.footer__bottom {
  padding-top: 28px;
  border-top: 1px solid var(--border);
  font-size: 13px;
  color: var(--fg-faint);
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: space-between;
}
@media (max-width: 720px) {
  .footer__grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .footer__col:first-child { grid-column: 1 / -1; }
}

/* ============ ARTICLE PAGE ============ */
.article-hero {
  padding: 64px 0 48px;
  border-bottom: 1px solid var(--border);
}
.article-hero__crumbs {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--fg-faint);
  margin-bottom: 24px;
}
.article-hero__crumbs a { color: var(--fg-muted); }
.article-hero__crumbs a:hover { color: var(--accent-3); }
.article-hero__title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(32px, 4vw, 56px);
  letter-spacing: -0.02em;
  line-height: 1.1;
  margin-bottom: 24px;
  max-width: 900px;
}
.article-hero__meta {
  display: flex;
  align-items: center;
  gap: 24px;
  font-size: 14px;
  color: var(--fg-muted);
}
.article-hero__author {
  display: flex;
  align-items: center;
  gap: 12px;
}
.article-hero__author img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid rgba(168, 132, 247, 0.3);
}
.article-hero__author-name {
  font-weight: 600;
  color: var(--fg);
  display: block;
}
.article-hero__author-role {
  font-size: 12px;
  color: var(--fg-faint);
  letter-spacing: 0.02em;
}

.article-body {
  max-width: 760px;
  margin: 0 auto;
  padding: 56px 0;
}
.article-body h2 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 30px;
  letter-spacing: -0.015em;
  margin: 56px 0 20px;
  line-height: 1.2;
}
.article-body h2:first-child { margin-top: 0; }
.article-body h3 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 22px;
  letter-spacing: -0.01em;
  margin: 40px 0 14px;
}
.article-body p {
  font-size: 17px;
  line-height: 1.7;
  margin-bottom: 22px;
  color: rgba(255, 255, 255, 0.85);
}
.article-body ul, .article-body ol {
  margin: 0 0 24px;
  padding-left: 24px;
}
.article-body li {
  font-size: 17px;
  line-height: 1.7;
  margin-bottom: 10px;
  color: rgba(255, 255, 255, 0.85);
}
.article-body strong { color: var(--fg); font-weight: 600; }
.article-body a {
  color: var(--accent-3);
  border-bottom: 1px solid rgba(168, 132, 247, 0.3);
  transition: border-color 0.2s;
}
.article-body a:hover { border-bottom-color: var(--accent-3); }
.article-body blockquote {
  margin: 32px 0;
  padding: 24px 28px;
  background: var(--bg-soft);
  border-left: 3px solid var(--accent);
  border-radius: 0 12px 12px 0;
  font-size: 18px;
  color: var(--fg);
  font-style: italic;
}
.article-body table {
  width: 100%;
  border-collapse: collapse;
  margin: 32px 0;
  background: var(--bg-soft);
  border-radius: 12px;
  overflow: hidden;
}
.article-body th, .article-body td {
  padding: 12px 16px;
  text-align: left;
  border-bottom: 1px solid var(--border);
  font-size: 15px;
}
.article-body th {
  background: var(--bg-elev);
  font-weight: 600;
  color: var(--fg);
  letter-spacing: 0.01em;
}
.article-body code {
  background: var(--bg-elev);
  padding: 2px 6px;
  border-radius: 4px;
  font-size: 14px;
  font-family: 'Courier New', monospace;
  color: var(--accent-3);
}
.article-body hr {
  border: none;
  border-top: 1px solid var(--border);
  margin: 48px 0;
}
.article-body .author-box {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 20px;
  align-items: center;
  padding: 24px;
  background: var(--bg-soft);
  border: 1px solid var(--border-strong);
  border-radius: 16px;
  margin: 56px 0 32px;
}
.article-body .author-box img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid rgba(168, 132, 247, 0.3);
}
.article-body .author-box h4 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 18px;
  margin-bottom: 4px;
}
.article-body .author-box .role {
  font-size: 13px;
  color: var(--accent-3);
  margin-bottom: 8px;
}
.article-body .author-box p {
  font-size: 14px;
  color: var(--fg-muted);
  margin: 0;
}
.article-body .cta-inline {
  margin: 48px 0;
  padding: 32px;
  background: var(--grad);
  border-radius: 16px;
  text-align: center;
}
.article-body .cta-inline h3 {
  color: #ffffff;
  margin: 0 0 12px;
  font-family: var(--font-display);
  font-weight: 700;
}
.article-body .cta-inline p {
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 24px;
}
.article-body .cta-inline a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  background: #ffffff;
  color: var(--accent-2);
  border-radius: 10px;
  font-weight: 700;
  border-bottom: none;
}
.article-body .cta-inline a:hover { box-shadow: 0 12px 28px -8px rgba(0,0,0,0.3); }
.article-body .faq-item {
  background: var(--bg-soft);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 20px 24px;
  margin-bottom: 14px;
}
.article-body .faq-item h4 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 17px;
  margin-bottom: 10px;
}
.article-body .faq-item p {
  font-size: 15px;
  margin: 0;
  color: var(--fg-muted);
}

@media (max-width: 720px) {
  .article-body .author-box { grid-template-columns: 1fr; text-align: center; }
  .article-body .author-box img { margin: 0 auto; }
}

/* ============ TRUST BLOCK ============ */
.section--trust {
  background:
    radial-gradient(ellipse 50% 35% at 50% 0%, rgba(124, 58, 237, 0.14) 0%, transparent 70%),
    var(--bg);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.trust-head {
  max-width: 720px;
  margin: 0 auto 56px;
  text-align: center;
}
.trust-head__eyebrow {
  display: inline-block;
  padding: 6px 14px;
  background: var(--grad-soft);
  border: 1px solid rgba(168, 132, 247, 0.25);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent-3);
  margin-bottom: 20px;
}
.trust-head__title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(30px, 4vw, 44px);
  letter-spacing: -0.02em;
  line-height: 1.1;
  margin-bottom: 16px;
}
.trust-head__title em {
  font-style: normal;
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.trust-head__lead {
  font-size: 17px;
  color: var(--fg-muted);
}
.trust-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 20px;
  margin-bottom: 56px;
}
.trust-stat {
  text-align: center;
  padding: 32px 20px;
  background: var(--bg-soft);
  border: 1px solid var(--border);
  border-radius: 16px;
  transition: border-color 0.25s, transform 0.25s;
}
.trust-stat:hover {
  border-color: rgba(168, 132, 247, 0.4);
  transform: translateY(-3px);
}
.trust-stat__num {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(36px, 4vw, 52px);
  letter-spacing: -0.025em;
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  line-height: 1;
  margin-bottom: 8px;
}
.trust-stat__label {
  font-size: 14px;
  color: var(--fg-muted);
  line-height: 1.4;
}
.trust-logos {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 16px;
  align-items: stretch;
}
.trust-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px 16px;
  background: var(--bg-soft);
  border: 1px solid var(--border);
  border-radius: 12px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: -0.005em;
  color: var(--fg-muted);
  text-align: center;
  transition: border-color 0.2s, color 0.2s, background 0.2s;
}
.trust-logo:hover {
  border-color: rgba(168, 132, 247, 0.5);
  color: var(--fg);
  background: var(--bg-elev);
}
.trust-foot {
  margin-top: 40px;
  padding-top: 32px;
  border-top: 1px solid var(--border);
  text-align: center;
  font-size: 14px;
  color: var(--fg-muted);
}
.trust-foot a {
  color: var(--accent-3);
  border-bottom: 1px dashed rgba(168, 132, 247, 0.4);
  transition: border-color 0.2s;
}
.trust-foot a:hover { border-bottom-color: var(--accent-3); }

@media (max-width: 720px) {
  .trust-logos { grid-template-columns: repeat(2, 1fr); }
}

/* ============ HERO SOCIALS ============ */
.hero__socials {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}
.hero__social {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  background: rgba(168, 132, 247, 0.08);
  border: 1px solid rgba(168, 132, 247, 0.2);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
  color: var(--fg);
  transition: background 0.2s, border-color 0.2s, transform 0.2s;
}
.hero__social:hover {
  background: rgba(168, 132, 247, 0.18);
  border-color: rgba(168, 132, 247, 0.5);
  transform: translateY(-1px);
}
.hero__social svg { flex-shrink: 0; }
.hero__social--vk:hover { background: rgba(0, 119, 255, 0.18); border-color: rgba(0, 119, 255, 0.4); }
.hero__social--max:hover { background: rgba(43, 178, 76, 0.15); border-color: rgba(43, 178, 76, 0.4); }
