:root {
  --ink: #121a17;
  --muted: #5e6d66;
  --green: #1f6842;
  --green-dark: #12482d;
  --green-soft: #dde9d8;
  --paper: #f7f3eb;
  --paper-deep: #ecefe7;
  --white: #fffdf8;
  --line: rgba(29, 68, 46, 0.14);
  --shadow: 0 24px 70px rgba(25, 49, 38, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  color: var(--ink);
  background: var(--white);
  overflow-x: hidden;
}

button,
input,
textarea {
  font: inherit;
}

img {
  max-width: 100%;
}

.top-statement {
  display: grid;
  gap: clamp(48px, 7vw, 92px);
  min-height: min(100vh, 860px);
  padding: 28px clamp(22px, 6vw, 112px) clamp(72px, 9vw, 118px);
  background: linear-gradient(180deg, var(--white), #f4f0e7);
}

.site-header {
  display: grid;
  grid-template-columns: minmax(160px, 1fr) auto minmax(160px, 1fr);
  gap: 24px;
  align-items: center;
}

.brand {
  color: var(--green-dark);
  font-size: clamp(1.35rem, 1.9vw, 1.9rem);
  font-weight: 850;
  letter-spacing: 0;
  text-decoration: none;
}

.site-nav {
  display: flex;
  gap: clamp(18px, 3vw, 42px);
  align-items: center;
  justify-content: center;
}

.site-nav a {
  color: var(--ink);
  font-weight: 650;
  text-decoration: none;
  transition: color 180ms ease;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--green);
  outline: none;
}

.header-button {
  justify-self: end;
  min-width: 148px;
}

.hero-shell {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 0.78fr);
  gap: clamp(28px, 5vw, 76px);
  align-items: center;
}

.top-statement-copy {
  display: grid;
  gap: 24px;
  min-width: 0;
}

.top-statement h1 {
  max-width: 850px;
  margin-bottom: 0;
  font-size: clamp(3.4rem, 6.2vw, 5.9rem);
  line-height: 0.98;
}

.top-statement > *,
.top-statement-copy > * {
  min-width: 0;
}

.top-statement p:not(.eyebrow) {
  max-width: 860px;
  margin: 0;
  font-size: clamp(1.08rem, 1.45vw, 1.38rem);
  line-height: 1.55;
  overflow-wrap: break-word;
}

.top-statement-visual {
  position: relative;
  width: 100%;
  margin: 0;
  aspect-ratio: 849 / 605;
  overflow: visible;
  background: transparent;
  filter: drop-shadow(0 26px 54px rgba(33, 64, 48, 0.08));
}

.top-statement-visual img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
  opacity: 0.88;
  mix-blend-mode: multiply;
  -webkit-mask-image: radial-gradient(ellipse at 54% 50%, #000 0%, #000 54%, rgba(0, 0, 0, 0.72) 68%, rgba(0, 0, 0, 0.2) 83%, transparent 98%);
  mask-image: radial-gradient(ellipse at 54% 50%, #000 0%, #000 54%, rgba(0, 0, 0, 0.72) 68%, rgba(0, 0, 0, 0.2) 83%, transparent 98%);
}

.copy-line {
  display: inline;
}

.copy-line + .copy-line::before {
  content: " ";
}

.section {
  padding: 104px clamp(22px, 6vw, 112px);
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--green);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.24em;
  text-transform: uppercase;
}

h1,
h2,
p {
  margin-top: 0;
}

h1 {
  margin-bottom: 0;
  max-width: 850px;
  font-size: clamp(2.3rem, 5vw, 5rem);
  line-height: 1;
  letter-spacing: 0;
  overflow-wrap: break-word;
}

h2 {
  margin-bottom: 12px;
  font-size: clamp(1.25rem, 2vw, 1.9rem);
  line-height: 1.15;
}

p {
  color: var(--muted);
  font-size: 1.02rem;
  line-height: 1.65;
}

a {
  color: inherit;
}

.section-kicker {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 0.65fr);
  gap: clamp(24px, 6vw, 70px);
  align-items: end;
  margin-bottom: 48px;
}

.section-kicker > .eyebrow {
  grid-column: 1 / -1;
  margin-bottom: -28px;
}

.section-kicker > * {
  min-width: 0;
}

.section-kicker p:not(.eyebrow) {
  max-width: 560px;
}

.section-kicker.center {
  display: block;
  max-width: 760px;
  margin-inline: auto;
  text-align: center;
}

.section-kicker.center .eyebrow {
  margin-bottom: 16px;
}

.section-kicker.center p {
  margin: 20px auto 0;
}

.services {
  padding-top: 72px;
  background: linear-gradient(180deg, var(--white), #eff4ec 72%, var(--white));
}

.services.reveal {
  opacity: 1;
  transform: none;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.service-card,
.resource-card,
.mission-card,
.message-form,
.booking-card,
.process-steps article {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 253, 248, 0.86);
  box-shadow: 0 18px 55px rgba(39, 67, 51, 0.08);
}

.service-card {
  min-height: 350px;
  padding: 28px;
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.service-card-featured {
  grid-column: 1 / -1;
  min-height: 260px;
  background:
    linear-gradient(180deg, rgba(255, 253, 248, 0.9), rgba(221, 233, 216, 0.74)),
    url("assets/agent-ready-globe-wide.webp") center / cover;
}

.service-card:hover,
.resource-card:hover,
.process-steps article:hover {
  transform: translateY(-6px);
  border-color: rgba(34, 95, 62, 0.3);
  box-shadow: var(--shadow);
}

.icon-badge {
  display: grid;
  place-items: center;
  width: 78px;
  height: 78px;
  margin-bottom: 60px;
  border-radius: 50%;
  color: var(--green);
  background: var(--green-soft);
  font-size: 2rem;
  font-weight: 800;
}

.service-card a {
  display: inline-flex;
  gap: 10px;
  align-items: center;
  margin-top: 14px;
  color: var(--green);
  font-weight: 700;
  text-decoration: none;
}

.service-card a::after {
  content: "->";
}

.audience-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  margin-top: 42px;
  padding-top: 32px;
  border-top: 1px solid var(--line);
}

.audience-strip span {
  color: var(--muted);
  font-weight: 750;
}

.audience-strip strong {
  padding: 12px 18px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--green-dark);
  background: rgba(255, 253, 248, 0.72);
}

.process {
  background: var(--paper);
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 16px;
}

.process-steps article {
  position: relative;
  min-height: 300px;
  padding: 28px 22px;
  text-align: center;
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.process-steps article:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 50%;
  right: -17px;
  width: 18px;
  border-top: 2px dotted rgba(31, 104, 66, 0.65);
}

.process-steps span {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  margin: 0 auto 52px;
  border-radius: 50%;
  color: var(--green);
  background: var(--green-soft);
  font-weight: 800;
}

.outcome-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  margin: 54px 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--line);
}

.outcome-strip div {
  padding: 28px;
  background: rgba(255, 253, 248, 0.75);
}

.outcome-strip strong,
.outcome-strip span {
  display: block;
}

.outcome-strip strong {
  margin-bottom: 8px;
  color: var(--green);
}

.outcome-strip span {
  color: var(--muted);
}

.principle-panel {
  max-width: 980px;
  margin: 0 auto;
  padding: clamp(30px, 5vw, 54px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    radial-gradient(circle at 85% 18%, rgba(221, 233, 216, 0.92), transparent 32%),
    linear-gradient(135deg, rgba(255, 253, 248, 0.92), rgba(238, 244, 236, 0.76));
  box-shadow: 0 18px 55px rgba(39, 67, 51, 0.08);
}

.principle-panel h2 {
  max-width: 760px;
  font-size: clamp(1.9rem, 3.6vw, 3.4rem);
}

.principle-panel p:not(.eyebrow) {
  max-width: 680px;
}

.about {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(280px, 0.78fr) minmax(280px, 0.78fr);
  gap: 22px;
  align-items: stretch;
  background: linear-gradient(180deg, #fdfbf5, #eef4ec);
}

.about-copy {
  align-self: center;
}

.about-copy p:not(.eyebrow) {
  max-width: 560px;
  margin: 24px 0;
}

.mission-card {
  padding: clamp(28px, 4vw, 44px);
}

.trust-panel {
  padding: clamp(28px, 4vw, 44px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 253, 248, 0.72);
  box-shadow: 0 18px 55px rgba(39, 67, 51, 0.08);
}

.trust-panel ul,
.call-agenda {
  display: grid;
  gap: 14px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.trust-panel li,
.call-agenda li {
  position: relative;
  padding-left: 28px;
  color: var(--muted);
  line-height: 1.55;
}

.trust-panel li::before,
.call-agenda li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.68em;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 6px var(--green-soft);
}

.mission-card h2 {
  font-size: clamp(1.8rem, 4vw, 3rem);
}

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

.value-grid span {
  padding: 14px 16px;
  border-radius: 8px;
  color: var(--green-dark);
  background: var(--green-soft);
  font-weight: 800;
}

.resources {
  background: var(--white);
}

.resource-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 36px;
}

.filter-chip {
  min-height: 42px;
  padding: 0 20px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--ink);
  background: var(--white);
  cursor: pointer;
  transition: background 180ms ease, color 180ms ease, transform 180ms ease;
}

.filter-chip:hover,
.filter-chip:focus-visible,
.filter-chip.is-active {
  color: var(--white);
  background: var(--green);
  outline: none;
}

.featured-resource {
  display: grid;
  align-items: center;
  margin-bottom: 24px;
  padding: clamp(30px, 5vw, 56px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    radial-gradient(circle at 88% 18%, rgba(221, 233, 216, 0.95), transparent 27%),
    linear-gradient(135deg, rgba(246, 242, 232, 0.88), rgba(236, 242, 232, 0.8));
}

.resource-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.resource-card {
  min-height: 230px;
  padding: 28px;
  transition: opacity 180ms ease, transform 220ms ease, box-shadow 220ms ease;
}

.resource-card.is-hidden {
  display: none;
}

.resource-card span {
  color: var(--green);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.contact {
  background: linear-gradient(180deg, #f7f3eb, var(--white));
}

.contact-hero {
  max-width: 860px;
  margin-bottom: 44px;
}

.contact-hero p:not(.eyebrow) {
  max-width: 660px;
  margin: 22px 0;
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(320px, 0.78fr);
  gap: 26px;
}

.message-form,
.booking-card {
  padding: clamp(28px, 4vw, 42px);
}

.message-form {
  display: grid;
  gap: 16px;
}

.form-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

label {
  display: grid;
  gap: 8px;
  color: var(--green-dark);
  font-weight: 700;
}

input,
textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 14px;
  color: var(--ink);
  background: #fff;
  resize: vertical;
}

input:focus,
textarea:focus {
  border-color: var(--green);
  outline: 3px solid rgba(34, 95, 62, 0.16);
}

.call-agenda {
  margin-bottom: 28px;
}

.contact-list {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  color: var(--muted);
  list-style: none;
}

.faq {
  margin-top: 62px;
}

.faq > h2 {
  text-align: center;
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px 32px;
}

details {
  border-bottom: 1px solid var(--line);
  padding: 20px 0;
}

summary {
  color: var(--ink);
  cursor: pointer;
  font-weight: 800;
}

details p {
  margin: 14px 0 0;
}

.final-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin: 0 clamp(22px, 6vw, 112px) 80px;
  padding: clamp(32px, 6vw, 56px);
  border-radius: 8px;
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(18, 72, 45, 0.98), rgba(18, 72, 45, 0.78)),
    url("assets/humangood-home-expanded.webp") center bottom / cover;
  box-shadow: var(--shadow);
}

.final-cta h1,
.final-cta p,
.final-cta .eyebrow {
  color: var(--white);
}

.primary-button,
.secondary-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 178px;
  min-height: 52px;
  padding: 0 24px;
  border-radius: 999px;
  text-decoration: none;
  cursor: pointer;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease, color 180ms ease;
}

.primary-button.header-button {
  min-width: 148px;
}

.primary-button {
  border: 0;
  color: var(--white);
  background: var(--green);
  box-shadow: 0 15px 35px rgba(14, 44, 28, 0.25);
}

.secondary-button {
  border: 1px solid var(--line);
  color: var(--ink);
  background: var(--white);
}

.secondary-button.light {
  border-color: rgba(255, 255, 255, 0.38);
  color: var(--green-dark);
}

.primary-button:hover,
.primary-button:focus-visible,
.secondary-button:hover,
.secondary-button:focus-visible {
  transform: translateY(-2px);
  outline: none;
}

.primary-button:hover,
.primary-button:focus-visible {
  background: #2b744b;
  box-shadow: 0 19px 42px rgba(14, 44, 28, 0.34);
}

.secondary-button:hover,
.secondary-button:focus-visible {
  box-shadow: 0 15px 34px rgba(14, 44, 28, 0.12);
}

.modal-backdrop {
  position: fixed;
  inset: 0;
  z-index: 10;
  display: grid;
  place-items: center;
  padding: 22px;
  background: rgba(12, 22, 17, 0.58);
  backdrop-filter: blur(12px);
}

.modal-backdrop[hidden] {
  display: none;
}

.modal {
  position: relative;
  width: min(620px, 100%);
  max-height: min(90vh, 780px);
  overflow: auto;
  padding: clamp(28px, 5vw, 48px);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 30px 120px rgba(0, 0, 0, 0.32);
}

.modal h1 {
  margin-bottom: 26px;
  font-size: clamp(1.8rem, 4vw, 3.2rem);
}

.modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--ink);
  background: transparent;
  cursor: pointer;
}

.modal-close:hover,
.modal-close:focus-visible {
  background: var(--green-soft);
  outline: none;
}

.booking-form {
  display: grid;
  gap: 16px;
}

.form-success {
  margin: 18px 0 0;
  padding: 14px 16px;
  border-radius: 8px;
  color: var(--green-dark);
  background: var(--green-soft);
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 650ms ease, transform 650ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.agent-hero {
  position: relative;
  display: grid;
  grid-template-rows: auto 1fr;
  min-height: min(86vh, 820px);
  padding: 28px clamp(22px, 6vw, 112px) 54px;
  background:
    linear-gradient(90deg, rgba(255, 253, 248, 0.98) 0%, rgba(255, 253, 248, 0.86) 42%, rgba(255, 253, 248, 0.3) 76%),
    url("assets/agent-ready-hero.webp") right center / contain no-repeat,
    var(--white);
}

.agent-header {
  position: relative;
  z-index: 1;
}

.agent-hero-copy {
  align-self: center;
  max-width: 680px;
  padding: 42px 0 82px;
}

.agent-hero h1 {
  max-width: 680px;
  margin-bottom: 22px;
  font-size: 5.4rem;
}

.agent-hero p:not(.eyebrow) {
  max-width: 560px;
  margin-bottom: 30px;
  font-size: 1.22rem;
}

.agent-shift {
  display: grid;
  grid-template-columns: minmax(280px, 0.8fr) minmax(0, 1fr);
  gap: clamp(28px, 6vw, 84px);
  align-items: center;
  background: linear-gradient(180deg, var(--white), var(--paper));
}

.agent-shift figure,
.agent-proof figure {
  margin: 0;
}

.agent-shift img,
.agent-proof img {
  display: block;
  width: min(460px, 100%);
  margin-inline: auto;
  mix-blend-mode: multiply;
}

.agent-shift h1,
.agent-audit h1,
.standards-copy h1,
.agent-proof h1,
.agent-final-cta h1 {
  font-size: 3.5rem;
}

.agent-shift p,
.agent-proof p:not(.eyebrow) {
  max-width: 600px;
}

.agent-audit {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 0.72fr);
  gap: clamp(28px, 5vw, 70px);
  align-items: center;
  background:
    linear-gradient(90deg, rgba(18, 72, 45, 0.94), rgba(18, 72, 45, 0.76)),
    url("assets/agent-ready-globe-wide.webp") center / cover;
}

.agent-audit .eyebrow,
.agent-audit h1,
.agent-audit label,
.agent-final-cta .eyebrow,
.agent-final-cta h1 {
  color: var(--white);
}

.agent-audit h1 {
  max-width: 700px;
}

.audit-form {
  display: grid;
  gap: 16px;
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 8px;
  background: rgba(255, 253, 248, 0.12);
  backdrop-filter: blur(16px);
}

.audit-form input {
  min-height: 58px;
}

.audit-form .primary-button {
  width: 100%;
}

.agent-steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  background: var(--white);
}

.agent-steps article,
.standards-grid article {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 253, 248, 0.88);
  box-shadow: 0 18px 55px rgba(39, 67, 51, 0.08);
}

.agent-steps article {
  min-height: 260px;
  padding: 28px;
}

.agent-steps span,
.standards-grid span {
  display: block;
  color: var(--green);
  font-weight: 850;
}

.agent-steps span {
  margin-bottom: 74px;
  font-size: 1.05rem;
}

.agent-standards {
  display: grid;
  grid-template-columns: minmax(260px, 0.62fr) minmax(0, 1fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: start;
  background: linear-gradient(180deg, var(--paper), var(--white));
}

.standards-copy {
  position: sticky;
  top: 32px;
}

.standards-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.standards-grid article {
  min-height: 118px;
  padding: 20px;
}

.standards-grid article:last-child {
  grid-column: 1 / -1;
  background:
    linear-gradient(90deg, rgba(255, 253, 248, 0.94), rgba(221, 233, 216, 0.82)),
    url("assets/agent-ready-standards.webp") right center / auto 180% no-repeat;
}

.standards-grid span {
  margin-bottom: 24px;
  font-size: 0.82rem;
}

.standards-grid strong {
  display: block;
  font-size: 1.2rem;
}

.agent-proof {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(280px, 0.72fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: center;
  padding: 104px clamp(22px, 6vw, 112px);
  background: var(--paper);
}

.agent-final-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin: 0 clamp(22px, 6vw, 112px) 80px;
  padding: clamp(32px, 6vw, 56px);
  border-radius: 8px;
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(18, 72, 45, 0.98), rgba(18, 72, 45, 0.72)),
    url("assets/agent-ready-globe-wide.webp") center / cover;
  box-shadow: var(--shadow);
}

.agent-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 32px clamp(22px, 6vw, 112px) 42px;
  border-top: 1px solid var(--line);
  background: var(--white);
}

.agent-footer div {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.agent-footer a {
  color: var(--muted);
  font-weight: 700;
  text-decoration: none;
}

.agent-footer .brand {
  color: var(--green-dark);
}

@media (max-width: 1100px) {
  .service-grid,
  .agent-steps,
  .process-steps,
  .resource-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .process-steps article:not(:last-child)::after {
    display: none;
  }

  .about,
  .agent-audit,
  .agent-proof,
  .agent-shift,
  .agent-standards,
  .contact-hero,
  .contact-grid,
  .hero-shell {
    grid-template-columns: 1fr;
  }

  .standards-copy {
    position: static;
  }

  .site-header {
    grid-template-columns: 1fr auto;
  }

  .site-nav {
    grid-column: 1 / -1;
    grid-row: 2;
    justify-content: flex-start;
    order: 3;
  }
}

@media (max-width: 900px) {
  .top-statement-visual {
    max-width: 620px;
  }

  .section {
    padding: 72px 22px;
  }

  .agent-final-cta,
  .section-kicker,
  .featured-resource,
  .faq-grid,
  .form-row,
  .final-cta {
    grid-template-columns: 1fr;
  }

  .agent-final-cta {
    display: grid;
    margin-inline: 22px;
  }

  .agent-hero {
    min-height: 760px;
    background:
      linear-gradient(180deg, rgba(255, 253, 248, 0.98) 0%, rgba(255, 253, 248, 0.88) 48%, rgba(255, 253, 248, 0.24) 100%),
      url("assets/agent-ready-hero.webp") center bottom / min(560px, 95vw) auto no-repeat,
      var(--white);
  }

  .agent-hero-copy {
    align-self: start;
    padding-top: 58px;
  }

  .agent-hero h1,
  .agent-shift h1,
  .agent-audit h1,
  .standards-copy h1,
  .agent-proof h1,
  .agent-final-cta h1 {
    font-size: 3.1rem;
  }

  .section-kicker > .eyebrow {
    margin-bottom: -10px;
  }

  .final-cta {
    display: grid;
    margin-inline: 22px;
  }
}

@media (max-width: 640px) {
  .top-statement {
    width: 100%;
    max-width: 100vw;
    min-height: 0;
    padding: 42px 22px;
    gap: 28px;
  }

  .site-header {
    grid-template-columns: 1fr auto;
    gap: 18px;
  }

  .site-nav {
    display: none;
  }

  .header-button {
    justify-self: end;
    min-height: 46px;
  }

  .primary-button.header-button {
    min-width: 136px;
    padding-inline: 18px;
  }

  .hero-shell {
    gap: 30px;
  }

  .top-statement .button-row {
    display: grid;
    justify-items: start;
  }

  .top-statement h1 {
    width: 100%;
    inline-size: calc(100vw - 44px);
    max-width: calc(100vw - 44px);
    font-size: clamp(2.15rem, 9.4vw, 2.85rem);
    line-height: 1.04;
  }

  .top-statement p:not(.eyebrow) {
    width: 100%;
    inline-size: calc(100vw - 44px);
    max-width: calc(100vw - 44px);
    font-size: 1.02rem;
    overflow-wrap: anywhere;
  }

  .top-statement-visual {
    aspect-ratio: 16 / 9;
  }

  .top-statement-visual img {
    object-position: center;
  }

  .copy-line {
    display: block;
  }

  .copy-line + .copy-line::before {
    content: "";
  }

  .section h1 {
    font-size: clamp(2.05rem, 9.4vw, 3rem);
  }

  .service-grid,
  .agent-steps,
  .standards-grid,
  .process-steps,
  .outcome-strip,
  .resource-grid {
    grid-template-columns: 1fr;
  }

  .service-card-featured {
    grid-column: auto;
  }

  .standards-grid article:last-child {
    grid-column: auto;
    background: rgba(255, 253, 248, 0.88);
  }

  .agent-hero {
    min-height: 720px;
    padding: 42px 22px;
  }

  .agent-hero h1,
  .agent-shift h1,
  .agent-audit h1,
  .standards-copy h1,
  .agent-proof h1,
  .agent-final-cta h1 {
    font-size: 2.65rem;
  }

  .agent-hero p:not(.eyebrow) {
    font-size: 1.05rem;
  }

  .agent-steps article {
    min-height: 220px;
  }

  .agent-steps span {
    margin-bottom: 44px;
  }

  .agent-footer {
    display: grid;
  }

  .icon-badge,
  .process-steps span {
    margin-bottom: 28px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
  }

  .top-statement-visual {
    transform: none;
  }
}
