:root {
  --ink: #1b1714;
  --ink-deep: #16110e;
  --cream: #faf7f2;
  --cream-2: #fbf8f3;
  --sand: #d8d2c6;
  --line: #ece5da;
  --muted: #57514a;
  --muted-2: #8a8178;
  --teal: #0f8f84;
  --teal-light: #7fd6cd;
  --blue: #2c6fff;
  --gold: #d99a2b;
  --shadow: 0 28px 70px -36px rgba(20, 17, 14, 0.45);
  --serif: "Newsreader", Georgia, serif;
  --sans: "Hanken Grotesk", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--cream);
  font-family: var(--sans);
  -webkit-font-smoothing: antialiased;
}

body,
button,
input,
select {
  font: 400 16px/1.5 var(--sans);
}

a {
  color: inherit;
}

svg {
  display: block;
}

.skip-link {
  position: absolute;
  left: 16px;
  top: 12px;
  z-index: 20;
  transform: translateY(-140%);
  background: var(--cream);
  color: var(--ink);
  padding: 10px 14px;
  border-radius: 8px;
}

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

.hero {
  min-height: 780px;
  position: relative;
  color: var(--cream-2);
  background:
    linear-gradient(90deg, rgba(18, 15, 13, 0.78) 0%, rgba(18, 15, 13, 0.42) 50%, rgba(18, 15, 13, 0.12) 100%),
    linear-gradient(180deg, rgba(18, 15, 13, 0.34) 0%, rgba(18, 15, 13, 0) 26%, rgba(18, 15, 13, 0.52) 62%, rgba(18, 15, 13, 0.84) 100%),
    #2a2521 url("claude-hero-pool.jpg") center 55% / cover no-repeat;
  overflow: hidden;
}

.site-nav {
  width: min(1120px, calc(100% - 44px));
  margin: 0 auto;
  padding: 36px 0 0;
  display: flex;
  align-items: center;
  gap: 32px;
  justify-content: space-between;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  font-weight: 700;
  line-height: 1;
}

.brand > span:last-child {
  color: var(--cream-2);
  font-size: 19px;
}

.brand > span:last-child span {
  color: #3fb9ae;
}

.brand-mark {
  width: 34px;
  height: 34px;
  border-radius: 9px;
  background: var(--cream-2);
  display: inline-grid;
  place-items: center;
  flex: 0 0 auto;
}

.brand-mark svg {
  width: 34px;
  height: 34px;
}

.brand-mark rect {
  fill: var(--cream-2);
}

.brand-mark path {
  fill: none;
  stroke: var(--teal);
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.brand-mark circle {
  fill: var(--gold);
}

.nav-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  margin-left: auto;
}

.nav-links a,
.nav-cta {
  color: rgba(250, 247, 242, 0.86);
  text-decoration: none;
  font-weight: 500;
  font-size: 15px;
}

.nav-links a:hover {
  color: #fff;
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 18px;
  border-radius: 8px;
  color: #fff;
  background: var(--blue);
  box-shadow: 0 10px 26px -10px rgba(44, 111, 255, 0.75);
}

.nav-cta:hover,
.button-primary:hover {
  background: #1d5ff2;
}

.hero-content {
  width: min(1120px, calc(100% - 44px));
  margin: 0 auto;
  padding-top: 172px;
}

.eyebrow,
.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 22px;
  color: var(--teal);
  font-weight: 600;
  font-size: 12px;
  line-height: 1;
  text-transform: uppercase;
  letter-spacing: 0;
}

.eyebrow {
  color: #f2ede4;
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid rgba(250, 247, 242, 0.24);
  background: rgba(250, 247, 242, 0.08);
  backdrop-filter: blur(12px);
}

.eyebrow span {
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: var(--teal-light);
}

.hero h1,
.problem h2,
.section-heading h2,
.ai-copy h2,
.packages h2,
.report-copy h2,
.final-copy h2 {
  margin: 0;
  font-family: var(--serif);
  font-weight: 500;
  line-height: 1.05;
  letter-spacing: 0;
}

.hero h1 {
  max-width: 760px;
  font-size: 64px;
  text-shadow: 0 2px 30px rgba(20, 17, 15, 0.4);
}

.hero h1 em,
.problem h2 em,
.ai-copy h2 em,
.final-copy h2 em {
  color: var(--teal-light);
  font-style: italic;
}

.problem h2 em {
  color: var(--teal);
}

.hero-content > p {
  max-width: 600px;
  margin: 24px 0 32px;
  color: rgba(250, 247, 242, 0.9);
  font-size: 19px;
  line-height: 1.6;
}

.hero-actions,
.hero-chips {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 48px;
  padding: 0 24px;
  border: 0;
  border-radius: 8px;
  text-decoration: none;
  cursor: pointer;
  font-weight: 600;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

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

.button svg {
  width: 16px;
  height: 16px;
}

.button svg path {
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.button-primary {
  color: #fff;
  background: var(--blue);
  box-shadow: 0 14px 32px -10px rgba(44, 111, 255, 0.72);
}

.button-glass {
  color: var(--cream);
  border: 1px solid rgba(250, 247, 242, 0.34);
  background: rgba(250, 247, 242, 0.14);
  backdrop-filter: blur(12px);
}

.button-glass svg path {
  fill: var(--teal-light);
  stroke: none;
}

.button-secondary {
  color: var(--ink);
  background: var(--cream);
  border: 1px solid #dcd3c5;
}

.hero-chips {
  margin-top: 30px;
}

.hero-chips span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 34px;
  padding: 0 15px;
  border-radius: 8px;
  border: 1px solid rgba(250, 247, 242, 0.32);
  color: #f2ede4;
  background: rgba(250, 247, 242, 0.16);
  backdrop-filter: blur(12px);
  font-size: 13px;
  font-weight: 600;
}

.hero-chips i {
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: var(--teal-light);
}

.hero-chips span:nth-child(2) i,
.hero-chips span:nth-child(3) i {
  background: #5a8cff;
}

.hero-chips span:nth-child(4) i {
  background: #e6b450;
}

.problem,
.lead-sources,
.packages,
.reporting {
  padding: 86px max(22px, calc((100vw - 1120px) / 2));
}

.problem {
  text-align: center;
  background: var(--cream);
}

.problem h2 {
  max-width: 860px;
  margin: 0 auto;
  font-size: 42px;
  line-height: 1.22;
}

.problem > p {
  max-width: 620px;
  margin: 26px auto 38px;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.65;
}

.pathway {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
}

.pathway > div {
  width: 180px;
  display: grid;
  justify-items: center;
  gap: 9px;
}

.pathway strong {
  font-size: 15px;
}

.pathway small {
  color: var(--muted-2);
  font-size: 13px;
}

.pathway b {
  width: 62px;
  height: 1px;
  background: #d8cec0;
}

.path-icon,
.source-icon,
.mini-icon {
  display: inline-grid;
  place-items: center;
  flex: 0 0 auto;
}

.path-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
}

.path-icon svg {
  width: 24px;
  height: 24px;
}

.path-icon svg,
.source-icon svg,
.mini-icon svg {
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.path-icon svg,
.source-icon svg {
  stroke-width: 1.8;
}

.teal {
  color: var(--teal);
  background: #e6f2f0;
}

.blue {
  color: var(--blue);
  background: #eaf0ff;
}

.gold {
  color: var(--gold);
  background: #fbf1de;
}

.lead-sources {
  background: #f3eee6;
}

.section-heading {
  margin-bottom: 36px;
}

.section-heading.split {
  display: grid;
  grid-template-columns: minmax(0, 680px) minmax(240px, 320px);
  align-items: end;
  justify-content: space-between;
  gap: 40px;
}

.section-heading.center {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 42px;
}

.section-heading h2,
.ai-copy h2,
.report-copy h2 {
  font-size: 42px;
  line-height: 1.1;
}

.section-heading p,
.report-copy p {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
}

.source-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.source-card,
.package-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 1px 0 rgba(20, 17, 14, 0.02);
}

.source-card {
  padding: 24px 22px;
  min-height: 216px;
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.source-card:hover {
  transform: translateY(-3px);
  border-color: #9ccfc8;
  box-shadow: 0 18px 36px -24px rgba(15, 143, 132, 0.4);
}

.source-icon {
  width: 42px;
  height: 42px;
  margin-bottom: 14px;
  border-radius: 10px;
}

.source-icon svg {
  width: 21px;
  height: 21px;
}

.source-card h3 {
  margin: 0 0 9px;
  font-size: 17px;
  line-height: 1.25;
}

.source-card p,
.package-card p {
  margin: 0;
  color: #6b6258;
  font-size: 14px;
  line-height: 1.5;
}

.ai-layer {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 410px;
  gap: 60px;
  align-items: center;
  padding: 86px max(22px, calc((100vw - 1120px) / 2));
  color: var(--cream-2);
  background: radial-gradient(circle at 80% 12%, rgba(63, 185, 174, 0.18), transparent 30%), var(--ink-deep);
}

.section-kicker.light {
  color: var(--teal-light);
}

.ai-copy h2 {
  max-width: 560px;
  color: var(--cream-2);
}

.ai-copy p {
  max-width: 500px;
  margin: 22px 0 34px;
  color: rgba(250, 247, 242, 0.78);
  font-size: 17px;
  line-height: 1.65;
}

.feature-list {
  max-width: 560px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.feature-list li {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 15px 0;
  border-top: 1px solid rgba(250, 247, 242, 0.12);
  color: #e8e2d7;
}

.feature-list li:last-child {
  border-bottom: 1px solid rgba(250, 247, 242, 0.12);
}

.feature-list strong {
  color: var(--cream-2);
}

.mini-icon {
  width: 34px;
  height: 34px;
  border-radius: 9px;
  color: var(--teal-light);
  background: rgba(127, 214, 205, 0.14);
}

.mini-icon svg {
  width: 17px;
  height: 17px;
  stroke-width: 1.9;
}

.phone-demo {
  overflow: hidden;
  border-radius: 24px;
  background: #f5efe6;
  box-shadow: 0 30px 70px -36px rgba(0, 0, 0, 0.78);
  border: 10px solid #241f1b;
}

.phone-top {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 16px;
  background: #fff;
  border-bottom: 1px solid #efe8dd;
}

.phone-top > span {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: var(--teal);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
}

.phone-top strong {
  display: block;
  color: var(--ink);
  font-size: 14px;
}

.phone-top small {
  display: flex;
  align-items: center;
  gap: 5px;
  margin-top: 4px;
  color: var(--teal);
  font-size: 11px;
  font-weight: 600;
}

.phone-top i {
  width: 5px;
  height: 5px;
  border-radius: 999px;
  background: var(--teal);
}

.messages {
  min-height: 360px;
  padding: 20px 18px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.6), rgba(255, 255, 255, 0.35)),
    #f5efe6;
}

.message {
  max-width: 86%;
  padding: 11px 13px;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
}

.message p {
  margin: 0;
  font-size: 14px;
  line-height: 1.45;
}

.message small {
  display: block;
  margin-top: 5px;
  color: #a89f92;
  font-size: 10px;
  font-weight: 600;
}

.message.inbound {
  align-self: flex-start;
  color: var(--ink);
  background: #fff;
  border-radius: 14px 14px 14px 4px;
}

.message.outbound {
  align-self: flex-end;
  color: #fff;
  background: var(--teal);
  border-radius: 14px 14px 4px 14px;
}

.message.outbound small {
  color: #a6e5dd;
}

.booking-pill {
  align-self: center;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  border-radius: 999px;
  color: #b07a1e;
  background: #fbf1de;
  font-size: 11px;
  font-weight: 700;
}

.booking-pill svg {
  width: 12px;
  height: 12px;
}

.booking-pill path {
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.image-band {
  height: 260px;
  background:
    linear-gradient(180deg, var(--ink-deep) 0%, rgba(22, 17, 14, 0.32) 26%, rgba(22, 17, 14, 0) 52%, rgba(250, 247, 242, 0) 78%, var(--cream) 100%),
    #2a2521 url("claude-package-pool.jpg") center 76% / cover no-repeat;
}

.packages {
  background: var(--cream);
}

.packages h2 {
  font-size: 42px;
  line-height: 1.1;
}

.packages .section-heading p {
  margin: 12px auto 0;
  max-width: 560px;
}

.package-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  align-items: stretch;
  gap: 18px;
}

.package-card {
  position: relative;
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  min-height: 390px;
}

.package-card h3 {
  margin: 0 0 10px;
  color: var(--teal);
  font-size: 14px;
  text-transform: uppercase;
}

.price {
  display: flex;
  align-items: baseline;
  gap: 6px;
  margin: 24px 0 7px;
  font-family: var(--serif);
  font-size: 44px;
  line-height: 1;
  font-weight: 500;
}

.price span {
  color: var(--muted-2);
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 500;
}

.price.custom {
  display: block;
}

.monthly {
  display: block;
  margin-bottom: 22px;
  font-size: 18px;
}

.monthly span {
  color: var(--muted-2);
  font-size: 13px;
  font-weight: 500;
}

.package-card ul {
  display: grid;
  gap: 10px;
  padding: 0;
  margin: 0 0 24px;
  list-style: none;
  color: #4a433c;
}

.package-card li {
  position: relative;
  padding-left: 24px;
  font-size: 15px;
}

.package-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.45em;
  width: 12px;
  height: 7px;
  border-left: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(-45deg);
  color: var(--teal);
}

.package-card .button {
  margin-top: auto;
  width: 100%;
}

.package-card.featured {
  color: var(--cream-2);
  background: var(--ink-deep);
  border-color: var(--ink-deep);
  box-shadow: 0 26px 54px -28px rgba(20, 17, 15, 0.65);
}

.package-card.featured h3 {
  color: var(--teal-light);
}

.package-card.featured p,
.package-card.featured li {
  color: #d8d1c6;
}

.package-card.featured .price span,
.package-card.featured .monthly span {
  color: #9c9488;
}

.package-card.featured li::before {
  color: var(--teal-light);
}

.badge {
  position: absolute;
  top: -12px;
  left: 24px;
  padding: 7px 11px;
  border-radius: 5px;
  color: var(--ink-deep);
  background: var(--gold);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
}

.reporting {
  display: grid;
  grid-template-columns: minmax(0, 410px) minmax(0, 610px);
  gap: 70px;
  align-items: center;
  background: linear-gradient(180deg, #edf4f2 0%, #e5efec 100%);
  border-top: 1px solid #dbe7e3;
}

.report-card {
  overflow: hidden;
  border: 1px solid #d9e6e2;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 24px 50px -32px rgba(15, 60, 54, 0.28);
}

.report-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 20px;
  border-bottom: 1px solid #e7efec;
}

.report-head strong {
  display: block;
  font-size: 15px;
}

.report-head small {
  display: block;
  margin-top: 5px;
  color: var(--muted-2);
  font-size: 12px;
  font-weight: 500;
}

.report-head span {
  padding: 6px 10px;
  border-radius: 5px;
  color: var(--teal);
  background: #e6f2f0;
  font-size: 11px;
  font-weight: 700;
}

.metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: #e7efec;
}

.metrics div {
  padding: 18px;
  background: #fff;
}

.metrics small {
  color: var(--muted-2);
  font-size: 11px;
  font-weight: 600;
}

.metrics strong {
  display: block;
  margin-top: 7px;
  font-family: var(--serif);
  font-size: 30px;
  line-height: 1;
  font-weight: 500;
}

.metrics em {
  display: block;
  margin-top: 7px;
  color: var(--teal);
  font-style: normal;
  font-size: 12px;
  font-weight: 700;
}

.source-bars {
  display: grid;
  gap: 12px;
  padding: 20px;
  border-top: 1px solid #e7efec;
}

.source-bars > strong {
  margin-bottom: 2px;
  font-size: 13px;
}

.source-bars div {
  display: grid;
  grid-template-columns: 104px 1fr 34px;
  align-items: center;
  gap: 12px;
}

.source-bars span,
.source-bars em {
  color: var(--muted);
  font-size: 12px;
  font-style: normal;
  font-weight: 600;
}

.source-bars em {
  text-align: right;
  color: var(--ink);
}

.source-bars b {
  height: 8px;
  overflow: hidden;
  border-radius: 999px;
  background: #e7efec;
}

.source-bars i {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: var(--teal);
}

.source-bars div:nth-child(3) i {
  background: var(--blue);
}

.source-bars div:nth-child(4) i {
  background: var(--gold);
}

.source-bars div:nth-child(5) i {
  background: #3fb9ae;
}

.final-cta {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 420px;
  gap: 60px;
  align-items: center;
  padding: 92px max(22px, calc((100vw - 1120px) / 2));
  color: var(--cream-2);
  background:
    linear-gradient(180deg, rgba(20, 17, 15, 0.86) 0%, rgba(20, 17, 15, 0.93) 100%),
    #16110e url("claude-cta-villa.jpg") center 55% / cover no-repeat;
}

.final-copy h2 {
  max-width: 520px;
  font-size: 54px;
}

.final-copy p {
  max-width: 520px;
  margin: 18px 0 0;
  color: rgba(250, 247, 242, 0.82);
  font-size: 18px;
  line-height: 1.65;
}

.audit-form {
  padding: 26px 24px;
  border-radius: 14px;
  color: var(--ink);
  background: var(--cream-2);
  box-shadow: 0 30px 70px -30px rgba(0, 0, 0, 0.62);
}

.audit-form h3 {
  margin: 0 0 18px;
  font-size: 18px;
  line-height: 1.2;
}

.audit-form label {
  display: block;
  margin-bottom: 13px;
}

.audit-form span {
  display: block;
  margin-bottom: 7px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
}

.audit-form input,
.audit-form select {
  width: 100%;
  height: 46px;
  border: 1px solid #ddd4c6;
  border-radius: 8px;
  outline: none;
  background: #fff;
  color: var(--ink);
  padding: 0 13px;
  font-size: 14px;
}

.audit-form input:focus,
.audit-form select:focus {
  border-color: var(--teal);
  box-shadow: 0 0 0 3px rgba(15, 143, 132, 0.14);
}

.audit-form select {
  appearance: none;
  background-image:
    linear-gradient(45deg, transparent 50%, #8a8178 50%),
    linear-gradient(135deg, #8a8178 50%, transparent 50%);
  background-position: calc(100% - 18px) 19px, calc(100% - 12px) 19px;
  background-size: 6px 6px, 6px 6px;
  background-repeat: no-repeat;
}

.audit-form .button {
  width: 100%;
  margin-top: 2px;
}

.audit-form > p {
  margin: 14px 0 0;
  text-align: center;
  color: #a89f92;
  font-size: 12px;
}

.hidden-field {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  opacity: 0;
}

.form-message {
  margin: 0 0 14px;
  padding: 11px 12px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
}

.form-message.is-success {
  color: #09554f;
  background: #e6f2f0;
}

.form-message.is-error {
  color: #8a4f05;
  background: #fbf1de;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 28px max(22px, calc((100vw - 1120px) / 2));
  background: var(--cream);
  border-top: 1px solid var(--line);
}

.site-footer .brand > span:last-child {
  color: var(--ink);
  font-size: 16px;
}

.site-footer .brand-mark {
  background: var(--ink-deep);
}

.site-footer .brand-mark rect {
  fill: var(--ink-deep);
}

.site-footer > span {
  color: var(--muted-2);
  font-size: 13px;
}

@media (max-width: 980px) {
  .hero {
    min-height: 720px;
    background-position: 62% center;
  }

  .site-nav {
    gap: 16px;
    padding-top: 24px;
  }

  .nav-links {
    display: none;
  }

  .hero-content {
    padding-top: 132px;
  }

  .hero h1 {
    font-size: 52px;
  }

  .section-heading.split,
  .ai-layer,
  .reporting,
  .final-cta {
    grid-template-columns: 1fr;
  }

  .source-grid,
  .package-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .ai-layer,
  .final-cta {
    gap: 42px;
  }

  .phone-demo,
  .audit-form {
    max-width: 480px;
  }
}

@media (max-width: 680px) {
  .hero {
    min-height: 700px;
    background-position: 66% center;
  }

  .site-nav {
    width: min(100% - 32px, 1120px);
  }

  .nav-cta {
    display: none;
  }

  .hero-content {
    width: min(100% - 32px, 1120px);
    padding-top: 120px;
  }

  .hero h1 {
    font-size: 42px;
  }

  .hero-content > p {
    font-size: 17px;
  }

  .button {
    width: 100%;
  }

  .hero-actions {
    align-items: stretch;
  }

  .problem,
  .lead-sources,
  .packages,
  .reporting {
    padding-top: 58px;
    padding-bottom: 58px;
  }

  .problem h2,
  .section-heading h2,
  .ai-copy h2,
  .packages h2,
  .report-copy h2 {
    font-size: 32px;
  }

  .pathway {
    align-items: stretch;
    flex-direction: column;
  }

  .pathway > div {
    width: 100%;
  }

  .pathway b {
    width: 1px;
    height: 34px;
    margin: 0 auto;
  }

  .source-grid,
  .package-grid {
    grid-template-columns: 1fr;
  }

  .ai-layer,
  .final-cta {
    padding-top: 58px;
    padding-bottom: 58px;
  }

  .messages {
    min-height: 330px;
  }

  .image-band {
    height: 190px;
  }

  .final-copy h2 {
    font-size: 40px;
  }

  .source-bars div {
    grid-template-columns: 86px 1fr 30px;
    gap: 9px;
  }

  .metrics div {
    padding: 14px;
  }

  .site-footer {
    align-items: flex-start;
    flex-direction: column;
  }
}
