:root {
  --enso-bg: #050816;
  --enso-panel: rgba(9, 20, 38, 0.9);
  --enso-panel-strong: #091426;
  --enso-border: rgba(125, 211, 252, 0.24);
  --enso-border-warm: rgba(251, 146, 60, 0.42);
  --enso-text: #f8fafc;
  --enso-muted: #b9c9dc;
  --enso-cyan: #67e8f9;
  --enso-blue: #7dd3fc;
  --enso-warm: #fb923c;
  --enso-gold: #facc15;
  --enso-danger: #fda4af;
  --enso-max: 1280px;
  color-scheme: dark;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 96px;
}

.enso-article-page {
  overflow-x: clip;
  background:
    radial-gradient(circle at 15% 4%, rgba(251, 146, 60, 0.1), transparent 26rem),
    radial-gradient(circle at 82% 16%, rgba(34, 211, 238, 0.1), transparent 28rem),
    var(--enso-bg);
}

.enso-article-page a {
  text-underline-offset: 0.2em;
}

.enso-article-page a:focus-visible,
.enso-article-page summary:focus-visible,
.enso-article-page [tabindex="0"]:focus-visible {
  outline: 3px solid var(--enso-gold);
  outline-offset: 4px;
  border-radius: 4px;
}

.sr-only {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

.enso-article {
  color: var(--enso-text);
}

.enso-breadcrumbs,
.enso-hero,
.enso-opening-grid,
.enso-fact-review,
.enso-reading-layout {
  width: min(var(--enso-max), calc(100% - 40px));
  margin-inline: auto;
}

.enso-breadcrumbs {
  padding: 26px 0 4px;
}

.enso-breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  margin: 0;
  padding: 0;
  list-style: none;
  color: var(--enso-muted);
  font-size: 0.88rem;
}

.enso-breadcrumbs li:not(:last-child)::after {
  content: "/";
  margin-left: 8px;
  color: #64748b;
}

.enso-breadcrumbs a {
  color: var(--enso-blue);
}

.enso-hero {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(0, 1.12fr);
  gap: clamp(28px, 5vw, 74px);
  align-items: center;
  padding: clamp(52px, 7vw, 94px) 0 58px;
}

.enso-hero-copy,
.enso-hero-figure,
.enso-opening-grid > *,
.enso-reading-layout > *,
.enso-body,
.enso-section {
  min-width: 0;
}

.enso-hero .eyebrow,
.enso-body .eyebrow,
.enso-cta .eyebrow {
  margin: 0 0 14px;
  color: var(--enso-cyan);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.enso-hero h1 {
  max-width: 14ch;
  margin: 0;
  color: #fff;
  font-size: clamp(2.7rem, 5.2vw, 5.5rem);
  line-height: 0.98;
  letter-spacing: -0.052em;
}

.enso-deck {
  max-width: 64ch;
  margin: 26px 0 0;
  color: #d7e4f4;
  font-size: clamp(1.08rem, 1.5vw, 1.3rem);
  line-height: 1.7;
}

.enso-byline {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px 24px;
  margin: 32px 0 0;
  padding-top: 24px;
  border-top: 1px solid var(--enso-border);
}

.enso-byline div {
  min-width: 0;
}

.enso-byline dt {
  margin-bottom: 4px;
  color: #8ca4bd;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.enso-byline dd {
  margin: 0;
  color: var(--enso-muted);
  font-size: 0.9rem;
  line-height: 1.5;
}

.enso-byline a {
  color: var(--enso-cyan);
  font-weight: 800;
}

.enso-topic-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 20px 0 0;
  padding: 0;
  list-style: none;
}

.enso-topic-tags li {
  padding: 6px 10px;
  border: 1px solid rgba(103, 232, 249, 0.22);
  border-radius: 999px;
  color: #bfefff;
  background: rgba(8, 47, 73, 0.42);
  font-size: 0.74rem;
  font-weight: 750;
  line-height: 1.2;
}

.enso-hero-figure {
  position: relative;
  margin: 0;
}

.enso-hero-figure::before {
  content: "";
  position: absolute;
  inset: 8% 0 -8% 12%;
  z-index: -1;
  border-radius: 50%;
  background: rgba(34, 211, 238, 0.16);
  filter: blur(54px);
}

.enso-hero-figure picture {
  display: block;
  overflow: hidden;
  border: 1px solid rgba(125, 211, 252, 0.35);
  border-radius: 22px;
  background: #07172a;
  box-shadow: 0 28px 90px rgba(0, 0, 0, 0.46);
}

.enso-hero-figure img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 2 / 1;
  object-fit: cover;
}

.enso-hero-figure figcaption,
.enso-flow-figure figcaption,
.enso-mechanism-figure figcaption,
.enso-table-figure figcaption {
  color: #94a9c0;
  font-size: 0.82rem;
  line-height: 1.55;
}

.enso-hero-figure figcaption {
  margin-top: 12px;
  padding-left: 3px;
}

.enso-opening-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(0, 0.92fr);
  gap: 22px;
  align-items: stretch;
  margin-top: 16px;
}

.enso-status-panel,
.enso-answer-card,
.enso-takeaways,
.enso-product-status,
.enso-limitations,
.enso-cta,
.enso-review-note {
  border: 1px solid var(--enso-border);
  border-radius: 18px;
  background: linear-gradient(145deg, rgba(11, 27, 49, 0.96), rgba(6, 15, 31, 0.98));
  box-shadow: 0 18px 54px rgba(0, 0, 0, 0.2);
}

.enso-status-panel {
  padding: clamp(22px, 3.5vw, 38px);
  border-color: var(--enso-border-warm);
}

.enso-status-heading {
  display: flex;
  gap: 15px;
  align-items: flex-start;
}

.enso-status-dot {
  flex: 0 0 auto;
  width: 13px;
  height: 13px;
  margin-top: 7px;
  border: 3px solid rgba(255, 255, 255, 0.88);
  border-radius: 50%;
  background: var(--enso-warm);
  box-shadow: 0 0 0 6px rgba(251, 146, 60, 0.16);
}

.enso-status-heading p,
.enso-status-heading h2,
.enso-status-heading span {
  margin: 0;
}

.enso-status-heading p {
  color: #fdba74;
  font-size: 0.74rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.enso-status-heading h2 {
  margin-top: 4px;
  font-size: clamp(1.45rem, 3vw, 2rem);
  line-height: 1.15;
}

.enso-status-heading span {
  display: inline-block;
  margin-top: 5px;
  color: var(--enso-muted);
  font-size: 0.9rem;
}

.enso-status-metrics {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 25px;
}

.enso-status-metrics > div {
  padding: 18px;
  border: 1px solid rgba(251, 146, 60, 0.25);
  border-radius: 13px;
  background: rgba(251, 146, 60, 0.07);
}

.enso-status-metrics strong {
  display: block;
  color: #fed7aa;
  font-size: clamp(2rem, 5vw, 3.15rem);
  line-height: 1;
}

.enso-status-metrics span {
  display: block;
  margin-top: 10px;
  color: #d9e4f1;
  font-size: 0.86rem;
  line-height: 1.5;
}

.enso-status-note {
  margin: 21px 0 0;
  color: #f8e8d4;
  font-size: 0.9rem;
  line-height: 1.6;
}

.enso-inline-sources {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 14px;
  margin: 16px 0 0;
  font-size: 0.78rem;
}

.enso-inline-sources a,
.enso-citations a,
.enso-sources a {
  color: var(--enso-cyan);
  font-weight: 750;
}

.enso-answer-card {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(24px, 4vw, 42px);
}

.enso-answer-card h2,
.enso-takeaways h2 {
  margin: 0;
  color: #fff;
  font-size: clamp(1.55rem, 3vw, 2.25rem);
  line-height: 1.18;
}

.enso-answer-card > p:last-child {
  margin: 18px 0 0;
  color: #d3e0ef;
  font-size: 1.06rem;
  line-height: 1.75;
}

.enso-fact-review {
  margin-top: 18px;
  padding: 14px 18px;
  border: 1px solid rgba(125, 211, 252, 0.2);
  border-radius: 10px;
  color: #a9bed3;
  background: rgba(8, 23, 43, 0.74);
  font-size: 0.82rem;
  line-height: 1.55;
}

.enso-fact-review strong {
  color: #dff7ff;
}

.enso-reading-layout {
  display: grid;
  grid-template-columns: 250px minmax(0, 1fr);
  gap: clamp(38px, 6vw, 92px);
  align-items: start;
  padding: clamp(64px, 8vw, 112px) 0 100px;
}

.enso-sidebar {
  position: sticky;
  top: 92px;
}

.enso-toc {
  padding: 22px;
  border-left: 2px solid rgba(34, 211, 238, 0.45);
  background: linear-gradient(90deg, rgba(34, 211, 238, 0.06), transparent);
}

.enso-toc h2 {
  margin: 0;
  color: #e6f8ff;
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.enso-toc ol {
  display: grid;
  gap: 10px;
  margin: 18px 0 0;
  padding-left: 20px;
  color: #7891aa;
  font-size: 0.82rem;
}

.enso-toc a {
  color: #a9bed4;
  line-height: 1.38;
  text-decoration: none;
}

.enso-toc a:hover,
.enso-toc a:focus-visible {
  color: var(--enso-cyan);
  text-decoration: underline;
}

.enso-body {
  width: min(100%, 920px);
}

.enso-takeaways {
  padding: clamp(25px, 4vw, 42px);
  border-color: rgba(34, 211, 238, 0.38);
}

.enso-takeaways ul,
.enso-limitations ul {
  display: grid;
  gap: 13px;
  margin: 23px 0 0;
  padding: 0;
  list-style: none;
}

.enso-takeaways li,
.enso-limitations li {
  position: relative;
  padding-left: 28px;
  color: #d0deed;
  line-height: 1.62;
}

.enso-takeaways li::before {
  content: "";
  position: absolute;
  left: 2px;
  top: 0.65em;
  width: 10px;
  height: 3px;
  border-radius: 3px;
  background: var(--enso-cyan);
  box-shadow: 6px 0 0 rgba(103, 232, 249, 0.35);
}

.enso-section {
  padding-top: clamp(72px, 9vw, 112px);
  scroll-margin-top: 80px;
}

.enso-section > h2 {
  max-width: 20ch;
  margin: 0 0 26px;
  color: #fff;
  font-size: clamp(2rem, 4.5vw, 3.35rem);
  line-height: 1.05;
  letter-spacing: -0.035em;
}

.enso-section > p,
.enso-sources > p,
.enso-cta > p {
  margin: 0 0 22px;
  color: #c6d5e5;
  font-size: 1.04rem;
  line-height: 1.82;
}

.enso-citations {
  display: inline;
  margin-left: 0.28em;
  font-size: 0.72em;
  line-height: 1.35;
}

.enso-citations::before {
  content: "Sources: ";
  color: #7f96ad;
  font-weight: 700;
}

.enso-safety-label {
  display: inline-flex;
  align-items: center;
  margin: 0 0 18px !important;
  padding: 8px 12px;
  border: 1px solid rgba(250, 204, 21, 0.4);
  border-radius: 999px;
  color: #fef3c7 !important;
  background: rgba(250, 204, 21, 0.08);
  font-size: 0.76rem !important;
  font-weight: 900;
  letter-spacing: 0.05em;
  line-height: 1.4 !important;
  text-transform: uppercase;
}

.enso-mechanism-figure,
.enso-flow-figure,
.enso-table-figure {
  margin: 38px 0 0;
  padding: clamp(18px, 3.5vw, 32px);
  overflow: hidden;
  border: 1px solid var(--enso-border);
  border-radius: 18px;
  background:
    linear-gradient(rgba(56, 189, 248, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(56, 189, 248, 0.035) 1px, transparent 1px),
    rgba(6, 18, 35, 0.96);
  background-size: 34px 34px;
}

.enso-mechanism-scroll svg {
  display: block;
  width: 100%;
  height: auto;
}

.enso-scroll-hint {
  display: none;
  gap: 8px;
  align-items: center;
  margin: 24px 0 -22px;
  color: #bfefff;
  font-size: 0.82rem;
  font-weight: 750;
  line-height: 1.5;
}

.enso-scroll-hint span {
  color: var(--enso-gold);
  font-size: 1.1rem;
}

.enso-diagram-legend {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  margin: 22px 0 0;
  padding: 0;
  counter-reset: enso-legend;
  list-style: none;
}

.enso-diagram-legend li {
  min-width: 0;
  padding: 14px;
  border: 1px solid rgba(125, 211, 252, 0.18);
  border-radius: 10px;
  background: rgba(3, 12, 27, 0.8);
}

.enso-diagram-legend strong,
.enso-diagram-legend span {
  display: block;
}

.enso-diagram-legend strong {
  color: #e6faff;
  font-size: 0.85rem;
}

.enso-diagram-legend span {
  margin-top: 6px;
  color: #97abc0;
  font-size: 0.76rem;
  line-height: 1.45;
}

.enso-mechanism-figure figcaption,
.enso-flow-figure figcaption {
  margin-top: 18px;
}

.enso-risk-flow {
  display: grid;
  grid-template-columns: repeat(6, minmax(105px, 1fr));
  gap: 16px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.enso-risk-flow li {
  position: relative;
  min-width: 0;
  padding: 16px 12px;
  border: 1px solid rgba(125, 211, 252, 0.2);
  border-radius: 12px;
  background: rgba(5, 17, 33, 0.9);
}

.enso-risk-flow li:not(:last-child)::after {
  content: "→";
  position: absolute;
  z-index: 2;
  top: 50%;
  right: -16px;
  width: 16px;
  color: var(--enso-cyan);
  font-weight: 900;
  text-align: center;
  transform: translateY(-50%);
}

.enso-risk-flow span,
.enso-card-grid article > span,
.enso-difference-grid article > span,
.enso-related article > span,
.enso-prep-index {
  display: block;
  color: var(--enso-cyan);
  font-size: 0.7rem;
  font-weight: 900;
  letter-spacing: 0.13em;
}

.enso-risk-flow strong {
  display: block;
  margin-top: 10px;
  color: #e5f5ff;
  font-size: 0.82rem;
  line-height: 1.42;
}

.enso-card-grid,
.enso-difference-grid,
.enso-canada-cards,
.enso-prep-grid {
  display: grid;
  gap: 14px;
  margin-top: 28px;
}

.enso-card-grid,
.enso-difference-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.enso-card-grid article,
.enso-difference-grid article,
.enso-canada-cards article,
.enso-prep-grid article {
  min-width: 0;
  padding: 23px;
  border: 1px solid rgba(125, 211, 252, 0.18);
  border-radius: 14px;
  background: rgba(8, 22, 41, 0.82);
}

.enso-card-grid h3,
.enso-difference-grid h3,
.enso-canada-cards h3,
.enso-prep-grid h3,
.enso-numbered-workflow h3,
.enso-product-status h3,
.enso-related h3 {
  margin: 9px 0 0;
  color: #f4fbff;
  font-size: 1.05rem;
  line-height: 1.35;
}

.enso-card-grid article > p,
.enso-difference-grid article > p,
.enso-canada-cards article > p,
.enso-prep-grid article > p,
.enso-product-status > p:last-child {
  margin: 11px 0 0;
  color: #aec1d5;
  font-size: 0.9rem;
  line-height: 1.65;
}

.enso-canada-cards {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.enso-canada-cards article:first-child {
  border-top: 3px solid var(--enso-warm);
}

.enso-canada-cards article:nth-child(2) {
  border-top: 3px solid var(--enso-blue);
}

.enso-canada-cards article:nth-child(3) {
  border-top: 3px solid var(--enso-gold);
}

.enso-table-figure {
  overflow: visible;
}

.enso-table-scroll {
  max-width: 100%;
  overflow-x: auto;
  border-radius: 10px;
  scrollbar-color: var(--enso-blue) #0b1729;
}

.enso-table-caption {
  margin: 0 0 12px;
  color: #e7f7ff;
  font-size: 0.92rem;
  font-weight: 850;
  line-height: 1.5;
}

.enso-table-scroll table {
  width: 100%;
  min-width: 720px;
  border-collapse: collapse;
  color: #dbe8f5;
  background: rgba(3, 12, 26, 0.86);
}

.enso-table-scroll caption {
  text-align: left;
}

.enso-table-scroll th,
.enso-table-scroll td {
  padding: 15px 16px;
  border: 1px solid rgba(125, 211, 252, 0.15);
  font-size: 0.875rem;
  line-height: 1.5;
  text-align: left;
  vertical-align: top;
}

.enso-table-scroll thead th {
  color: #dff9ff;
  background: rgba(14, 64, 87, 0.66);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.enso-table-scroll tbody th {
  color: #fff;
  white-space: nowrap;
}

.enso-table-scroll tbody tr:last-child {
  background: rgba(251, 146, 60, 0.08);
}

.enso-table-figure figcaption ul {
  display: grid;
  gap: 6px;
  margin: 16px 0 0;
  padding-left: 18px;
}

.enso-difference-grid {
  grid-template-columns: repeat(6, minmax(0, 1fr));
}

.enso-difference-grid article {
  grid-column: span 2;
}

.enso-difference-grid article:nth-child(4),
.enso-difference-grid article:nth-child(5) {
  grid-column: span 3;
}

.enso-difference-grid .enso-citations {
  display: block;
  margin: 14px 0 0;
  font-size: 0.7rem;
}

.enso-product-status {
  margin-top: 32px;
  padding: clamp(24px, 4vw, 38px);
  border-color: rgba(253, 164, 175, 0.38);
  background: linear-gradient(145deg, rgba(53, 19, 34, 0.72), rgba(9, 18, 34, 0.98));
}

.enso-product-status .eyebrow {
  color: #fecdd3;
}

.enso-product-flow li:nth-child(5) {
  border-color: rgba(253, 164, 175, 0.36);
  background: rgba(76, 20, 39, 0.35);
}

.enso-numbered-workflow {
  margin-top: 34px;
  padding: clamp(22px, 4vw, 36px);
  border: 1px solid rgba(125, 211, 252, 0.2);
  border-radius: 16px;
  background: rgba(6, 19, 37, 0.88);
}

.enso-numbered-workflow > h3 {
  margin-top: 0;
  font-size: clamp(1.3rem, 3vw, 1.8rem);
}

.enso-numbered-workflow > ol {
  display: grid;
  gap: 16px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.enso-numbered-workflow li {
  display: grid;
  grid-template-columns: 38px minmax(0, 1fr);
  gap: 14px;
  align-items: start;
}

.enso-numbered-workflow li > span {
  display: grid;
  width: 36px;
  height: 36px;
  place-items: center;
  border: 1px solid rgba(103, 232, 249, 0.5);
  border-radius: 50%;
  color: var(--enso-cyan);
  font-size: 0.8rem;
  font-weight: 900;
}

.enso-numbered-workflow li p {
  margin: 4px 0 0;
  color: #c1d1e0;
  line-height: 1.62;
}

.enso-prep-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.enso-prep-grid article {
  position: relative;
  overflow: hidden;
}

.enso-prep-grid article::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 3px;
  background: linear-gradient(90deg, var(--enso-cyan), var(--enso-warm));
}

.enso-prep-grid ul {
  display: grid;
  gap: 11px;
  margin: 18px 0 0;
  padding-left: 18px;
  color: #b9cada;
  font-size: 0.88rem;
  line-height: 1.55;
}

.enso-household-grid article {
  border-top: 2px solid rgba(250, 204, 21, 0.48);
}

.enso-limitations {
  padding: clamp(24px, 4vw, 42px);
  border-color: rgba(250, 204, 21, 0.38);
  background: linear-gradient(145deg, rgba(51, 43, 9, 0.45), rgba(8, 18, 34, 0.98));
}

.enso-limitations ul {
  margin-top: 0;
}

.enso-limitations li::before {
  content: "!";
  position: absolute;
  left: 0;
  top: 0.15em;
  display: grid;
  width: 18px;
  height: 18px;
  place-items: center;
  border: 1px solid rgba(250, 204, 21, 0.6);
  border-radius: 50%;
  color: #fde68a;
  font-size: 0.68rem;
  font-weight: 900;
}

.enso-cta {
  margin-top: 96px;
  padding: clamp(28px, 5vw, 50px);
  border-color: rgba(34, 211, 238, 0.4);
  background:
    radial-gradient(circle at 92% 20%, rgba(251, 146, 60, 0.17), transparent 17rem),
    linear-gradient(145deg, rgba(10, 47, 66, 0.9), rgba(6, 17, 34, 0.98));
}

.enso-cta h2 {
  max-width: 18ch;
  margin: 0;
  color: #fff;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.08;
}

.enso-cta > p:last-of-type {
  max-width: 62ch;
  margin-top: 18px;
}

.enso-cta .hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 26px;
}

.enso-cta .button {
  min-height: 46px;
}

.enso-faq-list {
  display: grid;
  gap: 12px;
}

.enso-faq details {
  border: 1px solid rgba(125, 211, 252, 0.2);
  border-radius: 12px;
  background: rgba(7, 21, 40, 0.84);
}

.enso-faq summary {
  position: relative;
  padding: 20px 56px 20px 20px;
  color: #effbff;
  cursor: pointer;
  font-weight: 820;
  line-height: 1.45;
  list-style: none;
}

.enso-faq summary::-webkit-details-marker {
  display: none;
}

.enso-faq summary::after {
  content: "+";
  position: absolute;
  top: 50%;
  right: 20px;
  color: var(--enso-cyan);
  font-size: 1.5rem;
  line-height: 1;
  transform: translateY(-50%);
}

.enso-faq details[open] summary::after {
  content: "−";
}

.enso-faq details p {
  margin: 0;
  padding: 0 20px 22px;
  color: #b8cadb;
  line-height: 1.7;
}

.enso-sources > ol {
  display: grid;
  gap: 13px;
  margin: 30px 0 0;
  padding: 0;
  list-style: none;
  counter-reset: enso-source;
}

.enso-sources > ol > li {
  position: relative;
  padding: 17px 18px 17px 54px;
  border: 1px solid rgba(125, 211, 252, 0.17);
  border-radius: 12px;
  background: rgba(6, 18, 35, 0.78);
  counter-increment: enso-source;
}

.enso-sources > ol > li::before {
  content: counter(enso-source, decimal-leading-zero);
  position: absolute;
  left: 16px;
  top: 17px;
  color: var(--enso-cyan);
  font-size: 0.72rem;
  font-weight: 900;
}

.enso-sources li > span,
.enso-sources li > a,
.enso-sources li > small {
  display: block;
}

.enso-sources li > span {
  color: #92a9bf;
  font-size: 0.72rem;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.enso-sources li > a {
  margin-top: 5px;
  line-height: 1.45;
}

.enso-sources li > small {
  margin-top: 8px;
  color: #8399ae;
  line-height: 1.45;
}

.enso-review-note {
  margin-top: 24px;
  padding: 22px;
  color: #cbd8e6;
  line-height: 1.65;
}

.enso-review-note strong {
  color: #fff;
}

.enso-related .enso-card-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.enso-related h3 a {
  color: #fff;
}

@media (max-width: 1120px) {
  .enso-hero {
    grid-template-columns: 1fr;
  }

  .enso-hero h1 {
    max-width: 16ch;
  }

  .enso-hero-figure {
    width: min(100%, 900px);
  }

  .enso-reading-layout {
    grid-template-columns: 210px minmax(0, 1fr);
    gap: 42px;
  }

  .enso-risk-flow {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .enso-risk-flow li:nth-child(3)::after {
    display: none;
  }
}

@media (max-width: 860px) {
  html {
    scroll-padding-top: 70px;
  }

  .enso-breadcrumbs,
  .enso-hero,
  .enso-opening-grid,
  .enso-fact-review,
  .enso-reading-layout {
    width: min(100% - 32px, var(--enso-max));
  }

  .enso-hero {
    padding-top: 42px;
  }

  .enso-opening-grid {
    grid-template-columns: 1fr;
  }

  .enso-reading-layout {
    grid-template-columns: 1fr;
    gap: 36px;
    padding-top: 60px;
  }

  .enso-sidebar {
    position: static;
  }

  .enso-toc {
    padding: 20px;
    border: 1px solid var(--enso-border);
    border-radius: 14px;
    background: rgba(7, 21, 40, 0.82);
  }

  .enso-toc ol {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px 26px;
  }

  .enso-diagram-legend,
  .enso-canada-cards,
  .enso-prep-grid {
    grid-template-columns: 1fr;
  }

  .enso-difference-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .enso-difference-grid article,
  .enso-difference-grid article:nth-child(4),
  .enso-difference-grid article:nth-child(5) {
    grid-column: auto;
  }

  .enso-table-scroll-hint {
    display: flex;
    margin: 0 0 10px;
  }
}

@media (max-width: 600px) {
  .enso-breadcrumbs,
  .enso-hero,
  .enso-opening-grid,
  .enso-fact-review,
  .enso-reading-layout {
    width: min(100% - 24px, var(--enso-max));
  }

  .enso-breadcrumbs {
    padding-top: 18px;
  }

  .enso-hero {
    gap: 34px;
    padding: 34px 0 38px;
  }

  .enso-hero h1 {
    font-size: clamp(2.45rem, 13vw, 3.65rem);
    line-height: 0.99;
  }

  .enso-deck {
    font-size: 1rem;
  }

  .enso-byline,
  .enso-status-metrics,
  .enso-card-grid,
  .enso-difference-grid,
  .enso-related .enso-card-grid,
  .enso-toc ol {
    grid-template-columns: 1fr;
  }

  .enso-hero-figure picture {
    border-radius: 13px;
  }

  .enso-status-panel,
  .enso-answer-card,
  .enso-takeaways,
  .enso-product-status,
  .enso-limitations,
  .enso-cta {
    border-radius: 14px;
  }

  .enso-status-metrics > div {
    padding: 16px;
  }

  .enso-reading-layout {
    padding-bottom: 70px;
  }

  .enso-section {
    padding-top: 72px;
  }

  .enso-section > h2 {
    font-size: clamp(2rem, 10vw, 2.65rem);
  }

  .enso-section > p,
  .enso-sources > p,
  .enso-cta > p {
    font-size: 0.99rem;
    line-height: 1.75;
  }

  .enso-mechanism-figure,
  .enso-flow-figure,
  .enso-table-figure {
    padding: 14px;
    border-radius: 13px;
  }

  .enso-diagram-scroll-hint {
    display: flex;
    margin: 0 0 10px;
  }

  .enso-mechanism-scroll {
    max-width: 100%;
    padding-bottom: 8px;
    overflow-x: auto;
    scrollbar-color: var(--enso-blue) #0b1729;
  }

  .enso-mechanism-scroll svg {
    width: 720px;
    max-width: none;
  }

  .enso-diagram-legend {
    min-width: 0;
  }

  .enso-risk-flow {
    grid-template-columns: 1fr;
  }

  .enso-risk-flow li:not(:last-child)::after,
  .enso-risk-flow li:nth-child(3)::after {
    display: block;
    top: auto;
    right: 50%;
    bottom: -17px;
    transform: translateX(50%) rotate(90deg);
  }

  .enso-numbered-workflow {
    padding: 20px;
  }

  .enso-sources > ol > li {
    padding-left: 46px;
  }

  .enso-cta .hero-actions,
  .enso-cta .button {
    width: 100%;
  }

  .enso-cta .button {
    justify-content: center;
    text-align: center;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .enso-article-page *,
  .enso-article-page *::before,
  .enso-article-page *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }
}
