:root {
  --ink: #132238;
  --muted: #52657a;
  --line: #dbe5ee;
  --soft: #f5f8fb;
  --paper: #ffffff;
  --blue: #0969da;
  --cyan: #02a9c6;
  --green: #13a76b;
  --amber: #f2a900;
  --coral: #ef6b5a;
  --deep: #101826;
  --radius: 8px;
  --shadow: 0 18px 50px rgba(16, 24, 38, .10);
  --content: 1200px;
}
* { 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(--ink);
  background: #fbfdff;
  line-height: 1.6;
  word-spacing: .015em;
  overflow-x: clip;
}
a { color: inherit; overflow-wrap: anywhere; }
img { max-width: 100%; height: auto; display: block; }
.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  min-height: 72px;
  padding: 0;
  background: rgba(255,255,255,.92);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(14px);
}
.header-inner {
  width: min(var(--content), calc(100% - 32px));
  min-height: 72px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  min-width: 0;
}
.brand-mark {
  flex: 0 0 auto;
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 34px;
  position: relative;
}
.brand-mark::before,
.brand-mark::after {
  content: "";
  position: absolute;
  left: 0;
  width: 28px;
  height: 30px;
  border-radius: 12px 18px 18px 12px;
  background: linear-gradient(135deg, #0069ff, #00b2ff);
}
.brand-mark::after {
  left: 16px;
  opacity: .82;
  border-radius: 18px;
  background: linear-gradient(135deg, #044bd9, #1bcfff);
}
.brand strong, .brand small { display: block; line-height: 1.1; }
.brand strong { font-size: 17px; }
.brand small {
  color: var(--muted);
  font-size: 11px;
  margin-top: 2px;
  font-weight: 850;
  text-transform: uppercase;
  letter-spacing: .08em;
}
.header-actions {
  display: flex;
  align-items: center;
  gap: 8px;
  flex: 0 0 auto;
}
.language-switcher {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 4px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 8px 18px rgba(19,34,56,.05);
}
.language-switcher a {
  display: grid;
  place-items: center;
  min-height: 30px;
  padding: 5px 9px;
  border-radius: 7px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 900;
  line-height: 1;
  text-decoration: none;
  white-space: nowrap;
}
.language-switcher a.is-active {
  background: var(--ink);
  color: #fff;
}
.main-nav { display: flex; align-items: center; gap: 6px; }
.main-nav a {
  min-height: 40px;
  padding: 9px 12px;
  border-radius: var(--radius);
  text-decoration: none;
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
}
.main-nav a:hover { background: var(--soft); color: var(--ink); }
.nav-toggle { display: none; width: 42px; height: 42px; border: 1px solid var(--line); border-radius: var(--radius); background: #fff; }
.nav-toggle span { display: block; height: 2px; width: 18px; margin: 4px auto; background: var(--ink); }
.hero {
  padding: clamp(34px, 5vw, 64px) 0 clamp(26px, 4vw, 44px);
  display: grid;
  background:
    linear-gradient(120deg, rgba(9,105,218,.10), transparent 42%),
    linear-gradient(35deg, rgba(19,167,107,.12), transparent 44%),
    #f7fbff;
  overflow: hidden;
}
.hero-inner {
  width: min(var(--content), calc(100% - 32px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 48%);
  align-items: center;
  gap: clamp(28px, 5vw, 72px);
  min-height: min(640px, calc(100vh - 120px));
}
.hero-copy { max-width: 760px; }
.eyebrow {
  margin: 0 0 12px;
  color: var(--green);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .08em;
}
h1, h2, h3 { line-height: 1.08; margin: 0; letter-spacing: 0; }
h1, h2, h3, p, li, span, strong, summary, a {
  overflow-wrap: break-word;
  word-break: normal;
}
h1, h2, h3 { text-wrap: balance; }
p, li { text-wrap: pretty; }
h1 { font-size: clamp(38px, 5.5vw, 68px); max-width: 820px; }
h2 { font-size: clamp(26px, 4vw, 46px); }
h3 { font-size: 20px; }
.hero-lede {
  max-width: 670px;
  margin: 18px 0 0;
  color: #40566f;
  font-size: clamp(16px, 2.2vw, 20px);
}
.hero-media {
  align-self: stretch;
  display: grid;
  place-items: center;
  min-height: 390px;
  min-width: 0;
  overflow: hidden;
}
.hero-media img {
  width: min(100%, 640px);
  filter: drop-shadow(0 24px 45px rgba(20, 55, 94, .18));
}
.cta-row { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 22px; }
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 48px;
  padding: 13px 18px;
  border-radius: var(--radius);
  border: 1px solid transparent;
  text-decoration: none;
  font-weight: 800;
  line-height: 1.1;
  max-width: 100%;
  white-space: normal;
  text-align: center;
}
.button-primary { color: #fff; background: linear-gradient(135deg, var(--blue), var(--cyan)); box-shadow: 0 12px 28px rgba(9, 105, 218, .22); }
.button-ghost { background: #fff; color: var(--ink); border-color: var(--line); }
.button-light { background: #fff; color: var(--deep); }
.risk-inline {
  max-width: 690px;
  margin: 18px 0 0;
  color: #5b6c7e;
  font-size: 14px;
}
.byline-strip {
  padding: 14px 0;
  background: #fff;
  border-bottom: 1px solid var(--line);
}
.byline-inner {
  width: min(var(--content), calc(100% - 32px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr) minmax(260px, .85fr);
  gap: 12px;
}
.byline-person {
  min-width: 0;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  text-decoration: none;
  background: #fbfdff;
}
.byline-person strong,
.byline-person small {
  display: block;
  line-height: 1.25;
}
.byline-person > span:last-child {
  min-width: 0;
  display: grid;
  row-gap: 3px;
}
.byline-person strong { font-size: 15px; }
.byline-person small { margin-top: 3px; color: var(--muted); font-size: 12px; }
.avatar {
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--blue), var(--cyan));
  color: #fff;
  font-size: 13px;
  font-weight: 900;
}
.avatar-review {
  background: linear-gradient(135deg, var(--coral), var(--amber));
  color: #101826;
}
.byline-facts {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  min-width: 0;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #f7fbff;
}
.byline-facts span,
.byline-facts a {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 5px 8px;
  border-radius: var(--radius);
  background: #fff;
  color: #34485f;
  font-size: 12px;
  font-weight: 850;
  text-decoration: none;
}
.band { padding: 28px 0; background: #fff; border-block: 1px solid var(--line); }
.band > * {
  width: min(var(--content), calc(100% - 32px));
  margin-inline: auto;
}
.fact-grid, .payment-grid, .city-grid, .topic-grid, .story-grid {
  display: grid;
  gap: 16px;
}
.fact-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.eeat-band {
  padding: 30px 0;
  background: #eef7fb;
  border-block: 1px solid var(--line);
}
.eeat-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  width: min(var(--content), calc(100% - 32px));
  max-width: var(--content);
  margin: 0 auto 16px;
}
.eeat-meta span {
  min-height: 34px;
  display: inline-flex;
  align-items: center;
  padding: 7px 10px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  color: #34485f;
  font-size: 13px;
  font-weight: 800;
}
.eeat-grid, .author-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  width: min(var(--content), calc(100% - 32px));
  max-width: var(--content);
  margin: 0 auto;
}
.fact-card, .payment-card, .city-card, .topic-card, .story-card, .side-panel {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.eeat-card, .author-profile {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 22px;
  box-shadow: 0 12px 34px rgba(16, 24, 38, .08);
}
.eeat-card h2 { font-size: 22px; }
.eeat-card h2 a { color: inherit; text-decoration-thickness: 2px; text-underline-offset: 4px; }
.eeat-card p, .author-profile p { color: var(--muted); margin: 10px 0 0; }
.role-tag {
  margin: 0 0 10px;
  color: var(--blue);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .08em;
}
.expertise-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 16px;
  min-width: 0;
}
.expertise-chips span {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  max-width: 100%;
  padding: 6px 9px;
  border-radius: var(--radius);
  background: var(--soft);
  color: #34485f;
  font-size: 12px;
  font-weight: 800;
  line-height: 1.25;
}
.editorial-note ul {
  margin: 12px 0 0;
  padding-left: 18px;
  color: #34485f;
}
.mini-scope {
  display: grid;
  gap: 8px;
  margin: 14px 0 0;
  padding-left: 18px;
  color: #34485f;
  font-size: 14px;
}
.profile-link {
  display: inline-flex;
  margin-top: 16px;
  color: var(--blue);
  font-weight: 900;
  text-decoration-thickness: 2px;
  text-underline-offset: 4px;
}
.policy-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 16px;
}
.policy-links a {
  color: var(--blue);
  font-weight: 850;
  text-decoration-thickness: 2px;
  text-underline-offset: 4px;
}
.fact-card { padding: 18px; box-shadow: none; }
.fact-card span { color: var(--blue); font-weight: 800; font-size: 13px; }
.fact-card p { margin: 6px 0 0; color: var(--muted); font-size: 14px; }
.section {
  width: min(var(--content), calc(100% - 32px));
  padding: clamp(54px, 8vw, 96px) 0;
  max-width: none;
  margin: 0 auto;
}
.section.two-col {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(280px, .85fr);
  gap: clamp(24px, 5vw, 64px);
  align-items: start;
}
.section p { color: var(--muted); font-size: 17px; }
.section-heading { max-width: 760px; margin-bottom: 28px; }
.side-panel { padding: 24px; position: sticky; top: 96px; }
.deep-dive {
  padding-top: clamp(34px, 5vw, 64px);
}
.deep-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}
.deep-card {
  min-width: 0;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(180deg, #fff, #f8fbfd);
  box-shadow: 0 12px 34px rgba(16, 24, 38, .08);
}
.deep-card h3 {
  margin: 0;
  font-size: 20px;
  line-height: 1.25;
}
.deep-card ul {
  display: grid;
  gap: 10px;
  margin: 16px 0 0;
  padding-left: 18px;
  color: #34485f;
}
.deep-card li {
  overflow-wrap: anywhere;
}
.use-case-grid,
.playbook-grid,
.outcome-grid,
.ymyl-grid,
.assurance-grid,
.author-detail-grid,
.author-work-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}
.playbook-grid {
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
}
.outcome-grid {
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
}
.ymyl-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
.assurance-grid,
.author-detail-grid,
.author-work-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
.author-detail-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
.use-case-card,
.playbook-card,
.outcome-card,
.ymyl-card,
.assurance-card,
.author-detail-grid article,
.author-work-grid article {
  min-width: 0;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 10px 26px rgba(16, 24, 38, .07);
}
.use-case-card h3,
.playbook-card h3,
.outcome-card h3,
.author-detail-grid h3,
.author-work-grid h3 {
  font-size: 19px;
}
.use-case-card p,
.playbook-card p,
.outcome-card p,
.ymyl-card p,
.assurance-card p,
.author-detail-grid li {
  color: #34485f;
}
.ymyl-card strong {
  display: block;
  margin-top: 12px;
  color: var(--ink);
}
.assurance-card span {
  color: var(--blue);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .08em;
}
.author-hero-card {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 20px;
  align-items: center;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: var(--shadow);
  margin-bottom: 18px;
}
.avatar-large {
  width: 86px;
  height: 86px;
  font-size: 24px;
}
.author-detail-grid ul {
  margin: 14px 0 0;
  padding-left: 18px;
}
.author-list-heading {
  margin-top: 34px;
}
.author-work-grid a {
  display: block;
  padding: 9px 0;
  color: var(--blue);
  font-weight: 800;
  text-decoration-thickness: 2px;
  text-underline-offset: 4px;
}
.check-list, .roadmap-list { padding: 0; margin: 18px 0 0; list-style: none; }
.check-list li, .roadmap-list li {
  position: relative;
  padding: 12px 0 12px 34px;
  border-top: 1px solid var(--line);
  color: #34485f;
}
.check-list li:first-child, .roadmap-list li:first-child { border-top: 0; }
.check-list li::before, .roadmap-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 16px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: radial-gradient(circle at 50% 50%, #fff 0 28%, var(--green) 30% 100%);
}
.payment-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.payment-card, .city-card, .topic-card, .story-card { padding: 22px; }
.payment-badge {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 7px 10px;
  border-radius: var(--radius);
  color: #fff;
  background: var(--deep);
  font-weight: 900;
}
.payment-card:nth-child(2) .payment-badge { background: var(--green); }
.payment-card:nth-child(3) .payment-badge { background: var(--coral); }
.payment-card:nth-child(4) .payment-badge { background: var(--blue); }
.payment-card:nth-child(5) .payment-badge { background: #6a4cc2; }
.payment-card:nth-child(6) .payment-badge { background: var(--amber); color: var(--deep); }
.city-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.topic-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.story-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.city-card a, .topic-card a {
  color: var(--blue);
  font-weight: 800;
  text-decoration-thickness: 2px;
  text-underline-offset: 4px;
}
.warm {
  width: min(var(--content), calc(100% - 32px));
  max-width: var(--content);
  background: linear-gradient(120deg, rgba(242,169,0,.12), rgba(239,107,90,.08));
}
.warm > * {
  width: auto;
  max-width: none;
  margin-inline: auto;
}
.intent-section {
  padding: 34px 0;
  background: #f8fbfe;
}
.intent-inner {
  width: min(var(--content), calc(100% - 32px));
  max-width: var(--content);
  margin: 0 auto;
}
.intent-grid,
.learning-grid,
.glossary-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}
.intent-grid article,
.learning-card,
.glossary-card {
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 12px 34px rgba(16, 24, 38, .07);
}
.intent-grid span {
  display: block;
  color: var(--blue);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .08em;
}
.intent-grid p,
.learning-card p,
.glossary-card p {
  color: var(--muted);
  margin: 10px 0 0;
}
.intent-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 16px;
}
.intent-links a,
.learning-card a {
  color: var(--blue);
  font-weight: 850;
  text-decoration-thickness: 2px;
  text-underline-offset: 4px;
}
.learning-grid { grid-template-columns: repeat(5, minmax(0, 1fr)); }
.glossary-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.intent-map-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}
.intent-map-card {
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 12px 34px rgba(16, 24, 38, .07);
}
.intent-map-card p {
  color: var(--muted);
  margin: 10px 0 0;
}
.intent-map-card div {
  display: grid;
  gap: 8px;
  margin-top: 14px;
}
.intent-map-card a {
  color: var(--blue);
  font-weight: 820;
  text-decoration-thickness: 2px;
  text-underline-offset: 4px;
  line-height: 1.35;
}
.decision-gate {
  padding: 34px 0;
  background: #fff;
  border-block: 1px solid var(--line);
}
.decision-inner {
  width: min(var(--content), calc(100% - 32px));
  display: grid;
  grid-template-columns: minmax(240px, .75fr) minmax(0, 1.35fr);
  gap: 24px;
  max-width: var(--content);
  margin: 0 auto;
  align-items: start;
}
.decision-inner p { color: var(--muted); }
.decision-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.decision-grid article,
.safety-card,
.redflag-card,
.security-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
  padding: 20px;
  box-shadow: 0 12px 34px rgba(16, 24, 38, .07);
}
.decision-grid article:first-child {
  border-color: rgba(239,107,90,.45);
  background: #fff8f7;
}
.decision-grid ul {
  margin: 12px 0 0;
  padding-left: 18px;
  color: #34485f;
}
.decision-links {
  grid-column: 1 / -1;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.decision-links a,
.safety-card a {
  color: var(--blue);
  font-weight: 850;
  text-decoration-thickness: 2px;
  text-underline-offset: 4px;
}
.safety-grid,
.redflag-grid,
.security-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}
.safety-card strong {
  display: block;
  margin-top: 12px;
  color: var(--ink);
}
.redflag-grid,
.security-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.redflag-card span {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  margin-bottom: 12px;
  background: var(--coral);
  color: #fff;
  font-weight: 900;
}
.calculator-section { max-width: 960px; }
.risk-calc {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: var(--shadow);
}
.risk-calc label {
  display: grid;
  gap: 8px;
  color: #34485f;
  font-weight: 800;
}
.risk-calc input {
  min-height: 48px;
  width: 100%;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 10px 12px;
  font: inherit;
  color: var(--ink);
  background: var(--soft);
}
.risk-result {
  grid-column: 1 / -1;
  display: block;
  min-height: 88px;
  padding: 16px;
  border-radius: var(--radius);
  background: #eef7fb;
  color: #24384d;
  font-weight: 750;
}
.risk-result strong { color: var(--ink); }
.risk-result.is-warning {
  background: #fff3f0;
  border: 1px solid rgba(239,107,90,.45);
}
.comparison-depth,
.review-depth,
.bonus-depth {
  padding-top: clamp(34px, 5vw, 64px);
}
.comparison-table {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: var(--shadow);
}
.comparison-row {
  display: grid;
  grid-template-columns: 1fr 1.25fr 1.05fr 1.05fr;
  border-top: 1px solid var(--line);
}
.comparison-row:first-child { border-top: 0; }
.comparison-row span {
  min-width: 0;
  padding: 14px 16px;
  border-left: 1px solid var(--line);
  color: #34485f;
}
.comparison-row span:first-child {
  border-left: 0;
  color: var(--ink);
  font-weight: 850;
}
.comparison-head {
  background: var(--deep);
}
.comparison-head span,
.comparison-head span:first-child {
  color: #fff;
  font-weight: 900;
}
.criteria-grid,
.review-scorecard,
.terms-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  margin-top: 18px;
}
.review-scorecard,
.terms-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
.criteria-card,
.review-scorecard article,
.terms-grid article,
.scenario-panel {
  min-width: 0;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 10px 26px rgba(16, 24, 38, .07);
}
.criteria-card h3,
.review-scorecard h3,
.terms-grid h3,
.scenario-panel h3 {
  font-size: 19px;
}
.criteria-card p,
.review-scorecard p,
.terms-grid p {
  color: #34485f;
}
.scenario-panel {
  margin-top: 18px;
  background: #f8fbfe;
}
.scenario-panel > div {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin-top: 14px;
}
.scenario-panel article {
  min-width: 0;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
}
.scenario-panel p {
  margin: 6px 0 0;
  color: #34485f;
  font-size: 15px;
}
.not-for-panel {
  margin-top: 18px;
  padding: 22px;
  border: 1px solid rgba(239,107,90,.38);
  border-radius: var(--radius);
  background: #fff8f7;
}
.not-for-panel ul {
  display: grid;
  gap: 10px;
  margin: 14px 0 0;
  padding-left: 20px;
  color: #34485f;
}
.evidence-section { max-width: none; }
.trust-ledger-table {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  background: #fff;
  box-shadow: var(--shadow);
}
.trust-ledger-row {
  display: grid;
  grid-template-columns: .75fr 1.4fr 1fr;
  min-height: 64px;
  border-top: 1px solid var(--line);
}
.trust-ledger-row:first-child { border-top: 0; }
.trust-ledger-row span {
  padding: 14px 16px;
  border-left: 1px solid var(--line);
  color: #34485f;
}
.trust-ledger-row span:first-child {
  border-left: 0;
  font-weight: 850;
  color: var(--ink);
}
.trust-ledger-head {
  background: var(--deep);
}
.trust-ledger-head span,
.trust-ledger-head span:first-child {
  color: #fff;
  font-weight: 900;
}
.review-board-table {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  background: #fff;
  box-shadow: var(--shadow);
}
.review-board-row {
  display: grid;
  grid-template-columns: .75fr 1fr 1fr 1.2fr 1.2fr;
  min-height: 64px;
  border-top: 1px solid var(--line);
}
.update-table .review-board-row {
  grid-template-columns: .55fr .9fr 2fr;
}
.review-board-row:first-child { border-top: 0; }
.review-board-row span {
  padding: 14px 16px;
  border-left: 1px solid var(--line);
  color: #34485f;
}
.review-board-row span:first-child {
  border-left: 0;
  font-weight: 850;
  color: var(--ink);
}
.review-board-head {
  background: var(--deep);
}
.review-board-head span,
.review-board-head span:first-child {
  color: #fff;
  font-weight: 900;
}
.evidence-table {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  background: #fff;
  box-shadow: var(--shadow);
}
.evidence-row {
  display: grid;
  grid-template-columns: .7fr 1.35fr 1fr;
  min-height: 64px;
  border-top: 1px solid var(--line);
}
.evidence-row:first-child { border-top: 0; }
.evidence-row span {
  padding: 14px 16px;
  border-left: 1px solid var(--line);
  color: #34485f;
}
.evidence-row span:first-child {
  border-left: 0;
  font-weight: 850;
  color: var(--ink);
}
.evidence-head {
  background: var(--deep);
}
.evidence-head span,
.evidence-head span:first-child {
  color: #fff;
  font-weight: 900;
}
.source-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 18px;
}
.source-list h3 {
  grid-column: 1 / -1;
  font-size: 18px;
}
.source-list a {
  display: grid;
  gap: 6px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  color: var(--ink);
  text-decoration: none;
}
.source-list a span {
  color: var(--muted);
  font-size: 14px;
}
.faq-list { display: grid; gap: 10px; max-width: 900px; }
details {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 0 18px;
}
summary {
  cursor: pointer;
  min-height: 58px;
  display: flex;
  align-items: center;
  font-weight: 850;
}
details p { margin: 0 0 18px; }
.risk-banner {
  padding: clamp(34px, 5vw, 52px) 0;
  background: var(--deep);
  color: #fff;
}
.risk-banner-inner {
  width: min(var(--content), calc(100% - 32px));
  max-width: var(--content);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.risk-banner p { max-width: 860px; color: #dbe5ee; }
.site-footer {
  padding: 46px 0 96px;
  background: #f8fafc;
  border-top: 1px solid var(--line);
}
.footer-top {
  display: grid;
  grid-template-columns: minmax(240px, .85fr) repeat(2, minmax(0, 1fr));
  gap: 18px;
  width: min(var(--content), calc(100% - 32px));
  max-width: var(--content);
  margin: 0 auto;
  align-items: start;
}
.footer-intro { min-width: 0; }
.site-footer p { color: var(--muted); max-width: 300px; }
.site-footer a {
  color: inherit;
  text-decoration: none;
}
.footer-section {
  min-width: 0;
  display: grid;
  align-content: start;
  gap: 16px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
}
.footer-section h3 {
  margin: 0;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--line);
  font-size: 12px;
  line-height: 1.2;
  letter-spacing: .09em;
  text-transform: uppercase;
  color: var(--deep);
}
.footer-subgroup {
  display: grid;
  gap: 8px;
  min-width: 0;
}
.footer-subgroup h4 {
  margin: 0;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  line-height: 1.25;
  color: var(--ink);
}
.footer-subgroup h4::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: var(--green);
  flex: 0 0 auto;
}
.footer-subgroup ul {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 5px 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.footer-subgroup a {
  display: block;
  color: var(--muted);
  font-size: 12.5px;
  font-weight: 650;
  line-height: 1.35;
  overflow-wrap: anywhere;
}
.footer-subgroup a:hover {
  color: var(--blue);
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}
.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  width: min(var(--content), calc(100% - 32px));
  max-width: var(--content);
  margin: 32px auto 0;
  border-top: 1px solid var(--line);
  padding-top: 18px;
}
.sticky-cta {
  display: none;
  position: fixed;
  left: 12px;
  right: 12px;
  bottom: 12px;
  z-index: 30;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  padding: 8px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255,255,255,.96);
  box-shadow: var(--shadow);
}
.sticky-cta a {
  display: grid;
  place-items: center;
  min-height: 44px;
  border-radius: var(--radius);
  text-decoration: none;
  font-weight: 900;
}
.sticky-cta a:first-child { background: var(--soft); }
.sticky-cta a:last-child { background: var(--green); color: #fff; }
@media (max-width: 980px) {
  .nav-toggle { display: block; }
  .main-nav {
    position: absolute;
    left: 16px;
    right: 16px;
    top: 72px;
    display: none;
    grid-template-columns: 1fr;
    padding: 10px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: #fff;
    box-shadow: var(--shadow);
  }
  .main-nav.is-open { display: grid; }
  .hero-inner { grid-template-columns: 1fr; min-height: auto; }
  .hero-media { min-height: 260px; }
  .hero-media img { width: min(100%, 520px); }
  .byline-inner,
  .fact-grid, .payment-grid, .city-grid, .topic-grid, .story-grid, .eeat-grid, .author-grid, .source-list, .safety-grid, .redflag-grid, .security-grid, .intent-grid, .learning-grid, .glossary-grid, .intent-map-grid, .deep-grid, .use-case-grid, .playbook-grid, .outcome-grid, .ymyl-grid, .assurance-grid, .author-detail-grid, .author-work-grid, .criteria-grid, .review-scorecard, .terms-grid, .scenario-panel > div, .section.two-col, .footer-top {
    grid-template-columns: 1fr 1fr;
  }
  .decision-inner { grid-template-columns: 1fr; }
  .side-panel { position: static; }
}
@media (max-width: 640px) {
  .site-header { min-height: 66px; }
  .header-inner { min-height: 66px; width: min(var(--content), calc(100% - 24px)); gap: 10px; }
  .brand { gap: 8px; }
  .brand strong { font-size: 14px; }
  .brand small { font-size: 9px; letter-spacing: .06em; }
  .brand-mark { width: 38px; height: 32px; }
  .brand-mark::before,
  .brand-mark::after { width: 25px; height: 28px; }
  .brand-mark::after { left: 14px; }
  .header-actions { gap: 6px; }
  .language-switcher { padding: 3px; }
  .language-switcher a { min-height: 28px; padding: 5px 7px; font-size: 11px; }
  .nav-toggle { width: 38px; height: 38px; }
  .main-nav { top: 66px; left: 12px; right: 12px; }
  .hero { padding-top: 34px; }
  h1 { font-size: clamp(34px, 10vw, 50px); }
  .hero-lede { font-size: 17px; }
  .hero-media { min-height: 150px; align-items: start; }
  .hero-media img { width: min(100%, 260px); margin-inline: auto; }
  .button { width: 100%; }
  .byline-inner,
  .fact-grid, .payment-grid, .city-grid, .topic-grid, .story-grid, .eeat-grid, .author-grid, .source-list, .safety-grid, .redflag-grid, .security-grid, .intent-grid, .learning-grid, .glossary-grid, .intent-map-grid, .deep-grid, .use-case-grid, .playbook-grid, .outcome-grid, .ymyl-grid, .assurance-grid, .author-detail-grid, .author-work-grid, .criteria-grid, .review-scorecard, .terms-grid, .scenario-panel > div, .decision-grid, .risk-calc, .section.two-col, .footer-top {
    grid-template-columns: 1fr;
  }
  .comparison-row { grid-template-columns: 1fr; }
  .comparison-row span {
    border-left: 0;
    border-top: 1px solid var(--line);
  }
  .comparison-row span:first-child { border-top: 0; }
  .author-hero-card { grid-template-columns: 1fr; }
  .evidence-row { grid-template-columns: 1fr; }
  .trust-ledger-row { grid-template-columns: 1fr; }
  .review-board-row,
  .update-table .review-board-row { grid-template-columns: 1fr; }
  .trust-ledger-row span {
    border-left: 0;
    border-top: 1px solid var(--line);
  }
  .review-board-row span {
    border-left: 0;
    border-top: 1px solid var(--line);
  }
  .trust-ledger-row span:first-child { border-top: 0; }
  .review-board-row span:first-child { border-top: 0; }
  .evidence-row span {
    border-left: 0;
    border-top: 1px solid var(--line);
  }
  .evidence-row span:first-child { border-top: 0; }
  .risk-banner-inner { display: block; }
  .risk-banner .button { margin-top: 16px; }
  .footer-bottom { display: block; }
  .sticky-cta { display: grid; }
}