@font-face {
  font-family: Inter;
  src: url(inter-variable.woff2) format('woff2');
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}
:root {
  --ink: #101214;
  --muted: #505258;
  --blue: #1868db;
  --blue-dark: #1254b4;
  --line: #e3e5e9;
  --lavender: #f4effb;
  --lime: #e6f5cc;
  --sky: #e7f0ff;
  --radius: 7px;
  --measure: 1200px;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: 30px;
}
body {
  margin: 0;
  background: #fff;
  color: var(--ink);
  font-family: Inter, Arial, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
button,
input,
select {
  font: inherit;
}
button,
a,
input,
select,
summary {
  -webkit-tap-highlight-color: transparent;
}
a {
  color: inherit;
  text-decoration: none;
}
button {
  cursor: pointer;
}
button:disabled {
  cursor: default;
  opacity: 0.45;
}
a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
summary:focus-visible,
.table-scroll:focus-visible {
  outline: 3px solid var(--blue);
  outline-offset: 5px;
}
p,
h1,
h2,
h3 {
  margin-top: 0;
}
p {
  color: var(--muted);
  margin-bottom: 0;
}
h1,
h2,
h3 {
  line-height: 1.1;
  letter-spacing: -0.035em;
  font-weight: 720;
}
h1 {
  font-size: clamp(44px, 4.6vw, 66px);
  margin-bottom: 24px;
}
h2 {
  font-size: clamp(34px, 3.25vw, 48px);
  margin-bottom: 22px;
}
h3 {
  font-size: 24px;
  letter-spacing: -0.035em;
  margin-bottom: 13px;
}
img {
  max-width: 100%;
  height: auto;
}
.container {
  width: min(var(--measure), calc(100% - 96px));
  margin-inline: auto;
}
.section {
  padding-block: 90px;
}
.muted {
  color: var(--muted);
}
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
}
.skip-link {
  position: fixed;
  left: 20px;
  top: -80px;
  background: var(--blue);
  color: #fff;
  padding: 12px 18px;
  z-index: 100;
}
.skip-link:focus {
  top: 12px;
}
.site-header {
  min-height: 88px;
  padding: 18px 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  border-bottom: 1px solid var(--line);
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
  line-height: 1.15;
}
.brand-mark {
  width: 39px;
  height: 39px;
  color: var(--blue);
}
.brand strong {
  display: block;
  font-size: 23px;
  letter-spacing: -0.035em;
  font-weight: 750;
}
.brand small {
  display: block;
  color: var(--muted);
  font-size: 11px;
  margin-top: 5px;
}
.site-header nav {
  display: flex;
  align-items: center;
  gap: 30px;
  font-size: 14px;
}
.site-header nav > a:not(.button):hover {
  color: var(--blue);
}
.menu-button {
  display: none;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 5px;
  padding: 8px 12px;
}
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-height: 46px;
  padding: 13px 23px;
  background: var(--blue);
  color: #fff;
  border: 1px solid var(--blue);
  border-radius: 28px;
  line-height: 1.25;
  font-size: 14px;
  font-weight: 650;
  transition:
    background 0.16s,
    transform 0.16s;
  white-space: normal;
  text-align: center;
}
.button:hover {
  background: var(--blue-dark);
  border-color: var(--blue-dark);
}
.button:active {
  transform: translateY(1px);
}
.button.secondary {
  background: #fff;
  color: var(--ink);
  border-color: #858991;
}
.button.secondary:hover {
  background: #f6f7f9;
  border-color: var(--ink);
}
.button.small {
  min-height: 40px;
  font-size: 12px;
  padding: 10px 18px;
}
.actions {
  display: flex;
  gap: 12px;
  align-items: center;
  flex-wrap: wrap;
}
.eyebrow {
  font-size: 12px;
  letter-spacing: 0.01em;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 25px;
  color: var(--muted);
}
.tiny-icon {
  width: 17px;
  height: 17px;
  color: var(--blue);
  flex: none;
}
.hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 20px;
  padding-top: 78px;
  padding-bottom: 70px;
  min-height: 605px;
}
.hero-copy {
  position: relative;
  z-index: 1;
}
.hero-image {
  width: 110%;
  max-width: 110%;
  margin-left: -3%;
  display: block;
}
.lead {
  font-size: 19px;
  line-height: 1.65;
  max-width: 510px;
  margin-bottom: 28px;
}
.preview-note {
  font-size: 11px;
  line-height: 1.7;
  margin-top: 21px;
  max-width: 420px;
  color: #62666e;
}
.preview-note strong {
  font-weight: 600;
  color: #44474e;
}
.essentials {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 25px;
  padding-block: 26px;
  border-block: 1px solid var(--line);
  font-size: 12px;
  color: var(--muted);
}
.essentials strong {
  font-weight: 500;
  color: #363941;
  display: flex;
  align-items: center;
  gap: 9px;
}
.blue-dot {
  width: 7px;
  height: 7px;
  border: 1.5px solid var(--blue);
  display: inline-block;
  flex: none;
}
.section-heading {
  max-width: 720px;
  margin-bottom: 36px;
}
.section-heading > p {
  font-size: 17px;
  max-width: 620px;
}
.steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
}
.step-art {
  height: 205px;
  border-radius: var(--radius);
  background: #f0e5ff;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  position: relative;
  overflow: hidden;
  margin-bottom: 20px;
  padding: 24px;
}
.step:nth-child(2) .step-art {
  background: var(--lime);
}
.step:nth-child(3) .step-art {
  background: #dce8ff;
}
.step-number {
  font-size: 11px;
  font-weight: 550;
  color: var(--muted);
  display: block;
  margin-bottom: 10px;
}
.step h3 {
  font-size: 25px;
  line-height: 1.15;
  max-width: 320px;
}
.step p {
  font-size: 14px;
  line-height: 1.75;
}
.mini-sheet {
  background: #fff;
  box-shadow:
    4px 8px 0 #17224b0a,
    0 6px 18px #1012140a;
  padding: 20px 22px;
  min-height: 130px;
  width: 94%;
  display: flex;
  flex-direction: column;
  gap: 11px;
  transform: rotate(-2deg);
  font-size: 11px;
  color: var(--muted);
}
.mini-sheet strong {
  font-size: 14px;
  color: var(--ink);
  font-weight: 600;
  line-height: 1.35;
}
.mini-sheet.files {
  transform: rotate(3deg);
}
.tiny-label {
  text-transform: uppercase;
  letter-spacing: 0.07em;
  font-size: 10px;
  font-weight: 600;
  color: #656972;
}
.fake-line {
  height: 5px;
  background: #e9eaed;
  width: 80%;
  display: block;
}
.fake-line.short {
  width: 55%;
}
.mini-sheet .indented {
  margin-left: 20px;
  color: var(--ink);
}
.tick {
  font-style: normal;
  color: #527b20;
}
.old-value,
.new-value {
  display: block;
  background: #fff;
  box-shadow: 0 4px 12px #00000008;
  padding: 9px 24px;
  font-size: 14px;
  line-height: 1.3;
}
.old-value {
  color: #67696f;
  transform: translateX(-20px) rotate(-3deg);
}
.new-value {
  color: var(--blue);
  font-weight: 650;
  transform: translateX(20px) rotate(2deg);
}
.change-arrow {
  font-size: 24px;
  margin: 2px;
}
.sample-section {
  padding-block: 80px;
  background: var(--lavender);
}
body[data-product='read-steward'] .sample-section {
  background: #f0f6e8;
}
body[data-product='download-steward'] .sample-section {
  background: #edf3fc;
}
.sample-intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: end;
  margin-bottom: 38px;
}
.sample-intro h2 {
  margin-bottom: 0;
}
.sample-intro > .p,
.sample-intro > p {
  max-width: 435px;
  font-size: 17px;
  padding-bottom: 3px;
}
.sample-intro .eyebrow {
  margin-bottom: 17px;
}
.example {
  border: 1px solid #e1dce8;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 12px 30px #39285507;
  overflow: hidden;
}
.example-title {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 22px 26px;
  border-bottom: 1px solid var(--line);
  font-size: 14px;
}
.example-title > .muted {
  margin-left: auto;
  font-size: 12px;
}
.dot {
  width: 9px;
  height: 9px;
  background: var(--blue);
  border-radius: 2px;
  flex: none;
}
.example-toolbar {
  padding: 17px 26px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}
.example-toolbar label {
  font-size: 12px;
  color: var(--muted);
  display: flex;
  align-items: center;
  gap: 12px;
}
select,
input[type='text'],
input:not([type]) {
  border: 1px solid #b9bec7;
  background: #fff;
  border-radius: 5px;
  font-size: 13px;
  padding: 8px 10px;
  color: var(--ink);
  min-height: 39px;
  max-width: 100%;
}
.badge {
  display: inline-flex;
  padding: 4px 9px;
  border-radius: 4px;
  background: #f1f3f6;
  color: #4d535c;
  font-size: 11px;
  white-space: nowrap;
  font-weight: 500;
}
.badge.warning {
  background: #fff2d4;
  color: #805509;
}
.badge.success {
  background: #eaf4de;
  color: #395719;
}
.table-scroll {
  overflow-x: auto;
  padding-inline: 26px;
}
table {
  width: 100%;
  border-collapse: collapse;
  font-size: 12px;
  text-align: left;
  white-space: nowrap;
}
th {
  font-size: 10px;
  letter-spacing: 0.025em;
  color: #666c75;
  font-weight: 600;
  padding: 12px 13px;
  border-block: 1px solid var(--line);
  background: #fafbfc;
}
td {
  padding: 15px 13px;
  border-bottom: 1px solid #eef0f3;
}
td:first-child {
  color: var(--blue);
  font-weight: 550;
}
tr:last-child td {
  border-bottom: none;
}
.example-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 22px 26px;
  border-top: 1px solid var(--line);
  font-size: 11px;
  color: var(--muted);
  flex-wrap: wrap;
}
.text-link {
  color: var(--blue);
  font-size: 13px;
  font-weight: 600;
  background: none;
  border: 0;
  padding: 0;
  text-align: left;
  display: inline-flex;
  gap: 9px;
  align-items: center;
  line-height: 1.5;
}
.text-link:hover {
  text-decoration: underline;
}
.sample-disclaimer {
  font-size: 11px;
  text-align: center;
  margin-top: 20px;
  color: #66636f;
}
.example-footnote {
  font-size: 11px;
  padding: 0 26px 20px;
}
.detail-columns {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 35px;
}
.detail-columns article {
  border-top: 2px solid var(--blue);
  padding-top: 24px;
}
.detail-columns h3 {
  font-size: 23px;
  max-width: 280px;
}
.detail-columns p {
  font-size: 14px;
  line-height: 1.75;
}
.fit-note {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 65px;
  border: 1px solid var(--line);
  border-radius: 7px;
  padding: 28px 32px;
  margin-top: 50px;
}
.fit-note p {
  font-size: 13px;
  line-height: 1.75;
  margin-top: 9px;
}
.faq {
  border-top: 1px solid var(--line);
  display: grid;
  grid-template-columns: 1fr 1.65fr;
  gap: 70px;
  padding-top: 65px;
}
.faq > div > p:not(.eyebrow) {
  font-size: 14px;
}
.faq details {
  border-top: 1px solid var(--line);
}
.faq details:last-child {
  border-bottom: 1px solid var(--line);
}
.faq summary {
  padding: 22px 0;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
  list-style: none;
  line-height: 1.5;
}
.faq summary::-webkit-details-marker {
  display: none;
}
.faq summary > span {
  color: var(--blue);
  flex: none;
  font-size: 17px;
  font-weight: 400;
}
.faq details[open] summary > span {
  transform: rotate(45deg);
}
.faq details p {
  font-size: 14px;
  padding: 0 25px 24px 0;
  line-height: 1.8;
}
.closing {
  padding-block: 70px;
  text-align: center;
  background: #edf3ff;
  border-block: 1px solid #dbe7fc;
}
.closing h2 {
  font-size: 44px;
  margin-bottom: 20px;
}
.closing p {
  font-size: 15px;
  margin-bottom: 25px;
}
.site-footer {
  padding-block: 32px;
}
.site-footer > div {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 11px;
  color: var(--muted);
  padding-bottom: 25px;
}
.site-footer > div:first-child {
  border-bottom: 1px solid var(--line);
  margin-bottom: 25px;
}
.site-footer > div:first-child > a:last-child {
  margin-left: auto;
}
.footer-brand {
  font-size: 18px;
  color: var(--ink);
  font-weight: 700;
  letter-spacing: -0.035em;
}
.site-footer > div > p:last-child {
  margin-left: auto;
}
.legal-line {
  font-size: 10px;
  color: #747780;
}
.replace-controls {
  display: flex;
  align-items: end;
  gap: 15px;
  padding: 22px 26px;
  border-bottom: 1px solid var(--line);
}
.replace-controls label {
  display: flex;
  flex: 1;
  flex-direction: column;
  gap: 7px;
  font-size: 11px;
  color: var(--muted);
  min-width: 0;
}
.replace-controls > span {
  align-self: center;
  padding-top: 22px;
}
.replace-controls input {
  width: 100%;
}
.page-results {
  padding: 0 26px;
}
.page-results article {
  padding: 20px 0;
  border-bottom: 1px solid #eef0f3;
}
.page-results article:last-child {
  border: 0;
}
.page-results article > div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
  font-size: 13px;
}
.page-results p {
  font-size: 13px;
  margin-top: 10px;
}
.page-results del {
  background: #f3eafa;
  text-decoration: none;
  color: #72607d;
  padding: 2px 3px;
}
.page-results ins {
  background: #e9f4df;
  text-decoration: none;
  color: #395719;
  padding: 2px 3px;
  margin-left: 5px;
}
.revision-rule {
  padding: 20px 26px;
  border-top: 1px solid var(--line);
}
.revision-rule p {
  font-size: 13px;
  margin-top: 14px;
  max-width: 800px;
}
.outline-tools {
  padding: 20px 26px;
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.outline-comparison {
  display: grid;
  grid-template-columns: 1fr 1fr;
  padding: 0 26px 28px;
  gap: 28px;
}
.outline-comparison > div {
  border: 1px solid var(--line);
  padding: 25px;
  background: #fafbfc;
  border-radius: 5px;
}
.outline-comparison > div:last-child {
  background: #fff;
}
.outline-comparison h3 {
  font-size: 12px;
  letter-spacing: 0;
  font-weight: 500;
  color: #6d7179;
  border-bottom: 1px solid var(--line);
  padding-bottom: 15px;
}
.outline {
  list-style: none;
  margin: 0;
  padding: 0;
}
.outline li {
  font-size: 17px;
  font-weight: 550;
  line-height: 1.6;
  padding: 7px 0;
  display: flex;
  gap: 10px;
}
.outline li.sub {
  padding-left: 26px;
  font-size: 14px;
  font-weight: 400;
}
.outline .number {
  color: var(--blue);
  font-variant-numeric: tabular-nums;
}
.file-list {
  padding: 0 26px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  column-gap: 32px;
}
.file-row {
  display: flex;
  align-items: center;
  gap: 12px;
  border-bottom: 1px solid var(--line);
  padding: 17px 0;
  cursor: pointer;
}
.file-row input {
  accent-color: var(--blue);
  width: 16px;
  height: 16px;
  flex: none;
}
.file-symbol {
  border: 1px solid #dae2f0;
  color: var(--blue);
  font-size: 8px;
  letter-spacing: 0.02em;
  padding: 11px 4px;
  background: #f5f8ff;
  flex: none;
}
.file-row strong {
  display: block;
  font-size: 12px;
  font-weight: 550;
  overflow-wrap: anywhere;
}
.file-row small {
  font-size: 10px;
  color: var(--muted);
}
.file-row > .file-tick {
  font-size: 13px;
  color: #527b20;
  margin-left: auto;
}
.file-row:has(input:not(:checked)) .file-tick {
  visibility: hidden;
}
.file-row:has(input:not(:checked)) .file-symbol {
  opacity: 0.4;
}
[aria-disabled='true'] {
  pointer-events: none;
  opacity: 0.45;
}
.family-intro {
  padding-block: 85px 65px;
  max-width: 810px;
}
.family-intro h1 {
  font-size: 64px;
}
.family-intro .lead {
  max-width: 600px;
}
.family-list {
  border-top: 1px solid var(--line);
}
.family-row {
  display: grid;
  grid-template-columns: 55px 1fr 370px;
  gap: 28px;
  align-items: center;
  padding: 35px 0;
  border-bottom: 1px solid var(--line);
}
.family-number {
  font-size: 13px;
  color: #777d86;
  align-self: start;
  padding-top: 21px;
}
.family-row h2 {
  font-size: 38px;
  margin-bottom: 15px;
}
.family-row .eyebrow {
  margin-bottom: 15px;
}
.family-row p:not(.eyebrow) {
  max-width: 500px;
  font-size: 15px;
}
.family-row .text-link {
  margin-top: 23px;
}
.family-row img {
  transition: transform 0.2s;
}
.family-row:hover img {
  transform: translateY(-4px);
}
.family-row:hover .text-link {
  text-decoration: underline;
}
.existing-family {
  padding-block: 75px;
}
.existing-family h2 {
  font-size: 34px;
}
.existing-family > div {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}
.existing-family a {
  border: 1px solid var(--line);
  border-radius: 7px;
  padding: 25px;
  font-size: 22px;
  letter-spacing: -0.035em;
  font-weight: 650;
}
.existing-family a > span {
  display: block;
  color: var(--muted);
  font-size: 13px;
  letter-spacing: 0;
  font-weight: 400;
  margin-top: 8px;
}
.skip-link {
  visibility: hidden;
}
.skip-link:focus {
  visibility: visible;
}
@media (min-width: 1600px) {
  .hero-image {
    max-width: 115%;
    width: 115%;
  }
  .hero {
    gap: 35px;
  }
}
@media (max-width: 1100px) {
  .site-header {
    padding-inline: 32px;
  }
  .site-header nav {
    gap: 22px;
  }
  .container {
    width: calc(100% - 64px);
  }
  h1 {
    font-size: 50px;
  }
  .hero {
    min-height: 560px;
    padding-top: 58px;
    padding-bottom: 55px;
  }
  .hero .actions {
    gap: 9px;
  }
  .hero .button {
    padding: 12px 17px;
    font-size: 12px;
  }
  .hero-image {
    width: 104%;
    max-width: 104%;
    margin-left: 0;
  }
  .steps {
    gap: 20px;
  }
  .step-art {
    height: 185px;
    padding: 18px;
  }
  .mini-sheet {
    padding: 18px 15px;
  }
  .mini-sheet strong {
    font-size: 12px;
  }
  .detail-columns {
    gap: 28px;
  }
  .family-row {
    grid-template-columns: 36px 1fr 280px;
    gap: 20px;
  }
  .family-intro h1 {
    font-size: 56px;
  }
}
@media (max-width: 800px) {
  .site-header {
    flex-wrap: wrap;
    padding: 17px 24px;
    min-height: 78px;
  }
  .brand strong {
    font-size: 21px;
  }
  .brand-mark {
    width: 35px;
    height: 35px;
  }
  .menu-button {
    display: inline-flex;
    gap: 9px;
    align-items: center;
    font-size: 12px;
  }
  .site-header nav {
    display: none;
    width: 100%;
    padding-top: 15px;
    border-top: 1px solid var(--line);
    flex-wrap: wrap;
    gap: 18px;
    justify-content: center;
  }
  .site-header nav.open {
    display: flex;
  }
  .site-header nav .button {
    margin-left: auto;
  }
  .container {
    width: calc(100% - 48px);
  }
  h1 {
    font-size: 48px;
  }
  .hero {
    grid-template-columns: 1fr;
    gap: 10px;
    padding-top: 50px;
    padding-bottom: 34px;
  }
  .hero-copy {
    max-width: 620px;
  }
  .hero-image {
    width: 90%;
    max-width: 550px;
    justify-self: center;
    margin: 10px 0 0;
  }
  .hero .lead {
    max-width: 570px;
  }
  .hero .button {
    font-size: 13px;
    padding: 13px 22px;
  }
  .essentials {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
    font-size: 11px;
  }
  .section {
    padding-block: 62px;
  }
  .steps {
    gap: 20px;
  }
  .step-art {
    height: 155px;
    padding: 12px;
  }
  .mini-sheet {
    padding: 14px 11px;
    min-height: 105px;
    gap: 9px;
  }
  .mini-sheet strong {
    font-size: 10px;
  }
  .mini-sheet span {
    font-size: 9px;
  }
  .step h3 {
    font-size: 21px;
  }
  .step p {
    font-size: 13px;
  }
  .old-value,
  .new-value {
    font-size: 11px;
    padding: 8px 11px;
  }
  .old-value {
    transform: translateX(-5px) rotate(-3deg);
  }
  .new-value {
    transform: translateX(5px) rotate(2deg);
  }
  .sample-section {
    padding-block: 60px;
  }
  .sample-intro {
    gap: 30px;
    grid-template-columns: 1fr 1fr;
  }
  .sample-intro > p {
    font-size: 14px;
  }
  .detail-columns {
    gap: 22px;
  }
  .detail-columns h3 {
    font-size: 21px;
  }
  .detail-columns p {
    font-size: 13px;
  }
  .fit-note {
    gap: 30px;
    padding: 25px;
  }
  .faq {
    grid-template-columns: 1fr 1.6fr;
    gap: 35px;
  }
  .family-row {
    grid-template-columns: 30px 1fr 220px;
  }
  .family-row h2 {
    font-size: 30px;
  }
  .family-row p:not(.eyebrow) {
    font-size: 13px;
  }
  .family-row .eyebrow {
    font-size: 10px;
  }
  .family-intro h1 {
    font-size: 50px;
  }
}
@media (max-width: 600px) {
  .container {
    width: calc(100% - 40px);
  }
  .site-header {
    padding-inline: 20px;
    gap: 16px;
  }
  .site-header > .muted {
    font-size: 10px;
  }
  .site-header nav .button {
    margin-left: 0;
  }
  .site-header nav {
    gap: 20px;
    font-size: 12px;
  }
  .brand strong {
    font-size: 20px;
  }
  .hero {
    padding-top: 40px;
    gap: 8px;
  }
  .hero .eyebrow {
    font-size: 10px;
    margin-bottom: 20px;
    gap: 7px;
  }
  .hero h1 {
    font-size: 43px;
    letter-spacing: -0.035em;
    line-height: 1.04;
    margin-bottom: 21px;
  }
  .hero .lead {
    font-size: 16px;
    line-height: 1.65;
    margin-bottom: 23px;
  }
  .hero .actions {
    gap: 10px;
  }
  .hero .button {
    padding: 12px 15px;
    font-size: 12px;
    gap: 8px;
  }
  .preview-note {
    font-size: 10px;
    margin-top: 16px;
    max-width: 340px;
  }
  .hero-image {
    width: 100%;
    margin-top: 6px;
  }
  .essentials {
    padding-block: 22px;
    gap: 17px 10px;
    font-size: 10px;
  }
  .essentials > span {
    max-width: 120px;
  }
  .essentials strong {
    gap: 7px;
  }
  .section {
    padding-block: 50px;
  }
  h2 {
    font-size: 34px;
    line-height: 1.1;
    letter-spacing: -0.035em;
  }
  .section-heading {
    margin-bottom: 28px;
  }
  .section-heading > p {
    font-size: 14px;
  }
  .steps {
    grid-template-columns: 1fr;
    gap: 35px;
  }
  .step-art {
    height: 205px;
    max-width: 100%;
    padding: 23px;
    margin-bottom: 17px;
  }
  .mini-sheet {
    max-width: 290px;
    padding: 22px 25px;
    min-height: 143px;
    gap: 13px;
  }
  .mini-sheet strong {
    font-size: 15px;
  }
  .mini-sheet span {
    font-size: 11px;
  }
  .mini-sheet .tiny-label {
    font-size: 9px;
  }
  .step h3 {
    font-size: 25px;
    max-width: none;
  }
  .step p {
    font-size: 14px;
  }
  .step-number {
    display: inline-block;
    font-size: 10px;
    margin-bottom: 8px;
  }
  .old-value,
  .new-value {
    font-size: 15px;
    padding: 10px 24px;
  }
  .old-value {
    transform: translateX(-25px) rotate(-3deg);
  }
  .new-value {
    transform: translateX(25px) rotate(2deg);
  }
  .sample-section {
    padding-block: 48px;
  }
  .sample-intro {
    grid-template-columns: 1fr;
    gap: 20px;
    margin-bottom: 28px;
  }
  .sample-intro h2 {
    font-size: 33px;
  }
  .sample-intro > p {
    font-size: 14px;
    max-width: 360px;
  }
  .sample-intro .eyebrow {
    font-size: 11px;
    margin-bottom: 17px;
  }
  .example-title {
    padding: 17px 15px;
    gap: 8px;
    font-size: 12px;
    flex-wrap: wrap;
  }
  .example-title > .muted {
    font-size: 10px;
    width: 100%;
    margin-left: 17px;
  }
  .example-toolbar {
    padding: 14px 15px;
    gap: 10px;
  }
  .example-toolbar label {
    font-size: 10px;
    gap: 8px;
    flex-wrap: wrap;
  }
  select {
    font-size: 12px;
    max-width: 150px;
    padding: 8px;
  }
  .badge {
    font-size: 9px;
    padding: 3px 6px;
  }
  .table-scroll {
    padding-inline: 10px;
  }
  table {
    font-size: 11px;
  }
  th {
    font-size: 9px;
    padding: 10px;
  }
  td {
    padding: 12px 10px;
  }
  .example-bottom {
    padding: 17px 15px;
    gap: 15px;
    align-items: flex-start;
    flex-direction: column;
    font-size: 10px;
  }
  .example-bottom .actions {
    gap: 9px;
  }
  .example .button.small {
    font-size: 10px;
    padding: 9px 13px;
    min-height: 36px;
  }
  .text-link {
    font-size: 12px;
  }
  .sample-disclaimer {
    font-size: 10px;
    line-height: 1.7;
    margin-top: 17px;
  }
  .detail-columns {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .detail-columns article {
    padding-top: 20px;
  }
  .detail-columns h3 {
    font-size: 24px;
    max-width: 100%;
  }
  .detail-columns p {
    font-size: 14px;
  }
  .fit-note {
    grid-template-columns: 1fr;
    gap: 25px;
    padding: 22px;
    margin-top: 32px;
  }
  .faq {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .faq h2 {
    font-size: 34px;
  }
  .faq > div > p:not(.eyebrow) {
    font-size: 13px;
  }
  .faq summary {
    font-size: 13px;
    padding-block: 20px;
  }
  .faq details p {
    font-size: 13px;
    padding-right: 0;
  }
  .closing {
    padding-block: 48px;
  }
  .closing h2 {
    font-size: 34px;
  }
  .closing p {
    font-size: 13px;
    max-width: 320px;
    margin-inline: auto;
  }
  .site-footer {
    padding-block: 28px;
  }
  .site-footer > div {
    font-size: 10px;
    flex-wrap: wrap;
  }
  .site-footer > div:first-child > a:last-child {
    margin-left: 0;
    width: 100%;
    padding-top: 5px;
  }
  .footer-brand {
    font-size: 17px;
  }
  .site-footer > div > p:last-child {
    margin-left: 0;
  }
  .legal-line {
    font-size: 9px;
  }
  .replace-controls {
    padding: 17px 15px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 13px;
  }
  .replace-controls > span {
    display: none;
  }
  .replace-controls label {
    font-size: 10px;
  }
  .replace-controls input {
    font-size: 12px;
    min-width: 0;
    padding: 8px;
  }
  .replace-controls button {
    grid-column: 1/-1;
    justify-self: start;
  }
  .page-results {
    padding-inline: 15px;
  }
  .page-results article > div {
    font-size: 12px;
    gap: 8px;
  }
  .page-results p {
    font-size: 12px;
  }
  .revision-rule {
    padding: 17px 15px;
  }
  .revision-rule p {
    font-size: 12px;
  }
  .outline-tools {
    padding: 17px 15px;
    gap: 8px;
  }
  .outline-comparison {
    padding: 0 15px 20px;
    gap: 12px;
    grid-template-columns: 1fr;
  }
  .outline-comparison > div {
    padding: 18px;
  }
  .outline li {
    font-size: 15px;
  }
  .outline li.sub {
    font-size: 13px;
  }
  .file-list {
    grid-template-columns: 1fr;
    padding-inline: 15px;
  }
  .file-row {
    padding-block: 15px;
    gap: 10px;
  }
  .file-row strong {
    font-size: 11px;
  }
  .file-row small {
    font-size: 9px;
  }
  .example-footnote {
    font-size: 10px;
    padding-inline: 15px;
  }
  .family-intro {
    padding-block: 50px 35px;
  }
  .family-intro h1 {
    font-size: 43px;
  }
  .family-intro .lead {
    font-size: 16px;
  }
  .family-row {
    grid-template-columns: 24px 1fr;
    gap: 15px;
    padding-block: 30px;
  }
  .family-row img {
    grid-column: 2;
    max-width: 310px;
    justify-self: center;
  }
  .family-row h2 {
    font-size: 32px;
  }
  .family-row p:not(.eyebrow) {
    font-size: 14px;
  }
  .family-number {
    padding-top: 4px;
    font-size: 11px;
  }
  .family-row .eyebrow {
    font-size: 10px;
  }
  .family-row .text-link {
    margin-top: 17px;
  }
  .existing-family {
    padding-block: 45px;
  }
  .existing-family > div {
    grid-template-columns: 1fr;
    gap: 15px;
  }
  .existing-family h2 {
    font-size: 30px;
  }
  .existing-family a {
    font-size: 22px;
    padding: 22px;
  }
  .existing-family a > span {
    font-size: 12px;
  }
}
@media (max-width: 360px) {
  .container {
    width: calc(100% - 32px);
  }
  .site-header {
    padding-inline: 16px;
  }
  .brand strong {
    font-size: 18px;
  }
  .brand-mark {
    width: 32px;
    height: 32px;
  }
  .brand {
    gap: 9px;
  }
  .hero h1 {
    font-size: 37px;
  }
  .hero .actions {
    align-items: stretch;
  }
  .hero .button {
    font-size: 11px;
    padding: 11px 13px;
  }
  .essentials {
    font-size: 9px;
  }
  .family-intro h1 {
    font-size: 37px;
  }
  h2,
  .sample-intro h2 {
    font-size: 30px;
  }
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    transition: none !important;
    animation: none !important;
  }
}

/* Product documentation shares the landing page typography and navigation. */
.site-footer .resource-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 25px;
  margin: 0 0 24px;
  font-size: 13px;
}
.resource-links a:hover,
.prose a:hover {
  text-decoration: underline;
}
.sample-downloads {
  display: flex;
  gap: 12px 24px;
  flex-wrap: wrap;
}
.document {
  display: grid;
  grid-template-columns: 180px minmax(0, 1fr);
  gap: 56px;
  padding-block: 52px 90px;
}
.doc-nav {
  display: flex;
  flex-direction: column;
  gap: 4px;
  align-self: start;
  position: sticky;
  top: 28px;
  font-size: 14px;
}
.doc-nav a {
  padding: 8px 10px;
  border-radius: 6px;
}
.doc-nav a[aria-current] {
  background: #e7f0ff;
  color: #1254b4;
  font-weight: 650;
}
.prose {
  max-width: 76ch;
  min-width: 0;
}
.prose h1 {
  font-size: clamp(34px, 4vw, 52px);
  line-height: 1.12;
  margin-bottom: 24px;
}
.prose h2 {
  font-size: 27px;
  line-height: 1.25;
  margin: 44px 0 14px;
}
.prose p {
  margin: 0 0 18px;
  line-height: 1.8;
}
.prose a {
  color: var(--blue-dark);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.prose .button {
  color: white;
  text-decoration: none;
}
.prose .button.secondary {
  color: var(--ink);
}
.prose .actions {
  margin-block: 26px;
}
.doc-intro {
  font-size: 20px;
  line-height: 1.6;
}
.breadcrumbs {
  font-size: 12px;
  color: var(--muted);
  margin-bottom: 24px;
}
.notice {
  background: #f2f6fc;
  border: 1px solid #d9e3f1;
  border-radius: 8px;
  padding: 18px 20px;
  font-size: 14px;
}
.contents {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 20px;
  padding-block: 15px 24px;
  border-bottom: 1px solid var(--line);
  font-size: 14px;
}
.prose ul {
  padding-left: 22px;
  color: var(--muted);
  line-height: 1.8;
}
.prose li + li {
  margin-top: 8px;
}
.prose code {
  font-size: 0.86em;
  overflow-wrap: anywhere;
}
.doc-table {
  overflow: auto;
  margin-block: 24px;
}
.doc-table table {
  font-size: 14px;
  white-space: normal;
  min-width: 360px;
}
.doc-table th {
  font-size: 13px;
}
.doc-table td {
  vertical-align: top;
}
.doc-table td:first-child {
  min-width: 125px;
  font-weight: 600;
  color: var(--ink);
}
.definition-list {
  display: grid;
  grid-template-columns: 150px 1fr;
  gap: 14px 24px;
  font-size: 14px;
}
.definition-list dt {
  font-weight: 650;
}
.definition-list dd {
  margin: 0;
  color: var(--muted);
}
.share-gallery {
  display: grid;
  gap: 30px;
  margin-block: 28px;
}
.share-gallery figure {
  margin: 0;
}
.share-gallery img {
  display: block;
  border: 1px solid var(--line);
  border-radius: 8px;
}
.share-gallery figcaption {
  margin-top: 10px;
  font-size: 14px;
}
.prose > p:last-child {
  margin-bottom: 0;
}
.menu-button svg {
  display: block;
}
.table-scroll td:nth-last-child(-n + 2) {
  background: #f7faff;
}
.example-bottom .sample-downloads a {
  min-height: 30px;
}
.site-footer .legal-line {
  max-width: 100%;
  font-size: 11px;
}
.faq-list a {
  text-decoration: underline;
  color: var(--blue-dark);
}
@media (max-width: 800px) {
  .document {
    grid-template-columns: 1fr;
    gap: 32px;
    padding-top: 30px;
  }
  .doc-nav {
    flex-direction: row;
    flex-wrap: wrap;
    position: static;
    border-bottom: 1px solid var(--line);
    padding-bottom: 20px;
    gap: 3px;
    font-size: 13px;
  }
  .doc-nav a {
    padding: 7px 9px;
  }
  .prose {
    max-width: none;
  }
  .prose h1 {
    font-size: 38px;
  }
  .prose h2 {
    font-size: 25px;
    margin-top: 36px;
  }
  .doc-intro {
    font-size: 18px;
  }
  .definition-list {
    grid-template-columns: 125px 1fr;
    gap: 14px 18px;
  }
  .site-footer .resource-links {
    gap: 12px 20px;
  }
  .site-header nav {
    justify-content: flex-start;
  }
}
@media (max-width: 420px) {
  .definition-list {
    grid-template-columns: 1fr;
    gap: 5px;
  }
  .definition-list dd {
    margin-bottom: 13px;
  }
  .prose h1 {
    font-size: 32px;
  }
  .doc-nav {
    font-size: 12px;
  }
  .breadcrumbs {
    line-height: 1.7;
  }
  .notice {
    padding: 15px;
  }
  .table-scroll td {
    white-space: normal;
    min-width: 100px;
  }
  .table-scroll td:nth-child(2) {
    min-width: 180px;
  }
}

@media (max-width: 800px) {
  html:not(.js) .menu-button {
    display: none;
  }
  html:not(.js) .site-header {
    flex-wrap: wrap;
  }
  html:not(.js) .site-header nav {
    display: flex;
    position: static;
    width: 100%;
    flex-wrap: wrap;
  }
}

.essentials {
  justify-content: flex-start;
  gap: 40px;
}
@media (max-width: 540px) {
  .essentials {
    display: flex;
    flex-wrap: wrap;
    gap: 16px 24px;
  }
}

.pricing-section {
  padding-block: 64px;
  border-top: 1px solid var(--line);
}
.pricing-section > p,
.pricing-rates > p {
  max-width: 780px;
}
.pricing-rates {
  margin-block: 24px;
}
.pricing-rates summary {
  cursor: pointer;
  color: var(--blue);
  font-weight: 600;
  padding-block: 12px;
}
.pricing-rates caption {
  text-align: left;
  margin-bottom: 12px;
  color: var(--muted);
}
.pricing-rates tbody th {
  color: var(--ink);
  font-weight: 500;
}
.pricing-note {
  font-size: 14px;
  color: var(--muted);
}
