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

:root {
  --ink: #050505;
  --guarantee-bridge: clamp(104px, 13vw, 164px); /* ~½ card height: overlap FAQ + Pricing equally */
  --muted: #636363;
  --paper: #ffffff;
  --soft: #f4f4f2;
  --soft-pink: #fbf3f9;
  --teal: #003c3c;
  --teal-dark: #003333;
  --footer-teal: #00282B;
  --blue: #1299f6;
  --lime: #dfff19;
  --line: rgba(0, 0, 0, 0.08);
  --radius-lg: 30px;
  --radius-md: 22px;
  --radius-sm: 14px;
  --font: "Inter Tight", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --container: 1350px;
  --gutter: clamp(20px, 5vw, 92px);
  /* Sticky `.site-header`: ~94px inner + chrome; anchors + sticky side columns align to this */
  --header-offset: 104px;
  /* Body copy inside cards / pills (not h1–h3 titles) */
  --text-card: clamp(14px, 1.05vw, 18px);
  --text-card-sm: clamp(13px, 0.95vw, 16px);
  /* Hero side fans: paler than video block; lower alpha = softer */
  --hero-blob-inner: rgba(236, 218, 232, 0.38);
  --hero-blob-mid: rgba(236, 218, 232, 0.2);
  --hero-blob-outer: rgba(236, 218, 232, 0.08);
  /* Subtle motion + elevation (see “Micro-interactions” block) */
  --ease-interaction: cubic-bezier(0.22, 1, 0.36, 1);
  --elev-1: 0 10px 28px rgba(5, 5, 5, 0.06);
  --elev-2: 0 18px 44px rgba(5, 5, 5, 0.08);
}

html {
  scroll-behavior: smooth;
  min-width: 320px;
  scroll-padding-top: var(--header-offset, 88px);
  overflow-x: hidden;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.15;
  -webkit-font-smoothing: antialiased;
  text-rendering: geometricPrecision;
}

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

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

button {
  font: inherit;
}

h1, h2, h3, p, ul, ol {
  margin: 0;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: 600;
  letter-spacing: -0.055em;
}

h1 {
  font-size: clamp(44px, 9vw, 80px);
  line-height: 0.96;
}

h2 {
  font-size: clamp(32px, 5vw, 50px);
  line-height: 1.02;
}

h3 {
  font-size: clamp(22px, 3vw, 36px);
  line-height: 1;
}

p {
  line-height: 1.18;
}

ul, ol {
  list-style: none;
  padding: 0;
}

:focus-visible {
  outline: 3px solid var(--blue);
  outline-offset: 4px;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
}

.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.section {
  padding-block: clamp(82px, 10vw, 170px);
}

/* Both use --soft; default section padding was doubling the band between CTA and feature cards */
.cta-mini.section {
  padding-bottom: clamp(20px, 2.5vw, 36px);
}

.features.section {
  padding-top: clamp(20px, 2.5vw, 36px);
}

.narrow {
  max-width: 760px;
  text-align: center;
}

.narrow-wide {
  max-width: 1160px;
}

.center {
  text-align: center;
}

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

.announcement {
  background: #000;
  color: #fff;
  font-size: clamp(12px, 1.6vw, 16px);
  padding: 12px 16px;
}

.announcement__inner {
  max-width: var(--container);
  margin-inline: auto;
  display: flex;
  justify-content: center;
  gap: 24px;
  white-space: nowrap;
  overflow: hidden;
}

.announcement span:last-child {
  color: #999999;
}

.site-header {
  position: sticky;
  top: 0;
  width: 100%;
  background: #fff;
  border-bottom: 1px solid var(--line);
  z-index: 200;
}

.header-inner {
  max-width: var(--container);
  margin-inline: auto;
  min-height: 94px;
  padding-inline: var(--gutter);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.logo-link {
  display: inline-flex;
  transition: opacity 0.2s ease;
}

.logo-link:hover,
.logo-link:focus-visible {
  opacity: 0.88;
}

.logo-link:focus-visible {
  outline: none;
}

.logo-link:focus-visible img {
  outline: 3px solid var(--blue);
  outline-offset: 6px;
  border-radius: 4px;
}

.logo-link img {
  width: 93px;
  height: auto;
}

.site-nav {
  display: none;
  align-items: center;
  gap: clamp(32px, 5vw, 62px);
  margin-left: auto;
  font-weight: 700;
  font-size: 15px;
}

.site-nav a {
  transition: color 0.2s ease;
}

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

.header-cta {
  display: none;
}

/* Slightly slimmer than default .btn, not as tight as min-height: 50 */
.header-cta.btn {
  min-height: 0;
  padding: 9px 20px;
  font-size: 15px;
}

.menu-button {
  display: inline-grid;
  gap: 4px;
  border: 0;
  background: transparent;
  padding: 8px;
  cursor: pointer;
}

.menu-button span {
  display: block;
  width: 18px;
  height: 2px;
  background: var(--ink);
  transition: transform 0.2s ease, opacity 0.2s ease, background 0.2s ease;
}

@media (hover: hover) {
  .menu-button:hover span {
    background: var(--blue);
  }
}

.menu-button[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.menu-button[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.menu-button[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 24px;
  border-radius: 8px;
  border: 1.5px solid transparent;
  font-weight: 700;
  font-size: 16px;
  line-height: 1;
  transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
  cursor: pointer;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn--primary {
  background: var(--blue);
  color: #fff;
}

.btn--primary:hover {
  box-shadow: 0 10px 26px rgba(18, 153, 246, 0.35);
}

.btn--outline:hover {
  box-shadow: var(--elev-1);
}

.btn--outline {
  border-color: var(--ink);
  color: var(--ink);
  background: #fff;
}

.btn--dark {
  background: var(--teal);
  color: #fff;
}

.btn--dark:hover {
  background: var(--teal-dark);
  color: #fff;
  box-shadow: 0 10px 26px rgba(0, 50, 50, 0.35);
}

.btn--ghost {
  background: transparent;
  color: #fff;
  border-color: #fff;
}

.btn--wide {
  width: 100%;
}

.hero {
  padding: clamp(48px, 6vw, 100px) 0 clamp(54px, 8vw, 105px);
  text-align: center;
  overflow: visible;
}

.hero__inner {
  max-width: min(1280px, 100%);
}

.hero p {
  max-width: 520px;
  margin: 26px auto 0;
  font-size: clamp(18px, 2.2vw, 22px);
}

.hero__actions {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 32px;
}

/* Full-width fan row; decos can breathe past the main copy column */
.hero__media-bleed {
  width: 100%;
  max-width: none;
  margin-top: clamp(56px, 9vw, 90px);
}

.hero__media {
  width: 100%;
  max-width: none;
  height: clamp(220px, 38vw, 430px);
  position: relative;
  isolation: isolate;
  overflow: visible;
  background: transparent;
  margin-top: 0;
  padding: 0;
}

.hero__media-layout {
  display: flex;
  width: 100%;
  height: 100%;
  align-items: center;
  justify-content: center;
  column-gap: 0;
  row-gap: 0;
  min-width: 0;
}

.hero__media-fan {
  display: flex;
  flex: 0 0 auto;
  align-items: center;
  min-width: 0;
  min-height: 0;
  height: 100%;
  gap: 0;
  pointer-events: none;
}

.hero__media-fan--left {
  flex-direction: row;
  justify-content: flex-end;
}

.hero__media-fan--right {
  flex-direction: row;
  justify-content: flex-start;
}

.hero__media-surface {
  position: relative;
  z-index: 5;
  flex: 0 0 auto;
  width: min(70%, 760px);
  max-width: 100%;
  height: 100%;
  border-radius: var(--radius-lg);
  background: #fbf5fb;
  opacity: 1;
  display: grid;
  place-items: center;
  margin: 0;
  /* Solid panel always above side decos (no see-through over strip overlap) */
  isolation: isolate;
  transition: box-shadow 0.35s var(--ease-interaction);
}

@media (hover: hover) {
  .hero__media-surface:hover {
    box-shadow: 0 20px 50px rgba(18, 20, 40, 0.1);
  }
}

/* Staggered; slight overlap between strips + optional tuck under video edge */
.hero__media-blob {
  position: relative;
  flex-shrink: 0;
  border-radius: var(--radius-lg);
  margin: 0;
  opacity: 1;
}

/* Left fan: l3 → l2 → l1 (l1 by video); higher z = on top when overlapping */
.hero__media-blob--l3 {
  z-index: 1;
}

.hero__media-blob--l2 {
  z-index: 2;
  margin-left: clamp(-20px, -1.35vw, -10px);
}

.hero__media-blob--l1 {
  z-index: 3;
  margin-left: clamp(-20px, -1.35vw, -10px);
  /* Pull into the video so no white seam (under .hero__media-surface, z-index on top) */
  margin-right: clamp(-22px, -1.6vw, -12px);
}

/* Right fan: r1 → r2 → r3 (r1 by video); inner on top */
.hero__media-blob--r1 {
  z-index: 3;
  margin-left: clamp(-22px, -1.6vw, -12px);
}

.hero__media-blob--r2 {
  z-index: 2;
  margin-left: clamp(-20px, -1.35vw, -10px);
}

.hero__media-blob--r3 {
  z-index: 1;
  margin-left: clamp(-20px, -1.35vw, -10px);
}

/* Inner: widest / strongest, still subtler than the video panel */
.hero__media-blob--l1,
.hero__media-blob--r1 {
  width: clamp(54px, 4.5vw, 82px);
  height: 96%;
  max-height: 100%;
  background: var(--hero-blob-inner);
}

.hero__media-blob--l2,
.hero__media-blob--r2 {
  width: clamp(48px, 3.9vw, 72px);
  height: 88%;
  max-height: 100%;
  background: var(--hero-blob-mid);
}

.hero__media-blob--l3,
.hero__media-blob--r3 {
  width: clamp(44px, 3.4vw, 64px);
  height: 80%;
  max-height: 100%;
  background: var(--hero-blob-outer);
}

@media (max-width: 600px) {
  .hero__media-blob--l1,
  .hero__media-blob--r1 {
    width: clamp(28px, 4.8vw, 48px);
    height: 92%;
  }

  .hero__media-blob--l2,
  .hero__media-blob--r2 {
    width: clamp(26px, 4.3vw, 40px);
    height: 85%;
  }

  .hero__media-blob--l3,
  .hero__media-blob--r3 {
    width: clamp(24px, 3.8vw, 36px);
    height: 78%;
  }

  .hero__media-blob--l2,
  .hero__media-blob--l1,
  .hero__media-blob--r2,
  .hero__media-blob--r3 {
    margin-left: clamp(-12px, -1.4vw, -7px);
  }

  .hero__media-blob--l1 {
    margin-right: clamp(-16px, -1.4vw, -9px);
  }

  .hero__media-blob--r1 {
    margin-left: clamp(-16px, -1.4vw, -9px);
  }

  /* Full-bleed video / placeholder: use full viewport width, not .container padding */
  .hero__media-bleed .hero__media {
    max-width: none;
    width: 100%;
    margin-inline: 0;
    padding-inline: 0;
  }

  .hero__media-fan--left,
  .hero__media-fan--right {
    display: none;
  }

  .hero__media-layout {
    justify-content: center;
  }

  .hero__media-surface {
    width: 100%;
    max-width: 100%;
    flex: 1 1 auto;
    border-radius: 0;
  }
}

.play-button {
  z-index: 1;
  width: 86px;
  height: 86px;
  border-radius: 50%;
  border: 0;
  background: #fff;
  position: relative;
  cursor: pointer;
  transition: transform 0.25s var(--ease-interaction), box-shadow 0.25s ease;
  box-shadow: 0 8px 24px rgba(5, 5, 5, 0.1);
}

@media (hover: hover) {
  .play-button:hover {
    transform: scale(1.06);
    box-shadow: 0 12px 32px rgba(18, 153, 246, 0.22);
  }

  .play-button:active {
    transform: scale(0.98);
  }
}

.play-button::before {
  content: "";
  position: absolute;
  left: 35px;
  top: 28px;
  border-left: 25px solid var(--blue);
  border-top: 16px solid transparent;
  border-bottom: 16px solid transparent;
}

.trusted {
  padding: 28px 0 116px;
}

.trusted__inner {
  display: flex;
  align-items: center;
  gap: clamp(32px, 4.2vw, 60px);
}

.trusted p {
  flex: 0 0 auto;
}

.trusted__ticker {
  flex: 1 1 45%;
  min-width: 0;
  overflow: hidden;
}

.trusted__ticker-track {
  display: flex;
  width: max-content;
  margin-left: auto;
}

.trusted__logos {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: flex-end;
  gap: clamp(10px, 2.1vw, 32px);
  list-style: none;
  margin: 0;
  padding: 2px 4px;
  overflow-x: visible;
  overflow-y: visible;
}

.trusted__logos--marquee {
  flex: 0 0 auto;
  overflow: visible;
  padding-inline: 6px;
}

.trusted__logos li {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  box-sizing: border-box;
}

.trusted__logos .trusted__logo {
  display: block;
  height: 28px;
  min-height: 28px;
  max-height: 28px;
  width: auto;
  max-width: none;
  flex-shrink: 0;
  opacity: 0.92;
  object-fit: contain;
  object-position: center;
  transition: opacity 0.25s ease, filter 0.25s ease;
}

@media (hover: hover) {
  .trusted__logos li:hover .trusted__logo {
    opacity: 1;
    filter: contrast(1.06) saturate(1.06);
  }
}

@media (min-width: 1100px) {
  .trusted__ticker-track {
    margin-left: auto;
    animation: none !important;
    transform: none !important;
    width: 100%;
    justify-content: flex-end;
  }

  .trusted__logos--marquee li:nth-child(n + 7) {
    display: none;
  }

  .trusted__logos--marquee {
    overflow-x: visible;
  }

  .trusted__logos .trusted__logo {
    height: 33px;
    min-height: 33px;
    max-height: 33px;
  }
}

@keyframes trusted-ticker {
  from {
    transform: translate3d(0, 0, 0);
  }

  to {
    transform: translate3d(-50%, 0, 0);
  }
}

.split__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: clamp(42px, 9vw, 150px);
}

.split__copy p {
  margin-top: 30px;
  max-width: 450px;
  font-size: var(--text-card);
  line-height: 1.35;
  color: var(--ink);
}

.pill-list {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.pill-list li {
  width: fit-content;
  max-width: 100%;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 18px;
  border-radius: 999px;
  background: var(--soft-pink);
  font-size: var(--text-card);
  line-height: 1.3;
  transition: transform 0.22s var(--ease-interaction), box-shadow 0.22s ease;
}

@media (hover: hover) {
  .pill-list li:hover {
    transform: translateY(-2px);
    box-shadow: var(--elev-1);
  }
}

.pill-list--compact li {
  font-size: var(--text-card-sm);
  padding: 10px 17px;
  margin-inline: auto;
}

.pill-list--two {
  flex-direction: row;
  flex-wrap: wrap;
}

.pill-list--two li {
  font-size: var(--text-card-sm);
  line-height: 1.28;
}

.pill-x,
.pill-check {
  flex: 0 0 auto;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  display: inline-grid;
  place-items: center;
  color: #fff;
  font-size: 12px;
  font-weight: 800;
}

.pill-x {
  background: var(--blue);
}

.pill-x::before {
  content: "×";
}

.pill-check {
  background: var(--teal);
}

.pill-check::before {
  content: "✓";
}

.demand-card {
  background: #000;
  color: #fff;
  border-radius: 28px;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  transition: transform 0.35s var(--ease-interaction), box-shadow 0.35s ease;
}

@media (hover: hover) {
  .demand-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 28px 64px rgba(0, 0, 0, 0.35);
  }
}

.demand-card__copy {
  background: var(--teal);
  padding: clamp(38px, 5vw, 80px);
}

.demand-card__copy .blue-text {
  margin-top: 28px;
}

.line-list {
  display: grid;
  gap: 34px;
  margin-top: 52px;
}

.line-list li {
  padding-left: 30px;
  border-left: 3px solid var(--blue);
  line-height: 1.25;
  font-size: var(--text-card);
  transition: border-left-color 0.2s ease, padding-left 0.2s var(--ease-interaction);
}

@media (hover: hover) {
  .line-list li:hover {
    border-left-color: rgba(18, 153, 246, 0.45);
    padding-left: 32px;
  }
}

.demand-card__stats {
  position: relative;
  min-height: 520px;
  background: #3f80c1;
  overflow: hidden;
  padding: clamp(38px, 5vw, 80px);
}

.demand-card__stats img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.85;
}

.stat-stack {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 24px;
  max-width: 520px;
}

.stat-stack strong {
  display: block;
  font-size: clamp(40px, 4.6vw, 74px);
  line-height: 0.95;
}

.stat-stack span {
  display: block;
  font-weight: 700;
  line-height: 1;
}

.stat-stack b {
  font-size: 40px;
  font-weight: 400;
}

.stat-stack .lime {
  color: var(--lime);
}

.stat-stack p {
  max-width: 440px;
  font-weight: 600;
  font-size: var(--text-card-sm);
  line-height: 1.3;
}

.demand-card__footer {
  grid-column: 1 / -1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  background: #000;
  padding: 34px clamp(20px, 4vw, 64px);
}

.demand-card__footer p {
  font-size: var(--text-card);
  line-height: 1.3;
  min-width: 0;
}

.demand-card__footer .btn {
  flex-shrink: 0;
  padding-left: 12px;
  padding-right: 12px;
  white-space: nowrap;
}

.system {
  position: relative;
  padding-block: 90px 0;
  overflow: hidden;
  background: #fff;
  isolation: isolate;
}

/* Brand mark — assets/logo/large-icon-background.png (transparent PNG) */
.system::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background-color: transparent;
  background-image: url("../assets/logo/large-icon-background.png");
  background-repeat: no-repeat;
  background-position: 50% 42%;
  background-size: min(1100px, 92vw) auto;
  pointer-events: none;
}

.system__inner {
  min-height: 720px;
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1.2fr 1fr;
  align-items: center;
  gap: 40px;
}

/* Widen the Replace Multiple Roles strip on large viewports (rest of site stays 1350px) */
@media (min-width: 1100px) {
  .system.section > .container.system__inner {
    max-width: min(1620px, 94vw);
  }
}

@media (min-width: 1400px) {
  .system.section > .container.system__inner {
    max-width: min(1740px, 92vw);
  }

  .system__inner {
    gap: clamp(44px, 3.8vw, 60px);
  }

  .system::before {
    background-size: min(1280px, 90vw) auto;
  }
}

.glass-panel {
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.72);
  backdrop-filter: blur(18px);
  padding: 52px 38px;
  min-height: 320px;
  display: grid;
  align-content: center;
  text-align: center;
  transition: background 0.3s ease, box-shadow 0.3s ease;
}

@media (hover: hover) {
  .glass-panel:hover {
    background: rgba(255, 255, 255, 0.88);
    box-shadow: var(--elev-1);
  }
}

.glass-panel h3 {
  font-size: 18px;
  letter-spacing: -0.03em;
  margin-bottom: 40px;
}

.system__heading {
  text-align: center;
  align-self: center;
}

.system__heading p {
  margin-top: 32px;
}

.cta-mini {
  background: var(--soft);
}

.cta-mini p,
.website p {
  margin-top: 24px;
}

.section-head p {
  margin-top: 24px;
  font-size: var(--text-card);
  line-height: 1.35;
}

.cta-mini .btn,
.website .btn {
  margin-top: 34px;
}

.features {
  background: #f7f7f7;
}

.feature-grid {
  display: grid;
  /* ~30% | 40% | 30% — middle column wider, right column matches left */
  grid-template-columns: 3fr 4fr 3fr;
  grid-template-areas:
    "social bubble notify"
    "social follow route";
  gap: 28px;
  align-items: stretch;
}

.feature-grid > :nth-child(1) {
  grid-area: social;
}

.feature-grid > :nth-child(2) {
  grid-area: bubble;
}

.feature-grid > :nth-child(3) {
  grid-area: notify;
}

.feature-grid > :nth-child(4) {
  grid-area: follow;
}

.feature-grid > :nth-child(5) {
  grid-area: route;
}

.feature-card {
  min-height: 294px;
  border-radius: var(--radius-lg);
  background-color: #ffffff;
  padding: clamp(32px, 4vw, 58px);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
  position: relative;
  isolation: isolate;
  transition: transform 0.32s var(--ease-interaction), box-shadow 0.32s ease;
}

@media (hover: hover) {
  .feature-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--elev-2);
  }
}

/* Illustrated cards: tint + art as CSS background (not <img>) */
.feature-card--art {
  background-color: #f8f9fd;
}

.feature-card--art-social {
  background-image: url(../assets/cita-mini/24-7-enquiry-capture.png);
  background-repeat: no-repeat;
  background-position: 44% 7%;
  background-size: min(92%, 420px) auto;
}

.feature-card--art-bubble {
  background-image: url(../assets/cita-mini/instant-personalised-response.png);
  background-repeat: no-repeat;
  background-position: right -4% top -8%;
  background-size: min(48%, 260px) auto;
}

.feature-card--art-route {
  background-image: url(../assets/cita-mini/smart-routing.png);
  background-repeat: no-repeat;
  background-position: right -2% top -6%;
  background-size: min(50%, 280px) auto;
}

.feature-card--tall {
  min-height: 620px;
}

.feature-card h3 {
  position: relative;
  z-index: 1;
  font-size: clamp(16px, 1.35vw, 22px);
  line-height: 1.2;
}

.feature-card p {
  position: relative;
  z-index: 1;
  margin-top: 28px;
  max-width: 420px;
  font-size: var(--text-card-sm);
  line-height: 1.35;
}

.section-note {
  text-align: center;
  margin-top: 74px;
}

.journey__inner {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: clamp(42px, 8vw, 140px);
  align-items: start;
}

.journey__intro {
  position: sticky;
  top: calc(env(safe-area-inset-top, 0px) + var(--header-offset));
}

.journey__intro p {
  margin-top: 28px;
}

.journey__intro .btn {
  margin-top: 30px;
}

.step-list {
  display: grid;
  gap: 24px;
}

.step {
  border-radius: 16px;
  background: #f1f1ef;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  overflow: hidden;
  min-height: 0;
  transition: background 0.25s ease, box-shadow 0.25s ease;
}

@media (hover: hover) {
  .step:not(.active):hover {
    background: #e9e9e7;
    box-shadow: var(--elev-1);
  }
}

.step__toggle {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 34px 42px;
  margin: 0;
  border: none;
  background: transparent;
  cursor: pointer;
  font: inherit;
  color: inherit;
  text-align: left;
  border-radius: 0;
  -webkit-tap-highlight-color: transparent;
}

.step__toggle:focus {
  outline: none;
}

.step__toggle:focus-visible {
  outline: 2px solid var(--blue);
  outline-offset: 2px;
  border-radius: 4px;
}

.step__title {
  font-size: clamp(25px, 3vw, 38px);
  font-weight: 600;
  letter-spacing: -0.04em;
  flex: 1;
  min-width: 0;
}

.step__meta {
  display: inline-flex;
  align-items: center;
  justify-content: flex-end;
  gap: 4px;
  font-size: clamp(22px, 3vw, 36px);
  color: #777;
  white-space: nowrap;
  flex-shrink: 0;
}

.step__icon {
  display: inline-block;
  min-width: 0.6em;
  text-align: center;
  font-weight: 500;
  transition: color 0.15s ease;
}

.step .step__icon--open {
  display: none;
}

.step .step__icon--closed {
  display: inline;
}

.step.active .step__icon--open {
  display: inline;
}

.step.active .step__icon--closed {
  display: none;
}

.step__toggle:hover .step__icon,
.step__toggle:focus-visible .step__icon {
  color: var(--blue);
}

.step.active .step__meta {
  color: #fff;
}

.step.active .step__toggle:hover .step__icon,
.step.active .step__toggle:focus-visible .step__icon {
  color: var(--blue);
}

.step__panel {
  display: none;
  padding: 0 42px 34px;
  margin: 0;
}

.step__panel p {
  margin: 0;
  max-width: 420px;
  font-size: var(--text-card);
  line-height: 1.35;
  padding-top: 12px;
}

.step.active {
  background: var(--teal);
  color: #fff;
}

.step.active .step__panel {
  display: block;
}

.change-banner {
  min-height: 148px;
  border-radius: 22px;
  background: #000;
  color: #fff;
  padding: 38px 52px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  transition: transform 0.28s var(--ease-interaction), box-shadow 0.28s ease;
}

@media (hover: hover) {
  .change-banner:hover {
    transform: translateY(-3px);
    box-shadow: 0 20px 46px rgba(0, 0, 0, 0.3);
  }
}

.change-banner img {
  width: clamp(64px, 8vw, 105px);
}

.change-grid {
  margin-top: 42px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 36px;
}

.change-card {
  border-radius: var(--radius-lg);
  padding: clamp(42px, 5vw, 68px);
  min-height: 270px;
  transition: transform 0.28s var(--ease-interaction), box-shadow 0.28s ease;
}

@media (hover: hover) {
  .change-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--elev-1);
  }
}

.change-card.before {
  background: var(--soft-pink);
}

.change-card.after {
  background: #f2f2f0;
}

.change-card h3 {
  margin-bottom: 48px;
}

.change-card .pill-list li {
  background: #fff;
}

.website {
  background: var(--soft);
  text-align: center;
}

.section-head {
  max-width: 860px;
  margin: 0 auto;
  text-align: center;
}

.built {
  overflow-x: visible;
  overflow-y: hidden;
}

.build-flow {
  max-width: 1120px;
  margin: 105px auto 0;
  position: relative;
  display: grid;
  gap: 70px;
  isolation: isolate;
  overflow: visible;
}

/* Center strip: wide enough for a bold S-curve; still between copy columns (ref: path in gutter) */
.build-flow::before {
  content: "";
  position: absolute;
  top: -24px;
  bottom: -32px;
  left: 50%;
  width: clamp(300px, 44vw, 520px);
  transform: translateX(-50%);
  z-index: 0;
  pointer-events: none;
  background: url("../assets/logo/dotted-line-background.png") no-repeat center top;
  background-size: 105% auto;
}

.build-item {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 150px;
  overflow: visible;
}

.build-item p {
  position: relative;
  z-index: 2;
  font-size: clamp(17px, 1.55vw, 26px);
  line-height: 1.28;
  max-width: 430px;
}

.build-item--right p {
  order: -1;
}

/* Built visuals: no faux card — PNGs include their own art; let icons/glass hang past the "block" */
.visual-card {
  position: relative;
  z-index: 1;
  margin: 0;
  width: 100%;
  max-width: min(100%, 580px);
  background: none;
  border-radius: 0;
  overflow: visible;
  box-shadow: none;
}

/* Bleed into the column gap so left-column art can extend right, right-column art left */
.build-item--left .visual-card {
  margin-right: clamp(-8px, -2.5vw, -32px);
  justify-self: end;
}

.build-item--right .visual-card {
  margin-left: clamp(-8px, -2.5vw, -32px);
  justify-self: start;
}

.visual-card__img {
  display: block;
  width: 100%;
  height: auto;
  max-width: 100%;
  will-change: transform, opacity;
}

.metrics {
  overflow-x: hidden;
}

/* Full-bleed horizontal strip; heading stays in .container */
.metric-strip-outer {
  width: 100%;
  max-width: none;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  margin-top: 95px;
  position: relative;
  box-sizing: border-box;
}

.metric-strip {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(300px, 420px);
  gap: 34px;
  overflow-x: auto;
  padding: 0 var(--gutter) 10px;
  margin: 0;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.metric-strip::-webkit-scrollbar {
  display: none;
  height: 0;
}

.metric-card {
  scroll-snap-align: center;
  min-height: 440px;
  border-radius: 16px;
  background: #f2f2f0;
  padding: 56px 48px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  transition: transform 0.25s var(--ease-interaction), box-shadow 0.25s ease, background 0.25s ease;
}

@media (hover: hover) {
  .metric-card:hover {
    transform: translateY(-3px);
    background: #ebebea;
    box-shadow: var(--elev-1);
  }
}

.metric-card p {
  margin-top: 30px;
  font-size: var(--text-card);
  line-height: 1.3;
}

.metric-icon {
  margin-bottom: auto;
  width: 100px;
  height: 100px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.metric-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

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

.section-head--dark p {
  color: #fff;
}

.engine-pills {
  max-width: 1060px;
  margin: 66px auto 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 42px 34px;
}

.engine-pills li {
  display: flex;
  align-items: center;
  gap: 24px;
  background: var(--soft-pink);
  color: var(--teal);
  border-radius: 24px;
  padding: 22px 28px;
  font-size: clamp(14px, 1.05vw, 20px);
  line-height: 1.28;
  transition: transform 0.22s var(--ease-interaction), box-shadow 0.22s ease;
}

@media (hover: hover) {
  .engine-pills li:hover {
    transform: translateY(-2px);
    box-shadow: var(--elev-1);
  }
}

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

.proof__inner {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: clamp(32px, 4vw, 48px);
  max-width: var(--container);
}

.proof h2 {
  line-height: 0.98;
  max-width: 20ch;
}

.proof__head p {
  margin-top: clamp(20px, 2.5vw, 28px);
  max-width: 56ch;
  color: var(--ink);
  font-size: var(--text-card);
  font-weight: 400;
  line-height: 1.35;
}

.proof-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(12px, 1.5vw, 24px) clamp(14px, 1.5vw, 28px);
  list-style: none;
  margin: 0;
  padding: 0;
  width: 100%;
}

.proof-grid li {
  min-height: 0;
  border-radius: 16px;
  background: #f2f2f0;
  padding: clamp(18px, 1.8vw, 32px) clamp(16px, 1.6vw, 30px);
  font-size: clamp(13px, 1.05vw, 19px);
  font-weight: 400;
  letter-spacing: -0.02em;
  line-height: 1.25;
  align-content: start;
  transition: transform 0.22s var(--ease-interaction), background 0.22s ease, box-shadow 0.22s ease;
}

@media (hover: hover) {
  .proof-grid li:hover {
    transform: translateY(-2px);
    background: #e8e8e5;
    box-shadow: 0 6px 20px rgba(5, 5, 5, 0.05);
  }
}

.faq {
  background: var(--soft);
  position: relative;
  z-index: 1;
}

.faq.section {
  /* Overlap space for guarantee strap + modest gap under last FAQ */
  padding-bottom: calc(var(--guarantee-bridge) + clamp(62px, 6vw, 84px));
}

.faq-list {
  margin: 70px auto 0;
  max-width: 1340px;
  display: grid;
  gap: 22px;
}

/* One surface per row: subtle edge + clip so open/closed match the radius (no stray “white seams”). */
.faq details {
  background: var(--paper);
  border-radius: 16px;
  border: 1px solid var(--line);
  padding: 0;
  overflow: hidden;
  transition: box-shadow 0.22s ease;
}

@media (hover: hover) {
  .faq details:hover {
    box-shadow: var(--elev-1);
  }

  .faq summary:hover {
    background: rgba(18, 153, 246, 0.06);
  }
}

.faq summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 112px;
  padding: 0 36px;
  font-size: clamp(18px, 2vw, 30px);
  font-weight: 600;
  cursor: pointer;
  list-style: none;
  transition: background 0.22s ease, color 0.22s ease;
}

/* Open: separate question from answer so it isn’t one flat white block. */
.faq details[open] summary {
  min-height: 0;
  padding-block: 26px;
  border-bottom: 1px solid var(--line);
  background: rgba(0, 0, 0, 0.02);
}

@media (hover: hover) {
  .faq details[open] summary:hover {
    background: rgba(18, 153, 246, 0.06);
  }
}

.faq summary::-webkit-details-marker {
  display: none;
}

.faq summary::after {
  content: "+";
  font-size: 44px;
  font-weight: 300;
  line-height: 1;
  flex-shrink: 0;
  margin-left: 16px;
  color: rgba(5, 5, 5, 0.35);
}

.faq details[open] summary::after {
  content: "-";
  font-size: 38px;
}

.faq details p {
  padding: clamp(18px, 2.5vw, 26px) 36px clamp(26px, 3vw, 34px);
  margin: 0;
  color: var(--muted);
  font-size: var(--text-card);
  line-height: 1.45;
  background: var(--soft);
}

.guarantee.section {
  position: relative;
  z-index: 3;
  isolation: isolate;
  /* Let FAQ (--soft) and Pricing (#fff) show behind the overlap; only the card is opaque */
  background: transparent;
  padding-block: 0;
  padding-inline: 0;
  margin-top: calc(-1 * var(--guarantee-bridge));
  margin-bottom: calc(-1 * var(--guarantee-bridge));
  overflow: visible;
}

.guarantee .container {
  position: relative;
  z-index: 1;
  padding-block: 0;
}

.guarantee-card > div:first-of-type {
  min-width: 0;
  flex: 1 1 0;
}

.guarantee-card {
  position: relative;
  z-index: 1;
  background: #000;
  color: #fff;
  border-radius: clamp(24px, 3vw, 32px);
  padding: clamp(32px, 4vw, 56px) clamp(28px, 4vw, 48px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: clamp(24px, 4vw, 48px);
  transition: transform 0.3s var(--ease-interaction), box-shadow 0.3s ease;
}

@media (hover: hover) {
  .guarantee-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 24px 52px rgba(0, 0, 0, 0.4);
  }
}

.guarantee-card h2 {
  color: #fff;
}

.guarantee-card p {
  margin-top: 22px;
  font-size: var(--text-card);
  line-height: 1.32;
  color: #fff;
}

.guarantee-card .blue-text {
  color: var(--blue);
  font-size: clamp(15px, 1.15vw, 19px);
}

.guarantee-card__img {
  flex: 0 0 auto;
  width: clamp(72px, 12vw, 104px);
  height: auto;
  display: block;
  object-fit: contain;
}

.pricing {
  margin-top: 40px;
  background: #fff;
  position: relative;
  z-index: 0;
}

.pricing.section {
  /* Bottom half of bridge + room so headline/setup sit below the guarantee overlap */
  padding-top: calc(0.5 * var(--guarantee-bridge) + clamp(60px, 5.8vw, 104px));
}

.pricing-grid {
  max-width: 1000px;
  margin: 78px auto 0;
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 34px;
  align-items: stretch;
}

.pricing-grid > .price-card {
  min-height: 0;
  align-self: stretch;
}

.price-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 0;
  border-radius: 16px;
  background: #f2f2f0;
  padding: 56px 46px;
  transition: transform 0.3s var(--ease-interaction), box-shadow 0.3s ease, border-color 0.3s ease;
}

@media (hover: hover) {
  .price-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--elev-2);
  }

  .price-card--featured:hover {
    box-shadow: 0 22px 50px rgba(18, 153, 246, 0.18);
  }
}

.price-card > h3,
.price-card > p {
  flex-shrink: 0;
}

.price-card--featured {
  background: #fff;
  border: 3px solid var(--blue);
}

.badge {
  position: absolute;
  right: 46px;
  top: 50px;
  border-radius: 999px;
  background: var(--teal);
  color: #fff;
  font-weight: 700;
  padding: 14px 28px;
}

.price {
  margin-top: 38px;
  font-size: clamp(44px, 5vw, 58px);
  font-weight: 800;
  letter-spacing: -0.05em;
}

.price span {
  font-size: 30px;
  letter-spacing: -0.04em;
}

.price-card > p:not(.price) {
  margin-top: 34px;
  font-size: var(--text-card);
  line-height: 1.3;
  color: var(--ink);
}

.price-card__list {
  margin: 32px 0 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  font-size: clamp(13px, 0.95vw, 16px);
  line-height: 1.3;
  color: var(--ink);
  flex: 1 1 auto;
  min-height: 0;
}

.price-card__list li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
}

.price-card__list li::before {
  content: "✓";
  flex: 0 0 auto;
  margin-top: 0.2em;
  color: var(--blue);
  font-size: 0.95em;
  line-height: 1.2;
}

.price-card .btn {
  margin-top: 24px;
  flex-shrink: 0;
  align-self: stretch;
}

.pricing-note {
  text-align: center;
  margin: 70px auto 0;
  max-width: 560px;
}

.final-cta {
  min-height: 520px;
  background: var(--footer-teal);
  color: #fff;
  display: grid;
  align-items: center;
  text-align: center;
  border-radius: 28px 28px 0 0;
  overflow: hidden;
}

.final-cta__inner {
  max-width: min(1040px, 100%);
  margin-inline: auto;
  min-width: 0;
  width: 100%;
  padding-bottom: 8px;
}

.final-cta .blue-text {
  margin: 0;
  font-size: var(--text-card);
  line-height: 1.35;
}

.final-cta h2 {
  margin-top: 28px;
  font-size: clamp(40px, 4.5vw, 64px);
  font-weight: 600;
  line-height: 1.05;
  letter-spacing: -0.05em;
}

.final-cta__lede {
  margin: 28px auto 0;
  max-width: min(52ch, 100%);
  color: rgba(255, 255, 255, 0.65);
  font-size: clamp(16px, 1.45vw, 22px);
  line-height: 1.4;
  letter-spacing: -0.02em;
}

.cta-form {
  margin-top: 40px;
  display: grid;
  gap: 16px 20px;
  grid-template-columns: 1fr;
  max-width: min(640px, 100%);
  margin-left: auto;
  margin-right: auto;
}

@media (min-width: 540px) {
  .cta-form {
    grid-template-columns: 1fr 1fr;
  }
}

.form-success {
  margin-top: 32px;
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 14px;
  padding: 18px;
}

.form-success[hidden] {
  display: none !important;
}

.micro {
  margin-top: 32px;
  color: rgba(255, 255, 255, 0.42);
  font-style: italic;
  font-size: var(--text-card-sm);
}

.site-footer {
  background: var(--footer-teal);
  color: rgba(255, 255, 255, 0.55);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: clamp(20px, 2.5vw, 32px) 0 calc(24px + env(safe-area-inset-bottom, 0));
  font-size: clamp(11px, 1vw, 13px);
  line-height: 1.3;
}

.site-footer__inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 24px 32px;
  min-width: 0;
}

.site-footer a {
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  transition: color 0.2s ease;
}

.site-footer a:hover {
  color: #fff;
}

.site-footer a:focus-visible {
  outline-color: var(--blue);
}

.site-footer__logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  transition: opacity 0.2s ease;
}

.site-footer__logo:hover {
  opacity: 0.88;
}

.site-footer__logo img {
  height: 50px;
  width: auto;
  display: block;
}

.site-footer__nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 8px clamp(16px, 2.5vw, 28px);
  flex: 1 1 200px;
  min-width: 0;
}

.site-footer__end {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
  gap: 16px 20px;
  text-align: right;
  min-width: 0;
}

.site-footer__social {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
  gap: 4px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.site-footer__social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.06);
  transition: background 0.2s ease, transform 0.2s ease;
}

.site-footer__social-link:hover {
  background: rgba(255, 255, 255, 0.12);
  transform: translateY(-1px);
}

.site-footer__social-link img {
  display: block;
  width: 22px;
  height: 22px;
}

.site-footer__legal {
  margin: 0;
  font-size: inherit;
  color: rgba(255, 255, 255, 0.45);
  white-space: nowrap;
}

@media (max-width: 700px) {
  .site-footer {
    padding: 14px 0 calc(12px + env(safe-area-inset-bottom, 0));
  }

  .site-footer__inner {
    flex-direction: column;
    text-align: center;
    align-items: center;
    gap: 8px;
  }

  .site-footer__logo img {
    height: 48px;
  }

  .site-footer__nav {
    justify-content: center;
    flex: 0 0 auto;
    gap: 4px 14px;
  }

  .site-footer__end {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 6px;
  }

  .site-footer__social {
    justify-content: center;
    gap: 2px;
  }
}

/* Terms, privacy vs blog: shared base; legal pages use .page-legal for width */
.page-simple .page-hero {
  padding: clamp(44px, 8vw, 88px) 0 clamp(28px, 5vw, 56px);
  background: var(--soft);
  border-bottom: 1px solid var(--line);
}

.page-simple .page-hero .container {
  max-width: min(760px, var(--container));
}

.page-legal .page-hero .container,
.page-legal .document .container {
  max-width: min(980px, var(--container));
}

.page-legal .document-prose {
  font-size: clamp(15px, 1.12vw, 17px);
}

.page-legal .page-hero__title {
  font-size: clamp(32px, 4.2vw, 52px);
}

.page-blog .page-hero .container,
.page-blog.page-blog--post .document .container,
.page-blog:not(.page-blog--post) .blog-grid-wrap .container {
  max-width: min(980px, var(--container));
}

.page-hero__eyebrow {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  margin: 0 0 12px;
}

.page-hero__title {
  font-size: clamp(30px, 4.8vw, 48px);
  line-height: 1.04;
  letter-spacing: -0.05em;
}

.page-hero__lede {
  margin: 18px 0 0;
  max-width: 52ch;
  font-size: clamp(16px, 1.4vw, 19px);
  line-height: 1.35;
  color: var(--muted);
}

.page-hero__meta {
  margin: 14px 0 0;
  font-size: 14px;
  color: var(--muted);
}

.document {
  padding: clamp(48px, 7vw, 88px) 0 clamp(72px, 11vw, 120px);
}

main:has(> .final-cta) > .document {
  padding-bottom: clamp(40px, 6vw, 64px);
}

.document .container {
  max-width: 720px;
}

.document-prose {
  font-size: clamp(15px, 1.05vw, 17px);
  line-height: 1.55;
  color: var(--ink);
}

.document-prose > h2 {
  margin: 2.25rem 0 0.85rem;
  font-size: clamp(20px, 2.4vw, 26px);
  line-height: 1.15;
  letter-spacing: -0.04em;
}

.document-prose > h2:first-child {
  margin-top: 0;
}

.document-prose p {
  margin: 0.9rem 0 0;
}

.document-prose ul,
.document-prose ol {
  margin: 0.75rem 0 0;
  padding-left: 1.35rem;
}

.document-prose li {
  margin-top: 0.45rem;
}

.document-prose li::marker {
  color: var(--muted);
}

.document-prose a {
  color: var(--blue);
  font-weight: 600;
  text-underline-offset: 2px;
  transition: color 0.2s ease;
}

.document-prose a:hover {
  text-decoration: underline;
  color: #0d8bdc;
}

.document-prose strong {
  font-weight: 700;
}

.page-back {
  margin-top: clamp(2.5rem, 6vw, 3.5rem);
  padding-top: 1.75rem;
  border-top: 1px solid var(--line);
}

.page-back a {
  font-weight: 700;
  font-size: 15px;
  color: var(--blue);
  text-decoration: none;
  transition: color 0.2s ease;
}

.page-back a:hover {
  text-decoration: underline;
}

.breadcrumbs {
  margin: 0 0 clamp(16px, 2.5vw, 22px);
}

.breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 6px 0;
  margin: 0;
  padding: 0;
  list-style: none;
  font-size: 13px;
  line-height: 1.4;
  color: var(--muted);
}

.breadcrumbs li {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  max-width: 100%;
}

.breadcrumbs li:not(:first-child)::before {
  content: "/";
  font-weight: 400;
  opacity: 0.38;
  align-self: center;
}

.breadcrumbs a {
  color: var(--muted);
  font-weight: 600;
  text-decoration: none;
  transition: color 0.2s ease;
}

.breadcrumbs a:hover {
  color: var(--blue);
}

.breadcrumbs [aria-current="page"] {
  color: var(--ink);
  font-weight: 600;
  text-decoration: none;
  word-break: break-word;
}

.site-nav a[aria-current="page"] {
  color: var(--blue);
}

.share-tools {
  margin-top: clamp(22px, 3.2vw, 32px);
  padding-top: clamp(20px, 2.8vw, 26px);
  border-top: 1px solid var(--line);
}

.share-tools__label {
  margin: 0 0 12px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
}

.share-tools__list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.share-tools__chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
  min-height: 44px;
  min-width: 44px;
  padding: 0;
  margin: 0;
  border-radius: 10px;
  border: 1.5px solid var(--line);
  background: var(--paper);
  font-family: inherit;
  text-decoration: none;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
  transition: border-color 0.2s ease, background 0.2s ease, transform 0.15s ease;
}

.share-tools__chip--icon {
  padding: 9px;
}

.share-tools__chip-img {
  display: block;
  width: 22px;
  height: 22px;
  flex-shrink: 0;
  object-fit: contain;
  pointer-events: none;
  transition: transform 0.15s ease;
}

.share-tools__chip:hover {
  border-color: rgba(18, 153, 246, 0.45);
  background: var(--soft);
}

.share-tools__chip:hover .share-tools__chip-img {
  transform: scale(1.06);
}

.share-tools__chip:focus-visible {
  outline: none;
  box-shadow: 0 0 0 2px #fff, 0 0 0 4px var(--blue);
}

.share-tools__chip--copy {
  appearance: none;
}

.share-tools__feedback {
  margin: 12px 0 0;
  min-height: 1.25em;
  font-size: 13px;
  font-weight: 600;
  color: var(--teal-dark);
}

.share-tools__feedback[hidden] {
  display: none !important;
}

.blog-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 22px;
  margin: 0;
  padding: 0;
  list-style: none;
}

@media (min-width: 720px) {
  .blog-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: clamp(22px, 2.5vw, 28px);
  }
}

.blog-grid-wrap {
  padding: clamp(40px, 6vw, 72px) 0 clamp(80px, 12vw, 140px);
}

.page-blog .blog-grid-wrap {
  padding-bottom: clamp(40px, 6vw, 72px);
}

.blog-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 26px 22px 24px;
  background: var(--paper);
  transition:
    border-color 0.2s ease,
    box-shadow 0.28s var(--ease-interaction),
    transform 0.28s var(--ease-interaction);
}

.blog-card:hover {
  border-color: rgba(18, 153, 246, 0.28);
  box-shadow: 0 14px 42px rgba(0, 0, 0, 0.055);
}

@media (hover: hover) {
  .blog-card:hover {
    transform: translateY(-3px);
  }
}

.blog-card__meta {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 10px;
}

.blog-card__title {
  margin: 0 0 12px;
  font-size: clamp(18px, 2vw, 22px);
  line-height: 1.2;
  letter-spacing: -0.035em;
}

.blog-card__title a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s ease;
}

.blog-card__title a:hover {
  color: var(--blue);
}

.blog-card__excerpt {
  margin: 0;
  flex: 1;
  font-size: var(--text-card-sm);
  line-height: 1.42;
  color: var(--muted);
}

.blog-card__more {
  margin-top: 18px;
  font-weight: 700;
  font-size: 14px;
  color: var(--blue);
}

.blog-card__more a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s ease;
}

.blog-card__more a:hover {
  text-decoration: underline;
  color: #0d8bdc;
}

@media (min-width: 1100px) {
  .site-nav,
  .header-cta {
    display: flex;
  }

  .menu-button {
    display: none;
  }
}

@media (max-width: 1099px) {
  .announcement {
    padding: 14px 16px;
  }

  .announcement__inner {
    display: block;
    white-space: normal;
    line-height: 1.15;
  }

  .announcement__inner span {
    display: inline;
  }

  .header-inner {
    min-height: 80px;
    padding-block: 10px;
    position: relative;
  }

  .header-cta {
    display: inline-flex;
    margin-left: auto;
  }

  .site-nav {
    position: absolute;
    top: calc(100% - 12px);
    left: var(--gutter);
    right: var(--gutter);
    display: grid;
    gap: 4px;
    padding: 16px;
    border: 1px solid var(--line);
    border-radius: 18px;
    background: #fff;
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.14);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
    z-index: 30;
  }

  .site-nav.is-open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  .site-nav a {
    padding: 16px 18px;
    border-radius: 12px;
    font-size: 18px;
  }

  .site-nav a:hover {
    background: var(--soft);
  }

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

  .hero__actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }

  .hero__actions .btn {
    font-size: 14px;
    padding-inline: 10px;
  }

  .hero__media {
    height: 410px;
  }

  @media (min-width: 601px) {
    .hero__media-surface {
      border-radius: 18px;
    }
  }

  .trusted {
    padding-bottom: 86px;
  }

  .trusted__inner {
    display: block;
    text-align: center;
  }

  .trusted__ticker {
    margin-top: 54px;
    overflow: hidden;
    scrollbar-width: none;
    -ms-overflow-style: none;
    padding-block: 10px;
    width: 100%;
  }

  .trusted__ticker::-webkit-scrollbar {
    display: none;
  }

  .trusted__ticker-track {
    margin-left: 0;
    animation: trusted-ticker 34s linear infinite;
  }

  .trusted__logos li {
    height: 36px;
    min-height: 36px;
    align-self: stretch;
    align-items: center;
  }

  .trusted__logos--marquee {
    justify-content: flex-start;
    gap: clamp(22px, 5vw, 52px);
  }

  .trusted__logos .trusted__logo {
    height: 36px;
    min-height: 36px;
    max-height: 36px;
    width: auto;
    flex-shrink: 0;
    object-fit: contain;
    object-position: center;
  }

  .journey__inner,
  .change-grid,
  .pricing-grid {
    grid-template-columns: 1fr;
  }

  .split__inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: clamp(32px, 5vw, 56px);
    text-align: center;
  }

  .split__copy p {
    margin-inline: auto;
  }

  .pill-list {
    align-items: center;
  }

  .pill-list li {
    font-size: var(--text-card);
  }

  .demand-card {
    grid-template-columns: 1fr;
  }

  .demand-card__footer {
    display: grid;
    text-align: center;
  }

  /* Oversized on mobile so the mark stays a strong layout anchor when stacked */
  .system::before {
    background-size: min(200vw, 2000px) auto;
    background-position: 50% 40%;
  }

  .system__inner {
    display: grid;
    grid-template-columns: 1fr;
    min-height: 1280px;
  }

  .system__heading {
    order: 2;
  }

  .hiring {
    order: 1;
  }

  .replaces {
    order: 3;
  }

  .feature-grid {
    display: flex;
    flex-direction: column;
    gap: 16px;
  }

  .feature-card {
    min-width: 0;
    width: 100%;
    padding: clamp(22px, 5.5vw, 36px);
    min-height: 420px; /* equal-height cards in the stack */
  }

  /* Visual order: capture → follow-up → instant → real-time → routing (matches mobile comp) */
  .feature-grid > :nth-child(1) {
    order: 1;
  }

  .feature-grid > :nth-child(2) {
    order: 3;
  }

  .feature-grid > :nth-child(3) {
    order: 5;
  }

  .feature-grid > :nth-child(4) {
    order: 2;
  }

  .feature-grid > :nth-child(5) {
    order: 4;
  }

  /* Text-only: centre copy in the shared min-height; art: extra top padding for imagery */
  .feature-card:not(.feature-card--art) {
    justify-content: center;
  }

  .feature-card--art {
    /* Extra top space so copy clears the background art */
    padding-top: clamp(96px, 26vw, 132px);
  }

  .feature-card p {
    margin-top: 16px;
    font-size: clamp(15px, 3.8vw, 18px);
    line-height: 1.4;
  }

  .feature-card h3 {
    font-size: clamp(18px, 4.8vw, 24px);
    line-height: 1.22;
  }

  /* Comp: art top-right, clipped; not centred — social + bubble slightly smaller on mobile */
  .feature-card--art-social {
    background-position: right -18px top 6px;
    background-size: min(78%, 235px) auto;
  }

  .feature-card--art-bubble {
    background-size: min(185px, 48vw) auto;
    background-position: right -10px top -8px;
  }

  .feature-card--art-route {
    background-size: min(220px, 52vw) auto;
    background-position: right -8px top -4px;
  }

  .journey__intro {
    position: static;
    text-align: center;
  }

  .change-banner {
    padding: 26px;
  }

  .build-flow::before {
    display: none;
  }

  .build-item,
  .build-item--right {
    grid-template-columns: 1fr;
    gap: 24px;
    overflow: visible;
    justify-items: center;
  }

  .build-item p {
    text-align: center;
    margin-inline: auto;
  }

  .build-item--left .visual-card,
  .build-item--right .visual-card {
    margin-left: 0;
    margin-right: 0;
    justify-self: stretch;
    max-width: 100%;
  }

  /* Image first, then copy (all rows) */
  .build-item .visual-card {
    order: -1;
  }

  .build-item--right p {
    order: 0;
  }

  .engine-pills {
    grid-template-columns: 1fr;
  }

  .proof-grid {
    gap: 12px 14px;
  }

  .proof-grid li {
    padding: 16px 14px;
    font-size: clamp(13px, 2.8vw, 16px);
    line-height: 1.25;
  }

  .metric-strip {
    grid-auto-columns: minmax(300px, min(90vw, 480px));
  }

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

  .guarantee-card__img {
    align-self: flex-end;
    margin-top: 8px;
  }

  .price-card--featured .badge {
    position: absolute;
    left: auto;
    right: 28px;
    top: 32px;
    margin: 0;
    max-width: min(200px, calc(100% - 32px));
    width: max-content;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 8px 12px;
    font-size: 12px;
    font-weight: 600;
    line-height: 1.1;
    white-space: nowrap;
  }
}

@media (max-width: 520px) {
  :root {
    --gutter: 22px;
    --guarantee-bridge: clamp(56px, 11vw, 96px);
  }

  body {
    font-size: 14px;
  }

  h1 {
    font-size: 48px;
  }

  h2 {
    font-size: 36px;
  }

  .btn {
    min-height: 58px;
    font-size: 15px;
    border-radius: 8px;
  }

  .header-inner {
    min-height: 72px;
    padding-block: 10px 10px;
  }

  .logo-link img {
    width: 100px;
  }

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

  .hero__media {
    height: 410px;
  }

  .demand-card__copy,
  .demand-card__stats,
  .demand-card__footer,
  .glass-panel,
  .feature-card,
  .change-card,
  .price-card {
    padding: 34px 28px;
  }

  .feature-card {
    min-height: 400px;
  }

  .feature-card--art {
    padding: clamp(80px, 22vw, 110px) 28px 34px 28px;
  }

  .feature-card--art-social {
    background-position: right -16px top 4px;
    background-size: min(82%, 210px) auto;
  }

  .feature-card--art-bubble {
    background-size: min(168px, 44vw) auto;
    background-position: right -8px top -6px;
  }

  .feature-card--art-route {
    background-size: min(200px, 50vw) auto;
    background-position: right -6px top -2px;
  }

  .price-card--featured .badge {
    right: 20px;
    top: 28px;
  }

  .demand-card__stats {
    min-height: 500px;
  }

  .step__toggle {
    padding: 22px 20px;
  }

  .step__panel {
    padding: 0 20px 22px;
  }

  .step__meta {
    font-size: 28px;
  }

  .faq summary {
    min-height: 112px;
    padding-inline: 28px;
  }

  .faq details[open] summary {
    min-height: 0;
  }

  .faq details p {
    padding-inline: 28px;
  }
}

@media (max-width: 420px) {
  .proof-grid {
    grid-template-columns: 1fr;
  }
}

/* —— Revenue calculator page (calculator.html) — layout + components only, inherits site tokens */
.revenue-calc-hero {
  text-align: center;
  padding-top: clamp(28px, 4vw, 48px);
}

.revenue-calc-hero__title {
  max-width: 20ch;
  margin-left: auto;
  margin-right: auto;
  font-size: clamp(32px, 5vw, 50px);
  line-height: 1.04;
  letter-spacing: -0.055em;
}

.revenue-calc-hero__lede {
  max-width: 40rem;
  margin: clamp(18px, 2.4vw, 28px) auto 0;
  font-size: clamp(18px, 1.6vw, 22px);
  line-height: 1.3;
  color: var(--muted);
}

.revenue-calc-hero__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
  margin-top: clamp(28px, 3vw, 40px);
}

.revenue-calc-trust {
  list-style: none;
  margin: clamp(32px, 4vw, 48px) auto 0;
  padding: 0;
  max-width: 1000px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: clamp(12px, 2vw, 20px);
  text-align: left;
  font-size: var(--text-card);
  line-height: 1.3;
  color: var(--ink);
}

.revenue-calc-trust li {
  padding: 14px 16px;
  background: var(--soft);
  border-radius: 12px;
  border: 1px solid var(--line);
}

.revenue-calc-trust strong {
  color: var(--teal);
  display: block;
  font-size: clamp(20px, 2vw, 28px);
  line-height: 1.1;
  margin-bottom: 4px;
}

.revenue-calc__sticky {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 150;
  padding: 12px var(--gutter) calc(12px + env(safe-area-inset-bottom, 0));
  background: rgba(255, 255, 255, 0.96);
  border-top: 1px solid var(--line);
  box-shadow: 0 -8px 32px rgba(0, 0, 0, 0.06);
}

.revenue-calc__sticky .revenue-calc__sticky-cta {
  width: 100%;
  max-width: 400px;
  margin: 0 auto;
  display: block;
}

@media (min-width: 700px) {
  .revenue-calc__sticky {
    display: none;
  }
}

.revenue-calc {
  max-width: 640px;
  margin: 0 auto;
}

.revenue-calc__progress {
  margin-bottom: clamp(24px, 3vw, 36px);
}

.revenue-calc__progress-bar-wrap {
  display: block;
  height: 8px;
  border-radius: 999px;
  background: var(--line);
  overflow: hidden;
}

.revenue-calc__progress-bar-fill {
  height: 100%;
  width: 17%;
  border-radius: inherit;
  background: var(--teal);
  transition: width 0.25s ease;
}

.revenue-calc__progress-text {
  margin: 10px 0 0;
  font-size: 15px;
  font-weight: 600;
  color: var(--muted);
}

.revenue-calc__form--hidden {
  display: none;
}

.revenue-calc__step--hidden,
.revenue-calc__results.revenue-calc__step--hidden[hidden],
.revenue-calc__screen-results.revenue-calc__step--hidden[hidden],
.revenue-calc__lead.revenue-calc__step--hidden[hidden] {
  display: none;
}

.revenue-calc__step {
  border: 0;
  margin: 0;
  padding: 0;
  min-width: 0;
}

.revenue-calc__step-title {
  font-size: clamp(22px, 2.4vw, 32px);
  font-weight: 600;
  letter-spacing: -0.05em;
  line-height: 1.1;
  margin: 0 0 8px;
  padding: 0;
}

.revenue-calc__step-sub {
  margin: 0 0 clamp(20px, 2.5vw, 28px);
  font-size: var(--text-card);
  line-height: 1.32;
  color: var(--muted);
}

.revenue-calc__options {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.revenue-calc__options--grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.revenue-calc__options--row {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 12px;
}

.revenue-calc__options--row .revenue-calc__card {
  flex: 1 1 140px;
  text-align: center;
}

.revenue-calc__card {
  display: block;
  width: 100%;
  padding: 14px 16px;
  font: inherit;
  text-align: left;
  color: var(--ink);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  cursor: pointer;
  line-height: 1.3;
  transition: border-color 0.15s ease, background 0.15s ease, box-shadow 0.15s ease;
}

.revenue-calc__card:hover {
  border-color: var(--teal);
}

.revenue-calc__card.is-selected {
  border-color: var(--teal);
  background: #f0faf9;
  box-shadow: 0 0 0 1px var(--teal);
}

.revenue-calc__field {
  display: block;
  margin-bottom: 12px;
}

.revenue-calc__field-label {
  display: block;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 8px;
}

.revenue-calc__input {
  width: 100%;
  max-width: 200px;
  padding: 14px 16px;
  font: inherit;
  font-size: 20px;
  font-weight: 600;
  border: 1px solid var(--line);
  border-radius: 12px;
}

.revenue-calc__hint {
  font-size: 14px;
  color: var(--muted);
  margin: 0;
}

.revenue-calc__big-value {
  font-size: clamp(32px, 5vw, 48px);
  font-weight: 700;
  letter-spacing: -0.04em;
  color: var(--teal);
  margin: 8px 0 16px;
}

.revenue-calc__big-value--money {
  color: var(--ink);
}

.revenue-calc__slider-row {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 8px;
}

.revenue-calc__slider-end {
  flex: 0 0 auto;
  font-size: 13px;
  color: var(--muted);
  min-width: 2.2em;
}

.revenue-calc__slider-end:last-child {
  text-align: right;
}

.revenue-calc__range {
  flex: 1 1 auto;
  min-width: 0;
  height: 8px;
  accent-color: var(--teal);
}

.revenue-calc__nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 12px;
  margin-top: clamp(28px, 3vw, 40px);
  padding-top: 8px;
  border-top: 1px solid var(--line);
}

.revenue-calc__back[disabled] {
  opacity: 0.4;
  pointer-events: none;
}

.revenue-calc__results {
  max-width: 100%;
  padding-top: 8px;
  text-align: center;
}

/* High-impact "revenue leak" summary (results step) */
.revenue-calc__leak-panel {
  position: relative;
  isolation: isolate;
  margin: 0 auto 28px;
  max-width: 36rem;
  padding: clamp(24px, 4.5vw, 40px) clamp(18px, 3.5vw, 30px) clamp(22px, 3.5vw, 32px);
  text-align: center;
  border-radius: 20px;
  background: #fff8f5;
  border: 1px solid rgba(180, 35, 24, 0.28);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.75) inset,
    0 22px 50px -14px rgba(0, 60, 60, 0.14),
    0 10px 28px -12px rgba(180, 35, 24, 0.1);
  overflow: hidden;
}

.revenue-calc__leak-panel::before {
  content: "";
  position: absolute;
  z-index: 0;
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
  background: var(--teal);
  border-radius: 20px 20px 0 0;
}

.revenue-calc__leak-panel > * {
  position: relative;
  z-index: 1;
}

.revenue-calc__leak-panel .revenue-calc__eyebrow {
  display: inline-block;
  margin: 0 0 18px;
  padding: 7px 16px;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #fff;
  background: var(--teal);
  border-radius: 999px;
  box-shadow: 0 2px 12px rgba(0, 60, 60, 0.3);
}

.revenue-calc__leak-panel .revenue-calc__leak-hero {
  font-size: clamp(1.55rem, 4.8vw, 2.15rem);
  margin-bottom: 18px;
  max-width: 19em;
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.5);
}

.revenue-calc__leak-panel .revenue-calc__leak-num {
  color: #8f1c14;
  font-variant-numeric: tabular-nums;
  text-shadow: 0 0 32px rgba(180, 35, 24, 0.22);
}

.revenue-calc__leak-panel .revenue-calc__leak-line {
  margin-bottom: 14px;
  font-size: clamp(1.15rem, 2.7vw, 1.4rem);
}

.revenue-calc__leak-panel .revenue-calc__leak-annual {
  margin: 0 auto 20px;
  padding-top: 16px;
  max-width: 32em;
  font-size: calc(var(--text-card) + 1px);
  font-weight: 600;
  line-height: 1.4;
  color: var(--ink);
  border-top: 1px dashed rgba(180, 35, 24, 0.3);
}

.revenue-calc__leak-panel .revenue-calc__competitor {
  margin: 0;
  max-width: none;
  padding: 16px 18px;
  color: var(--teal);
  background: #fff;
  border: 1px solid rgba(0, 60, 60, 0.12);
  border-radius: 14px;
  box-shadow: 0 4px 16px rgba(0, 60, 60, 0.07);
}

/* Calculator page: pink/blue/ink only — remove green-teal from results chrome */
body.app-calculator .revenue-calc__leak-panel {
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.75) inset,
    0 22px 50px -14px rgba(0, 0, 0, 0.1),
    0 10px 28px -12px rgba(180, 35, 24, 0.1);
}

body.app-calculator .revenue-calc__leak-panel::before {
  background: var(--blue);
}

body.app-calculator .revenue-calc__leak-panel .revenue-calc__eyebrow {
  background: var(--blue);
  box-shadow: 0 2px 14px rgba(18, 153, 246, 0.35);
}

body.app-calculator .revenue-calc__leak-panel .revenue-calc__competitor {
  color: var(--ink);
  background: var(--soft-pink);
  border-color: rgba(0, 0, 0, 0.08);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
}

/* Final step: your revenue leak (range headline + CTA) */
.revenue-calc__eyebrow {
  margin: 0 0 12px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
}

.revenue-calc__leak-hero {
  margin: 0 0 16px;
  font-size: clamp(1.4rem, 4.2vw, 1.9rem);
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -0.03em;
  color: var(--ink);
  max-width: 22em;
  margin-left: auto;
  margin-right: auto;
}

.revenue-calc__leak-num {
  color: #b42318;
  font-weight: 800;
}

.revenue-calc__leak-hero-end {
  color: var(--ink);
  font-weight: 700;
}

.revenue-calc__leak-line {
  margin: 0 0 10px;
  font-size: clamp(1.1rem, 2.6vw, 1.3rem);
  line-height: 1.3;
  font-weight: 600;
}

.revenue-calc__leak-line-muted {
  color: var(--ink);
  font-weight: 500;
}

.revenue-calc__leak-annual {
  margin: 0 0 20px;
  font-size: var(--text-card);
  line-height: 1.4;
  font-weight: 500;
  color: var(--muted);
}

.revenue-calc__competitor {
  margin: 0 auto 20px;
  max-width: 32em;
  padding: 16px 18px;
  font-size: var(--text-card);
  line-height: 1.45;
  font-weight: 600;
  text-align: center;
  color: var(--teal);
  background: #f0faf9;
  border: 1px solid rgba(0, 60, 60, 0.2);
  border-radius: 14px;
}

.revenue-calc__trust {
  margin: 0 auto 20px;
  max-width: 32em;
  font-size: var(--text-card);
  line-height: 1.5;
  color: var(--muted);
}

.revenue-calc__trust strong {
  color: var(--ink);
  font-weight: 700;
}

.revenue-calc__leak-cta-wrap {
  margin: 0 0 10px;
}

.revenue-calc__leak-cta {
  min-height: 52px;
  font-size: 1rem;
  border-radius: 10px;
}

.revenue-calc__leak-cta-arrow {
  display: inline-block;
  margin-left: 0.2em;
}

.revenue-calc__leak-disclaimer {
  margin: 0;
  max-width: 32em;
  margin-left: auto;
  margin-right: auto;
  font-size: var(--text-card-sm);
  line-height: 1.45;
  color: var(--muted);
}

.revenue-calc__results-title {
  font-size: clamp(24px, 2.6vw, 36px);
  font-weight: 600;
  letter-spacing: -0.05em;
  margin: 0 0 clamp(20px, 2vw, 28px);
  line-height: 1.1;
  text-align: center;
}

.revenue-calc__results-figures {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  margin-bottom: 24px;
}

@media (min-width: 600px) {
  .revenue-calc__results-figures {
    grid-template-columns: 1fr 1fr 1fr;
  }
}

@media (max-width: 520px) {
  .revenue-calc__options--grid {
    grid-template-columns: 1fr;
  }
}

.revenue-calc__result {
  padding: 18px 16px;
  background: var(--soft);
  border-radius: 14px;
  border: 1px solid var(--line);
  text-align: center;
}

.revenue-calc__result--highlight {
  background: #fff4f4;
  border-color: #f1d4d4;
}

.revenue-calc__result-label {
  display: block;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--muted);
  margin-bottom: 6px;
}

.revenue-calc__result-num {
  font-size: clamp(20px, 2.2vw, 28px);
  font-weight: 700;
  letter-spacing: -0.04em;
}

.revenue-calc__result-num--loss {
  color: #b42318;
}

.revenue-calc__explainer,
.revenue-calc__micro {
  font-size: var(--text-card);
  line-height: 1.4;
  color: var(--muted);
  margin: 0 0 16px;
}

.revenue-calc__recovery {
  font-size: var(--text-card);
  line-height: 1.4;
  margin: 0 0 20px;
  padding: 16px 18px;
  background: #f0faf9;
  border: 1px solid rgba(0, 60, 60, 0.2);
  border-radius: 14px;
  color: var(--ink);
}

.revenue-calc__post-results {
  margin: 0 0 4px;
}

.revenue-calc__prompt[hidden] {
  display: none !important;
}

.revenue-calc__results-cta {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 12px;
}

.revenue-calc__benefits {
  max-width: 720px;
  margin: 24px auto 0;
  padding-left: 1.1em;
  text-align: left;
  color: var(--ink);
  font-size: var(--text-card);
  line-height: 1.4;
}

.revenue-calc__benefits li {
  margin-bottom: 10px;
}

.revenue-calc__badges {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px 16px;
  margin: clamp(16px, 2vw, 24px) 0;
  font-size: 14px;
  color: var(--soft);
  opacity: 0.95;
}

.revenue-calc__badges span::after {
  content: " · ";
}

.revenue-calc__badges span:last-child::after {
  content: none;
}

.final-cta .revenue-calc__badges {
  color: rgba(255, 255, 255, 0.9);
}

.revenue-calc__cta-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin: 0;
}

/* --- Calculator app page: matches index typography & colours; step label + full-width bar in header --- */
body.app-calculator {
  margin: 0;
  min-height: 100dvh;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  background: #fff;
  color: var(--ink);
  font-family: var(--font);
  -webkit-tap-highlight-color: transparent;
}

.app-calculator__header {
  position: sticky;
  top: 0;
  z-index: 200;
  flex-shrink: 0;
  width: 100%;
  background: #fff;
  border-bottom: 1px solid var(--line);
}

.app-calculator__header-top {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 64px;
  max-width: var(--container);
  margin: 0 auto;
  padding: max(8px, env(safe-area-inset-top, 0px)) var(--gutter) 10px;
  gap: 12px;
}

.app-calculator__step-label {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  max-width: min(14em, calc(100% - 10rem));
  margin: 0;
  text-align: center;
  font-size: 15px;
  font-weight: 600;
  color: var(--muted);
  line-height: 1.2;
  pointer-events: none;
  font-family: var(--font);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  letter-spacing: 0.01em;
}

.app-calculator__header-progress {
  width: 100%;
  line-height: 0;
}

.app-calculator__progress-track,
.app-calculator__header .revenue-calc__progress-bar-wrap {
  display: block;
  width: 100%;
  height: 3px;
  border-radius: 0;
  background: var(--line);
  margin: 0;
  overflow: hidden;
  border: 0;
}

.app-calculator__header .revenue-calc__progress-bar-fill {
  height: 100%;
  width: 14.2857%;
  border-radius: 0 2px 2px 0;
  background: var(--blue);
  transition: width 0.25s ease;
}

.app-calculator__close {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  border: none;
  border-radius: 12px;
  background: transparent;
  color: var(--ink);
  font: inherit;
  font-size: 1.75rem;
  line-height: 1;
  text-decoration: none;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
  position: relative;
  z-index: 1;
}

.app-calculator__close:hover,
.app-calculator__close:focus-visible {
  background: rgba(0, 0, 0, 0.06);
  outline: none;
}

.app-calculator__close:focus-visible {
  box-shadow: 0 0 0 2px #fff, 0 0 0 4px var(--blue);
}

.app-calculator__header-left {
  display: flex;
  align-items: center;
  gap: clamp(14px, 3vw, 22px);
  flex-shrink: 0;
  position: relative;
  z-index: 1;
  min-width: 0;
}

.app-calculator__blog {
  font-family: var(--font);
  font-size: 15px;
  font-weight: 700;
  color: var(--ink);
  text-decoration: none;
  white-space: nowrap;
}

.app-calculator__blog:hover,
.app-calculator__blog:focus-visible {
  color: var(--blue);
}

.app-calculator__brand {
  display: flex;
  align-items: center;
  line-height: 0;
  text-decoration: none;
  position: relative;
  z-index: 1;
}

img.app-calculator__logo,
.app-calculator__brand .app-calculator__logo {
  display: block;
  width: 93px;
  height: auto;
  max-width: none;
  object-fit: contain;
}

.app-calculator__main {
  flex: 1;
  min-height: 0;
  display: block;
  overflow: auto;
  -webkit-overflow-scrolling: touch;
  overscroll-behavior-y: contain;
  padding-bottom: max(24px, env(safe-area-inset-bottom, 0px));
}

body.app-calculator .app-calculator__main {
  display: flex;
  flex-direction: column;
}

.app-calculator__inner {
  max-width: 36rem;
  margin: 0 auto;
  padding: 12px var(--gutter) 32px;
}

.app-calculator__intro {
  font-size: var(--text-lede, 1.05rem);
  line-height: 1.5;
  color: var(--muted, #3d4a4a);
  margin: 0 0 20px;
  text-align: center;
}

body.app-calculator .revenue-calc {
  max-width: none;
  width: 100%;
  min-width: 0;
  margin: 0;
  box-sizing: border-box;
}

body.app-calculator .revenue-calc__step {
  width: 100%;
  min-width: 0;
  min-inline-size: 0;
  max-width: 100%;
  text-align: center;
  box-sizing: border-box;
  align-self: stretch;
  flex: 0 0 auto;
}

body.app-calculator .revenue-calc__step legend {
  max-width: 100%;
  box-sizing: border-box;
}

body.app-calculator .revenue-calc__step-title {
  display: block;
  width: 100%;
  max-width: 100%;
  float: none;
  margin-inline: 0;
  padding-inline: 0;
}

body.app-calculator .revenue-calc__step-sub {
  width: 100%;
  max-width: 100%;
  margin-inline: 0;
}

body.app-calculator .revenue-calc__panels {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  width: 100%;
  min-width: 0;
  max-width: 100%;
  box-sizing: border-box;
}

body.app-calculator .revenue-calc__form {
  width: 100%;
  min-width: 0;
  max-width: 100%;
  box-sizing: border-box;
}

body.app-calculator .revenue-calc__options--stack {
  flex: 0 0 auto;
  align-self: stretch;
  width: 100%;
  max-width: 100%;
  min-width: 0;
  margin: 0 auto;
  text-align: left;
  box-sizing: border-box;
  gap: 11px;
}

body.app-calculator .revenue-calc__options--tight {
  flex: 0 0 auto;
  align-self: stretch;
  width: 100%;
  max-width: 100%;
  min-width: 0;
}

body.app-calculator .revenue-calc__options--tight .revenue-calc__card {
  text-align: center;
  font-weight: 600;
}

body.app-calculator .revenue-calc__next:disabled {
  opacity: 0.45;
  transform: none;
  cursor: not-allowed;
}

.app-calculator__inner--calc {
  display: flex;
  flex-direction: column;
  min-height: 0;
  flex: 1;
  width: 100%;
}

/* Avoid nested scroll on small viewports: iOS Safari often fails to scroll `main` when `body` is a full-height flex column.
   Let the document scroll instead; sticky header still works against the viewport. */
@media (max-width: 1023px) {
  body.app-calculator {
    display: block;
  }

  body.app-calculator .app-calculator__main {
    flex: unset;
    min-height: 0;
    display: block;
    overflow-x: clip;
    overflow-y: visible;
    -webkit-overflow-scrolling: auto;
    overscroll-behavior-y: auto;
  }

  body.app-calculator .app-calculator__inner--calc {
    flex: unset;
    min-height: unset;
  }
}

/* Centre each calculator phase vertically; spacers shrink to 0 when content is taller than the viewport */
.app-calculator__inner--calc[data-calc-view="questions"]::before,
.app-calculator__inner--calc[data-calc-view="questions"]::after,
.app-calculator__inner--calc[data-calc-view="results"]::before,
.app-calculator__inner--calc[data-calc-view="results"]::after,
.app-calculator__inner--calc[data-calc-view="lead"]::before,
.app-calculator__inner--calc[data-calc-view="lead"]::after {
  content: "";
  flex: 1 1 0;
  min-height: 0;
  pointer-events: none;
}

.revenue-calc__foot {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  width: 100%;
}

.revenue-calc__foot--split {
  justify-content: space-between;
  gap: 10px 14px;
  margin-top: clamp(22px, 3.5vw, 32px);
  padding-top: 22px;
  border-top: 1px solid var(--line);
}

.revenue-calc__foot--center {
  justify-content: center;
  margin-top: 20px;
  padding-top: 4px;
  border: 0;
}

body.app-calculator .revenue-calc__btn-secondary {
  min-height: 48px;
  padding: 0 18px;
  font-size: 15px;
  font-weight: 600;
  line-height: 1;
  border-radius: 10px;
  border: 1.5px solid var(--line);
  background: #fff;
  color: var(--ink);
  transition: border-color 0.15s ease, background 0.15s ease, color 0.15s ease, box-shadow 0.15s ease;
}

body.app-calculator .revenue-calc__btn-secondary:hover {
  border-color: var(--ink);
  color: var(--ink);
}

body.app-calculator .revenue-calc__btn-secondary:focus-visible {
  outline: 3px solid var(--blue);
  outline-offset: 3px;
}

body.app-calculator .revenue-calc__btn-secondary--soft {
  background: var(--soft);
  border-color: rgba(0, 0, 0, 0.06);
  color: var(--muted);
  font-weight: 600;
}

body.app-calculator .revenue-calc__btn-secondary--soft:hover {
  border-color: var(--line);
  color: var(--ink);
  background: #e8e8e4;
}

.revenue-calc__foot--split .revenue-calc__btn-secondary {
  flex: 1 1 auto;
  min-width: 0;
  max-width: 12rem;
}

.revenue-calc__back-link {
  margin: 0;
  padding: 10px 16px;
  font: inherit;
  font-size: 15px;
  font-weight: 600;
  color: var(--muted);
  background: none;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-color: rgba(99, 99, 99, 0.45);
  transition: color 0.15s ease, text-decoration-color 0.15s ease, background 0.15s ease;
}

.revenue-calc__back-link:hover {
  color: var(--teal);
  text-decoration-color: var(--teal);
}

body.app-calculator .revenue-calc__back-link:hover {
  color: var(--blue);
  text-decoration-color: var(--blue);
}

.revenue-calc__back-link:focus-visible {
  outline: 3px solid var(--blue);
  outline-offset: 2px;
}

body.app-calculator .revenue-calc__nav {
  margin-top: clamp(28px, 4vw, 40px);
  padding-top: 20px;
  border-top: 1px solid var(--line);
  gap: 10px 12px;
  align-items: center;
}

body.app-calculator .revenue-calc__back {
  flex: 0 0 auto;
  min-width: 7rem;
  max-width: 44%;
}

body.app-calculator .revenue-calc__next {
  flex: 1 1 12rem;
  min-width: 0;
  min-height: 50px;
  border-radius: 10px;
  font-size: 16px;
}

.revenue-calc__lead {
  margin: 0 auto;
  max-width: 24rem;
  text-align: center;
  padding: 0 0 8px;
}

.revenue-calc__lead[hidden] {
  display: none !important;
}

.revenue-calc__lead-title {
  font-size: clamp(1.3rem, 3.5vw, 1.5rem);
  font-weight: 700;
  line-height: 1.2;
  margin: 0 0 12px;
  color: var(--ink);
}

.revenue-calc__lead-dek {
  margin: 0 0 20px;
  font-size: 0.95rem;
  line-height: 1.45;
  color: var(--muted);
}

.revenue-calc__lead-range {
  color: var(--ink);
  font-weight: 600;
  white-space: normal;
}

.revenue-calc__lead-form {
  display: flex;
  flex-direction: column;
  gap: 12px;
  text-align: left;
}

.revenue-calc__lead-field input {
  min-height: 50px;
  width: 100%;
  padding: 0 14px;
  font: inherit;
  font-size: 1rem;
  line-height: 1.2;
  color: var(--ink);
  background: #fff;
  border: 1px solid var(--line, rgba(0, 0, 0, 0.12));
  border-radius: 10px;
  -webkit-appearance: none;
  appearance: none;
  box-sizing: border-box;
}

.revenue-calc__lead-field input:focus {
  outline: none;
  border-color: var(--blue);
  box-shadow: 0 0 0 3px color-mix(in srgb, var(--blue) 22%, transparent);
}

.revenue-calc__lead-cta {
  min-height: 52px;
  margin-top: 4px;
  font-size: 1rem;
  font-weight: 700;
  border-radius: 10px;
}

.revenue-calc__lead-cta.btn--wide {
  width: 100%;
}

.revenue-calc__lead-trust {
  margin: 14px 0 0;
  font-size: 12px;
  line-height: 1.45;
  color: var(--muted);
}

.revenue-calc__lead-success {
  margin: 20px 0 0;
  padding: 14px 16px;
  font-size: 0.95rem;
  line-height: 1.45;
  text-align: center;
  color: #0a5c4a;
  background: #e6f5f0;
  border: 1px solid rgba(10, 92, 74, 0.25);
  border-radius: 12px;
}

.revenue-calc__lead-success[hidden] {
  display: none !important;
}

body.app-calculator .revenue-calc__lead-success {
  color: #0c3d66;
  background: rgba(18, 153, 246, 0.1);
  border-color: rgba(18, 153, 246, 0.35);
}

body.app-calculator .revenue-calc__card {
  position: relative;
  min-width: 0;
  max-width: 100%;
  min-height: 52px;
  padding: 17px 20px;
  font-size: clamp(15px, 1.05rem, 16px);
  line-height: 1.38;
  font-weight: 500;
  letter-spacing: -0.02em;
  color: var(--ink);
  border-radius: 16px;
  border: 1px solid rgba(0, 0, 0, 0.078);
  background: var(--soft-pink);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.035);
  transition: transform 0.2s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.2s ease, border-color 0.2s ease,
    background 0.2s ease, color 0.2s ease;
}

body.app-calculator .revenue-calc__card:hover:not(.is-selected) {
  transform: translateY(-2px);
  border-color: rgba(18, 153, 246, 0.42);
  background: var(--paper);
  box-shadow: 0 10px 28px rgba(18, 153, 246, 0.1), 0 4px 12px rgba(0, 0, 0, 0.05);
}

body.app-calculator .revenue-calc__card.is-selected {
  background: var(--ink);
  color: #fff;
  border-color: var(--ink);
  font-weight: 600;
  box-shadow:
    inset 4px 0 0 0 var(--blue),
    0 14px 42px rgba(0, 0, 0, 0.32);
}

body.app-calculator .revenue-calc__card.is-selected:hover {
  background: #171717;
  border-color: #171717;
  color: #fff;
  transform: translateY(-2px);
}

body.app-calculator .revenue-calc__card:focus-visible {
  outline: 3px solid var(--blue);
  outline-offset: 3px;
}

body.app-calculator .revenue-calc__card.is-selected:focus-visible {
  outline-color: var(--paper);
}

/* Calculator CTAs align with primary site blue (.btn--primary); no teal on this shell */
body.app-calculator .revenue-calc__next.btn--primary,
body.app-calculator .revenue-calc__leak-cta.btn--primary,
body.app-calculator .revenue-calc__lead-cta.btn--primary {
  background: var(--blue);
  color: #fff;
  border-color: transparent;
  border-radius: 12px;
  font-weight: 700;
  letter-spacing: -0.02em;
}

body.app-calculator .revenue-calc__next.btn--primary:hover:not(:disabled),
body.app-calculator .revenue-calc__leak-cta.btn--primary:hover,
body.app-calculator .revenue-calc__lead-cta.btn--primary:hover {
  background: #0d8bdc;
  color: #fff;
  box-shadow: 0 10px 26px rgba(18, 153, 246, 0.35);
}

body.app-calculator .revenue-calc__next.btn--primary:focus-visible,
body.app-calculator .revenue-calc__leak-cta.btn--primary:focus-visible,
body.app-calculator .revenue-calc__lead-cta.btn--primary:focus-visible {
  outline: 3px solid var(--blue);
  outline-offset: 3px;
}

body.app-calculator .revenue-calc__input {
  min-height: 48px;
  font-size: 1rem;
}

@media (max-width: 400px) {
  .revenue-calc__foot--split {
    flex-direction: column;
    align-items: stretch;
  }

  .revenue-calc__foot--split .revenue-calc__btn-secondary {
    max-width: none;
  }

  body.app-calculator .revenue-calc__back {
    max-width: none;
  }
}

@media (min-width: 480px) {
  .app-calculator__inner {
    padding-top: 24px;
  }
}

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

  .btn:hover {
    transform: none;
  }

  .btn--primary:hover,
  .btn--outline:hover,
  .btn--dark:hover {
    box-shadow: none !important;
  }

  .hero__media-surface:hover {
    box-shadow: none !important;
  }

  .play-button:hover,
  .pill-list li:hover,
  .line-list li:hover,
  .demand-card:hover,
  .feature-card:hover,
  .blog-card:hover,
  .price-card:hover,
  .price-card--featured:hover,
  .guarantee-card:hover,
  .step:not(.active):hover,
  .engine-pills li:hover,
  .proof-grid li:hover,
  .metric-card:hover,
  .change-banner:hover,
  .change-card:hover {
    transform: none !important;
  }

  .line-list li:hover {
    padding-left: 30px;
  }

  .trusted__logos li:hover .trusted__logo {
    filter: none;
    opacity: 0.92;
  }

  .glass-panel:hover {
    box-shadow: none !important;
  }

  .faq details:hover {
    box-shadow: none !important;
  }

  body.app-calculator .revenue-calc__next.btn--primary:hover:not(:disabled),
  body.app-calculator .revenue-calc__leak-cta.btn--primary:hover,
  body.app-calculator .revenue-calc__lead-cta.btn--primary:hover {
    box-shadow: none !important;
  }

  body.app-calculator .revenue-calc__card:hover:not(.is-selected),
  body.app-calculator .revenue-calc__card.is-selected:hover {
    transform: none;
  }

  .reveal {
    opacity: 1 !important;
    transform: none !important;
  }

  .trusted__ticker-track {
    animation: none !important;
    transform: none !important;
  }

  .trusted__ticker {
    overflow: hidden;
    scrollbar-width: none;
    -ms-overflow-style: none;
    -webkit-overflow-scrolling: touch;
  }

  .trusted__ticker::-webkit-scrollbar {
    display: none;
  }

  .trusted__logos--marquee {
    width: max-content;
    max-width: none;
  }
}
