.home-hero-copy h1 {
  max-width: 680px;
  font-size: clamp(3.75rem, 5.5vw, 5.9rem);
  line-height: .9;
}

.home-hero-copy .hero-lead {
  max-width: 610px;
  font-size: clamp(1rem, 1.25vw, 1.16rem);
  line-height: 1.65;
}

.home-hero-copy .hero-note {
  color: #557176;
  font-size: .82rem;
  letter-spacing: .01em;
}

.work-scope-section {
  overflow: hidden;
  background: linear-gradient(140deg, #fffdfa 0%, #f4efe5 100%);
}

.work-scope-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(360px, .9fr);
  gap: clamp(44px, 7vw, 104px);
  align-items: center;
}

.work-scope-copy h2 {
  max-width: 760px;
  margin: 12px 0 18px;
  color: var(--ink);
  font-family: var(--serif);
  font-size: clamp(3rem, 4.9vw, 4.8rem);
  font-weight: 600;
  line-height: .96;
  letter-spacing: -.045em;
}

.work-scope-lead {
  max-width: 660px;
  margin: 0 0 30px;
  color: #526e72;
  font-size: 1rem;
  line-height: 1.7;
}

.work-tabs {
  border-top: 1px solid var(--line);
}

.work-tab-list {
  display: flex;
  gap: 5px;
  padding: 13px 0;
  overflow-x: auto;
  scrollbar-width: thin;
}

.work-tab-list button {
  flex: 0 0 auto;
  border: 1px solid transparent;
  border-radius: 999px;
  background: transparent;
  color: #526e72;
  padding: 9px 14px;
  font: inherit;
  font-size: .79rem;
  font-weight: 700;
  cursor: pointer;
}

.work-tab-list button:hover,
.work-tab-list button:focus-visible {
  border-color: var(--line);
  color: var(--ink);
}

.work-tab-list button[aria-selected="true"] {
  background: var(--ink);
  color: #fff;
}

.work-tab-panel {
  min-height: 216px;
  border-top: 1px solid var(--line);
  padding-top: 18px;
}

.work-tab-panel[hidden] {
  display: none;
}

.work-tab-panel ul {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
}

.work-tab-panel li {
  position: relative;
  min-height: 76px;
  border-bottom: 1px solid var(--line);
  padding: 16px 20px 16px 29px;
  color: #264d54;
  font-size: .92rem;
  line-height: 1.5;
}

.work-tab-panel li:nth-child(odd) {
  border-right: 1px solid var(--line);
  padding-left: 24px;
}

.work-tab-panel li::before {
  position: absolute;
  top: 22px;
  left: 9px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--orange);
  content: '';
}

.work-tab-panel li:nth-child(odd)::before {
  left: 4px;
}

.work-scope-visual {
  position: relative;
  margin: 0;
}

.work-scope-visual::before {
  position: absolute;
  inset: -18px 18px 18px -18px;
  z-index: 0;
  border: 1px solid #d4c8b5;
  content: '';
}

.work-scope-visual img {
  position: relative;
  z-index: 1;
  display: block;
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  box-shadow: 0 24px 55px rgb(5 50 61 / 16%);
}

.work-scope-visual figcaption {
  position: absolute;
  right: -22px;
  bottom: 28px;
  z-index: 2;
  display: grid;
  max-width: 285px;
  border-left: 4px solid var(--orange);
  background: #fff;
  box-shadow: 0 18px 40px rgb(5 50 61 / 18%);
  padding: 16px 18px;
}

.work-scope-visual figcaption strong {
  color: var(--ink);
  font-family: var(--serif);
  font-size: 1.13rem;
}

.work-scope-visual figcaption span {
  margin-top: 4px;
  color: #61787c;
  font-size: .76rem;
  line-height: 1.5;
}

@media (max-width: 980px) {
  .home-hero-copy h1 {
    font-size: clamp(3.4rem, 8vw, 5rem);
  }

  .work-scope-grid {
    grid-template-columns: 1fr;
  }

  .work-scope-visual {
    max-width: 720px;
  }

  .work-scope-visual img {
    aspect-ratio: 16 / 10;
  }
}

@media (max-width: 640px) {
  .home-hero-copy h1 {
    font-size: clamp(3.05rem, 14vw, 4.15rem);
    line-height: .92;
  }

  .home-hero-copy .hero-lead {
    font-size: .98rem;
  }

  .work-scope-grid {
    gap: 38px;
  }

  .work-scope-copy h2 {
    font-size: clamp(2.65rem, 12vw, 3.55rem);
  }

  .work-tab-list {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 6px;
    overflow: visible;
  }

  .work-tab-list button {
    min-width: 0;
    min-height: 48px;
    padding: 10px 8px;
    white-space: normal;
    font-size: .76rem;
    line-height: 1.25;
  }

  .work-tab-panel {
    min-height: 0;
  }

  .work-tab-panel ul {
    grid-template-columns: 1fr;
  }

  .work-tab-panel li,
  .work-tab-panel li:nth-child(odd) {
    min-height: 0;
    border-right: 0;
    padding: 14px 8px 14px 25px;
  }

  .work-tab-panel li::before,
  .work-tab-panel li:nth-child(odd)::before {
    top: 21px;
    left: 5px;
  }

  .work-scope-visual::before {
    inset: -10px 10px 10px -10px;
  }

  .work-scope-visual img {
    aspect-ratio: 4 / 3;
  }

  .work-scope-visual figcaption {
    right: 12px;
    bottom: 12px;
    max-width: calc(100% - 24px);
  }

  .steps-row {
    margin-top: 34px;
  }

  .steps-row li {
    min-height: 0;
    padding: 24px;
  }

  .steps-row h3 {
    margin-top: 28px;
  }

  .case-photo img {
    height: 320px;
  }

  .human-ai-section .heading-row {
    gap: 16px;
  }

  .duo-grid {
    gap: 12px;
    margin-top: 34px;
  }

  .duo-card {
    min-height: 0;
    padding: 24px;
  }

  .duo-card .eyebrow {
    margin-top: 30px;
  }

  .pricing-preview-grid,
  .cta-inner {
    gap: 30px;
  }
}

.proof-story-section {
  overflow: hidden;
  background: #fffdfa;
}

.proof-story-grid {
  display: grid;
  grid-template-columns: minmax(340px, .88fr) minmax(0, 1.12fr);
  gap: clamp(44px, 7vw, 100px);
  align-items: center;
}

.proof-story-visual {
  position: relative;
}

.proof-story-visual::before {
  position: absolute;
  inset: -16px 16px 16px -16px;
  border: 1px solid #d7cbb8;
  content: '';
}

.proof-story-visual img {
  position: relative;
  display: block;
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  box-shadow: 0 26px 60px rgb(5 50 61 / 17%);
}

.proof-story-badge {
  position: absolute;
  right: -24px;
  bottom: 28px;
  display: grid;
  gap: 7px;
  max-width: 315px;
  border-left: 4px solid var(--orange);
  background: #fff;
  box-shadow: 0 18px 42px rgb(5 50 61 / 20%);
  padding: 18px 20px;
}

.proof-story-badge span,
.proof-story-timeline span,
.choice-card > span,
.outcome-card > span,
.trust-card > span {
  color: var(--rust);
  font-size: .7rem;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.proof-story-badge strong {
  color: var(--ink);
  font-family: var(--serif);
  font-size: 1.12rem;
  font-weight: 600;
  line-height: 1.25;
}

.proof-story-copy h2,
.economics-copy h2 {
  margin: 12px 0 20px;
  color: var(--ink);
  font-family: var(--serif);
  font-size: clamp(3rem, 4.8vw, 4.75rem);
  font-weight: 600;
  letter-spacing: -.045em;
  line-height: .98;
}

.proof-story-lead {
  max-width: 680px;
  color: #4f6c71;
  font-size: 1.04rem;
  line-height: 1.72;
}

.proof-story-timeline {
  display: grid;
  margin: 28px 0 22px;
  border-top: 1px solid var(--line);
}

.proof-story-timeline article {
  display: grid;
  grid-template-columns: 105px 1fr;
  gap: 18px;
  border-bottom: 1px solid var(--line);
  padding: 18px 0;
}

.proof-story-timeline p {
  margin: 0;
  color: #315a61;
  line-height: 1.58;
}

.proof-story-result {
  margin: 0 0 24px;
  border-left: 3px solid var(--orange);
  background: #f8f2e8;
  padding: 15px 18px;
  color: #31565d;
  line-height: 1.58;
}

.proof-story-result strong {
  color: var(--ink);
}

.outcome-section {
  background: #f4efe6;
}

.outcome-grid,
.choice-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin-top: 44px;
}

.outcome-card {
  min-height: 330px;
  border: 1px solid #d8cdbd;
  background: #fffdfa;
  padding: 28px;
}

.outcome-card h3,
.choice-card h3,
.trust-card h3 {
  margin: 54px 0 18px;
  color: var(--ink);
  font-family: var(--serif);
  font-size: 1.8rem;
  font-weight: 600;
  line-height: 1.05;
}

.outcome-card p {
  margin: 0;
  color: #526e72;
  line-height: 1.58;
}

.outcome-card .outcome-before {
  border-bottom: 1px solid var(--line);
  padding-bottom: 15px;
}

.outcome-card .outcome-after {
  position: relative;
  margin-top: 15px;
  padding-left: 17px;
  color: #174d54;
  font-weight: 700;
}

.outcome-card .outcome-after::before {
  position: absolute;
  top: .6em;
  left: 0;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--orange);
  content: '';
}

.choice-section {
  background: var(--ink);
  color: #fff;
}

.choice-section .section-heading {
  max-width: 900px;
}

.choice-section .section-heading h2 {
  color: #fff;
}

.choice-section .section-heading > p:last-child {
  max-width: 680px;
  color: #c7d7d9;
}

.choice-card {
  min-height: 350px;
  border: 1px solid rgb(255 255 255 / 17%);
  background: rgb(255 255 255 / 5%);
  padding: 28px;
}

.choice-card > span {
  color: #efaa7f;
}

.choice-card h3 {
  margin-top: 62px;
  color: #fff;
}

.choice-card p {
  color: #c4d4d6;
  line-height: 1.65;
}

.choice-card-featured {
  border-color: var(--orange);
  background: #fff8ee;
  box-shadow: 0 22px 50px rgb(0 0 0 / 22%);
  transform: translateY(-10px);
}

.choice-card-featured h3 {
  color: var(--ink);
}

.choice-card-featured p {
  color: #416267;
}

.choice-card-featured a {
  display: inline-flex;
  gap: 8px;
  align-items: center;
  margin-top: 12px;
  color: var(--rust);
  font-weight: 800;
  text-decoration: none;
}

.economics-section {
  background: #fffdfa;
}

.economics-grid {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(430px, 1.1fr);
  gap: clamp(44px, 7vw, 108px);
  align-items: center;
}

.economics-copy > p:not(.eyebrow) {
  max-width: 620px;
  color: #526e72;
  line-height: 1.7;
}

.economics-copy .inline-link {
  margin-top: 14px;
}

.owner-time-calculator {
  border-top: 5px solid var(--orange);
  background: var(--ink);
  box-shadow: 0 25px 58px rgb(5 50 61 / 18%);
  padding: clamp(26px, 4vw, 42px);
  color: #fff;
}

.owner-time-fields {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.owner-time-fields label > span {
  display: block;
  margin-bottom: 9px;
  color: #cad8da;
  font-size: .75rem;
  font-weight: 800;
  letter-spacing: .04em;
  text-transform: uppercase;
}

.owner-time-fields label > div {
  display: flex;
  align-items: center;
  min-height: 58px;
  border: 1px solid rgb(255 255 255 / 20%);
  background: rgb(255 255 255 / 7%);
  padding: 0 15px;
}

.owner-time-fields input {
  width: 100%;
  min-width: 0;
  border: 0;
  outline: 0;
  background: transparent;
  color: #fff;
  font: inherit;
  font-size: 1.15rem;
  font-weight: 800;
}

.owner-time-fields b,
.owner-time-fields small {
  color: #b6cacc;
  white-space: nowrap;
}

.owner-time-result {
  display: grid;
  gap: 8px;
  margin-top: 18px;
  background: #fff;
  padding: 24px;
  color: var(--ink);
}

.owner-time-result > span,
.owner-time-result > small {
  color: #5e787c;
  font-size: .76rem;
}

.owner-time-result output {
  font-family: var(--serif);
  font-size: clamp(2.7rem, 5vw, 4.4rem);
  font-weight: 600;
  letter-spacing: -.045em;
  line-height: 1;
}

.owner-time-compare {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  align-items: center;
  border-bottom: 1px solid rgb(255 255 255 / 18%);
  padding: 20px 0;
  color: #cad8da;
}

.owner-time-compare strong {
  color: #fff;
  font-family: var(--serif);
  font-size: 1.55rem;
}

.owner-time-calculator > p {
  margin: 16px 0 0;
  color: #a9bec1;
  font-size: .73rem;
  line-height: 1.55;
}

.trust-section {
  border-top: 1px solid var(--line);
  background: #f4efe6;
}

.done-for-you-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 34px;
  border: 1px solid #d5c9b8;
  background: #fffdfa;
}

.done-for-you-strip span {
  position: relative;
  padding: 18px 22px 18px 48px;
  color: var(--ink);
  font-weight: 700;
}

.done-for-you-strip span + span {
  border-left: 1px solid #d5c9b8;
}

.done-for-you-strip span::before {
  position: absolute;
  top: 50%;
  left: 22px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--orange);
  color: #fff;
  content: "✓";
  font-size: 10px;
  line-height: 16px;
  text-align: center;
  transform: translateY(-50%);
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 42px;
}

.trust-card {
  min-height: 285px;
  border: 1px solid #d5c9b8;
  background: #fffdfa;
  padding: 30px;
}

.trust-card h3 {
  margin-top: 58px;
}

.trust-card p {
  color: #526e72;
  line-height: 1.65;
}

.trust-link {
  margin-top: 28px;
}

@media (max-width: 1050px) {
  .outcome-grid,
  .choice-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .choice-card-featured {
    transform: none;
  }
}

@media (max-width: 820px) {
  .proof-story-grid,
  .economics-grid {
    grid-template-columns: 1fr;
  }

  .proof-story-visual {
    max-width: 660px;
  }

  .proof-story-visual img {
    aspect-ratio: 16 / 10;
  }

  .trust-grid {
    grid-template-columns: 1fr;
  }

  .done-for-you-strip {
    grid-template-columns: 1fr;
  }

  .done-for-you-strip span + span {
    border-top: 1px solid #d5c9b8;
    border-left: 0;
  }

  .trust-card {
    min-height: 0;
  }
}

@media (max-width: 640px) {
  .proof-story-copy h2,
  .economics-copy h2 {
    font-size: clamp(2.65rem, 12vw, 3.55rem);
  }

  .proof-story-visual::before {
    inset: -9px 9px 9px -9px;
  }

  .proof-story-badge {
    right: 12px;
    bottom: 12px;
    max-width: calc(100% - 24px);
  }

  .proof-story-timeline article {
    grid-template-columns: 1fr;
    gap: 7px;
  }

  .outcome-grid,
  .choice-grid,
  .owner-time-fields {
    grid-template-columns: 1fr;
  }

  .outcome-card,
  .choice-card {
    min-height: 0;
  }

  .outcome-card h3,
  .choice-card h3,
  .trust-card h3 {
    margin-top: 36px;
  }
}
