/* ============================================================
   WindowsKMS — Site Design System
   Single source of truth for the whole site (typography, color,
   spacing, components). Edit here to restyle every page at once.
   ============================================================ */

/* ─── Reset ─── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body { min-height: 100vh; line-height: 1.6; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; }
img, svg { max-width: 100%; display: block; }
button { cursor: pointer; border: none; background: none; font: inherit; color: inherit; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }

/* ─── Design Tokens ─── */
:root {
  /* Typography */
  --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-mono: 'JetBrains Mono', 'SF Mono', 'Consolas', 'Monaco', monospace;

  /* Brand */
  --c-red:        #DC2626;
  --c-red-hover:  #B91C1C;
  --c-blue:       #0EA5E9;
  --c-blue-dark:  #0284C7;
  --c-green:      #10B981;
  --c-green-bg:   #D1FAE5;
  --c-green-text: #065F46;
  --c-orange:     #F97316;
  --c-yellow-bg:  #FEF3C7;
  --c-yellow-bd:  #FCD34D;
  --c-yellow-text:#92400E;

  /* Neutral */
  --c-text:       #0F172A;
  --c-text-2:     #475569;
  --c-text-3:     #64748B;
  --c-text-mute:  #94A3B8;
  --c-border:     #E2E8F0;
  --c-border-2:   #CBD5E1;
  --c-bg:         #F5F7FA;
  --c-bg-2:       #F1F5F9;
  --c-card:       #FFFFFF;
  --c-pink-bg:    #FEE2E2;
  --c-dark:       #0F172A;
  --c-dark-2:     #1E293B;

  /* Radii / Shadows */
  --r-sm:  6px;
  --r-md:  10px;
  --r-lg:  14px;
  --r-xl:  20px;
  --r-pill: 999px;
  --sh-sm: 0 1px 2px rgba(15,23,42,.04);
  --sh-md: 0 4px 12px rgba(15,23,42,.06);
  --sh-lg: 0 10px 30px rgba(15,23,42,.08);

  /* Layout */
  --container: 1140px;
  --header-h: 76px;
}

/* ─── Dark Mode ─── */
[data-theme="dark"] {
  --c-text:       #F1F5F9;
  --c-text-2:     #CBD5E1;
  --c-text-3:     #94A3B8;
  --c-text-mute:  #64748B;
  --c-border:     #1E293B;
  --c-border-2:   #334155;
  --c-bg:         #0F172A;
  --c-bg-2:       #1E293B;
  --c-card:       #1E293B;
  --c-pink-bg:    #3F1D1D;
  --c-yellow-bg:  #3F2D1D;
}

/* ─── Base ─── */
body {
  font-family: var(--font-sans);
  font-size: 17px;
  color: var(--c-text);
  background: var(--c-bg);
}
.container { max-width: var(--container); margin: 0 auto; padding: 0 24px; }

/* ─── Header ─── */
.site-header {
  background: var(--c-card);
  border-bottom: 1px solid var(--c-border);
  position: sticky; top: 0; z-index: 50;
}
.site-header__inner {
  display: flex; align-items: center; justify-content: space-between;
  height: var(--header-h);
  max-width: var(--container); margin: 0 auto; padding: 0 24px;
}
.brand { display: flex; align-items: center; gap: 8px; }
.brand__logo { height: 54px; width: auto; object-fit: contain; }

.page-badge {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 4px 10px; border-radius: var(--r-pill);
  background: var(--c-green-bg); color: var(--c-green-text);
  font-size: 11px; font-weight: 700; letter-spacing: .04em; text-transform: uppercase;
  margin-left: 10px;
}
.page-badge::before { content: "●"; font-size: 8px; }

.nav { display: flex; align-items: center; gap: 28px; }
.nav__link {
  font-size: 15px; font-weight: 500; color: var(--c-text-2);
  transition: color .15s;
}
.nav__link:hover, .nav__link.active { color: var(--c-text); }
.nav__link.active { color: var(--c-red); font-weight: 600; }

.theme-toggle {
  width: 32px; height: 32px; border-radius: var(--r-pill);
  display: inline-flex; align-items: center; justify-content: center;
  color: var(--c-text-2); transition: background .15s;
}
.theme-toggle:hover { background: var(--c-bg-2); }

.btn-header {
  background: var(--c-red); color: #fff;
  padding: 11px 24px; border-radius: var(--r-pill);
  font-size: 15px; font-weight: 600; letter-spacing: .01em;
  transition: background .15s, transform .15s;
}
.btn-header:hover { background: var(--c-red-hover); }
.btn-header:active { transform: scale(.97); }

/* ─── Hero (homepage only) ─── */
.hero {
  background: var(--c-bg);
  background-image:
    linear-gradient(to right, rgba(15,23,42,.04) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(15,23,42,.04) 1px, transparent 1px);
  background-size: 52px 52px;
  padding: 88px 0 60px;
}
.hero__inner { text-align: center; max-width: 820px; margin: 0 auto; }
.hero h1 {
  font-size: 58px; font-weight: 800; letter-spacing: -.025em;
  line-height: 1.1; color: var(--c-text);
}
.hero h1 .accent { color: var(--c-blue); display: block; margin-top: 4px; }
.hero p.lead {
  margin-top: 20px; font-size: 19px; color: var(--c-text-2); max-width: 640px;
  margin-left: auto; margin-right: auto;
}

/* ─── Download Card ─── */
.dl-card {
  background: var(--c-card); border-radius: var(--r-lg);
  box-shadow: var(--sh-lg);
  margin: 40px auto 0; max-width: 680px;
  padding: 34px;
}
.dl-card__top {
  display: flex; align-items: center; justify-content: space-between;
  padding-bottom: 18px; border-bottom: 1px solid var(--c-border);
}
.verified-pill {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 6px 14px; border-radius: var(--r-pill);
  background: var(--c-green-bg); color: var(--c-green-text);
  font-size: 12px; font-weight: 700; letter-spacing: .04em; text-transform: uppercase;
}
.verified-pill svg { width: 14px; height: 14px; }
.dl-card__meta { font-size: 13px; color: var(--c-text-3); }
.dl-card__meta b { color: var(--c-text-2); font-weight: 600; }

.dl-filename {
  text-align: center; margin: 24px 0 8px;
  font-family: var(--font-sans); font-weight: 800;
  font-size: 29px; color: var(--c-text); letter-spacing: -.025em;
}
.dl-desc {
  text-align: center; color: var(--c-text-3);
  font-size: 15px; max-width: 500px; margin: 0 auto 24px;
}

.dl-meta-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-bottom: 22px;
}
.dl-meta-grid__item {
  border-radius: var(--r-md); padding: 14px 16px;
  position: relative;
}
.dl-meta-grid__item--password { background: var(--c-pink-bg); }
.dl-meta-grid__item--date     { background: var(--c-bg-2); }
.dl-meta-grid__label {
  font-size: 10px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase;
}
.dl-meta-grid__item--password .dl-meta-grid__label { color: var(--c-red); }
.dl-meta-grid__item--date .dl-meta-grid__label { color: var(--c-text-3); }
.dl-meta-grid__value {
  margin-top: 6px; font-family: var(--font-mono); font-weight: 700;
  font-size: 26px;
}
.dl-meta-grid__item--password .dl-meta-grid__value { color: var(--c-red); }
.dl-meta-grid__item--date .dl-meta-grid__value { color: var(--c-text); font-size: 17px; }
.dl-meta-grid__hint { margin-top: 6px; font-size: 11px; color: var(--c-text-3); line-height: 1.4; }
.copy-btn {
  position: absolute; top: 12px; right: 12px;
  color: var(--c-text-3); padding: 4px; border-radius: var(--r-sm);
  transition: background .15s, color .15s;
}
.copy-btn:hover { background: rgba(0,0,0,.06); color: var(--c-text); }
.copy-btn svg { width: 16px; height: 16px; }

.btn-dl {
  display: flex; align-items: center; justify-content: center; gap: 10px;
  width: 100%; padding: 19px 28px; border-radius: var(--r-md);
  background: var(--c-red); color: #fff;
  font-size: 17px; font-weight: 700; letter-spacing: .04em; text-transform: uppercase;
  transition: background .15s, transform .15s, box-shadow .15s;
  box-shadow: 0 4px 14px rgba(220, 38, 38, .25);
}
.btn-dl:hover { background: var(--c-red-hover); box-shadow: 0 6px 20px rgba(220, 38, 38, .35); }
.btn-dl:active { transform: scale(.99); }
.btn-dl svg { width: 20px; height: 20px; }

.dl-card__footer {
  margin-top: 18px; padding-top: 16px; border-top: 1px solid var(--c-border);
  display: flex; align-items: center; justify-content: space-between;
  font-size: 12px;
}
.sha-info { color: var(--c-text-3); }
.sha-info b { color: var(--c-text-2); font-weight: 600; }
.vt-link { color: var(--c-blue); font-weight: 600; }
.vt-link:hover { text-decoration: underline; }

/* ─── WinRAR Card ─── */
.winrar-card {
  background: var(--c-card); border-radius: var(--r-md);
  box-shadow: var(--sh-md);
  border: 1px solid var(--c-border);
  margin: 28px auto 0; max-width: 860px;
  padding: 24px 36px;
  display: flex; align-items: center; gap: 32px;
}
.winrar-card__icon {
  width: 180px; height: 80px; border-radius: var(--r-md);
  background: var(--c-bg-2);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  padding: 10px 20px;
}
.winrar-card__icon img { width: 100%; height: 100%; object-fit: contain; }
.winrar-card__body { flex: 1; min-width: 0; }
.winrar-card__title { font-size: 17px; font-weight: 700; color: var(--c-text); margin-bottom: 6px; white-space: nowrap; }
.winrar-card__text { font-size: 14px; color: var(--c-text-2); line-height: 1.6; }
.winrar-card__text b { color: var(--c-red); font-weight: 700; }
.btn-blue {
  background: var(--c-blue); color: #fff;
  padding: 13px 22px; border-radius: var(--r-md);
  font-size: 14px; font-weight: 600;
  display: inline-flex; align-items: center; gap: 9px;
  transition: background .15s, transform .15s;
  flex-shrink: 0;
  white-space: nowrap;
}
.btn-blue:hover { background: var(--c-blue-dark); }
.btn-blue:active { transform: scale(.97); }
.btn-blue svg { width: 15px; height: 15px; }

@media (max-width: 680px) {
  .winrar-card { flex-direction: column; text-align: center; padding: 24px 22px; gap: 18px; }
  .winrar-card__icon { width: 150px; height: 88px; }
}

/* ─── Generic section ─── */
.section { padding: 76px 0; }
.section__title { font-size: 32px; font-weight: 800; letter-spacing: -.02em; text-align: center; color: var(--c-text); }
.section__lead  { text-align: center; color: var(--c-text-3); font-size: 16px; max-width: 640px; margin: 12px auto 0; }
.section__title .accent { color: var(--c-blue); }

/* ─── Trusted (testimonials) ─── */
.testimonials {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px;
  margin-top: 36px;
}
.testimonial {
  background: var(--c-card); border-radius: var(--r-md);
  border: 1px solid var(--c-border);
  padding: 22px;
}
.stars { color: var(--c-yellow-bd); font-size: 14px; letter-spacing: 2px; margin-bottom: 12px; }
.testimonial__text { font-size: 13px; color: var(--c-text-2); line-height: 1.55; min-height: 100px; }
.testimonial__author { display: flex; align-items: center; gap: 10px; margin-top: 14px; }
.testimonial__avatar {
  width: 32px; height: 32px; border-radius: var(--r-pill);
  background: var(--c-blue); color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-size: 13px; font-weight: 700;
}
.testimonial__name { font-size: 13px; font-weight: 700; color: var(--c-text); }
.testimonial__role { font-size: 11px; color: var(--c-text-3); margin-top: 1px; }

/* ─── Command Generator ─── */
.cmd-card {
  background: var(--c-card); border-radius: var(--r-lg);
  border: 1px solid var(--c-border);
  max-width: 760px; margin: 36px auto 0;
  padding: 26px;
}
.cmd-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.cmd-field label {
  display: block; font-size: 11px; font-weight: 700;
  letter-spacing: .06em; text-transform: uppercase; color: var(--c-text-3); margin-bottom: 6px;
}
.cmd-field select, .cmd-field input {
  width: 100%; padding: 10px 14px; border-radius: var(--r-md);
  border: 1px solid var(--c-border-2); background: var(--c-card);
  font-family: var(--font-sans); font-size: 14px; color: var(--c-text);
}
.cmd-field input:focus, .cmd-field select:focus {
  outline: none; border-color: var(--c-blue); box-shadow: 0 0 0 3px rgba(14, 165, 233, .15);
}
.cmd-pill-active {
  display: inline-block; margin-top: 6px;
  font-size: 11px; font-weight: 700; padding: 2px 8px;
  background: var(--c-green-bg); color: var(--c-green-text);
  border-radius: var(--r-pill);
}
.cmd-output-label {
  margin-top: 18px; font-size: 11px; font-weight: 700;
  letter-spacing: .06em; text-transform: uppercase; color: var(--c-text-3);
}
.cmd-output {
  margin-top: 8px; padding: 16px 18px;
  background: #0B1220; color: #A7F3D0;
  font-family: var(--font-mono); font-size: 13px; line-height: 1.7;
  border-radius: var(--r-md); overflow-x: auto;
}
.cmd-output .arrow { color: #38BDF8; }
.btn-cmd {
  margin-top: 16px; width: 100%; padding: 12px;
  background: var(--c-blue); color: #fff;
  border-radius: var(--r-md);
  font-size: 13px; font-weight: 700; letter-spacing: .04em; text-transform: uppercase;
  transition: background .15s;
}
.btn-cmd:hover { background: var(--c-blue-dark); }

/* ─── Changelog ─── */
.changelog { max-width: 760px; margin: 36px auto 0; display: flex; flex-direction: column; gap: 16px; }
.changelog__item {
  background: var(--c-card); border: 1px solid var(--c-border);
  border-radius: var(--r-md); padding: 22px 24px;
}
.changelog__head {
  display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 10px;
  margin-bottom: 12px;
}
.changelog__version {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 16px; font-weight: 800; color: var(--c-text);
}
.badge-latest {
  font-size: 10px; font-weight: 700; padding: 3px 9px;
  background: var(--c-green-bg); color: var(--c-green-text);
  border-radius: var(--r-pill);
}
.changelog__date { font-size: 12px; color: var(--c-text-3); }
.changelog__list { display: flex; flex-direction: column; gap: 8px; }
.changelog__list li {
  font-size: 13px; color: var(--c-text-2); padding-left: 18px; position: relative;
  line-height: 1.5;
}
.changelog__list li::before {
  content: "→"; position: absolute; left: 0; color: var(--c-blue); font-weight: 700;
}

/* ─── CTA Dark ─── */
.cta-dark {
  background: var(--c-dark); border-radius: var(--r-lg);
  max-width: 760px; margin: 48px auto 0;
  padding: 40px 28px; text-align: center;
}
.cta-dark h2 { color: #fff; font-size: 24px; font-weight: 800; }
.cta-dark p { color: #94A3B8; font-size: 14px; margin: 10px auto 24px; max-width: 520px; }
.cta-dark .btn-dl { max-width: 460px; margin: 0 auto; }
.cta-dark__fine { color: #64748B; font-size: 11px; margin-top: 14px; }

/* ─── Footer ─── */
.site-footer {
  border-top: 1px solid var(--c-border);
  padding: 28px 0; margin-top: 64px;
  background: var(--c-card);
}
.site-footer__inner {
  display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 12px;
  font-size: 13px; color: var(--c-text-3);
}
.site-footer__nav { display: flex; gap: 22px; }
.site-footer__nav a:hover { color: var(--c-text); }

/* ─── Internal page hero ─── */
.page-head { padding: 36px 0 20px; }
.back-link {
  display: inline-flex; align-items: center; gap: 6px;
  color: var(--c-blue); font-size: 13px; font-weight: 500; margin-bottom: 16px;
}
.back-link:hover { text-decoration: underline; }
.page-head h1 {
  font-size: 38px; font-weight: 800; letter-spacing: -.02em; color: var(--c-text);
}
.page-head p.lead { margin-top: 12px; font-size: 17px; color: var(--c-text-2); max-width: 760px; }

/* ─── Compatibility table ─── */
.search-box {
  margin: 18px 0 22px; max-width: 420px;
  position: relative;
}
.search-box input {
  width: 100%; padding: 11px 16px 11px 40px;
  border: 1px solid var(--c-border-2); border-radius: var(--r-md);
  background: var(--c-card); font-family: var(--font-sans); font-size: 14px; color: var(--c-text);
}
.search-box svg { position: absolute; left: 14px; top: 50%; transform: translateY(-50%); color: var(--c-text-mute); width: 16px; height: 16px; }

.gvlk-table {
  width: 100%; border-collapse: collapse; background: var(--c-card);
  border: 1px solid var(--c-border); border-radius: var(--r-md); overflow: hidden;
}
.gvlk-table th {
  text-align: left; padding: 14px 18px; font-size: 11px; letter-spacing: .06em;
  text-transform: uppercase; color: var(--c-text-3); font-weight: 700;
  border-bottom: 1px solid var(--c-border); background: var(--c-bg-2);
}
.gvlk-table td {
  padding: 14px 18px; font-size: 14px; color: var(--c-text);
  border-bottom: 1px solid var(--c-border);
}
.gvlk-table tr:last-child td { border-bottom: none; }
.gvlk-table .gvlk-key {
  font-family: var(--font-mono); color: var(--c-blue); font-weight: 600; font-size: 13px;
}
.pill {
  display: inline-block; font-size: 10px; font-weight: 700; padding: 4px 10px;
  border-radius: var(--r-pill); letter-spacing: .06em; text-transform: uppercase;
}
.pill--os      { background: #FFEDD5; color: #9A3412; }
.pill--office  { background: #DBEAFE; color: #1E40AF; }
.pill--servers { background: var(--c-green-bg); color: var(--c-green-text); }

/* ─── How-to steps ─── */
.simulator-card {
  background: #0B1220; border-radius: var(--r-lg);
  padding: 22px; margin: 18px 0 32px;
}
.simulator-card__head {
  display: flex; align-items: center; justify-content: space-between; margin-bottom: 14px;
}
.simulator-card__title { color: #fff; font-size: 14px; font-weight: 700; display: flex; align-items: center; gap: 8px; }
.simulator-card__title .badge {
  font-size: 9px; padding: 3px 8px; background: rgba(14,165,233,.2); color: #38BDF8; border-radius: var(--r-pill);
  letter-spacing: .06em; text-transform: uppercase;
}
.simulator-card__sub { color: #94A3B8; font-size: 11px; margin-top: 4px; }
.simulator-card__btn {
  background: var(--c-blue); color: #fff; padding: 8px 16px; border-radius: var(--r-md);
  font-size: 12px; font-weight: 700; display: inline-flex; align-items: center; gap: 6px;
}
.simulator-card__output {
  background: #050B14; border-radius: var(--r-md);
  padding: 14px 18px; color: #A7F3D0;
  font-family: var(--font-mono); font-size: 12px; line-height: 1.7; min-height: 80px;
}
.simulator-card__output em { color: #64748B; font-style: italic; }
.simulator-card__output .prompt { color: #38BDF8; }

.steps { display: flex; flex-direction: column; gap: 16px; margin-top: 8px; }
.step {
  background: var(--c-card); border: 1px solid var(--c-border); border-radius: var(--r-md);
  padding: 22px 24px; display: flex; gap: 18px; align-items: flex-start;
}
.step__num {
  width: 32px; height: 32px; border-radius: var(--r-pill);
  background: var(--c-red); color: #fff; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  font-size: 14px; font-weight: 700;
}
.step__body { flex: 1; }
.step__title { font-size: 16px; font-weight: 700; color: var(--c-text); margin-bottom: 6px; }
.step__text { font-size: 13px; color: var(--c-text-2); line-height: 1.6; }
.step__text b { color: var(--c-red); font-weight: 700; }
.step__text code {
  font-family: var(--font-mono); background: var(--c-bg-2);
  padding: 1px 6px; border-radius: 4px; font-size: 12px; color: var(--c-text);
}
.alert-warn {
  margin-top: 12px; padding: 12px 14px; border-radius: var(--r-md);
  background: var(--c-yellow-bg); border: 1px solid var(--c-yellow-bd);
  font-size: 12px; color: var(--c-yellow-text); display: flex; gap: 10px;
}
.alert-warn b { font-weight: 700; text-transform: uppercase; letter-spacing: .04em; font-size: 11px; }

/* ─── FAQ accordion ─── */
.faq { display: flex; flex-direction: column; gap: 10px; }
.faq__item {
  background: var(--c-card); border: 1px solid var(--c-border); border-radius: var(--r-md);
  overflow: hidden;
}
.faq__q {
  width: 100%; padding: 16px 20px; display: flex; align-items: center; gap: 12px;
  text-align: left; font-size: 14px; font-weight: 600; color: var(--c-text);
}
.faq__q::before { content: "ⓘ"; color: var(--c-blue); font-size: 16px; }
.faq__q::after { content: "⌄"; margin-left: auto; color: var(--c-text-3); font-size: 16px; transition: transform .2s; }
.faq__item.open .faq__q::after { transform: rotate(180deg); }
.faq__a { padding: 0 20px 16px 48px; font-size: 13px; color: var(--c-text-2); line-height: 1.6; display: none; }
.faq__item.open .faq__a { display: block; }

/* ─── Error cards ─── */
.errors-grid {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px;
  margin-top: 16px;
}
.error-card {
  background: var(--c-card); border: 1px solid var(--c-border); border-radius: var(--r-md);
  padding: 18px 20px;
}
.error-card__head { display: flex; align-items: center; gap: 10px; margin-bottom: 10px; }
.error-card__icon {
  width: 28px; height: 28px; border-radius: var(--r-sm); background: #FEE2E2;
  display: flex; align-items: center; justify-content: center;
  color: var(--c-red); font-size: 14px; flex-shrink: 0;
}
.error-card__code { font-family: var(--font-mono); font-weight: 700; color: var(--c-text); font-size: 14px; }
.error-card__title { font-size: 11px; color: var(--c-text-3); letter-spacing: .06em; text-transform: uppercase; margin-bottom: 8px; }
.error-card__text { font-size: 12px; color: var(--c-text-2); line-height: 1.55; }

/* ─── Bottom CTA card (internal pages) ─── */
.bottom-cta {
  background: var(--c-card); border: 1px solid var(--c-border); border-radius: var(--r-md);
  padding: 28px; margin-top: 32px; text-align: center;
}
.bottom-cta h3 { font-size: 18px; font-weight: 700; color: var(--c-text); }
.bottom-cta p { font-size: 13px; color: var(--c-text-2); margin: 8px auto 18px; max-width: 480px; }
.bottom-cta .btn-dl { max-width: 460px; margin: 0 auto; }

/* ─── Blog list ─── */
.blog-list { display: flex; flex-direction: column; gap: 14px; margin-top: 8px; }
.blog-item {
  background: var(--c-card); border: 1px solid var(--c-border); border-radius: var(--r-md);
  padding: 18px 22px;
}
.blog-item__meta {
  display: flex; align-items: center; gap: 12px; flex-wrap: wrap;
  font-size: 11px; color: var(--c-text-3); margin-bottom: 8px;
}
.blog-item__meta .tag {
  font-weight: 700; letter-spacing: .06em; text-transform: uppercase;
  color: var(--c-blue);
}
.blog-item__title {
  font-size: 17px; font-weight: 700; color: var(--c-text); margin-bottom: 6px;
  letter-spacing: -.01em;
}
.blog-item__title a:hover { color: var(--c-red); }
.blog-item__read {
  font-size: 12px; color: var(--c-blue); font-weight: 600;
}
.blog-item__read:hover { text-decoration: underline; }

/* ─── Blog post ─── */
.post { max-width: 760px; margin: 0 auto; }
.post__meta {
  display: flex; align-items: center; gap: 12px; flex-wrap: wrap;
  font-size: 12px; color: var(--c-text-3); margin-bottom: 14px;
}
.post__meta .tag { color: var(--c-blue); font-weight: 700; letter-spacing: .06em; text-transform: uppercase; }
.post h1 { font-size: 30px; font-weight: 800; letter-spacing: -.02em; color: var(--c-text); margin-bottom: 22px; line-height: 1.2; }
.post__body { font-size: 15px; color: var(--c-text-2); line-height: 1.75; }
.post__body p { margin-bottom: 14px; }
.post__body h2 { font-size: 22px; font-weight: 800; color: var(--c-text); margin: 28px 0 12px; letter-spacing: -.01em; }
.post__body h3 { font-size: 18px; font-weight: 700; color: var(--c-text); margin: 22px 0 10px; }
.post__body ul, .post__body ol { padding-left: 22px; margin-bottom: 14px; }
.post__body ul li { list-style: disc; margin-bottom: 6px; }
.post__body ol li { list-style: decimal; margin-bottom: 6px; }
.post__body strong { color: var(--c-text); font-weight: 700; }
.post__body code {
  font-family: var(--font-mono); background: var(--c-bg-2);
  padding: 2px 6px; border-radius: 4px; font-size: 13px;
}
.post__body a { color: var(--c-blue); }
.post__body a:hover { text-decoration: underline; }

/* ─── Responsive ─── */
@media (max-width: 880px) {
  .hero h1 { font-size: 42px; }
  .testimonials { grid-template-columns: 1fr; }
  .cmd-grid { grid-template-columns: 1fr; }
  .errors-grid { grid-template-columns: 1fr; }
  .dl-card { padding: 22px; }
  .dl-meta-grid { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
  .nav { gap: 14px; }
  .nav__link { font-size: 13px; }
  .brand__sub { display: none; }
  .hero { padding: 52px 0 36px; background-size: 34px 34px; }
  .hero h1 { font-size: 34px; }
  .dl-filename { font-size: 17px; word-break: break-all; }
  .section { padding: 44px 0; }
  .page-head h1 { font-size: 26px; }
}
@media (max-width: 520px) {
  .nav__link:not(.btn-header) { display: none; }
  .container { padding: 0 16px; }
  .site-header__inner { padding: 0 16px; }
}

/* ─── Prose (long-form content: legal pages, deep guides) ─────────────────── */
.prose { max-width: 800px; margin: 8px 0 0; color: var(--c-text-2); font-size: 16px; line-height: 1.75; }
.prose h2 { font-size: 24px; font-weight: 800; color: var(--c-text); letter-spacing: -.01em; margin: 36px 0 12px; }
.prose h3 { font-size: 18px; font-weight: 700; color: var(--c-text); margin: 26px 0 10px; }
.prose p { margin: 0 0 16px; }
.prose ul, .prose ol { margin: 0 0 18px; padding-left: 22px; }
.prose ul { list-style: disc; }
.prose ol { list-style: decimal; }
.prose li { margin: 0 0 8px; padding-left: 4px; }
.prose a { color: var(--c-blue); font-weight: 600; text-decoration: none; }
.prose a:hover { text-decoration: underline; }
.prose strong { color: var(--c-text); font-weight: 700; }
.prose code { font-family: var(--font-mono); font-size: 14px; background: var(--c-bg-2); border: 1px solid var(--c-border); border-radius: var(--r-sm); padding: 2px 6px; color: var(--c-red); }
.prose table { width: 100%; border-collapse: collapse; margin: 0 0 22px; font-size: 15px; }
.prose th, .prose td { border: 1px solid var(--c-border); padding: 10px 14px; text-align: left; vertical-align: top; }
.prose th { background: var(--c-bg-2); font-weight: 700; color: var(--c-text); }
.prose td { color: var(--c-text-2); }
.prose blockquote { border-left: 3px solid var(--c-blue); background: var(--c-bg-2); padding: 14px 18px; margin: 0 0 20px; border-radius: 0 var(--r-md) var(--r-md) 0; color: var(--c-text-2); }
.prose .meta-updated { font-size: 14px; color: var(--c-text-3); margin: 0 0 8px; }
@media (max-width: 640px) {
  .prose h2 { font-size: 21px; }
  .prose { font-size: 15px; }
}
