:root {
  --bg: #ffffff;
  --bg-soft: #f7faf6;
  --surface: #ffffff;
  --surface-blue: #edf8ef;
  --text: #11140f;
  --muted: #5c6659;
  --line: #dfe7dc;
  --line-strong: #bfd0bc;
  --blue: #0f6b2c;
  --blue-dark: #08491d;
  --green: #16803a;
  --green-soft: #edf8ef;
  --shadow: 0 24px 70px rgba(22, 52, 28, 0.13);
  --radius: 8px;
  --max: 1180px;
  --display: Georgia, "Times New Roman", serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 96px;
  overflow-x: hidden;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  letter-spacing: 0;
}

body.nav-open {
  overflow: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
select,
textarea {
  font: inherit;
}

svg {
  display: block;
  width: 1em;
  height: 1em;
}

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

.skip-link {
  position: fixed;
  z-index: 100;
  top: 12px;
  left: 12px;
  padding: 12px 16px;
  color: #ffffff;
  background: var(--blue-dark);
  border: 2px solid #ffffff;
  border-radius: 4px;
  box-shadow: 0 4px 16px rgba(9, 34, 21, 0.24);
  font-weight: 700;
  transform: translateY(calc(-100% - 24px));
  transition: transform 160ms ease;
}

.skip-link:focus {
  outline: 3px solid var(--brass);
  outline-offset: 2px;
  transform: translateY(0);
}

main:focus-visible {
  outline: 3px solid var(--brass);
  outline-offset: -3px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  width: min(calc(100% - 40px), var(--max));
  min-height: 76px;
  margin: 0 auto;
  background: rgba(255, 255, 255, 0.88);
  border-bottom: 1px solid rgba(220, 227, 236, 0.7);
  backdrop-filter: blur(16px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 18px;
  font-weight: 800;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  color: #ffffff;
  background: linear-gradient(135deg, var(--blue), var(--green));
  border-radius: 8px;
}

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

.brand-mark path {
  fill: currentColor;
  stroke: currentColor;
  stroke-width: 2.1;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.brand-mark path:nth-child(2) {
  fill: none;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 28px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
}

.site-nav a {
  transition: color 160ms ease;
}

.site-nav a:hover {
  color: var(--text);
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 0 18px;
  color: #ffffff !important;
  background: var(--blue);
  border-radius: 8px;
  box-shadow: 0 12px 28px rgba(35, 100, 232, 0.25);
}

.nav-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  color: var(--text);
  background: transparent;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.nav-toggle svg {
  width: 23px;
  height: 23px;
}

.nav-toggle path,
.button svg path,
.feature-icon path {
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.section-shell {
  width: min(calc(100% - 40px), var(--max));
  margin: 0 auto;
}

section[id] {
  scroll-margin-top: 96px;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(420px, 0.92fr);
  gap: 66px;
  align-items: center;
  min-height: 720px;
  padding: 72px 0 86px;
}

.section-label {
  margin: 0 0 18px;
  color: var(--blue);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

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

h1 {
  max-width: 650px;
  margin-bottom: 24px;
  font-size: clamp(44px, 6vw, 78px);
  line-height: 0.95;
  font-weight: 800;
}

.hero-lede {
  max-width: 640px;
  margin-bottom: 30px;
  color: var(--muted);
  font-size: 20px;
  line-height: 1.65;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
  margin-bottom: 16px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 52px;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 800;
  cursor: pointer;
  transition: transform 160ms ease, box-shadow 160ms ease, border-color 160ms ease, background 160ms ease;
}

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

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

.button-primary {
  color: #ffffff;
  background: var(--blue);
  box-shadow: 0 16px 34px rgba(35, 100, 232, 0.28);
}

.button-primary:hover {
  background: var(--blue-dark);
}

.button-secondary {
  color: var(--text);
  background: #ffffff;
  border-color: var(--line-strong);
}

.trial-note {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  font-weight: 600;
}

.hero-visual {
  position: relative;
}

.dashboard {
  padding: 22px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.88), rgba(255, 255, 255, 0.98)),
    var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.dashboard-top,
.chart-head,
.lead-panel > div,
.pricing-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
}

.dash-title,
.chart-head span,
.lead-panel p,
.pricing-top p {
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}

.dashboard-top strong,
.chart-head strong,
.lead-panel strong {
  display: block;
  margin-top: 4px;
  font-size: 17px;
}

.live-dot,
.popular {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 10px;
  color: var(--green);
  background: var(--green-soft);
  border-radius: 8px;
  font-size: 12px;
  font-weight: 800;
}

.metric-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin: 22px 0;
}

.metric-card,
.feature-card,
.process-list article,
.testimonial-grid figure {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.metric-card {
  padding: 18px;
}

.metric-card span,
.metric-card em {
  display: block;
  color: var(--muted);
  font-size: 12px;
  font-style: normal;
  font-weight: 800;
}

.metric-card strong {
  display: block;
  margin: 9px 0 6px;
  font-size: 28px;
  letter-spacing: 0;
}

.metric-card em {
  color: var(--green);
}

.chart-block {
  padding: 18px;
  background: #f7fbff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.chart-bars {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  align-items: end;
  gap: 10px;
  height: 150px;
  margin-top: 20px;
  padding-top: 8px;
}

.chart-bars span {
  display: block;
  height: var(--h);
  min-height: 34px;
  background: linear-gradient(180deg, var(--blue), #7db7ff);
  border-radius: 6px 6px 2px 2px;
}

.lead-panel {
  margin-top: 14px;
  padding: 18px;
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.lead-panel ul,
.included-list {
  padding: 0;
  margin: 18px 0 0;
  list-style: none;
}

.lead-panel li {
  display: grid;
  grid-template-columns: 38px 1fr;
  column-gap: 12px;
  align-items: center;
  padding: 12px 0;
  border-top: 1px solid var(--line);
}

.lead-panel li span,
.testimonial-grid figcaption span {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  color: var(--blue);
  background: var(--surface-blue);
  border-radius: 50%;
  font-size: 13px;
  font-weight: 800;
  grid-row: span 2;
}

.lead-panel b {
  font-size: 14px;
}

.lead-panel small {
  color: var(--muted);
}

.roi-chip {
  position: absolute;
  right: -18px;
  bottom: 54px;
  padding: 16px 18px;
  color: #ffffff;
  background: var(--green);
  border-radius: 8px;
  box-shadow: 0 18px 38px rgba(16, 166, 106, 0.28);
  font-size: 18px;
  font-weight: 800;
}

.trusted {
  padding: 32px 0 62px;
  border-top: 1px solid var(--line);
}

.trusted p {
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-align: center;
  text-transform: uppercase;
}

.logo-row {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 18px;
  margin-top: 24px;
}

.logo-row span {
  display: grid;
  min-height: 58px;
  place-items: center;
  color: var(--muted);
  background: var(--bg-soft);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  font-weight: 800;
}

.features,
.portfolio,
.delivery,
.results,
.pricing {
  padding: 94px 0;
}

.features,
.portfolio,
.delivery,
.pricing {
  border-top: 1px solid var(--line);
}

.process,
.final-cta {
  width: 100%;
  max-width: none;
  padding: 96px max(20px, calc((100vw - var(--max)) / 2));
  background: var(--bg-soft);
}

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

.section-heading h2,
.final-cta h2 {
  margin-bottom: 16px;
  font-size: clamp(34px, 4.4vw, 54px);
  line-height: 1.03;
  font-weight: 800;
}

.section-heading p:not(.section-label),
.final-cta p {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.65;
}

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

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

.portfolio-grid article {
  overflow: hidden;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.portfolio-grid h3,
.portfolio-grid p {
  padding: 0 24px;
}

.portfolio-grid h3 {
  margin: 24px 0 10px;
  font-size: 20px;
}

.portfolio-grid p {
  margin-bottom: 26px;
  color: var(--muted);
  line-height: 1.65;
}

.portfolio-grid .text-link {
  display: inline-flex;
  margin: 0 24px 26px;
}

.text-link {
  color: var(--blue);
  font-size: 14px;
  font-weight: 800;
}

.text-link:hover {
  color: var(--blue-dark);
}

.portfolio-preview {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 220px;
  padding: 22px;
  overflow: hidden;
  color: #ffffff;
  background: linear-gradient(135deg, #174bb4, #10a66a);
}

.portfolio-preview::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(180deg, rgba(8, 16, 30, 0.18), rgba(8, 16, 30, 0.72));
}

.portfolio-preview img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.02);
}

.portfolio-preview span {
  position: relative;
  z-index: 1;
  width: fit-content;
  padding: 6px 10px;
  color: #102033;
  background: rgba(255, 255, 255, 0.88);
  border-radius: 8px;
  font-size: 13px;
  font-weight: 800;
}

.portfolio-preview strong {
  position: relative;
  z-index: 1;
  max-width: 260px;
  font-size: 28px;
  line-height: 1.05;
  text-shadow: 0 2px 18px rgba(0, 0, 0, 0.42);
}

.food-preview {
  background: linear-gradient(135deg, #0f766e, #2563eb);
}

.care-preview {
  background: linear-gradient(135deg, #1d4ed8, #059669);
}

.delivery {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(420px, 1fr);
  gap: 56px;
  align-items: center;
}

.delivery-copy h2 {
  max-width: 640px;
  margin-bottom: 18px;
  font-size: clamp(34px, 4.4vw, 54px);
  line-height: 1.03;
}

.delivery-copy p:not(.section-label) {
  max-width: 640px;
  margin-bottom: 26px;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.65;
}

.delivery-board {
  display: grid;
  gap: 14px;
  padding: 16px;
  background: #f7fbff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 22px 52px rgba(24, 39, 75, 0.08);
}

.delivery-board article {
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 16px;
  padding: 20px;
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.delivery-board span {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  color: #ffffff;
  background: var(--blue);
  border-radius: 8px;
  font-weight: 800;
}

.delivery-board h3 {
  margin-bottom: 8px;
  font-size: 20px;
}

.delivery-board p {
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
}

.feature-card {
  padding: 26px;
  transition: transform 160ms ease, box-shadow 160ms ease, border-color 160ms ease;
}

.feature-card:hover {
  border-color: #b7c6dc;
  box-shadow: 0 18px 40px rgba(24, 39, 75, 0.09);
  transform: translateY(-2px);
}

.feature-icon {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  margin-bottom: 22px;
  color: var(--blue);
  background: var(--surface-blue);
  border-radius: 8px;
}

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

.feature-card h3,
.process-list h3 {
  margin-bottom: 10px;
  font-size: 19px;
}

.feature-card p,
.process-list p {
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
}

.process-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  width: min(calc(100% - 40px), var(--max));
  margin: 0 auto;
}

.process-list article {
  padding: 30px;
}

.process-list span {
  display: block;
  margin-bottom: 40px;
  color: var(--blue);
  font-size: 44px;
  font-weight: 800;
  line-height: 1;
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.testimonial-grid figure {
  margin: 0;
  padding: 34px;
}

.testimonial-grid blockquote {
  position: relative;
  margin: 0 0 30px;
  color: #263241;
  font-size: 22px;
  font-weight: 700;
  line-height: 1.5;
}

.testimonial-grid figcaption {
  display: flex;
  align-items: center;
  gap: 12px;
}

.testimonial-grid small {
  display: block;
  margin-top: 4px;
  color: var(--muted);
}

.pricing {
  background: linear-gradient(180deg, #ffffff 0%, #f7fbff 100%);
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 520px));
  justify-content: center;
  gap: 18px;
}

.pricing-card {
  width: min(100%, 520px);
  margin: 0 auto;
  padding: 34px;
  background: #ffffff;
  border: 1px solid #b7c6dc;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.pricing-top {
  display: block;
}

.pricing-top h3 {
  margin: 24px 0 8px;
  font-size: 30px;
}

.price {
  display: flex;
  align-items: baseline;
  gap: 6px;
  margin-top: 22px;
}

.price strong {
  font-size: 56px;
  line-height: 1;
}

.price span {
  color: var(--muted);
  font-size: 18px;
  font-weight: 700;
}

.included-list {
  display: grid;
  gap: 14px;
  margin: 28px 0;
}

.included-list li {
  position: relative;
  padding-left: 32px;
  color: #243144;
  font-weight: 700;
}

.included-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 1px;
  width: 20px;
  height: 20px;
  background: var(--green);
  border-radius: 50%;
  clip-path: polygon(14% 52%, 28% 38%, 43% 53%, 73% 20%, 88% 34%, 43% 82%);
}

.pricing-button {
  width: 100%;
}

.pricing-card .trial-note {
  margin-top: 16px;
  text-align: center;
}

.page-hero {
  padding: 88px 0 64px;
  border-bottom: 1px solid var(--line);
}

.page-hero h1 {
  max-width: 840px;
}

.page-hero p {
  max-width: 720px;
  color: var(--muted);
  font-size: 20px;
  line-height: 1.65;
}

.content-section {
  padding: 82px 0;
  border-bottom: 1px solid var(--line);
}

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

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

.content-card h2,
.content-card h3 {
  margin-bottom: 12px;
}

.content-card p,
.content-card li {
  color: var(--muted);
  line-height: 1.65;
}

.content-card ul,
.content-card ol {
  padding-left: 20px;
  margin-bottom: 0;
}

.wide-card {
  grid-column: span 2;
}

.intake-form {
  display: grid;
  gap: 16px;
  width: min(100%, 760px);
}

.intake-form label {
  display: grid;
  gap: 8px;
  color: #344054;
  font-size: 13px;
  font-weight: 800;
}

.intake-form input,
.intake-form select,
.intake-form textarea {
  width: 100%;
  min-height: 50px;
  padding: 12px 14px;
  color: var(--text);
  background: #ffffff;
  border: 1px solid var(--line-strong);
  border-radius: 8px;
  outline: none;
}

.intake-form textarea {
  min-height: 120px;
  resize: vertical;
}

.intake-form input:focus,
.intake-form select:focus,
.intake-form textarea:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 4px rgba(35, 100, 232, 0.12);
}

.final-cta {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(340px, 460px);
  align-items: center;
  gap: 60px;
}

.final-cta > div {
  width: min(100%, 620px);
  justify-self: end;
}

.signup-form {
  width: min(100%, 460px);
  padding: 26px;
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 22px 52px rgba(24, 39, 75, 0.1);
}

.signup-form label {
  display: grid;
  gap: 8px;
  margin-bottom: 16px;
  color: #344054;
  font-size: 13px;
  font-weight: 800;
}

.signup-form input,
.signup-form select,
.signup-form textarea {
  width: 100%;
  min-height: 50px;
  padding: 12px 14px;
  color: var(--text);
  background: #ffffff;
  border: 1px solid var(--line-strong);
  border-radius: 8px;
  outline: none;
}

.signup-form textarea {
  min-height: 110px;
  resize: vertical;
}

.signup-form input:focus,
.signup-form select:focus,
.signup-form textarea:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 4px rgba(35, 100, 232, 0.12);
}

.signup-form button {
  width: 100%;
}

.signup-form button:disabled {
  cursor: wait;
  opacity: 0.72;
  transform: none;
}

.hidden-field {
  display: none;
}

.form-status {
  min-height: 22px;
  margin: 14px 0 0;
  color: var(--green);
  font-size: 14px;
  font-weight: 800;
}

.form-note {
  margin: -2px 0 16px;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.55;
}

.form-note a {
  color: var(--blue);
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  width: min(calc(100% - 40px), var(--max));
  min-height: 92px;
  margin: 0 auto;
  color: var(--muted);
}

.site-footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  font-size: 14px;
  font-weight: 700;
}

.legal-page {
  max-width: 860px;
  padding: 70px 0;
}

.legal-page .brand {
  margin-bottom: 46px;
}

.legal-page h1 {
  font-size: clamp(38px, 6vw, 58px);
}

.legal-page p,
.legal-page li {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.7;
}

.legal-page a:not(.brand) {
  color: var(--blue);
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.legal-page a.button {
  color: #ffffff;
  text-decoration: none;
}

.legal-block {
  padding: 28px 0;
  border-top: 1px solid var(--line);
}

.legal-block h2 {
  margin-bottom: 10px;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 24px;
}

.legal-block ul {
  padding-left: 22px;
  margin: 0;
}

.legal-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  padding-top: 28px;
  border-top: 1px solid var(--line);
}

.legal-nav a {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 0 14px;
  color: var(--text) !important;
  background: var(--bg-soft);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  text-decoration: none !important;
}

h1,
h2 {
  font-family: var(--display);
  letter-spacing: 0;
}

.growth-hero {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(420px, 1fr);
  gap: 64px;
  align-items: center;
  min-height: 710px;
  padding: 72px 0 76px;
}

.growth-hero h1 {
  max-width: 660px;
  margin-bottom: 24px;
  font-size: clamp(48px, 6.3vw, 84px);
  line-height: 0.98;
}

.growth-hero .hero-lede {
  max-width: 600px;
  color: #3e493b;
}

.growth-hero-media {
  position: relative;
  min-height: 610px;
  overflow: hidden;
  background: #0c2014;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.growth-hero-media::before {
  position: absolute;
  inset: 0;
  z-index: 1;
  content: "";
  pointer-events: none;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0) 36%),
    linear-gradient(180deg, rgba(5, 23, 12, 0), rgba(5, 23, 12, 0.32));
}

.growth-hero-media img {
  width: 100%;
  height: 610px;
  object-fit: cover;
  object-position: center;
}

.hero-insight-card {
  position: absolute;
  right: 22px;
  bottom: 24px;
  z-index: 2;
  width: min(280px, calc(100% - 44px));
  padding: 18px;
  color: #172113;
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: var(--radius);
  box-shadow: 0 18px 45px rgba(6, 20, 10, 0.24);
}

.hero-insight-card strong,
.hero-insight-card span {
  display: block;
}

.hero-insight-card strong {
  margin-bottom: 6px;
  font-size: 15px;
}

.hero-insight-card span {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.5;
}

.hero-insight-card svg {
  width: 112px;
  height: 42px;
  margin-top: 12px;
  margin-left: auto;
  color: var(--blue);
}

.hero-insight-card path {
  fill: none;
  stroke: currentColor;
  stroke-width: 4;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.proof-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 44px;
}

.proof-row article {
  min-width: 0;
}

.proof-row span,
.review-window .window-dots span {
  display: grid;
  place-items: center;
}

.proof-row span {
  width: 34px;
  height: 34px;
  margin-bottom: 16px;
  color: var(--blue);
  background: var(--green-soft);
  border-radius: 50%;
}

.proof-row svg {
  width: 18px;
  height: 18px;
}

.proof-row path {
  fill: none;
  stroke: currentColor;
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.proof-row h3 {
  margin-bottom: 8px;
  font-size: 16px;
}

.proof-row p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.55;
}

.demo-showcase {
  position: relative;
  display: grid;
  gap: 34px;
  padding-left: 38px;
  --demo-progress: 0%;
}

.demo-showcase::before,
.demo-showcase::after {
  position: absolute;
  left: 13px;
  width: 3px;
  content: "";
  border-radius: 999px;
}

.demo-showcase::before {
  top: 42px;
  bottom: 42px;
  background: #e4ece1;
  opacity: 0;
  transform: scaleY(0.7);
  transform-origin: top;
  transition: opacity 600ms ease, transform 900ms ease;
}

.demo-showcase::after {
  top: 42px;
  height: var(--demo-progress);
  max-height: calc(100% - 84px);
  background: linear-gradient(180deg, #0f766e, #9a3412, #b83280);
  opacity: 0;
  transition: height 720ms cubic-bezier(0.2, 0.8, 0.2, 1), opacity 460ms ease;
}

.motion-ready .demo-showcase:has(.is-visible)::before {
  opacity: 1;
  transform: scaleY(1);
}

.motion-ready .demo-showcase:has(.is-visible)::after {
  opacity: 1;
}

.demo-scroll-meter {
  position: absolute;
  top: 32px;
  bottom: 32px;
  left: 4px;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  pointer-events: none;
}

.demo-scroll-meter span {
  width: 21px;
  height: 21px;
  background: #ffffff;
  border: 2px solid #dce8d8;
  border-radius: 50%;
  box-shadow: 0 8px 22px rgba(22, 52, 28, 0.12);
  transition: background 360ms ease, border-color 360ms ease, transform 360ms ease, box-shadow 360ms ease;
}

.demo-showcase[data-active-demo="0"] .demo-scroll-meter span:nth-child(1),
.demo-showcase[data-active-demo="1"] .demo-scroll-meter span:nth-child(2),
.demo-showcase[data-active-demo="2"] .demo-scroll-meter span:nth-child(3) {
  background: var(--demo-active-accent, var(--blue));
  border-color: var(--demo-active-accent, var(--blue));
  box-shadow: 0 10px 26px rgba(15, 107, 44, 0.28);
  transform: scale(1.22);
}

.demo-card {
  position: relative;
  display: grid;
  grid-template-columns: minmax(300px, 0.9fr) minmax(0, 1fr);
  gap: 30px;
  align-items: center;
  padding: 18px;
  overflow: hidden;
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 18px 42px rgba(22, 52, 28, 0.07);
  transform-origin: center;
  transition:
    opacity 520ms ease,
    transform 620ms cubic-bezier(0.2, 0.8, 0.2, 1),
    border-color 420ms ease,
    box-shadow 420ms ease,
    background 420ms ease;
}

.demo-card::before {
  position: absolute;
  top: 18px;
  bottom: 18px;
  left: 0;
  width: 4px;
  content: "";
  background: var(--demo-card-accent, var(--blue));
  border-radius: 0 999px 999px 0;
  opacity: 0;
  transform: scaleY(0.36);
  transform-origin: center;
  transition: opacity 360ms ease, transform 520ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

.demo-card-roofing {
  --demo-card-accent: #0f766e;
  --demo-card-soft: #f1fbf8;
}

.demo-card-cafe {
  --demo-card-accent: #9a3412;
  --demo-card-soft: #fff6ec;
}

.demo-card-salon {
  --demo-card-accent: #b83280;
  --demo-card-soft: #fff3fa;
}

.demo-showcase[data-active-demo="0"] {
  --demo-active-accent: #0f766e;
}

.demo-showcase[data-active-demo="1"] {
  --demo-active-accent: #9a3412;
}

.demo-showcase[data-active-demo="2"] {
  --demo-active-accent: #b83280;
}

.motion-ready [data-reveal] {
  opacity: 0;
  transform: translateY(42px) scale(0.985);
}

.motion-ready [data-reveal].is-visible,
.motion-ready [data-reveal].is-active {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.motion-ready .demo-card {
  opacity: 0.54;
  transform: translateY(36px) scale(0.965);
}

.motion-ready .demo-card.is-visible {
  opacity: 0.72;
  transform: translateY(0) scale(0.985);
}

.motion-ready .demo-card.is-active {
  opacity: 1;
  background: linear-gradient(135deg, #ffffff 0%, #ffffff 54%, var(--demo-card-soft, #f6fbf4) 100%);
  border-color: var(--demo-card-accent, var(--blue));
  border-color: color-mix(in srgb, var(--demo-card-accent, var(--blue)) 34%, var(--line));
  box-shadow: 0 34px 90px rgba(22, 52, 28, 0.17);
  transform: translateY(0) scale(1.015);
}

.motion-ready .demo-card.is-active::before {
  opacity: 1;
  transform: scaleY(1);
}

.demo-card:nth-child(even) {
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.9fr);
}

.demo-card:nth-child(even) .demo-image {
  order: 2;
}

.demo-image {
  position: relative;
  display: block;
  height: 300px;
  overflow: hidden;
  border-radius: var(--radius);
  background: #102414;
}

.demo-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.9) contrast(0.96);
  transition: transform 620ms cubic-bezier(0.2, 0.8, 0.2, 1), filter 420ms ease;
}

.demo-image::after {
  position: absolute;
  inset: auto 0 0;
  height: 42%;
  content: "";
  background: linear-gradient(180deg, transparent, rgba(8, 18, 12, 0.72));
  opacity: 0.92;
}

.demo-image > span {
  position: absolute;
  right: 16px;
  bottom: 16px;
  z-index: 1;
  max-width: calc(100% - 32px);
  padding: 9px 12px;
  color: #ffffff;
  background: rgba(10, 18, 14, 0.66);
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 8px;
  backdrop-filter: blur(12px);
  font-size: 13px;
  font-weight: 850;
  line-height: 1.25;
  transform: translateY(10px);
  opacity: 0;
  transition: transform 420ms ease, opacity 420ms ease;
}

.demo-card:hover .demo-image img {
  transform: scale(1.025);
}

.motion-ready .demo-card.is-active .demo-image img {
  filter: saturate(1.08) contrast(1.02);
  transform: scale(1.045);
}

.motion-ready .demo-card.is-active .demo-image > span,
.demo-card:hover .demo-image > span {
  opacity: 1;
  transform: translateY(0);
}

.demo-card > div {
  padding: 8px 12px;
}

.demo-card h3 {
  margin-bottom: 12px;
  font-family: var(--display);
  font-size: clamp(30px, 4vw, 44px);
  line-height: 1;
}

.demo-card p {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.65;
}

.check-list {
  display: grid;
  gap: 10px;
  padding: 0;
  margin: 20px 0 24px;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 28px;
  color: #283524;
  line-height: 1.55;
}

.check-list li::before {
  position: absolute;
  left: 0;
  top: 0.2em;
  width: 18px;
  height: 18px;
  content: "";
  background: var(--blue);
  border-radius: 50%;
  clip-path: polygon(14% 52%, 28% 38%, 43% 53%, 73% 20%, 88% 34%, 43% 82%);
}

.portfolio-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
  margin-top: 32px;
}

.care-analytics,
.review-hub {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(420px, 1fr);
  gap: 64px;
  align-items: center;
  padding: 96px 0;
  border-top: 1px solid var(--line);
}

.care-copy h2,
.review-copy h2 {
  max-width: 620px;
  margin-bottom: 18px;
  font-size: clamp(36px, 4.8vw, 58px);
  line-height: 1.03;
}

.care-copy p:not(.section-label),
.review-copy p:not(.section-label) {
  max-width: 620px;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.65;
}

.analytics-panel {
  position: relative;
  padding: 26px;
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.analytics-header,
.top-pages p {
  display: flex;
  justify-content: space-between;
  gap: 16px;
}

.analytics-header {
  align-items: center;
  margin-bottom: 20px;
}

.analytics-header strong {
  font-size: 18px;
}

.analytics-header span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

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

.analytics-metrics article {
  padding: 18px;
  background: var(--bg-soft);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.analytics-metrics span,
.analytics-metrics em {
  display: block;
  color: var(--muted);
  font-size: 12px;
  font-style: normal;
  font-weight: 800;
}

.analytics-metrics strong {
  display: block;
  margin: 8px 0;
  font-size: 30px;
}

.analytics-metrics em {
  color: var(--blue);
}

.simple-chart {
  display: grid;
  grid-template-columns: repeat(8, 1fr);
  align-items: end;
  gap: 12px;
  height: 230px;
  margin: 24px 0;
  padding: 22px;
  background: linear-gradient(180deg, #ffffff, #f5faf4);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.simple-chart span {
  display: block;
  height: var(--h);
  min-height: 36px;
  background: linear-gradient(180deg, #1f8f46, #9ed2aa);
  border-radius: 7px 7px 2px 2px;
}

.top-pages {
  padding: 20px;
  background: #102414;
  border-radius: var(--radius);
  color: #ffffff;
}

.top-pages strong {
  display: block;
  margin-bottom: 12px;
}

.top-pages p {
  margin: 0;
  padding: 10px 0;
  color: #d7e9d6;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
}

.top-pages b {
  color: #ffffff;
}

.trust-readiness {
  padding: 96px 0;
  border-top: 1px solid var(--line);
}

.trust-copy {
  max-width: 780px;
  margin-bottom: 36px;
}

.trust-copy h2 {
  max-width: 720px;
  margin-bottom: 16px;
  font-size: clamp(36px, 4.8vw, 58px);
  line-height: 1.03;
}

.trust-copy p:not(.section-label) {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.65;
}

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

.trust-grid article {
  min-width: 0;
  padding: 24px;
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 14px 36px rgba(22, 52, 28, 0.06);
}

.trust-grid span {
  display: inline-grid;
  place-items: center;
  width: 38px;
  height: 38px;
  margin-bottom: 22px;
  color: #ffffff;
  background: #102414;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 900;
}

.trust-grid h3 {
  margin-bottom: 10px;
  font-size: 19px;
}

.trust-grid p {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
}

.faq-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(0, 1fr);
  gap: 42px;
  align-items: start;
  margin-top: 42px;
  padding-top: 42px;
  border-top: 1px solid var(--line);
}

.compact-heading {
  max-width: 520px;
  margin: 0;
  text-align: left;
}

.compact-heading h2 {
  font-size: clamp(32px, 4vw, 48px);
}

.faq-list {
  display: grid;
  gap: 12px;
}

.faq-list details {
  min-width: 0;
  padding: 18px 20px;
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 12px 30px rgba(22, 52, 28, 0.05);
}

.faq-list details[open] {
  border-color: rgba(15, 107, 44, 0.34);
}

.faq-list summary {
  cursor: pointer;
  color: #182216;
  font-weight: 800;
  line-height: 1.45;
}

.faq-list summary::marker {
  color: var(--blue);
}

.faq-list p {
  margin: 12px 0 0;
  color: var(--muted);
  line-height: 1.65;
}

.launch-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
  width: min(calc(100% - 40px), var(--max));
  margin: 0 auto;
}

.launch-steps article {
  position: relative;
  text-align: center;
}

.launch-steps article:not(:last-child)::after {
  position: absolute;
  top: 29px;
  right: -32px;
  width: 42px;
  height: 1px;
  content: "";
  background: repeating-linear-gradient(90deg, #a8bba5 0 6px, transparent 6px 12px);
}

.launch-steps span {
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  margin: 0 auto 20px;
  color: var(--blue);
  background: var(--green-soft);
  border-radius: 50%;
  font-size: 15px;
  font-weight: 800;
}

.launch-steps h3 {
  margin-bottom: 10px;
  font-size: 18px;
}

.launch-steps p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.6;
}

.review-hub {
  background:
    linear-gradient(90deg, #ffffff 0%, #ffffff 58%, #f6faf4 58%, #f6faf4 100%);
}

.review-window {
  overflow: hidden;
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.window-dots {
  display: flex;
  gap: 8px;
  padding: 14px 16px;
  border-bottom: 1px solid var(--line);
}

.review-window .window-dots span {
  width: 10px;
  height: 10px;
  background: #d9e3d5;
  border-radius: 50%;
}

.review-window img {
  display: block;
  width: 100%;
  height: 300px;
  object-fit: cover;
  object-position: top;
}

.comment-stack {
  display: grid;
  gap: 12px;
  padding: 18px;
}

.comment-stack article {
  padding: 16px;
  background: var(--bg-soft);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.comment-stack strong {
  display: block;
  margin-bottom: 6px;
  color: var(--blue);
  font-size: 13px;
  text-transform: uppercase;
}

.comment-stack p {
  margin: 0;
  color: var(--muted);
  line-height: 1.5;
}

.preview-page .page-hero {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 0.7fr);
  gap: 48px;
  align-items: center;
}

.preview-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

.preview-note {
  padding: 24px;
  background: var(--bg-soft);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 18px 46px rgba(22, 52, 28, 0.08);
}

.preview-note h2 {
  margin-bottom: 12px;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 20px;
}

.preview-note p,
.preview-note li {
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
}

.preview-note ol {
  display: grid;
  gap: 12px;
  padding-left: 20px;
  margin: 0;
}

.review-path {
  border-top: 1px solid var(--line);
}

.review-path-grid,
.review-scoreboard {
  display: grid;
  gap: 16px;
}

.review-path-grid {
  grid-template-columns: repeat(4, 1fr);
}

.review-path-grid article {
  min-width: 0;
  padding: 24px;
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 14px 36px rgba(22, 52, 28, 0.06);
}

.review-path-grid span {
  display: inline-grid;
  place-items: center;
  width: 38px;
  height: 38px;
  margin-bottom: 24px;
  color: #ffffff;
  background: #102414;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 900;
}

.review-path-grid h3 {
  margin-bottom: 9px;
  font-size: 19px;
}

.review-path-grid p {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
}

.portfolio-review {
  background: linear-gradient(180deg, #ffffff 0%, #f8fbf7 100%);
  border-top: 1px solid var(--line);
}

.review-scoreboard {
  grid-template-columns: repeat(4, 1fr);
  margin-bottom: 26px;
}

.review-scoreboard article {
  padding: 18px;
  background: #102414;
  border-radius: var(--radius);
  color: #ffffff;
}

.review-scoreboard span {
  display: block;
  margin-bottom: 8px;
  color: #9ed2aa;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.review-scoreboard strong {
  display: block;
  font-size: 15px;
  line-height: 1.4;
}

.preview-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.preview-card {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 14px 36px rgba(22, 52, 28, 0.07);
  transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.preview-card:hover {
  border-color: rgba(15, 107, 44, 0.32);
  box-shadow: 0 24px 58px rgba(22, 52, 28, 0.12);
  transform: translateY(-3px);
}

.preview-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  transition: transform 420ms ease, filter 420ms ease;
}

.preview-card:hover img {
  filter: saturate(1.08) contrast(1.02);
  transform: scale(1.025);
}

.preview-card-body {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 24px;
}

.preview-badge {
  width: fit-content;
  margin-bottom: 16px;
  padding: 6px 9px;
  color: var(--blue);
  background: var(--green-soft);
  border: 1px solid rgba(15, 107, 44, 0.16);
  border-radius: 8px;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.cafe-badge {
  color: #9a3412;
  background: #fff6ec;
  border-color: #f0d0b9;
}

.salon-badge {
  color: #b83280;
  background: #fff3fa;
  border-color: #f0c9de;
}

.roofing-badge {
  color: #0f766e;
  background: #ecfdf8;
  border-color: #b8eee7;
}

.preview-card h2 {
  margin-bottom: 10px;
  font-family: var(--display);
  font-size: 28px;
}

.preview-card p {
  color: var(--muted);
  line-height: 1.6;
}

.before-after {
  display: grid;
  gap: 10px;
  margin: 18px 0;
  padding: 16px;
  background: var(--bg-soft);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.before-after p {
  margin: 0;
  font-size: 14px;
}

.before-after strong {
  color: var(--text);
}

.review-question {
  margin: 0 0 18px;
  color: #283524 !important;
  font-size: 14px;
  font-weight: 800;
}

.preview-card .text-link {
  margin-top: auto;
}

.feedback-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(340px, 480px);
  gap: 48px;
  align-items: start;
}

.feedback-list {
  display: grid;
  gap: 16px;
}

.feedback-list article {
  padding: 22px;
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.feedback-list h2,
.feedback-list h3 {
  margin-bottom: 8px;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 20px;
}

.feedback-list p {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
}

@media (max-width: 980px) {
  .hero,
  .delivery,
  .final-cta,
  .growth-hero,
  .care-analytics,
  .review-hub,
  .preview-page .page-hero,
  .feedback-layout {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
    padding-top: 54px;
  }

  .growth-hero {
    min-height: auto;
    padding-top: 54px;
  }

  .demo-card,
  .demo-card:nth-child(even) {
    grid-template-columns: 1fr;
  }

  .demo-showcase {
    padding-left: 30px;
  }

  .demo-card:nth-child(even) .demo-image {
    order: 0;
  }

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

  .launch-steps article::after {
    display: none;
  }

  .feature-grid,
  .portfolio-grid,
  .pricing-grid,
  .content-grid,
  .process-list,
  .preview-grid,
  .review-path-grid,
  .review-scoreboard,
  .trust-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .faq-panel {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .wide-card {
    grid-column: span 2;
  }

  .final-cta > div {
    justify-self: start;
  }
}

@media (max-width: 760px) {
  .site-header {
    width: min(calc(100% - 28px), var(--max));
  }

  .nav-toggle {
    display: inline-flex;
  }

  .site-nav {
    position: fixed;
    inset: 76px 14px auto;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 12px;
    background: #ffffff;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
  }

  body.nav-open .site-nav {
    display: flex;
  }

  .site-nav a {
    padding: 15px 12px;
  }

  .nav-cta {
    justify-content: center;
    margin-top: 8px;
  }

  .section-shell {
    width: min(calc(100% - 28px), var(--max));
  }

  h1 {
    font-size: clamp(42px, 13vw, 58px);
  }

  .growth-hero h1 {
    font-size: clamp(44px, 13vw, 62px);
  }

  .hero-lede {
    font-size: 18px;
  }

  .hero-actions .button {
    width: 100%;
  }

  .hero-visual {
    min-width: 0;
  }

  .growth-hero-media {
    min-height: 460px;
  }

  .growth-hero-media img {
    height: 460px;
  }

  .dashboard {
    padding: 14px;
  }

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

  .chart-bars {
    height: 118px;
  }

  .roi-chip {
    right: 10px;
    bottom: -18px;
  }

  .trusted {
    padding-top: 58px;
  }

  .logo-row,
  .proof-row,
  .feature-grid,
  .portfolio-grid,
  .pricing-grid,
  .content-grid,
  .process-list,
  .testimonial-grid,
  .preview-grid,
  .review-path-grid,
  .review-scoreboard,
  .trust-grid,
  .analytics-metrics,
  .launch-steps {
    grid-template-columns: 1fr;
  }

  .demo-card {
    padding: 12px;
  }

  .demo-showcase {
    padding-left: 0;
  }

  .demo-showcase::before,
  .demo-showcase::after,
  .demo-scroll-meter {
    display: none;
  }

  .demo-image {
    height: 230px;
  }

  .demo-image > span {
    right: 12px;
    bottom: 12px;
    opacity: 1;
    transform: none;
  }

  .demo-card > div {
    padding: 6px;
  }

  .care-analytics,
  .review-hub,
  .trust-readiness {
    padding: 74px 0;
  }

  .trust-grid article,
  .faq-list details {
    padding: 20px;
  }

  .review-hub {
    background: #ffffff;
  }

  .simple-chart {
    height: 180px;
    padding: 16px;
  }

  .review-window img {
    height: 230px;
  }

  .wide-card {
    grid-column: span 1;
  }

  .features,
  .portfolio,
  .delivery,
  .results,
  .pricing {
    padding: 74px 0;
  }

  .process,
  .final-cta {
    padding: 74px 14px;
  }

  .process-list {
    width: 100%;
  }

  .testimonial-grid blockquote {
    font-size: 19px;
  }

  .pricing-card,
  .signup-form {
    padding: 24px;
  }

  .price strong {
    font-size: 48px;
  }

  .preview-card img {
    height: 210px;
  }

  .preview-card-body,
  .review-path-grid article {
    padding: 20px;
  }

  .site-footer {
    flex-direction: column;
    align-items: flex-start;
    padding: 26px 0;
  }
}

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

  .motion-ready [data-reveal],
  .motion-ready .demo-card,
  .motion-ready .demo-card.is-visible,
  .motion-ready .demo-card.is-active {
    opacity: 1;
    transform: none;
  }
}

/* Fluid editorial refinement */

:root {
  --max: 1280px;
  --brass: #d3ad43;
  --forest-ink: #082c1b;
  --forest-deep: #064b2d;
  --paper-green: #edf2ec;
}

*,
*::before,
*::after {
  letter-spacing: 0;
}

.home-page {
  overflow-x: hidden;
}

.home-page .site-header {
  width: min(calc(100% - 64px), var(--max));
}

.home-page .section-shell {
  width: min(calc(100% - 64px), var(--max));
}

.home-page .growth-hero {
  position: relative;
  grid-template-columns: minmax(360px, 0.78fr) minmax(560px, 1.22fr);
  gap: 28px;
  width: min(calc(100% - 32px), 1440px);
  min-height: 690px;
  padding: 34px 0 56px;
}

.home-page .growth-hero::before {
  position: absolute;
  z-index: -1;
  top: 72px;
  left: 42%;
  width: 180px;
  height: 2px;
  background: var(--blue);
  content: "";
  transform: rotate(-62deg);
  transform-origin: left;
}

.home-page .growth-hero-copy {
  position: relative;
  z-index: 2;
  padding-left: clamp(16px, 4vw, 72px);
}

.home-page .growth-hero h1 {
  max-width: 650px;
  font-size: clamp(54px, 5.8vw, 86px);
  line-height: 0.96;
}

.home-page .growth-hero .hero-lede {
  max-width: 540px;
  font-size: 18px;
}

.home-page .growth-hero-media {
  min-height: 600px;
  height: auto;
  overflow: hidden;
  clip-path: none;
  border-radius: 46% 0 0 46% / 100% 0 0 100%;
}

.home-page .growth-hero-media img {
  object-position: center 38%;
}

.home-page .trusted {
  width: min(calc(100% - 64px), var(--max));
  padding: 28px 0;
}

.home-page .logo-row span {
  position: relative;
  padding: 0 0 0 18px;
  background: transparent;
  border: 0;
  border-radius: 0;
}

.home-page .logo-row span::before {
  position: absolute;
  top: 50%;
  left: 0;
  width: 7px;
  height: 7px;
  background: var(--blue);
  content: "";
  transform: translateY(-50%) rotate(45deg);
}

.home-page .features {
  position: relative;
  overflow: hidden;
  padding-top: 136px;
  padding-bottom: 140px;
}

.home-page .features::before {
  position: absolute;
  z-index: -1;
  top: 84px;
  right: -36vw;
  width: 72vw;
  height: 330px;
  background: var(--paper-green);
  clip-path: polygon(18% 0, 100% 0, 100% 100%, 0 78%);
  content: "";
}

.home-page .features .section-heading {
  max-width: 670px;
  margin-bottom: 70px;
}

.home-page .feature-grid {
  grid-template-columns: repeat(3, 1fr);
  border: 0;
}

.home-page .feature-card {
  position: relative;
  min-height: 260px;
  padding: 38px 34px 34px 0;
  border: 0;
  border-top: 1px solid var(--line-strong);
}

.home-page .feature-card:nth-child(3n + 2),
.home-page .feature-card:nth-child(3n + 3) {
  padding-left: 34px;
  border-left: 1px solid var(--line);
}

.home-page .feature-card:nth-child(n + 4) {
  border-top-color: var(--line);
}

.home-page .feature-card:hover {
  background: transparent;
}

.home-page .feature-card::after {
  position: absolute;
  right: 18px;
  bottom: 20px;
  width: 34px;
  height: 3px;
  background: var(--brass);
  content: "";
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 220ms ease;
}

.home-page .feature-card:hover::after {
  transform: scaleX(1);
}

.home-page .feature-icon {
  margin-bottom: 54px;
}

.home-page .portfolio {
  position: relative;
  width: min(calc(100% - 32px), 1440px);
  padding: 142px clamp(24px, 6vw, 96px) 118px;
  color: #fff;
  background: var(--forest-deep);
  border: 0;
  clip-path: polygon(0 5%, 43% 2%, 62% 0, 100% 3%, 100% 97%, 66% 100%, 34% 98%, 0 100%);
}

.home-page .portfolio::before {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 39%;
  width: 1px;
  background: rgba(255, 255, 255, 0.16);
  content: "";
}

.home-page .portfolio .section-heading {
  max-width: 700px;
  margin-bottom: 34px;
}

.home-page .portfolio .section-label,
.home-page .portfolio .text-link {
  color: #f3c943;
}

.home-page .portfolio .section-heading > p:last-child,
.home-page .demo-card > div > p,
.home-page .portfolio .check-list {
  color: rgba(255, 255, 255, 0.78);
}

.home-page .demo-showcase {
  padding-left: 68px;
}

.home-page .demo-showcase::before {
  background: rgba(255, 255, 255, 0.32);
}

.home-page .demo-showcase::after {
  background: #f3c943;
}

.home-page .demo-scroll-meter span {
  background: var(--forest-deep);
  border-color: rgba(255, 255, 255, 0.58);
}

.home-page .demo-scroll-meter span::after {
  color: rgba(255, 255, 255, 0.7);
}

.home-page .demo-showcase[data-active-demo="0"] .demo-scroll-meter span:nth-child(1),
.home-page .demo-showcase[data-active-demo="1"] .demo-scroll-meter span:nth-child(2),
.home-page .demo-showcase[data-active-demo="2"] .demo-scroll-meter span:nth-child(3) {
  background: #f3c943;
  border-color: #f3c943;
}

.home-page .demo-card,
.home-page .demo-card:nth-child(even) {
  grid-template-columns: minmax(320px, 0.72fr) minmax(520px, 1.28fr);
  gap: clamp(52px, 7vw, 108px);
  min-height: 640px;
  padding: 76px 0;
  border-color: rgba(255, 255, 255, 0.18);
}

.home-page .demo-card > div,
.home-page .demo-card-cafe > div,
.home-page .demo-card .demo-image,
.home-page .demo-card-cafe .demo-image {
  order: initial;
}

.home-page .demo-card:nth-of-type(even) > div {
  order: 2;
}

.home-page .demo-card:nth-of-type(even) .demo-image {
  order: 1;
}

.home-page .demo-image {
  height: 500px;
  border: 1px solid rgba(255, 255, 255, 0.28);
}

.home-page .demo-card-roofing .demo-image {
  clip-path: polygon(7% 0, 100% 0, 93% 100%, 0 100%);
}

.home-page .demo-card-cafe .demo-image {
  clip-path: ellipse(82% 100% at 66% 50%);
}

.home-page .demo-card-salon .demo-image {
  clip-path: polygon(0 0, 90% 0, 100% 14%, 100% 100%, 10% 100%, 0 86%);
}

.motion-ready .home-page .demo-card > div {
  opacity: 1;
  transform: none;
}

.motion-ready .home-page .demo-card .demo-image {
  opacity: 0.72;
  clip-path: inset(0 0 0 12%);
  transform: translateY(12px);
  transition:
    clip-path 760ms cubic-bezier(0.2, 0.75, 0.2, 1),
    opacity 420ms ease,
    transform 520ms cubic-bezier(0.2, 0.75, 0.2, 1);
}

.motion-ready .home-page .demo-card.is-active .demo-image,
.motion-ready .home-page .demo-card:hover .demo-image {
  opacity: 1;
  clip-path: inset(0);
  transform: translateY(0);
}

.home-page .demo-card h3 {
  font-size: clamp(48px, 5vw, 72px);
}

.home-page .demo-card-roofing {
  --demo-card-accent: #ffd34f;
}

.home-page .demo-card-cafe {
  --demo-card-accent: #ffb26b;
}

.home-page .demo-card-salon {
  --demo-card-accent: #ff9dca;
}

.home-page .portfolio .demo-card .check-list li {
  color: rgba(255, 255, 255, 0.88);
}

.home-page .portfolio .demo-card .check-list li::before {
  background: var(--demo-card-accent);
}

.home-page .portfolio .demo-card .text-link {
  color: var(--demo-card-accent);
  border-bottom-color: var(--demo-card-accent);
}

.home-page .portfolio .demo-image > span,
.home-page .portfolio .demo-card .text-link {
  letter-spacing: 0;
}

.home-page .portfolio-actions {
  padding-left: 68px;
}

.home-page .portfolio .button-primary {
  color: var(--forest-ink);
  background: #f3c943;
}

.home-page .portfolio .button-secondary {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.6);
}

.home-page .care-analytics {
  position: relative;
  gap: 100px;
  padding: 150px 0;
  border-top: 0;
}

.home-page .care-analytics::before {
  position: absolute;
  z-index: -1;
  top: 90px;
  bottom: 80px;
  left: -10vw;
  width: 52%;
  background: var(--paper-green);
  clip-path: ellipse(80% 100% at 20% 50%);
  content: "";
}

.home-page .analytics-panel {
  position: relative;
  padding: 44px;
  background: var(--forest-ink);
  clip-path: polygon(0 0, 94% 0, 100% 12%, 100% 100%, 6% 100%, 0 88%);
}

.home-page .analytics-panel::before {
  position: absolute;
  top: 18px;
  right: 22px;
  width: 44px;
  height: 3px;
  background: var(--brass);
  content: "";
}

.home-page .trust-readiness {
  display: grid;
  grid-template-columns: minmax(300px, 0.7fr) minmax(0, 1.3fr);
  gap: clamp(60px, 9vw, 140px);
  padding: 132px 0;
  border-top: 1px solid var(--line);
}

.home-page .trust-grid {
  grid-template-columns: 1fr 1fr;
  align-self: start;
  border: 0;
}

.home-page .trust-grid article {
  min-height: 230px;
  padding: 28px;
  border: 0;
  border-top: 1px solid var(--line-strong);
}

.home-page .trust-grid article:nth-child(even) {
  border-left: 1px solid var(--line);
}

.home-page .trust-grid span {
  margin-bottom: 34px;
}

.home-page .faq-panel {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: minmax(280px, 0.64fr) minmax(0, 1.36fr);
  gap: clamp(60px, 8vw, 120px);
  padding-top: 84px;
  border-top: 1px solid var(--line);
}

.home-page .faq-panel .section-heading {
  margin: 0;
}

.home-page .process {
  position: relative;
  width: min(calc(100% - 32px), 1440px);
  padding: 142px clamp(24px, 6vw, 96px);
  overflow: hidden;
  background: var(--paper-green);
  clip-path: polygon(0 0, 100% 4%, 100% 100%, 0 96%);
}

.home-page .launch-steps {
  position: relative;
  border-top: 1px solid var(--blue);
}

.home-page .launch-steps::before {
  position: absolute;
  top: -9px;
  right: 0;
  left: 0;
  height: 17px;
  border-top: 2px solid var(--blue);
  border-radius: 50%;
  content: "";
  opacity: 0.5;
}

.home-page .launch-steps article {
  position: relative;
  min-height: 280px;
  padding: 52px 30px 34px;
  background: transparent;
}

.home-page .launch-steps article::before {
  position: absolute;
  top: -7px;
  left: 30px;
  width: 12px;
  height: 12px;
  background: var(--paper-green);
  border: 3px solid var(--blue);
  border-radius: 50%;
  content: "";
}

.home-page .pricing {
  padding-top: 150px;
  padding-bottom: 140px;
}

.home-page .pricing-grid {
  gap: 0;
  border-top: 1px solid var(--line-strong);
  border-bottom: 1px solid var(--line-strong);
}

.home-page .pricing-card {
  padding: 54px clamp(30px, 5vw, 72px);
  border: 0;
  border-radius: 0;
}

.home-page .pricing-card + .pricing-card {
  border-left: 1px solid var(--line);
}

.home-page .price {
  margin-top: 34px;
}

.home-page .price strong {
  font-size: clamp(52px, 6vw, 82px);
}

.home-page .final-cta {
  position: relative;
  width: min(calc(100% - 32px), 1440px);
  padding: 144px clamp(24px, 7vw, 110px) 120px;
  overflow: hidden;
  background: var(--forest-ink);
  clip-path: polygon(0 5%, 62% 0, 100% 4%, 100% 100%, 0 100%);
}

.home-page .final-cta::before {
  position: absolute;
  top: 0;
  right: 8%;
  width: 28%;
  height: 10px;
  background: var(--brass);
  content: "";
}

.home-page .signup-form {
  border-top: 4px solid var(--brass);
  border-radius: 3px;
}

@media (max-width: 1100px) {
  .home-page .growth-hero {
    grid-template-columns: 1fr;
    width: min(calc(100% - 64px), var(--max));
  }

  .home-page .portfolio {
    padding-top: 180px;
  }

  .home-page .growth-hero-copy {
    padding-left: 0;
  }

  .home-page .growth-hero-media {
    min-height: 620px;
    border-radius: 42% 42% 0 0 / 20% 20% 0 0;
  }

  .home-page .portfolio::before {
    display: none;
  }

  .home-page .demo-card,
  .home-page .demo-card:nth-child(even) {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 760px) {
  .home-page .site-header,
  .home-page .section-shell,
  .home-page .growth-hero {
    width: min(calc(100% - 28px), var(--max));
  }

  .home-page .growth-hero {
    min-height: auto;
    padding-top: 44px;
  }

  .home-page .growth-hero h1 {
    font-size: clamp(46px, 13vw, 64px);
  }

  .home-page .growth-hero-media {
    min-height: 430px;
    height: 58svh;
    border-radius: 38% 38% 0 0 / 16% 16% 0 0;
  }

  .home-page .features {
    padding-top: 96px;
    padding-bottom: 96px;
  }

  .home-page .feature-grid,
  .home-page .trust-grid {
    grid-template-columns: 1fr;
  }

  .home-page .feature-card,
  .home-page .feature-card:nth-child(3n + 2),
  .home-page .feature-card:nth-child(3n + 3) {
    min-height: 0;
    padding: 30px 0;
    border-left: 0;
  }

  .home-page .feature-icon {
    margin-bottom: 28px;
  }

  .home-page .portfolio,
  .home-page .process,
  .home-page .final-cta {
    width: 100%;
    clip-path: none;
  }

  .home-page .portfolio {
    padding: 96px 20px;
  }

  .home-page .demo-showcase,
  .home-page .portfolio-actions {
    padding-left: 0;
  }

  .home-page .demo-scroll-meter,
  .home-page .demo-showcase::before,
  .home-page .demo-showcase::after {
    display: none;
  }

  .home-page .demo-card,
  .home-page .demo-card:nth-child(even) {
    min-height: auto;
    padding: 54px 0;
  }

  .home-page .demo-card > div,
  .home-page .demo-card:nth-of-type(even) > div {
    order: 2;
  }

  .home-page .demo-card .demo-image,
  .home-page .demo-card:nth-of-type(even) .demo-image {
    order: 1;
    height: 330px;
    clip-path: none;
  }

  .home-page .care-analytics {
    gap: 54px;
    padding: 96px 0;
  }

  .home-page .care-analytics::before {
    display: none;
  }

  .home-page .analytics-panel {
    clip-path: none;
  }

  .home-page .trust-readiness {
    padding: 96px 0;
  }

  .home-page .trust-grid article,
  .home-page .trust-grid article:nth-child(even) {
    min-height: 0;
    padding: 28px 0;
    border-left: 0;
  }

  .home-page .faq-panel {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .home-page .process {
    padding: 96px 20px;
  }

  .home-page .launch-steps::before {
    display: none;
  }

  .home-page .launch-steps article::before {
    left: 0;
  }

  .home-page .pricing {
    padding-top: 96px;
    padding-bottom: 96px;
  }

  .home-page .pricing-grid {
    grid-template-columns: 1fr;
  }

  .home-page .pricing-card {
    padding: 42px 0;
  }

  .home-page .pricing-card + .pricing-card {
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .home-page .final-cta {
    padding: 96px 20px;
  }
}

/* Premium editorial refinement */
:root {
  --bg-soft: #f4f6f4;
  --surface-blue: #eef4f0;
  --text: #0b0f0c;
  --muted: #59615b;
  --line: #d8ded9;
  --line-strong: #aeb9b1;
  --blue: #0b5734;
  --blue-dark: #073d24;
  --green: #157044;
  --green-soft: #edf5ef;
  --brass: #7a541c;
  --shadow: 0 26px 70px rgba(9, 34, 21, 0.09);
  --radius: 4px;
  --max: 1280px;
  --display: "Iowan Old Style", "Palatino Linotype", Palatino, Georgia, serif;
  --sans: "Avenir Next", "Segoe UI", Arial, sans-serif;
}

body {
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.55;
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible,
summary:focus-visible {
  outline: 2px solid var(--brass);
  outline-offset: 4px;
}

.site-header {
  width: min(calc(100% - 64px), var(--max));
  min-height: 82px;
  background: rgba(255, 255, 255, 0.96);
  border-bottom-color: rgba(11, 15, 12, 0.12);
  backdrop-filter: blur(18px);
  transition: min-height 220ms ease, box-shadow 220ms ease;
}

.site-header.is-scrolled {
  min-height: 72px;
  box-shadow: 0 10px 34px rgba(9, 34, 21, 0.07);
}

.brand {
  gap: 12px;
  font-family: var(--sans);
  font-size: 20px;
  font-weight: 760;
}

.brand-mark {
  width: 36px;
  height: 36px;
  background: var(--blue);
  border-radius: 4px;
}

.site-nav {
  gap: clamp(14px, 1.7vw, 26px);
  color: #414943;
  font-size: 13px;
  font-weight: 650;
}

.site-nav a:not(.nav-cta) {
  position: relative;
}

.site-nav a:not(.nav-cta)::after {
  position: absolute;
  right: 0;
  bottom: -8px;
  left: 0;
  height: 1px;
  content: "";
  background: var(--blue);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 220ms ease;
}

.site-nav a:not(.nav-cta):hover::after,
.site-nav a:not(.nav-cta):focus-visible::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav-cta {
  min-height: 46px;
  padding: 0 20px;
  background: var(--blue);
  border-radius: 4px;
  box-shadow: none;
  font-weight: 720;
}

.nav-toggle {
  border-radius: 4px;
}

.button {
  min-height: 52px;
  padding: 0 22px;
  border-radius: 4px;
  font-size: 14px;
  font-weight: 720;
}

.button-primary {
  background: var(--blue);
  box-shadow: none;
}

.button-primary:hover {
  background: var(--blue-dark);
  box-shadow: none;
  transform: translateY(-1px);
}

.button-secondary {
  background: transparent;
  border-color: #aeb7b0;
}

.button-secondary:hover {
  background: var(--bg-soft);
  border-color: var(--text);
  box-shadow: none;
  transform: translateY(-1px);
}

.section-shell {
  width: min(calc(100% - 64px), var(--max));
}

.section-label {
  color: var(--blue);
  letter-spacing: 0.1em;
}

h1,
h2 {
  font-weight: 500;
}

.growth-hero {
  grid-template-columns: minmax(0, 0.78fr) minmax(520px, 1.18fr);
  gap: 56px;
  align-items: stretch;
  min-height: auto;
  padding: 48px 0 20px;
}

.growth-hero-copy {
  align-self: center;
}

.growth-hero h1 {
  max-width: 610px;
  margin-bottom: 28px;
  font-size: clamp(48px, 5.25vw, 72px);
  font-weight: 500;
  line-height: 1.02;
}

.growth-hero .hero-lede {
  max-width: 560px;
  margin-bottom: 32px;
  color: #4f5751;
  font-size: 18px;
  line-height: 1.7;
}

.growth-hero .proof-row,
.hero-insight-card {
  display: none;
}

.growth-hero-media {
  align-self: stretch;
  min-height: 480px;
  height: min(64svh, 610px);
  overflow: hidden;
  background: #e8ebe8;
  border-radius: 0;
  box-shadow: none;
}

.growth-hero-media::before {
  display: none;
}

.growth-hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 42%;
}

.motion-ready .growth-hero-copy > * {
  animation: premium-copy-in 700ms cubic-bezier(0.2, 0.75, 0.2, 1) both;
}

.motion-ready .growth-hero-copy > :nth-child(2) {
  animation-delay: 80ms;
}

.motion-ready .growth-hero-copy > :nth-child(3) {
  animation-delay: 150ms;
}

.motion-ready .growth-hero-media {
  animation: premium-media-in 900ms cubic-bezier(0.2, 0.75, 0.2, 1) both;
}

@keyframes premium-copy-in {
  from { opacity: 0; transform: translateY(22px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes premium-media-in {
  from { opacity: 0; clip-path: inset(0 0 100% 0); }
  to { opacity: 1; clip-path: inset(0); }
}

.trusted {
  display: grid;
  grid-template-columns: minmax(220px, 0.65fr) minmax(0, 1fr);
  gap: 40px;
  align-items: center;
  padding: 22px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.trusted p {
  margin: 0;
  color: #485049;
  font-size: 12px;
  font-weight: 760;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.logo-row {
  justify-content: space-between;
  gap: 18px;
  color: var(--muted);
  font-size: 13px;
}

.features,
.portfolio,
.pricing {
  padding: 112px 0;
}

.section-heading {
  max-width: 790px;
  margin-bottom: 54px;
}

.features .section-heading {
  margin-right: 0;
  margin-left: 0;
  text-align: left;
}

.section-heading h2,
.final-cta h2 {
  font-size: clamp(38px, 4.4vw, 58px);
  font-weight: 500;
  line-height: 1.04;
}

.feature-grid {
  gap: 0;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.feature-card {
  min-height: 250px;
  padding: 32px 28px 36px;
  background: #ffffff;
  border: 0;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  border-radius: 0;
  box-shadow: none;
}

.feature-card:hover {
  background: var(--bg-soft);
  border-color: var(--line);
  box-shadow: none;
  transform: none;
}

.feature-icon {
  display: block;
  width: 30px;
  height: 30px;
  margin-bottom: 40px;
  color: var(--blue);
  background: transparent;
  border-radius: 0;
}

.feature-icon svg {
  width: 28px;
  height: 28px;
}

.feature-card h3 {
  font-size: 20px;
}

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

.portfolio .section-heading {
  max-width: 880px;
  margin-right: 0;
  margin-bottom: 54px;
  margin-left: 0;
  text-align: left;
}

.demo-showcase {
  gap: 0;
  padding-left: 54px;
}

.demo-showcase::before,
.demo-showcase::after {
  left: 17px;
  width: 1px;
  border-radius: 0;
}

.demo-showcase::before {
  background: var(--line-strong);
}

.demo-showcase::after {
  background: var(--blue);
}

.demo-scroll-meter {
  top: 56px;
  bottom: 56px;
  left: 11px;
}

.demo-scroll-meter span {
  position: relative;
  width: 13px;
  height: 13px;
  background: #ffffff;
  border: 1px solid var(--line-strong);
  border-radius: 50%;
  box-shadow: none;
}

.demo-scroll-meter span::after {
  position: absolute;
  right: 22px;
  top: 50%;
  color: #6b736d;
  content: "01";
  font-size: 11px;
  font-weight: 700;
  transform: translateY(-50%);
}

.demo-scroll-meter span:nth-child(2)::after { content: "02"; }
.demo-scroll-meter span:nth-child(3)::after { content: "03"; }

.demo-showcase[data-active-demo] .demo-scroll-meter span {
  box-shadow: none;
}

.demo-showcase[data-active-demo="0"] .demo-scroll-meter span:nth-child(1),
.demo-showcase[data-active-demo="1"] .demo-scroll-meter span:nth-child(2),
.demo-showcase[data-active-demo="2"] .demo-scroll-meter span:nth-child(3) {
  background: var(--blue);
  border-color: var(--blue);
  box-shadow: none;
  transform: scale(1.08);
}

.demo-card,
.demo-card:nth-child(even) {
  grid-template-columns: minmax(300px, 0.78fr) minmax(480px, 1.22fr);
  gap: 58px;
  min-height: 530px;
  padding: 56px 0;
  overflow: visible;
  background: transparent;
  border: 0;
  border-top: 1px solid var(--line);
  border-radius: 0;
  box-shadow: none;
}

.demo-card:first-of-type {
  border-top: 0;
}

.demo-card::before {
  display: none;
}

.demo-card > div {
  order: 1;
  padding: 12px 0;
}

.demo-card .demo-image {
  order: 2;
}

.demo-card-cafe > div {
  order: 2;
}

.demo-card-cafe .demo-image {
  order: 1;
}

.motion-ready .demo-card,
.motion-ready .demo-card.is-visible,
.motion-ready .demo-card.is-active {
  opacity: 1;
  background: transparent;
  border-color: var(--line);
  box-shadow: none;
  transform: none;
}

.motion-ready .demo-card > div,
.motion-ready .demo-card .demo-image {
  opacity: 0.35;
  transform: translateY(26px);
  transition: opacity 620ms ease, transform 720ms cubic-bezier(0.2, 0.75, 0.2, 1);
}

.motion-ready .demo-card.is-active > div,
.motion-ready .demo-card.is-active .demo-image,
.motion-ready .demo-card.is-visible:hover > div,
.motion-ready .demo-card.is-visible:hover .demo-image {
  opacity: 1;
  transform: translateY(0);
}

.demo-image {
  height: 420px;
  background: #e7ebe8;
  border-radius: 4px;
}

.demo-image::after {
  display: none;
}

.demo-image img,
.motion-ready .demo-card.is-active .demo-image img {
  filter: none;
  transform: scale(1.015);
}

.demo-image > span {
  top: 16px;
  right: auto;
  bottom: auto;
  left: 16px;
  padding: 8px 10px;
  color: var(--text);
  background: rgba(255, 255, 255, 0.94);
  border: 0;
  border-radius: 3px;
  backdrop-filter: blur(8px);
  font-size: 11px;
  font-weight: 720;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.demo-card h3 {
  margin-bottom: 18px;
  font-family: var(--display);
  font-size: clamp(38px, 4.3vw, 60px);
  font-weight: 500;
  line-height: 1;
}

.demo-card > div > p {
  max-width: 48ch;
  font-size: 17px;
  line-height: 1.65;
}

.check-list {
  gap: 12px;
}

.text-link {
  position: relative;
  display: inline-flex;
  padding-bottom: 5px;
  color: var(--blue);
  border-bottom: 1px solid var(--brass);
  font-size: 13px;
  letter-spacing: 0.02em;
}

.care-analytics,
.review-hub {
  grid-template-columns: minmax(0, 0.82fr) minmax(500px, 1fr);
  gap: 72px;
  padding: 112px 0;
  border-top: 1px solid var(--line);
}

.care-copy h2,
.review-copy h2,
.trust-copy h2 {
  font-size: clamp(38px, 4.5vw, 58px);
  font-weight: 500;
}

.analytics-panel {
  padding: 34px;
  color: #ffffff;
  background: #0c2115;
  border: 0;
  border-radius: 4px;
  box-shadow: none;
}

.analytics-header {
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
}

.analytics-header span,
.analytics-metrics span,
.analytics-metrics em,
.top-pages p {
  color: rgba(255, 255, 255, 0.66);
}

.analytics-metrics article {
  background: transparent;
  border-color: rgba(255, 255, 255, 0.16);
}

.simple-chart {
  background: rgba(255, 255, 255, 0.04);
}

.simple-chart span {
  background: #4f9c6e;
}

.simple-chart span:nth-child(3n + 1) {
  background: #c5a461;
}

.trust-readiness {
  padding: 112px 0;
}

.trust-grid {
  gap: 0;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.trust-grid article {
  min-height: 240px;
  padding: 30px;
  background: #ffffff;
  border: 0;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  border-radius: 0;
  box-shadow: none;
}

.trust-grid span {
  display: block;
  width: auto;
  height: auto;
  margin-bottom: 48px;
  color: var(--brass);
  background: transparent;
  border-radius: 0;
}

.faq-panel {
  padding: 64px 0 0;
  background: #ffffff;
  border: 0;
  border-radius: 0;
  box-shadow: none;
}

.faq-list details {
  padding: 22px 0;
  background: transparent;
  border: 0;
  border-top: 1px solid var(--line);
  border-radius: 0;
}

.faq-list details[open] {
  background: transparent;
}

.process {
  padding-top: 112px;
  padding-bottom: 112px;
  background: #f1f4f1;
}

.launch-steps {
  gap: 0;
  border-top: 1px solid var(--line-strong);
}

.launch-steps article {
  padding: 34px 28px;
  border-right: 1px solid var(--line);
}

.launch-steps article:last-child {
  border-right: 0;
}

.launch-steps span {
  color: var(--brass);
  font-family: var(--display);
  font-size: 34px;
  font-weight: 500;
}

.launch-steps article::after {
  display: none;
}

.review-window {
  padding: 10px;
  background: #0c2115;
  border: 0;
  border-radius: 4px;
  box-shadow: none;
}

.review-window img {
  border-radius: 2px;
}

.pricing {
  background: #ffffff;
}

.pricing-grid {
  gap: 26px;
}

.pricing-card {
  padding: 40px;
  background: #ffffff;
  border: 1px solid var(--line);
  border-top: 3px solid var(--blue);
  border-radius: 0;
  box-shadow: none;
}

.popular {
  padding: 0;
  color: var(--brass);
  background: transparent;
  border: 0;
  border-radius: 0;
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.price strong {
  font-family: var(--display);
  font-weight: 500;
}

.final-cta {
  gap: 72px;
  padding-top: 104px;
  padding-bottom: 104px;
  color: #ffffff;
  background: #0c2115;
}

.final-cta > div p {
  color: rgba(255, 255, 255, 0.7);
}

.signup-form {
  color: var(--text);
  background: #ffffff;
  border: 0;
  border-radius: 4px;
  box-shadow: none;
}

.signup-form input,
.signup-form select,
.signup-form textarea,
.intake-form input,
.intake-form select,
.intake-form textarea {
  border-radius: 3px;
}

.page-hero {
  padding: 82px 0 62px;
}

.intake-page .page-hero,
.maintenance-page .page-hero {
  padding-top: 56px;
  padding-bottom: 42px;
}

.intake-page .page-hero h1,
.maintenance-page .page-hero h1 {
  max-width: 1000px;
  font-size: clamp(46px, 5vw, 66px);
}

.intake-page .page-hero + .content-section,
.maintenance-page .page-hero + .content-section {
  padding-top: 56px;
  padding-bottom: 72px;
}

.page-hero h1 {
  max-width: 900px;
  margin-bottom: 26px;
  font-size: clamp(50px, 5.5vw, 74px);
  font-weight: 500;
  line-height: 1.02;
}

.content-section {
  padding: 88px 0;
}

.content-grid {
  gap: 0;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.content-card {
  padding: 30px;
  background: #ffffff;
  border: 0;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  border-radius: 0;
}

.maintenance-page .page-hero + .content-section .content-card {
  min-height: 360px;
  border-top: 3px solid var(--blue);
}

.maintenance-page .content-card p strong {
  font-family: var(--display);
  font-size: 34px;
  font-weight: 500;
}

.intake-form {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
  max-width: 920px;
  padding: 0;
  margin: 0 auto;
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
}

.intake-form label:has(textarea),
.intake-form .form-note,
.intake-form button,
.intake-form .form-status {
  grid-column: 1 / -1;
}

.intake-form button {
  width: fit-content;
}

.legal-page {
  max-width: 880px;
  padding-top: 52px;
  padding-bottom: 90px;
}

.legal-page > .brand {
  padding-bottom: 42px;
  margin-bottom: 54px;
  border-bottom: 1px solid var(--line);
}

.legal-page h1 {
  max-width: none;
  font-size: clamp(50px, 6vw, 72px);
  font-weight: 500;
}

.legal-block {
  padding: 34px 0;
  border-top: 1px solid var(--line);
}

.legal-caution {
  padding: 32px;
  margin-top: 28px;
  background: #fff8dd;
  border: 1px solid #dbc56e;
  border-left: 5px solid var(--brass);
}

.legal-caution h2 {
  margin-top: 0;
}

.preview-page .page-hero {
  min-height: 620px;
  padding-top: 74px;
}

.preview-page .page-hero h1 {
  font-size: clamp(52px, 5.4vw, 72px);
}

.preview-note {
  padding: 30px;
  background: #ffffff;
  border: 1px solid var(--line);
  border-left: 3px solid var(--brass);
  border-radius: 0;
  box-shadow: none;
}

.review-path-grid {
  gap: 0;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.review-path-grid article {
  min-height: 250px;
  background: #ffffff;
  border: 0;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  border-radius: 0;
  box-shadow: none;
}

.review-path-grid span {
  color: var(--brass);
  background: transparent;
  border-radius: 0;
  font-family: var(--display);
  font-size: 26px;
}

.portfolio-review {
  background: #f4f6f4;
}

.review-scoreboard {
  gap: 0;
  background: #0c2115;
}

.review-scoreboard article {
  background: transparent;
  border: 0;
  border-right: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 0;
}

.review-scoreboard strong {
  color: #ffffff;
}

.review-scoreboard span {
  color: #c7a968;
}

.preview-grid {
  gap: 24px;
}

.preview-card {
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 0;
  box-shadow: none;
}

.preview-card:hover {
  border-color: var(--line-strong);
  box-shadow: none;
  transform: translateY(-2px);
}

.preview-card img {
  border-radius: 0;
}

.motion-ready main > section:not(:first-child) {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 700ms ease, transform 760ms cubic-bezier(0.2, 0.75, 0.2, 1);
}

.motion-ready main > section:not(:first-child).is-visible {
  opacity: 1;
  transform: translateY(0);
}

.motion-ready main > section#portfolio {
  opacity: 1;
  transform: none;
}

.motion-ready main > section:nth-child(2) {
  opacity: 1;
  transform: none;
}

@media (max-width: 1100px) {
  .nav-toggle {
    display: inline-flex;
  }

  .site-nav {
    position: fixed;
    inset: 76px 18px auto;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 12px;
    background: #ffffff;
    border: 1px solid var(--line);
    border-radius: 4px;
    box-shadow: var(--shadow);
  }

  body.nav-open .site-nav {
    display: flex;
  }

  .site-nav a {
    padding: 14px 12px;
  }

  .site-nav a:not(.nav-cta)::after {
    display: none;
  }

  .nav-cta {
    justify-content: center;
    margin-top: 8px;
  }
}

@media (max-width: 980px) {
  .site-header,
  .section-shell {
    width: min(calc(100% - 40px), var(--max));
  }

  .growth-hero {
    grid-template-columns: 1fr;
    gap: 38px;
    min-height: auto;
    padding-top: 50px;
  }

  .growth-hero-copy {
    max-width: 720px;
  }

  .growth-hero-media {
    height: 620px;
  }

  .trusted {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .demo-card,
  .demo-card:nth-child(even) {
    grid-template-columns: 1fr;
    gap: 28px;
    min-height: auto;
  }

  .demo-card > div,
  .demo-card-cafe > div {
    order: 2;
  }

  .demo-card .demo-image,
  .demo-card-cafe .demo-image {
    order: 1;
  }

  .care-analytics,
  .review-hub {
    grid-template-columns: 1fr;
  }

  .intake-form {
    grid-template-columns: 1fr;
  }

  .intake-form label,
  .intake-form label:has(textarea),
  .intake-form .form-note,
  .intake-form button,
  .intake-form .form-status {
    grid-column: 1;
  }
}

@media (max-width: 760px) {
  .site-header,
  .section-shell {
    width: min(calc(100% - 28px), var(--max));
  }

  .site-header {
    min-height: 70px;
  }

  .brand {
    font-size: 18px;
  }

  .brand-mark {
    width: 32px;
    height: 32px;
  }

  .growth-hero h1 {
    max-width: 11ch;
    font-size: clamp(42px, 12vw, 56px);
  }

  .growth-hero-media {
    min-height: 420px;
    height: 58svh;
  }

  .growth-hero-media img {
    height: 100%;
  }

  .logo-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
  }

  .features,
  .portfolio,
  .pricing,
  .content-section,
  .care-analytics,
  .review-hub,
  .trust-readiness {
    padding-top: 78px;
    padding-bottom: 78px;
  }

  .feature-grid,
  .content-grid,
  .trust-grid,
  .review-path-grid {
    grid-template-columns: 1fr;
  }

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

  .demo-showcase {
    padding-left: 0;
  }

  .demo-card {
    padding: 42px 0;
  }

  .demo-image {
    height: 280px;
  }

  .demo-card h3 {
    font-size: 38px;
  }

  .motion-ready .demo-card > div,
  .motion-ready .demo-card .demo-image {
    opacity: 1;
    transform: none;
  }

  .analytics-panel,
  .pricing-card,
  .signup-form {
    padding: 26px;
  }

  .launch-steps article {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .page-hero {
    padding-top: 58px;
  }

  .page-hero h1,
  .preview-page .page-hero h1 {
    font-size: clamp(42px, 12vw, 56px);
  }

  .preview-page .page-hero {
    min-height: auto;
  }
}

@media (prefers-reduced-motion: reduce) {
  .motion-ready .growth-hero-copy > *,
  .motion-ready .growth-hero-media,
  .motion-ready main > section:not(:first-child),
  .motion-ready .demo-card > div,
  .motion-ready .demo-card .demo-image {
    animation: none !important;
    clip-path: none !important;
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
}
