:root {
  --bg: #fbf6ee;
  --bg-soft: #f4fbfd;
  --panel: rgba(255, 255, 255, 0.88);
  --panel-strong: #ffffff;
  --line: rgba(122, 145, 151, 0.16);
  --text: #24353c;
  --heading: #183039;
  --muted: #667981;
  --primary: #7bc8d1;
  --primary-strong: #58b4c0;
  --secondary: #f4c88c;
  --accent: #dff3ee;
  --accent-2: #ecf5ff;
  --success: #6fb97b;
  --warn: #d89d47;
  --danger: #d86f5f;
  --radius: 28px;
  --radius-sm: 18px;
  --shadow: 0 18px 48px rgba(124, 143, 153, 0.12);
  --shadow-soft: 0 14px 32px rgba(131, 150, 159, 0.09);
  --max-width: 1260px;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, Segoe UI, sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 0% 0%, rgba(252, 224, 177, 0.34), transparent 28%),
    radial-gradient(circle at 100% 0%, rgba(164, 226, 220, 0.32), transparent 32%),
    radial-gradient(circle at 100% 50%, rgba(214, 234, 255, 0.25), transparent 24%),
    linear-gradient(180deg, #fbf6ee 0%, #f8fcff 42%, #fffaf2 100%);
  min-height: 100vh;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
.container { width: min(var(--max-width), calc(100% - 32px)); margin: 0 auto; }
.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  backdrop-filter: blur(18px);
  background: rgba(251, 246, 238, 0.78);
  border-bottom: 1px solid rgba(122, 145, 151, 0.12);
}
.nav-wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  padding: 16px 0;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
}
.brand-mark {
  width: 52px;
  height: 52px;
  border-radius: 18px;
  flex: 0 0 auto;
  box-shadow: 0 10px 28px rgba(123, 200, 209, 0.18);
}
.brand strong,
.footer-grid strong {
  display: block;
  color: var(--heading);
  font-size: 1rem;
}
.brand small {
  color: var(--muted);
  font-size: 0.88rem;
}
.main-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 18px;
}
.main-nav a,
.site-footer a {
  color: var(--muted);
  font-weight: 700;
}
.main-nav a:hover,
.main-nav a:focus-visible,
.site-footer a:hover,
.site-footer a:focus-visible {
  color: var(--heading);
}
.main-nav a[aria-current="page"] {
  color: var(--heading);
}
.nav-toggle {
  display: none;
  width: 48px;
  height: 48px;
  padding: 0;
  border: 1px solid rgba(122, 145, 151, 0.18);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.84);
  box-shadow: var(--shadow-soft);
  cursor: pointer;
  align-items: center;
  justify-content: center;
  gap: 4px;
  flex-direction: column;
}
.nav-toggle span {
  width: 20px;
  height: 2px;
  border-radius: 999px;
  background: var(--heading);
  transition: transform 0.2s ease, opacity 0.2s ease;
}
.nav-toggle.is-open span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}
.nav-toggle.is-open span:nth-child(2) {
  opacity: 0;
}
.nav-toggle.is-open span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}
.hero,
.trust-strip,
.calculator-section,
.results-section,
.warning-section,
.faq-section,
.legal-page {
  padding: 28px 0;
}
.hero { padding-top: 64px; }
.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.18fr) minmax(0, 0.82fr);
  gap: 30px;
  align-items: start;
}
.eyebrow,
.section-kicker,
.mini-kicker,
.floating-label,
.snapshot-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 14px;
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 800;
  color: #3f666e;
  background: rgba(223, 243, 238, 0.84);
  border: 1px solid rgba(123, 200, 209, 0.18);
}
.hero h1,
.panel-head h2,
.faq-grid h2,
.legal-panel h1 {
  margin: 16px 0 14px;
  color: var(--heading);
  line-height: 1.05;
}
.hero h1 {
  font-size: clamp(2.35rem, 4.8vw, 4.4rem);
  max-width: 12ch;
  letter-spacing: -0.04em;
}
.hero p,
.panel-head p,
.mini-card p,
.quick-card p,
.feature-card p,
.usecase-card p,
.step-card p,
.note-card p,
.hero-stat-card p,
.snapshot-card p,
.faq-list p,
.legal-panel p,
.legal-panel li,
.summary-line {
  color: var(--muted);
  line-height: 1.72;
}
.hero-actions,
.form-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 28px 0 20px;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 22px;
  border-radius: 18px;
  border: 1px solid transparent;
  font-weight: 800;
  font-size: 0.98rem;
  cursor: pointer;
  transition: transform 0.18s ease, border-color 0.18s ease, background 0.18s ease, box-shadow 0.18s ease;
}
.btn:hover,
.btn:focus-visible {
  transform: translateY(-1px);
  box-shadow: 0 14px 30px rgba(123, 200, 209, 0.18);
}
.btn-primary {
  color: #173039;
  background: linear-gradient(135deg, #d8f3eb, #9edbe0 54%, #7ac8d1 100%);
}
.btn-secondary {
  color: var(--heading);
  background: rgba(255, 255, 255, 0.88);
  border-color: rgba(122, 145, 151, 0.16);
}
.hero-stat-grid,
.snapshot-grid,
.quick-read-grid,
.feature-grid,
.usecase-grid,
.steps-grid,
.note-grid,
.micro-metrics {
  display: grid;
  gap: 18px;
}
.hero-stat-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 8px;
  align-items: stretch;
}
.hero-stat-card:last-child {
  grid-column: auto;
}
.hero-stat-card,
.quick-card,
.feature-card,
.usecase-card,
.step-card,
.note-card,
.snapshot-card,
.micro-card {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
}
.hero-stat-card,
.quick-card,
.feature-card,
.usecase-card,
.step-card,
.note-card,
.snapshot-card {
  padding: 22px;
}
.hero-stat-card span,
.micro-card span {
  display: inline-block;
  color: #4d6b72;
  font-size: 0.83rem;
  font-weight: 800;
  margin-bottom: 8px;
}
.hero-stat-card strong,
.quick-card strong,
.feature-card strong,
.usecase-card strong,
.step-card strong,
.note-card strong,
.snapshot-card strong,
.micro-card strong {
  display: block;
  margin-bottom: 10px;
  color: var(--heading);
}
.hero-stage {
  position: relative;
  display: grid;
  gap: 18px;
  align-content: start;
  align-self: start;
  justify-items: end;
  padding-top: 0;
  margin-top: -8px;
}
.hero-device {
  position: relative;
  z-index: 1;
  width: min(100%, 560px);
  margin: 0 0 0 auto;
  border-radius: 34px;
  padding: 18px;
  background: linear-gradient(180deg, rgba(255,255,255,0.8), rgba(255,255,255,0.42));
  border: 1px solid rgba(122, 145, 151, 0.16);
  box-shadow: var(--shadow);
}
.hero-stage::before,
.hero-stage::after {
  content: "";
  position: absolute;
  border-radius: 999px;
  filter: blur(0.5px);
  z-index: 0;
}
.hero-stage::before {
  width: 190px;
  height: 190px;
  top: 36px;
  right: 14px;
  background: rgba(223, 243, 238, 0.74);
}
.hero-stage::after {
  width: 170px;
  height: 170px;
  bottom: 122px;
  left: 18px;
  background: rgba(255, 233, 202, 0.6);
}
.floating-card {
  position: relative;
  z-index: 2;
  width: auto;
  padding: 18px 18px 16px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(122, 145, 151, 0.15);
  box-shadow: var(--shadow-soft);
}
.floating-card strong {
  display: block;
  margin: 12px 0 8px;
  color: var(--heading);
}
.floating-card p { margin: 0; color: var(--muted); line-height: 1.65; }
.floating-card-top,
.floating-card-bottom { inset: auto; }
.quick-read-grid { grid-template-columns: repeat(3, 1fr); }
.hero-stage .floating-card-wrap {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  width: min(100%, 560px);
  margin-left: auto;
}
.quick-read-grid-4 { grid-template-columns: repeat(4, 1fr); }
.feature-grid,
.usecase-grid { grid-template-columns: repeat(3, 1fr); }
.steps-grid { grid-template-columns: repeat(4, 1fr); }
.steps-grid-3 { grid-template-columns: repeat(3, 1fr); }
.note-grid { grid-template-columns: repeat(2, 1fr); }
.panel,
.legal-panel {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.panel { padding: 28px; }
.calculator-layout {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 22px;
}
.panel-side {
  display: grid;
  gap: 20px;
  align-content: start;
}
.panel-head { margin-bottom: 22px; }
.micro-metrics {
  grid-template-columns: repeat(3, 1fr);
  margin-bottom: 18px;
}
.micro-card {
  padding: 16px 18px;
  border-radius: 20px;
  background: linear-gradient(180deg, rgba(255,255,255,0.95), rgba(246, 251, 255, 0.9));
}
.calc-form .form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}
label { display: grid; gap: 8px; }
label span {
  font-weight: 700;
  color: var(--heading);
}
input {
  min-height: 56px;
  width: 100%;
  border-radius: 18px;
  border: 1px solid rgba(122, 145, 151, 0.18);
  background: rgba(255, 255, 255, 0.96);
  color: var(--text);
  padding: 0 16px;
  font: inherit;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.74);
}
input:focus {
  outline: 2px solid rgba(123, 200, 209, 0.16);
  border-color: rgba(123, 200, 209, 0.54);
}
.mini-card {
  padding: 24px;
  border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(255,255,255,0.96), rgba(246, 251, 255, 0.92));
  border: 1px solid rgba(122, 145, 151, 0.14);
  box-shadow: var(--shadow-soft);
}
.emphasis-card {
  background: linear-gradient(135deg, rgba(255,255,255,0.98), rgba(223, 243, 238, 0.72));
}
.mini-card h3,
.chart-header h3 {
  margin: 14px 0 12px;
  color: var(--heading);
}
.check-list {
  list-style: none;
  padding: 0;
  margin: 12px 0 0;
  display: grid;
  gap: 10px;
}
.check-list li {
  position: relative;
  padding-left: 24px;
  color: #395861;
}
.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 9px;
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: linear-gradient(135deg, #7bc8d1, #f4c88c);
}
.results-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 20px;
}
.summary-line {
  max-width: 540px;
  margin: 0;
}
.snapshot-grid {
  grid-template-columns: 1.2fr 1fr 1fr;
  margin-bottom: 22px;
}
.snapshot-card {
  border-radius: 24px;
  padding: 22px;
  background: linear-gradient(180deg, rgba(255,255,255,0.96), rgba(246,251,255,0.9));
}
.snapshot-card strong {
  font-size: 1.08rem;
}
.snapshot-card.spotlight {
  background: linear-gradient(135deg, rgba(255,255,255,0.98), rgba(223, 243, 238, 0.82));
}
.table-wrap {
  overflow-x: auto;
  border-radius: 24px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,0.64);
}
.comparison-table {
  width: 100%;
  min-width: 980px;
  border-collapse: collapse;
  background: rgba(255, 255, 255, 0.76);
}
.comparison-table th,
.comparison-table td {
  padding: 16px 14px;
  text-align: left;
  border-bottom: 1px solid rgba(122, 145, 151, 0.12);
  vertical-align: top;
}
.comparison-table th {
  font-size: 0.92rem;
  color: #38535a;
  background: rgba(240, 248, 250, 0.92);
}
.comparison-table td { color: var(--text); }
.table-badge {
  display: inline-flex;
  padding: 8px 10px;
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 800;
}
.table-badge.good {
  color: #276133;
  background: rgba(109, 189, 116, 0.16);
}
.table-badge.warn {
  color: #8a5b18;
  background: rgba(242, 199, 136, 0.24);
}
.table-badge.bad {
  color: #923f31;
  background: rgba(217, 109, 91, 0.16);
}
.chart-area {
  margin-top: 24px;
  padding: 22px;
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(249,253,255,0.98), rgba(255,255,255,0.95));
  border: 1px solid var(--line);
}
.chart-header p { margin-top: 0; }
.chart-bars { display: grid; gap: 18px; margin-top: 18px; }
.chart-group { display: grid; gap: 12px; }
.chart-group-title { font-weight: 800; color: var(--heading); }
.bar-row {
  display: grid;
  grid-template-columns: 140px 1fr 120px;
  gap: 14px;
  align-items: center;
}
.bar-label,
.bar-value {
  font-size: 0.95rem;
  color: #38545b;
}
.bar-track {
  height: 16px;
  border-radius: 999px;
  overflow: hidden;
  background: rgba(122, 145, 151, 0.12);
}
.bar-fill {
  height: 100%;
  border-radius: 999px;
}
.bar-fill.lease { background: linear-gradient(90deg, #8ed8de, #66c1cb); }
.bar-fill.buy { background: linear-gradient(90deg, #f8d7a7, #f0b97c); }
.warning-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}
.warning-card {
  padding: 20px;
  border-radius: 24px;
  border: 1px solid transparent;
  background: rgba(255,255,255,0.94);
  box-shadow: var(--shadow-soft);
}
.warning-card strong {
  display: block;
  margin-bottom: 10px;
  color: var(--heading);
}
.warning-card.info {
  background: rgba(223, 244, 239, 0.8);
  border-color: rgba(123, 200, 209, 0.18);
}
.warning-card.warn {
  background: rgba(253, 235, 192, 0.58);
  border-color: rgba(216, 157, 71, 0.22);
}
.warning-card.danger {
  background: rgba(255, 228, 223, 0.72);
  border-color: rgba(216, 111, 95, 0.2);
}
.faq-grid {
  display: grid;
  grid-template-columns: 0.46fr 0.54fr;
  gap: 24px;
  align-items: start;
}
.faq-list {
  display: grid;
  gap: 14px;
}
details {
  border-radius: 20px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.9);
  padding: 18px 20px;
  box-shadow: var(--shadow-soft);
}
summary {
  cursor: pointer;
  font-weight: 800;
  color: var(--heading);
}
summary::-webkit-details-marker { display: none; }
.site-footer {
  border-top: 1px solid rgba(122, 145, 151, 0.12);
  margin-top: 36px;
  padding: 24px 0 40px;
}
.footer-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.site-footer nav {
  display: flex;
  justify-content: flex-end;
  gap: 18px;
  flex-wrap: wrap;
  grid-column: span 2;
  align-self: center;
}
.legal-page {
  min-height: calc(100vh - 220px);
}
.legal-panel {
  padding: 34px;
}
.legal-panel h2 {
  margin-top: 28px;
  color: var(--heading);
}
.legal-panel ul {
  padding-left: 18px;
  color: var(--muted);
}
.inline-note {
  margin-top: 18px;
  padding: 16px 18px;
  border-radius: 20px;
  background: rgba(223, 244, 239, 0.72);
  border: 1px solid rgba(123, 200, 209, 0.16);
  color: #35565d;
}
.legal-panel a,
.faq-list a {
  color: #3f8792;
}
.hero-copy p strong,
.panel-head p strong,
.inline-note strong,
.mini-card strong {
  color: var(--heading);
}
@media (max-width: 1080px) {
  .hero-grid,
  .calculator-layout,
  .faq-grid,
  .quick-read-grid,
  .quick-read-grid-4,
  .feature-grid,
  .usecase-grid,
  .steps-grid,
  .note-grid,
  .footer-grid,
  .snapshot-grid,
  .micro-metrics {
    grid-template-columns: 1fr;
  }
  .hero-stat-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  .hero-stat-card:last-child {
    grid-column: auto;
  }
  .hero-stage {
    min-height: auto;
    padding-top: 8px;
  }
  .hero-stage .floating-card-wrap {
    grid-template-columns: 1fr;
  }
  .results-head { flex-direction: column; }
  .warning-grid { grid-template-columns: 1fr; }
  .site-footer nav { grid-column: auto; justify-content: flex-start; }
}

@media (max-width: 980px) {
  .hero-stat-grid {
    grid-template-columns: 1fr 1fr;
  }
  .hero-stat-card:last-child {
    grid-column: 1 / -1;
  }
  .hero-stage {
    margin-top: 0;
  }
}
@media (max-width: 860px) {
  .nav-wrap {
    flex-wrap: wrap;
    align-items: center;
  }
  .brand {
    min-width: 0;
    flex: 1 1 auto;
  }
  .nav-toggle {
    display: inline-flex;
    flex: 0 0 auto;
  }
  .main-nav {
    display: none;
    width: 100%;
    order: 3;
    margin-top: 12px;
    padding: 14px;
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.94);
    border: 1px solid rgba(122, 145, 151, 0.16);
    box-shadow: var(--shadow);
  }
  .main-nav.is-open {
    display: flex;
  }
  .main-nav a {
    padding: 14px 16px;
    border-radius: 16px;
    background: rgba(244, 251, 253, 0.9);
  }
}

@media (max-width: 720px) {
  .hero-stat-grid {
    grid-template-columns: 1fr;
  }
  .hero-stat-card:last-child {
    grid-column: auto;
  }
  .hero-stage {
    margin-top: 0;
    justify-items: start;
  }
  .hero-device,
  .hero-stage .floating-card-wrap {
    margin-left: 0;
  }
  .calc-form .form-grid { grid-template-columns: 1fr; }
  .panel,
  .legal-panel,
  .quick-card,
  .feature-card,
  .usecase-card,
  .step-card,
  .note-card,
  .hero-stat-card,
  .snapshot-card {
    padding: 18px;
  }
  .hero { padding-top: 42px; }
  .bar-row { grid-template-columns: 1fr; }
  .bar-value { margin-top: -4px; }
  .brand-mark { width: 46px; height: 46px; }
  .hero h1 { max-width: none; }
}

body.nav-open { overflow: hidden; }


.guide-hub-grid,
.transparency-grid,
.article-grid,
.article-points,
.article-two-col,
.toc-links,
.hero-guide-grid {
  display: grid;
  gap: 18px;
}
.guide-hub-grid,
.transparency-grid,
.hero-guide-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
.guide-card,
.transparency-card,
.article-card,
.toc-card,
.author-card,
.callout-card,
.editorial-note,
.metric-pill {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
}
.guide-card,
.transparency-card,
.article-card,
.toc-card,
.author-card,
.callout-card,
.editorial-note {
  padding: 24px;
}
.guide-card strong,
.transparency-card strong,
.article-card strong,
.callout-card strong,
.author-card strong,
.editorial-note strong,
.metric-pill strong {
  display: block;
  color: var(--heading);
}
.guide-card p,
.transparency-card p,
.article-card p,
.callout-card p,
.author-card p,
.editorial-note p,
.metric-pill p,
.article-prose p,
.article-prose li,
.article-prose blockquote {
  color: var(--muted);
  line-height: 1.74;
}
.guide-card .btn,
.article-card .btn {
  margin-top: 10px;
}
.guide-card small,
.article-meta,
.author-meta {
  color: #59727a;
  font-size: 0.92rem;
}
.section-header {
  margin-bottom: 22px;
}
.section-header h2,
.article-header h1 {
  margin: 12px 0 10px;
  color: var(--heading);
}
.article-page {
  padding: 34px 0 22px;
}
.article-shell {
  display: grid;
  grid-template-columns: minmax(0, 0.74fr) minmax(280px, 0.26fr);
  gap: 24px;
  align-items: start;
}
.article-main,
.article-side {
  display: grid;
  gap: 20px;
}
.article-panel {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 30px;
}
.article-header .eyebrow {
  margin-bottom: 8px;
}
.article-header h1 {
  line-height: 1.08;
  font-size: clamp(2rem, 4vw, 3.35rem);
  max-width: 16ch;
}
.article-lead {
  font-size: 1.08rem;
  max-width: 62ch;
}
.article-meta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 20px;
}
.metric-pill {
  padding: 14px 16px;
  border-radius: 18px;
}
.metric-pill strong { margin-bottom: 6px; }
.article-prose h2,
.article-prose h3 {
  color: var(--heading);
  margin: 28px 0 12px;
}
.article-prose h2:first-child { margin-top: 0; }
.article-prose ul,
.article-prose ol {
  margin: 14px 0 14px 18px;
  padding: 0;
}
.article-prose li + li { margin-top: 10px; }
.article-prose blockquote {
  margin: 18px 0;
  padding: 18px 20px;
  border-left: 4px solid rgba(123, 200, 209, 0.7);
  background: rgba(244, 251, 253, 0.95);
  border-radius: 0 22px 22px 0;
}
.article-two-col {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
.article-points {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
.toc-links a {
  display: block;
  padding: 13px 14px;
  border-radius: 16px;
  background: rgba(244, 251, 253, 0.92);
  color: #36535b;
  font-weight: 700;
}
.toc-links a:hover,
.toc-links a:focus-visible {
  background: rgba(223, 243, 238, 0.9);
  color: var(--heading);
}
.author-card {
  background: linear-gradient(135deg, rgba(255,255,255,0.98), rgba(223, 243, 238, 0.76));
}
.author-card img {
  width: 64px;
  height: 64px;
  border-radius: 22px;
  margin-bottom: 14px;
}
.related-links {
  display: grid;
  gap: 12px;
}
.related-links a {
  display: block;
  padding: 14px 16px;
  border-radius: 18px;
  background: rgba(255,255,255,0.92);
  border: 1px solid rgba(122,145,151,0.12);
  font-weight: 700;
  color: var(--heading);
}
.callout-card {
  background: linear-gradient(135deg, rgba(255,255,255,0.98), rgba(255, 239, 214, 0.7));
}
.editorial-note {
  background: rgba(223, 244, 239, 0.72);
}
.inline-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 10px;
}
.guide-badge {
  display: inline-flex;
  padding: 8px 11px;
  border-radius: 999px;
  background: rgba(236,245,255,0.85);
  color: #44616a;
  font-size: 0.8rem;
  font-weight: 800;
  margin-bottom: 12px;
}
.content-divider {
  height: 1px;
  background: rgba(122,145,151,0.12);
  margin: 26px 0;
}
@media (max-width: 1080px) {
  .guide-hub-grid,
  .transparency-grid,
  .hero-guide-grid,
  .article-two-col,
  .article-points,
  .article-shell {
    grid-template-columns: 1fr;
  }
  .article-panel { padding: 24px; }
}
@media (max-width: 720px) {
  .guide-card,
  .transparency-card,
  .article-card,
  .toc-card,
  .author-card,
  .callout-card,
  .editorial-note,
  .article-panel {
    padding: 18px;
  }
}
