:root {
  color-scheme: dark;
  --bg: #050b14;
  --bg-soft: #081321;
  --surface: #0c1929;
  --surface-2: #102138;
  --surface-3: #132844;
  --text: #eef7ff;
  --muted: #a5b8ca;
  --quiet: #748aa0;
  --cyan: #35e6ff;
  --cyan-soft: #a9f6ff;
  --violet: #9b7cff;
  --pink: #ff5ab3;
  --gold: #ffd479;
  --line: rgba(117, 207, 255, 0.18);
  --line-strong: rgba(117, 207, 255, 0.34);
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.34);
  --max: 1180px;
  --article: 780px;
  --radius: 18px;
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  min-width: 320px;
  background:
    radial-gradient(circle at 80% 3%, rgba(80, 105, 255, 0.16), transparent 24rem),
    radial-gradient(circle at 12% 18%, rgba(28, 221, 255, 0.07), transparent 30rem),
    linear-gradient(180deg, #06101c 0%, var(--bg) 46%, #040910 100%);
  color: var(--text);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 17px;
  line-height: 1.75;
  text-rendering: optimizeLegibility;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: 0.13;
  background-image:
    linear-gradient(rgba(113, 185, 235, 0.11) 1px, transparent 1px),
    linear-gradient(90deg, rgba(113, 185, 235, 0.11) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: linear-gradient(to bottom, black, transparent 70%);
  z-index: -1;
}

::selection {
  background: rgba(53, 230, 255, 0.3);
  color: #fff;
}

a {
  color: var(--cyan-soft);
  text-decoration-color: rgba(53, 230, 255, 0.5);
  text-underline-offset: 0.18em;
}

a:hover {
  color: #fff;
  text-decoration-color: var(--cyan);
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

code {
  font-family: "Cascadia Code", "SFMono-Regular", Consolas, monospace;
  font-size: 0.9em;
  color: var(--cyan-soft);
  background: rgba(53, 230, 255, 0.08);
  border: 1px solid rgba(53, 230, 255, 0.12);
  border-radius: 6px;
  padding: 0.08em 0.34em;
}

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

.skip-link {
  position: fixed;
  left: 16px;
  top: -80px;
  z-index: 999;
  padding: 12px 18px;
  background: var(--cyan);
  color: #03101a;
  border-radius: 10px;
  font-weight: 800;
  text-decoration: none;
  transition: top 0.2s ease;
}

.skip-link:focus {
  top: 16px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(4, 10, 18, 0.88);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
}

.site-header__inner {
  width: min(var(--max), calc(100% - 40px));
  min-height: 68px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.site-brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  color: var(--text);
  font-size: 0.92rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  text-decoration: none;
  white-space: nowrap;
}

.site-brand__mark {
  display: grid;
  place-items: center;
  width: 33px;
  height: 33px;
  color: var(--cyan);
  border: 1px solid rgba(53, 230, 255, 0.55);
  border-radius: 9px;
  box-shadow: inset 0 0 18px rgba(53, 230, 255, 0.08), 0 0 18px rgba(53, 230, 255, 0.08);
  font-family: "Cascadia Code", Consolas, monospace;
  font-size: 0.76rem;
}

.portfolio-nav {
  display: flex;
  align-items: center;
  gap: 6px;
}

.portfolio-nav a {
  padding: 8px 11px;
  color: var(--muted);
  border-radius: 8px;
  font-size: 0.82rem;
  font-weight: 700;
  text-decoration: none;
  transition: color 0.18s ease, background 0.18s ease;
}

.portfolio-nav a:hover,
.portfolio-nav a:focus-visible {
  color: var(--text);
  background: rgba(53, 230, 255, 0.08);
}

.menu-button {
  display: none;
  width: 42px;
  height: 42px;
  padding: 9px;
  border: 1px solid var(--line-strong);
  border-radius: 10px;
  background: rgba(53, 230, 255, 0.04);
  cursor: pointer;
}

.menu-button span:not(.sr-only) {
  display: block;
  width: 100%;
  height: 2px;
  margin: 5px 0;
  background: var(--cyan-soft);
  border-radius: 3px;
}

.progress-bar {
  position: fixed;
  inset: 68px 0 auto;
  height: 2px;
  z-index: 150;
  pointer-events: none;
}

.progress-bar span {
  display: block;
  width: 0;
  height: 100%;
  background: linear-gradient(90deg, var(--cyan), var(--violet), var(--pink));
  box-shadow: 0 0 12px rgba(53, 230, 255, 0.55);
}

.hero {
  padding: 96px 0 84px;
  border-bottom: 1px solid var(--line);
}

.hero__inner {
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 280px;
  align-items: end;
  gap: 72px;
}

.hero__copy {
  max-width: 820px;
}

.eyebrow,
.section-kicker {
  margin: 0 0 14px;
  color: var(--cyan);
  font-family: "Cascadia Code", Consolas, monospace;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.eyebrow::before,
.section-kicker::before {
  content: "// ";
  color: var(--violet);
}

.hero h1 {
  margin: 0;
  max-width: 900px;
  font-size: clamp(3rem, 8vw, 6.5rem);
  line-height: 0.93;
  letter-spacing: -0.065em;
}

.hero__subtitle {
  margin: 22px 0 0;
  color: var(--cyan-soft);
  font-size: clamp(1.28rem, 3vw, 2rem);
  line-height: 1.25;
  font-weight: 700;
  letter-spacing: -0.025em;
}

.hero__intro {
  max-width: 760px;
  margin: 30px 0 0;
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.8;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.button {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-height: 48px;
  padding: 0 18px;
  border-radius: 10px;
  font-size: 0.88rem;
  font-weight: 850;
  text-decoration: none;
  transition: transform 0.18s ease, border-color 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button--primary {
  color: #021019;
  background: linear-gradient(135deg, var(--cyan), #75f0ff);
  box-shadow: 0 12px 35px rgba(53, 230, 255, 0.18);
}

.button--primary:hover {
  color: #021019;
  box-shadow: 0 16px 42px rgba(53, 230, 255, 0.3);
}

.button--secondary {
  color: var(--text);
  border: 1px solid var(--line-strong);
  background: rgba(255, 255, 255, 0.025);
}

.updated {
  margin-top: 24px;
  color: var(--quiet);
  font-size: 0.82rem;
}

.hero__aside {
  position: relative;
  padding: 26px;
  overflow: hidden;
  background: linear-gradient(145deg, rgba(20, 42, 70, 0.95), rgba(9, 24, 42, 0.95));
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.hero__aside::before {
  content: "";
  position: absolute;
  width: 150px;
  height: 150px;
  right: -60px;
  top: -60px;
  background: radial-gradient(circle, rgba(155, 124, 255, 0.26), transparent 68%);
}

.hero__aside-label {
  margin: 0 0 6px;
  color: var(--quiet);
  font-family: "Cascadia Code", Consolas, monospace;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero__aside-number {
  margin: 0;
  color: var(--cyan);
  font-size: 2.65rem;
  line-height: 1;
  font-weight: 900;
  letter-spacing: -0.05em;
}

.hero__aside > p:not(.hero__aside-label):not(.hero__aside-number):not(.hero__aside-small) {
  margin: 10px 0 0;
  color: var(--muted);
  line-height: 1.55;
  font-size: 0.93rem;
}

.hero__aside-divider {
  height: 1px;
  margin: 22px 0;
  background: linear-gradient(90deg, var(--line-strong), transparent);
}

.hero__aside-small {
  margin: 0;
  color: var(--text);
  font-size: 0.88rem;
  line-height: 1.65;
}

.section-nav {
  position: sticky;
  top: 68px;
  z-index: 90;
  background: rgba(7, 17, 31, 0.94);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
}

.section-nav__inner {
  width: min(var(--max), calc(100% - 40px));
  min-height: 62px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 24px;
}

.section-nav__label {
  flex: 0 0 auto;
  color: var(--quiet);
  font-family: "Cascadia Code", Consolas, monospace;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.section-nav__links {
  display: flex;
  align-items: center;
  gap: 4px;
  overflow-x: auto;
  scrollbar-width: none;
}

.section-nav__links::-webkit-scrollbar {
  display: none;
}

.section-nav__links a {
  flex: 0 0 auto;
  padding: 8px 10px;
  color: var(--muted);
  border-radius: 8px;
  font-size: 0.77rem;
  font-weight: 800;
  text-decoration: none;
  transition: color 0.18s ease, background 0.18s ease;
}

.section-nav__links a:hover,
.section-nav__links a.active {
  color: var(--cyan-soft);
  background: rgba(53, 230, 255, 0.08);
}

.article-shell {
  padding: 0 20px;
}

.article {
  width: min(var(--article), 100%);
  margin: 0 auto;
  padding: 88px 0 100px;
}

.guide-section {
  position: relative;
  padding: 0 0 86px;
  margin: 0 0 86px;
  border-bottom: 1px solid var(--line);
}

.guide-section:last-of-type {
  margin-bottom: 46px;
}

.guide-section > *:last-child {
  margin-bottom: 0;
}

.guide-section h2 {
  margin: 0 0 28px;
  font-size: clamp(2rem, 5vw, 3.35rem);
  line-height: 1.08;
  letter-spacing: -0.045em;
}

.guide-section h3 {
  margin: 46px 0 12px;
  color: var(--text);
  font-size: 1.35rem;
  line-height: 1.3;
  letter-spacing: -0.018em;
}

.guide-section p {
  margin: 0 0 24px;
  color: var(--muted);
}

.guide-section p strong,
.guide-section li strong {
  color: var(--text);
}

.lede {
  color: #c8d7e5 !important;
  font-size: 1.12rem;
  line-height: 1.85;
}

blockquote {
  position: relative;
  margin: 44px 0;
  padding: 24px 28px 24px 34px;
  color: var(--text);
  background: linear-gradient(90deg, rgba(53, 230, 255, 0.08), rgba(155, 124, 255, 0.035));
  border-left: 3px solid var(--cyan);
  border-radius: 0 14px 14px 0;
  font-size: 1.3rem;
  font-weight: 720;
  line-height: 1.55;
  letter-spacing: -0.015em;
}

.numbered-list,
.ranked-list,
.workflow-list {
  list-style: none;
  padding: 0;
  margin: 26px 0 40px;
}

.numbered-list {
  counter-reset: guide-number;
}

.numbered-list li {
  counter-increment: guide-number;
  position: relative;
  padding: 22px 22px 22px 70px;
  margin: 0 0 10px;
  color: var(--muted);
  background: rgba(12, 25, 41, 0.74);
  border: 1px solid var(--line);
  border-radius: 13px;
}

.numbered-list li::before {
  content: counter(guide-number, decimal-leading-zero);
  position: absolute;
  left: 20px;
  top: 19px;
  color: var(--cyan);
  font-family: "Cascadia Code", Consolas, monospace;
  font-weight: 900;
}

.callout {
  margin: 38px 0;
  padding: 25px 28px;
  border-radius: 14px;
}

.callout > strong {
  display: block;
  margin-bottom: 5px;
  color: var(--text);
  font-size: 1rem;
}

.callout p {
  margin: 0;
  font-size: 0.96rem;
}

.callout--plain {
  background: rgba(12, 25, 41, 0.76);
  border: 1px solid var(--line);
}

.callout--accent {
  background: linear-gradient(120deg, rgba(53, 230, 255, 0.10), rgba(155, 124, 255, 0.08));
  border: 1px solid rgba(53, 230, 255, 0.28);
}

.callout--warning {
  background: linear-gradient(120deg, rgba(255, 212, 121, 0.09), rgba(255, 90, 179, 0.05));
  border: 1px solid rgba(255, 212, 121, 0.28);
}

.personal-note {
  position: relative;
  margin: 42px 0;
  padding: 26px 28px;
  background: #101d32;
  border: 1px solid rgba(155, 124, 255, 0.32);
  border-radius: 14px;
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.18);
}

.personal-note::after {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 2px;
  background: linear-gradient(90deg, var(--violet), var(--pink), transparent 75%);
  border-radius: 14px 14px 0 0;
}

.personal-note p {
  margin: 0;
  color: #cbd8e7;
}

.personal-note--large {
  padding: 32px;
  font-size: 1.08rem;
}

.ranked-list li {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 18px;
  padding: 22px 0;
  border-bottom: 1px solid var(--line);
}

.ranked-list .rank {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  color: var(--cyan);
  background: rgba(53, 230, 255, 0.07);
  border: 1px solid rgba(53, 230, 255, 0.26);
  border-radius: 12px;
  font-family: "Cascadia Code", Consolas, monospace;
  font-weight: 900;
}

.ranked-list strong {
  display: block;
  margin: 1px 0 5px;
  font-size: 1rem;
}

.ranked-list p {
  margin: 0;
  font-size: 0.94rem;
  line-height: 1.65;
}

.check-list {
  list-style: none;
  padding: 0;
  margin: 24px 0 38px;
}

.check-list li {
  position: relative;
  padding: 13px 0 13px 38px;
  color: var(--muted);
  border-bottom: 1px solid rgba(117, 207, 255, 0.1);
}

.check-list li::before {
  content: "✓";
  position: absolute;
  left: 4px;
  top: 12px;
  color: var(--cyan);
  font-weight: 900;
}

.workflow-list {
  margin-top: 34px;
}

.workflow-list li {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 22px;
  padding: 24px 0;
  border-bottom: 1px solid var(--line);
}

.workflow-list > li > span {
  color: var(--violet);
  font-family: "Cascadia Code", Consolas, monospace;
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.08em;
}

.workflow-list strong {
  display: block;
  margin-bottom: 5px;
  color: var(--cyan-soft) !important;
  font-size: 1.25rem;
}

.workflow-list p {
  margin: 0;
}

.guide-section--closing {
  padding: 42px 42px 44px;
  background:
    radial-gradient(circle at 90% 10%, rgba(155, 124, 255, 0.18), transparent 18rem),
    linear-gradient(145deg, #0f2138, #0a1728);
  border: 1px solid var(--line-strong);
  border-radius: 20px;
  box-shadow: var(--shadow);
}

.closing-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 34px;
}

.closing-links a {
  padding: 9px 13px;
  color: var(--text);
  background: rgba(255, 255, 255, 0.035);
  border: 1px solid var(--line);
  border-radius: 9px;
  font-size: 0.8rem;
  font-weight: 800;
  text-decoration: none;
}

.disclaimer {
  padding: 20px 22px;
  color: var(--quiet);
  border-left: 2px solid rgba(117, 207, 255, 0.22);
  font-size: 0.78rem;
  line-height: 1.65;
}

.disclaimer p {
  margin: 0;
}

.site-footer {
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
  padding: 32px 0 46px;
  display: flex;
  justify-content: space-between;
  gap: 22px;
  color: var(--quiet);
  border-top: 1px solid var(--line);
  font-size: 0.76rem;
}

.site-footer p {
  margin: 0;
}

.site-footer div {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.site-footer a {
  color: var(--muted);
  text-decoration: none;
}

.pdf-cover {
  display: none;
}

@media (max-width: 920px) {
  .hero__inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .hero__aside {
    max-width: 520px;
  }

  .section-nav__label {
    display: none;
  }
}

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

  body {
    font-size: 16px;
  }

  .site-header__inner {
    width: min(100% - 28px, var(--max));
    min-height: 62px;
  }

  .menu-button {
    display: block;
  }

  .portfolio-nav {
    position: absolute;
    top: calc(100% + 1px);
    left: 14px;
    right: 14px;
    display: none;
    padding: 10px;
    background: rgba(7, 17, 31, 0.98);
    border: 1px solid var(--line-strong);
    border-radius: 12px;
    box-shadow: var(--shadow);
  }

  .portfolio-nav.open {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
  }

  .portfolio-nav a {
    padding: 11px 12px;
  }

  .progress-bar {
    top: 62px;
  }

  .hero {
    padding: 68px 0 58px;
  }

  .hero__inner,
  .section-nav__inner {
    width: min(100% - 28px, var(--max));
  }

  .hero h1 {
    font-size: clamp(3.15rem, 15vw, 5.4rem);
  }

  .hero__subtitle {
    font-size: 1.25rem;
  }

  .hero__intro {
    font-size: 1rem;
  }

  .section-nav {
    top: 62px;
  }

  .section-nav__inner {
    min-height: 56px;
  }

  .section-nav__links a {
    padding: 8px 9px;
    font-size: 0.74rem;
  }

  .article {
    padding: 64px 0 72px;
  }

  .guide-section {
    padding-bottom: 62px;
    margin-bottom: 62px;
  }

  .guide-section h2 {
    font-size: clamp(2rem, 10vw, 2.75rem);
  }

  blockquote {
    margin: 34px 0;
    padding: 20px 20px 20px 25px;
    font-size: 1.12rem;
  }

  .numbered-list li {
    padding: 58px 18px 20px;
  }

  .numbered-list li::before {
    top: 18px;
    left: 18px;
  }

  .callout,
  .personal-note {
    padding: 22px;
  }

  .workflow-list li {
    grid-template-columns: 1fr;
    gap: 4px;
  }

  .guide-section--closing {
    padding: 30px 23px 32px;
  }

  .site-footer {
    width: min(100% - 28px, var(--max));
    flex-direction: column;
  }
}

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

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

@page {
  size: Letter;
  margin: 0.64in 0.67in 0.68in;
}

@media print {
  :root {
    color-scheme: light;
    --text: #0b1624;
    --muted: #35485a;
    --quiet: #637487;
    --cyan: #007e98;
    --cyan-soft: #006b82;
    --violet: #6546b8;
    --pink: #b62c73;
    --gold: #9c6900;
    --line: rgba(28, 71, 99, 0.18);
    --line-strong: rgba(28, 71, 99, 0.34);
  }

  html {
    scroll-padding-top: 0;
  }

  body {
    background: #fff;
    color: var(--text);
    font-family: "Segoe UI", Arial, sans-serif;
    font-size: 10.15pt;
    line-height: 1.55;
    print-color-adjust: exact;
    -webkit-print-color-adjust: exact;
  }

  body::before,
  .screen-only,
  .site-header,
  .progress-bar,
  .section-nav,
  .site-footer,
  .skip-link {
    display: none !important;
  }

  a {
    color: var(--cyan-soft);
    text-decoration: none;
  }

  code {
    color: #006b82;
    background: #edf8fa;
    border-color: #c6e4ea;
  }

  .pdf-cover {
    display: flex;
    min-height: 9.05in;
    flex-direction: column;
    justify-content: center;
    page-break-after: always;
    position: relative;
    padding: 0.25in 0.15in;
    overflow: hidden;
  }

  .pdf-cover::after {
    content: "";
    position: absolute;
    right: -0.55in;
    top: 0.45in;
    width: 3.4in;
    height: 3.4in;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(0, 126, 152, 0.14), rgba(101, 70, 184, 0.03) 60%, transparent 70%);
  }

  .pdf-cover__rule {
    width: 1.05in;
    height: 0.07in;
    margin-bottom: 0.35in;
    background: linear-gradient(90deg, #007e98, #6546b8, #b62c73);
  }

  .pdf-cover .eyebrow {
    margin-bottom: 0.18in;
    font-size: 8.5pt;
  }

  .pdf-cover h1 {
    max-width: 6.5in;
    margin: 0;
    font-size: 38pt;
    line-height: 0.98;
    letter-spacing: -1.8pt;
  }

  .pdf-cover__subtitle {
    max-width: 5.6in;
    margin: 0.28in 0 0;
    color: #006b82;
    font-size: 18pt;
    line-height: 1.2;
    font-weight: 700;
  }

  .pdf-cover__meta {
    margin-top: 0.65in;
    padding-top: 0.22in;
    border-top: 1px solid var(--line-strong);
  }

  .pdf-cover__meta p {
    margin: 0.04in 0;
    color: #35485a;
    font-size: 10pt;
  }

  .pdf-cover__note {
    max-width: 5.8in;
    margin: 0.6in 0 0;
    color: #637487;
    font-size: 10.5pt;
    line-height: 1.6;
  }

  .article-shell {
    padding: 0;
  }

  .article {
    width: auto;
    max-width: none;
    margin: 0;
    padding: 0;
  }

  .guide-section {
    padding: 0 0 0.25in;
    margin: 0 0 0.32in;
    border-bottom: 1px solid var(--line);
    break-inside: auto;
  }


  .guide-section h2 {
    margin: 0 0 0.17in;
    color: #0b1624;
    font-size: 22pt;
    line-height: 1.07;
    letter-spacing: -0.7pt;
  }

  .guide-section h3 {
    margin: 0.28in 0 0.06in;
    color: #10263a;
    font-size: 13pt;
    break-after: avoid;
  }

  .guide-section p {
    margin: 0 0 0.14in;
    color: #35485a;
    orphans: 3;
    widows: 3;
  }

  .section-kicker {
    margin-bottom: 0.08in;
    color: #007e98;
    font-size: 7.5pt;
  }

  .lede {
    font-size: 11.2pt;
    line-height: 1.62;
    color: #263b4d !important;
  }

  blockquote {
    margin: 0.24in 0;
    padding: 0.16in 0.2in;
    color: #10263a;
    background: #eef8fa;
    border-left: 3px solid #007e98;
    border-radius: 0 7px 7px 0;
    font-size: 12pt;
    break-inside: avoid;
  }

  .numbered-list,
  .ranked-list,
  .workflow-list {
    margin: 0.16in 0 0.25in;
  }

  .numbered-list li {
    padding: 0.11in 0.14in 0.11in 0.48in;
    margin-bottom: 0.06in;
    color: #35485a;
    background: #f4f8fb;
    border: 1px solid #d9e5ec;
    border-radius: 7px;
    break-inside: avoid;
  }

  .numbered-list li::before {
    top: 0.11in;
    left: 0.13in;
    color: #007e98;
  }

  .callout,
  .personal-note {
    margin: 0.22in 0;
    padding: 0.16in 0.19in;
    background: #f4f8fb;
    border: 1px solid #d9e5ec;
    border-radius: 7px;
    box-shadow: none;
    break-inside: avoid;
  }

  .callout--accent {
    background: #edf8fa;
    border-color: #b9dde5;
  }

  .callout--warning {
    background: #fff8e9;
    border-color: #ecd49a;
  }

  .personal-note {
    background: #f4f1fc;
    border-color: #d6caef;
  }

  .personal-note::after {
    height: 2px;
  }

  .callout p,
  .personal-note p {
    margin: 0;
  }

  .ranked-list li {
    grid-template-columns: 0.38in 1fr;
    gap: 0.14in;
    padding: 0.11in 0;
    break-inside: avoid;
  }

  .ranked-list .rank {
    width: 0.34in;
    height: 0.34in;
    color: #007e98;
    background: #edf8fa;
    border-color: #b9dde5;
    border-radius: 6px;
  }

  .ranked-list p {
    margin: 0;
    font-size: 9.2pt;
  }

  .check-list {
    margin: 0.14in 0 0.22in;
  }

  .check-list li {
    padding: 0.07in 0 0.07in 0.28in;
    color: #35485a;
  }

  .check-list li::before {
    top: 0.065in;
    color: #007e98;
  }

  .workflow-list li {
    grid-template-columns: 0.45in 1fr;
    gap: 0.12in;
    padding: 0.13in 0;
    break-inside: avoid;
  }

  .workflow-list strong {
    color: #006b82 !important;
    font-size: 11pt;
  }

  .guide-section--closing {
    padding: 0.24in 0.26in 0.25in;
    background: #eef5fa;
    border: 1px solid #cbdce7;
    border-radius: 9px;
    box-shadow: none;
    break-inside: avoid;
  }

  .disclaimer {
    margin-top: 0.2in;
    padding: 0.12in 0.15in;
    color: #637487;
    background: #f7f9fb;
    border-left: 2px solid #b9cbd8;
    font-size: 8pt;
    break-inside: avoid;
  }
}
