:root {
  --promo-height: 48px;
  --promo-pill-width: 96px;
  --ink: #17211f;
  --muted: #5f6d68;
  --paper: #f7f4ee;
  --panel: #ffffff;
  --line: #ddd8cf;
  --sage: #6f8977;
  --forest: #203d34;
  --clay: #b96347;
  --gold: #d6a84f;
  --blue: #3e6d81;
  --teal: #0e7668;
  --teal-bright: #1db6a1;
  --teal-pale: #dff8f2;
  --shadow: 0 24px 70px rgba(23, 33, 31, 0.15);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

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

.promo-banner {
  position: fixed;
  z-index: 40;
  top: 0;
  right: 0;
  left: 0;
  color: #14201d;
  background:
    linear-gradient(90deg, rgba(14, 118, 104, 0.94), rgba(29, 182, 161, 0.96) 34%, rgba(214, 168, 79, 0.98)),
    var(--teal);
  box-shadow: 0 12px 30px rgba(8, 15, 13, 0.2);
}

.promo-banner-link {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
  min-height: var(--promo-height);
  align-items: center;
  justify-content: center;
  gap: clamp(8px, 2.4vw, 18px);
  padding: 7px clamp(14px, 4vw, 56px);
  color: #10221e;
  font-size: 0.9rem;
  font-weight: 850;
  line-height: 1.2;
  text-align: center;
}

.promo-banner-copy {
  display: contents;
}

.promo-banner-label,
.promo-banner-cta {
  display: inline-flex;
  width: var(--promo-pill-width);
  min-height: 34px;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 950;
  letter-spacing: 0.08em;
  line-height: 0.92;
  text-align: center;
  text-transform: uppercase;
}

.promo-banner-label {
  grid-column: 1;
  justify-self: start;
  min-height: 40px;
  padding: 0 12px;
  color: #fffdf5;
  background: rgba(20, 32, 29, 0.78);
  box-shadow: 0 8px 20px rgba(8, 15, 13, 0.18);
}

.promo-banner-message {
  grid-column: 2;
  display: inline-flex;
  align-items: center;
  justify-self: center;
  min-width: 0;
  white-space: nowrap;
}

.promo-banner-link strong {
  font-size: 1rem;
  font-weight: 950;
}

.promo-banner-cta {
  grid-column: 3;
  justify-self: end;
  padding: 0 12px;
  color: #14201d;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.5) inset;
}

.site-header {
  position: fixed;
  z-index: 30;
  top: 0;
  left: 0;
  right: 0;
  display: grid;
  grid-template-columns: minmax(130px, 1fr) auto minmax(130px, 1fr);
  align-items: center;
  gap: 24px;
  padding: 18px clamp(18px, 4vw, 56px);
  color: #fff;
  background: linear-gradient(180deg, rgba(22, 35, 31, 0.48), rgba(22, 35, 31, 0));
  transition: background 180ms ease, box-shadow 180ms ease, color 180ms ease;
}

.promo-active .site-header {
  top: var(--promo-height);
}

.site-header.is-scrolled {
  color: var(--forest);
  background: rgba(255, 252, 245, 0.78);
  box-shadow: 0 10px 26px rgba(23, 33, 31, 0.08);
  backdrop-filter: blur(16px);
}

.site-header.is-scrolled .brand {
  opacity: 0.84;
}

.brand,
.nav-links,
.hero-actions,
.steps,
.site-footer {
  display: flex;
  align-items: center;
}

.brand {
  gap: 10px;
  min-width: 130px;
  font-weight: 800;
  letter-spacing: 0;
}

.brand-mark-img {
  display: block;
  width: 44px;
  height: auto;
}

.nav-links {
  justify-self: center;
  gap: clamp(12px, 2.2vw, 26px);
  font-size: 0.92rem;
  font-weight: 600;
}

.header-actions {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  justify-self: end;
  gap: 10px;
}

.desktop-cta-link,
.desktop-login-link {
  position: relative;
  display: inline-flex;
  min-height: 40px;
  flex: 0 0 auto;
  align-items: center;
  justify-content: center;
  padding: 0 16px;
  border: 1px solid rgba(255, 255, 255, 0.36);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.1);
  font-size: 0.9rem;
  font-weight: 850;
  transition:
    background 160ms ease,
    border-color 160ms ease,
    box-shadow 160ms ease,
    transform 160ms ease;
}

.desktop-cta-link {
  overflow: hidden;
  border-color: rgba(214, 168, 79, 0.64);
  color: #14201d;
  background:
    linear-gradient(135deg, #f3cf77 0%, var(--gold) 54%, #c9912f 100%),
    var(--gold);
  box-shadow:
    0 10px 22px rgba(214, 168, 79, 0.22),
    0 1px 0 rgba(255, 255, 255, 0.42) inset;
}

.site-header:not(.is-scrolled) .desktop-cta-link {
  display: none;
}

.site-header.demo-header:not(.is-scrolled) .desktop-cta-link {
  display: inline-flex;
}

.desktop-cta-link:hover,
.desktop-cta-link:focus-visible {
  border-color: rgba(255, 255, 255, 0.72);
  background:
    linear-gradient(135deg, #f7d986 0%, #e6bb64 54%, #c9912f 100%),
    #e6bb64;
  box-shadow:
    0 14px 30px rgba(214, 168, 79, 0.3),
    0 1px 0 rgba(255, 255, 255, 0.48) inset;
  transform: translateY(-1px);
}

.desktop-login-link:hover,
.desktop-login-link:focus-visible {
  border-color: rgba(255, 255, 255, 0.58);
  background: rgba(255, 255, 255, 0.18);
}

.site-header.is-scrolled .desktop-cta-link {
  border-color: rgba(214, 168, 79, 0.72);
  background:
    linear-gradient(135deg, #f3cf77 0%, var(--gold) 54%, #c9912f 100%),
    var(--gold);
}

.site-header.is-scrolled .desktop-cta-link:hover,
.site-header.is-scrolled .desktop-cta-link:focus-visible {
  background:
    linear-gradient(135deg, #f7d986 0%, #e6bb64 54%, #c9912f 100%),
    #e6bb64;
}

.site-header.is-scrolled .desktop-login-link {
  border-color: rgba(32, 61, 52, 0.2);
  background: rgba(255, 255, 255, 0.72);
}

.site-header.is-scrolled .desktop-login-link:hover,
.site-header.is-scrolled .desktop-login-link:focus-visible {
  border-color: rgba(32, 61, 52, 0.34);
  background: #fff;
}

.button {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
  font-weight: 800;
  line-height: 1;
  white-space: nowrap;
}

.mobile-menu-toggle,
.mobile-nav-backdrop,
.mobile-nav-drawer {
  display: none;
}

.hero {
  position: relative;
  min-height: clamp(620px, 72vh, 760px);
  overflow: hidden;
  color: #fff;
}

.hero-image,
.hero-scrim {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-image {
  object-fit: cover;
  object-position: center;
}

.hero-scrim {
  background:
    linear-gradient(90deg, rgba(18, 31, 27, 0.76) 0%, rgba(18, 31, 27, 0.52) 42%, rgba(18, 31, 27, 0.06) 76%),
    linear-gradient(180deg, rgba(255, 247, 231, 0.12), rgba(18, 31, 27, 0.18));
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(860px, calc(100% - 36px));
  padding: clamp(112px, 14vh, 150px) 0 clamp(72px, 8vh, 96px) clamp(18px, 7vw, 96px);
}

.promo-active .hero-content {
  padding-top: clamp(148px, 18vh, 194px);
}

.section-kicker {
  margin: 0 0 14px;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.desktop-demo-app {
  min-width: 0;
  border: 1px solid rgba(32, 61, 52, 0.18);
  border-radius: 8px;
  background:
    linear-gradient(180deg, #f8fafb, #eef3f2),
    #f5f7f8;
  box-shadow:
    0 34px 80px rgba(23, 33, 31, 0.18),
    0 1px 0 rgba(255, 255, 255, 0.72) inset;
  overflow: hidden;
}

body.missed-call-demo-page .missed-demo-hero,
body.lead-intake-page .lead-intake-hero,
body.estimate-page .estimate-hero,
body.qa-page .qa-hero,
body.owner-action-page .action-hero,
body.estimate-rescue-page .estimate-rescue-hero,
body.schedule-page .schedule-hero,
body.owner-brief-page .owner-brief-hero {
  gap: 56px;
  padding: 86px clamp(18px, 5vw, 72px) 46px;
  color: #fff;
  background:
    radial-gradient(circle at 22% 0%, rgba(214, 168, 79, 0.14), transparent 32%),
    linear-gradient(135deg, #24594e 0%, #2f665d 58%, #4a7780 100%);
}

body.missed-call-demo-page .missed-demo-hero .section-kicker,
body.lead-intake-page .lead-intake-hero .section-kicker,
body.estimate-page .estimate-hero .section-kicker,
body.qa-page .qa-hero .section-kicker,
body.owner-action-page .action-hero .section-kicker,
body.estimate-rescue-page .estimate-rescue-hero .section-kicker,
body.schedule-page .schedule-hero .section-kicker,
body.owner-brief-page .owner-brief-hero .section-kicker {
  margin-bottom: 16px;
  color: #f1c96d;
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0.08em;
  background: transparent;
}

body.missed-call-demo-page .missed-demo-hero h1,
body.lead-intake-page .lead-intake-hero h1,
body.estimate-page .estimate-hero h1,
body.qa-page .qa-hero h1,
body.owner-action-page .action-hero h1,
body.estimate-rescue-page .estimate-rescue-hero h1,
body.schedule-page .schedule-hero h1,
body.owner-brief-page .owner-brief-hero h1 {
  max-width: 1080px;
  margin-bottom: 20px;
  color: #fff;
  font-size: clamp(2.7rem, 4.5vw, 3.95rem);
  line-height: 1.05;
  letter-spacing: 0;
  text-shadow: none;
}

body.missed-call-demo-page .missed-demo-hero p:not(.section-kicker),
body.lead-intake-page .lead-intake-hero p:not(.section-kicker),
body.estimate-page .estimate-hero p:not(.section-kicker),
body.qa-page .qa-hero p:not(.section-kicker),
body.owner-action-page .action-hero p:not(.section-kicker),
body.estimate-rescue-page .estimate-rescue-hero p:not(.section-kicker),
body.schedule-page .schedule-hero p:not(.section-kicker),
body.owner-brief-page .owner-brief-hero p:not(.section-kicker) {
  max-width: 850px;
  margin: 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: 1.18rem;
  font-weight: 720;
  line-height: 1.58;
  text-shadow: none;
}

@media (max-width: 920px) {
  body.missed-call-demo-page .missed-demo-hero,
  body.lead-intake-page .lead-intake-hero,
  body.estimate-page .estimate-hero,
  body.qa-page .qa-hero,
  body.owner-action-page .action-hero,
  body.estimate-rescue-page .estimate-rescue-hero,
  body.schedule-page .schedule-hero,
  body.owner-brief-page .owner-brief-hero {
    gap: 22px;
    padding-top: 66px;
    padding-bottom: 38px;
  }

  body.missed-call-demo-page .missed-demo-hero h1,
  body.lead-intake-page .lead-intake-hero h1,
  body.estimate-page .estimate-hero h1,
  body.qa-page .qa-hero h1,
  body.owner-action-page .action-hero h1,
  body.estimate-rescue-page .estimate-rescue-hero h1,
  body.schedule-page .schedule-hero h1,
  body.owner-brief-page .owner-brief-hero h1 {
    font-size: 3.15rem;
  }
}

@media (max-width: 620px) {
  body.missed-call-demo-page .missed-demo-shell,
  body.lead-intake-page .lead-intake-shell,
  body.estimate-page .estimate-shell,
  body.qa-page .qa-shell,
  body.owner-action-page .action-shell,
  body.estimate-rescue-page .estimate-rescue-shell,
  body.schedule-page .schedule-shell,
  body.owner-brief-page .owner-brief-shell {
    padding-top: 78px;
  }

  body.missed-call-demo-page .missed-demo-hero,
  body.lead-intake-page .lead-intake-hero,
  body.estimate-page .estimate-hero,
  body.qa-page .qa-hero,
  body.owner-action-page .action-hero,
  body.estimate-rescue-page .estimate-rescue-hero,
  body.schedule-page .schedule-hero,
  body.owner-brief-page .owner-brief-hero {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    padding: 48px 16px 34px;
  }

  body.missed-call-demo-page .missed-demo-hero .section-kicker,
  body.lead-intake-page .lead-intake-hero .section-kicker,
  body.estimate-page .estimate-hero .section-kicker,
  body.qa-page .qa-hero .section-kicker,
  body.owner-action-page .action-hero .section-kicker,
  body.estimate-rescue-page .estimate-rescue-hero .section-kicker,
  body.schedule-page .schedule-hero .section-kicker,
  body.owner-brief-page .owner-brief-hero .section-kicker {
    margin-bottom: 12px;
    font-size: 0.72rem;
  }

  body.missed-call-demo-page .missed-demo-hero h1,
  body.lead-intake-page .lead-intake-hero h1,
  body.estimate-page .estimate-hero h1,
  body.qa-page .qa-hero h1,
  body.owner-action-page .action-hero h1,
  body.estimate-rescue-page .estimate-rescue-hero h1,
  body.schedule-page .schedule-hero h1,
  body.owner-brief-page .owner-brief-hero h1 {
    margin-bottom: 16px;
    font-size: 2.42rem;
    line-height: 1.04;
  }

  body.missed-call-demo-page .missed-demo-hero p:not(.section-kicker),
  body.lead-intake-page .lead-intake-hero p:not(.section-kicker),
  body.estimate-page .estimate-hero p:not(.section-kicker),
  body.qa-page .qa-hero p:not(.section-kicker),
  body.owner-action-page .action-hero p:not(.section-kicker),
  body.estimate-rescue-page .estimate-rescue-hero p:not(.section-kicker),
  body.schedule-page .schedule-hero p:not(.section-kicker),
  body.owner-brief-page .owner-brief-hero p:not(.section-kicker) {
    font-size: 1rem;
    line-height: 1.5;
  }
}

.demo-app-shell {
  display: grid;
  grid-template-columns: 224px minmax(0, 1fr);
  min-height: 760px;
}

.demo-app-sidebar {
  display: flex;
  flex-direction: column;
  gap: 26px;
  min-width: 0;
  padding: 20px 18px;
  color: #f8fbff;
  background:
    linear-gradient(180deg, #111f25, #0c151a),
    #101820;
}

.demo-app-brand {
  display: flex;
  gap: 11px;
  align-items: center;
  min-width: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding-bottom: 18px;
}

.demo-app-brand img {
  width: 36px;
}

.demo-app-brand div {
  display: grid;
  gap: 2px;
  min-width: 0;
}

.demo-app-brand strong {
  color: #fff;
  font-size: 0.96rem;
  line-height: 1;
}

.demo-app-brand span,
.demo-app-nav a {
  color: #aeb9c4;
}

.demo-app-brand span {
  font-size: 0.76rem;
  font-weight: 750;
}

.demo-app-nav {
  display: grid;
  gap: 8px;
}

.demo-app-nav a,
.demo-app-nav strong {
  display: flex;
  justify-content: space-between;
  align-items: center;
  min-height: 42px;
  border-radius: 8px;
  padding: 0 12px;
  font-size: 0.88rem;
  font-weight: 850;
}

.demo-app-nav a {
  background: rgba(255, 255, 255, 0.035);
}

.demo-app-nav strong {
  color: #0b4b40;
  background:
    linear-gradient(135deg, #e7fbf2, #d3efe6),
    #dff4ec;
  box-shadow: 0 10px 22px rgba(4, 28, 24, 0.18);
}

.demo-app-nav b {
  display: inline-grid;
  min-width: 24px;
  min-height: 22px;
  place-items: center;
  border-radius: 999px;
  color: #fff;
  background: #126a5b;
  font-size: 0.75rem;
}

.demo-app-content {
  display: grid;
  align-content: start;
  gap: 16px;
  min-width: 0;
  padding: 24px;
}

.demo-app-topbar,
.demo-app-panel-title {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 14px;
  min-width: 0;
}

.demo-app-topbar h3 {
  max-width: 820px;
  margin: 0;
  color: #172026;
  font-size: clamp(1.28rem, 1.8vw, 1.72rem);
  line-height: 1.2;
}

.demo-app-summary {
  margin: 0;
  border: 1px solid #d5e0de;
  border-radius: 8px;
  padding: 13px 15px;
  color: #53646b;
  background:
    linear-gradient(180deg, #ffffff, #fbfdfc),
    #fff;
  font-size: 0.9rem;
  font-weight: 750;
  line-height: 1.42;
  box-shadow: 0 1px 0 rgba(23, 33, 31, 0.04);
}

.demo-app-metrics {
  display: grid;
  grid-template-columns: repeat(4, minmax(120px, 1fr));
  gap: 12px;
}

.demo-app-metrics article {
  min-width: 0;
  border: 1px solid #d5e0de;
  border-radius: 8px;
  padding: 15px;
  background:
    linear-gradient(180deg, #ffffff, #f8fbfa),
    #fff;
  box-shadow: 0 10px 24px rgba(23, 33, 31, 0.06);
}

.demo-app-metrics span,
.demo-app-metrics strong {
  display: block;
  color: #172026;
  font-size: 1.48rem;
  font-weight: 850;
  line-height: 1;
}

.demo-app-metrics p {
  margin: 7px 0 0;
  color: #53646b;
  font-size: 0.8rem;
  font-weight: 760;
}

.demo-app-grid {
  display: grid;
  grid-template-columns: minmax(320px, 1fr) minmax(320px, 0.72fr);
  gap: 16px;
  min-width: 0;
}

.demo-app-panel,
.demo-app-detail {
  min-width: 0;
  border: 1px solid #d5e0de;
  border-radius: 8px;
  background:
    linear-gradient(180deg, #ffffff, #fbfdfc),
    #fff;
  box-shadow: 0 12px 28px rgba(23, 33, 31, 0.07);
}

.demo-app-panel {
  display: grid;
  gap: 14px;
  align-content: start;
  padding: 16px;
}

.demo-app-panel-title strong {
  display: block;
  color: #172026;
  font-size: 0.98rem;
  line-height: 1.2;
}

.demo-app-panel-title span {
  display: block;
  margin-top: 3px;
  color: #5d6d73;
  font-size: 0.8rem;
  line-height: 1.25;
}

.demo-app-scroll {
  display: grid;
  gap: 10px;
  max-height: 560px;
  overflow-y: auto;
  padding-right: 2px;
  overscroll-behavior: contain;
  scrollbar-width: thin;
}

.demo-app-detail {
  position: sticky;
  top: 20px;
  display: grid;
  align-content: start;
  gap: 14px;
  max-height: 650px;
  overflow: auto;
  padding: 16px;
}

.demo-conversion-cta {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: clamp(20px, 5vw, 56px);
  align-items: center;
  min-width: 0;
  border-top: 1px solid rgba(214, 168, 79, 0.34);
  border-bottom: 1px solid rgba(32, 61, 52, 0.12);
  padding: clamp(34px, 5vw, 58px) clamp(18px, 5vw, 72px);
  background:
    linear-gradient(135deg, rgba(32, 61, 52, 0.97), rgba(82, 102, 87, 0.9)),
    var(--forest);
  color: #fff;
}

.demo-conversion-cta > div {
  min-width: 0;
}

.demo-conversion-cta h2 {
  max-width: 900px;
  margin: 0;
  color: #fff;
  font-size: clamp(1.75rem, 3.2vw, 3rem);
  line-height: 1.08;
}

.demo-conversion-cta p:not(.section-kicker) {
  max-width: 820px;
  margin: 16px 0 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(1rem, 1.5vw, 1.18rem);
  line-height: 1.58;
}

.demo-conversion-cta .button {
  white-space: nowrap;
  box-shadow: 0 18px 42px rgba(214, 168, 79, 0.22);
}

@media (max-width: 1120px) {
  .demo-app-shell,
  .demo-app-grid {
    grid-template-columns: 1fr;
  }

  .demo-app-sidebar {
    min-height: auto;
  }

  .demo-app-nav {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .demo-app-detail {
    position: static;
    max-height: none;
  }
}

@media (max-width: 760px) {
  .desktop-demo-app {
    display: none;
  }

  .demo-conversion-cta {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .demo-conversion-cta .button {
    width: fit-content;
    white-space: normal;
  }
}

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

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

h1 {
  max-width: 830px;
  margin-bottom: 26px;
  font-size: clamp(2.8rem, 6vw, 5.25rem);
  line-height: 1.04;
  letter-spacing: 0;
  text-shadow: 0 3px 22px rgba(8, 15, 13, 0.36);
}

.hero h1 {
  max-width: 760px;
  margin-bottom: 34px;
  font-size: clamp(2.75rem, 5.35vw, 4.9rem);
  line-height: 1.06;
}

.hero .eyebrow {
  margin-bottom: 22px;
}

.hero-copy {
  max-width: 650px;
  margin-bottom: 16px;
  color: rgba(255, 255, 255, 0.92);
  font-size: clamp(1.05rem, 2vw, 1.32rem);
  line-height: 1.55;
  text-shadow: 0 2px 16px rgba(8, 15, 13, 0.32);
}

.hero-bridge {
  max-width: 620px;
  margin-bottom: 24px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 1rem;
  font-weight: 800;
  line-height: 1.62;
  text-shadow: 0 2px 16px rgba(8, 15, 13, 0.32);
}

.hero-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  max-width: 720px;
  margin-bottom: 34px;
}

.hero-proof span {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  gap: 7px;
  padding: 0 14px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.88);
  background: rgba(15, 28, 24, 0.42);
  box-shadow: 0 12px 30px rgba(8, 15, 13, 0.18);
  font-size: 0.88rem;
  font-weight: 850;
  backdrop-filter: blur(12px);
}

.hero-proof strong {
  color: var(--gold);
  font-weight: 950;
}

.hero-actions {
  flex-wrap: wrap;
  gap: 18px;
}

.button {
  padding: 0 20px;
  border: 0;
  cursor: pointer;
}

.button.primary {
  color: #14201d;
  background: var(--gold);
}

.button.cta-spark {
  position: relative;
  isolation: isolate;
  min-height: 52px;
  border: 1px solid rgba(255, 232, 178, 0.72);
  padding-inline: 24px;
  overflow: hidden;
  background:
    radial-gradient(circle at 18% 12%, rgba(255, 255, 255, 0.48), transparent 26%),
    linear-gradient(135deg, #f4d17b 0%, var(--gold) 50%, #c98f2e 100%),
    var(--gold);
  box-shadow:
    0 18px 38px rgba(214, 168, 79, 0.28),
    0 1px 0 rgba(255, 255, 255, 0.48) inset;
  transition:
    box-shadow 180ms ease,
    transform 180ms ease,
    border-color 180ms ease;
}

.button.cta-spark::before {
  position: absolute;
  inset: 1px auto 1px 1px;
  z-index: -1;
  width: 46%;
  border-radius: inherit;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.28), rgba(255, 255, 255, 0));
  content: "";
}

.button.cta-spark:hover,
.button.cta-spark:focus-visible {
  border-color: rgba(255, 241, 204, 0.9);
  box-shadow:
    0 24px 50px rgba(214, 168, 79, 0.34),
    0 1px 0 rgba(255, 255, 255, 0.54) inset;
  transform: translateY(-2px);
}

.button.secondary {
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.68);
  background: rgba(255, 255, 255, 0.2);
}

.hero-text-link {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.98rem;
  font-weight: 850;
  text-decoration: underline;
  text-decoration-color: rgba(214, 168, 79, 0.78);
  text-decoration-thickness: 2px;
  text-underline-offset: 5px;
}

.hero-text-link:hover,
.hero-text-link:focus-visible {
  color: #fff;
  text-decoration-color: var(--gold);
}

.fit-strip {
  border-bottom: 1px solid rgba(32, 61, 52, 0.14);
  background:
    radial-gradient(circle at 22% 0%, rgba(214, 168, 79, 0.14), transparent 32%),
    linear-gradient(135deg, #24594e 0%, #2f665d 58%, #4a7780 100%);
}

.fit-strip-copy {
  padding: 30px clamp(18px, 5vw, 72px) 34px;
  color: #fff;
  background: transparent;
  display: grid;
  justify-items: center;
  text-align: center;
}

.fit-strip-copy .section-kicker {
  margin-bottom: 12px;
}

.fit-pill-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  max-width: 920px;
}

.fit-pill-list span,
.fit-pill-list a {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  padding: 0 20px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  font-size: clamp(0.9rem, 1.6vw, 1.08rem);
  font-weight: 850;
  line-height: 1;
  white-space: nowrap;
  text-decoration: none;
  transition: background 160ms ease, border-color 160ms ease, transform 160ms ease;
}

.fit-pill-list a:hover,
.fit-pill-list a:focus-visible {
  border-color: rgba(241, 201, 109, 0.75);
  background: rgba(255, 255, 255, 0.15);
  transform: translateY(-1px);
}

.fit-strip-overview {
  margin-top: 16px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.92rem;
  font-weight: 850;
  text-decoration: underline;
  text-decoration-color: rgba(241, 201, 109, 0.72);
  text-underline-offset: 4px;
}

.fit-strip-overview:hover,
.fit-strip-overview:focus-visible {
  color: #fff;
  text-decoration-color: #f1c96d;
}

.calculator-section {
  background:
    radial-gradient(circle at 14% 12%, rgba(14, 118, 104, 0.1), transparent 30%),
    radial-gradient(circle at 86% 84%, rgba(214, 168, 79, 0.16), transparent 34%),
    #ece7dd;
}

.calculator-heading {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.56fr);
  gap: clamp(20px, 5vw, 48px);
  align-items: end;
}

.calculator-heading p:last-child {
  margin: 0;
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.6;
}

.calculator-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.44fr);
  gap: 20px;
  align-items: stretch;
}

.calculator-controls,
.calculator-result {
  border: 1px solid rgba(32, 61, 52, 0.13);
  border-radius: 8px;
  box-shadow:
    0 1px 0 rgba(23, 33, 31, 0.04),
    0 22px 56px rgba(23, 33, 31, 0.08);
}

.calculator-controls {
  display: grid;
  gap: 14px;
  padding: clamp(22px, 3vw, 34px);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(251, 250, 247, 0.9)),
    var(--panel);
}

.calculator-controls label {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(80px, auto);
  gap: 14px 18px;
  align-items: center;
  min-width: 0;
  border: 1px solid rgba(32, 61, 52, 0.1);
  border-radius: 8px;
  padding: 18px;
  background:
    radial-gradient(circle at 92% 14%, rgba(14, 118, 104, 0.08), transparent 34%),
    rgba(255, 255, 255, 0.68);
}

.calculator-controls input[type="range"] {
  grid-column: 1 / -1;
  min-height: auto;
  padding: 0;
  accent-color: var(--teal);
}

.calculator-label-copy {
  display: grid;
  gap: 5px;
  min-width: 0;
}

.calculator-label-copy strong {
  color: var(--forest);
  font-size: 0.98rem;
  line-height: 1.22;
}

.calculator-label-copy small {
  color: var(--muted);
  font-size: 0.84rem;
  font-weight: 750;
  line-height: 1.35;
}

.calculator-value {
  display: inline-flex;
  min-height: 40px;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 0 12px;
  color: #245b2b;
  background: #e4f8d8;
  font-size: 0.98rem;
  font-weight: 950;
  text-align: right;
  white-space: nowrap;
}

.calculator-result {
  position: relative;
  display: grid;
  align-content: center;
  gap: 16px;
  min-width: 0;
  padding: clamp(22px, 3vw, 34px);
  background:
    radial-gradient(circle at 88% 16%, rgba(214, 168, 79, 0.28), transparent 30%),
    linear-gradient(135deg, #083d38 0%, #0b5c52 48%, #0e7668 100%),
    var(--forest);
  color: #fff;
  overflow: hidden;
}

.calculator-result::before {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 5px;
  background: linear-gradient(90deg, var(--gold), var(--teal-bright));
  content: "";
}

.calculator-result p {
  margin: 0;
  color: rgba(255, 255, 255, 0.74);
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.calculator-result strong {
  display: block;
  max-width: 100%;
  font-size: clamp(2.05rem, 3.3vw, 3.05rem);
  line-height: 1;
  overflow-wrap: anywhere;
}

.calculator-result span {
  color: var(--gold);
  font-size: 1.18rem;
  font-weight: 900;
}

.calculator-result-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.calculator-result-pills span {
  display: inline-flex;
  min-height: 32px;
  align-items: center;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  padding: 0 11px;
  color: #083b35;
  background: #dff8f2;
  font-size: 0.76rem;
  font-weight: 950;
}

.calculator-result small {
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.55;
}

.calculator-result .button {
  width: fit-content;
  margin-top: 8px;
}

.demos {
  background: #fff;
}

.explorer-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.7fr);
  gap: clamp(20px, 5vw, 48px);
  align-items: end;
}

.explorer-heading > p {
  margin: 0;
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.6;
}

.explorer-heading h2 {
  max-width: 760px;
  font-size: clamp(1.9rem, 3.4vw, 3.15rem);
  line-height: 1.1;
}

.industry-explorer {
  display: grid;
  grid-template-columns: minmax(260px, 0.36fr) minmax(0, 1fr);
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(111, 137, 119, 0.12), rgba(214, 168, 79, 0.1)),
    #fbfaf7;
  box-shadow: var(--shadow);
}

.industry-picker {
  display: grid;
  align-content: start;
  gap: 8px;
  min-width: 0;
  padding: clamp(18px, 3vw, 28px);
  background: var(--forest);
}

.industry-tab {
  min-height: 50px;
  padding: 0 16px;
  min-width: 0;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 6px;
  color: rgba(255, 255, 255, 0.72);
  background: rgba(255, 255, 255, 0.05);
  cursor: pointer;
  font: inherit;
  font-weight: 850;
  text-align: left;
  white-space: normal;
  overflow-wrap: anywhere;
  transition: background 180ms ease, color 180ms ease, transform 180ms ease;
}

.industry-tab:hover,
.industry-tab:focus-visible {
  color: #fff;
  background: rgba(255, 255, 255, 0.12);
  transform: translateX(2px);
}

.industry-tab.is-active {
  color: #17211f;
  background: var(--gold);
  border-color: var(--gold);
}

.workflow-panel {
  display: grid;
  gap: 18px;
  min-width: 0;
  padding: clamp(22px, 3vw, 34px);
}

.workflow-panel-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 18px;
}

.workflow-panel-heading h3 {
  margin: 0;
  color: var(--forest);
  font-size: clamp(1.45rem, 2.4vw, 2.25rem);
  line-height: 1.08;
}

.workflow-panel-heading span {
  padding: 10px 14px;
  border-radius: 999px;
  color: var(--forest);
  background: #fff7e7;
  font-size: 0.82rem;
  font-weight: 900;
  white-space: nowrap;
}

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

.workflow-card {
  min-height: 210px;
  display: grid;
  align-content: start;
  gap: 14px;
  min-width: 0;
  padding: 22px;
  border: 1px solid rgba(32, 61, 52, 0.16);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 1px 0 rgba(23, 33, 31, 0.05);
  opacity: 0;
  transform: translateY(8px);
  animation: cardIn 260ms ease forwards;
}

.workflow-card:nth-child(2) {
  animation-delay: 70ms;
}

.workflow-card:nth-child(3) {
  animation-delay: 140ms;
}

.workflow-icon {
  display: inline-grid;
  min-width: 42px;
  width: fit-content;
  height: 42px;
  padding: 0 12px;
  margin-bottom: 8px;
  place-items: center;
  border-radius: 999px;
  color: var(--forest);
  background: #fff7e7;
  font-size: 0.74rem;
  font-weight: 900;
  text-transform: uppercase;
}

.workflow-card h4,
.workflow-cta h4 {
  margin: 0;
  color: var(--forest);
  font-size: 1.05rem;
}

.workflow-card p,
.workflow-cta p {
  margin: 0;
  color: var(--muted);
  line-height: 1.58;
}

.workflow-benefit {
  display: inline-flex;
  width: fit-content;
  padding: 8px 10px;
  border-radius: 999px;
  color: var(--forest);
  background: rgba(111, 137, 119, 0.14);
  font-size: 0.78rem;
  font-weight: 900;
}

.workflow-cta {
  display: grid;
  gap: 14px;
  padding: 22px;
  border: 1px solid rgba(32, 61, 52, 0.16);
  border-radius: 8px;
  background: #fff7e7;
}

.workflow-cta-button {
  width: fit-content;
}

.guardrails {
  background: #fff;
}

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

.guardrail-grid article {
  min-height: 220px;
  padding: 26px;
  border: 1px solid rgba(32, 61, 52, 0.16);
  border-radius: 8px;
  background: #fbfaf7;
}

.guardrail-grid h3 {
  margin-bottom: 12px;
  color: var(--forest);
  font-size: 1.12rem;
}

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

.reactivation {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(320px, 1fr);
  gap: clamp(24px, 5vw, 56px);
  align-items: start;
  background: #fff7e7;
  border-block: 1px solid rgba(214, 168, 79, 0.34);
}

.reactivation-copy > p {
  color: var(--muted);
  font-size: clamp(1.05rem, 2vw, 1.22rem);
  line-height: 1.65;
}

.reactivation-example {
  display: grid;
  gap: 10px;
  margin-top: 24px;
  padding: 24px;
  border: 1px solid rgba(32, 61, 52, 0.16);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.82);
}

.reactivation-example span {
  color: var(--clay);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.reactivation-example p {
  margin: 0;
  color: var(--forest);
  font-size: 1.08rem;
  font-weight: 800;
  line-height: 1.55;
}

@keyframes cardIn {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.section {
  padding: clamp(48px, 7vw, 84px) clamp(18px, 5vw, 72px);
}

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

.apply {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(320px, 1fr);
  gap: clamp(24px, 5vw, 56px);
  align-items: start;
}

.section h2 {
  max-width: 1180px;
  margin-bottom: 0;
  font-size: clamp(1.9rem, 3.5vw, 3.15rem);
  line-height: 1.1;
  letter-spacing: 0;
}

.apply-copy p {
  color: var(--muted);
  font-size: clamp(1.05rem, 2vw, 1.28rem);
  line-height: 1.65;
}

.queue-preview-shell {
  display: grid;
  gap: 16px;
  min-width: 0;
  padding: clamp(18px, 3vw, 26px);
  border: 1px solid rgba(223, 248, 242, 0.2);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(248, 253, 252, 0.98), rgba(232, 245, 242, 0.96)),
    #f8fdfc;
  box-shadow:
    0 34px 80px rgba(4, 24, 21, 0.34),
    0 1px 0 rgba(255, 255, 255, 0.74) inset;
}

.queue-preview-topbar {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 14px;
  min-width: 0;
}

.queue-preview-topbar div {
  display: grid;
  gap: 5px;
  min-width: 0;
}

.queue-preview-topbar span {
  color: var(--teal);
  font-size: 0.76rem;
  font-weight: 950;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.queue-preview-topbar strong {
  color: #17211f;
  font-size: clamp(1.25rem, 2.2vw, 1.82rem);
  line-height: 1.1;
}

.queue-preview-topbar p {
  display: inline-flex;
  min-height: 34px;
  flex: 0 0 auto;
  align-items: center;
  margin: 0;
  border-radius: 999px;
  padding: 0 12px;
  color: #083b35;
  background: var(--teal-pale);
  font-size: 0.82rem;
  font-weight: 950;
  white-space: nowrap;
}

.queue-preview-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.queue-preview-metrics article {
  min-width: 0;
  border: 1px solid rgba(14, 118, 104, 0.16);
  border-radius: 8px;
  padding: 13px;
  background: #fff;
}

.queue-preview-metrics strong,
.queue-preview-metrics span {
  display: block;
}

.queue-preview-metrics strong {
  color: #17211f;
  font-size: clamp(1.18rem, 2vw, 1.48rem);
  line-height: 1;
}

.queue-preview-metrics span {
  margin-top: 6px;
  color: #5d6d68;
  font-size: 0.74rem;
  font-weight: 820;
  line-height: 1.25;
}

.queue-card-stack {
  position: relative;
  min-height: clamp(250px, 28vw, 276px);
  overflow: hidden;
}

.queue-cycle-card {
  --queue-accent: var(--teal-bright);
  --queue-soft: var(--teal-pale);
  --queue-ink: #083b35;
  --queue-border: rgba(14, 118, 104, 0.18);
  position: absolute;
  inset: 0;
  display: grid;
  align-content: start;
  gap: 15px;
  min-width: 0;
  padding: clamp(18px, 3vw, 24px);
  border: 1px solid var(--queue-border);
  border-radius: 8px;
  background:
    linear-gradient(180deg, #ffffff, #f9fdfc),
    #fff;
  box-shadow: 0 18px 44px rgba(23, 33, 31, 0.12);
  opacity: 0;
  transform: translateX(22px) scale(0.985);
  animation: queueCycle 28s infinite;
}

.queue-cycle-card:nth-child(2) {
  animation-delay: 4s;
}

.queue-cycle-card:nth-child(3) {
  animation-delay: 8s;
}

.queue-cycle-card:nth-child(4) {
  animation-delay: 12s;
}

.queue-cycle-card:nth-child(5) {
  animation-delay: 16s;
}

.queue-cycle-card:nth-child(6) {
  animation-delay: 20s;
}

.queue-cycle-card:nth-child(7) {
  animation-delay: 24s;
}

.queue-cycle-card:nth-child(8) {
  animation-delay: 28s;
}

.queue-card-stack.is-cycle-3 .queue-cycle-card {
  animation-duration: 12s;
  animation-name: queueCycleThree;
}

.queue-card-stack.is-cycle-4 .queue-cycle-card {
  animation-duration: 16s;
  animation-name: queueCycleFour;
}

.queue-card-stack.is-cycle-7 .queue-cycle-card {
  animation-duration: 28s;
}

.queue-card-stack.is-cycle-8 .queue-cycle-card {
  animation-duration: 32s;
}

.queue-cycle-card::before {
  content: "";
  width: 48px;
  height: 5px;
  border-radius: 999px;
  background: var(--queue-accent);
}

.queue-cycle-card.is-call {
  --queue-accent: var(--teal-bright);
  --queue-soft: var(--teal-pale);
  --queue-ink: #083b35;
  --queue-border: rgba(14, 118, 104, 0.18);
}

.queue-cycle-card.is-appointment {
  --queue-accent: var(--gold);
  --queue-soft: #fff3d0;
  --queue-ink: #5b3b0e;
  --queue-border: rgba(214, 168, 79, 0.28);
}

.queue-cycle-card.is-voicemail {
  --queue-accent: var(--blue);
  --queue-soft: #e4f1f6;
  --queue-ink: #214b5f;
  --queue-border: rgba(62, 109, 129, 0.26);
}

.queue-cycle-card.is-review {
  --queue-accent: var(--sage);
  --queue-soft: #e8f0e9;
  --queue-ink: #345445;
  --queue-border: rgba(111, 137, 119, 0.28);
}

.queue-cycle-card.is-estimate {
  --queue-accent: var(--clay);
  --queue-soft: #f8e8e2;
  --queue-ink: #7a3f2d;
  --queue-border: rgba(185, 99, 71, 0.26);
}

.queue-cycle-card.is-reactivation {
  --queue-accent: #8a7b46;
  --queue-soft: #f3ecd2;
  --queue-ink: #514719;
  --queue-border: rgba(138, 123, 70, 0.28);
}

.queue-cycle-card.is-payment {
  --queue-accent: #4c7f8b;
  --queue-soft: #e6f2f4;
  --queue-ink: #255360;
  --queue-border: rgba(76, 127, 139, 0.28);
}

.queue-cycle-card div {
  display: grid;
  gap: 7px;
}

.queue-cycle-card span {
  width: fit-content;
  border-radius: 999px;
  padding: 7px 10px;
  color: var(--queue-ink);
  background: var(--queue-soft);
  font-size: 0.74rem;
  font-weight: 950;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.queue-cycle-card strong {
  color: #16211f;
  font-size: clamp(1.32rem, 2.35vw, 1.9rem);
  line-height: 1.08;
}

.queue-cycle-card p {
  max-width: 520px;
  margin: 0;
  color: #52615d;
  font-size: clamp(1rem, 1.5vw, 1.12rem);
  font-weight: 760;
  line-height: 1.46;
}

.queue-cycle-card small {
  width: fit-content;
  border: 1px solid var(--queue-border);
  border-radius: 8px;
  padding: 11px 12px;
  color: var(--queue-ink);
  background: var(--queue-soft);
  font-size: 0.84rem;
  font-weight: 900;
  line-height: 1.32;
}

@keyframes queueCycle {
  0% {
    opacity: 0;
    transform: translateX(22px) scale(0.985);
  }

  4%,
  13% {
    opacity: 1;
    transform: translateX(0) scale(1);
  }

  17%,
  100% {
    opacity: 0;
    transform: translateX(-22px) scale(0.985);
  }
}

@keyframes queueCycleThree {
  0% {
    opacity: 0;
    transform: translateX(22px) scale(0.985);
  }

  6%,
  28% {
    opacity: 1;
    transform: translateX(0) scale(1);
  }

  34%,
  100% {
    opacity: 0;
    transform: translateX(-22px) scale(0.985);
  }
}

@keyframes queueCycleFour {
  0% {
    opacity: 0;
    transform: translateX(22px) scale(0.985);
  }

  4%,
  20% {
    opacity: 1;
    transform: translateX(0) scale(1);
  }

  25%,
  100% {
    opacity: 0;
    transform: translateX(-22px) scale(0.985);
  }
}

@media (prefers-reduced-motion: reduce) {
  .queue-cycle-card {
    position: static;
    animation: none;
    opacity: 1;
    transform: none;
  }

  .queue-card-stack {
    display: grid;
    gap: 10px;
    min-height: auto;
  }
}

.platform-modules {
  background:
    radial-gradient(circle at 88% 12%, rgba(14, 118, 104, 0.07), transparent 34%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.78), rgba(237, 246, 241, 0.7)),
    #fbfaf6;
  border-block: 1px solid rgba(32, 61, 52, 0.1);
}

.platform-modules-heading {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.62fr);
  gap: clamp(20px, 5vw, 48px);
  align-items: end;
}

.platform-modules-heading h2 {
  max-width: 920px;
  font-size: clamp(1.95rem, 3.5vw, 3.15rem);
  line-height: 1.1;
}

.platform-modules-heading p:last-child {
  margin: 0;
  color: var(--muted);
  font-size: 1.06rem;
  line-height: 1.62;
}

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

.module-grid article {
  position: relative;
  display: grid;
  align-content: start;
  gap: 12px;
  min-height: 270px;
  padding: 26px;
  border: 1px solid rgba(32, 61, 52, 0.12);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(255, 247, 231, 0.84), rgba(223, 248, 242, 0.72)),
    #fff;
  box-shadow:
    0 1px 0 rgba(23, 33, 31, 0.05),
    0 18px 44px rgba(23, 33, 31, 0.06);
  overflow: hidden;
  transition:
    border-color 180ms ease,
    box-shadow 180ms ease,
    transform 180ms ease;
}

.module-grid article::before {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--teal), var(--gold));
  content: "";
}

.module-grid article:hover,
.module-grid article:focus-within {
  border-color: rgba(14, 118, 104, 0.26);
  box-shadow:
    0 1px 0 rgba(23, 33, 31, 0.05),
    0 26px 60px rgba(23, 33, 31, 0.1);
  transform: translateY(-2px);
}

.module-grid article:first-child,
.module-grid article:last-child {
  grid-column: auto;
  min-height: 270px;
}

.module-grid article.module-feature-card {
  grid-column: span 2;
  min-height: 300px;
  padding: 30px;
  border-color: rgba(14, 118, 104, 0.24);
  background:
    radial-gradient(circle at 90% 14%, rgba(214, 168, 79, 0.18), transparent 26%),
    linear-gradient(135deg, rgba(238, 251, 247, 0.96), rgba(255, 249, 238, 0.86)),
    #fff;
  box-shadow:
    0 1px 0 rgba(23, 33, 31, 0.06),
    0 28px 76px rgba(14, 118, 104, 0.14);
}

.module-grid article.module-feature-card::before {
  height: 6px;
  background: linear-gradient(90deg, var(--teal), #39b9a5 48%, var(--gold));
}

.module-grid article.module-feature-card h3 {
  max-width: 100%;
  font-size: clamp(1.48rem, 2.2vw, 2.05rem);
  line-height: 1.06;
}

.module-grid article.module-feature-card > p {
  max-width: 680px;
  font-size: 1.08rem;
}

.module-feature-label {
  display: inline-flex;
  gap: 8px;
  align-items: center;
}

.module-feature-icon {
  display: inline-grid;
  place-items: center;
  width: 30px;
  height: 30px;
  border-radius: 8px;
  color: #fff;
  background: var(--teal);
  font-size: 1.02rem;
  letter-spacing: 0;
  box-shadow: 0 10px 24px rgba(14, 118, 104, 0.18);
}

.module-feature-icon svg {
  width: 17px;
  height: 17px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.module-feature-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  margin: 6px 0 2px;
}

.module-grid .module-feature-proof span,
.module-grid .module-feature-proof strong {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 7px 10px;
  border-radius: 8px;
  color: var(--forest);
  background: rgba(14, 118, 104, 0.08);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0;
  line-height: 1.1;
  text-transform: none;
}

.module-grid span {
  width: fit-content;
  color: var(--clay);
  font-size: 0.76rem;
  font-weight: 950;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.module-card-topline {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
}

.module-grid .module-badge {
  padding: 5px 9px;
  border: 1px solid rgba(214, 168, 79, 0.65);
  border-radius: 999px;
  color: #4f3412;
  background: rgba(214, 168, 79, 0.16);
  font-family: ui-rounded, "SF Pro Rounded", Inter, ui-sans-serif, system-ui, sans-serif;
  font-size: 0.66rem;
  font-weight: 900;
  letter-spacing: 0.04em;
  line-height: 1;
}

.module-grid h3 {
  margin: 0;
  color: var(--forest);
  font-size: 1.22rem;
  line-height: 1.2;
}

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

.module-demo-links {
  display: flex;
  flex-wrap: wrap;
  gap: 6px 14px;
}

.module-grid .text-link {
  width: fit-content;
  margin-top: auto;
  color: var(--teal);
  text-decoration: underline;
  text-decoration-color: rgba(14, 118, 104, 0.3);
  text-decoration-thickness: 2px;
  text-underline-offset: 4px;
}

.receptionist-contrast,
.pain-section {
  background:
    radial-gradient(circle at 12% 10%, rgba(214, 168, 79, 0.1), transparent 28%),
    radial-gradient(circle at 88% 86%, rgba(14, 118, 104, 0.08), transparent 34%),
    #fff;
  border-top: 1px solid rgba(32, 61, 52, 0.1);
}

.contrast-heading,
.comparison-heading,
.home-services-heading,
.pain-heading,
.workflow-loop-heading,
.software-heading {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.62fr);
  gap: clamp(20px, 5vw, 48px);
  align-items: end;
}

.contrast-heading p:last-child,
.comparison-heading p:last-child,
.home-services-heading p:last-child,
.pain-heading p:last-child,
.workflow-loop-heading p:last-child,
.software-heading p:last-child {
  margin: 0;
  color: var(--muted);
  font-size: 1.06rem;
  line-height: 1.62;
}

.contrast-heading h2,
.comparison-heading h2,
.home-services-heading h2,
.pain-heading h2,
.workflow-loop-heading h2,
.software-heading h2 {
  max-width: 900px;
  font-size: clamp(1.95rem, 3.5vw, 3.15rem);
  line-height: 1.1;
}

.contrast-grid,
.pain-grid,
.loop-steps,
.software-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.contrast-grid article,
.pain-grid article,
.software-grid article {
  --pain-accent: var(--gold);
  --pain-soft: rgba(214, 168, 79, 0.14);
  --pain-ink: #604416;
  position: relative;
  display: grid;
  gap: 12px;
  min-height: 216px;
  align-content: start;
  padding: 24px 26px;
  border: 1px solid rgba(32, 61, 52, 0.12);
  border-radius: 8px;
  background:
    radial-gradient(circle at 92% 12%, var(--pain-soft), transparent 34%),
    linear-gradient(180deg, #ffffff, #fbfaf7),
    #fbfaf7;
  box-shadow:
    0 1px 0 rgba(23, 33, 31, 0.04),
    0 20px 48px rgba(23, 33, 31, 0.06);
  overflow: hidden;
  transition:
    border-color 180ms ease,
    box-shadow 180ms ease,
    transform 180ms ease;
}

.pain-grid article:hover,
.pain-grid article:focus-within {
  border-color: color-mix(in srgb, var(--pain-accent) 45%, rgba(32, 61, 52, 0.12));
  box-shadow:
    0 1px 0 rgba(23, 33, 31, 0.04),
    0 28px 68px rgba(23, 33, 31, 0.1);
  transform: translateY(-2px);
}

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

.pain-grid article {
  grid-column: span 2;
}

.pain-grid article:nth-child(1),
.pain-grid article:nth-child(2) {
  grid-column: span 3;
}

.pain-grid article:nth-child(2) {
  --pain-accent: var(--clay);
  --pain-soft: rgba(185, 99, 71, 0.13);
  --pain-ink: #703b2c;
}

.pain-grid article:nth-child(3) {
  --pain-accent: var(--sage);
  --pain-soft: rgba(111, 137, 119, 0.16);
  --pain-ink: #345445;
}

.pain-grid article:nth-child(4) {
  --pain-accent: var(--blue);
  --pain-soft: rgba(62, 109, 129, 0.14);
  --pain-ink: #264e62;
}

.pain-grid article:nth-child(5) {
  --pain-accent: var(--teal);
  --pain-soft: rgba(14, 118, 104, 0.13);
  --pain-ink: #0a554c;
}

.pain-grid article::before {
  position: absolute;
  top: 0;
  bottom: auto;
  left: 0;
  width: 100%;
  height: 4px;
  border-radius: 0;
  background: linear-gradient(90deg, var(--pain-accent), rgba(255, 255, 255, 0));
  content: "";
}

.pain-grid article:first-child,
.software-grid article:first-child {
  background:
    linear-gradient(135deg, rgba(255, 247, 231, 0.92), rgba(255, 255, 255, 0.96)),
    #fff7e7;
}

.pain-card-top {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 12px;
  min-width: 0;
}

.pain-badge {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  color: var(--pain-ink);
  font-size: 0.72rem;
  font-weight: 950;
  letter-spacing: 0.08em;
  line-height: 1.2;
  text-transform: uppercase;
  white-space: nowrap;
}

.pain-badge::before {
  display: inline-block;
  width: 18px;
  height: 3px;
  margin-right: 8px;
  border-radius: 999px;
  background: var(--pain-accent);
  content: "";
}

.pain-action {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  gap: 8px;
  margin-top: auto;
  color: var(--pain-ink);
  font-size: 0.84rem;
  font-weight: 950;
  line-height: 1.2;
}

.pain-action::before {
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  content: "Next move";
}

.contrast-grid span {
  width: fit-content;
  color: var(--clay);
  font-size: 0.78rem;
  font-weight: 950;
  letter-spacing: 0.08em;
}

.contrast-grid h3,
.pain-grid h3,
.software-grid h3 {
  margin: 0;
  color: var(--forest);
  font-size: 1.22rem;
  line-height: 1.18;
}

.pain-grid h3 {
  max-width: 23ch;
}

.contrast-grid p,
.pain-grid p,
.software-grid p {
  margin: 0;
  color: var(--muted);
  line-height: 1.58;
}

.workflow-loop {
  background:
    radial-gradient(circle at 16% 12%, rgba(14, 118, 104, 0.09), transparent 31%),
    radial-gradient(circle at 84% 82%, rgba(214, 168, 79, 0.16), transparent 34%),
    linear-gradient(135deg, rgba(255, 247, 231, 0.94), rgba(236, 231, 221, 0.82)),
    #fff7e7;
  border-block: 1px solid rgba(214, 168, 79, 0.34);
}

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

.loop-steps article {
  display: grid;
  grid-template-columns: 38px minmax(0, 1fr);
  align-content: start;
  align-items: center;
  gap: 12px;
  min-height: 210px;
  padding: 24px;
  border: 1px solid rgba(32, 61, 52, 0.16);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.76);
}

.loop-steps span {
  display: inline-grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border-radius: 999px;
  color: #14201d;
  background: var(--gold);
  font-size: 0.8rem;
  font-weight: 950;
}

.loop-steps h3 {
  grid-column: 2;
  margin: 0;
  color: var(--forest);
  font-size: 1.08rem;
}

.loop-steps p {
  grid-column: 1 / -1;
  margin: 0;
  color: var(--muted);
  line-height: 1.58;
}

.rhythm-list-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: clamp(18px, 4vw, 34px);
  align-items: stretch;
}

.rhythm-list {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.rhythm-list::before {
  position: absolute;
  top: 42px;
  right: 9%;
  left: 9%;
  height: 2px;
  background: linear-gradient(90deg, rgba(14, 118, 104, 0.08), rgba(14, 118, 104, 0.32), rgba(214, 168, 79, 0.34));
  content: "";
}

.rhythm-list article {
  --step-accent: var(--gold);
  --step-soft: rgba(214, 168, 79, 0.16);
  --step-ink: #5b3b0e;
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 14px;
  align-items: start;
  min-height: 226px;
  padding: 22px;
  border: 1px solid rgba(32, 61, 52, 0.12);
  border-radius: 8px;
  background:
    radial-gradient(circle at 88% 12%, var(--step-soft), transparent 36%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(251, 250, 247, 0.9)),
    #fff;
  box-shadow:
    0 1px 0 rgba(23, 33, 31, 0.04),
    0 18px 46px rgba(23, 33, 31, 0.07);
  overflow: hidden;
  transition:
    border-color 180ms ease,
    box-shadow 180ms ease,
    transform 180ms ease;
}

.rhythm-list article:nth-child(2) {
  --step-accent: var(--teal);
  --step-soft: rgba(14, 118, 104, 0.13);
  --step-ink: #0a554c;
}

.rhythm-list article:nth-child(3) {
  --step-accent: var(--clay);
  --step-soft: rgba(185, 99, 71, 0.13);
  --step-ink: #703b2c;
}

.rhythm-list article:nth-child(4) {
  --step-accent: var(--blue);
  --step-soft: rgba(62, 109, 129, 0.14);
  --step-ink: #264e62;
}

.rhythm-list article:hover,
.rhythm-list article:focus-within {
  border-color: color-mix(in srgb, var(--step-accent) 38%, rgba(32, 61, 52, 0.12));
  box-shadow:
    0 1px 0 rgba(23, 33, 31, 0.04),
    0 28px 66px rgba(23, 33, 31, 0.11);
  transform: translateY(-2px);
}

.rhythm-list article::before {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--step-accent), rgba(255, 255, 255, 0));
  content: "";
}

.rhythm-step-top {
  display: flex;
  align-items: center;
  gap: 9px;
  min-width: 0;
}

.rhythm-list span {
  display: inline-grid;
  position: relative;
  z-index: 1;
  flex: 0 0 auto;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: 999px;
  color: var(--step-ink);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.56), var(--step-soft)),
    #fff;
  border: 1px solid color-mix(in srgb, var(--step-accent) 42%, white);
  font-size: 0.8rem;
  font-weight: 950;
  box-shadow: 0 12px 28px rgba(23, 33, 31, 0.08);
}

.rhythm-list article > div {
  display: grid;
  gap: 9px;
}

.rhythm-list article > .rhythm-step-top {
  display: flex;
}

.rhythm-list small {
  display: inline-flex;
  width: fit-content;
  min-height: 30px;
  align-items: center;
  border-radius: 999px;
  padding: 0 12px;
  color: var(--step-ink);
  background: var(--step-soft);
  font-size: 0.72rem;
  font-weight: 950;
  letter-spacing: 0.06em;
  line-height: 1;
  text-transform: uppercase;
}

.rhythm-list h3 {
  margin: 0;
  color: var(--forest);
}

.rhythm-list h3 {
  font-size: 1.13rem;
  line-height: 1.18;
}

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

.software-fit {
  background:
    radial-gradient(circle at 12% 8%, rgba(14, 118, 104, 0.11), transparent 34%),
    #ece7dd;
}

.software-layer-panel {
  display: grid;
  gap: 14px;
  border: 1px solid rgba(32, 61, 52, 0.16);
  border-radius: 8px;
  padding: clamp(18px, 2.6vw, 28px);
  background:
    radial-gradient(circle at 18% 16%, rgba(29, 182, 161, 0.1), transparent 32%),
    radial-gradient(circle at 88% 78%, rgba(214, 168, 79, 0.13), transparent 34%),
    linear-gradient(180deg, #ffffff, #f8fbfa),
    #fff;
  box-shadow: 0 26px 70px rgba(23, 33, 31, 0.11);
}

.thin-layer-card {
  position: relative;
  display: grid;
  border: 1px solid rgba(223, 248, 242, 0.28);
  border-radius: 8px;
  padding: clamp(16px, 2.2vw, 22px);
  color: #fff;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), transparent 42%),
    linear-gradient(135deg, #083d38 0%, #0b5c52 52%, #0e7668 100%),
    var(--teal);
  box-shadow:
    0 24px 58px rgba(5, 45, 40, 0.22),
    0 1px 0 rgba(255, 255, 255, 0.16) inset;
  overflow: hidden;
}

.thin-layer-card::after {
  position: absolute;
  right: 22px;
  bottom: 18px;
  width: min(240px, 28%);
  height: 7px;
  border-radius: 999px;
  background:
    linear-gradient(90deg, rgba(223, 248, 242, 0.1), rgba(223, 248, 242, 0.72), rgba(214, 168, 79, 0.78));
  content: "";
}

.thin-layer-top {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 14px;
  align-items: center;
}

.engine-mark {
  width: 48px;
  height: auto;
  filter: drop-shadow(0 10px 20px rgba(4, 24, 21, 0.28));
}

.thin-layer-top span {
  display: block;
  margin-bottom: 7px;
  color: #bff5ea;
  font-size: 0.76rem;
  font-weight: 950;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.thin-layer-top strong {
  display: block;
  max-width: 900px;
  color: #fff;
  font-size: clamp(1.32rem, 2.1vw, 1.82rem);
  line-height: 1.12;
}

.thin-layer-card p {
  position: relative;
  z-index: 1;
  max-width: 900px;
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: clamp(1rem, 1.5vw, 1.12rem);
  font-weight: 780;
  line-height: 1.58;
}

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

.connector-flow article {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 7px 12px;
  min-height: 128px;
  align-content: start;
  border: 1px solid rgba(32, 61, 52, 0.13);
  border-radius: 8px;
  padding: 16px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(247, 251, 250, 0.88)),
    #f7fbfa;
  box-shadow: 0 14px 32px rgba(23, 33, 31, 0.07);
}

.connector-flow span {
  display: inline-flex;
  width: 34px;
  height: 34px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: #fff;
  background: var(--teal);
  font-size: 0.78rem;
  font-weight: 950;
}

.connector-flow strong {
  align-self: center;
  color: var(--forest);
  font-size: 1.04rem;
  line-height: 1.18;
}

.connector-flow p {
  grid-column: 1 / -1;
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 720;
  line-height: 1.46;
}

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

.implementation-points article {
  display: grid;
  gap: 10px;
  min-height: 112px;
  align-content: start;
  border: 1px solid rgba(32, 61, 52, 0.12);
  border-radius: 8px;
  padding: 16px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(251, 250, 247, 0.84)),
    #fbfaf7;
  box-shadow: 0 12px 28px rgba(23, 33, 31, 0.06);
}

.implementation-points span {
  width: fit-content;
  border-radius: 999px;
  padding: 7px 10px;
  color: #083b35;
  background: rgba(14, 118, 104, 0.1);
  font-size: 0.72rem;
  font-weight: 950;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.implementation-points strong {
  color: var(--forest);
  font-size: 0.96rem;
  line-height: 1.34;
}

.tool-name-strip {
  display: grid;
  gap: 10px;
  border: 1px solid rgba(32, 61, 52, 0.12);
  border-radius: 8px;
  padding: 16px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.82), rgba(251, 250, 247, 0.68)),
    rgba(255, 255, 255, 0.68);
}

.tool-name-strip p {
  margin: 0;
  color: var(--muted);
  font-size: 0.76rem;
  font-weight: 950;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.tool-name-strip div {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.tool-name-strip span {
  display: inline-flex;
  min-height: 30px;
  align-items: center;
  border: 1px solid rgba(32, 61, 52, 0.1);
  border-radius: 999px;
  padding: 0 10px;
  color: var(--forest);
  background: rgba(255, 255, 255, 0.86);
  font-size: 0.74rem;
  font-weight: 900;
}

.queue-signal-list {
  display: flex;
  flex: 0 0 auto;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: flex-end;
  max-width: 360px;
}

.closeful-layer .queue-signal-list span {
  display: inline-flex;
  min-height: 34px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  padding: 0 12px;
  color: #083b35;
  background: #dff8f2;
  font-size: 0.78rem;
  letter-spacing: 0;
  line-height: 1;
  text-transform: none;
}

.comparison {
  background: #ece7dd;
}

.comparison-table-wrap {
  max-width: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: var(--shadow);
  overflow-x: auto;
}

.comparison-table {
  width: 100%;
  min-width: 920px;
  border-collapse: collapse;
}

.comparison-table th,
.comparison-table td {
  padding: 18px 16px;
  border-bottom: 1px solid rgba(32, 61, 52, 0.12);
  text-align: left;
  vertical-align: top;
}

.comparison-table thead th {
  color: var(--forest);
  background: #fff7e7;
  font-size: 0.82rem;
  font-weight: 950;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.comparison-table tbody th {
  color: var(--forest);
  font-weight: 900;
}

.comparison-table td {
  color: var(--muted);
  font-weight: 760;
}

.comparison-table tr:last-child th,
.comparison-table tr:last-child td {
  border-bottom: 0;
}

.comparison-table .is-strong {
  color: var(--forest);
  background: rgba(214, 168, 79, 0.14);
  font-weight: 950;
}

.contact-callout {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px 14px;
  margin-top: 24px;
  padding-top: 22px;
  border-top: 1px solid rgba(32, 61, 52, 0.14);
}

.contact-callout p {
  flex-basis: 100%;
  margin: 0;
  color: var(--forest);
  font-size: 0.94rem;
  font-weight: 900;
}

.contact-phone {
  color: var(--forest);
  font-size: 0.94rem;
  font-weight: 900;
}

.call-button {
  border: 1px solid rgba(32, 61, 52, 0.22);
}

.contact-callout .call-button {
  color: var(--forest);
  background: #fff;
}

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

.results {
  background: #ece7dd;
}

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

.benefit-grid article,
.steps article,
.lead-form {
  background: var(--panel);
  box-shadow: 0 1px 0 rgba(23, 33, 31, 0.05);
}

.benefit-grid article,
.steps article {
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.benefit-grid article {
  min-height: 210px;
}

.step-heading {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 24px;
}

.steps span {
  display: inline-grid;
  flex: 0 0 auto;
  min-width: 38px;
  height: 38px;
  padding: 0 10px;
  place-items: center;
  color: #fff;
  background: var(--forest);
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 900;
}

.benefit-grid h3,
.steps h3 {
  margin-bottom: 12px;
  font-size: 1.14rem;
}

.step-heading h3 {
  margin-bottom: 0;
}

.benefit-grid p,
.steps p {
  color: var(--muted);
  line-height: 1.58;
}

.text-link {
  display: inline-flex;
  margin-top: 8px;
  color: var(--clay);
  font-weight: 900;
}

.swipe-cue,
.carousel-dots {
  display: none;
}

.owner-action {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(360px, 1fr);
  gap: clamp(24px, 5vw, 56px);
  align-items: center;
  background: var(--forest);
  color: #fff;
}

.owner-action h2 {
  max-width: 780px;
}

.owner-action-copy p:not(.section-kicker) {
  max-width: 640px;
  margin-top: 22px;
  color: rgba(255, 255, 255, 0.78);
  font-size: clamp(1.05rem, 2vw, 1.22rem);
  line-height: 1.62;
}

.owner-action-button {
  width: fit-content;
  margin-top: 12px;
}

.action-board {
  display: grid;
  gap: 12px;
}

.action-board article {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: 16px;
  align-items: center;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.09);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.04);
}

.action-priority {
  display: inline-grid;
  min-width: 74px;
  min-height: 32px;
  place-items: center;
  border-radius: 999px;
  color: #14201d;
  background: var(--gold);
  font-size: 0.76rem;
  font-weight: 950;
  text-transform: uppercase;
}

.action-priority.medium {
  background: #b9d1c1;
}

.action-priority.review {
  color: #fff;
  background: var(--blue);
}

.action-board h3 {
  margin: 0 0 6px;
  color: #fff;
  font-size: 1.02rem;
}

.action-board p {
  margin: 0;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.45;
}

.action-board strong {
  color: var(--gold);
  font-size: 0.86rem;
  white-space: nowrap;
}

.home-services-focus {
  background: #fff7e7;
  border-bottom: 1px solid rgba(214, 168, 79, 0.34);
}

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

.home-services-grid article {
  min-height: 210px;
  padding: 24px;
  border: 1px solid rgba(32, 61, 52, 0.16);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.74);
}

.home-services-grid h3 {
  margin: 0 0 12px;
  color: var(--forest);
  font-size: 1.12rem;
}

.home-services-grid p {
  margin: 0;
  color: var(--muted);
  line-height: 1.58;
}

.process {
  background:
    linear-gradient(180deg, rgba(111, 137, 119, 0.14), rgba(111, 137, 119, 0.06)),
    #eef4ef;
  border-block: 1px solid rgba(32, 61, 52, 0.12);
}

.process h2 {
  max-width: 760px;
  font-size: clamp(1.9rem, 3vw, 2.85rem);
  line-height: 1.12;
}

.process-subhead {
  max-width: 760px;
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 1.06rem;
  line-height: 1.62;
}

.steps {
  align-items: stretch;
  gap: 16px;
}

.steps article {
  flex: 1;
}

.pricing {
  background:
    radial-gradient(circle at 12% 16%, rgba(14, 118, 104, 0.09), transparent 30%),
    radial-gradient(circle at 88% 86%, rgba(214, 168, 79, 0.16), transparent 34%),
    #fffaf0;
  border-block: 1px solid rgba(214, 168, 79, 0.2);
}

.pricing-heading {
  max-width: 1180px;
}

.pricing-heading .pricing-subhead {
  max-width: 860px;
  margin: 22px 0 0;
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.6;
}

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

.pricing-card {
  --pricing-accent: var(--sage);
  --pricing-soft: rgba(111, 137, 119, 0.14);
  --pricing-ink: #345445;
  position: relative;
  display: grid;
  align-content: start;
  gap: 18px;
  min-height: 460px;
  padding: 28px;
  border: 1px solid rgba(32, 61, 52, 0.13);
  border-radius: 8px;
  background:
    radial-gradient(circle at 88% 12%, var(--pricing-soft), transparent 34%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(251, 250, 247, 0.94)),
    var(--panel);
  box-shadow:
    0 1px 0 rgba(23, 33, 31, 0.05),
    0 18px 48px rgba(23, 33, 31, 0.07);
  overflow: hidden;
  transition:
    border-color 180ms ease,
    box-shadow 180ms ease,
    transform 180ms ease;
}

.pricing-card::before {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 5px;
  background: linear-gradient(90deg, var(--pricing-accent), rgba(255, 255, 255, 0));
  content: "";
}

.pricing-card:hover,
.pricing-card:focus-within {
  border-color: color-mix(in srgb, var(--pricing-accent) 38%, rgba(32, 61, 52, 0.13));
  box-shadow:
    0 1px 0 rgba(23, 33, 31, 0.05),
    0 28px 66px rgba(23, 33, 31, 0.11);
  transform: translateY(-2px);
}

.pricing-card.is-featured {
  --pricing-accent: var(--gold);
  --pricing-soft: rgba(214, 168, 79, 0.18);
  --pricing-ink: #5b3b0e;
  border-color: rgba(214, 168, 79, 0.66);
  background:
    radial-gradient(circle at 88% 12%, rgba(214, 168, 79, 0.2), transparent 34%),
    linear-gradient(135deg, rgba(255, 247, 231, 0.9), rgba(255, 253, 248, 0.98)),
    #fffdf8;
  box-shadow:
    0 1px 0 rgba(23, 33, 31, 0.05),
    0 28px 70px rgba(23, 33, 31, 0.12);
}

.pricing-card:first-child,
.pricing-card:nth-child(3) {
  --pricing-accent: var(--teal);
  --pricing-soft: rgba(14, 118, 104, 0.13);
  --pricing-ink: #0a554c;
}

.pricing-card-head {
  display: grid;
  gap: 12px;
}

.pricing-card-head span {
  display: inline-flex;
  width: fit-content;
  min-height: 30px;
  align-items: center;
  border-radius: 999px;
  padding: 0 10px;
  color: var(--pricing-ink);
  background: var(--pricing-soft);
  font-size: 0.76rem;
  font-weight: 950;
  letter-spacing: 0.06em;
  line-height: 1;
  text-transform: uppercase;
}

.pricing-card h3 {
  margin: 0;
  color: var(--forest);
  font-size: clamp(1.38rem, 2vw, 1.75rem);
  line-height: 1.08;
}

.pricing-price {
  margin: 0;
  color: var(--ink);
  font-size: clamp(1.42rem, 2.35vw, 1.95rem);
  font-weight: 900;
  line-height: 1.08;
}

.pricing-price span {
  color: var(--gold);
}

.pricing-fit {
  margin: 0;
  color: var(--forest);
  font-weight: 850;
  line-height: 1.5;
}

.pricing-card ul {
  display: grid;
  gap: 8px;
  margin: 0 0 6px;
  padding: 0;
  list-style: none;
}

.pricing-card li {
  position: relative;
  min-height: 34px;
  padding: 9px 10px 9px 30px;
  border: 1px solid rgba(32, 61, 52, 0.09);
  border-radius: 6px;
  color: #4e605b;
  background: rgba(255, 255, 255, 0.68);
  line-height: 1.42;
}

.pricing-card li::before {
  content: "";
  position: absolute;
  left: 11px;
  top: 1.08em;
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: var(--pricing-accent);
}

.pricing-button {
  width: 100%;
  margin-top: auto;
  color: var(--forest);
  border: 1px solid rgba(32, 61, 52, 0.2);
}

.pricing-button.cta-spark {
  border-color: rgba(255, 232, 178, 0.72);
}

.pricing-bundle,
.pricing-bridge {
  max-width: 980px;
  margin: 24px auto 0;
  color: var(--forest);
  font-size: 1.02rem;
  font-weight: 800;
  line-height: 1.55;
  text-align: center;
}

.pricing-bundle {
  font-style: italic;
}

.apply {
  background: #fff;
}

.lead-form {
  display: grid;
  gap: 18px;
  padding: clamp(24px, 4vw, 40px);
  border: 1px solid rgba(32, 61, 52, 0.14);
  border-radius: 8px;
  background:
    linear-gradient(180deg, #ffffff, #fbfaf7),
    var(--panel);
  box-shadow: 0 26px 72px rgba(23, 33, 31, 0.14);
}

.lead-form .form-heading {
  display: grid;
  gap: 8px;
}

.lead-form .form-heading h3 {
  margin: 0;
  color: var(--forest);
  font-size: clamp(1.35rem, 2.35vw, 1.85rem);
  line-height: 1.14;
}

.lead-form .form-heading p:last-child {
  margin: 0 0 2px;
  color: var(--muted);
  line-height: 1.52;
}

label {
  display: grid;
  gap: 8px;
  color: var(--forest);
  font-size: 0.88rem;
  font-weight: 800;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid #cfc7ba;
  border-radius: 6px;
  color: var(--ink);
  background: #fbfaf7;
  font: inherit;
}

fieldset {
  min-width: 0;
  margin: 0;
  padding: 0;
  border: 0;
}

legend {
  margin: 0 0 8px;
  color: var(--forest);
  font-size: 0.88rem;
  font-weight: 800;
}

input,
select {
  min-height: 48px;
  padding: 0 13px;
}

textarea {
  resize: vertical;
  padding: 13px;
  line-height: 1.45;
}

textarea::placeholder {
  color: #8a958f;
  opacity: 1;
}

.lead-form textarea {
  min-height: 118px;
}

input[type="hidden"] {
  display: none;
}

.legal-consent {
  display: grid;
  grid-template-columns: 18px minmax(0, 1fr);
  gap: 10px;
  align-items: start;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 650;
  line-height: 1.45;
}

.sms-consent {
  margin-top: 0;
}

.legal-consent.is-required {
  color: var(--forest);
  font-weight: 750;
}

.legal-consent.is-required input {
  accent-color: var(--teal);
}

.legal-consent input {
  width: 18px;
  min-height: 18px;
  height: 18px;
  margin: 2px 0 0;
  padding: 0;
  accent-color: var(--forest);
}

.legal-consent a {
  color: var(--forest);
  font-weight: 850;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.form-button {
  width: 100%;
  min-height: 52px;
  margin-top: 4px;
  font-size: 1rem;
}

.site-footer,
.footer-links {
  display: flex;
  align-items: center;
}

.site-footer {
  justify-content: space-between;
  gap: 20px;
  padding: 28px clamp(18px, 5vw, 72px);
  color: #fff;
  background: #101816;
}

.footer-links {
  flex-wrap: wrap;
  gap: 16px;
  font-size: 0.9rem;
  font-weight: 800;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.76);
}

.footer-links a:hover,
.footer-links a:focus-visible {
  color: #fff;
}

.site-footer p {
  margin: 0;
}

.site-footer p:last-child {
  color: rgba(255, 255, 255, 0.68);
}

.thank-you-page {
  min-height: 100vh;
  background:
    linear-gradient(135deg, #24594e 0%, #2f665d 58%, #4a7780 100%),
    var(--forest);
  color: #fff;
}

.thank-you {
  display: grid;
  min-height: 100vh;
  align-content: center;
  gap: 34px;
  padding: clamp(24px, 6vw, 72px);
}

.thank-you-brand {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  gap: 10px;
  font-weight: 900;
}

.thank-you-panel {
  width: min(720px, 100%);
}

.thank-you-panel h1 {
  max-width: 680px;
  margin-bottom: 20px;
  font-size: clamp(3rem, 8vw, 6rem);
}

.thank-you-panel p {
  max-width: 620px;
  margin-bottom: 30px;
  color: rgba(255, 255, 255, 0.84);
  font-size: clamp(1.05rem, 2vw, 1.26rem);
  line-height: 1.6;
}

.thank-you-panel .thank-you-support {
  margin-top: -16px;
  font-size: 1rem;
}

.thank-you-support a {
  color: var(--gold);
  font-weight: 900;
}

.legal-page {
  background: var(--paper);
}

.legal-header {
  position: static;
  color: var(--forest);
  background: #fff;
  border-bottom: 1px solid var(--line);
}

.demo-header {
  position: fixed;
  color: var(--forest);
  padding-top: 12px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(32, 61, 52, 0.14);
  background:
    linear-gradient(180deg, rgba(255, 252, 245, 0.82), rgba(255, 252, 245, 0.62)),
    rgba(255, 252, 245, 0.62);
  box-shadow: 0 10px 26px rgba(8, 15, 13, 0.08);
  backdrop-filter: blur(18px);
}

.demo-header.is-scrolled {
  color: var(--forest);
  border-bottom-color: rgba(32, 61, 52, 0.11);
  background:
    linear-gradient(180deg, rgba(255, 252, 245, 0.54), rgba(255, 252, 245, 0.34)),
    rgba(255, 252, 245, 0.34);
  box-shadow: 0 8px 22px rgba(8, 15, 13, 0.06);
}

.demo-header .brand,
.demo-header.is-scrolled .brand {
  opacity: 1;
}

.demo-header .brand span:last-child {
  color: var(--forest);
  font-weight: 650;
  text-shadow: none;
}

.demo-header .brand-mark-img {
  width: 48px;
  border-radius: 999px;
  filter: drop-shadow(0 4px 12px rgba(8, 15, 13, 0.18));
}

.demo-header .nav-links {
  font-weight: 750;
}

.demo-header .nav-links a {
  color: rgba(32, 61, 52, 0.86);
}

.demo-header .nav-links a:hover,
.demo-header .nav-links a:focus-visible {
  color: #f1c96d;
}

.demo-header .desktop-login-link,
.demo-header.is-scrolled .desktop-login-link {
  color: var(--forest);
  border-color: rgba(32, 61, 52, 0.22);
  background: rgba(255, 255, 255, 0.28);
}

.demo-header .desktop-login-link:hover,
.demo-header .desktop-login-link:focus-visible,
.demo-header.is-scrolled .desktop-login-link:hover,
.demo-header.is-scrolled .desktop-login-link:focus-visible {
  border-color: rgba(241, 201, 109, 0.58);
  background: rgba(255, 255, 255, 0.48);
}

.demo-header .mobile-menu-toggle {
  color: var(--forest);
  border-color: rgba(32, 61, 52, 0.18);
  background: rgba(255, 255, 255, 0.34);
}

.legal-content {
  max-width: 920px;
  padding: clamp(96px, 12vw, 140px) clamp(20px, 6vw, 72px);
}

.legal-content h1 {
  max-width: 900px;
  color: var(--ink);
  text-shadow: none;
}

.legal-content h2 {
  margin: 40px 0 14px;
  color: var(--forest);
  font-size: clamp(1.35rem, 2vw, 1.8rem);
  line-height: 1.18;
}

.legal-content p,
.legal-content li {
  color: var(--muted);
  font-size: 1.02rem;
  line-height: 1.7;
}

.legal-content ul {
  display: grid;
  gap: 10px;
  margin: 0 0 22px;
  padding-left: 22px;
}

.legal-meta {
  color: var(--gold);
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

@media (max-width: 1180px) {
  .nav-links {
    gap: 16px;
  }

  .hero-content {
    width: min(660px, calc(100% - 36px));
  }

}

@media (max-width: 980px) {
  .hero-content {
    width: min(760px, calc(100% - 36px));
    padding-top: 17vh;
    padding-bottom: 28px;
  }

  .promo-active .hero-content {
    padding-top: clamp(150px, 20vh, 190px);
  }

  .apply,
  .contrast-heading,
  .pain-heading,
  .workflow-loop-heading,
  .platform-modules-heading,
  .software-heading,
  .calculator-heading,
  .calculator-grid,
  .comparison-heading,
  .explorer-heading,
  .industry-explorer,
  .reactivation,
  .owner-action,
  .home-services-heading {
    grid-template-columns: 1fr;
  }

  .benefit-grid,
  .contrast-grid,
  .connector-flow,
  .pain-grid,
  .module-grid,
  .loop-steps,
  .software-grid,
  .guardrail-grid,
  .workflow-grid,
  .home-services-grid,
  .pricing-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .module-grid article:first-child,
  .module-grid article:last-child,
  .module-grid article.module-feature-card,
  .pain-grid article,
  .pain-grid article:nth-child(1),
  .pain-grid article:nth-child(2) {
    grid-column: auto;
  }

  .steps {
    display: grid;
  }

  .rhythm-list-layout {
    grid-template-columns: 1fr;
  }

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

  .rhythm-list::before {
    display: none;
  }

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

  .implementation-points {
    grid-template-columns: 1fr;
  }

  .queue-signal-list {
    justify-content: flex-start;
  }
}

@media (max-width: 900px) {
  :root {
    --promo-height: 58px;
  }

  .promo-banner-link {
    gap: 10px;
    padding: 8px 14px;
    text-align: center;
  }

  .promo-banner-label,
  .promo-banner-cta {
    min-height: 24px;
    font-size: 0.66rem;
  }

  .promo-banner-link strong {
    font-size: 0.92rem;
  }

  .promo-banner-cta {
    align-self: center;
  }

  .site-header {
    display: flex;
    justify-content: space-between;
  }

  .nav-links {
    display: none;
  }

  .desktop-login-link,
  .header-actions {
    display: none;
  }

  .mobile-menu-toggle {
    display: inline-flex;
    flex: 0 0 auto;
    width: 42px;
    height: 42px;
    padding: 0;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4px;
    border: 1px solid rgba(255, 255, 255, 0.28);
    border-radius: 6px;
    color: currentColor;
    background: rgba(255, 255, 255, 0.08);
    cursor: pointer;
  }

  .site-header.is-scrolled .mobile-menu-toggle {
    border-color: rgba(32, 61, 52, 0.22);
    background: rgba(255, 255, 255, 0.7);
  }

  .mobile-menu-toggle span {
    display: block;
    width: 18px;
    height: 2px;
    border-radius: 999px;
    background: currentColor;
  }

  .mobile-nav-backdrop {
    position: fixed;
    z-index: 60;
    inset: 0;
    display: block;
    border: 0;
    background: rgba(16, 24, 22, 0.46);
    opacity: 0;
    pointer-events: none;
    transition: opacity 180ms ease;
  }

  .mobile-nav-drawer {
    position: fixed;
    z-index: 70;
    top: 0;
    bottom: 0;
    left: 0;
    display: flex;
    flex-direction: column;
    width: min(86vw, 360px);
    gap: 16px;
    padding: 18px;
    color: var(--forest);
    background:
      radial-gradient(circle at 18% 8%, rgba(14, 118, 104, 0.1), transparent 30%),
      radial-gradient(circle at 82% 78%, rgba(214, 168, 79, 0.16), transparent 32%),
      #fffaf0;
    box-shadow: 24px 0 70px rgba(23, 33, 31, 0.22);
    overflow-y: auto;
    transform: translateX(-104%);
    transition: transform 200ms ease;
  }

  body.mobile-nav-open {
    overflow: hidden;
  }

  body.mobile-nav-open .mobile-nav-backdrop {
    opacity: 1;
    pointer-events: auto;
  }

  body.mobile-nav-open .mobile-nav-drawer {
    transform: translateX(0);
  }

  .mobile-nav-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding-bottom: 16px;
    border-bottom: 1px solid rgba(32, 61, 52, 0.14);
  }

  .mobile-nav-close {
    position: relative;
    flex: 0 0 auto;
    width: 40px;
    height: 40px;
    border: 1px solid rgba(32, 61, 52, 0.2);
    border-radius: 6px;
    color: var(--forest);
    background: #fff;
    cursor: pointer;
  }

  .mobile-nav-close span {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 18px;
    height: 2px;
    border-radius: 999px;
    background: currentColor;
  }

  .mobile-nav-close span:first-child {
    transform: translate(-50%, -50%) rotate(45deg);
  }

  .mobile-nav-close span:last-child {
    transform: translate(-50%, -50%) rotate(-45deg);
  }

  .mobile-nav-links {
    display: grid;
    gap: 8px;
  }

  .mobile-nav-links a {
    display: flex;
    min-height: 46px;
    align-items: center;
    justify-content: space-between;
    border: 1px solid rgba(32, 61, 52, 0.1);
    border-radius: 6px;
    padding: 0 12px;
    color: var(--forest);
    background: rgba(255, 255, 255, 0.62);
    font-weight: 850;
    transition:
      background 160ms ease,
      border-color 160ms ease,
      box-shadow 160ms ease,
      transform 160ms ease;
  }

  .mobile-nav-links a::after {
    width: 7px;
    height: 7px;
    border-right: 2px solid currentColor;
    border-bottom: 2px solid currentColor;
    content: "";
    opacity: 0.42;
    transform: rotate(-45deg);
  }

  .mobile-nav-links a:hover,
  .mobile-nav-links a:focus-visible {
    border-color: rgba(14, 118, 104, 0.2);
    background: rgba(14, 118, 104, 0.08);
  }

  .mobile-nav-links .mobile-nav-primary {
    position: relative;
    overflow: hidden;
    min-height: 54px;
    justify-content: center;
    border-color: rgba(214, 168, 79, 0.76);
    color: #14201d;
    background:
      linear-gradient(135deg, #f8dd8f 0%, var(--gold) 52%, #c9912f 100%),
      var(--gold);
    font-size: 1.02rem;
    font-weight: 950;
    box-shadow:
      0 16px 34px rgba(214, 168, 79, 0.28),
      0 1px 0 rgba(255, 255, 255, 0.5) inset;
  }

  .mobile-nav-links .mobile-nav-primary::before,
  .mobile-nav-links .mobile-nav-login::before {
    position: absolute;
    inset: 1px 1px auto;
    height: 45%;
    border-radius: 5px 5px 999px 999px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.34), transparent);
    content: "";
    pointer-events: none;
  }

  .mobile-nav-links .mobile-nav-primary::after,
  .mobile-nav-links .mobile-nav-login::after {
    display: none;
  }

  .mobile-nav-links .mobile-nav-primary:hover,
  .mobile-nav-links .mobile-nav-primary:focus-visible {
    border-color: rgba(214, 168, 79, 0.92);
    background:
      linear-gradient(135deg, #fae5a2 0%, #e6bb64 52%, #c9912f 100%),
      #e6bb64;
    box-shadow:
      0 20px 42px rgba(214, 168, 79, 0.34),
      0 1px 0 rgba(255, 255, 255, 0.56) inset;
    transform: translateY(-1px);
  }

  .mobile-nav-login-links {
    gap: 8px;
    margin-top: auto;
    border: 1px solid rgba(32, 61, 52, 0.12);
    border-radius: 8px;
    padding: 14px;
    background: rgba(255, 255, 255, 0.56);
  }

  .mobile-nav-login-links p {
    margin: 0 0 2px;
    color: #6b4d16;
    font-size: 0.78rem;
    font-weight: 900;
    letter-spacing: 0.08em;
    text-transform: uppercase;
  }

  .mobile-nav-links .mobile-nav-login {
    position: relative;
    overflow: hidden;
    min-height: 50px;
    justify-content: center;
    border: 1px solid rgba(32, 61, 52, 0.38);
    color: #fffaf0;
    background:
      linear-gradient(135deg, #274b40 0%, var(--forest) 58%, #14201d 100%),
      var(--forest);
    box-shadow:
      0 14px 28px rgba(20, 32, 29, 0.18),
      0 1px 0 rgba(255, 255, 255, 0.18) inset;
  }

  .mobile-nav-links .mobile-nav-login:hover,
  .mobile-nav-links .mobile-nav-login:focus-visible {
    border-color: rgba(32, 61, 52, 0.52);
    background:
      linear-gradient(135deg, #2f584b 0%, #203d34 58%, #14201d 100%),
      #203d34;
    box-shadow:
      0 18px 36px rgba(20, 32, 29, 0.24),
      0 1px 0 rgba(255, 255, 255, 0.22) inset;
    transform: translateY(-1px);
  }
}

@media (max-width: 660px) {
  :root {
    --promo-height: 64px;
    --promo-pill-width: clamp(78px, 24vw, 96px);
  }

  .promo-banner-link {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr) auto;
    gap: 6px;
    min-height: var(--promo-height);
    padding: 9px 8px;
    text-align: center;
  }

  .promo-banner-copy {
    display: contents;
  }

  .promo-banner-label {
    grid-column: 1;
    min-height: 38px;
    justify-self: start;
  }

  .promo-banner-message {
    grid-column: 2;
    justify-self: center;
    white-space: normal;
  }

  .promo-banner-link strong {
    font-size: clamp(0.72rem, 3vw, 0.9rem);
    line-height: 1.12;
    white-space: normal;
  }

  .promo-banner-cta {
    display: inline-flex;
    grid-column: 3;
    min-height: 34px;
    justify-self: end;
    font-size: 0.72rem;
  }

  .promo-banner::after {
    content: none;
  }

  .site-header {
    gap: 12px;
    padding: 12px 14px;
  }

  .brand span:last-child {
    display: inline;
  }

  .brand {
    min-width: auto;
  }

  .brand-mark-img {
    width: 40px;
  }

  .hero {
    min-height: auto;
  }

  .hero-scrim {
    background: linear-gradient(180deg, rgba(18, 31, 27, 0.74), rgba(18, 31, 27, 0.6) 66%, rgba(18, 31, 27, 0.36));
  }

  .hero-content {
    width: auto;
    margin: 0 36px 0 18px;
    padding: 15vh 0 32px;
  }

  .promo-active .hero-content {
    padding-top: 196px;
  }

  .hero h1 {
    max-width: 11ch;
    font-size: 2.38rem;
    line-height: 1.07;
    margin-top: 10px;
    margin-bottom: 32px;
  }

  .section h2,
  .pain-heading h2,
  .platform-modules-heading h2,
  .workflow-loop-heading h2,
  .software-heading h2,
  .pricing h2,
  .apply h2 {
    font-size: clamp(1.65rem, 7vw, 2.25rem);
    line-height: 1.12;
  }

  .hero-bridge,
  .apply-copy p,
  .pain-heading p:last-child,
  .platform-modules-heading p:last-child,
  .workflow-loop-heading p:last-child,
  .software-heading p:last-child,
  .pricing-heading .pricing-subhead {
    font-size: 1rem;
    line-height: 1.55;
  }

  .hero-bridge {
    margin-bottom: 34px;
    width: 100%;
    max-width: 320px;
    overflow-wrap: break-word;
  }

  .hero-proof {
    display: grid;
    grid-template-columns: 1fr;
    gap: 8px;
    max-width: 320px;
    margin-bottom: 24px;
  }

  .hero-actions {
    max-width: 320px;
  }

  .hero-proof span {
    width: 100%;
    justify-content: center;
    min-height: 48px;
    padding: 6px 8px;
    border-radius: 8px;
    gap: 6px;
    font-size: 0.82rem;
    line-height: 1.2;
    text-align: center;
  }

  .button {
    width: 100%;
  }

  .hero-text-link {
    width: 100%;
    justify-content: center;
    margin-top: 10px;
  }

  .fit-strip {
    padding: 0;
  }

  .fit-strip-copy {
    padding: 26px 18px 30px;
  }

  .fit-pill-list {
    gap: 8px;
  }

  .fit-pill-list span,
  .fit-pill-list a {
    min-height: 34px;
    padding: 0 11px;
    font-size: 0.8rem;
  }

  .benefit-grid,
  .contrast-grid,
  .pain-grid,
  .module-grid,
  .loop-steps,
  .software-grid,
  .guardrail-grid,
  .workflow-grid,
  .home-services-grid {
    grid-template-columns: 1fr;
  }

  .pricing-grid {
    display: flex;
    gap: 14px;
    margin-inline: -18px;
    padding: 4px 24px 18px;
    overflow-x: auto;
    overscroll-behavior-x: contain;
    scroll-behavior: smooth;
    scroll-padding-inline: 24px;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
  }

  .pricing-grid::-webkit-scrollbar {
    display: none;
  }

  .queue-preview-shell {
    padding: 16px;
  }

  .queue-preview-topbar {
    display: flex;
    align-items: center;
    gap: 10px;
  }

  .queue-preview-topbar p {
    margin-left: auto;
    width: fit-content;
    padding: 0 10px;
    font-size: clamp(0.68rem, 3.3vw, 0.82rem);
  }

  .queue-preview-metrics {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 8px;
  }

  .queue-preview-metrics article {
    display: grid;
    align-content: center;
    padding: 10px 4px;
    text-align: center;
  }

  .queue-preview-metrics strong {
    font-size: clamp(0.95rem, 5vw, 1.22rem);
  }

  .queue-preview-metrics span {
    font-size: clamp(0.56rem, 2.7vw, 0.66rem);
    line-height: 1.15;
  }

  .queue-card-stack {
    min-height: 276px;
  }

  .queue-cycle-card {
    gap: 16px;
    padding: 16px;
  }

  .queue-cycle-card::before {
    width: 40px;
    height: 4px;
    margin-bottom: 4px;
  }

  .queue-cycle-card div {
    gap: 12px;
  }

  .queue-cycle-card span {
    padding: 6px 9px;
    font-size: 0.68rem;
  }

  .queue-cycle-card strong {
    font-size: clamp(1.18rem, 6vw, 1.5rem);
    line-height: 1.08;
  }

  .queue-cycle-card p {
    margin-top: 2px;
    font-size: 0.96rem;
    line-height: 1.42;
  }

  .queue-cycle-card small {
    margin-top: 4px;
    padding: 9px 10px;
    font-size: 0.78rem;
    line-height: 1.25;
  }

  .thin-layer-card,
  .implementation-points article {
    padding: 18px;
  }

  .software-layer-panel {
    gap: 12px;
    padding: 14px;
  }

  .thin-layer-top {
    grid-template-columns: auto minmax(0, 1fr);
  }

  .thin-layer-top strong {
    font-size: clamp(1.34rem, 8.2vw, 1.82rem);
    line-height: 1.08;
  }

  .thin-layer-card::after {
    right: 18px;
    bottom: 16px;
    width: 32%;
  }

  .connector-flow {
    grid-template-columns: 1fr;
  }

  .connector-flow article {
    min-height: auto;
    padding: 18px;
  }

  .connector-flow strong {
    font-size: 1.18rem;
  }

  .connector-flow p {
    font-size: 0.98rem;
  }

  .rhythm-list {
    grid-template-columns: 1fr;
  }

  .rhythm-list article {
    gap: 12px;
    min-height: auto;
    padding: 18px;
  }

  .rhythm-step-top {
    gap: 8px;
  }

  .rhythm-list span {
    width: 36px;
    height: 36px;
    font-size: 0.76rem;
  }

  .rhythm-list small {
    min-height: 28px;
    padding: 0 10px;
    font-size: 0.68rem;
  }

  .rhythm-list article > div {
    gap: 8px;
  }

  .rhythm-list h3 {
    font-size: 1.06rem;
    line-height: 1.18;
  }

  .rhythm-list p {
    font-size: 0.96rem;
    line-height: 1.44;
  }

  .contrast-grid article,
  .pain-grid article,
  .module-grid article,
  .loop-steps article,
  .software-grid article,
  .home-services-grid article {
    min-height: auto;
    padding: 20px;
  }

  .loop-steps article {
    grid-template-columns: 38px minmax(0, 1fr);
  }

  .pricing-card,
  .steps article {
    gap: 14px;
    min-height: auto;
    padding: 20px;
  }

  .pricing-card {
    flex: 0 0 min(78vw, 360px);
    scroll-snap-align: center;
    scroll-snap-stop: always;
  }

  .pricing-card ul {
    margin-bottom: 2px;
  }

  .comparison-table-wrap {
    margin-inline: calc(-1 * clamp(18px, 5vw, 72px));
    border-inline: 0;
    border-radius: 0;
  }

  .comparison-table {
    min-width: 760px;
  }

  .comparison-table th,
  .comparison-table td {
    padding: 14px 12px;
    font-size: 0.88rem;
  }

  .action-board article {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .action-board strong {
    white-space: normal;
  }

  .owner-action-button {
    width: 100%;
  }

  .workflow-panel-heading {
    display: grid;
    min-width: 0;
  }

  .workflow-panel-heading span {
    width: fit-content;
  }

  .workflow-panel,
  .workflow-panel > *,
  .workflow-cta {
    min-width: 0;
  }

  .workflow-panel-heading {
    width: 100%;
  }

  .workflow-cta-button {
    width: 100%;
    white-space: normal;
    text-align: center;
    line-height: 1.15;
  }

  .calculator-controls label {
    grid-template-columns: 1fr;
  }

  .calculator-controls span {
    text-align: left;
  }

  .calculator-result .button {
    width: 100%;
  }

  .section {
    padding-block: 38px;
  }

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

  .benefit-grid article,
  .guardrail-grid article,
  .steps article {
    min-height: auto;
  }

  .guardrail-grid article {
    padding: 22px;
  }

  .site-footer {
    display: grid;
  }

  .contact-callout .button,
  .contact-callout .contact-phone {
    width: 100%;
  }
}
  .industry-picker {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
    padding: 20px;
  }

  .industry-tab {
    min-height: 46px;
    padding: 0 10px;
    font-size: 0.86rem;
    line-height: 1.18;
  }

/* Product-first homepage hero sample. Scoped to the copied exploration page only. */
.product-hero {
  min-height: auto;
  overflow: visible;
  color: var(--ink);
  background:
    linear-gradient(118deg, rgba(255, 255, 255, 0.62) 0 27%, rgba(229, 243, 235, 0.66) 27.2% 45%, rgba(255, 250, 240, 0.18) 45.2% 100%),
    linear-gradient(16deg, rgba(214, 168, 79, 0.1) 0 18%, rgba(255, 255, 255, 0) 18.2% 100%),
    linear-gradient(180deg, #fffaf0 0%, #f7f4ee 46%, #edf4ec 100%);
  border-bottom: 1px solid rgba(32, 61, 52, 0.14);
}

.product-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(132deg, transparent 0 16%, rgba(214, 168, 79, 0.13) 16.1% 16.45%, transparent 16.55% 100%),
    linear-gradient(132deg, transparent 0 54%, rgba(14, 118, 104, 0.09) 54.1% 54.42%, transparent 54.52% 100%),
    linear-gradient(38deg, transparent 0 62%, rgba(32, 61, 52, 0.055) 62.1% 62.36%, transparent 62.46% 100%),
    repeating-linear-gradient(90deg, rgba(32, 61, 52, 0.03) 0 1px, transparent 1px 82px),
    repeating-linear-gradient(0deg, rgba(32, 61, 52, 0.024) 0 1px, transparent 1px 82px);
  opacity: 0.82;
  -webkit-mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.88), rgba(0, 0, 0, 0.62) 58%, rgba(0, 0, 0, 0.14));
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.88), rgba(0, 0, 0, 0.62) 58%, rgba(0, 0, 0, 0.14));
}

.product-hero::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 130px;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(32, 61, 52, 0), rgba(32, 61, 52, 0.08));
}

.product-hero-content {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(340px, 0.88fr) minmax(440px, 0.92fr);
  gap: clamp(30px, 5vw, 78px);
  align-items: center;
  width: min(100%, 1480px);
  margin: 0 auto;
  padding: clamp(104px, 11vw, 150px) clamp(18px, 5vw, 72px) clamp(54px, 7vw, 88px);
}

.promo-active .product-hero-content {
  padding-top: clamp(136px, 13vw, 178px);
}

.product-hero-copy {
  min-width: 0;
  transform: translateY(-36px);
}

.product-hero .eyebrow {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  margin-bottom: 22px;
  border-radius: 999px;
  padding: 0 16px;
  color: var(--teal);
  font-size: 0.72rem;
  background: rgba(29, 182, 161, 0.14);
}

.product-hero h1 {
  max-width: 790px;
  margin-bottom: 18px;
  color: #10231f;
  font-size: clamp(3.05rem, 5.6vw, 5.45rem);
  line-height: 1.04;
  text-shadow: none;
}

.product-hero h1 span {
  position: relative;
  display: inline-block;
  margin-top: 0.12em;
  color: var(--teal);
}

.product-hero h1 span::after {
  content: "";
  position: absolute;
  left: 0.03em;
  right: 0.02em;
  bottom: -0.12em;
  height: 0.08em;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--gold), rgba(214, 168, 79, 0.46));
}

.product-hero .hero-bridge {
  max-width: 690px;
  margin-bottom: 22px;
  color: rgba(32, 61, 52, 0.82);
  font-size: clamp(1.04rem, 1.35vw, 1.24rem);
  font-weight: 720;
  line-height: 1.6;
  text-shadow: none;
}

.product-hero .hero-proof {
  max-width: 760px;
  margin-bottom: 30px;
}

.product-hero .hero-proof span {
  border-color: rgba(14, 118, 104, 0.18);
  color: #203d34;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 14px 28px rgba(23, 33, 31, 0.08);
}

.product-hero .hero-proof strong {
  color: var(--teal);
}

.hero-tools {
  display: grid;
  gap: 14px;
  max-width: 760px;
  margin-bottom: 0;
}

.hero-tools p {
  margin: 0;
  color: rgba(32, 61, 52, 0.72);
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.hero-tools-list {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 10px;
}

.hero-tools-list span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 42px;
  border: 1px solid rgba(32, 61, 52, 0.1);
  border-radius: 999px;
  padding: 0 13px 0 8px;
  color: #203d34;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 12px 24px rgba(23, 33, 31, 0.07);
  font-size: 0.86rem;
  font-weight: 880;
}

.hero-tools-list img {
  width: 24px;
  height: 24px;
  border-radius: 7px;
  background: #fff;
  object-fit: contain;
}

.hero-tools-list .more-tools-pill {
  padding: 0 16px;
  color: #083b35;
  border-color: rgba(214, 168, 79, 0.26);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.82), rgba(255, 248, 231, 0.82)),
    rgba(255, 248, 231, 0.82);
}

.product-hero .hero-actions {
  align-items: center;
}

.product-hero .hero-text-link {
  color: var(--teal);
  text-shadow: none;
  text-decoration-color: rgba(14, 118, 104, 0.42);
}

.product-hero .hero-text-link:hover,
.product-hero .hero-text-link:focus-visible {
  color: #083b35;
  text-decoration-color: var(--gold);
}

.product-hero-preview {
  min-width: 0;
  transform: translateY(-88px);
}

.mobile-queue-intro {
  display: none;
}

.product-queue-shell {
  border-color: rgba(14, 118, 104, 0.16);
  border-radius: 14px;
  box-shadow:
    0 34px 80px rgba(23, 33, 31, 0.16),
    0 1px 0 rgba(255, 255, 255, 0.88) inset;
}

.product-queue-shell .queue-card-stack {
  min-height: clamp(330px, 28vw, 420px);
}

.product-queue-shell .queue-cycle-card {
  padding: clamp(22px, 3.2vw, 34px);
}

.product-queue-shell .queue-cycle-card strong {
  font-size: clamp(1.35rem, 2.7vw, 2.35rem);
  line-height: 1.08;
}

.product-queue-shell .queue-cycle-card p {
  max-width: 720px;
  font-size: clamp(1rem, 1.35vw, 1.22rem);
}

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

.product-queue-card {
  --queue-accent: var(--teal);
  display: grid;
  gap: 10px;
  border: 1px solid rgba(14, 118, 104, 0.14);
  border-left: 5px solid var(--queue-accent);
  border-radius: 8px;
  padding: 16px;
  background: #fff;
  box-shadow: 0 14px 28px rgba(23, 33, 31, 0.08);
}

.product-queue-card.is-lead {
  --queue-accent: var(--clay);
}

.product-queue-card.is-review {
  --queue-accent: var(--sage);
}

.product-queue-card div {
  display: grid;
  gap: 5px;
}

.product-queue-card span {
  justify-self: start;
  border-radius: 999px;
  padding: 4px 9px;
  color: #083b35;
  background: var(--teal-pale);
  font-size: 0.72rem;
  font-weight: 950;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.product-queue-card strong {
  color: #17211f;
  font-size: 1.02rem;
  line-height: 1.24;
}

.product-queue-card p,
.product-queue-card small {
  margin: 0;
  color: #52615d;
  font-weight: 720;
  line-height: 1.45;
}

.product-queue-card small {
  color: var(--teal);
  font-size: 0.8rem;
  font-weight: 900;
}

@media (max-width: 1080px) {
  .product-hero-content {
    grid-template-columns: 1fr;
  }

  .product-hero-copy {
    transform: none;
  }

  .product-hero-preview {
    transform: none;
    margin-top: 12px;
  }
}

@media (max-width: 680px) {
  .product-hero::before {
    background:
      linear-gradient(132deg, transparent 0 14%, rgba(214, 168, 79, 0.14) 14.1% 14.5%, transparent 14.6% 100%),
      linear-gradient(132deg, transparent 0 66%, rgba(14, 118, 104, 0.1) 66.1% 66.48%, transparent 66.58% 100%),
      repeating-linear-gradient(90deg, rgba(32, 61, 52, 0.032) 0 1px, transparent 1px 58px),
      repeating-linear-gradient(0deg, rgba(32, 61, 52, 0.026) 0 1px, transparent 1px 58px);
    opacity: 0.72;
  }

  .product-hero-content {
    padding: 84px 18px 42px;
  }

  .promo-active .product-hero-content {
    padding-top: 150px;
  }

  .product-hero .eyebrow {
    margin-top: 0;
    margin-bottom: 8px;
    min-height: 32px;
    padding: 0 14px;
    font-size: 0.64rem;
  }

  .product-hero h1 {
    max-width: 11ch;
    margin-bottom: 24px;
    font-size: clamp(2.35rem, 12.5vw, 3.45rem);
    line-height: 1.06;
  }

  .product-hero h1 span {
    display: block;
    margin-top: 0.18em;
  }

  .product-hero .hero-bridge {
    max-width: 100%;
    margin-top: 4px;
  }

  .product-hero .hero-proof {
    width: 100%;
    max-width: 100%;
    justify-items: center;
    gap: 10px;
    margin-bottom: 30px;
  }

  .product-hero .hero-proof span {
    display: flex;
    min-height: 54px;
    flex-wrap: wrap;
    justify-content: center;
    padding: 9px 14px;
    font-size: clamp(0.98rem, 4.2vw, 1.08rem);
    font-weight: 920;
    line-height: 1.14;
    text-align: center;
  }

  .product-hero .hero-proof span:last-child {
    display: none;
  }

  .product-hero .hero-proof strong {
    font-weight: 950;
  }

  .hero-tools-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px 10px;
  }

  .hero-tools-list span {
    justify-content: flex-start;
    border-radius: 8px;
    padding-right: 10px;
  }

  .mobile-queue-intro {
    display: block;
    max-width: 29rem;
    position: relative;
    margin: 18px auto 22px;
    padding-top: 34px;
    color: #203d34;
    font-size: clamp(1.02rem, 4.8vw, 1.2rem);
    font-weight: 900;
    line-height: 1.24;
    text-align: center;
  }

  .mobile-queue-intro::before {
    content: "";
    display: block;
    width: min(260px, 58vw);
    height: 5px;
    margin: 0 auto 20px;
    border-radius: 999px;
    background: linear-gradient(90deg, rgba(14, 118, 104, 0), rgba(14, 118, 104, 0.56), var(--gold), rgba(14, 118, 104, 0.2), rgba(14, 118, 104, 0));
    box-shadow: 0 10px 22px rgba(214, 168, 79, 0.2);
  }

  .product-queue-shell {
    padding: 14px;
  }

  .product-queue-shell .queue-preview-topbar {
    display: flex;
    align-items: center;
    gap: 10px;
  }

  .product-queue-shell .queue-preview-topbar strong {
    font-size: clamp(1.22rem, 5vw, 1.55rem);
  }

  .product-queue-shell .queue-preview-topbar p {
    margin-left: auto;
    padding: 0 10px;
    font-size: clamp(0.68rem, 3.3vw, 0.82rem);
  }

  .product-queue-shell .queue-card-stack {
    min-height: clamp(300px, 78vw, 350px);
  }

  .product-queue-shell .queue-cycle-card {
    gap: 16px;
    padding: 18px;
  }

  .product-queue-shell .queue-cycle-card::before {
    margin-bottom: 4px;
  }

  .product-queue-shell .queue-cycle-card div {
    gap: 12px;
  }

  .product-queue-shell .queue-cycle-card strong {
    font-size: clamp(1.28rem, 6.8vw, 1.72rem);
  }

  .product-queue-shell .queue-cycle-card p {
    margin-top: 2px;
  }

  .product-queue-shell .queue-cycle-card small {
    margin-top: 4px;
  }
}

.product-hero-sample-page .site-header {
  color: var(--forest);
  padding-top: 12px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(32, 61, 52, 0.14);
  background:
    linear-gradient(180deg, rgba(255, 252, 245, 0.82), rgba(255, 252, 245, 0.62)),
    rgba(255, 252, 245, 0.62);
  box-shadow: 0 10px 26px rgba(8, 15, 13, 0.08);
  backdrop-filter: blur(18px);
}

.product-hero-sample-page .site-header.is-scrolled {
  color: var(--forest);
  border-bottom-color: rgba(32, 61, 52, 0.11);
  background:
    linear-gradient(180deg, rgba(255, 252, 245, 0.54), rgba(255, 252, 245, 0.34)),
    rgba(255, 252, 245, 0.34);
  box-shadow: 0 8px 22px rgba(8, 15, 13, 0.06);
}

.product-hero-sample-page .brand,
.product-hero-sample-page .site-header.is-scrolled .brand {
  opacity: 1;
}

.product-hero-sample-page .brand span:last-child {
  color: var(--forest);
  font-weight: 650;
  text-shadow: none;
}

.product-hero-sample-page .brand-mark-img {
  width: 48px;
  border-radius: 999px;
  filter: drop-shadow(0 4px 12px rgba(8, 15, 13, 0.18));
}

.product-hero-sample-page .nav-links {
  font-weight: 750;
}

.product-hero-sample-page .nav-links a {
  color: rgba(32, 61, 52, 0.86);
}

.product-hero-sample-page .nav-links a:hover,
.product-hero-sample-page .nav-links a:focus-visible {
  color: #f1c96d;
}

.product-hero-sample-page .desktop-login-link,
.product-hero-sample-page .site-header.is-scrolled .desktop-login-link {
  color: var(--forest);
  border-color: rgba(32, 61, 52, 0.22);
  background: rgba(255, 255, 255, 0.28);
}

.product-hero-sample-page .desktop-login-link:hover,
.product-hero-sample-page .desktop-login-link:focus-visible,
.product-hero-sample-page .site-header.is-scrolled .desktop-login-link:hover,
.product-hero-sample-page .site-header.is-scrolled .desktop-login-link:focus-visible {
  border-color: rgba(241, 201, 109, 0.58);
  background: rgba(255, 255, 255, 0.48);
}

.product-hero-sample-page .mobile-menu-toggle {
  color: var(--forest);
  border-color: rgba(32, 61, 52, 0.18);
  background: rgba(255, 255, 255, 0.34);
}

@media (max-width: 620px) {
  .module-grid article.module-feature-card {
    padding: 24px;
  }

  .module-grid article.module-feature-card h3 {
    max-width: 14ch;
    font-size: 1.7rem;
  }

  .module-grid article.module-feature-card > p {
    font-size: 1rem;
    line-height: 1.5;
  }

  .module-feature-icon {
    width: 26px;
    height: 26px;
    border-radius: 7px;
  }

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

  .module-feature-proof {
    gap: 6px;
  }

  .module-grid .module-feature-proof span {
    min-height: 28px;
    padding: 6px 8px;
    font-size: 0.72rem;
  }
}

.city-contact-strip {
  position: fixed;
  z-index: 24;
  right: clamp(16px, 3vw, 34px);
  bottom: clamp(16px, 3vw, 30px);
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 14px;
  align-items: center;
  width: min(386px, calc(100vw - 32px));
  padding: 12px;
  border: 1px solid rgba(32, 61, 52, 0.16);
  border-radius: 8px;
  color: var(--forest);
  background:
    linear-gradient(180deg, rgba(255, 252, 245, 0.94), rgba(255, 248, 235, 0.9)),
    rgba(255, 252, 245, 0.94);
  box-shadow:
    0 18px 54px rgba(8, 15, 13, 0.16),
    0 1px 0 rgba(255, 255, 255, 0.74) inset;
  backdrop-filter: blur(18px);
}

.city-contact-copy {
  display: grid;
  min-width: 0;
  gap: 2px;
}

.city-contact-copy span {
  color: var(--clay);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  line-height: 1;
  text-transform: uppercase;
}

.city-contact-copy strong {
  color: var(--forest);
  font-size: 1.04rem;
  line-height: 1.1;
}

.city-contact-actions {
  display: inline-flex;
  gap: 8px;
}

.city-contact-action {
  display: inline-flex;
  min-height: 40px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(32, 61, 52, 0.16);
  border-radius: 6px;
  padding: 0 13px;
  color: var(--forest);
  background: rgba(255, 255, 255, 0.62);
  font-size: 0.88rem;
  font-weight: 900;
  line-height: 1;
}

.city-contact-action.is-text {
  border-color: rgba(214, 168, 79, 0.7);
  color: #14201d;
  background:
    linear-gradient(135deg, #f3cf77 0%, var(--gold) 54%, #c9912f 100%),
    var(--gold);
  box-shadow: 0 10px 22px rgba(214, 168, 79, 0.18);
}

.city-contact-action:hover,
.city-contact-action:focus-visible {
  transform: translateY(-1px);
}

@media (max-width: 620px) {
  .city-contact-page {
    padding-bottom: 88px;
  }

  .city-contact-strip {
    right: 10px;
    bottom: 10px;
    left: 10px;
    width: auto;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 10px;
    padding: 10px;
  }

  .city-contact-copy strong {
    font-size: 0.98rem;
  }

  .city-contact-action {
    min-height: 38px;
    padding: 0 11px;
  }
}
