/* Shared typographic styles for long-form content pages: privacy, terms,
   about, alternatives, pillar pages. Applied on top of landing.css so the
   nav + footer + brand match the marketing site. */
.article {
  max-width: 760px;
  margin: 0 auto;
  padding: 32px 24px 56px;
  color: var(--text);
  font-size: 16px;
  line-height: 1.65;
  scroll-margin-top: 72px;
}
.article h2[id] {
  scroll-margin-top: 72px;
}
.article-head {
  margin-bottom: 36px;
  border-bottom: 1px solid var(--border-faint);
  padding-bottom: 24px;
}
.article-head .eyebrow {
  display: inline-flex;
  gap: 9px;
  align-items: center;
  padding: 6px 11px;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(34,231,245,0.30);
  background: rgba(34,231,245,0.08);
  color: var(--cyan);
  font-size: var(--text-label);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 18px;
}
.article-head h1 {
  font-family: var(--font-sans, "Geist", system-ui, sans-serif);
  font-size: clamp(34px, 5.4vw, 52px);
  line-height: 1.08;
  margin: 0 0 18px;
  font-weight: 600;
  letter-spacing: -0.01em;
}
.article-lede {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.55;
  max-width: 660px;
  margin: 0 0 14px;
}
.article-meta {
  color: var(--muted);
  font-size: 13px;
  margin: 0;
  letter-spacing: 0.04em;
}
.article h2 {
  font-family: var(--font-sans, "Geist", system-ui, sans-serif);
  font-size: clamp(24px, 3.6vw, 32px);
  font-weight: 600;
  margin: 40px 0 14px;
  letter-spacing: -0.005em;
  color: var(--text);
}
.article h3 {
  font-size: 16px;
  font-weight: 600;
  margin: 28px 0 10px;
  color: var(--text);
}
.article p {
  margin: 0 0 14px;
  color: var(--text-primary);
}
.article ul, .article ol {
  margin: 0 0 18px;
  padding-left: 22px;
  color: var(--text-primary);
}
.article li {
  margin-bottom: 8px;
}
.article a {
  color: var(--cyan);
  text-decoration: underline;
  text-decoration-color: rgba(34,231,245,0.40);
  text-underline-offset: 3px;
  transition: text-decoration-color 120ms;
}
.article a:hover {
  text-decoration-color: var(--cyan);
}
.article strong { color: var(--text); }
.article code {
  font-family: var(--font-mono);
  font-size: 0.92em;
  padding: 2px 6px;
  border-radius: var(--radius-sm);
  background: rgba(255,255,255,0.06);
  border: 1px solid var(--border-faint);
  color: var(--cyan);
}
.article blockquote {
  margin: 18px 0;
  padding: 12px 18px;
  border-left: 3px solid var(--cyan);
  background: rgba(34,231,245,0.04);
  color: var(--text-primary);
  font-style: italic;
}
.article table {
  width: 100%;
  margin: 18px 0;
  border-collapse: collapse;
  font-size: 14px;
}
.article th, .article td {
  padding: 10px 14px;
  border-bottom: 1px solid var(--border-faint);
  text-align: left;
}
.article th {
  background: rgba(255,255,255,0.04);
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-size: 11px;
  color: var(--muted);
}
.article td:first-child { font-weight: 500; color: var(--text); }
.article .cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  border-radius: var(--radius-sm);
  background: var(--cyan);
  color: var(--text-on-accent);
  font-weight: 600;
  text-decoration: none;
  margin-right: 12px;
}
.article .cta:hover { text-decoration: none; opacity: 0.9; }

@media (max-width: 640px) {
  .article {
    padding: 18px 16px 40px;
  }
  .article-head { margin-bottom: 24px; padding-bottom: 18px; }
  .article-lede { font-size: 16px; }
  .article h2 { margin: 30px 0 10px; }
  .article ul, .article ol { padding-left: 20px; }
}

/* Breadcrumbs above article-head — small, muted, used on alternatives
   and pillar pages for in-page navigation context. */
.article .breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  align-items: center;
  font-size: 12px;
  color: var(--muted);
  margin-bottom: 18px;
  letter-spacing: 0.04em;
}
.article .breadcrumbs a {
  color: var(--muted);
  text-decoration: none;
}
.article .breadcrumbs a:hover { color: var(--cyan); }
.article .breadcrumbs .current { color: var(--text); }

/* Alternatives hub card grid. */
.alt-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 16px;
  margin: 22px 0 32px;
}
.alt-card {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 18px 20px;
  border: 1px solid var(--border-faint);
  border-radius: var(--radius-lg);
  background: rgba(15,19,20,0.62);
  text-decoration: none !important;
  color: var(--text);
  transition: border-color 140ms, transform 60ms, background 140ms;
}
.alt-card:hover {
  border-color: rgba(34,231,245,0.45);
  background: rgba(34,231,245,0.04);
}
.alt-card:active { transform: translateY(1px); }
.alt-card h3 {
  margin: 0;
  font-size: 16px;
  font-weight: 600;
  color: var(--text);
}
.alt-card p {
  font-size: 14px;
  color: var(--muted);
  margin: 0;
  line-height: 1.55;
}
.alt-card-tag {
  font-size: 12px !important;
  text-transform: uppercase;
  letter-spacing: 0.10em;
  color: var(--cyan) !important;
  margin: 0 !important;
}
.alt-card-cta {
  margin-top: auto;
  padding-top: 8px;
  font-size: 13px;
  color: var(--cyan);
  font-weight: 600;
}

/* Pricing cards have full styling in landing.css; keep article context
   from inheriting the prose `a { underline }` rule on the embedded CTAs. */
.article .alt-card { text-decoration: none; }

/* Width variants — replaces inline max-width on article elements. */
.article--wide { max-width: 820px; }
.article--mid { max-width: 860px; }
.article--wider { max-width: 880px; }
.article--widest { max-width: 920px; }

/* Section divider between content and related-reading / CTA footer. */
.article-divider {
  border: 0;
  border-top: 1px solid var(--border-faint);
  margin: 36px 0 24px;
}

/* Blog index list — replaces inline styles on blog_index.html. */
.blog-list {
  list-style: none;
  padding: 0;
  margin: 24px 0 0;
}
.blog-list li {
  margin-bottom: 28px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--border-faint);
}
.blog-list li:last-child {
  border-bottom: 0;
  margin-bottom: 0;
  padding-bottom: 0;
}
.blog-list h2 {
  margin: 0 0 6px;
}
.blog-list .article-meta {
  margin: 0 0 8px;
}
.blog-list .blog-list-desc {
  margin: 0;
  color: var(--text-2, rgba(244,248,245,0.55));
}
