:root {
  --paper: #ffffff;
  --surface: #ffffff;
  --ink: #25282a;
  --muted: #62686b;
  --forest: #2c2f31;
  --green: #c84420;
  --green-soft: #fff0e9;
  --amber: #ff6633;
  --amber-soft: #fff4ef;
  --line: #e3e5e7;
  --line-dark: #b7bcc0;
  --white: #ffffff;
  --shadow-sm: 0 8px 24px rgba(48, 39, 35, 0.06);
  --shadow: 0 14px 36px rgba(48, 39, 35, 0.08);
  --radius-sm: 0.55rem;
  --radius: 1rem;
  --radius-lg: 1.45rem;
  --radius-icon: 0.8rem;
  --content: 68rem;
  --reading: 47rem;
  --container-gap: 2rem;
  --section-space: clamp(1.9rem, 4vw, 3rem);
  --yoy-orange: #ff6738;
  --yoy-orange-dark: #c84420;
  --yoy-orange-hover: #9f3418;
  --yoy-gray: #f1f2f4;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

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

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 1rem;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
}

body,
main {
  min-width: 0;
}

img,
svg {
  display: block;
  max-width: 100%;
}

a {
  color: var(--green);
  text-underline-offset: 0.2em;
  text-decoration-thickness: 0.08em;
}

a:hover {
  color: var(--yoy-orange-hover);
}

a:focus-visible,
button:focus-visible,
input:focus-visible {
  outline: 3px solid var(--yoy-orange-dark);
  outline-offset: 3px;
}

h1,
h2,
h3 {
  margin: 0;
  color: var(--ink);
  font-family: inherit;
  font-weight: 700;
  line-height: 1.12;
  text-wrap: balance;
  overflow-wrap: anywhere;
}

h1 {
  max-width: 18ch;
  font-size: clamp(2.1rem, 6vw, 4.1rem);
  letter-spacing: -0.04em;
}

h2 {
  font-size: clamp(1.42rem, 2.6vw, 2.05rem);
  font-weight: 750;
  letter-spacing: -0.02em;
}

h3 {
  font-size: 1.06rem;
}

p,
ul,
ol,
blockquote {
  margin-top: 0;
}

p:last-child,
ul:last-child,
ol:last-child {
  margin-bottom: 0;
}

.container {
  width: min(calc(100% - var(--container-gap)), var(--content));
  margin-inline: auto;
}

.reading {
  width: min(100%, var(--reading));
}

/* Keep every page section on the shared outer grid. Legal and policy pages
   retain a comfortable reading measure without shifting the section itself. */
.container.reading {
  width: min(calc(100% - var(--container-gap)), var(--content));
}

.container.reading > * {
  width: min(100%, var(--reading));
}

.skip-link {
  position: fixed;
  z-index: 100;
  top: 0.75rem;
  left: 0.75rem;
  padding: 0.65rem 0.9rem;
  transform: translateY(-160%);
  border-radius: var(--radius-sm);
  background: var(--white);
  color: var(--forest);
  font-weight: 800;
}

.skip-link:focus {
  transform: translateY(0);
}

.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;
}

.home-search-header {
  position: relative;
  z-index: 10;
  border-bottom: 1px solid var(--line);
  background: var(--white);
  box-shadow: var(--shadow-sm);
}

.home-search-row {
  display: grid;
  grid-template-columns: auto minmax(20rem, 1fr) auto;
  gap: 1rem;
  align-items: center;
  min-height: 5.8rem;
  padding-block: 1rem;
}

.home-search-row > * {
  min-width: 0;
}

.home-logo {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  color: var(--yoy-orange);
  line-height: 1;
  text-decoration: none;
}

.home-logo:hover {
  color: var(--yoy-orange-dark);
}

.home-logo-bag {
  display: grid;
  width: 3.25rem;
  height: 3.25rem;
  flex: 0 0 3.25rem;
  place-items: center;
  overflow: hidden;
  border-radius: var(--radius-icon);
}

.home-logo-bag img {
  width: 100%;
  height: 100%;
}

.home-logo-type {
  display: grid;
  gap: 0.2rem;
}

.home-logo-type strong {
  font-size: 1.2rem;
  letter-spacing: -0.035em;
}

.home-logo-type small {
  color: var(--muted);
  font-size: 0.6rem;
  font-weight: 800;
  letter-spacing: 0.16em;
}

.header-search {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  min-height: 3.55rem;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-icon);
  background: var(--yoy-gray);
}

.header-search:focus-within {
  border-color: var(--yoy-orange);
  box-shadow: 0 0 0 3px rgba(255, 103, 56, 0.15);
}

.header-search-icon {
  display: grid;
  width: 3.3rem;
  place-items: center;
  color: #70767d;
}

.header-search-icon svg {
  width: 1.45rem;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-width: 2;
}

.header-search input {
  width: 100%;
  min-width: 0;
  height: 3.35rem;
  padding: 0;
  border: 0;
  outline: 0;
  background: transparent;
  color: var(--ink);
  font: inherit;
}

.header-search input::placeholder {
  color: #696f73;
  opacity: 1;
}

.header-search button {
  align-self: stretch;
  padding: 0 1.15rem;
  border: 0;
  background: var(--yoy-orange-dark);
  color: var(--white);
  font: inherit;
  font-size: 0.84rem;
  font-weight: 850;
  cursor: pointer;
}

.header-search button:hover {
  background: var(--yoy-orange-hover);
}

.search-short {
  display: none;
}

.home-header-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.home-header-actions a {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  color: var(--ink);
  font-size: 0.82rem;
  font-weight: 750;
  text-decoration: none;
}

.home-header-actions a:hover {
  color: var(--yoy-orange-dark);
}

.home-header-actions svg {
  width: 1.25rem;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.home-nav {
  border-top: 1px solid var(--line);
  background: #fff;
}

.home-nav ul {
  display: flex;
  flex-wrap: wrap;
  gap: 0 1.35rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.home-nav a {
  display: inline-flex;
  min-height: 2.75rem;
  align-items: center;
  padding: 0.72rem 0;
  border-bottom: 2px solid transparent;
  color: var(--muted);
  font-size: 0.8rem;
  font-weight: 750;
  text-decoration: none;
}

.home-nav a:hover {
  border-bottom-color: var(--yoy-orange);
  color: var(--yoy-orange-dark);
}

.finds-hero {
  padding: clamp(2rem, 4vw, 3rem) 0 2rem;
  border-bottom: 1px solid var(--line);
  background: var(--white);
}

.finds-intro {
  max-width: 52rem;
  margin: 0 auto 1.25rem;
  text-align: center;
}

.finds-kicker {
  display: inline-block;
  margin-bottom: 0.6rem;
  color: var(--yoy-orange-dark);
  font-size: 0.76rem;
  font-weight: 850;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.finds-intro h1 {
  max-width: none;
  color: #222624;
  font-family: inherit;
  font-size: clamp(2.05rem, 5vw, 3.45rem);
  font-weight: 850;
  letter-spacing: -0.045em;
}

.finds-intro p {
  max-width: 44rem;
  margin: 0.8rem auto 0;
  color: var(--muted);
  font-size: 1.01rem;
}

.agent-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow);
}

.agent-card-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.9rem 1.3rem;
  border-bottom: 1px solid var(--line);
}

.agent-card-head strong {
  color: var(--ink);
  font-size: 0.96rem;
}

.agent-card-head a {
  color: var(--yoy-orange-dark);
  font-size: 0.82rem;
  font-weight: 750;
}

.agent-card-body {
  padding: 1.1rem 1.3rem;
}

.agent-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-bottom: 1rem;
}

.agent-tabs span,
.agent-tabs a {
  display: inline-flex;
  min-height: 2.65rem;
  align-items: center;
  padding: 0.6rem 1rem;
  border-radius: 0.65rem;
  font-size: 0.84rem;
  font-weight: 800;
  text-decoration: none;
}

.agent-tab-active {
  background: var(--yoy-orange-dark);
  color: var(--white);
}

.agent-tabs a {
  background: var(--yoy-gray);
  color: #3f4442;
}

.agent-tabs a:hover {
  background: #e6e7e9;
}

.agent-steps {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.9rem;
}

.agent-step {
  display: grid;
  grid-template-columns: 2rem minmax(0, 1fr);
  gap: 0.75rem;
  min-width: 0;
}

.agent-step-icon {
  display: grid;
  width: 2rem;
  height: 2rem;
  place-items: center;
  color: var(--yoy-orange);
}

.agent-step-icon svg {
  width: 1.65rem;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.agent-step-count {
  display: block;
  margin-bottom: 0.15rem;
  color: var(--yoy-orange-dark);
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.1em;
}

.agent-step h2 {
  margin-bottom: 0.35rem;
  font-family: inherit;
  font-size: 0.96rem;
  letter-spacing: -0.02em;
}

.agent-step p {
  color: var(--muted);
  font-size: 0.8rem;
  line-height: 1.55;
}

.agent-card-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 1rem;
  padding-top: 0.8rem;
  border-top: 1px solid #ececed;
}

.agent-card-foot p {
  color: var(--muted);
  font-size: 0.78rem;
}

.agent-actions {
  display: flex;
  flex: 0 0 auto;
  gap: 0.6rem;
}

.agent-actions a {
  display: inline-flex;
  min-height: 2.55rem;
  align-items: center;
  justify-content: center;
  padding: 0.6rem 0.85rem;
  border: 1px solid var(--yoy-orange);
  border-radius: 0.6rem;
  font-size: 0.78rem;
  font-weight: 800;
  text-decoration: none;
}

.agent-outline {
  color: var(--yoy-orange-dark);
}

.agent-solid {
  background: var(--yoy-orange-dark);
  color: var(--white);
}

.agent-solid:hover {
  background: var(--yoy-orange-hover);
  color: var(--white);
}

.home-trust-note {
  max-width: 62rem;
  margin: 0 auto 0.8rem;
  padding: 0.75rem 0.9rem;
  border-left: 3px solid var(--yoy-orange);
  background: var(--amber-soft);
  color: var(--muted);
  font-size: 0.78rem;
}

.site-header {
  border-bottom: 1px solid var(--line);
  background: var(--white);
  color: var(--ink);
  box-shadow: var(--shadow-sm);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
  min-height: 4.8rem;
  padding-block: 0.7rem;
}

.header-inner > *,
.grid-2 > *,
.grid-3 > *,
.article-layout > * {
  min-width: 0;
}

.brand {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  gap: 0.65rem;
  color: var(--yoy-orange);
  font-weight: 850;
  letter-spacing: -0.02em;
  text-decoration: none;
}

.brand:hover {
  color: var(--yoy-orange-dark);
}

.brand-mark {
  display: grid;
  width: 2.35rem;
  height: 2.35rem;
  place-items: center;
  flex: 0 0 2.35rem;
  border-radius: var(--radius-icon);
  overflow: hidden;
}

.brand-mark img {
  width: 100%;
  height: 100%;
}

.brand-type {
  display: grid;
  gap: 0.08rem;
  line-height: 1;
}

.brand-type strong {
  font-size: 0.98rem;
  letter-spacing: -0.025em;
}

.brand-type small {
  color: var(--muted);
  font-size: 0.51rem;
  font-weight: 800;
  letter-spacing: 0.14em;
}

.site-nav ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 0.25rem 0.8rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.site-nav {
  min-width: 0;
}

.site-nav a {
  display: inline-flex;
  min-height: 2.75rem;
  align-items: center;
  padding: 0.5rem 0.15rem;
  border-bottom: 2px solid transparent;
  color: var(--muted);
  font-size: 0.84rem;
  font-weight: 700;
  text-decoration: none;
}

.site-nav a:hover,
.site-nav a[aria-current="page"] {
  border-bottom-color: var(--yoy-orange);
  color: var(--yoy-orange-dark);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1rem;
  color: var(--green);
  font-size: 0.76rem;
  font-weight: 850;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 1.7rem;
  height: 2px;
  background: currentColor;
  content: "";
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.2rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.9rem;
  padding: 0.72rem 1rem;
  border: 1px solid var(--green);
  border-radius: 0.65rem;
  background: var(--green);
  color: var(--white);
  font-size: 0.9rem;
  font-weight: 800;
  line-height: 1.25;
  text-decoration: none;
  overflow-wrap: anywhere;
}

.button:hover {
  border-color: var(--yoy-orange-hover);
  background: var(--yoy-orange-hover);
  color: var(--white);
}

.button-primary {
  border-color: var(--yoy-orange-dark);
  background: var(--yoy-orange-dark);
  color: var(--white);
}

.button-primary:hover {
  border-color: var(--yoy-orange-hover);
  background: var(--yoy-orange-hover);
  color: var(--white);
}

.button-ghost {
  border-color: #e5a28c;
  background: var(--white);
  color: var(--yoy-orange-dark);
}

.button-ghost:hover {
  border-color: var(--yoy-orange-dark);
  background: var(--amber-soft);
  color: var(--yoy-orange-dark);
}

.external-note {
  margin-top: 0.85rem;
  color: var(--muted);
  font-size: 0.78rem;
}

.section-dark .external-note,
.closing-cta .external-note {
  color: var(--muted);
}

.page-hero {
  padding: clamp(1.9rem, 4vw, 2.8rem) 0 1.9rem;
  border-bottom: 1px solid var(--line);
  background: var(--white);
}

.page-hero h1 {
  max-width: 20ch;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
}

.page-intro {
  max-width: 43rem;
  margin-top: 0.8rem;
  color: var(--muted);
  font-size: 1.02rem;
}

.article-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem 1rem;
  margin: 0.8rem 0 0;
  color: var(--muted);
  font-size: 0.78rem;
}

.article-meta span,
.article-meta time,
.article-meta a {
  display: inline-flex;
  align-items: center;
}

.article-meta span + span::before,
.article-meta time + span::before,
.article-meta a::before {
  margin-right: 1rem;
  color: #c4c7c9;
  content: "•";
}

.article-meta a {
  color: var(--yoy-orange-dark);
  font-weight: 750;
}

.breadcrumbs {
  margin-bottom: 0.75rem;
  color: var(--muted);
  font-size: 0.78rem;
}

.breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.breadcrumbs li:not(:last-child)::after {
  margin-left: 0.35rem;
  color: var(--line-dark);
  content: "/";
}

.breadcrumbs a {
  display: inline-flex;
  min-height: 2.75rem;
  align-items: center;
  color: var(--green);
}

[id] {
  scroll-margin-top: 1rem;
}

.section {
  padding: var(--section-space) 0;
}

.section-surface {
  border-block: 1px solid var(--line);
  background: var(--surface);
}

.section-dark {
  border-block: 1px solid var(--line);
  background: var(--white);
  color: var(--ink);
}

.section-dark h2,
.section-dark h3 {
  color: var(--ink);
}

.section-dark .checklist li {
  color: var(--ink);
}

.section-heading {
  display: grid;
  gap: 0.6rem;
  max-width: 46rem;
  margin-bottom: 1.15rem;
}

.section-heading p {
  color: var(--muted);
}

.section-dark .section-heading p {
  color: var(--muted);
}

.quick-answer {
  position: relative;
  margin-top: -1.1rem;
  padding: 1.15rem 1.25rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: var(--shadow);
}

.quick-answer strong {
  display: block;
  margin-bottom: 0.35rem;
  color: var(--green);
  font-size: 0.76rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.quick-answer p {
  font-size: clamp(1rem, 1.8vw, 1.14rem);
  line-height: 1.55;
}

.grid-2,
.grid-3 {
  display: grid;
  gap: 0.85rem;
}

.card {
  padding: 1.05rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
}

.card h3 {
  margin-bottom: 0.55rem;
}

.card > h2 {
  font-size: 1.45rem;
}

.card p,
.card li {
  color: var(--muted);
  font-size: 0.94rem;
}

.card-link {
  display: inline-block;
  margin-top: 0.85rem;
  font-size: 0.88rem;
  font-weight: 800;
}

.category-card {
  display: flex;
  min-height: 100%;
  flex-direction: column;
  padding: 1.05rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  transition: border-color 160ms ease, transform 160ms ease;
}

.category-card:hover {
  border-color: var(--yoy-orange);
  transform: translateY(-2px);
}

.category-icon {
  display: grid;
  width: 2.65rem;
  height: 2.65rem;
  margin-bottom: 0.75rem;
  place-items: center;
  border-radius: var(--radius-icon);
  background: var(--amber-soft);
  color: var(--yoy-orange);
}

.category-icon svg {
  width: 1.65rem;
  height: 1.65rem;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.category-card p {
  margin-bottom: 0.65rem;
  color: var(--muted);
  font-size: 0.88rem;
}

.category-card .check-line {
  padding-top: 0.65rem;
  border-top: 1px dashed var(--line);
  color: var(--ink);
}

.category-card .card-link {
  margin-top: auto;
  padding-top: 0.7rem;
}

.product-directory {
  position: relative;
  overflow: hidden;
  border-block: 1px solid var(--line);
  background: var(--white);
}

.directory-heading {
  max-width: 48rem;
  margin: 0 auto clamp(1.05rem, 2vw, 1.45rem);
  text-align: center;
}

.directory-kicker {
  display: inline-block;
  margin-bottom: 0.55rem;
  color: var(--yoy-orange-dark);
  font-size: 0.76rem;
  font-weight: 850;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.directory-heading h2 {
  color: var(--ink);
  font-family: inherit;
  font-weight: 750;
  letter-spacing: -0.02em;
}

.directory-heading p {
  margin: 0.6rem auto 0;
  color: var(--muted);
}

.directory-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.7rem;
}

.directory-card {
  position: relative;
  display: grid;
  min-width: 0;
  min-height: 8.6rem;
  place-items: center;
  align-content: center;
  gap: 0.6rem;
  padding: 1rem 0.65rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: var(--shadow-sm);
  color: var(--ink);
  text-align: center;
  text-decoration: none;
  transition: border-color 160ms ease, box-shadow 160ms ease, transform 160ms ease;
}

.directory-card:hover {
  border-color: var(--yoy-orange);
  box-shadow: var(--shadow);
  color: var(--yoy-orange-dark);
  transform: translateY(-2px);
}

.directory-card:focus-visible {
  outline-color: var(--yoy-orange);
}

.directory-icon {
  display: grid;
  width: 3.4rem;
  height: 3.4rem;
  place-items: center;
  border-radius: var(--radius-icon);
  background: var(--amber-soft);
  box-shadow: inset 0 0 0 1px rgba(255, 102, 51, 0.08);
  color: var(--yoy-orange);
}

.directory-icon svg {
  width: 1.95rem;
  height: 1.95rem;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.directory-card strong {
  font-size: 0.96rem;
  line-height: 1.25;
}

.directory-arrow {
  position: absolute;
  top: 0.6rem;
  right: 0.7rem;
  color: #c1c5c3;
  font-size: 0.78rem;
  transition: color 160ms ease, transform 160ms ease;
}

.directory-card:hover .directory-arrow {
  color: var(--yoy-orange);
  transform: translate(2px, -2px);
}

.directory-note {
  max-width: 48rem;
  margin: 0.8rem auto 0;
  color: var(--muted);
  font-size: 0.8rem;
  text-align: center;
}

.directory-note a {
  color: var(--yoy-orange-dark);
  font-weight: 800;
}

.search-panel {
  display: grid;
  gap: 0.8rem;
  padding: clamp(1.2rem, 3vw, 1.8rem);
  border-radius: var(--radius-lg);
  border: 1px solid #ffcab8;
  background: linear-gradient(135deg, #c84420, #b93718);
  color: var(--white);
}

.search-panel h2,
.search-panel p {
  color: var(--white);
}

.search-form {
  display: grid;
  gap: 0.65rem;
}

.search-label {
  font-size: 0.8rem;
  font-weight: 800;
}

.search-controls {
  display: grid;
  gap: 0.6rem;
}

.search-controls input {
  width: 100%;
  min-height: 3rem;
  padding: 0.75rem 0.9rem;
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 0.65rem;
  background: var(--white);
  color: var(--ink);
  font: inherit;
}

.search-controls input::placeholder {
  color: #696f73;
  opacity: 1;
}

.search-controls button {
  min-height: 3rem;
  padding: 0.75rem 1rem;
  border-radius: 0.65rem;
  border: 1px solid rgba(255, 255, 255, 0.72);
  background: var(--white);
  color: var(--yoy-orange-dark);
  font: inherit;
  font-weight: 850;
  cursor: pointer;
}

.steps {
  display: grid;
  gap: 0.9rem;
  counter-reset: steps;
}

.step {
  position: relative;
  padding-left: 3.8rem;
  counter-increment: steps;
}

.step::before {
  position: absolute;
  top: 0;
  left: 0;
  display: grid;
  width: 2.7rem;
  height: 2.7rem;
  place-items: center;
  border-radius: 50%;
  background: var(--green-soft);
  color: var(--forest);
  content: counter(steps, decimal-leading-zero);
  font-family: inherit;
  font-weight: 900;
}

.step p {
  color: var(--muted);
}

.checklist {
  display: grid;
  gap: 0.55rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.checklist li {
  position: relative;
  padding: 0.65rem 0.75rem 0.65rem 2.45rem;
  border: 1px solid var(--line);
  border-radius: 0.7rem;
  background: var(--surface);
}

.checklist li::before {
  position: absolute;
  top: 0.78rem;
  left: 0.8rem;
  display: grid;
  width: 1.15rem;
  height: 1.15rem;
  place-items: center;
  border: 2px solid var(--green);
  border-radius: 0.25rem;
  color: var(--green);
  content: "";
}

.comparison {
  display: grid;
  gap: 0.85rem;
}

.comparison-card {
  padding: 1.1rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
}

.comparison-card.good {
  border-top: 4px solid var(--green);
}

.comparison-card.weak {
  border-top: 4px solid var(--amber);
}

.comparison-card ul {
  padding-left: 1.2rem;
  color: var(--muted);
}

.score-table {
  width: 100%;
  border-collapse: collapse;
  border: 1px solid var(--line);
  background: var(--surface);
  font-size: 0.92rem;
}

.score-table th,
.score-table td {
  padding: 0.8rem;
  border-bottom: 1px solid var(--line);
  text-align: left;
}

.score-table th {
  background: var(--green-soft);
  color: var(--forest);
}

.score-table + .callout {
  margin-top: 1rem;
}

.key-takeaways {
  display: grid;
  gap: 0.7rem;
  margin: 1.1rem 0;
}

.takeaway-card {
  padding: 0.9rem;
  border: 1px solid var(--line);
  border-radius: 0.85rem;
  background: var(--surface);
}

.takeaway-card strong {
  display: block;
  margin-bottom: 0.3rem;
  color: var(--forest);
}

.takeaway-card p {
  margin: 0;
  font-size: 0.9rem;
}

.numbered-method {
  display: grid;
  gap: 0.75rem;
  margin: 1.1rem 0;
  padding: 0 !important;
  counter-reset: method;
  list-style: none;
}

.numbered-method li {
  position: relative;
  min-height: 3.4rem;
  padding: 0.75rem 0.85rem 0.75rem 3.6rem;
  border: 1px solid var(--line);
  border-radius: 0.85rem;
  background: var(--surface);
  counter-increment: method;
}

.numbered-method li::before {
  position: absolute;
  top: 0.78rem;
  left: 0.8rem;
  display: grid;
  width: 2.15rem;
  height: 2.15rem;
  place-items: center;
  border-radius: 0.65rem;
  background: var(--green-soft);
  color: var(--forest);
  content: counter(method, decimal-leading-zero);
  font-weight: 900;
}

.table-scroll {
  max-width: 100%;
  margin: 1.1rem 0;
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: 0.9rem;
  background: var(--surface);
}

.table-scroll:focus-visible {
  outline: 3px solid var(--yoy-orange);
  outline-offset: 3px;
}

.guide-table {
  width: 100%;
  min-width: 38rem;
  border-collapse: collapse;
  font-size: 0.86rem;
}

.guide-table th,
.guide-table td {
  padding: 0.8rem;
  border-bottom: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
}

.guide-table th {
  background: var(--green-soft);
  color: var(--forest);
  font-size: 0.78rem;
  letter-spacing: 0.02em;
}

.guide-table tr:last-child td {
  border-bottom: 0;
}

.guide-table td:first-child {
  color: var(--ink);
  font-weight: 800;
}

.decision-note {
  margin: 1rem 0;
  padding: 0.9rem 1rem;
  border: 1px solid #ffd0c0;
  border-radius: 0.85rem;
  background: var(--amber-soft);
}

.decision-note strong {
  color: var(--forest);
}

.article-layout {
  display: grid;
  gap: 1.15rem;
}

.article-body {
  width: 100%;
  max-width: var(--reading);
}

.article-body > section + section {
  margin-top: 1.8rem;
  padding-top: 1.8rem;
  border-top: 1px solid var(--line);
}

.article-body h2 {
  margin-bottom: 0.75rem;
}

.article-body h3 {
  margin: 1.2rem 0 0.45rem;
}

.article-body p,
.article-body li {
  color: #484e51;
}

.reading > section + section,
.reading > h2:not(:first-child) {
  margin-top: 1.6rem;
}

.article-body ul,
.article-body ol {
  padding-left: 1.25rem;
}

.aside-nav {
  align-self: start;
  padding: 0.9rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
}

.aside-nav strong {
  display: block;
  margin-bottom: 0.55rem;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.aside-nav ul {
  display: grid;
  gap: 0.35rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.aside-nav a {
  font-size: 0.85rem;
}

.callout {
  padding: 1rem;
  border-left: 4px solid var(--amber);
  border-radius: 0 var(--radius) var(--radius) 0;
  background: var(--amber-soft);
}

.callout strong {
  color: var(--forest);
}

.link-directory {
  display: grid;
  gap: 0.65rem;
}

.link-directory a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.8rem 0;
  border-bottom: 1px solid var(--line);
  font-weight: 750;
  text-decoration: none;
}

.link-directory a::after {
  color: var(--amber);
  content: "→";
}

.faq-list {
  display: grid;
  gap: 0.8rem;
}

.faq-item {
  padding: 1.05rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
}

.faq-item h2 {
  margin-bottom: 0.55rem;
  font-family: inherit;
  font-size: 1rem;
  letter-spacing: 0;
}

.faq-item p {
  color: var(--muted);
}

.closing-cta {
  display: grid;
  gap: 1rem;
  align-items: center;
  padding: clamp(1.15rem, 3vw, 1.65rem);
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  background: var(--white);
  box-shadow: var(--shadow-sm);
  color: var(--ink);
}

.closing-cta h2 {
  color: var(--ink);
}

.site-footer {
  padding: 1.8rem 0 1.1rem;
  border-top: 1px solid var(--line);
  background: var(--white);
  color: var(--ink);
}

.footer-grid {
  display: grid;
  gap: 1.1rem;
}

.footer-brand p {
  max-width: 42rem;
  margin-top: 0.8rem;
  color: var(--muted);
  font-size: 0.83rem;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem 1rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer-links a {
  display: inline-flex;
  min-height: 2.75rem;
  align-items: center;
  color: var(--yoy-orange-dark);
  font-size: 0.83rem;
}

.review-note {
  margin-top: 1.2rem;
  padding: 0.9rem 1rem;
  border-left: 3px solid var(--yoy-orange);
  background: var(--amber-soft);
  color: var(--muted);
  font-size: 0.9rem;
}

.footer-bottom {
  margin-top: 1.1rem;
  padding-top: 0.85rem;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.75rem;
}

@media (min-width: 38rem) {
  .grid-2,
  .comparison {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .search-controls {
    grid-template-columns: minmax(0, 1fr) auto;
  }

  .closing-cta {
    grid-template-columns: minmax(0, 1fr) auto;
  }

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

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

@media (min-width: 56rem) {
  .grid-3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

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

  .article-layout {
    grid-template-columns: minmax(0, 1fr) 15rem;
    gap: 2.2rem;
  }

  .aside-nav {
    position: sticky;
    top: 1rem;
  }

  .footer-grid {
    grid-template-columns: minmax(18rem, 1fr) minmax(22rem, 1fr);
    align-items: start;
  }

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

@media (max-width: 70rem) {
  .home-search-row {
    grid-template-columns: auto minmax(18rem, 1fr);
  }

  .home-header-actions {
    display: none;
  }
}

@media (max-width: 52rem) {
  .header-inner {
    align-items: flex-start;
    flex-direction: column;
  }

  .site-nav ul {
    flex-wrap: nowrap;
    justify-content: flex-start;
    overflow-x: auto;
    padding-bottom: 0.35rem;
    overscroll-behavior-inline: contain;
    scroll-snap-type: inline proximity;
    scrollbar-width: thin;
  }

  .site-nav {
    width: 100%;
  }

  .site-nav a {
    white-space: nowrap;
  }

  .site-nav li,
  .home-nav li {
    scroll-snap-align: start;
  }

  .home-search-row {
    grid-template-columns: 1fr;
    gap: 0.8rem;
  }

  .home-logo {
    justify-self: start;
  }

  .home-nav ul {
    flex-wrap: nowrap;
    gap: 0 1rem;
    overflow-x: auto;
    padding-bottom: 0.2rem;
    overscroll-behavior-inline: contain;
    scroll-snap-type: inline proximity;
    scrollbar-width: thin;
  }

  .site-nav ul::-webkit-scrollbar,
  .home-nav ul::-webkit-scrollbar {
    height: 0.2rem;
  }

  .site-nav ul::-webkit-scrollbar-thumb,
  .home-nav ul::-webkit-scrollbar-thumb {
    border-radius: 999px;
    background: #c7cbce;
  }

  .home-nav a {
    white-space: nowrap;
  }

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

  .agent-card-foot {
    align-items: flex-start;
    flex-direction: column;
  }

  .agent-actions {
    flex-wrap: wrap;
  }
}

@media (max-width: 30rem) {
  .article-meta a {
    flex-basis: 100%;
  }

  .article-meta a::before {
    content: none;
  }

  .site-nav ul {
    column-gap: 0.65rem;
  }

  .site-nav a {
    font-size: 0.78rem;
  }

  .button-row .button {
    width: 100%;
  }

  .home-logo-bag {
    width: 2.8rem;
    height: 2.8rem;
    flex-basis: 2.8rem;
  }

  .header-search-icon {
    width: 2.7rem;
  }

  .header-search button {
    padding-inline: 0.9rem;
  }

  .search-full {
    display: none;
  }

  .search-short {
    display: inline;
  }

  .home-nav a {
    padding-block: 0.58rem;
    font-size: 0.74rem;
  }

  .finds-hero {
    padding-top: 1.85rem;
  }

  .finds-intro {
    text-align: left;
  }

  .finds-intro h1 {
    font-size: 2.05rem;
  }

  .finds-intro p {
    font-size: 0.96rem;
  }

  .agent-card-head,
  .agent-card-foot {
    align-items: flex-start;
    flex-direction: column;
  }

  .agent-card-head,
  .agent-card-body {
    padding: 1.05rem;
  }

  .agent-steps {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .agent-actions,
  .agent-actions a {
    width: 100%;
  }
}
