:root {
  --deep-navy: #0d1b2a;
  --catalyst-green: #6cc04a;
  --catalyst-teal: #24b2ab;
  --catalyst-blue: #2d7dd2;
  --light-gray: #f3f5f7;
  --white: #ffffff;
  --brand-gradient: linear-gradient(
    135deg,
    var(--catalyst-green) 0%,
    var(--catalyst-teal) 50%,
    var(--catalyst-blue) 100%
  );
  --navy-950: var(--deep-navy);
  --navy-900: var(--deep-navy);
  --navy-800: #18324a;
  --navy-700: #29475f;
  --green-700: var(--catalyst-teal);
  --green-600: var(--catalyst-teal);
  --green-100: #eaf8f6;
  --gold-500: var(--catalyst-blue);
  --gold-200: #dcecff;
  --ivory: var(--light-gray);
  --cream: var(--white);
  --slate-700: #425466;
  --slate-600: #627282;
  --slate-400: #94a0ab;
  --line: #dce3e9;
  --shadow-sm: 0 8px 24px rgba(13, 27, 42, 0.07);
  --shadow-lg: 0 24px 60px rgba(13, 27, 42, 0.12);
  --radius-sm: 12px;
  --radius-md: 20px;
  --radius-lg: 30px;
  --container: 1180px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 92px;
}

body {
  margin: 0;
  color: var(--deep-navy);
  background: var(--white);
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

img {
  display: block;
  max-width: 100%;
}

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button {
  font: inherit;
}

svg {
  display: block;
}

main svg:not(.brand-mark) {
  stroke-width: 1.5;
}

.container {
  width: min(calc(100% - 48px), var(--container));
  margin-inline: auto;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 10px;
  left: 10px;
  padding: 10px 16px;
  color: var(--white);
  background: var(--navy-950);
  border-radius: 8px;
  transform: translateY(-150%);
  transition: transform 160ms ease;
}

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

.site-header {
  position: sticky;
  z-index: 100;
  top: 0;
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid transparent;
  backdrop-filter: blur(12px);
  transition: border-color 180ms ease, box-shadow 180ms ease;
}

.site-header.is-scrolled {
  border-color: var(--line);
  box-shadow: 0 8px 24px rgba(8, 28, 34, 0.05);
}

.header-inner {
  display: flex;
  min-height: 78px;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  color: var(--navy-900);
  font-size: 18px;
  font-weight: 500;
  letter-spacing: -0.025em;
}

.brand strong {
  font-weight: 700;
}

.brand-mark {
  width: 38px;
  height: 38px;
  color: var(--green-700);
  flex: 0 0 auto;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 34px;
  margin-left: auto;
}

.header-account-actions {
  display: flex;
  align-items: center;
  gap: 15px;
}

.header-login {
  color: var(--navy-900);
  font-size: 13px;
  font-weight: 700;
  transition: color 160ms ease;
}

.header-login:hover,
.header-login:focus-visible {
  color: var(--green-600);
}

.desktop-nav a,
.mobile-nav > a:not(.button) {
  color: var(--slate-700);
  font-size: 14px;
  font-weight: 600;
  transition: color 160ms ease;
}

.desktop-nav a:hover,
.desktop-nav a:focus-visible,
.mobile-nav > a:not(.button):hover,
.mobile-nav > a:not(.button):focus-visible {
  color: var(--green-600);
}

.button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 23px;
  color: var(--white);
  background: var(--brand-gradient);
  border: 1px solid transparent;
  border-radius: 9px;
  box-shadow: none;
  font-size: 14px;
  font-weight: 700;
  transition: background-color 160ms ease, border-color 160ms ease,
    transform 160ms ease, box-shadow 160ms ease;
}

.button:hover {
  background: var(--brand-gradient);
  border-color: transparent;
  box-shadow: none;
  filter: brightness(0.96) saturate(1.08);
  transform: translateY(-2px);
}

.button:active {
  transform: translateY(0);
  filter: brightness(0.92);
}

.button:focus-visible,
.text-link:focus-visible,
.brand:focus-visible,
.header-login:focus-visible,
.desktop-nav a:focus-visible,
.mobile-nav a:focus-visible,
.photo-credit:focus-visible,
.footer-links a:focus-visible {
  outline: 3px solid var(--catalyst-blue);
  outline-offset: 4px;
}

.button-small {
  min-height: 42px;
  padding-inline: 18px;
  font-size: 13px;
}

.button svg,
.text-link svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 9px;
  color: var(--navy-900);
  background: transparent;
  border: 1px solid var(--line);
  border-radius: 9px;
  cursor: pointer;
}

.menu-toggle svg {
  width: 100%;
  height: 100%;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
}

.mobile-nav {
  display: none;
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 80px 0 104px;
  background:
    radial-gradient(circle at 8% 14%, rgba(108, 192, 74, 0.1), transparent 25%),
    radial-gradient(circle at 90% 20%, rgba(36, 178, 171, 0.08), transparent 28%),
    linear-gradient(180deg, var(--white) 0%, var(--light-gray) 100%);
}

.hero::after {
  position: absolute;
  right: -12%;
  bottom: -44%;
  width: 520px;
  height: 520px;
  border: 1px solid rgba(36, 178, 171, 0.14);
  border-radius: 50%;
  content: "";
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  align-items: center;
  grid-template-columns: minmax(0, 0.95fr) minmax(470px, 1.05fr);
  gap: clamp(56px, 7vw, 96px);
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 22px;
  color: var(--deep-navy);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.11em;
  line-height: 1.4;
  text-transform: uppercase;
}

.eyebrow span {
  width: 24px;
  height: 2px;
  background: var(--brand-gradient);
}

.hero h1,
.section-heading h2,
.hands-off-copy h2,
.control-copy h2,
.contact-copy h2,
.legal-page h1 {
  margin: 0;
  color: var(--navy-900);
  font-weight: 600;
  letter-spacing: -0.055em;
  line-height: 1.06;
}

.hero h1 {
  max-width: 650px;
  font-size: clamp(48px, 5.8vw, 76px);
}

.hero-gradient,
.js .hero h1.is-split .word-wrap:nth-of-type(n + 4) .word {
  color: var(--catalyst-teal);
  background: var(--brand-gradient);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero h1 .word-wrap {
  display: inline-block;
  overflow: hidden;
  padding-bottom: 0.08em;
  margin-bottom: -0.08em;
  vertical-align: bottom;
}

.hero h1 .word {
  display: inline-block;
}

.js .hero h1.is-split .word {
  opacity: 0;
  transform: translateY(100%);
  transform-origin: left bottom;
  transition: opacity 680ms cubic-bezier(0.16, 1, 0.3, 1),
    transform 780ms cubic-bezier(0.16, 1, 0.3, 1);
  transition-delay: var(--word-delay, 90ms);
  will-change: opacity, transform;
}

.js .hero h1.is-split.is-visible .word {
  opacity: 1;
  transform: translateY(0);
}

.hero-lede {
  max-width: 620px;
  margin: 28px 0 0;
  color: var(--slate-700);
  font-size: clamp(17px, 1.5vw, 19px);
  line-height: 1.72;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 36px;
}

.hero-primary {
  color: var(--white);
  background: var(--brand-gradient);
  border-color: transparent;
  box-shadow: none;
}

.hero-secondary {
  color: var(--deep-navy);
  background: var(--white);
  border-color: var(--line);
  box-shadow: none;
}

.hero-secondary:hover {
  color: var(--deep-navy);
  background: var(--light-gray);
  border-color: var(--catalyst-teal);
  box-shadow: none;
  filter: none;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--navy-900);
  font-size: 14px;
  font-weight: 700;
}

.text-link svg {
  transition: transform 160ms ease;
}

.text-link:hover {
  color: var(--green-600);
}

.text-link:hover svg {
  transform: translateX(4px);
}

.hero-assurances {
  display: flex;
  flex-wrap: wrap;
  gap: 16px 28px;
  margin-top: 34px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
}

.hero-assurances div {
  display: flex;
  align-items: center;
  gap: 9px;
  color: var(--slate-600);
  font-size: 12px;
  font-weight: 600;
}

.hero-assurances svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: var(--green-600);
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.hero-visual {
  position: relative;
  display: grid;
  min-height: 660px;
  place-items: center;
}

.photo-frame {
  position: relative;
  overflow: hidden;
  background: #d9dedc;
}

.photo-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-photo {
  position: absolute;
  top: 0;
  right: 0;
  width: min(82%, 460px);
  height: 580px;
  border-radius: 12px 72px 12px 12px;
  box-shadow: var(--shadow-lg);
}

.photo-credit {
  position: absolute;
  right: 12px;
  bottom: 10px;
  padding: 5px 8px;
  color: rgba(255, 255, 255, 0.92);
  background: rgba(8, 28, 34, 0.56);
  border-radius: 5px;
  font-size: 9px;
  line-height: 1;
  backdrop-filter: blur(5px);
  transition: background-color 160ms ease;
}

.photo-credit:hover {
  background: rgba(8, 28, 34, 0.85);
}

.chat-preview {
  position: absolute;
  z-index: 2;
  bottom: 0;
  left: 0;
  width: min(79%, 410px);
  overflow: hidden;
  background: var(--white);
  border: 1px solid rgba(13, 41, 48, 0.09);
  border-radius: 18px;
  box-shadow: var(--shadow-lg);
}

.chat-topbar {
  display: flex;
  align-items: center;
  gap: 11px;
  padding: 15px 17px;
  background: var(--navy-900);
}

.chat-avatar {
  display: grid;
  width: 36px;
  height: 36px;
  color: var(--navy-900);
  background: var(--gold-500);
  border-radius: 50%;
  place-items: center;
}

.chat-avatar svg {
  width: 19px;
  height: 19px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.chat-topbar div:nth-child(2) {
  display: flex;
  min-width: 0;
  flex: 1;
  flex-direction: column;
}

.chat-topbar strong {
  color: var(--white);
  font-size: 12px;
}

.chat-topbar span {
  color: rgba(255, 255, 255, 0.62);
  font-size: 9px;
}

.chat-status {
  width: 8px;
  height: 8px;
  background: #6dc790;
  border: 2px solid rgba(255, 255, 255, 0.22);
  border-radius: 50%;
}

.chat-body {
  padding: 18px;
  background:
    linear-gradient(rgba(247, 246, 241, 0.9), rgba(247, 246, 241, 0.9)),
    radial-gradient(circle at center, #ccd7d2 1px, transparent 1px);
  background-size: auto, 18px 18px;
}

.example-label {
  margin: 0 0 10px;
  color: var(--slate-400);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-align: center;
  text-transform: uppercase;
}

.message {
  width: fit-content;
  max-width: 88%;
  margin-bottom: 9px;
  padding: 10px 12px 7px;
  color: var(--navy-900);
  border-radius: 9px;
  box-shadow: 0 2px 8px rgba(8, 28, 34, 0.06);
  font-size: 10px;
  line-height: 1.48;
}

.message > span {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 3px;
  margin-top: 3px;
  color: var(--slate-400);
  font-size: 8px;
}

.message span svg {
  width: 13px;
  height: 13px;
  fill: none;
  stroke: #3791b2;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.message-in {
  background: var(--white);
  border-top-left-radius: 2px;
}

.message-out {
  margin-left: auto;
  background: #dff0e5;
  border-top-right-radius: 2px;
}

.qualification-card {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 14px;
  padding: 10px;
  background: var(--white);
  border: 1px solid #dbe6df;
  border-radius: 9px;
}

.qualification-icon {
  display: grid;
  width: 34px;
  height: 34px;
  color: var(--green-700);
  background: var(--green-100);
  border-radius: 8px;
  place-items: center;
}

.qualification-icon svg {
  width: 17px;
  height: 17px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.qualification-card > div:last-child {
  display: flex;
  flex-direction: column;
}

.qualification-card span {
  color: var(--green-700);
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.qualification-card strong {
  color: var(--navy-900);
  font-size: 9px;
  font-weight: 600;
}

.phone-stage {
  position: relative;
  display: grid;
  width: 100%;
  min-height: 660px;
  place-items: center;
  isolation: isolate;
}

.phone-stage::before {
  position: absolute;
  z-index: -2;
  width: 84%;
  height: 78%;
  background: var(--light-gray);
  border: 1px solid var(--line);
  border-radius: 28px 78px 28px 28px;
  box-shadow: inset 0 0 0 12px rgba(255, 255, 255, 0.32);
  content: "";
  transform: rotate(3deg) translate(18px, 4px);
}

.phone-stage::after {
  position: absolute;
  z-index: -1;
  width: 76%;
  height: 70%;
  background: linear-gradient(
    135deg,
    rgba(108, 192, 74, 0.11),
    rgba(36, 178, 171, 0.09),
    rgba(45, 125, 210, 0.08)
  );
  border-radius: 22px 66px 22px 22px;
  content: "";
  transform: rotate(3deg) translate(18px, 4px);
}

.phone-accent {
  position: absolute;
  z-index: -1;
  border: 1px solid rgba(36, 178, 171, 0.2);
  border-radius: 50%;
}

.phone-accent-one {
  top: 16px;
  right: 3%;
  width: 150px;
  height: 150px;
}

.phone-accent-two {
  bottom: 26px;
  left: 2%;
  width: 92px;
  height: 92px;
  border-color: rgba(45, 125, 210, 0.4);
}

.phone-shell {
  position: relative;
  width: 356px;
  height: 650px;
  overflow: hidden;
  background: var(--deep-navy);
  border: 8px solid var(--deep-navy);
  border-radius: 44px;
  box-shadow:
    0 38px 70px rgba(8, 28, 34, 0.24),
    0 10px 22px rgba(8, 28, 34, 0.16),
    inset 0 0 0 1px rgba(255, 255, 255, 0.1);
}

.phone-speaker {
  position: absolute;
  z-index: 8;
  top: 10px;
  left: 50%;
  width: 66px;
  height: 17px;
  background: var(--deep-navy);
  border-radius: 999px;
  transform: translateX(-50%);
}

.phone-screen {
  display: grid;
  height: 100%;
  overflow: hidden;
  background: #e9e5dc;
  border-radius: 35px;
  grid-template-rows: 28px 59px minmax(0, 1fr) 54px;
}

.phone-statusbar {
  z-index: 7;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 2px 17px 0;
  color: var(--white);
  background: #153f37;
  font-size: 9px;
  font-weight: 700;
}

.phone-statusbar > div {
  display: flex;
  align-items: center;
  gap: 4px;
}

.phone-statusbar svg {
  width: 14px;
  height: 10px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.3;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.phone-statusbar svg:last-child {
  width: 19px;
}

.phone-statusbar .battery-level {
  fill: currentColor;
  stroke: none;
}

.whatsapp-header {
  z-index: 6;
  display: grid;
  align-items: center;
  padding: 7px 11px 8px 7px;
  color: var(--white);
  background: #1f6253;
  box-shadow: 0 2px 8px rgba(8, 28, 34, 0.12);
  grid-template-columns: 21px 38px 1fr auto;
  gap: 7px;
}

.phone-back,
.phone-actions svg {
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.phone-back {
  width: 20px;
  height: 20px;
}

.phone-avatar {
  display: grid;
  width: 36px;
  height: 36px;
  color: var(--navy-900);
  background: var(--gold-500);
  border-radius: 50%;
  place-items: center;
}

.phone-avatar svg {
  width: 19px;
  height: 19px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.phone-contact {
  display: flex;
  min-width: 0;
  flex-direction: column;
}

.phone-contact strong {
  overflow: hidden;
  font-size: 11px;
  line-height: 1.25;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.phone-contact span {
  color: rgba(255, 255, 255, 0.72);
  font-size: 8px;
}

.phone-actions {
  display: flex;
  gap: 13px;
}

.phone-actions svg {
  width: 17px;
  height: 17px;
}

.phone-chat {
  position: relative;
  display: flex;
  overflow: hidden;
  padding: 12px 11px 10px;
  background:
    linear-gradient(rgba(237, 234, 225, 0.88), rgba(237, 234, 225, 0.88)),
    radial-gradient(circle at center, rgba(91, 114, 106, 0.34) 1px, transparent 1px);
  background-size: auto, 19px 19px;
  flex-direction: column;
  gap: 8px;
}

.phone-date,
.phone-encryption {
  align-self: center;
  color: #647b75;
  background: rgba(255, 255, 255, 0.86);
  border-radius: 5px;
  box-shadow: 0 1px 2px rgba(8, 28, 34, 0.07);
  font-size: 7px;
}

.phone-date {
  padding: 4px 8px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.phone-encryption {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 4px 7px;
  color: #8b7752;
  background: #fff8df;
}

.phone-encryption svg {
  width: 9px;
  height: 9px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.phone-message {
  position: relative;
  width: fit-content;
  max-width: 87%;
  padding: 8px 9px 5px;
  color: #172d32;
  border-radius: 8px;
  box-shadow: 0 1px 3px rgba(8, 28, 34, 0.11);
  font-size: 9px;
  line-height: 1.42;
}

.js .phone-message {
  position: absolute;
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
  transform: scale(0.8) translateY(15px);
  transition: opacity 420ms cubic-bezier(0.16, 1, 0.3, 1),
    transform 520ms cubic-bezier(0.175, 0.885, 0.32, 1.275),
    visibility 520ms step-end;
}

.js .phone-message.is-visible,
.js .phone-message.is-static {
  position: relative;
  visibility: visible;
  opacity: 1;
  pointer-events: auto;
  transform: scale(1) translateY(0);
  transition-delay: 0ms;
  transition-timing-function: cubic-bezier(0.16, 1, 0.3, 1),
    cubic-bezier(0.175, 0.885, 0.32, 1.275), step-start;
}

.js .phone-chat.is-resetting .phone-message,
.js .phone-message.is-static {
  transition: none;
}

.phone-message p {
  margin: 0;
}

.phone-message > span {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 2px;
  margin-top: 3px;
  color: #84928f;
  font-size: 6.5px;
  line-height: 1;
}

.phone-message > span svg {
  width: 11px;
  height: 11px;
  fill: none;
  stroke: #2c92b2;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.phone-message-in {
  align-self: flex-start;
  background: var(--white);
  border-top-left-radius: 2px;
  transform-origin: left bottom;
}

.phone-message-out {
  align-self: flex-end;
  background: #d8f2df;
  border-top-right-radius: 2px;
  transform-origin: right bottom;
}

.phone-message-booked {
  width: 88%;
}

.phone-booking {
  display: flex;
  align-items: center;
  gap: 7px;
  margin-top: 7px;
  padding: 7px;
  color: var(--navy-900);
  background: rgba(255, 255, 255, 0.62);
  border-left: 3px solid var(--green-600);
  border-radius: 5px;
}

.phone-booking > svg {
  width: 21px;
  height: 21px;
  flex: 0 0 auto;
  fill: none;
  stroke: var(--green-700);
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.phone-booking > div {
  display: flex;
  min-width: 0;
  flex-direction: column;
}

.phone-booking strong {
  font-size: 7.5px;
  line-height: 1.35;
}

.phone-booking span {
  color: var(--slate-600);
  font-size: 6.8px;
}

.phone-typing {
  display: none;
  width: 44px;
  min-height: 27px;
  align-items: center;
  align-self: flex-end;
  justify-content: center;
  gap: 3px;
  background: #d8f2df;
  border-radius: 8px 2px 8px 8px;
  box-shadow: 0 1px 3px rgba(8, 28, 34, 0.11);
}

.phone-typing.is-visible {
  display: flex;
}

.phone-typing i {
  width: 4px;
  height: 4px;
  background: #728b82;
  border-radius: 50%;
  animation: typing-dot 750ms ease-in-out infinite;
}

.phone-typing i:nth-child(2) {
  animation-delay: 120ms;
}

.phone-typing i:nth-child(3) {
  animation-delay: 240ms;
}

@keyframes typing-dot {
  0%, 60%, 100% { transform: translateY(0); }
  30% { transform: translateY(-3px); }
}

.phone-composer {
  display: grid;
  align-items: center;
  padding: 7px 8px;
  background: #f4f1eb;
  grid-template-columns: 1fr 34px;
  gap: 5px;
}

.phone-composer > div {
  display: grid;
  min-width: 0;
  height: 36px;
  align-items: center;
  padding: 0 9px;
  color: #6e7b79;
  background: var(--white);
  border-radius: 999px;
  grid-template-columns: 18px 1fr 17px 17px;
  gap: 7px;
}

.phone-composer svg {
  width: 17px;
  height: 17px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.phone-composer > div span {
  color: #9aa3a1;
  font-size: 9px;
}

.phone-composer > span {
  display: grid;
  width: 34px;
  height: 34px;
  color: var(--white);
  background: #1f765f;
  border-radius: 50%;
  place-items: center;
}

.phone-caption {
  position: absolute;
  right: 3%;
  bottom: 24px;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 9px 12px;
  color: var(--slate-700);
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid var(--line);
  border-radius: 999px;
  box-shadow: var(--shadow-sm);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.phone-caption-dot {
  width: 7px;
  height: 7px;
  background: #49a575;
  border-radius: 50%;
  box-shadow: 0 0 0 3px rgba(73, 165, 117, 0.13);
}

.integration-strip {
  background: var(--white);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.integration-inner {
  display: grid;
  min-height: 116px;
  align-items: center;
  grid-template-columns: minmax(180px, 0.65fr) minmax(0, 2fr);
  gap: 44px;
}

.integration-inner > p {
  margin: 0;
  color: var(--slate-600);
  font-size: 11px;
  font-weight: 600;
  line-height: 1.5;
}

.integration-marquee {
  min-width: 0;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(to right, transparent, #000 6%, #000 94%, transparent);
  mask-image: linear-gradient(to right, transparent, #000 6%, #000 94%, transparent);
}

.integration-logos {
  display: flex;
  width: max-content;
  align-items: center;
  animation: integration-scroll 96s linear infinite;
  will-change: transform;
}

.integration-marquee:hover .integration-logos,
.integration-marquee:focus-within .integration-logos {
  animation-play-state: paused;
}

.integration-group {
  display: flex;
  align-items: center;
  gap: 52px;
  padding-right: 52px;
}

.integration-logo {
  display: flex;
  width: 158px;
  flex: 0 0 auto;
  align-items: center;
  gap: 10px;
  color: #7e8988;
  filter: grayscale(1);
}

.integration-logo svg {
  width: 29px;
  height: 29px;
  flex: 0 0 auto;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.integration-logo span {
  display: flex;
  min-width: 0;
  flex-direction: column;
  font-size: 10px;
  font-weight: 500;
  line-height: 1.2;
}

.integration-logo strong {
  color: #586665;
  font-size: 11px;
  font-weight: 700;
}

.integration-logo-make svg {
  width: 36px;
}

.integration-logo-zapier svg circle {
  fill: var(--white);
}

@keyframes integration-scroll {
  to {
    transform: translateX(-50%);
  }
}

.workflow-strip {
  color: var(--deep-navy);
  background: var(--light-gray);
  border-block: 1px solid var(--line);
}

.workflow-strip-inner {
  display: grid;
  min-height: 112px;
  align-items: center;
  grid-template-columns: minmax(200px, 0.75fr) 2fr;
  gap: 42px;
}

.workflow-strip p {
  margin: 0;
  color: var(--slate-600);
  font-size: 12px;
  line-height: 1.5;
}

.workflow-strip ul {
  display: grid;
  margin: 0;
  padding: 0;
  list-style: none;
  grid-template-columns: repeat(4, 1fr);
}

.workflow-strip li {
  display: flex;
  min-height: 46px;
  align-items: center;
  gap: 10px;
  padding-inline: 18px;
  border-left: 1px solid var(--line);
  font-size: 11px;
  font-weight: 600;
}

.workflow-strip li:first-child {
  padding-left: 0;
  border-left: 0;
}

.workflow-strip li svg {
  width: 19px;
  height: 19px;
  color: var(--catalyst-teal);
  fill: none;
  stroke: currentColor;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.section {
  padding: 118px 0;
}

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

.section-heading-split {
  display: grid;
  align-items: end;
  grid-template-columns: minmax(0, 1.2fr) minmax(300px, 0.8fr);
  gap: 64px;
}

.section-heading h2,
.hands-off-copy h2,
.control-copy h2,
.contact-copy h2 {
  font-size: clamp(38px, 4.2vw, 54px);
}

.section-heading-split > p,
.centered-heading > p,
.control-copy > p {
  margin: 0;
  color: var(--slate-600);
  font-size: 16px;
  line-height: 1.75;
}

.feature-grid {
  display: grid;
  margin-top: 62px;
  grid-template-columns: repeat(3, 1fr);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
}

.feature-card {
  --interaction-y: 0px;
  --reveal-y: 0px;
  --reveal-scale: 1;
  position: relative;
  z-index: 0;
  min-height: 435px;
  padding: 38px 34px 34px;
  background: var(--white);
  border-right: 1px solid var(--line);
  transform: translate3d(0, calc(var(--reveal-y) + var(--interaction-y)), 0)
    scale(var(--reveal-scale));
  transition: transform 180ms ease, box-shadow 180ms ease, background-color 180ms ease;
}

.feature-card:first-child {
  border-radius: var(--radius-md) 0 0 var(--radius-md);
}

.feature-card:last-child {
  border-right: 0;
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
}

.feature-card-highlight {
  background: #f3f7f4;
}

.feature-number {
  position: absolute;
  top: 24px;
  right: 26px;
  color: #c6cecb;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.icon-box {
  display: grid;
  width: 52px;
  height: 52px;
  margin-bottom: 34px;
  color: var(--catalyst-teal);
  background: var(--green-100);
  border-radius: 12px;
  place-items: center;
  transition: color 180ms ease, background-color 180ms ease, transform 180ms ease;
}

.icon-box svg {
  width: 25px;
  height: 25px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: transform 180ms ease;
}

@media (hover: hover) and (pointer: fine) {
  .feature-card:hover {
    --interaction-y: -8px;
    z-index: 2;
    background: #fdfdfb;
    box-shadow: 0 22px 46px rgba(8, 28, 34, 0.13);
  }

  .feature-card-highlight:hover {
    background: #eff6f1;
  }

  .feature-card:hover .icon-box {
    color: var(--white);
    background: var(--brand-gradient);
    transform: translateY(-3px) rotate(-3deg);
  }

  .feature-card:hover .icon-box svg {
    transform: scale(1.08) rotate(3deg);
  }
}

.feature-card h3 {
  margin: 0 0 15px;
  font-size: 21px;
  letter-spacing: -0.03em;
  line-height: 1.25;
}

.feature-card > p {
  margin: 0;
  color: var(--slate-600);
  font-size: 14px;
  line-height: 1.72;
}

.feature-list {
  display: grid;
  gap: 10px;
  margin: 26px 0 0;
  padding: 22px 0 0;
  border-top: 1px solid var(--line);
  list-style: none;
}

.feature-list li {
  position: relative;
  padding-left: 20px;
  color: var(--slate-700);
  font-size: 12px;
  font-weight: 500;
}

.feature-list li::before {
  position: absolute;
  top: 0.62em;
  left: 0;
  width: 6px;
  height: 6px;
  background: var(--gold-500);
  border-radius: 50%;
  content: "";
}

.roi-section {
  overflow: hidden;
  background: var(--light-gray);
}

.roi-grid {
  display: grid;
  align-items: center;
  grid-template-columns: minmax(0, 0.82fr) minmax(470px, 1.18fr);
  gap: clamp(60px, 9vw, 120px);
}

.roi-copy h2 {
  margin: 0;
  color: var(--navy-900);
  font-size: clamp(38px, 4.2vw, 54px);
  font-weight: 600;
  letter-spacing: -0.055em;
  line-height: 1.06;
}

.roi-copy > p:not(.eyebrow) {
  margin: 25px 0 0;
  color: var(--slate-600);
  font-size: 15px;
  line-height: 1.78;
}

.roi-assumption {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-top: 27px;
  padding-top: 22px;
  border-top: 1px solid #d2dbd6;
  color: var(--slate-600);
  font-size: 11px;
}

.roi-assumption svg {
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
  color: var(--green-600);
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.calculator-card {
  position: relative;
  overflow: hidden;
  padding: 40px 42px 34px;
  color: var(--deep-navy);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
}

.calculator-card::after {
  position: absolute;
  top: -100px;
  right: -100px;
  width: 260px;
  height: 260px;
  border: 1px solid rgba(36, 178, 171, 0.2);
  border-radius: 50%;
  content: "";
  pointer-events: none;
}

.calculator-topline {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.calculator-topline label {
  color: var(--slate-600);
  font-size: 12px;
  font-weight: 600;
}

.inquiry-output {
  min-width: 76px;
  padding: 8px 12px;
  color: var(--white);
  background: var(--brand-gradient);
  border-radius: 8px;
  font-size: 17px;
  font-weight: 700;
  line-height: 1;
  text-align: center;
}

.roi-slider {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 6px;
  margin: 34px 0 0;
  background: linear-gradient(
    to right,
    var(--catalyst-teal) 0%,
    var(--catalyst-blue) var(--slider-progress, 18.37%),
    #d9e0e6 var(--slider-progress, 18.37%),
    #d9e0e6 100%
  );
  border-radius: 999px;
  cursor: pointer;
  appearance: none;
}

.roi-slider::-webkit-slider-thumb {
  width: 22px;
  height: 22px;
  background: var(--white);
  border: 5px solid var(--catalyst-teal);
  border-radius: 50%;
  box-shadow: 0 3px 12px rgba(0, 0, 0, 0.24);
  cursor: grab;
  appearance: none;
}

.roi-slider::-moz-range-thumb {
  width: 13px;
  height: 13px;
  background: var(--white);
  border: 5px solid var(--catalyst-teal);
  border-radius: 50%;
  box-shadow: 0 3px 12px rgba(0, 0, 0, 0.24);
  cursor: grab;
}

.roi-slider:active::-webkit-slider-thumb,
.roi-slider:active::-moz-range-thumb {
  cursor: grabbing;
}

.roi-slider:focus-visible {
  outline: 3px solid rgba(45, 125, 210, 0.45);
  outline-offset: 7px;
}

.range-labels {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: space-between;
  margin-top: 9px;
  color: var(--slate-400);
  font-size: 9px;
}

.calculator-result {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  margin-top: 34px;
  padding: 28px 0 5px;
  border-top: 1px solid var(--line);
}

.result-label {
  max-width: 120px;
  padding-bottom: 7px;
  color: var(--slate-600);
  font-size: 11px;
  font-weight: 600;
  line-height: 1.45;
}

.calculator-result > div {
  display: flex;
  align-items: baseline;
  gap: 8px;
}

.calculator-result output {
  color: var(--deep-navy);
  font-size: clamp(52px, 6vw, 76px);
  font-weight: 600;
  letter-spacing: -0.06em;
  line-height: 0.9;
  font-variant-numeric: tabular-nums;
}

.calculator-result > div span {
  color: var(--catalyst-teal);
  font-size: 11px;
  font-weight: 700;
}

.calculator-note {
  position: relative;
  z-index: 1;
  margin: 22px 0 0;
  color: var(--slate-400);
  font-size: 9px;
}

.how-it-works {
  background: var(--ivory);
}

.centered-heading {
  max-width: 680px;
  margin-inline: auto;
  text-align: center;
}

.centered-heading .eyebrow {
  justify-content: center;
}

.centered-heading > p {
  max-width: 560px;
  margin: 22px auto 0;
}

.steps {
  position: relative;
  min-height: 390px;
  max-width: 1120px;
  margin: 74px auto 0;
  padding: 10px 0 28px;
  list-style: none;
  isolation: isolate;
}

.step {
  --step-anchor-x: -50%;
  --step-left: 50%;
  --step-y: 0px;
  --step-rotate: 0deg;
  position: absolute;
  top: 10px;
  left: var(--step-left);
  z-index: 2;
  display: flex;
  width: min(31%, 340px);
  min-height: 335px;
  align-items: center;
  padding: 36px 30px 32px;
  text-align: center;
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(8, 28, 34, 0.11);
  border-radius: 24px;
  box-shadow: 0 24px 54px rgba(8, 28, 34, 0.16);
  flex-direction: column;
  transform: translate3d(var(--step-anchor-x), var(--step-y), 0)
    rotate(var(--step-rotate));
  transform-origin: center bottom;
  transition: left 760ms cubic-bezier(0.175, 0.885, 0.32, 1.275),
    transform 760ms cubic-bezier(0.175, 0.885, 0.32, 1.275),
    border-color 240ms ease, box-shadow 240ms ease;
  will-change: left, transform;
}

.step:nth-child(1) {
  --step-left: 48.5%;
  --step-y: 22px;
  --step-rotate: -7deg;
  z-index: 1;
}

.step:nth-child(2) {
  --step-left: 50%;
  --step-y: 0px;
  --step-rotate: -0.5deg;
  z-index: 3;
}

.step:nth-child(3) {
  --step-left: 51.5%;
  --step-y: 20px;
  --step-rotate: 7deg;
  z-index: 2;
}

@media (hover: hover) and (pointer: fine) {
  .steps:hover .step:nth-child(1) {
    --step-left: 16.666%;
    --step-y: 0px;
    --step-rotate: 0deg;
  }

  .steps:hover .step:nth-child(2) {
    --step-left: 50%;
    --step-y: 0px;
    --step-rotate: 0deg;
  }

  .steps:hover .step:nth-child(3) {
    --step-left: 83.333%;
    --step-y: 0px;
    --step-rotate: 0deg;
  }

  .steps:hover .step {
    border-color: rgba(36, 178, 171, 0.24);
    box-shadow: 0 24px 58px rgba(8, 28, 34, 0.12);
  }

  .steps:hover .step:hover {
    --step-y: -10px;
    z-index: 5;
    border-color: rgba(36, 178, 171, 0.72);
    box-shadow: 0 30px 66px rgba(8, 28, 34, 0.18);
  }
}

@media (hover: none), (pointer: coarse) {
  .steps {
    display: grid;
    min-height: 0;
    padding: 0;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
  }

  .step,
  .step:nth-child(n) {
    --step-anchor-x: 0%;
    --step-left: 0%;
    --step-y: 0px;
    --step-rotate: 0deg;
    position: relative;
    top: auto;
    left: 0;
    width: auto;
    min-height: 0;
  }
}

.step-visual {
  position: relative;
  display: grid;
  width: 92px;
  height: 92px;
  margin: 0 auto 28px;
  color: var(--catalyst-teal);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 50%;
  box-shadow: var(--shadow-sm);
  place-items: center;
}

.step-visual > span {
  position: absolute;
  top: -4px;
  right: -2px;
  display: grid;
  width: 26px;
  height: 26px;
  color: var(--white);
  background: var(--brand-gradient);
  border: 3px solid var(--ivory);
  border-radius: 50%;
  font-size: 9px;
  font-weight: 700;
  place-items: center;
}

.step-visual svg {
  width: 32px;
  height: 32px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.step h3 {
  margin: 0 0 10px;
  font-size: 18px;
  letter-spacing: -0.025em;
}

.step p {
  max-width: 290px;
  margin: 0 auto;
  color: var(--slate-600);
  font-size: 13px;
  line-height: 1.7;
}

.hands-off {
  overflow: hidden;
  color: var(--deep-navy);
  background: var(--light-gray);
}

.hands-off-grid {
  display: grid;
  align-items: center;
  grid-template-columns: 0.95fr 1.05fr;
  gap: clamp(64px, 8vw, 112px);
}

.hands-off-visual {
  position: relative;
  padding: 0 28px 34px 0;
}

.hands-off-visual::before {
  position: absolute;
  top: -20px;
  left: -22px;
  width: 80px;
  height: 80px;
  border-top: 1px solid rgba(36, 178, 171, 0.5);
  border-left: 1px solid rgba(36, 178, 171, 0.5);
  content: "";
}

.agent-photo {
  height: 530px;
  border-radius: 6px 56px 6px 6px;
}

.handoff-note {
  position: absolute;
  right: 0;
  bottom: 0;
  display: flex;
  min-width: 260px;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  color: var(--navy-900);
  background: var(--white);
  border-radius: 12px;
  box-shadow: var(--shadow-lg);
}

.handoff-icon {
  display: grid;
  width: 38px;
  height: 38px;
  color: var(--catalyst-teal);
  background: var(--green-100);
  border-radius: 9px;
  place-items: center;
}

.handoff-icon svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.handoff-note > div:last-child {
  display: flex;
  flex-direction: column;
}

.handoff-note span {
  color: var(--catalyst-teal);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.handoff-note strong {
  font-size: 11px;
}

.eyebrow-light {
  color: var(--deep-navy);
}

.hands-off-copy h2,
.contact-copy h2 {
  color: var(--deep-navy);
}

.hands-off-lede {
  margin: 26px 0 0;
  color: var(--slate-700);
  font-size: 15px;
  line-height: 1.8;
}

.division-list {
  display: grid;
  margin-top: 40px;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}

.division-list > div {
  padding-top: 20px;
  border-top: 1px solid var(--line);
}

.division-label {
  color: var(--catalyst-teal);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.division-list ul {
  display: grid;
  gap: 11px;
  margin: 17px 0 0;
  padding: 0;
  list-style: none;
}

.division-list li {
  position: relative;
  padding-left: 19px;
  color: var(--slate-700);
  font-size: 12px;
}

.division-list li::before {
  position: absolute;
  top: 0.6em;
  left: 0;
  width: 6px;
  height: 6px;
  border: 1px solid var(--catalyst-green);
  border-radius: 50%;
  content: "";
}

.control-section {
  background: var(--cream);
}

.control-grid {
  display: grid;
  align-items: center;
  grid-template-columns: minmax(0, 0.8fr) minmax(480px, 1.2fr);
  gap: clamp(60px, 9vw, 120px);
}

.control-copy > p {
  margin-top: 25px;
}

.control-copy .text-link {
  margin-top: 28px;
}

.control-panel {
  padding: 28px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
}

.control-panel-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 4px 21px;
  border-bottom: 1px solid var(--line);
}

.control-panel-top > div {
  display: flex;
  flex-direction: column;
}

.control-panel-top div span {
  color: var(--slate-400);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.control-panel-top div strong {
  margin-top: 3px;
  font-size: 16px;
}

.status-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 10px;
  color: var(--green-700);
  background: var(--green-100);
  border-radius: 999px;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.status-pill i {
  width: 6px;
  height: 6px;
  background: var(--green-600);
  border-radius: 50%;
}

.control-row {
  display: grid;
  align-items: center;
  padding: 20px 4px;
  grid-template-columns: 42px 1fr auto;
  gap: 14px;
  border-bottom: 1px solid #edf0ee;
}

.control-row-icon {
  display: grid;
  width: 42px;
  height: 42px;
  color: var(--green-700);
  background: #f0f5f2;
  border-radius: 10px;
  place-items: center;
}

.control-row-icon svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.control-row > div:nth-child(2) {
  display: flex;
  min-width: 0;
  flex-direction: column;
}

.control-row strong {
  font-size: 12px;
}

.control-row span {
  color: var(--slate-600);
  font-size: 10px;
}

.toggle {
  position: relative;
  width: 34px;
  height: 19px;
  background: var(--green-600);
  border-radius: 999px;
}

.toggle i {
  position: absolute;
  top: 3px;
  right: 3px;
  width: 13px;
  height: 13px;
  background: var(--white);
  border-radius: 50%;
}

.handoff-rule {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-top: 20px;
  padding: 15px;
  background: #faf7ef;
  border: 1px solid #efe3ca;
  border-radius: 10px;
}

.handoff-rule svg {
  width: 20px;
  height: 20px;
  flex: 0 0 auto;
  color: #a87b25;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.handoff-rule > div {
  display: flex;
  flex-direction: column;
}

.handoff-rule strong {
  font-size: 11px;
}

.handoff-rule span {
  margin-top: 2px;
  color: var(--slate-600);
  font-size: 10px;
}

.contact-section {
  position: relative;
  overflow: hidden;
  padding: 16px 0 112px;
  color: var(--deep-navy);
  background: var(--white);
}

.contact-card {
  position: relative;
  display: grid;
  overflow: hidden;
  align-items: center;
  padding: 68px 72px;
  color: var(--deep-navy);
  background: var(--light-gray);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  grid-template-columns: minmax(0, 1.35fr) minmax(230px, 0.65fr);
  gap: 70px;
}

.contact-card::after {
  display: none;
}

.contact-card::before {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 86% 28%, rgba(45, 125, 210, 0.09), transparent 31%),
    radial-gradient(circle at 12% 100%, rgba(108, 192, 74, 0.1), transparent 36%);
  content: "";
  pointer-events: none;
}

.contact-copy,
.contact-action {
  position: relative;
  z-index: 1;
}

.contact-copy p:last-child {
  max-width: 620px;
  margin: 23px 0 0;
  color: var(--slate-700);
  font-size: 14px;
}

.contact-action {
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 11px;
}

.button-light {
  width: 100%;
  color: var(--white);
  background: var(--brand-gradient);
  border-color: transparent;
  box-shadow: none;
  animation: contact-cta-pulse 3.2s ease-in-out infinite;
}

.button-light:hover {
  color: var(--white);
  background: var(--brand-gradient);
  border-color: transparent;
  box-shadow: none;
  filter: brightness(0.96) saturate(1.08);
  animation: none;
}

@keyframes contact-cta-pulse {
  0%, 100% {
    box-shadow: 0 0 0 0 rgba(36, 178, 171, 0);
  }
  50% {
    box-shadow: 0 0 0 5px rgba(36, 178, 171, 0.1);
  }
}

.contact-action > span {
  color: var(--slate-600);
  font-size: 10px;
}

.site-footer {
  color: rgba(255, 255, 255, 0.68);
  background-color: var(--navy-950);
}

.footer-main {
  display: grid;
  padding-top: 76px;
  padding-bottom: 66px;
  grid-template-columns: 1.1fr 1fr;
  gap: 80px;
}

.brand-light {
  color: var(--white);
}

.brand-light .brand-mark {
  color: var(--green-600);
}

.footer-brand-column > p {
  max-width: 330px;
  margin: 20px 0 0;
  color: rgba(255, 255, 255, 0.48);
  font-size: 13px;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.footer-links > div {
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  gap: 10px;
}

.footer-links h2 {
  margin: 0 0 8px;
  color: var(--white);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.52);
  font-size: 12px;
  transition: color 160ms ease;
}

.footer-links a:hover {
  color: var(--gold-200);
}

.footer-bottom {
  display: flex;
  min-height: 78px;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.34);
  font-size: 10px;
}

.scenario-section {
  background: var(--white);
}

.scenario-heading {
  max-width: 760px;
}

.scenario-tabs {
  display: grid;
  max-width: 850px;
  margin: 52px auto 0;
  padding: 6px;
  background: #edf2ef;
  border: 1px solid #dbe3de;
  border-radius: 13px;
  grid-template-columns: repeat(3, 1fr);
  gap: 5px;
}

.scenario-tab {
  display: flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 10px 14px;
  color: var(--slate-600);
  background: transparent;
  border: 0;
  border-radius: 9px;
  cursor: pointer;
  font-size: 12px;
  font-weight: 700;
  transition: color 160ms ease, background-color 160ms ease, box-shadow 160ms ease;
}

.scenario-tab svg {
  width: 19px;
  height: 19px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.scenario-tab:hover {
  color: var(--green-700);
}

.scenario-tab.is-active {
  color: var(--white);
  background: var(--green-700);
  box-shadow: 0 7px 18px rgba(36, 178, 171, 0.16);
}

.scenario-tab:focus-visible {
  outline: 3px solid var(--gold-500);
  outline-offset: 3px;
}

.scenario-panel {
  display: grid;
  max-width: 1000px;
  min-height: 480px;
  align-items: center;
  margin: 30px auto 0;
  overflow: hidden;
  background: var(--ivory);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  grid-template-columns: minmax(0, 0.82fr) minmax(390px, 1.18fr);
  transition: opacity 150ms ease, transform 150ms ease;
}

.scenario-panel.is-switching {
  opacity: 0.45;
  transform: translateY(3px);
}

.scenario-context {
  padding: 50px;
}

.scenario-kicker {
  color: var(--green-700);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.scenario-context h3 {
  margin: 14px 0 0;
  color: var(--navy-900);
  font-size: clamp(28px, 3vw, 38px);
  font-weight: 600;
  letter-spacing: -0.045em;
  line-height: 1.08;
}

.scenario-context > p {
  margin: 20px 0 0;
  color: var(--slate-600);
  font-size: 13px;
  line-height: 1.75;
}

.scenario-outcome {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-top: 30px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
  color: var(--slate-700);
  font-size: 11px;
  font-weight: 600;
}

.scenario-outcome svg {
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
  color: var(--green-600);
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.scenario-chat {
  display: grid;
  height: calc(100% - 44px);
  min-height: 410px;
  margin: 22px 22px 22px 0;
  overflow: hidden;
  background: #e8e4dc;
  border: 7px solid var(--navy-900);
  border-radius: 20px;
  box-shadow: 0 24px 48px rgba(8, 28, 34, 0.17);
  grid-template-rows: 58px minmax(0, 1fr) 52px;
}

.scenario-chat-header {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 9px 14px;
  color: var(--white);
  background: #1f6253;
}

.scenario-avatar {
  display: grid;
  width: 38px;
  height: 38px;
  color: var(--navy-900);
  background: var(--gold-500);
  border-radius: 50%;
  place-items: center;
}

.scenario-avatar svg {
  width: 19px;
  height: 19px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.scenario-chat-header > div:nth-child(2) {
  display: flex;
  min-width: 0;
  flex: 1;
  flex-direction: column;
}

.scenario-chat-header strong {
  font-size: 11px;
}

.scenario-chat-header span {
  color: rgba(255, 255, 255, 0.7);
  font-size: 8px;
}

.scenario-online {
  width: 8px;
  height: 8px;
  background: #6fd59a;
  border-radius: 50%;
}

.scenario-thread {
  display: flex;
  overflow: hidden;
  padding: 25px 18px;
  background:
    linear-gradient(rgba(237, 234, 225, 0.86), rgba(237, 234, 225, 0.86)),
    radial-gradient(circle at center, rgba(91, 114, 106, 0.35) 1px, transparent 1px);
  background-size: auto, 18px 18px;
  flex-direction: column;
  gap: 11px;
}

.scenario-message {
  width: fit-content;
  max-width: 78%;
  padding: 11px 12px 7px;
  color: var(--navy-900);
  border-radius: 9px;
  box-shadow: 0 2px 7px rgba(8, 28, 34, 0.09);
  font-size: 11px;
  line-height: 1.5;
  animation: scenario-message-in 220ms ease both;
}

.scenario-message span {
  display: block;
  margin-top: 4px;
  color: var(--slate-400);
  font-size: 7px;
  text-align: right;
}

.scenario-message-user {
  align-self: flex-start;
  background: var(--white);
  border-top-left-radius: 2px;
}

.scenario-message-bot {
  align-self: flex-end;
  background: #d8f2df;
  border-top-right-radius: 2px;
}

.scenario-message:nth-child(2) {
  animation-delay: 45ms;
}

.scenario-message:nth-child(3) {
  animation-delay: 90ms;
}

@keyframes scenario-message-in {
  from {
    opacity: 0;
    transform: translateY(6px);
  }
}

.scenario-composer {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 11px;
  background: #f4f1eb;
}

.scenario-composer span {
  flex: 1;
  padding: 8px 13px;
  color: #9aa3a1;
  background: var(--white);
  border-radius: 999px;
  font-size: 9px;
}

.scenario-composer svg {
  width: 31px;
  height: 31px;
  padding: 8px;
  color: var(--white);
  background: var(--green-600);
  border-radius: 50%;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.handoff-section {
  background: var(--light-gray);
}

.handoff-heading {
  max-width: 740px;
}

.handoff-dashboard {
  display: grid;
  max-width: 1080px;
  min-height: 580px;
  margin: 62px auto 0;
  overflow: hidden;
  background: var(--white);
  border: 1px solid #d8e0dc;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
}

.handoff-chat-panel,
.crm-panel {
  min-width: 0;
}

.handoff-chat-panel {
  display: grid;
  background: #e8e4dc;
  border-right: 1px solid #d8e0dc;
  grid-template-rows: 36px 64px minmax(0, 1fr) 64px;
}

.handoff-panel-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 16px;
  color: rgba(255, 255, 255, 0.55);
  background: var(--navy-950);
  font-size: 8px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.handoff-panel-bar > div {
  display: flex;
  gap: 5px;
}

.panel-window-dot {
  width: 6px;
  height: 6px;
  background: rgba(255, 255, 255, 0.24);
  border-radius: 50%;
}

.handoff-contact {
  display: flex;
  align-items: center;
  gap: 11px;
  padding: 10px 16px;
  color: var(--white);
  background: #1f6253;
}

.handoff-contact-avatar {
  display: grid;
  width: 39px;
  height: 39px;
  color: var(--navy-900);
  background: var(--gold-500);
  border-radius: 50%;
  font-size: 10px;
  font-weight: 700;
  place-items: center;
}

.handoff-contact > div:nth-child(2) {
  display: flex;
  min-width: 0;
  flex: 1;
  flex-direction: column;
}

.handoff-contact strong {
  font-size: 11px;
}

.handoff-contact span {
  color: rgba(255, 255, 255, 0.66);
  font-size: 8px;
}

.handoff-live {
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 5px 8px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 999px;
  font-weight: 700;
  text-transform: uppercase;
}

.handoff-live i {
  width: 6px;
  height: 6px;
  background: #72da9c;
  border-radius: 50%;
}

.handoff-feed {
  display: flex;
  overflow: hidden;
  padding: 19px 17px;
  background:
    linear-gradient(rgba(237, 234, 225, 0.87), rgba(237, 234, 225, 0.87)),
    radial-gradient(circle at center, rgba(91, 114, 106, 0.32) 1px, transparent 1px);
  background-size: auto, 18px 18px;
  flex-direction: column;
  gap: 8px;
}

.handoff-message {
  width: fit-content;
  max-width: 82%;
  padding: 9px 11px;
  color: var(--navy-900);
  border-radius: 8px;
  box-shadow: 0 1px 4px rgba(8, 28, 34, 0.09);
  font-size: 10px;
  line-height: 1.45;
  animation: handoff-message-in 190ms ease both;
}

.handoff-message-bot {
  align-self: flex-start;
  background: var(--white);
  border-top-left-radius: 2px;
}

.handoff-message-user {
  align-self: flex-end;
  background: #d8f2df;
  border-top-right-radius: 2px;
}

@keyframes handoff-message-in {
  from {
    opacity: 0;
    transform: translateY(5px);
  }
}

.handoff-typing-row {
  display: grid;
  align-items: center;
  padding: 11px 13px;
  background: #f4f1eb;
  grid-template-columns: 1fr 38px;
  gap: 7px;
}

.handoff-input {
  display: flex;
  height: 40px;
  align-items: center;
  padding: 0 14px;
  overflow: hidden;
  color: var(--slate-700);
  background: var(--white);
  border-radius: 999px;
  font-size: 9px;
  white-space: nowrap;
}

.handoff-input > span:empty::before {
  color: var(--slate-400);
  content: "Message";
}

.handoff-input i {
  display: none;
  width: 1px;
  height: 14px;
  margin-left: 2px;
  background: var(--green-700);
  animation: caret-blink 700ms steps(1) infinite;
}

.handoff-input i.is-visible {
  display: block;
}

@keyframes caret-blink {
  50% { opacity: 0; }
}

.handoff-send {
  display: grid;
  width: 38px;
  height: 38px;
  color: var(--white);
  background: var(--green-600);
  border-radius: 50%;
  place-items: center;
}

.handoff-send svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.crm-panel {
  padding: 30px;
  background: #fafbf9;
}

.crm-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding-bottom: 21px;
  border-bottom: 1px solid var(--line);
}

.crm-header > div {
  display: flex;
  flex-direction: column;
}

.crm-header > div span {
  color: var(--slate-400);
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.crm-header > div strong {
  margin-top: 3px;
  color: var(--navy-900);
  font-size: 16px;
}

.crm-sync-status {
  display: flex;
  align-items: center;
  gap: 6px;
  color: var(--green-700);
  font-size: 8px;
  font-weight: 700;
  text-transform: uppercase;
}

.crm-sync-status i {
  width: 7px;
  height: 7px;
  background: var(--green-600);
  border-radius: 50%;
  box-shadow: 0 0 0 4px rgba(36, 178, 171, 0.11);
}

.crm-lead-card {
  display: grid;
  align-items: center;
  margin-top: 22px;
  padding: 15px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 11px;
  grid-template-columns: 42px 1fr auto;
  gap: 12px;
}

.crm-lead-avatar {
  display: grid;
  width: 42px;
  height: 42px;
  color: var(--white);
  background: var(--navy-800);
  border-radius: 10px;
  font-size: 11px;
  font-weight: 700;
  place-items: center;
}

.crm-lead-card > div:nth-child(2) {
  display: flex;
  min-width: 0;
  flex-direction: column;
}

.crm-lead-card strong {
  color: var(--navy-900);
  font-size: 11px;
}

.crm-lead-card span {
  color: var(--slate-600);
  font-size: 8px;
}

.crm-stage {
  padding: 5px 8px;
  color: var(--green-700) !important;
  background: var(--green-100);
  border-radius: 999px;
  font-weight: 700;
  text-transform: uppercase;
}

.crm-fields {
  display: grid;
  gap: 10px;
  margin-top: 18px;
}

.crm-field {
  display: grid;
  min-height: 70px;
  align-items: center;
  padding: 11px 13px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 10px;
  grid-template-columns: 40px 1fr 24px;
  gap: 11px;
  transition: border-color 180ms ease, background-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.crm-field.is-captured {
  background: #f1f7f3;
  border-color: #a9c9b7;
  box-shadow: 0 8px 20px rgba(36, 178, 171, 0.08);
  transform: translateX(3px);
}

.crm-field-icon {
  display: grid;
  width: 40px;
  height: 40px;
  color: var(--green-700);
  background: var(--green-100);
  border-radius: 9px;
  place-items: center;
}

.crm-field-icon svg,
.crm-check {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.crm-field > div:nth-child(2) {
  display: flex;
  min-width: 0;
  flex-direction: column;
}

.crm-field > div:nth-child(2) span {
  color: var(--slate-400);
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.crm-field > div:nth-child(2) strong {
  margin-top: 2px;
  overflow: hidden;
  color: var(--slate-600);
  font-size: 10px;
  font-weight: 600;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.crm-field.is-captured > div:nth-child(2) strong {
  color: var(--navy-900);
}

.crm-check {
  color: var(--green-600);
  opacity: 0;
  transform: scale(0.7);
  transition: opacity 180ms ease, transform 180ms ease;
}

.crm-field.is-captured .crm-check {
  opacity: 1;
  transform: scale(1);
}

.crm-ready {
  display: flex;
  visibility: visible;
  align-items: center;
  gap: 11px;
  margin-top: 18px;
  padding: 13px;
  color: var(--navy-900);
  background: #faf5e9;
  border: 1px solid #ebddb9;
  border-radius: 10px;
  opacity: 1;
  transition: opacity 220ms ease, transform 220ms ease, visibility 220ms ease;
}

.js .crm-ready {
  visibility: hidden;
  opacity: 0;
  transform: translateY(5px);
}

.js .crm-ready.is-ready {
  visibility: visible;
  opacity: 1;
  transform: translateY(0);
}

.crm-ready > svg {
  width: 23px;
  height: 23px;
  flex: 0 0 auto;
  color: var(--catalyst-teal);
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.crm-ready > div {
  display: flex;
  flex-direction: column;
}

.crm-ready strong {
  font-size: 10px;
}

.crm-ready span {
  color: var(--slate-600);
  font-size: 8px;
}

.pipeline-section {
  overflow: hidden;
  color: var(--deep-navy);
  background: var(--light-gray);
}

.pipeline-heading h2 {
  color: var(--deep-navy);
}

.pipeline-heading > p:last-child {
  color: var(--slate-600);
}

.pipeline-scroll {
  margin-top: 62px;
  overflow-x: auto;
  overscroll-behavior-inline: contain;
  scrollbar-color: rgba(36, 178, 171, 0.5) transparent;
  scrollbar-width: thin;
}

.pipeline-scroll:focus-visible {
  outline: 3px solid var(--catalyst-blue);
  outline-offset: 5px;
}

.pipeline-canvas {
  position: relative;
  display: grid;
  width: 100%;
  min-width: 780px;
  min-height: 300px;
  align-items: center;
  padding: 34px 24px;
  grid-template-columns: repeat(3, 1fr);
  gap: 88px;
  isolation: isolate;
}

.pipeline-paths {
  position: absolute;
  z-index: -1;
  top: 50%;
  left: 0;
  width: 100%;
  height: 220px;
  overflow: visible;
  transform: translateY(-50%);
}

.pipeline-path,
.pipeline-route {
  fill: none;
  stroke-linecap: round;
}

.pipeline-path {
  stroke: rgba(45, 125, 210, 0.28);
  stroke-width: 2;
  stroke-dasharray: 6 9;
}

.pipeline-route {
  stroke: transparent;
}

.pipeline-packet {
  fill: none;
  stroke: var(--catalyst-teal);
  stroke-width: 10;
  stroke-linecap: round;
  stroke-dasharray: 1 99;
  animation: pipeline-packet-flow 4.6s cubic-bezier(0.45, 0, 0.55, 1) infinite;
}

@keyframes pipeline-packet-flow {
  0% {
    opacity: 0;
    stroke-dashoffset: 0;
  }
  8%, 88% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    stroke-dashoffset: -100;
  }
}

.pipeline-node {
  --mouse-x: 50%;
  --mouse-y: 50%;
  position: relative;
  min-height: 218px;
  overflow: hidden;
  padding: 28px 24px 24px;
  opacity: 1;
  text-align: center;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 16px;
  box-shadow: var(--shadow-sm);
  isolation: isolate;
  transform: translateY(0);
  transition: opacity 180ms ease, transform 180ms ease, border-color 180ms ease,
    box-shadow 180ms ease;
}

.pipeline-node::before {
  position: absolute;
  z-index: 0;
  inset: 0;
  background: radial-gradient(
    260px circle at var(--mouse-x) var(--mouse-y),
    rgba(36, 178, 171, 0.16) 0%,
    rgba(108, 192, 74, 0.09) 32%,
    transparent 68%
  );
  border-radius: inherit;
  content: "";
  opacity: 0;
  pointer-events: none;
  transition: opacity 320ms cubic-bezier(0.16, 1, 0.3, 1);
}

.pipeline-node > * {
  position: relative;
  z-index: 1;
}

.pipeline-node-engine {
  border-color: rgba(36, 178, 171, 0.58);
  box-shadow: 0 18px 44px rgba(13, 27, 42, 0.1), 0 0 0 1px rgba(36, 178, 171, 0.08);
}

.pipeline-node-icon {
  display: grid;
  width: 54px;
  height: 54px;
  margin: 0 auto 20px;
  color: var(--catalyst-teal);
  background: #eaf8f6;
  border: 1px solid rgba(36, 178, 171, 0.2);
  border-radius: 13px;
  place-items: center;
}

.pipeline-node-icon svg {
  width: 27px;
  height: 27px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.pipeline-node > span {
  color: var(--catalyst-teal);
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.pipeline-node h3 {
  margin: 6px 0 0;
  color: var(--deep-navy);
  font-size: 18px;
  letter-spacing: -0.025em;
}

.pipeline-node p {
  margin: 11px 0 0;
  color: var(--slate-600);
  font-size: 10px;
  line-height: 1.65;
}

.pipeline-legend {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  max-width: 1040px;
  margin: 25px auto 0;
  padding-top: 20px;
  border-top: 1px solid var(--line);
  color: var(--slate-600);
  font-size: 9px;
}

.pipeline-legend span:first-child {
  display: flex;
  align-items: center;
  gap: 8px;
}

.pipeline-legend i {
  width: 8px;
  height: 8px;
  background: var(--catalyst-teal);
  border-radius: 50%;
  box-shadow: 0 0 0 4px rgba(36, 178, 171, 0.12);
}

.legal-page {
  min-height: 70vh;
  padding: 90px 0 110px;
}

.legal-page article {
  max-width: 760px;
}

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

.legal-intro {
  margin: 18px 0 42px;
  color: var(--slate-600);
}

.legal-page h2 {
  margin: 36px 0 10px;
  color: var(--navy-900);
  font-size: 21px;
  letter-spacing: -0.025em;
}

.legal-page p,
.legal-page li {
  color: var(--slate-700);
  font-size: 14px;
}

.legal-page a {
  color: var(--green-700);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 3px;
}

@media (max-width: 1020px) {
  .hero {
    padding-top: 58px;
  }

  .hero-grid {
    grid-template-columns: minmax(0, 0.9fr) minmax(400px, 1.1fr);
    gap: 46px;
  }

  .hero h1 {
    font-size: clamp(44px, 6vw, 60px);
  }

  .hero-visual {
    min-height: 650px;
  }

  .hero-photo {
    height: 520px;
  }

  .workflow-strip-inner {
    grid-template-columns: 1fr;
    gap: 16px;
    padding-top: 24px;
    padding-bottom: 22px;
  }

  .workflow-strip ul {
    width: 100%;
  }

  .integration-inner {
    grid-template-columns: minmax(160px, 0.5fr) minmax(0, 2fr);
    gap: 28px;
  }

  .integration-group {
    gap: 36px;
    padding-right: 36px;
  }

  .roi-grid {
    gap: 60px;
  }

  .hands-off-grid {
    gap: 60px;
  }

  .division-list {
    gap: 22px;
  }

  .contact-card {
    padding: 58px 52px;
  }
}

@media (max-width: 820px) {
  .desktop-nav,
  .header-account-actions {
    display: none;
  }

  .menu-toggle {
    display: block;
  }

  .mobile-nav {
    position: fixed;
    top: 78px;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 99;
    display: none;
    align-items: stretch;
    padding: 30px 24px;
    background: var(--cream);
    flex-direction: column;
    gap: 0;
  }

  .mobile-nav.is-open {
    display: flex;
  }

  .mobile-nav > a:not(.button) {
    padding: 16px 4px;
    border-bottom: 1px solid var(--line);
    font-size: 18px;
  }

  .mobile-nav .button {
    margin-top: 26px;
  }

  .hero-grid,
  .hands-off-grid,
  .control-grid,
  .section-heading-split,
  .roi-grid {
    grid-template-columns: 1fr;
  }

  .hero-grid {
    gap: 70px;
  }

  .hero-copy {
    max-width: 680px;
  }

  .hero-visual {
    width: min(100%, 620px);
    min-height: 660px;
    margin-inline: auto;
  }

  .hero-photo {
    width: 76%;
    height: 540px;
  }

  .chat-preview {
    width: 68%;
  }

  .integration-inner {
    grid-template-columns: 1fr;
    gap: 22px;
    padding-top: 26px;
    padding-bottom: 26px;
  }

  .integration-inner > p {
    text-align: center;
  }

  .roi-grid {
    gap: 48px;
  }

  .roi-copy {
    max-width: 650px;
  }

  .calculator-card {
    width: min(100%, 650px);
  }

  .scenario-panel {
    max-width: 650px;
    grid-template-columns: 1fr;
  }

  .scenario-context {
    padding: 40px 42px 34px;
  }

  .scenario-chat {
    min-height: 420px;
    margin: 0 22px 22px;
  }

  .handoff-dashboard {
    max-width: 650px;
    grid-template-columns: 1fr;
  }

  .handoff-chat-panel {
    min-height: 540px;
    border-right: 0;
    border-bottom: 1px solid #d8e0dc;
  }

  .crm-panel {
    padding: 28px;
  }

  .workflow-strip ul {
    grid-template-columns: repeat(2, 1fr);
    row-gap: 14px;
  }

  .workflow-strip li:nth-child(3) {
    padding-left: 0;
    border-left: 0;
  }

  .section {
    padding: 90px 0;
  }

  .section-heading-split {
    gap: 24px;
  }

  .section-heading-split > p {
    max-width: 620px;
  }

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

  .feature-card {
    min-height: 0;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .feature-card:first-child {
    border-radius: var(--radius-md) var(--radius-md) 0 0;
  }

  .feature-card:last-child {
    border-bottom: 0;
    border-radius: 0 0 var(--radius-md) var(--radius-md);
  }

  .steps {
    display: grid;
    min-height: 0;
    max-width: 620px;
    margin-top: 56px;
    padding: 0;
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .step,
  .step:nth-child(n) {
    --step-anchor-x: 0%;
    --step-left: 0%;
    --step-y: 0px;
    --step-rotate: 0deg;
    position: relative;
    top: auto;
    left: 0;
    width: 100%;
    min-height: 0;
  }

  .hands-off-visual {
    width: min(100%, 600px);
    margin-inline: auto;
  }

  .agent-photo {
    height: 500px;
  }

  .hands-off-copy {
    max-width: 680px;
  }

  .control-grid {
    gap: 54px;
  }

  .control-copy {
    max-width: 650px;
  }

  .control-panel {
    width: min(100%, 650px);
  }

  .contact-card {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .contact-action {
    align-items: flex-start;
  }

  .contact-action .button {
    width: auto;
  }

  .footer-main {
    grid-template-columns: 1fr;
    gap: 52px;
  }
}

@media (max-width: 580px) {
  .container {
    width: min(calc(100% - 32px), var(--container));
  }

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

  .mobile-nav {
    top: 70px;
  }

  .hero {
    padding: 48px 0 74px;
  }

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

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

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
    gap: 18px;
  }

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

  .hero-actions .text-link {
    justify-content: center;
  }

  .hero-assurances {
    align-items: flex-start;
    flex-direction: column;
  }

  .hero-grid {
    gap: 58px;
  }

  .hero-visual {
    min-height: 620px;
  }

  .hero-photo {
    width: 90%;
    height: 440px;
    border-radius: 10px 42px 10px 10px;
  }

  .chat-preview {
    width: 91%;
  }

  .phone-stage {
    min-height: 620px;
  }

  .phone-stage::before {
    width: 96%;
    height: 77%;
    border-radius: 24px 52px 24px 24px;
    transform: rotate(2deg) translate(3px, 0);
  }

  .phone-stage::after {
    width: 89%;
    height: 70%;
    transform: rotate(2deg) translate(3px, 0);
  }

  .phone-shell {
    width: min(100%, 348px);
    height: 610px;
    border-width: 7px;
    border-radius: 39px;
  }

  .phone-screen {
    border-radius: 32px;
  }

  .phone-chat {
    padding-inline: 9px;
    gap: 7px;
  }

  .phone-message {
    max-width: 91%;
    font-size: 8.7px;
  }

  .phone-caption {
    right: 0;
    bottom: 5px;
  }

  .phone-accent-one {
    right: -5%;
  }

  .integration-group {
    gap: 30px;
    padding-right: 30px;
  }

  .integration-logo {
    width: 146px;
    justify-content: flex-start;
  }

  .calculator-card {
    padding: 32px 24px 28px;
  }

  .calculator-result {
    align-items: flex-start;
    flex-direction: column;
    gap: 16px;
  }

  .result-label {
    max-width: none;
    padding-bottom: 0;
  }

  .workflow-strip p {
    text-align: center;
  }

  .workflow-strip ul {
    grid-template-columns: 1fr;
  }

  .workflow-strip li {
    justify-content: center;
    padding: 8px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.11);
    border-left: 0;
  }

  .workflow-strip li:first-child {
    border-top: 0;
  }

  .section {
    padding: 76px 0;
  }

  .section-heading h2,
  .hands-off-copy h2,
  .control-copy h2,
  .contact-copy h2 {
    font-size: 38px;
  }

  .feature-grid {
    margin-top: 42px;
  }

  .feature-card {
    padding: 32px 26px;
  }

  .scenario-tabs {
    grid-template-columns: 1fr;
  }

  .scenario-tab {
    justify-content: flex-start;
    padding-inline: 18px;
  }

  .scenario-panel {
    min-height: 0;
    margin-top: 22px;
  }

  .scenario-context {
    padding: 32px 26px 28px;
  }

  .scenario-chat {
    min-height: 390px;
    margin: 0 12px 12px;
    border-width: 5px;
    border-radius: 16px;
  }

  .scenario-message {
    max-width: 88%;
  }

  .handoff-dashboard {
    margin-top: 42px;
  }

  .handoff-chat-panel {
    min-height: 515px;
  }

  .handoff-feed {
    padding-inline: 13px;
  }

  .crm-panel {
    padding: 22px 16px;
  }

  .crm-header {
    align-items: flex-start;
    flex-direction: column;
    gap: 12px;
  }

  .crm-lead-card {
    grid-template-columns: 38px 1fr;
  }

  .crm-stage {
    width: fit-content;
    margin-left: 50px;
    grid-column: 1 / -1;
  }

  .crm-field {
    grid-template-columns: 38px minmax(0, 1fr) 21px;
    gap: 9px;
  }

  .crm-field-icon {
    width: 38px;
    height: 38px;
  }

  .pipeline-scroll {
    margin-top: 44px;
  }

  .pipeline-legend {
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
  }

  .steps {
    margin-top: 48px;
    gap: 18px;
  }

  .step {
    padding: 28px 24px;
  }

  .hands-off-visual {
    padding: 0 12px 36px 0;
  }

  .agent-photo {
    height: 400px;
    border-radius: 6px 38px 6px 6px;
  }

  .handoff-note {
    right: 0;
    min-width: 240px;
  }

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

  .control-panel {
    padding: 20px 16px;
  }

  .control-row {
    grid-template-columns: 38px 1fr auto;
    gap: 10px;
  }

  .control-row-icon {
    width: 38px;
    height: 38px;
  }

  .control-row span:not(.toggle) {
    line-height: 1.4;
  }

  .contact-section {
    padding-bottom: 72px;
  }

  .contact-card {
    padding: 44px 26px;
    border-radius: var(--radius-md);
  }

  .contact-action,
  .contact-action .button {
    width: 100%;
  }

  .contact-action {
    align-items: center;
  }

  .footer-main {
    padding-top: 60px;
  }

  .footer-links {
    grid-template-columns: repeat(2, 1fr);
    row-gap: 42px;
  }

  .footer-bottom {
    align-items: flex-start;
    padding: 24px 0;
    flex-direction: column;
    justify-content: center;
    gap: 6px;
  }
}

.js .reveal-on-scroll {
  --reveal-y: 40px;
  --reveal-scale: 0.98;
  opacity: 0;
  transform: translate3d(0, calc(var(--reveal-y) + var(--interaction-y, 0px)), 0)
    scale(var(--reveal-scale));
  transition: opacity 800ms cubic-bezier(0.16, 1, 0.3, 1),
    transform 800ms cubic-bezier(0.16, 1, 0.3, 1);
  transition-delay: var(--reveal-delay, 0ms);
  will-change: opacity, transform;
}

.js .reveal-on-scroll.is-revealed {
  --reveal-y: 0px;
  --reveal-scale: 1;
  opacity: 1;
}

.js .steps .step.reveal-on-scroll {
  transform: translate3d(
      var(--step-anchor-x),
      calc(var(--step-y) + var(--reveal-y)),
      0
    )
    rotate(var(--step-rotate)) scale(var(--reveal-scale));
}

.js .steps .step.reveal-on-scroll.is-reveal-complete {
  transition: left 760ms cubic-bezier(0.175, 0.885, 0.32, 1.275),
    transform 760ms cubic-bezier(0.175, 0.885, 0.32, 1.275),
    border-color 240ms ease, box-shadow 240ms ease;
}

.js .reveal-on-scroll.is-reveal-complete {
  transition-delay: 0ms;
  will-change: auto;
}

.js .feature-card.reveal-on-scroll.is-reveal-complete {
  transition: opacity 180ms ease, transform 180ms ease, box-shadow 180ms ease,
    background-color 180ms ease;
  will-change: auto;
}

.button.magnetic-cta,
.button.magnetic-cta:hover,
.button.magnetic-cta:active {
  --magnetic-x: 0px;
  --magnetic-y: 0px;
  transform: translate3d(var(--magnetic-x), var(--magnetic-y), 0);
  transition: background-color 160ms ease, border-color 160ms ease,
    box-shadow 160ms ease, transform 90ms ease-out;
  will-change: transform;
}

.button.magnetic-cta.is-returning {
  transition: background-color 160ms ease, border-color 160ms ease,
    box-shadow 160ms ease, transform 500ms cubic-bezier(0.2, 1.55, 0.45, 1);
}

@media (hover: hover) and (pointer: fine) {
  .pipeline-node:hover::before {
    opacity: 1;
  }

  .pipeline-canvas.has-active-node .pipeline-node:not(.is-active-node) {
    opacity: 0.5;
  }

  .pipeline-canvas.has-active-node .pipeline-node.is-active-node {
    border-color: rgba(36, 178, 171, 0.7);
    box-shadow: 0 22px 50px rgba(13, 27, 42, 0.14), 0 0 0 1px rgba(36, 178, 171, 0.12);
    transform: translateY(-4px);
  }
}

.button svg,
.text-link svg,
.menu-toggle svg,
.hero-assurances svg,
.integration-logo svg,
.workflow-strip li svg,
.icon-box svg,
.roi-assumption svg,
.scenario-tab svg,
.scenario-avatar svg,
.scenario-outcome svg,
.step-visual svg,
.handoff-icon svg,
.control-row-icon svg,
.handoff-rule > svg,
.crm-field-icon svg,
.crm-check,
.crm-ready > svg,
.pipeline-node-icon svg {
  stroke-width: 1.5;
}

.icon-box,
.step-visual,
.handoff-icon,
.control-row-icon,
.pipeline-node-icon {
  color: var(--catalyst-teal);
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }

  .phone-typing i,
  .handoff-input i,
  .pipeline-packet,
  .scenario-message,
  .contact-action .button {
    animation: none !important;
  }

  .steps .step {
    --step-y: 0px;
    --step-rotate: 0deg;
    transition: none !important;
  }

  .steps .step:nth-child(1) {
    --step-left: 16.666%;
  }

  .steps .step:nth-child(2) {
    --step-left: 50%;
  }

  .steps .step:nth-child(3) {
    --step-left: 83.333%;
  }

  .js .hero h1.is-split .word {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }

  .js .reveal-on-scroll {
    opacity: 1 !important;
    transform: none !important;
  }

  .button.magnetic-cta,
  .pipeline-node {
    transform: none !important;
  }

  .pipeline-node::before {
    display: none;
  }

  .pipeline-canvas.has-active-node .pipeline-node {
    opacity: 1 !important;
  }

  .integration-logos {
    animation: none !important;
    transform: none !important;
    width: 100%;
  }

  .integration-group[aria-hidden="true"] {
    display: none;
  }

  .integration-marquee {
    overflow: visible;
    -webkit-mask-image: none;
    mask-image: none;
  }

  .integration-group:not([aria-hidden="true"]) {
    display: grid;
    width: 100%;
    padding-right: 0;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
  }
}

@media (max-width: 820px) and (prefers-reduced-motion: reduce) {
  .integration-group:not([aria-hidden="true"]) {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px 18px;
  }

  .integration-logo {
    width: auto;
  }
}
