@import url("https://fonts.googleapis.com/css2?family=Shadows+Into+Light+Two&display=swap");

@font-face {
  font-family: "Glacial Indifference";
  src: url("assets/fonts/GlacialIndifference-Regular.otf") format("opentype");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: "Glacial Indifference";
  src: url("assets/fonts/GlacialIndifference-Bold.otf") format("opentype");
  font-style: normal;
  font-weight: 700;
  font-display: swap;
}

@font-face {
  font-family: "Glacial Indifference";
  src: url("assets/fonts/GlacialIndifference-Italic.otf") format("opentype");
  font-style: italic;
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: "Roca Two";
  src: url("assets/fonts/RocaTwo-Regular.ttf") format("truetype");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: "Roca Two";
  src: url("assets/fonts/RocaTwo-Bold.ttf") format("truetype");
  font-style: normal;
  font-weight: 700;
  font-display: swap;
}

@font-face {
  font-family: "Roca Two";
  src: url("assets/fonts/RocaTwo-Heavy.ttf") format("truetype");
  font-style: normal;
  font-weight: 900;
  font-display: swap;
}

:root {
  --navy: #0c2c47;
  --teal: #237c8d;
  --dolphin: #08b3d0;
  --sand: #ffe1c2;
  --blush: #f98b88;
  --light-blue: #b5d9e0;
  --sugar: #fff0e0;
  --maize: #f5cb51;
  --harvest: #cd8b61;
  --russet: #84451d;
  --paper: #fffaf4;
  --white: #ffffff;
  --ink: #092239;
  --muted: #627487;
  --line: rgba(12, 44, 71, 0.12);
  --shadow: 0 22px 70px rgba(12, 44, 71, 0.13);
  --soft-shadow: 0 14px 38px rgba(12, 44, 71, 0.09);
  --radius-sm: 8px;
  --radius: 8px;
  --radius-lg: 18px;
  --max-width: 1180px;
  --header-height: 78px;
  --button-gap: 14px;
  --button-height: 50px;
  --button-height-small: 44px;
  --button-padding-x: 24px;
  --button-padding-x-small: 18px;
  --header-top-gap: 22px;
  font-family: "Glacial Indifference", "Avenir Next", Avenir, Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--paper);
}

* {
  box-sizing: border-box;
}

html {
  min-height: 100%;
  background:
    linear-gradient(180deg, rgba(181, 217, 224, 0.22) 0, rgba(255, 250, 244, 0) 520px),
    var(--paper);
  scroll-behavior: smooth;
}

body {
  margin: 0;
  padding-top: var(--header-top-gap);
  min-height: 100%;
  min-width: 320px;
  overflow-x: hidden;
  background-color: var(--paper);
  background:
    linear-gradient(180deg, rgba(181, 217, 224, 0.22) 0, rgba(255, 250, 244, 0) 520px),
    var(--paper);
  color: var(--ink);
  line-height: 1.5;
}

body.nav-open,
body.preview-open {
  overflow: hidden;
}

img,
svg {
  display: block;
}

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

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

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

[id] {
  scroll-margin-top: calc(var(--header-height) + 48px);
}

.site-header {
  position: sticky;
  top: 16px;
  z-index: 50;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: clamp(12px, 1.5vw, 22px);
  width: min(calc(100% - 32px), var(--max-width));
  min-height: var(--header-height);
  margin: 0 auto;
  padding: 10px 12px 10px 16px;
  border: 1px solid rgba(255, 255, 255, 0.78);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.84);
  box-shadow: 0 18px 50px rgba(12, 44, 71, 0.1);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: max-content;
  color: var(--navy);
  font-weight: 750;
  letter-spacing: 0;
}

.brand-logo {
  display: block;
  object-fit: contain;
}

.brand-logo-full {
  width: clamp(124px, 11.5vw, 164px);
  max-height: 48px;
}

.brand-icon {
  width: 42px;
  height: 42px;
  border-radius: 50%;
}

.brand-mark {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border-radius: 50%;
  background: var(--navy);
  color: var(--sand);
  font-family: "Roca Two", Georgia, serif;
  font-size: 1.2rem;
  line-height: 1;
}

.brand-text {
  font-size: 0.98rem;
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(10px, 1.55vw, 22px);
  color: rgba(12, 44, 71, 0.76);
  font-size: clamp(0.78rem, 0.9vw, 0.88rem);
  font-weight: 750;
}

.site-nav a {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
}

.nav-dropdown,
.site-nav-list > li {
  position: relative;
  display: inline-flex;
  align-items: center;
}

.nav-dropdown::after,
.site-nav-list > li.menu-item-has-children::after {
  content: "";
  position: absolute;
  top: 100%;
  right: -12px;
  left: -12px;
  z-index: 21;
  height: 18px;
}

.nav-parent::after,
.site-nav-list > .menu-item-has-children > a::after {
  content: "";
  width: 0.42em;
  height: 0.42em;
  margin-left: 0.45em;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg) translateY(-1px);
  opacity: 0.72;
}

.nav-dropdown-menu,
.site-nav-list .sub-menu {
  position: absolute;
  top: calc(100% + 10px);
  left: 50%;
  z-index: 30;
  display: grid;
  min-width: 230px;
  margin: 0;
  padding: 10px;
  list-style: none;
  border: 1px solid rgba(12, 44, 71, 0.1);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.97);
  box-shadow: 0 18px 42px rgba(12, 44, 71, 0.14);
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, 8px);
  transition: opacity 180ms ease, transform 180ms ease, visibility 180ms ease;
  visibility: hidden;
}

.nav-dropdown-menu a,
.site-nav-list .sub-menu a {
  justify-content: flex-start;
  min-height: 0;
  padding: 9px 10px;
  border-radius: 12px;
  color: rgba(12, 44, 71, 0.78);
  white-space: nowrap;
}

.nav-dropdown-menu a:hover,
.site-nav-list .sub-menu a:hover {
  background: rgba(181, 217, 224, 0.28);
}

.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown:focus-within .nav-dropdown-menu,
.site-nav-list > li:hover > .sub-menu,
.site-nav-list > li:focus-within > .sub-menu {
  opacity: 1;
  pointer-events: auto;
  transform: translate(-50%, 0);
  visibility: visible;
}

.site-nav-list {
  display: flex;
  align-items: center;
  gap: clamp(10px, 1.55vw, 22px);
  margin: 0;
  padding: 0;
  list-style: none;
}

.site-nav a,
.login-link,
.footer-links a {
  transition: color 180ms ease, transform 180ms ease;
}

.site-nav a:hover,
.login-link:hover,
.footer-links a:hover {
  color: var(--teal);
}

.header-actions {
  display: inline-flex;
  align-items: center;
  gap: var(--button-gap);
}

.login-link {
  color: var(--navy);
  font-size: 0.94rem;
  font-weight: 700;
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: var(--white);
  cursor: pointer;
}

.nav-toggle span:not(.sr-only) {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  border-radius: 999px;
  background: var(--navy);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: var(--button-height);
  padding: 0 var(--button-padding-x);
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 800;
  letter-spacing: 0;
  line-height: 1.1;
  text-align: center;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease, border-color 180ms ease;
}

.button svg {
  flex: 0 0 auto;
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

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

.button-primary {
  background: var(--teal);
  color: var(--white);
  box-shadow: 0 16px 34px rgba(35, 124, 141, 0.25);
}

.button-primary:hover {
  background: #1f6f80;
  box-shadow: 0 18px 42px rgba(35, 124, 141, 0.31);
}

.button-secondary {
  border-color: var(--line);
  background: rgba(255, 255, 255, 0.82);
  color: var(--navy);
}

.button-secondary:hover {
  border-color: rgba(35, 124, 141, 0.34);
  box-shadow: var(--soft-shadow);
}

.button-small {
  min-height: var(--button-height-small);
  padding: 0 var(--button-padding-x-small);
  font-size: 0.86rem;
}

.login-button {
  min-width: 88px;
  background: rgba(255, 255, 255, 0.7);
}

.full-width {
  width: 100%;
}

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

.hero {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(480px, 1.1fr);
  align-items: center;
  gap: clamp(36px, 6vw, 72px);
  min-height: calc(100vh - var(--header-height) - 20px);
  padding: clamp(60px, 8vw, 104px) 0 72px;
}

.eyebrow {
  margin: 0 0 13px;
  color: var(--teal);
  font-size: 0.8rem;
  font-weight: 850;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

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

h1,
h2,
h3 {
  font-family: "Roca Two", Georgia, "Times New Roman", serif;
  letter-spacing: 0;
  color: var(--navy);
}

h1 {
  max-width: 690px;
  margin-bottom: 22px;
  font-size: clamp(2.45rem, 4.1vw, 3.85rem);
  line-height: 0.96;
}

h2 {
  margin-bottom: 16px;
  font-size: clamp(2.2rem, 4vw, 4.15rem);
  line-height: 1;
}

h3 {
  margin-bottom: 10px;
  font-size: 1.35rem;
  line-height: 1.14;
}

.hero-text {
  max-width: 590px;
  margin-bottom: 30px;
  color: rgba(9, 34, 57, 0.75);
  font-size: clamp(1.05rem, 1.6vw, 1.28rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--button-gap);
  margin-bottom: 28px;
}

.section-actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--button-gap);
  align-items: center;
  margin-top: clamp(1.25rem, 3vw, 2rem);
}

.content-grid + .section-actions,
.service-flow-list + .section-actions,
.section-heading + .section-actions {
  margin-top: clamp(1.5rem, 3.5vw, 2.35rem);
}

.hero-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
}

.hero-proof span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 24px;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: rgba(12, 44, 71, 0.72);
  font-size: 0.86rem;
  font-weight: 750;
}

.hero-proof span::before {
  content: "";
  width: 7px;
  height: 7px;
  flex: 0 0 7px;
  border-radius: 999px;
  background: var(--teal);
  box-shadow: 0 0 0 4px rgba(35, 124, 141, 0.1);
}

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

.page-hero .hero-visual:has(.app-image-frame.expandable-preview) {
  isolation: isolate;
}

.page-hero .hero-visual:has(.app-image-frame.expandable-preview)::before,
.page-hero .hero-visual:has(.app-image-frame.expandable-preview)::after {
  content: "";
  position: absolute;
  pointer-events: none;
}

.page-hero .hero-visual:has(.app-image-frame.expandable-preview)::before {
  inset: clamp(20px, 3.4vw, 42px) clamp(-14px, -1.2vw, -8px) clamp(-20px, -1.8vw, -12px) clamp(42px, 5.5vw, 86px);
  z-index: 0;
  border: 1px solid rgba(12, 44, 71, 0.08);
  border-radius: calc(var(--radius) + 22px);
  background:
    linear-gradient(90deg, rgba(12, 44, 71, 0.055) 1px, transparent 1px) 0 0 / 40px 40px,
    linear-gradient(180deg, rgba(12, 44, 71, 0.045) 1px, transparent 1px) 0 0 / 40px 40px,
    linear-gradient(135deg, rgba(255, 255, 255, 0.9), rgba(181, 217, 224, 0.28) 48%, rgba(255, 240, 224, 0.34));
  box-shadow: 0 28px 70px rgba(12, 44, 71, 0.1);
  transform: rotate(-3deg);
}

.page-hero .hero-visual:has(.app-image-frame.expandable-preview)::after {
  left: clamp(-8px, -0.8vw, -4px);
  bottom: clamp(-18px, -1.4vw, -10px);
  z-index: 1;
  width: clamp(168px, 20vw, 262px);
  aspect-ratio: 2.2 / 1;
  border: 1px solid rgba(35, 124, 141, 0.16);
  border-radius: calc(var(--radius) + 12px);
  background:
    linear-gradient(90deg, rgba(35, 124, 141, 0.92), rgba(35, 124, 141, 0.74)) 18px 18px / 54px 10px no-repeat,
    linear-gradient(90deg, rgba(12, 44, 71, 0.16), rgba(12, 44, 71, 0.06)) 18px 40px / 86px 7px no-repeat,
    linear-gradient(90deg, rgba(181, 217, 224, 0.7), rgba(181, 217, 224, 0.22)) 18px 62px / calc(100% - 36px) 8px no-repeat,
    linear-gradient(90deg, rgba(245, 203, 81, 0.72), rgba(245, 203, 81, 0.16)) 18px 80px / calc(100% - 66px) 8px no-repeat,
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(181, 217, 224, 0.2));
  box-shadow: 0 18px 45px rgba(12, 44, 71, 0.12);
  transform: rotate(4deg);
}

.page-hero .hero-visual .app-image-frame.expandable-preview {
  z-index: 2;
}

.expandable-preview {
  cursor: zoom-in;
}

.expandable-preview:focus-visible {
  outline: 3px solid rgba(8, 179, 208, 0.55);
  outline-offset: 4px;
}

.expandable-preview::before {
  content: "";
  position: absolute;
  right: clamp(16px, 4vw, 42px);
  bottom: clamp(14px, 3vw, 34px);
  z-index: 5;
  width: clamp(104px, 14vw, 154px);
  aspect-ratio: 9 / 16;
  overflow: hidden;
  border: 8px solid var(--white);
  border-radius: 28px;
  background:
    url("assets/images/agile-app-mobile-open-items.png") center top / contain no-repeat,
    var(--white);
  box-shadow: 0 22px 44px rgba(12, 44, 71, 0.24);
  pointer-events: none;
}

.expandable-preview::after {
  content: "Click to expand";
  position: absolute;
  top: 16px;
  right: 16px;
  z-index: 6;
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 11px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.88);
  color: var(--navy);
  font-size: 0.74rem;
  font-weight: 850;
  box-shadow: 0 8px 22px rgba(12, 44, 71, 0.12);
  pointer-events: none;
}

.mobile-app-overlay {
  position: absolute;
  right: clamp(16px, 4vw, 42px);
  bottom: clamp(-32px, -2vw, -18px);
  z-index: 5;
  width: clamp(104px, 14vw, 154px);
  aspect-ratio: 9 / 16;
  overflow: hidden;
  border: 8px solid var(--white);
  border-radius: 28px;
  background: var(--white);
  box-shadow: 0 22px 44px rgba(12, 44, 71, 0.24);
  pointer-events: none;
}

.mobile-app-overlay img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center top;
  filter: saturate(0.96);
}

.app-image-frame:has(.mobile-app-overlay)::before {
  content: none;
}

.expand-hint {
  position: absolute;
  top: 16px;
  right: 16px;
  z-index: 6;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  min-height: 30px;
  padding: 0 11px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.88);
  color: var(--navy);
  font-size: 0.74rem;
  font-weight: 850;
  box-shadow: 0 8px 22px rgba(12, 44, 71, 0.12);
  pointer-events: none;
}

.expand-hint svg {
  width: 14px;
  height: 14px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.industry-header-preview {
  position: relative;
  width: min(620px, 100%);
  min-height: clamp(278px, 29vw, 390px);
  margin-inline: auto;
}

.industry-header-shot {
  position: relative;
  display: block;
  padding: 0;
  border: 0;
  background: transparent;
  color: inherit;
  font: inherit;
  cursor: zoom-in;
  appearance: none;
}

.industry-header-shot:focus-visible {
  outline: 3px solid rgba(8, 179, 208, 0.55);
  outline-offset: 6px;
}

.industry-header-shot img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
  filter: saturate(0.98);
}

.industry-header-shot-desktop {
  width: min(590px, 100%);
}

.industry-header-shot-desktop img {
  border: 1px solid rgba(12, 44, 71, 0.12);
  border-radius: calc(var(--radius) + 8px);
  box-shadow: 0 24px 58px rgba(12, 44, 71, 0.13);
}

.industry-header-shot-mobile {
  position: absolute;
  right: clamp(10px, 3vw, 34px);
  bottom: clamp(-22px, -1.5vw, -12px);
  z-index: 3;
  width: clamp(104px, 14vw, 156px);
}

.industry-header-shot-mobile img {
  border: 7px solid var(--white);
  border-radius: 26px;
  background: var(--white);
  box-shadow: 0 22px 44px rgba(12, 44, 71, 0.24);
}

.industry-header-shot .expand-hint {
  top: 12px;
  right: 12px;
}

.industry-header-shot-mobile .expand-hint {
  top: auto;
  right: 50%;
  bottom: 10px;
  min-height: 24px;
  padding: 0 8px;
  font-size: 0.62rem;
  opacity: 0;
  transform: translateX(50%) translateY(4px);
  transition: opacity 160ms ease, transform 160ms ease;
}

.industry-header-shot-mobile:hover .expand-hint,
.industry-header-shot-mobile:focus-visible .expand-hint {
  opacity: 1;
  transform: translateX(50%);
}

.dashboard-shell {
  position: relative;
  display: grid;
  grid-template-columns: 160px minmax(0, 1fr);
  gap: 18px;
  min-height: 620px;
  padding: 18px;
  overflow: hidden;
  border: 1px solid rgba(12, 44, 71, 0.1);
  border-radius: var(--radius-lg);
  background:
    linear-gradient(130deg, rgba(255, 255, 255, 0.98), rgba(181, 217, 224, 0.26)),
    var(--white);
  box-shadow: var(--shadow);
}

.dashboard-sidebar {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 18px 12px;
  border: 1px solid rgba(12, 44, 71, 0.08);
  border-radius: var(--radius);
  background: var(--navy);
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.82rem;
  font-weight: 750;
}

.sidebar-dot {
  width: 38px;
  height: 38px;
  margin-bottom: 18px;
  border-radius: 50%;
  background: url("assets/images/agile-circle-icon-teal.png") center / cover no-repeat;
  box-shadow: 0 8px 18px rgba(8, 179, 208, 0.2);
}

.dashboard-sidebar span:not(.sidebar-dot) {
  padding: 10px 11px;
  border-radius: var(--radius-sm);
}

.dashboard-sidebar .active {
  background: rgba(255, 255, 255, 0.12);
  color: var(--white);
}

.dashboard-main {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-rows: auto auto 1fr auto;
  gap: 16px;
  min-width: 0;
}

.dashboard-topbar,
.metric-card,
.chart-card,
.transactions-card,
.report-preview,
.mini-dashboard {
  border: 1px solid rgba(12, 44, 71, 0.1);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 16px 34px rgba(12, 44, 71, 0.07);
}

.dashboard-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 18px;
}

.dashboard-topbar p,
.chart-header span,
.transaction-header span,
.metric-card span,
.report-header p,
.report-card span,
.mini-header span {
  margin: 0;
  color: var(--muted);
  font-size: 0.84rem;
  font-weight: 750;
}

.dashboard-topbar strong,
.chart-header strong,
.transaction-header strong,
.metric-card strong,
.report-header strong,
.report-card strong,
.mini-header strong {
  display: block;
  color: var(--navy);
  font-weight: 850;
}

.status-pill {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(8, 179, 208, 0.12);
  color: var(--teal);
  font-size: 0.78rem;
  font-weight: 850;
}

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

.metric-card {
  padding: 18px;
}

.metric-card strong {
  margin: 6px 0 3px;
  font-size: 1.58rem;
}

.metric-card small,
.report-card small {
  color: var(--teal);
  font-size: 0.78rem;
  font-weight: 800;
}

.chart-card {
  padding: 18px;
}

.chart-header,
.transaction-header,
.report-header,
.mini-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 16px;
}

.line-chart {
  height: 184px;
  overflow: hidden;
  border-radius: var(--radius-sm);
  background: linear-gradient(180deg, rgba(181, 217, 224, 0.2), rgba(255, 240, 224, 0.38));
}

.line-chart svg {
  width: 100%;
  height: 100%;
}

.grid-line {
  fill: none;
  stroke: rgba(12, 44, 71, 0.08);
  stroke-width: 1;
}

.chart-fill {
  fill: rgba(8, 179, 208, 0.15);
}

.chart-line {
  fill: none;
  stroke: var(--teal);
  stroke-width: 5;
  stroke-linecap: round;
}

.transactions-card {
  padding: 18px;
}

.transaction-row {
  display: grid;
  grid-template-columns: 1.3fr 1fr 0.8fr auto;
  align-items: center;
  gap: 10px;
  min-height: 46px;
  padding: 8px 10px;
  border-radius: var(--radius-sm);
  color: rgba(9, 34, 57, 0.72);
  font-size: 0.82rem;
}

.transaction-row + .transaction-row {
  margin-top: 6px;
}

.transaction-row.highlighted {
  outline: 2px solid rgba(249, 139, 136, 0.55);
  background: rgba(255, 225, 194, 0.35);
}

.merchant {
  color: var(--navy);
  font-weight: 850;
}

.category {
  font-weight: 650;
}

.transaction-row strong {
  color: var(--navy);
}

.tag {
  display: inline-flex;
  align-items: center;
  min-height: 26px;
  padding: 0 9px;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 850;
  white-space: nowrap;
}

.tag-teal {
  background: rgba(35, 124, 141, 0.12);
  color: var(--teal);
}

.tag-sand {
  background: rgba(255, 225, 194, 0.8);
  color: var(--russet);
}

.tag-blue {
  background: rgba(181, 217, 224, 0.45);
  color: var(--navy);
}

.annotation {
  position: absolute;
  z-index: 3;
  max-width: 210px;
  padding: 12px 14px;
  border: 1px solid rgba(12, 44, 71, 0.1);
  border-radius: var(--radius);
  background: var(--sand);
  box-shadow: 0 16px 36px rgba(12, 44, 71, 0.14);
  color: var(--navy);
  transform: rotate(-2deg);
}

.annotation strong {
  display: block;
  font-family: "Marker Felt", "Comic Sans MS", cursive;
  font-size: 0.94rem;
  line-height: 1.2;
}

.note-label {
  display: inline-block;
  margin-bottom: 4px;
  color: var(--russet);
  font-size: 0.7rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.annotation-one {
  top: 64px;
  right: 18px;
}

.annotation-two {
  right: 56px;
  bottom: 112px;
  background: #ffe7e6;
  transform: rotate(3deg);
}

.note-arrow {
  position: absolute;
  right: 100%;
  top: 26px;
  width: 58px;
  height: 28px;
  border-bottom: 3px solid var(--blush);
  border-left: 3px solid var(--blush);
  border-radius: 0 0 0 24px;
}

.logos-band {
  width: min(calc(100% - 40px), var(--max-width));
  margin: 0 auto;
  padding: 24px 0 74px;
  color: var(--muted);
  text-align: center;
}

.logos-band p {
  margin-bottom: 18px;
  font-size: 0.82rem;
  font-weight: 850;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.logo-row {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 12px;
}

.logo-row span {
  display: grid;
  min-height: 62px;
  place-items: center;
  border: 1px solid rgba(12, 44, 71, 0.09);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.64);
  color: rgba(12, 44, 71, 0.52);
  font-family: "Roca Two", Georgia, serif;
  font-size: 1.1rem;
  font-weight: 800;
}

.steps-section,
.feature-section,
.pricing-section,
.proof-section,
.difference-section {
  padding: 94px 0;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 42px;
}

.section-heading h2 {
  max-width: 14ch;
  font-size: clamp(2.25rem, 3.5vw, 3.75rem);
  line-height: 1.02;
}

.section-heading.centered {
  margin-inline: auto;
  text-align: center;
}

.section-heading p:not(.eyebrow),
.deep-copy p,
.final-copy p {
  max-width: 650px;
  color: rgba(9, 34, 57, 0.68);
  font-size: 1.05rem;
}

.steps-grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.steps-grid.five-step-grid {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.steps-grid::before {
  content: "";
  position: absolute;
  top: 44px;
  left: 12%;
  right: 12%;
  height: 2px;
  background: linear-gradient(90deg, rgba(35, 124, 141, 0.1), rgba(35, 124, 141, 0.42), rgba(35, 124, 141, 0.1));
}

.step-card,
.feature-card,
.pricing-card,
.layer-card,
.proof-metrics article {
  position: relative;
  border: 1px solid rgba(12, 44, 71, 0.1);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.78);
  box-shadow: var(--soft-shadow);
}

.step-card {
  min-height: 260px;
  padding: 26px;
}

.step-icon,
.feature-icon {
  display: grid;
  width: 52px;
  height: 52px;
  place-items: center;
  margin-bottom: 24px;
  border-radius: var(--radius);
  background: rgba(35, 124, 141, 0.1);
  color: var(--teal);
}

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

.step-number {
  position: absolute;
  top: 22px;
  right: 24px;
  color: rgba(8, 179, 208, 0.3);
  font-size: 1.6rem;
  font-weight: 900;
}

.step-card p,
.feature-card p,
.pricing-card p,
.layer-card li,
.proof-metrics span {
  color: rgba(9, 34, 57, 0.66);
}

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

.feature-grid.five-card-grid {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

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

.feature-card:hover {
  transform: translateY(-4px);
  border-color: rgba(35, 124, 141, 0.28);
  box-shadow: 0 20px 46px rgba(12, 44, 71, 0.13);
}

.feature-card a {
  display: inline-flex;
  margin-top: 10px;
  color: var(--teal);
  font-size: 0.9rem;
  font-weight: 850;
}

.deep-dive {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
  align-items: center;
  gap: clamp(36px, 6vw, 78px);
  padding: 98px 0;
}

.report-preview {
  position: relative;
  padding: 24px;
  background:
    linear-gradient(140deg, rgba(255, 255, 255, 0.98), rgba(255, 240, 224, 0.55)),
    var(--white);
}

.report-preview::after {
  content: "";
  position: absolute;
  inset: 20px;
  z-index: -1;
  border-radius: var(--radius-lg);
  background: var(--light-blue);
  transform: translate(18px, 18px);
}

.report-header span {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(35, 124, 141, 0.12);
  color: var(--teal);
  font-size: 0.78rem;
  font-weight: 850;
}

.report-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-bottom: 16px;
}

.report-card {
  border: 1px solid rgba(12, 44, 71, 0.08);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.82);
}

.report-card.compact {
  padding: 18px;
}

.report-card strong {
  margin: 6px 0 3px;
  font-size: 1.42rem;
}

.review-board {
  display: grid;
  grid-template-columns: 160px minmax(0, 1fr);
  align-items: center;
  gap: 20px;
  min-height: 220px;
  padding: 22px;
  border: 1px solid rgba(12, 44, 71, 0.08);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.76);
}

.donut {
  width: 140px;
  aspect-ratio: 1;
  border-radius: 50%;
  background:
    radial-gradient(circle at center, var(--white) 0 47%, transparent 48%),
    conic-gradient(var(--teal) 0 62%, var(--dolphin) 62% 84%, var(--sand) 84% 100%);
  box-shadow: inset 0 0 0 1px rgba(12, 44, 71, 0.04);
}

.review-list {
  display: grid;
  gap: 10px;
}

.review-item {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  min-height: 44px;
  align-items: center;
  padding: 0 14px;
  border-radius: var(--radius-sm);
  background: rgba(181, 217, 224, 0.24);
  color: var(--muted);
  font-size: 0.9rem;
}

.review-item strong {
  color: var(--teal);
  font-size: 0.78rem;
}

.review-item.focus {
  outline: 2px solid rgba(249, 139, 136, 0.55);
  background: rgba(255, 225, 194, 0.38);
}

.human-note {
  display: inline-flex;
  flex-direction: column;
  gap: 2px;
  max-width: 270px;
  margin-top: 18px;
  padding: 14px 16px;
  border-radius: var(--radius);
  background: #ffe7e6;
  box-shadow: var(--soft-shadow);
  transform: rotate(-1.5deg);
}

.human-note span {
  color: var(--russet);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.human-note strong {
  font-family: "Marker Felt", "Comic Sans MS", cursive;
  color: var(--navy);
}

.deep-copy {
  max-width: 560px;
}

.check-list,
.pricing-card ul,
.layer-card ul {
  display: grid;
  gap: 12px;
  padding: 0;
  margin: 24px 0 0;
  list-style: none;
}

.check-list li,
.pricing-card li,
.layer-card li {
  position: relative;
  padding-left: 30px;
}

.check-list li::before,
.pricing-card li::before,
.layer-card li::before,
.mini-row::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.28em;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: rgba(35, 124, 141, 0.12);
}

.check-list li::after,
.pricing-card li::after,
.layer-card li::after,
.mini-row::after {
  content: "";
  position: absolute;
  left: 6px;
  top: calc(0.28em + 4px);
  width: 5px;
  height: 8px;
  border-right: 2px solid var(--teal);
  border-bottom: 2px solid var(--teal);
  transform: rotate(42deg);
}

.difference-section {
  border-block: 1px solid rgba(12, 44, 71, 0.08);
}

.layer-system {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 84px minmax(0, 1fr);
  align-items: stretch;
  gap: 18px;
}

.layer-card {
  min-height: 364px;
  padding: 30px;
}

.layer-card > span {
  display: inline-flex;
  margin-bottom: 18px;
  color: var(--teal);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.software-layer {
  background: linear-gradient(145deg, var(--navy), #123d5f);
}

.software-layer h3,
.software-layer li {
  color: var(--white);
}

.software-layer > span {
  color: var(--sand);
}

.software-layer li::before {
  background: rgba(255, 255, 255, 0.16);
}

.software-layer li::after {
  border-color: var(--sand);
}

.human-layer {
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.9), rgba(255, 225, 194, 0.42));
}

.system-connector {
  display: grid;
  place-items: center;
}

.system-connector span {
  position: relative;
  width: 100%;
  height: 2px;
  background: rgba(35, 124, 141, 0.35);
}

.system-connector span::before,
.system-connector span::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--teal);
  transform: translateY(-50%);
}

.system-connector span::before {
  left: 0;
}

.system-connector span::after {
  right: 0;
}

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

.pricing-card {
  display: flex;
  flex-direction: column;
  min-height: 494px;
  padding: 28px;
}

.pricing-card.featured {
  border-color: rgba(35, 124, 141, 0.4);
  background: var(--white);
  box-shadow: 0 24px 70px rgba(35, 124, 141, 0.17);
  transform: translateY(-14px);
}

.popular-badge {
  align-self: flex-start;
  margin-bottom: 18px;
  padding: 7px 12px;
  border-radius: 999px;
  background: var(--maize);
  color: var(--navy);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.pricing-top span {
  display: block;
  margin-bottom: 8px;
  color: var(--teal);
  font-size: 0.9rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.pricing-top p {
  min-height: 48px;
  margin-bottom: 14px;
}

.pricing-top strong {
  color: var(--navy);
  font-family: "Roca Two", Georgia, serif;
  font-size: 3.2rem;
  line-height: 1;
}

.pricing-top small {
  color: var(--muted);
  font-family: "Glacial Indifference", "Avenir Next", sans-serif;
  font-size: 1rem;
}

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

.pricing-card .button {
  margin-top: auto;
}

.proof-section {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(360px, 1.1fr);
  align-items: center;
  gap: 44px;
}

.proof-content blockquote {
  max-width: 620px;
  margin: 24px 0 10px;
  color: var(--navy);
  font-family: "Roca Two", Georgia, serif;
  font-size: clamp(1.75rem, 3vw, 3rem);
  line-height: 1.05;
}

.proof-content cite {
  color: var(--teal);
  font-style: normal;
  font-weight: 850;
}

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

.proof-metrics article {
  display: grid;
  min-height: 174px;
  align-content: center;
  padding: 24px;
}

.proof-metrics strong {
  display: block;
  margin-bottom: 6px;
  color: var(--navy);
  font-family: "Roca Two", Georgia, serif;
  font-size: 2.45rem;
  line-height: 1;
}

.proof-metrics span {
  font-weight: 750;
}

.final-cta {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 380px;
  align-items: center;
  gap: clamp(28px, 6vw, 72px);
  padding: 78px;
  margin-bottom: 44px;
  overflow: hidden;
  border-radius: var(--radius-lg);
  background:
    linear-gradient(130deg, rgba(12, 44, 71, 0.98), rgba(35, 124, 141, 0.94)),
    var(--navy);
  box-shadow: var(--shadow);
}

.final-copy h2,
.final-copy p,
.final-copy .eyebrow {
  color: var(--white);
}

.final-copy .eyebrow {
  color: var(--sand);
}

.final-copy p {
  color: rgba(255, 255, 255, 0.72);
}

.final-copy .button-secondary {
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.2);
}

.human-story {
  display: grid;
  grid-template-columns: minmax(260px, 0.68fr) minmax(0, 1fr);
  gap: clamp(22px, 4vw, 46px);
  align-items: center;
  padding-block: clamp(26px, 4vw, 46px);
}

.human-story--reverse .human-story-photo {
  order: 2;
}

.human-story--reverse .human-story-copy {
  order: 1;
}

.human-story-photo {
  position: relative;
  overflow: hidden;
  margin: 0;
  border: 1px solid rgba(12, 44, 71, 0.1);
  border-radius: var(--radius);
  aspect-ratio: 4 / 3;
  background:
    linear-gradient(135deg, rgba(181, 217, 224, 0.22), rgba(255, 240, 224, 0.48)),
    rgba(255, 255, 255, 0.86);
  box-shadow: var(--shadow-soft);
}

.human-story-photo img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  filter: saturate(0.92) contrast(0.98);
}

.human-story-photo figcaption {
  position: absolute;
  right: 14px;
  bottom: 14px;
  max-width: min(84%, 320px);
  padding: 10px 13px;
  border: 1px solid rgba(12, 44, 71, 0.1);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
  color: var(--navy);
  font-size: 0.88rem;
  font-weight: 850;
  line-height: 1.25;
  box-shadow: var(--soft-shadow);
}

.human-story-copy h2 {
  max-width: 700px;
  font-size: clamp(2rem, 3.6vw, 3.7rem);
}

.human-story-copy p:not(.eyebrow) {
  max-width: 680px;
  color: rgba(9, 34, 57, 0.72);
  font-size: 1.05rem;
}

.updates-signup {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(360px, 1.08fr);
  align-items: center;
  gap: clamp(28px, 5vw, 62px);
  padding: clamp(34px, 5vw, 54px);
  margin-bottom: 36px;
  border: 1px solid rgba(12, 44, 71, 0.1);
  border-radius: var(--radius-lg);
  background:
    linear-gradient(135deg, rgba(181, 217, 224, 0.32), rgba(255, 240, 224, 0.6)),
    var(--white);
  box-shadow: var(--shadow-soft);
}

.updates-signup-copy h2 {
  max-width: 650px;
  font-size: clamp(2.2rem, 4vw, 4.2rem);
}

.updates-signup-copy p:not(.eyebrow) {
  max-width: 610px;
  color: rgba(9, 34, 57, 0.72);
  font-size: 1.08rem;
}

.updates-signup-form {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  padding: 22px;
  border: 1px solid rgba(12, 44, 71, 0.09);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 18px 44px rgba(12, 44, 71, 0.09);
}

.updates-signup-form label {
  font-size: 0.9rem;
}

.updates-signup-form button,
.updates-signup-form .field-error,
.updates-signup-form .signup-confirmation {
  grid-column: 1 / -1;
}

.signup-confirmation {
  display: none;
  margin: 0;
  padding: 14px 16px;
  border-radius: var(--radius-sm);
  background: rgba(181, 217, 224, 0.28);
  color: var(--teal);
  font-weight: 850;
}

.signup-confirmation.is-visible {
  display: block;
}

.mini-dashboard {
  padding: 20px;
  background: rgba(255, 255, 255, 0.96);
}

.mini-row {
  position: relative;
  min-height: 44px;
  padding: 11px 12px 11px 34px;
  border-radius: var(--radius-sm);
  color: var(--navy);
  font-weight: 800;
}

.mini-row + .mini-row {
  margin-top: 8px;
}

.mini-row.done {
  background: rgba(181, 217, 224, 0.25);
}

.mini-row::before {
  left: 10px;
  top: 13px;
}

.mini-row::after {
  left: 16px;
  top: 17px;
}

.site-footer {
  display: grid;
  grid-template-columns: minmax(240px, 1fr) minmax(0, 1.5fr);
  gap: 28px;
  width: min(calc(100% - 40px), var(--max-width));
  margin: 0 auto;
  padding: 34px 0 44px;
  border-top: 1px solid rgba(12, 44, 71, 0.1);
}

.footer-brand p {
  margin: 14px 0 0;
  color: var(--muted);
  font-weight: 400;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 14px 24px;
  color: rgba(12, 44, 71, 0.68);
  font-size: 0.92rem;
  font-weight: 750;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 600ms ease, transform 600ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

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

  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }

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

@media (max-width: 1080px) {
  .site-header {
    grid-template-columns: auto auto;
    justify-content: space-between;
    width: min(calc(100% - 24px), var(--max-width));
  }

  .nav-toggle {
    display: inline-block;
    order: 3;
  }

  .site-nav {
    position: fixed;
    inset: calc(var(--header-height) + 42px) 14px auto;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    max-height: calc(100dvh - var(--header-height) - 42px);
    overflow-y: auto;
    padding: 14px;
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    background: rgba(255, 255, 255, 0.96);
    box-shadow: var(--shadow);
  }

  .site-nav a {
    padding: 14px 16px;
    border-radius: var(--radius);
  }

  .nav-dropdown,
  .site-nav-list,
  .site-nav-list > li {
    display: grid;
    width: 100%;
    gap: 0;
  }

  .nav-dropdown::after,
  .site-nav-list > li.menu-item-has-children::after {
    content: none;
  }

  .nav-parent::after,
  .site-nav-list > .menu-item-has-children > a::after {
    margin-left: auto;
  }

  .nav-dropdown-menu,
  .site-nav-list .sub-menu {
    position: static;
    display: grid;
    min-width: 0;
    padding: 0 0 8px 14px;
    border: 0;
    background: transparent;
    box-shadow: none;
    opacity: 1;
    pointer-events: auto;
    transform: none;
    visibility: visible;
  }

  .nav-dropdown:hover .nav-dropdown-menu,
  .nav-dropdown:focus-within .nav-dropdown-menu,
  .site-nav-list > li:hover > .sub-menu,
  .site-nav-list > li:focus-within > .sub-menu {
    transform: none;
  }

  .nav-dropdown-menu a,
  .site-nav-list .sub-menu a {
    padding: 10px 14px;
    color: rgba(12, 44, 71, 0.68);
    white-space: normal;
  }

  .site-nav a:hover {
    background: rgba(181, 217, 224, 0.25);
  }

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

  .header-actions {
    display: none;
  }

  .site-nav .header-actions,
  .site-nav .nav-actions {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.75rem;
    margin-top: 0.75rem;
    padding-top: 0.85rem;
    border-top: 1px solid rgba(12, 44, 71, 0.1);
  }

  .site-nav .site-search {
    width: 100%;
    height: auto;
    min-height: 48px;
    overflow: visible;
    background: rgba(181, 217, 224, 0.18);
  }

  .site-nav .site-search:hover,
  .site-nav .site-search:focus-within {
    width: 100%;
  }

  .site-nav .site-search input,
  .site-nav .site-search:hover input,
  .site-nav .site-search:focus-within input {
    width: 100%;
    opacity: 1;
    padding: 0 14px 0 4px;
  }

  .site-nav .login-button,
  .site-nav .button {
    width: 100%;
  }

  .search-results-panel {
    position: static;
    width: 100%;
    max-height: 48dvh;
    margin-top: 0.5rem;
  }

  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
    padding-top: 70px;
  }

  .dashboard-shell {
    max-width: 760px;
    margin-inline: auto;
  }

  .feature-grid,
  .proof-metrics {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .deep-dive,
  .proof-section,
  .final-cta,
  .human-story,
  .story-flow-section,
  .video-story-section,
  .updates-signup {
    grid-template-columns: 1fr;
  }

  .human-story--reverse .human-story-photo,
  .human-story--reverse .human-story-copy {
    order: initial;
  }

  .mini-dashboard {
    max-width: 500px;
  }
}

@media (max-width: 820px) {
  .section-shell,
  .logos-band,
  .site-footer {
    width: min(calc(100% - 28px), var(--max-width));
  }

  h1 {
    font-size: clamp(2.35rem, 10vw, 3.2rem);
  }

  h2 {
    font-size: clamp(2.1rem, 11vw, 3.2rem);
  }

  .dashboard-shell {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .dashboard-sidebar {
    flex-direction: row;
    align-items: center;
    overflow-x: auto;
    padding: 12px;
  }

  .sidebar-dot {
    flex: 0 0 auto;
    margin: 0 8px 0 0;
  }

  .dashboard-sidebar span:not(.sidebar-dot) {
    min-width: max-content;
  }

  .annotation {
    position: static;
    max-width: none;
    margin-top: 12px;
  }

  .note-arrow {
    display: none;
  }

  .metric-grid,
  .steps-grid,
  .feature-grid,
  .integration-cloud,
  .workflow-map,
  .story-flow-visual,
  .pricing-grid,
  .report-grid,
  .proof-metrics,
  .logo-row {
    grid-template-columns: 1fr;
  }

  .integration-center {
    grid-column: auto;
  }

  .integration-cloud > span {
    transform: none !important;
  }

  .integration-cloud::before,
  .integration-cloud::after {
    inset: 10% 6%;
  }

  .workflow-arrow {
    width: 2px;
    height: 26px;
    justify-self: center;
    border-top: 0;
    border-left: 2px solid rgba(35, 124, 141, 0.34);
  }

  .workflow-arrow::after {
    margin-top: 17px;
    margin-left: -6px;
    transform: rotate(135deg);
  }

  .story-flow-visual {
    min-height: auto;
  }

  .story-pipeline {
    grid-template-columns: repeat(3, 1fr);
  }

  .story-pipeline::before {
    top: 50%;
    bottom: auto;
    left: 24px;
    right: 24px;
    border-left: 0;
    border-top: 2px dashed rgba(255, 255, 255, 0.28);
  }

  .steps-grid::before {
    display: none;
  }

  .review-board {
    grid-template-columns: 1fr;
  }

  .donut {
    margin-inline: auto;
  }

  .layer-system {
    grid-template-columns: 1fr;
  }

  .system-connector {
    height: 48px;
  }

  .system-connector span {
    width: 2px;
    height: 100%;
  }

  .system-connector span::before,
  .system-connector span::after {
    left: 50%;
    transform: translateX(-50%);
  }

  .system-connector span::before {
    top: 0;
  }

  .system-connector span::after {
    top: auto;
    bottom: 0;
  }

  .pricing-card.featured {
    transform: none;
  }

  .final-cta {
    padding: 44px 22px;
  }

  .updates-signup {
    padding: 34px 20px;
  }

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

  .site-footer {
    grid-template-columns: 1fr;
  }

  .footer-links {
    justify-content: flex-start;
  }
}

@media (max-width: 560px) {
  .site-header {
    width: calc(100% - 20px);
    min-height: 64px;
    padding: 10px 12px;
  }

  .brand-text {
    display: none;
  }

  .hero {
    padding-top: 48px;
  }

  .button {
    width: 100%;
  }

  .logo-row span {
    width: 100%;
  }

  .hero-proof {
    gap: 9px 14px;
  }

  .home-conversion-section {
    border-radius: 22px;
  }

  .conversion-copy h2 {
    font-size: clamp(2.25rem, 11vw, 3.5rem);
  }

  .mobile-app-overlay {
    right: 12px;
    bottom: -18px;
    width: 86px;
    border-width: 6px;
    border-radius: 22px;
  }

  .expandable-preview::before {
    right: 12px;
    bottom: 12px;
    width: 86px;
    border-width: 6px;
    border-radius: 22px;
  }

  .industry-header-preview {
    width: min(460px, 100%);
    min-height: 0;
    padding-bottom: clamp(38px, 12vw, 64px);
  }

  .industry-header-shot-mobile {
    right: clamp(10px, 6vw, 26px);
    bottom: 0;
    width: clamp(92px, 28vw, 126px);
  }

  .industry-header-shot-mobile img {
    border-width: 6px;
    border-radius: 22px;
  }

  .page-hero .hero-visual:has(.app-image-frame.expandable-preview)::before {
    inset: 14px 2px -10px 24px;
    border-radius: 24px;
    transform: rotate(-2deg);
  }

  .page-hero .hero-visual:has(.app-image-frame.expandable-preview)::after {
    display: none;
  }

  .expand-hint {
    top: 10px;
    right: 10px;
  }

  .expandable-preview::after {
    top: 10px;
    right: 10px;
  }

  .dashboard-main {
    gap: 12px;
  }

  .dashboard-topbar,
  .chart-header,
  .transaction-header,
  .report-header,
  .mini-header {
    align-items: flex-start;
    flex-direction: column;
  }

  .transaction-row {
    grid-template-columns: 1fr;
    align-items: start;
    gap: 5px;
    padding: 12px;
  }

  .line-chart {
    height: 150px;
  }

  .steps-section,
  .feature-section,
  .pricing-section,
  .proof-section,
  .difference-section,
  .deep-dive,
  .human-story {
    padding: 68px 0;
  }

  .human-story-photo {
    aspect-ratio: 1.18 / 1;
  }

  .human-story-photo figcaption {
    left: 12px;
    right: 12px;
    max-width: none;
    border-radius: 18px;
  }
}

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

.page-hero {
  min-height: auto;
  padding-top: clamp(58px, 8vw, 92px);
  padding-bottom: clamp(58px, 8vw, 92px);
}

.breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  padding-top: 36px;
  color: rgba(12, 44, 71, 0.58);
  font-size: 0.88rem;
  font-weight: 750;
}

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

.breadcrumbs span:last-child {
  color: var(--navy);
}

.page-section {
  padding: 86px 0;
}

.content-grid {
  display: grid;
  gap: 18px;
}

.content-grid.two-col {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.content-grid.three-col {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.content-grid.four-col {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.detail-card {
  display: block;
  min-height: 230px;
  padding: 26px;
  border: 1px solid rgba(12, 44, 71, 0.1);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.78);
  box-shadow: var(--soft-shadow);
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

a.detail-card:hover {
  transform: translateY(-4px);
  border-color: rgba(35, 124, 141, 0.28);
  box-shadow: 0 20px 46px rgba(12, 44, 71, 0.13);
}

.detail-card > span {
  display: block;
  margin-bottom: 12px;
  color: var(--teal);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.service-card h3,
.feature-card-grid h3 {
  margin-top: 0;
}

.card-icon {
  display: inline-grid;
  width: 44px;
  height: 44px;
  place-items: center;
  margin-bottom: 0.9rem;
  border-radius: 15px;
  background: linear-gradient(135deg, rgba(35, 124, 141, 0.95), rgba(8, 179, 208, 0.74));
  color: var(--white);
  box-shadow: 0 14px 28px rgba(35, 124, 141, 0.2);
}

.card-icon svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.card-icon--heart svg,
.card-icon--star svg {
  fill: rgba(255, 255, 255, 0.18);
}

.detail-card h2 {
  margin-bottom: 12px;
  font-size: clamp(1.35rem, 2vw, 1.75rem);
  line-height: 1.08;
}

.detail-card h3 {
  font-size: clamp(1.35rem, 2vw, 1.8rem);
}

.detail-card p {
  color: rgba(9, 34, 57, 0.67);
}

.card-cta {
  display: inline-flex;
  margin-top: 12px;
  color: var(--teal);
  font-size: 0.9rem;
  font-weight: 900;
}

.integration-cloud-section {
  padding: 62px 0 34px;
}

.integration-cloud {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  align-items: center;
  width: 100%;
  max-width: 1120px;
  margin: 24px auto 0;
  padding: clamp(18px, 3vw, 28px);
  border: 1px solid rgba(12, 44, 71, 0.1);
  border-radius: calc(var(--radius) + 8px);
  background:
    radial-gradient(circle at 50% 50%, rgba(8, 179, 208, 0.12), transparent 34%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.94), rgba(181, 217, 224, 0.2));
  box-shadow: var(--soft-shadow);
  overflow: hidden;
}

.integration-cloud::before,
.integration-cloud::after {
  content: "";
  position: absolute;
  inset: 18% 8%;
  border: 1px dashed rgba(35, 124, 141, 0.22);
  border-radius: 999px;
  pointer-events: none;
}

.integration-cloud::after {
  inset: 30% 18%;
  transform: rotate(-7deg);
}

.integration-cloud > span,
.integration-center {
  position: relative;
  z-index: 1;
}

.integration-cloud > span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 10px 12px;
  border: 1px solid rgba(12, 44, 71, 0.1);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.86);
  color: rgba(9, 34, 57, 0.78);
  font-size: clamp(0.78rem, 1.4vw, 0.92rem);
  font-weight: 850;
  line-height: 1.2;
  min-width: 0;
  overflow-wrap: anywhere;
  text-align: center;
  box-shadow: 0 12px 28px rgba(12, 44, 71, 0.07);
}

.integration-cloud > span:nth-of-type(3n + 1) {
  background: rgba(181, 217, 224, 0.42);
  border-color: rgba(8, 179, 208, 0.18);
  color: var(--navy);
}

.integration-cloud > span:nth-of-type(3n + 2) {
  background: rgba(255, 225, 194, 0.58);
  border-color: rgba(205, 139, 97, 0.14);
}

.integration-cloud > span:nth-of-type(4n) {
  transform: none;
}

.integration-cloud > span:nth-of-type(5n) {
  transform: none;
}

.connected-apps-card {
  margin: 0;
  padding: clamp(1rem, 2.2vw, 1.45rem);
  border: 1px solid rgba(12, 44, 71, 0.1);
  border-radius: calc(var(--radius) + 10px);
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 20px 58px rgba(12, 44, 71, 0.1);
}

.connected-apps-card img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
}

.connected-apps-card--inline {
  margin-top: 1.4rem;
  padding: 0.85rem;
  background: rgba(255, 255, 255, 0.62);
  box-shadow: none;
}

.integration-center {
  grid-column: span 2;
  display: grid;
  gap: 8px;
  min-height: 168px;
  padding: 28px;
  border-radius: calc(var(--radius) + 4px);
  background: linear-gradient(135deg, var(--navy), var(--teal));
  color: white;
  box-shadow: 0 24px 50px rgba(12, 44, 71, 0.18);
}

.integration-center span {
  color: var(--sand);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.integration-center strong {
  font-family: "Roca Two", Georgia, "Times New Roman", serif;
  font-size: clamp(1.8rem, 3vw, 2.55rem);
  line-height: 0.98;
}

.integration-center small {
  color: rgba(255, 255, 255, 0.76);
  font-weight: 750;
}

.workflow-map-section {
  padding: 62px 0;
}

.workflow-map-section .workflow-map {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr) auto minmax(0, 1fr) auto minmax(0, 1fr);
  gap: 14px;
  align-items: stretch;
  margin-top: 34px;
}

.workflow-node {
  display: grid;
  gap: 10px;
  min-height: 186px;
  padding: 24px;
  border: 1px solid rgba(12, 44, 71, 0.1);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.82);
  box-shadow: var(--soft-shadow);
}

.workflow-node:not(.featured) {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(255, 240, 224, 0.26)),
    var(--white);
}

.workflow-node.featured {
  background: linear-gradient(135deg, rgba(12, 44, 71, 0.96), rgba(35, 124, 141, 0.92));
  color: white;
}

.workflow-node span {
  color: var(--teal);
  font-weight: 950;
  letter-spacing: 0.1em;
}

.workflow-node.featured span {
  color: var(--sand);
}

.workflow-node strong {
  font-family: "Roca Two", Georgia, "Times New Roman", serif;
  color: inherit;
  font-size: clamp(1.55rem, 2.2vw, 2rem);
  line-height: 1;
}

.workflow-node small {
  color: rgba(9, 34, 57, 0.65);
  font-size: 0.95rem;
  font-weight: 750;
  line-height: 1.45;
}

.workflow-node.featured small {
  color: rgba(255, 255, 255, 0.76);
}

.workflow-arrow {
  width: 34px;
  align-self: center;
  border-top: 2px solid rgba(35, 124, 141, 0.34);
}

.workflow-arrow::after {
  content: "";
  display: block;
  width: 9px;
  height: 9px;
  margin-top: -6px;
  margin-left: auto;
  border-top: 2px solid rgba(35, 124, 141, 0.62);
  border-right: 2px solid rgba(35, 124, 141, 0.62);
  transform: rotate(45deg);
}

.story-flow-section {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(360px, 1fr);
  gap: clamp(26px, 5vw, 72px);
  align-items: center;
  padding: 74px 0;
}

.story-flow-copy p:not(.eyebrow) {
  max-width: 620px;
  color: rgba(9, 34, 57, 0.68);
  font-size: clamp(1.02rem, 1.5vw, 1.18rem);
  line-height: 1.65;
}

.story-flow-copy .button {
  margin-top: 18px;
}

.story-flow-visual {
  position: relative;
  display: grid;
  grid-template-columns: minmax(160px, 0.9fr) 70px minmax(180px, 1fr);
  gap: 18px;
  align-items: center;
  min-height: 390px;
  padding: clamp(22px, 4vw, 40px);
  border: 1px solid rgba(12, 44, 71, 0.1);
  border-radius: calc(var(--radius) + 12px);
  background:
    radial-gradient(circle at 15% 15%, rgba(245, 203, 81, 0.2), transparent 26%),
    radial-gradient(circle at 86% 18%, rgba(8, 179, 208, 0.18), transparent 28%),
    linear-gradient(145deg, rgba(12, 44, 71, 0.96), rgba(35, 124, 141, 0.88));
  box-shadow: 0 34px 80px rgba(12, 44, 71, 0.2);
  overflow: hidden;
}

.story-flow-visual::before {
  content: "";
  position: absolute;
  inset: 20px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: calc(var(--radius) + 4px);
  pointer-events: none;
}

.story-cluster {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 12px;
}

.story-cluster span {
  width: fit-content;
  max-width: 100%;
  padding: 10px 14px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.9rem;
  font-weight: 850;
  backdrop-filter: blur(12px);
}

.story-cluster span:nth-child(2n) {
  justify-self: end;
  background: rgba(255, 225, 194, 0.18);
}

.story-cluster.compact span {
  justify-self: stretch;
}

.story-pipeline {
  position: relative;
  z-index: 1;
  display: grid;
  justify-items: center;
  gap: 18px;
}

.story-pipeline span {
  display: block;
  width: 46px;
  height: 46px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 50%;
  background: rgba(8, 179, 208, 0.3);
  box-shadow: 0 0 0 12px rgba(8, 179, 208, 0.08);
}

.story-pipeline::before {
  content: "";
  position: absolute;
  top: 18px;
  bottom: 18px;
  left: 50%;
  border-left: 2px dashed rgba(255, 255, 255, 0.28);
}

.story-result {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 12px;
  padding: 28px;
  border-radius: calc(var(--radius) + 4px);
  background: rgba(255, 255, 255, 0.94);
  color: var(--navy);
  box-shadow: 0 24px 50px rgba(12, 44, 71, 0.2);
}

.story-result::after {
  content: "";
  width: 62px;
  height: 5px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--dolphin), var(--maize), var(--blush));
}

.story-result span {
  color: var(--teal);
  font-size: 0.76rem;
  font-weight: 950;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.story-result strong {
  font-family: "Roca Two", Georgia, "Times New Roman", serif;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  line-height: 1;
}

.story-result small {
  color: rgba(9, 34, 57, 0.62);
  font-size: 1rem;
  font-weight: 800;
}

.video-story-section {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(420px, 1.08fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: center;
  padding: 76px 0;
}

.video-story-copy {
  display: grid;
  gap: 18px;
}

.video-story-copy h2 {
  max-width: 620px;
}

.video-story-copy p:not(.eyebrow) {
  max-width: 600px;
  color: rgba(9, 34, 57, 0.68);
  font-size: clamp(1.02rem, 1.5vw, 1.18rem);
  line-height: 1.65;
}

.compact-check-list {
  margin-top: 2px;
}

.inline-actions {
  justify-content: flex-start;
  margin-top: 6px;
}

.video-frame-card {
  position: relative;
  padding: clamp(10px, 1.8vw, 16px);
  border: 1px solid rgba(12, 44, 71, 0.12);
  border-radius: calc(var(--radius) + 14px);
  background:
    radial-gradient(circle at 12% 18%, rgba(8, 179, 208, 0.18), transparent 26%),
    radial-gradient(circle at 88% 0%, rgba(255, 225, 194, 0.56), transparent 30%),
    var(--white);
  box-shadow: 0 28px 70px rgba(12, 44, 71, 0.14);
}

.video-frame-card::before {
  content: "";
  position: absolute;
  inset: auto 10% -16px;
  height: 36px;
  border-radius: 999px;
  background: rgba(35, 124, 141, 0.16);
  filter: blur(22px);
}

.video-frame-card iframe {
  position: relative;
  z-index: 1;
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  border: 0;
  border-radius: calc(var(--radius) + 8px);
  background: var(--navy);
}

.related-links {
  padding: 70px 0;
}

.product-panel {
  max-width: 460px;
}

.dashboard-shell.product-mockup {
  display: block;
  aspect-ratio: 1440 / 1080;
  min-height: 0;
  padding: 0;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.24), rgba(181, 217, 224, 0.18)),
    url("assets/images/agile-app-desktop-reports.png") center / contain no-repeat,
    var(--white);
}

.dashboard-shell.product-mockup > *:not(.mobile-app-overlay):not(.expand-hint) {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.deep-dive > .dashboard-shell.product-mockup {
  background-image:
    linear-gradient(135deg, rgba(255, 255, 255, 0.24), rgba(181, 217, 224, 0.18)),
    url("assets/images/agile-app-mobile-open-items.png");
}

.mini-dashboard.product-panel {
  width: 100%;
  max-width: 620px;
  aspect-ratio: 1440 / 1080;
  min-height: 0;
  padding: 0;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.22), rgba(181, 217, 224, 0.18)),
    url("assets/images/agile-app-desktop-tasks.png") center / contain no-repeat,
    var(--white);
}

.hero-visual .mini-dashboard.product-panel {
  max-width: 760px;
  background-image:
    linear-gradient(135deg, rgba(255, 255, 255, 0.22), rgba(181, 217, 224, 0.18)),
    url("assets/images/agile-app-mobile-open-items.png");
}

.mini-dashboard.product-panel > *:not(.mobile-app-overlay):not(.expand-hint) {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.final-app-preview-wrap {
  align-self: center;
}

.final-app-preview {
  max-width: 620px;
  margin-left: auto;
  background: rgba(255, 255, 255, 0.92);
}

.final-app-preview .mobile-app-overlay {
  right: clamp(14px, 3vw, 34px);
  bottom: clamp(-18px, -1vw, -10px);
  width: clamp(96px, 11vw, 132px);
}

.final-cta:has(.industry-header-preview) {
  grid-template-columns: minmax(0, 1fr) minmax(320px, 520px);
}

.final-app-preview-wrap {
  justify-self: end;
  width: 100%;
}

.final-app-preview-wrap .industry-header-preview {
  width: min(520px, 100%);
  min-height: clamp(230px, 24vw, 330px);
  margin-inline: auto 0;
}

.final-app-preview-wrap .industry-header-shot-desktop {
  width: min(500px, 100%);
}

.final-app-preview-wrap .industry-header-shot-desktop img {
  border-color: rgba(255, 255, 255, 0.24);
  box-shadow: 0 24px 58px rgba(0, 0, 0, 0.22);
}

.final-app-preview-wrap .industry-header-shot-mobile {
  width: clamp(92px, 11vw, 132px);
}

@media (max-width: 1100px) {
  .final-cta:has(.industry-header-preview) {
    grid-template-columns: 1fr;
  }

  .final-app-preview-wrap {
    justify-self: center;
  }

  .final-app-preview-wrap .industry-header-preview {
    margin-inline: auto;
  }
}

@media (max-width: 760px) {
  .final-app-preview-wrap .industry-header-preview {
    min-height: 0;
  }
}

.table-wrap {
  overflow-x: auto;
  border: 1px solid rgba(12, 44, 71, 0.1);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.82);
  box-shadow: var(--soft-shadow);
}

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

.comparison-table th,
.comparison-table td {
  padding: 18px 22px;
  border-bottom: 1px solid rgba(12, 44, 71, 0.08);
  text-align: left;
}

.comparison-table th {
  color: var(--navy);
  font-family: "Roca Two", Georgia, serif;
  font-size: 1.2rem;
}

.comparison-table td {
  color: rgba(9, 34, 57, 0.72);
  font-weight: 700;
}

.timeline {
  display: grid;
  gap: 16px;
}

.timeline-item {
  display: grid;
  grid-template-columns: 80px minmax(0, 0.7fr) minmax(0, 1fr);
  gap: 22px;
  align-items: start;
  padding: 24px;
  border: 1px solid rgba(12, 44, 71, 0.1);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.8);
  box-shadow: var(--soft-shadow);
}

.timeline-item span {
  color: rgba(8, 179, 208, 0.32);
  font-size: 2rem;
  font-weight: 900;
}

.timeline-item h2 {
  margin: 0;
  font-size: clamp(1.35rem, 2.2vw, 1.9rem);
}

.timeline-item p {
  margin: 0;
  color: rgba(9, 34, 57, 0.67);
}

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

.faq-list details {
  border: 1px solid rgba(12, 44, 71, 0.1);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 12px 26px rgba(12, 44, 71, 0.06);
}

.faq-list summary {
  cursor: pointer;
  padding: 20px 22px;
  color: var(--navy);
  font-weight: 850;
}

.faq-list details p {
  margin: 0;
  padding: 0 22px 22px;
  color: rgba(9, 34, 57, 0.68);
}

.page-inline-cta {
  margin-top: 24px;
}

.pill-row,
.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 18px 0 28px;
}

.pill-row span,
.trust-row span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 13px;
  border: 1px solid rgba(12, 44, 71, 0.1);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  color: rgba(12, 44, 71, 0.72);
  font-size: 0.86rem;
  font-weight: 750;
}

.calculator-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  align-items: start;
  gap: 28px;
}

.calculator-card,
.estimate-card,
.quote-wizard {
  border: 1px solid rgba(12, 44, 71, 0.1);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.86);
  box-shadow: var(--shadow);
}

.calculator-card,
.estimate-card {
  padding: 28px;
}

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

.calculator-card h2 {
  grid-column: 1 / -1;
  margin-bottom: 4px;
  font-size: clamp(1.65rem, 2.4vw, 2.3rem);
}

label,
fieldset {
  display: grid;
  gap: 8px;
  color: var(--navy);
  font-weight: 850;
}

input,
select,
textarea {
  width: 100%;
  min-height: 48px;
  padding: 0 14px;
  border: 1px solid rgba(12, 44, 71, 0.15);
  border-radius: var(--radius-sm);
  background: var(--white);
  color: var(--ink);
}

textarea {
  padding-top: 12px;
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  outline: 3px solid rgba(8, 179, 208, 0.18);
  border-color: var(--teal);
}

.estimate-card {
  position: sticky;
  top: 110px;
}

.estimate-card span {
  display: block;
  color: var(--teal);
  font-size: 0.8rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.estimate-card strong {
  display: block;
  margin: 12px 0;
  color: var(--navy);
  font-family: "Roca Two", Georgia, serif;
  font-size: 2.6rem;
  line-height: 1;
}

.estimate-card p {
  color: rgba(9, 34, 57, 0.68);
}

.quote-hero {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(520px, 1.18fr);
  gap: clamp(34px, 6vw, 72px);
  align-items: start;
  padding: clamp(58px, 8vw, 96px) 0;
}

.quote-copy {
  position: sticky;
  top: 118px;
}

.quote-copy h1 {
  font-size: clamp(2.85rem, 5.4vw, 4.8rem);
}

.quote-copy p {
  color: rgba(9, 34, 57, 0.72);
  font-size: 1.12rem;
}

.quote-wizard {
  padding: 28px;
}

.progress-wrap {
  margin-bottom: 26px;
}

.progress-wrap span {
  display: block;
  margin-bottom: 8px;
  color: var(--teal);
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.progress-track {
  height: 10px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(181, 217, 224, 0.38);
}

.progress-track div {
  width: 25%;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--teal), var(--dolphin));
  transition: width 220ms ease;
}

.quote-step {
  display: none;
}

.quote-step.is-active {
  display: block;
}

.quote-step h2 {
  font-size: clamp(1.7rem, 2.5vw, 2.5rem);
}

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

.full-field {
  grid-column: 1 / -1;
}

fieldset {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  padding: 0;
  border: 0;
}

legend {
  grid-column: 1 / -1;
  margin-bottom: 10px;
  color: rgba(9, 34, 57, 0.68);
  font-weight: 700;
}

fieldset label {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 54px;
  padding: 12px;
  border: 1px solid rgba(12, 44, 71, 0.1);
  border-radius: var(--radius-sm);
  background: rgba(255, 240, 224, 0.36);
}

fieldset input {
  width: 18px;
  min-height: 18px;
}

.field-error {
  display: none;
  margin: 18px 0 0;
  color: #9b2c2c;
  font-weight: 850;
}

.field-error.is-visible {
  display: block;
}

.wizard-actions {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  margin-top: 28px;
}

[data-submit] {
  display: none;
}

.quote-confirmation {
  display: none;
  padding: 28px;
  border-radius: var(--radius);
  background: rgba(181, 217, 224, 0.24);
}

.quote-confirmation.is-visible {
  display: block;
}

.quote-wizard.is-complete > :not(.quote-confirmation) {
  display: none;
}

.expanded-footer {
  align-items: start;
  grid-template-columns: minmax(220px, 0.72fr) minmax(0, 1.6fr);
  gap: clamp(24px, 4vw, 56px);
  padding: 34px 0 58px;
}

.footer-column-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 18px clamp(22px, 3vw, 38px);
}

.footer-column-grid h2 {
  margin-bottom: 9px;
  font-size: 0.98rem;
}

.footer-column-grid nav {
  display: grid;
  align-content: start;
  gap: 7px;
}

.footer-column-grid a {
  color: rgba(12, 44, 71, 0.66);
  font-size: 0.86rem;
  font-weight: 750;
  line-height: 1.3;
}

.footer-column-grid a:hover {
  color: var(--teal);
}

.footer-quote {
  margin-top: 16px;
  min-height: var(--button-height);
  padding-inline: var(--button-padding-x);
}

.mobile-quote-cta {
  position: fixed;
  right: 14px;
  bottom: 14px;
  z-index: 60;
  display: none;
  min-height: var(--button-height);
  align-items: center;
  justify-content: center;
  padding: 0 var(--button-padding-x);
  border-radius: 999px;
  background: var(--teal);
  color: var(--white);
  box-shadow: 0 16px 34px rgba(35, 124, 141, 0.32);
  font-weight: 900;
  line-height: 1.1;
  text-align: center;
}

@media (max-width: 1180px) {
  .steps-grid.five-step-grid,
  .feature-grid.five-card-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .steps-grid.five-step-grid::before {
    display: none;
  }
}

@media (max-width: 1080px) {
  .service-card-grid,
  .content-grid.three-col,
  .content-grid.four-col,
  .calculator-layout,
  .quote-hero,
  .expanded-footer,
  .founder-story {
    grid-template-columns: 1fr;
  }

  .quote-copy,
  .estimate-card {
    position: static;
  }

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

  .team-photo-band {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 820px) {
  .content-grid.two-col,
  .calculator-card,
  .form-grid,
  fieldset {
    grid-template-columns: 1fr;
  }

  .timeline-item {
    grid-template-columns: 1fr;
  }

  .quote-hero {
    padding-top: 48px;
  }

  .product-services-section .section-actions {
    padding: 16px;
  }

  .founder-story {
    padding-top: 46px;
    padding-bottom: 46px;
  }

  .mobile-quote-cta {
    display: inline-flex;
  }

  body {
    padding-bottom: 66px;
  }
}

@media (max-width: 560px) {
  .page-section {
    padding: 64px 0;
  }

  .quote-wizard,
  .calculator-card,
  .estimate-card {
    padding: 20px;
  }

  .wizard-actions {
    flex-direction: column;
  }

  .footer-column-grid {
    grid-template-columns: 1fr;
  }
}


.pricing-estimator {
  padding: clamp(3rem, 7vw, 5.25rem) 0;
}

.estimator-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.75fr) minmax(0, 1.25fr);
  gap: 24px;
  align-items: stretch;
}

.estimator-controls,
.estimate-plan {
  border: 1px solid rgba(12, 44, 71, 0.1);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.86);
  box-shadow: var(--soft-shadow);
}

.estimator-controls {
  display: grid;
  gap: 24px;
  padding: 28px;
}

.estimator-controls label {
  gap: 12px;
}

.estimator-controls label strong {
  color: var(--teal);
  font-family: "Roca Two", Georgia, serif;
  font-size: 1.8rem;
  line-height: 1;
}

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

.estimator-controls p {
  margin: 0;
  color: rgba(9, 34, 57, 0.67);
  font-weight: 700;
}

.estimator-controls select {
  width: 100%;
  border: 1px solid rgba(12, 44, 71, 0.14);
  border-radius: 18px;
  background: var(--white);
  color: var(--navy);
}

.estimate-toggles {
  display: grid;
  gap: 0.65rem;
  padding: 1rem;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.66);
}

.estimate-toggles label {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  min-height: auto;
  font-size: 0.92rem;
  font-weight: 850;
}

.estimate-toggles input {
  width: 20px;
  height: 20px;
  accent-color: var(--teal);
}

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

.estimate-plan-grid.is-single-plan {
  grid-template-columns: minmax(0, 1fr);
}

.estimate-plan {
  display: flex;
  flex-direction: column;
  padding: clamp(1.35rem, 3vw, 2rem);
}

.estimate-plan[hidden] {
  display: none;
}

.pricing-estimator-v2 .estimate-plan:not(.featured) {
  border-color: rgba(8, 179, 208, 0.28);
  background:
    radial-gradient(circle at 18% 12%, rgba(181, 232, 239, 0.55), transparent 36%),
    linear-gradient(145deg, rgba(232, 246, 250, 0.98), rgba(191, 219, 247, 0.72));
  box-shadow: 0 24px 70px rgba(12, 44, 71, 0.14);
}

.estimate-plan.featured {
  border-color: rgba(245, 203, 81, 0.72);
  background:
    radial-gradient(circle at 80% 10%, rgba(245, 203, 81, 0.24), transparent 32%),
    linear-gradient(145deg, #0c2c47, #061a2c);
  color: var(--white);
  box-shadow: 0 30px 78px rgba(12, 44, 71, 0.34);
}

.estimate-plan > span {
  display: block;
  margin-bottom: 12px;
  color: var(--teal);
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.estimate-plan.featured > span {
  color: #f5cb51;
}

.estimate-plan.featured h3,
.estimate-plan.featured > strong,
.estimate-plan.featured p,
.estimate-plan.featured li {
  color: var(--white);
}

.estimate-plan.featured p,
.estimate-plan.featured li {
  opacity: 0.9;
}

.estimate-plan h3 {
  min-height: 0;
  font-size: clamp(1.2rem, 1.9vw, 1.55rem);
}

.estimate-plan > strong {
  margin: 6px 0 16px;
  color: var(--navy);
  font-family: "Roca Two", Georgia, serif;
  font-size: clamp(2.15rem, 3.2vw, 3.1rem);
  line-height: 1;
}

.estimate-plan ul {
  margin: 0 0 28px;
  padding: 0;
  list-style: none;
}

.estimate-plan li {
  position: relative;
  padding-left: 28px;
  color: rgba(9, 34, 57, 0.74);
  font-weight: 750;
}

.estimate-plan li + li {
  margin-top: 10px;
}

.estimate-plan li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.45em;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: rgba(8, 179, 208, 0.13);
}

.estimate-plan.featured li::before {
  background: #f5cb51;
  box-shadow: 0 0 0 5px rgba(245, 203, 81, 0.16);
}

.estimate-plan.featured .button-primary {
  background: #f5cb51;
  color: #0c2c47;
  box-shadow: 0 18px 46px rgba(245, 203, 81, 0.22);
}

.estimate-plan .button {
  margin-top: auto;
}

.pricing-comparison th {
  vertical-align: top;
}

.feature-comparison {
  min-width: 860px;
}

.feature-comparison th,
.feature-comparison td {
  text-align: center;
}

.feature-comparison th:first-child,
.feature-comparison td:first-child {
  text-align: left;
}

.feature-comparison tbody th {
  font-family: "Glacial Indifference", Arial, sans-serif;
  font-size: 1rem;
  font-weight: 900;
}

.feature-comparison thead th:nth-child(2),
.feature-comparison tbody td:nth-child(2) {
  background: rgba(181, 232, 239, 0.26);
}

.checkmark,
.partial,
.dash {
  display: inline-grid;
  place-items: center;
  min-width: 34px;
  min-height: 34px;
  padding: 0 10px;
  border-radius: 999px;
  font-weight: 900;
}

.checkmark {
  background: var(--teal);
  color: var(--white);
}

.partial {
  background: rgba(245, 203, 81, 0.32);
  color: var(--navy);
}

.dash {
  color: rgba(9, 34, 57, 0.38);
}

@media (max-width: 980px) {
  .estimator-layout,
  .estimate-plan-grid,
  .steps-grid.five-step-grid,
  .feature-grid.five-card-grid {
    grid-template-columns: 1fr;
  }

  .steps-grid.five-step-grid::before {
    display: none;
  }

  .estimate-plan h3 {
    min-height: auto;
  }
}

.pricing-hero,
.pricing-showcase,
.pricing-value-section,
.pricing-factors-section,
.pricing-faq-section {
  position: relative;
}

.pricing-hero {
  width: min(calc(100% - 32px), calc(var(--max-width) + 44px));
  align-items: center;
  margin-bottom: clamp(1rem, 2.5vw, 1.75rem);
  padding: clamp(1.4rem, 3vw, 2.35rem) clamp(0.5rem, 1.2vw, 1rem);
}

.pricing-hero .eyebrow,
.pricing-showcase .eyebrow,
.pricing-value-section .eyebrow,
.pricing-factors-section .eyebrow,
.pricing-faq-section .eyebrow,
.estimate-plan > span {
  letter-spacing: 0;
}

.pricing-hero .hero-copy {
  max-width: 660px;
}

.pricing-hero .hero-text {
  max-width: 62ch;
}

.pricing-hero .hero-actions .button-primary {
  min-height: 58px;
  padding: 0 clamp(1.85rem, 4vw, 2.6rem);
  border-color: rgba(255, 255, 255, 0.2);
  background:
    linear-gradient(135deg, #071827, #0c2c47 48%, #237c8d),
    var(--navy);
  color: var(--white);
  font-size: 1.02rem;
  box-shadow:
    0 20px 46px rgba(12, 44, 71, 0.28),
    0 0 0 6px rgba(8, 179, 208, 0.08);
}

.pricing-hero .hero-actions .button-primary:hover {
  background:
    linear-gradient(135deg, #061522, #0c2c47 42%, #08b3d0),
    var(--navy);
  box-shadow:
    0 24px 58px rgba(12, 44, 71, 0.34),
    0 0 0 7px rgba(8, 179, 208, 0.12);
}

.pricing-hero-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.85rem;
  width: min(100%, 700px);
  margin-top: 1.5rem;
}

.pricing-hero-metrics span,
.snapshot-grid span,
.pricing-proof-row article {
  border: 1px solid rgba(12, 44, 71, 0.1);
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 16px 38px rgba(12, 44, 71, 0.08);
}

.pricing-hero-metrics span {
  display: grid;
  gap: 0.25rem;
  min-height: 88px;
  align-content: center;
  padding: 1rem;
  border-radius: var(--radius);
}

.pricing-hero-metrics strong,
.snapshot-grid strong,
.snapshot-topline strong {
  color: var(--navy);
  font-family: "Roca Two", Georgia, serif;
  font-size: 1.55rem;
  line-height: 1;
}

.pricing-hero-metrics small,
.snapshot-grid small,
.pricing-proof-row small {
  color: rgba(9, 34, 57, 0.66);
  font-weight: 800;
  line-height: 1.35;
}

.pricing-hero-card {
  align-self: stretch;
  display: grid;
  align-items: center;
}

.pricing-hero-photo {
  position: relative;
  align-self: stretch;
  min-height: clamp(350px, 34vw, 470px);
  margin: 0;
  overflow: hidden;
  border: 0;
  border-radius: calc(var(--radius-lg) + 8px);
  background: transparent;
  box-shadow: none;
}

.pricing-hero-photo::after {
  display: none;
}

.pricing-hero-photo img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: inherit;
  border-radius: inherit;
  object-fit: cover;
  object-position: center;
  filter: saturate(1.04) contrast(1.02);
  -webkit-mask-image: radial-gradient(ellipse 82% 78% at center, #000 48%, rgba(0, 0, 0, 0.88) 64%, rgba(0, 0, 0, 0.34) 84%, transparent 100%);
  mask-image: radial-gradient(ellipse 82% 78% at center, #000 48%, rgba(0, 0, 0, 0.88) 64%, rgba(0, 0, 0, 0.34) 84%, transparent 100%);
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-size: 100% 100%;
  mask-size: 100% 100%;
}

.pricing-snapshot-card {
  position: relative;
  display: grid;
  gap: 1.25rem;
  padding: 1.4rem;
  overflow: hidden;
  border: 1px solid rgba(12, 44, 71, 0.12);
  border-radius: calc(var(--radius-lg) + 6px);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(255, 250, 244, 0.94)),
    var(--white);
  box-shadow: 0 30px 80px rgba(12, 44, 71, 0.16);
}

.pricing-snapshot-card::before {
  display: block;
  width: 100%;
  height: 7px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--teal), var(--dolphin), var(--maize), var(--blush));
  content: "";
}

.snapshot-topline {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: flex-start;
}

.snapshot-topline span {
  color: var(--teal);
  font-weight: 950;
}

.snapshot-meter {
  position: relative;
  height: 18px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(181, 217, 224, 0.42);
}

.snapshot-meter span {
  display: block;
  width: 58%;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--teal), var(--dolphin));
}

.snapshot-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.75rem;
}

.snapshot-grid span {
  display: grid;
  gap: 0.2rem;
  min-height: 98px;
  align-content: center;
  padding: 0.9rem;
  border-radius: var(--radius);
}

.quote-preview-steps {
  display: grid;
  gap: 0.75rem;
}

.quote-preview-steps span {
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr);
  column-gap: 0.85rem;
  row-gap: 0.12rem;
  align-items: center;
  min-height: 72px;
  padding: 0.85rem;
  border: 1px solid rgba(12, 44, 71, 0.1);
  border-radius: var(--radius);
  background: rgba(232, 246, 250, 0.54);
}

.quote-preview-steps b {
  grid-row: span 2;
  display: inline-grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border-radius: 50%;
  background: var(--navy);
  color: var(--white);
  font-size: 0.82rem;
}

.quote-preview-steps strong {
  color: var(--navy);
}

.quote-preview-steps small {
  color: rgba(9, 34, 57, 0.66);
  font-weight: 800;
}

.pricing-snapshot-card p {
  margin: 0;
  color: rgba(9, 34, 57, 0.72);
  font-weight: 750;
}

.pricing-showcase {
  width: min(calc(100% - 32px), calc(var(--max-width) + 44px));
  padding: 3.25rem 1.25rem;
  border-radius: calc(var(--radius-lg) + 10px);
  background:
    linear-gradient(180deg, rgba(12, 44, 71, 0.96), rgba(9, 34, 57, 0.98)),
    var(--navy);
  box-shadow: 0 32px 88px rgba(12, 44, 71, 0.24);
  color: var(--white);
}

.pricing-showcase-heading {
  display: grid;
  justify-items: center;
  max-width: 760px;
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

.pricing-showcase-heading h2,
.pricing-showcase-heading p:not(.eyebrow) {
  margin-right: auto;
  margin-left: auto;
}

.pricing-showcase .section-heading h2,
.pricing-showcase .section-heading p {
  color: var(--white);
}

.pricing-showcase .section-heading .eyebrow {
  color: var(--maize);
  font-size: clamp(0.95rem, 1.25vw, 1.1rem);
  font-weight: 950;
}

.pricing-showcase .section-heading p:not(.eyebrow) {
  opacity: 0.82;
}

.pricing-estimator-frame {
  position: relative;
  padding: 1.25rem;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: calc(var(--radius-lg) + 8px);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.13), rgba(181, 217, 224, 0.08)),
    rgba(255, 255, 255, 0.08);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.18);
}

.pricing-showcase .estimator-layout {
  gap: 1.25rem;
}

.pricing-showcase .estimator-controls,
.pricing-showcase .estimate-plan {
  border-radius: calc(var(--radius-lg) + 2px);
}

.pricing-showcase .estimator-controls {
  grid-template-rows: repeat(2, minmax(0, 1fr));
  gap: clamp(1.65rem, 3vw, 2.2rem);
  align-content: stretch;
  padding: clamp(1.5rem, 3vw, 2.15rem);
  border-color: rgba(255, 255, 255, 0.2);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.97), rgba(232, 246, 250, 0.94)),
    var(--white);
}

.pricing-range-field {
  display: grid;
  gap: clamp(0.95rem, 1.7vw, 1.25rem);
  align-content: space-between;
  min-height: clamp(150px, 13vw, 188px);
  padding: 0.15rem 0;
}

.pricing-range-field + .pricing-range-field {
  padding-top: clamp(1.45rem, 2.6vw, 2rem);
  border-top: 1px solid rgba(12, 44, 71, 0.12);
}

.pricing-range-label {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
}

.pricing-range-label > span {
  color: var(--navy);
  font-size: 0.95rem;
  font-weight: 950;
}

.pricing-showcase .estimator-controls label strong {
  color: var(--teal);
  font-size: 2rem;
}

.pricing-showcase .estimator-controls input[type="range"] {
  -webkit-appearance: none;
  appearance: none;
  width: 100%;
  height: 10px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--teal), var(--dolphin));
  cursor: pointer;
}

.pricing-showcase .estimator-controls input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 24px;
  height: 24px;
  border: 4px solid var(--white);
  border-radius: 50%;
  background: var(--navy);
  box-shadow: 0 8px 20px rgba(12, 44, 71, 0.25);
  appearance: none;
}

.pricing-showcase .estimator-controls input[type="range"]::-moz-range-thumb {
  width: 18px;
  height: 18px;
  border: 4px solid var(--white);
  border-radius: 50%;
  background: var(--navy);
  box-shadow: 0 8px 20px rgba(12, 44, 71, 0.25);
}

.range-track-labels {
  display: flex;
  justify-content: space-between;
  gap: 0.75rem;
  color: rgba(9, 34, 57, 0.58);
  font-weight: 850;
}

.pricing-showcase .estimate-plan {
  min-height: 100%;
  overflow: hidden;
}

.pricing-showcase .estimate-plan:not(.featured) {
  border-color: rgba(8, 179, 208, 0.62);
  background:
    radial-gradient(circle at 10% 4%, rgba(8, 179, 208, 0.24), transparent 34%),
    radial-gradient(circle at 96% 10%, rgba(245, 203, 81, 0.34), transparent 28%),
    radial-gradient(circle at 8% 96%, rgba(35, 124, 141, 0.18), transparent 34%),
    linear-gradient(145deg, rgba(181, 232, 239, 0.98), rgba(232, 246, 250, 0.96) 44%, rgba(181, 217, 224, 0.9)),
    var(--white);
  box-shadow:
    0 26px 76px rgba(8, 179, 208, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.72);
}

.pricing-showcase .estimate-plan:not(.featured) p {
  color: rgba(9, 34, 57, 0.72);
}

.pricing-showcase .estimate-plan::before {
  display: block;
  width: calc(100% + 4rem);
  height: 8px;
  margin: -2rem -2rem 1.2rem;
  background: linear-gradient(90deg, #0c2c47, var(--teal), var(--dolphin), var(--maize));
  content: "";
}

.pricing-showcase .estimate-plan.featured::before {
  background: linear-gradient(90deg, var(--maize), var(--blush), var(--dolphin));
}

.pricing-showcase .estimate-plan:not(.featured) > span {
  color: #0c2c47;
  font-size: 0.9rem;
}

.pricing-showcase .estimate-plan.featured > span {
  color: var(--maize);
}

.pricing-showcase .estimate-plan h3 {
  max-width: 24ch;
  font-size: 1.55rem;
}

.pricing-showcase .estimate-plan > strong {
  font-size: 3rem;
}

.pricing-showcase .estimate-plan li::before {
  top: 0.28em;
  display: grid;
  place-items: center;
  color: var(--teal);
  background: rgba(8, 179, 208, 0.14);
  content: "✓";
  font-size: 0.72rem;
  font-weight: 950;
}

.pricing-showcase .estimate-plan.featured li::before {
  color: var(--navy);
}

.pricing-value-section {
  padding-top: 6rem;
}

.pricing-proof-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin: 0 0 1.25rem;
}

.pricing-proof-row article {
  display: grid;
  gap: 0.45rem;
  min-height: 148px;
  align-content: start;
  padding: 1.1rem;
  border-radius: var(--radius);
}

.pricing-proof-row span {
  display: inline-grid;
  width: 36px;
  height: 36px;
  place-items: center;
  border-radius: 50%;
  background: var(--navy);
  color: var(--white);
  font-weight: 950;
}

.pricing-proof-row strong {
  color: var(--navy);
  font-size: 1.12rem;
}

.pricing-comparison-card {
  padding: 1rem;
  border: 1px solid rgba(12, 44, 71, 0.1);
  border-radius: calc(var(--radius-lg) + 6px);
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 28px 76px rgba(12, 44, 71, 0.1);
}

.pricing-comparison-card .comparison-table {
  overflow: hidden;
  border-radius: var(--radius);
}

.pricing-comparison-card thead th:nth-child(2),
.pricing-comparison-card tbody td:nth-child(2) {
  background: linear-gradient(180deg, rgba(181, 232, 239, 0.36), rgba(245, 203, 81, 0.15));
}

.pricing-factors-section {
  width: min(calc(100% - 32px), calc(var(--max-width) + 44px));
  padding: 4rem 1.25rem;
  border-radius: calc(var(--radius-lg) + 8px);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.94), rgba(255, 240, 224, 0.58)),
    var(--white);
}

.pricing-factor-card {
  position: relative;
  overflow: hidden;
  border-color: rgba(12, 44, 71, 0.1);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(232, 246, 250, 0.42)),
    var(--white);
}

.pricing-factor-card::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 5px;
  background: linear-gradient(90deg, var(--teal), var(--maize), var(--blush));
  content: "";
}

.pricing-factor-card > span {
  display: inline-grid;
  width: 42px;
  height: 42px;
  place-items: center;
  margin-bottom: 1rem;
  border-radius: 50%;
  background: var(--navy);
  color: var(--white);
  font-weight: 950;
}

.pricing-factor-card h3 {
  font-size: 1.2rem;
}

.hero-support-line {
  max-width: 54ch;
  color: rgba(9, 34, 57, 0.72);
  font-weight: 850;
}

.pricing-guide-section,
.pricing-included-section,
.pricing-path-section {
  width: min(calc(100% - 32px), calc(var(--max-width) + 44px));
}

.pricing-path-section .section-heading h2 {
  max-width: 20ch;
  line-height: 1.12;
}

.pricing-included-section {
  padding: 4rem 1.25rem;
  border-radius: calc(var(--radius-lg) + 8px);
  background:
    linear-gradient(135deg, rgba(232, 246, 250, 0.92), rgba(255, 240, 224, 0.48)),
    var(--white);
}

.pricing-guide-grid,
.pricing-included-grid,
.pricing-path-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.pricing-service-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.pricing-guide-card,
.pricing-included-card,
.pricing-path-card {
  position: relative;
  min-height: 100%;
  overflow: hidden;
  border-color: rgba(12, 44, 71, 0.1);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.97), rgba(232, 246, 250, 0.38)),
    var(--white);
}

.pricing-guide-card > span {
  display: inline-grid;
  width: 38px;
  height: 38px;
  place-items: center;
  margin-bottom: 0.85rem;
  border-radius: 50%;
  background: #f5cb51;
  color: #0c2c47;
  font-weight: 950;
}

.pricing-included-card > span {
  display: inline-grid;
  width: 34px;
  height: 34px;
  place-items: center;
  margin-bottom: 0.85rem;
  border: 1px solid rgba(8, 179, 208, 0.32);
  border-radius: 50%;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(232, 246, 250, 0.82)),
    var(--white);
  color: var(--teal);
  box-shadow: 0 12px 26px rgba(8, 179, 208, 0.2);
}

.pricing-included-card > span svg {
  width: 19px;
  height: 19px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.pricing-guide-card::after,
.pricing-included-card::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 4px;
  content: "";
}

.pricing-guide-card::after {
  background: linear-gradient(90deg, #0c2c47, #237c8d, #08b3d0, #b5d9e0);
}

.pricing-included-card::after {
  background: linear-gradient(90deg, var(--teal), var(--maize), var(--blush));
}

.pricing-path-card {
  display: flex;
  flex-direction: column;
}

.pricing-path-card > span {
  display: inline-flex;
  width: fit-content;
  margin-bottom: 0.8rem;
  padding: 0.35rem 0.65rem;
  border: 1px solid rgba(8, 179, 208, 0.22);
  border-radius: 999px;
  background: rgba(232, 246, 250, 0.72);
  color: var(--teal-dark);
  font-size: 0.72rem;
  font-weight: 950;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.pricing-path-card .button {
  width: 100%;
  justify-content: center;
  margin-top: auto;
}

.pricing-path-actions {
  align-items: center;
  justify-content: space-between;
  gap: clamp(1rem, 3vw, 2rem);
  margin-top: clamp(1.35rem, 3vw, 2rem);
  padding: clamp(1rem, 2.4vw, 1.4rem) clamp(1rem, 3vw, 1.65rem);
  border: 1px solid rgba(8, 179, 208, 0.24);
  border-radius: calc(var(--radius-lg) + 4px);
  background:
    linear-gradient(135deg, rgba(12, 44, 71, 0.97), rgba(35, 124, 141, 0.9)),
    var(--navy);
  color: var(--white);
  box-shadow: 0 24px 70px rgba(12, 44, 71, 0.14);
}

.pricing-path-actions > div {
  display: grid;
  gap: 0.25rem;
  max-width: 650px;
}

.pricing-path-actions span {
  color: var(--maize);
  font-size: 0.86rem;
  font-weight: 950;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.pricing-path-actions p {
  margin: 0;
  color: rgba(255, 255, 255, 0.88);
  font-weight: 800;
  line-height: 1.45;
}

.pricing-path-actions .button {
  flex: 0 0 auto;
  border-color: transparent;
  background: var(--maize);
  color: var(--navy);
  box-shadow: 0 18px 40px rgba(245, 203, 81, 0.18);
  white-space: normal;
}

.pricing-trust-section {
  width: min(calc(100% - 32px), calc(var(--max-width) + 44px));
  padding: clamp(3rem, 5vw, 4rem) clamp(2rem, 5vw, 4rem);
  border: 1px solid rgba(12, 44, 71, 0.1);
  border-radius: calc(var(--radius-lg) + 8px);
  background:
    linear-gradient(135deg, rgba(12, 44, 71, 0.98), rgba(14, 111, 130, 0.88)),
    var(--navy);
  color: var(--white);
  box-shadow: 0 30px 90px rgba(12, 44, 71, 0.16);
}

.pricing-trust-section .eyebrow,
.pricing-trust-section h2,
.pricing-trust-section p {
  color: var(--white);
}

.pricing-trust-section .button-primary {
  background: var(--maize);
  color: var(--navy);
}

.pricing-trust-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  gap: clamp(2rem, 4vw, 3.25rem);
  align-items: center;
}

.pricing-trust-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.85rem;
  padding: 0;
  margin: 0;
  list-style: none;
}

.pricing-trust-list li {
  display: flex;
  gap: 0.65rem;
  align-items: flex-start;
  padding: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
  font-weight: 850;
}

.pricing-trust-list span {
  flex: 0 0 auto;
  width: 18px;
  height: 18px;
  margin-top: 0.18rem;
  border-radius: 50%;
  background: var(--maize);
  box-shadow: 0 0 0 5px rgba(245, 203, 81, 0.16);
}

.pricing-final-cta {
  grid-template-columns: minmax(0, 0.95fr) minmax(220px, 0.45fr);
  margin-top: 5rem;
}

.pricing-final-cta .final-copy {
  max-width: 620px;
}

.pricing-final-cta .hero-actions {
  margin-top: 1.5rem;
}

.pricing-final-cta h2,
.pricing-final-cta p {
  color: var(--white);
}

.pricing-final-cta .eyebrow {
  color: var(--maize);
}

.pricing-final-cta p {
  color: rgba(255, 255, 255, 0.78);
}

.pricing-final-cta .button-primary {
  background: var(--maize);
  color: var(--navy);
}

.pricing-final-image {
  position: relative;
  display: grid;
  justify-self: center;
  width: min(100%, 258px);
  aspect-ratio: 49 / 100;
  margin: 0;
  padding: 18px 11px 14px;
  overflow: visible;
  border: 1px solid rgba(255, 255, 255, 0.34);
  border-radius: 42px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.28), transparent 26%),
    linear-gradient(145deg, #071827, #0c2c47 52%, #237c8d);
  box-shadow:
    0 36px 80px rgba(0, 0, 0, 0.28),
    inset 0 0 0 2px rgba(255, 255, 255, 0.14),
    inset 0 -18px 36px rgba(0, 0, 0, 0.18);
}

.pricing-final-image::before {
  position: absolute;
  top: 9px;
  left: 50%;
  z-index: 3;
  width: 84px;
  height: 6px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.28);
  box-shadow: 0 0 0 1px rgba(12, 44, 71, 0.24);
  content: "";
  transform: translateX(-50%);
}

.pricing-final-image::after {
  position: absolute;
  inset: 18px 11px 14px;
  z-index: 2;
  border-radius: 31px;
  background:
    linear-gradient(115deg, rgba(255, 255, 255, 0.26), transparent 34%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), transparent 18%);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.42);
  content: "";
  pointer-events: none;
}

.pricing-final-image img {
  position: relative;
  z-index: 1;
  display: block;
  width: 100%;
  height: 100%;
  min-height: 0;
  overflow: hidden;
  border-radius: 31px;
  object-fit: cover;
  object-position: top center;
  filter: saturate(1.05) contrast(1.02);
}

.pricing-faq-section {
  padding-top: 5rem;
}

.pricing-faq-layout {
  display: grid;
  grid-template-columns: minmax(260px, 0.75fr) minmax(0, 1.25fr);
  gap: 2rem;
  align-items: start;
}

.pricing-faq-layout .section-heading {
  position: sticky;
  top: calc(var(--header-height) + 2rem);
  margin: 0;
}

.pricing-faq-layout .faq-list details {
  border: 1px solid rgba(12, 44, 71, 0.1);
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 16px 40px rgba(12, 44, 71, 0.07);
}

@media (max-width: 980px) {
  .pricing-hero {
    padding: 2rem 1rem;
  }

  .pricing-hero-metrics,
  .pricing-proof-row,
  .pricing-faq-layout,
  .pricing-trust-grid {
    grid-template-columns: 1fr;
  }

  .pricing-showcase,
  .pricing-factors-section,
  .pricing-guide-section,
  .pricing-included-section,
  .pricing-path-section,
  .pricing-trust-section {
    width: min(calc(100% - 24px), var(--max-width));
    padding: 2rem 1rem;
  }

  .pricing-guide-grid,
  .pricing-included-grid,
  .pricing-path-grid,
  .pricing-trust-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .pricing-estimator-frame {
    padding: 0.85rem;
  }

  .pricing-range-label {
    display: grid;
  }

  .pricing-showcase .estimate-plan h3 {
    max-width: none;
  }

  .pricing-path-actions {
    align-items: stretch;
  }

  .pricing-path-actions .button {
    width: 100%;
  }

  .pricing-proof-row article {
    min-height: auto;
  }

  .pricing-faq-layout .section-heading {
    position: static;
  }
}

@media (max-width: 680px) {
  .pricing-hero-photo {
    min-height: 270px;
  }

  .pricing-final-image {
    width: min(72vw, 230px);
    min-height: 0;
    padding: 16px 9px 12px;
  }

  .pricing-final-image::after {
    inset: 16px 9px 12px;
  }

  .pricing-final-image img {
    min-height: 0;
  }

  .pricing-hero-metrics,
  .snapshot-grid,
  .pricing-guide-grid,
  .pricing-included-grid,
  .pricing-path-grid,
  .pricing-trust-list {
    grid-template-columns: 1fr;
  }

  .pricing-hero-metrics span,
  .snapshot-grid span {
    min-height: auto;
  }

  .snapshot-topline {
    display: grid;
  }

  .pricing-showcase .estimator-controls,
  .pricing-showcase .estimate-plan {
    padding: 1.1rem;
  }

  .pricing-showcase .estimator-controls {
    grid-template-rows: none;
    gap: 1.35rem;
  }

  .pricing-range-field {
    min-height: auto;
  }

  .pricing-showcase .estimate-plan::before {
    margin: -1.1rem -1.1rem 1rem;
  }

  .pricing-showcase .estimate-plan > strong {
    font-size: 2.3rem;
  }

  .range-track-labels {
    font-size: 0.78rem;
  }
}


.site-search {
  position: relative;
  display: inline-flex;
  align-items: center;
  width: 46px;
  height: 46px;
  overflow: visible;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.78);
  transition: width 220ms ease, background 180ms ease, box-shadow 180ms ease;
}

.site-search:focus-within,
.site-search:hover {
  width: min(260px, 30vw);
  background: var(--white);
  box-shadow: 0 12px 30px rgba(12, 44, 71, 0.1);
}

.site-search input {
  width: 0;
  min-width: 0;
  min-height: 42px;
  border: 0;
  background: transparent;
  padding: 0;
  opacity: 0;
  font-size: 0.9rem;
  transition: width 220ms ease, opacity 160ms ease, padding 220ms ease;
}

.site-search:focus-within input,
.site-search:hover input {
  width: 170px;
  padding: 0 12px 0 4px;
  opacity: 1;
}

.site-search button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  flex: 0 0 44px;
  min-height: 44px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: var(--navy);
  font-weight: 850;
  cursor: pointer;
}

.site-search button svg {
  width: 19px;
  height: 19px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.search-button-text {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

.search-results-panel {
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  z-index: 80;
  display: none;
  width: min(360px, calc(100vw - 36px));
  max-height: 420px;
  overflow: auto;
  padding: 12px;
  border: 1px solid rgba(12, 44, 71, 0.12);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow);
}

.search-results-panel.is-visible {
  display: grid;
  gap: 8px;
}

.search-result {
  display: block;
  padding: 12px;
  border-radius: var(--radius-sm);
  color: var(--navy);
  font-weight: 750;
}

.search-result:hover {
  background: rgba(181, 217, 224, 0.18);
}

.search-result span {
  display: block;
  color: var(--teal);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.ease-section,
.compare-ease-section {
  padding: 92px 0;
}

.agile-advantage-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 18px;
  margin-bottom: 24px;
}

.advantage-card {
  padding: 24px;
  border: 1px solid rgba(12, 44, 71, 0.1);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.82);
  box-shadow: var(--soft-shadow);
}

.advantage-card.featured,
.pricing-comparison .highlight-row {
  background: linear-gradient(145deg, rgba(181, 217, 224, 0.35), rgba(255, 225, 194, 0.45));
}

.advantage-card span {
  display: block;
  margin-bottom: 10px;
  color: var(--teal);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.post-meta {
  color: var(--teal);
  font-weight: 850;
}

@media (max-width: 1180px) {
  .site-search {
    display: inline-flex;
    width: 46px;
  }
}

@media (max-width: 900px) {
  .agile-advantage-grid {
    grid-template-columns: 1fr;
  }

  .service-accordion-content {
    grid-template-columns: 1fr;
  }
}


.client-logo-band {
  overflow: hidden;
  padding-bottom: 50px;
}

.logo-slider {
  width: 100%;
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent, #000 10%, #000 90%, transparent);
}

.logo-track {
  display: flex;
  width: max-content;
  gap: clamp(54px, 6vw, 108px);
  animation: logoScroll 110s linear infinite;
}

.client-logo-card {
  display: flex;
  width: clamp(260px, 28vw, 460px);
  height: 128px;
  flex: 0 0 auto;
  align-items: center;
  justify-content: center;
  padding: 0;
  overflow: visible;
}

.client-logo-card img {
  width: auto;
  max-width: 100%;
  max-height: 112px;
  height: auto;
  object-fit: contain;
  filter: grayscale(1);
  opacity: 0.74;
}

.app-lightbox {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: clamp(18px, 4vw, 48px);
  background: rgba(12, 44, 71, 0.82);
}

.app-lightbox.is-open {
  display: flex;
}

.app-lightbox-frame {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(120px, 0.22fr);
  gap: 18px;
  width: min(1180px, 96vw);
  max-height: 88vh;
  padding: 18px;
  border-radius: var(--radius-lg);
  background: var(--white);
  box-shadow: 0 32px 80px rgba(0, 0, 0, 0.28);
}

.app-lightbox-frame img {
  min-width: 0;
  max-width: 100%;
  max-height: calc(88vh - 36px);
  object-fit: contain;
  border-radius: calc(var(--radius) - 4px);
  background: rgba(181, 217, 224, 0.12);
}

.app-lightbox-frame img[hidden] {
  display: none;
}

.app-lightbox-mobile {
  align-self: center;
  width: min(210px, 22vw);
  height: auto;
  object-fit: contain !important;
  object-position: center top;
  border: 8px solid var(--navy);
  border-radius: 28px !important;
}

.app-lightbox-close {
  position: absolute;
  top: -18px;
  right: -18px;
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border: 0;
  border-radius: 999px;
  background: var(--white);
  color: var(--navy);
  font: inherit;
  font-weight: 900;
  cursor: pointer;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.24);
}

.app-lightbox.is-desktop-only .app-lightbox-frame,
.app-lightbox.is-mobile-only .app-lightbox-frame {
  grid-template-columns: 1fr;
  justify-items: center;
}

.app-lightbox.is-desktop-only .app-lightbox-frame {
  width: min(1040px, 96vw);
}

.app-lightbox.is-mobile-only .app-lightbox-frame {
  width: min(410px, 94vw);
}

.app-lightbox.is-mobile-only .app-lightbox-mobile {
  width: min(300px, 74vw);
  max-height: calc(88vh - 36px);
}

@media (max-width: 900px) {
  .app-lightbox-frame {
    grid-template-columns: 1fr;
    width: min(420px, 96vw);
  }

  .app-lightbox-desktop {
    display: none;
  }

  .app-lightbox-mobile {
    justify-self: center;
    width: min(280px, 76vw);
    max-height: calc(88vh - 36px);
  }
}

@keyframes logoScroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

.testimonial-section {
  padding: 96px 0;
}

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

.testimonial-card,
.testimonial-strip,
.giveaway-card,
.landing-form {
  border: 1px solid rgba(12, 44, 71, 0.1);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.88);
  box-shadow: var(--soft-shadow);
}

.testimonial-card {
  padding: 24px;
}

.testimonial-card blockquote,
.testimonial-strip blockquote {
  margin: 0 0 18px;
  color: var(--navy);
  font-size: 1.02rem;
  line-height: 1.55;
  font-weight: 750;
}

.testimonial-card cite,
.testimonial-strip cite {
  color: var(--teal);
  font-style: normal;
  font-weight: 900;
}

.testimonial-card cite span {
  display: block;
  margin-top: 4px;
  color: var(--muted);
  font-weight: 700;
}

.testimonial-strip {
  display: grid;
  gap: 10px;
  padding: 30px;
  margin-top: 30px;
  margin-bottom: 30px;
}

.social-proof-wall,
.visual-workflow-section,
.app-system-section {
  position: relative;
  overflow: hidden;
  border-radius: calc(var(--radius-lg) + 6px);
}

.social-proof-wall {
  display: grid;
  gap: 34px;
  padding: clamp(52px, 7vw, 86px);
  margin-block: 72px;
  background:
    radial-gradient(circle at 12% 12%, rgba(8, 179, 208, 0.34), transparent 28%),
    radial-gradient(circle at 86% 10%, rgba(245, 203, 81, 0.24), transparent 24%),
    linear-gradient(135deg, rgba(12, 44, 71, 0.98), rgba(35, 124, 141, 0.94));
  color: var(--white);
  box-shadow: 0 34px 90px rgba(12, 44, 71, 0.2);
}

.social-proof-wall::before,
.app-system-section::before,
.visual-workflow-section::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.08) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: linear-gradient(135deg, #000, transparent 72%);
}

.proof-wall-intro {
  position: relative;
  z-index: 1;
  display: grid;
  max-width: 760px;
  gap: 12px;
}

.proof-wall-intro .eyebrow,
.social-proof-wall .eyebrow {
  color: var(--maize);
}

.proof-wall-intro h2,
.proof-wall-intro p {
  color: var(--white);
}

.proof-wall-intro p {
  max-width: 620px;
  opacity: 0.78;
}

.proof-wall-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: 18px;
  align-items: stretch;
}

.proof-quote-large,
.proof-mini-card,
.proof-logo-soup {
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.1);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.14);
  backdrop-filter: blur(14px);
}

.proof-quote-large {
  display: grid;
  gap: 24px;
  min-height: 390px;
  padding: clamp(30px, 4vw, 48px);
}

.proof-quote-large > span {
  display: grid;
  width: 54px;
  height: 54px;
  place-items: center;
  border-radius: 18px;
  background: var(--maize);
  color: var(--navy);
  font-weight: 950;
}

.proof-quote-large blockquote,
.proof-mini-card blockquote {
  margin: 0;
  color: var(--white);
  font-family: "Roca Two", Georgia, serif;
  font-size: clamp(1.55rem, 2.4vw, 2.45rem);
  line-height: 1.08;
}

.proof-mini-card blockquote {
  font-size: clamp(1.1rem, 1.5vw, 1.4rem);
  line-height: 1.28;
}

.proof-quote-large cite,
.proof-mini-card cite {
  color: var(--sand);
  font-style: normal;
  font-weight: 900;
}

.proof-quote-large cite span,
.proof-mini-card cite span {
  display: block;
  margin-top: 4px;
  color: rgba(255, 255, 255, 0.68);
  font-family: "Glacial Indifference", system-ui, sans-serif;
}

.proof-logo-soup {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  padding: 24px;
  background: rgba(255, 255, 255, 0.9);
}

.proof-logo-soup img {
  width: 100%;
  height: clamp(54px, 7vw, 88px);
  object-fit: contain;
  filter: grayscale(1) contrast(0.88);
  opacity: 0.72;
}

.proof-mini-card {
  padding: 28px;
}

.proof-mini-card.accent {
  background: linear-gradient(135deg, rgba(249, 139, 136, 0.3), rgba(255, 225, 194, 0.14));
}

.visual-workflow-section {
  width: min(calc(100% - 40px), var(--max-width));
  padding: clamp(52px, 7vw, 88px);
  margin: 78px auto;
  background:
    radial-gradient(circle at 0% 16%, rgba(8, 179, 208, 0.28), transparent 30%),
    radial-gradient(circle at 92% 18%, rgba(249, 139, 136, 0.2), transparent 25%),
    linear-gradient(135deg, #f8fcfd, #dff3f7 48%, #fff0e0);
  box-shadow: 0 26px 72px rgba(12, 44, 71, 0.12);
}

.visual-workflow-section .section-heading {
  position: relative;
  z-index: 1;
}

.workflow-map {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 70px 1fr;
  grid-template-areas:
    "quote arrow1 connect"
    "hub hub hub"
    "organize arrow2 review"
    ". reports .";
  gap: 20px;
  align-items: center;
}

.visual-workflow-section .workflow-node,
.visual-workflow-section .workflow-hub {
  position: relative;
  border: 1px solid rgba(12, 44, 71, 0.12);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.84);
  box-shadow: 0 18px 46px rgba(12, 44, 71, 0.11);
}

.visual-workflow-section .workflow-node {
  min-height: 150px;
  padding: 22px;
}

.visual-workflow-section .workflow-node span {
  display: inline-grid;
  width: 38px;
  height: 38px;
  place-items: center;
  margin-bottom: 16px;
  border-radius: 14px;
  background: var(--navy);
  color: var(--white);
  font-weight: 950;
}

.visual-workflow-section .workflow-node h3,
.visual-workflow-section .workflow-node p {
  margin: 0;
}

.visual-workflow-section .workflow-node p {
  margin-top: 8px;
  color: rgba(9, 34, 57, 0.62);
}

.visual-workflow-section .quote-node { grid-area: quote; }
.visual-workflow-section .connect-node { grid-area: connect; }
.visual-workflow-section .organize-node { grid-area: organize; }
.visual-workflow-section .review-node { grid-area: review; }
.visual-workflow-section .reports-node { grid-area: reports; }
.visual-workflow-section .workflow-arrow-one { grid-area: arrow1; }
.visual-workflow-section .workflow-arrow-two { grid-area: arrow2; }

.visual-workflow-section .workflow-hub {
  grid-area: hub;
  display: grid;
  min-height: 150px;
  place-items: center;
  padding: 32px;
  text-align: center;
  background:
    radial-gradient(circle at 20% 0%, rgba(245, 203, 81, 0.36), transparent 34%),
    linear-gradient(135deg, var(--navy), var(--teal));
  color: var(--white);
}

.visual-workflow-section .workflow-hub strong {
  font-family: "Roca Two", Georgia, serif;
  font-size: clamp(2rem, 4vw, 4.8rem);
  line-height: 0.9;
}

.visual-workflow-section .workflow-hub small {
  color: rgba(255, 255, 255, 0.76);
  font-weight: 850;
}

.visual-workflow-section .workflow-arrow {
  position: relative;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--dolphin), var(--teal));
}

.visual-workflow-section .workflow-arrow::after {
  content: "";
  position: absolute;
  right: -4px;
  top: 50%;
  width: 12px;
  height: 12px;
  border-top: 3px solid var(--teal);
  border-right: 3px solid var(--teal);
  transform: translateY(-50%) rotate(45deg);
}

.app-system-section {
  width: min(calc(100% - 40px), var(--max-width));
  padding: clamp(54px, 7vw, 90px);
  margin-block: 78px;
  background:
    radial-gradient(circle at 85% 20%, rgba(8, 179, 208, 0.22), transparent 28%),
    radial-gradient(circle at 8% 92%, rgba(255, 225, 194, 0.34), transparent 28%),
    linear-gradient(135deg, #092239, #0c2c47 52%, #237c8d);
  color: var(--white);
  box-shadow: 0 34px 92px rgba(12, 44, 71, 0.24);
}

.app-system-section .section-heading,
.app-system-section .section-heading p:not(.eyebrow),
.app-system-section h2,
.app-system-section h3 {
  color: var(--white);
}

.app-system-section .section-heading p:not(.eyebrow) {
  opacity: 0.74;
}

.app-module-board {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 14px;
  margin-bottom: 22px;
}

.module-core {
  grid-column: span 3;
  display: grid;
  min-height: 190px;
  align-content: center;
  gap: 8px;
  padding: 30px;
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 86% 20%, rgba(245, 203, 81, 0.32), transparent 32%),
    rgba(255, 255, 255, 0.13);
  border: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.16);
}

.module-core span,
.module-core small,
.module-chip {
  font-weight: 900;
}

.module-core strong {
  color: var(--white);
  font-family: "Roca Two", Georgia, serif;
  font-size: clamp(1.9rem, 3.2vw, 3.4rem);
  line-height: 0.95;
}

.module-core small {
  color: rgba(255, 255, 255, 0.72);
}

.module-chip {
  display: grid;
  min-height: 88px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.86);
  text-align: center;
}

.app-system-section .feature-card {
  overflow: hidden;
  min-height: 232px;
  border-color: rgba(255, 255, 255, 0.15);
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
  box-shadow: none;
}

.app-system-section .feature-card::after {
  content: "";
  position: absolute;
  inset: auto 18px 18px;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--dolphin), var(--maize), var(--blush));
}

.app-system-section .feature-icon {
  background: rgba(8, 179, 208, 0.2);
  color: var(--light-blue);
}

.app-system-section .feature-card p {
  color: rgba(255, 255, 255, 0.68);
}

.app-system-section .feature-card a {
  color: var(--sand);
}

.pricing-ryan-testimonial {
  border-color: rgba(35, 124, 141, 0.24);
  background: linear-gradient(135deg, rgba(181, 217, 224, 0.28), rgba(255, 255, 255, 0.92));
}

.product-services-section .section-actions {
  width: min(100%, 980px);
  margin: 42px auto 0;
  padding: 22px;
  border: 1px solid rgba(35, 124, 141, 0.18);
  border-radius: var(--radius);
  background: linear-gradient(135deg, rgba(181, 217, 224, 0.22), rgba(255, 240, 224, 0.6));
  box-shadow: 0 20px 56px rgba(12, 44, 71, 0.1);
  justify-content: center;
}

.service-accordion {
  display: grid;
  gap: 16px;
  max-width: 980px;
  margin: 34px auto 0;
}

.service-accordion details {
  border: 1px solid rgba(12, 44, 71, 0.1);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 16px 42px rgba(12, 44, 71, 0.08);
}

.service-accordion summary {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 18px;
  align-items: center;
  padding: 24px 28px;
  cursor: pointer;
  list-style: none;
}

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

.service-accordion summary::after {
  content: "+";
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border-radius: 999px;
  background: rgba(35, 124, 141, 0.1);
  color: var(--teal);
  font-family: var(--font-body);
  font-size: 1.3rem;
  font-weight: 900;
}

.service-accordion details[open] summary::after {
  content: "-";
}

.service-accordion span {
  display: block;
  margin-bottom: 6px;
  color: var(--teal);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.service-accordion h3 {
  margin: 0;
  font-size: clamp(1.38rem, 2.4vw, 2rem);
}

.service-accordion-content {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(220px, 0.65fr);
  gap: 26px;
  padding: 0 28px 28px;
  color: rgba(9, 34, 57, 0.72);
}

.service-accordion-content ul {
  margin: 0;
  padding-left: 20px;
}

.service-accordion-content li + li {
  margin-top: 8px;
}

.service-accordion-note {
  align-self: start;
  padding: 18px;
  border-radius: var(--radius);
  background: rgba(181, 217, 224, 0.18);
  color: var(--navy);
  font-weight: 750;
}

.founder-story {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(320px, 1fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: center;
  padding-top: 70px;
  padding-bottom: 70px;
}

.founder-story-copy h2 {
  max-width: 11ch;
}

.founder-story-copy p:not(.eyebrow) {
  color: var(--muted);
  font-size: clamp(1.02rem, 1.7vw, 1.2rem);
  line-height: 1.7;
}

.founder-pill-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.founder-pill-row span {
  padding: 9px 14px;
  border: 1px solid rgba(12, 44, 71, 0.1);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.82);
  color: var(--slate);
  font-size: 0.86rem;
  font-weight: 850;
}

.founder-hero-photo {
  margin: 0;
}

.founder-hero-photo img,
.team-photo-band img {
  display: block;
  width: 100%;
  border: 1px solid rgba(12, 44, 71, 0.1);
  border-radius: var(--radius-lg);
  object-fit: cover;
  box-shadow: var(--soft-shadow);
}

.founder-hero-photo img {
  aspect-ratio: 1.3 / 1;
}

.founder-hero-photo figcaption {
  margin-top: 12px;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 800;
}

.team-photo-band {
  display: grid;
  grid-template-columns: 1.2fr 0.9fr 0.9fr;
  gap: 18px;
  align-items: stretch;
  padding-top: 34px;
  padding-bottom: 34px;
}

.team-photo-band img {
  height: 100%;
  min-height: 260px;
  aspect-ratio: 1 / 0.72;
}

.founder-card {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(181, 217, 224, 0.16));
}

.landing-page {
  background: linear-gradient(180deg, var(--sugar), #fff 44%, var(--white));
}

.landing-header {
  position: sticky;
  top: 16px;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(calc(100% - 32px), var(--max-width));
  margin: 16px auto 0;
  padding: 14px 18px;
  border: 1px solid rgba(255, 255, 255, 0.78);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 18px 50px rgba(12, 44, 71, 0.1);
  backdrop-filter: blur(18px);
}

.giveaway-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.74fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: center;
  min-height: 760px;
  padding-top: 96px;
}

.giveaway-card {
  display: grid;
  gap: 20px;
  padding: clamp(24px, 4vw, 42px);
}

.giveaway-card img {
  max-width: 280px;
  max-height: 90px;
  object-fit: contain;
}

.giveaway-card span {
  color: var(--teal);
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.giveaway-card strong {
  color: var(--navy);
  font-family: "Roca Two", Georgia, serif;
  font-size: clamp(1.8rem, 3vw, 3rem);
  line-height: 0.98;
}

.landing-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  max-width: 840px;
  padding: 28px;
}

.landing-form label {
  display: grid;
  gap: 8px;
  color: var(--navy);
  font-weight: 850;
}

.landing-form input,
.landing-form select,
.landing-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 13px 14px;
  font: inherit;
  color: var(--navy);
  background: var(--white);
}

.landing-form .full-field,
.landing-form button {
  grid-column: 1 / -1;
}

.landing-footer {
  padding: 34px 18px 46px;
  text-align: center;
  color: var(--muted);
  font-weight: 800;
}

@media (max-width: 980px) {
  .testimonial-grid,
  .proof-wall-grid,
  .giveaway-hero,
  .landing-form {
    grid-template-columns: 1fr;
  }

  .visual-workflow-section .workflow-map,
  .app-module-board {
    grid-template-columns: 1fr;
    grid-template-areas: none;
  }

  .visual-workflow-section .workflow-node,
  .visual-workflow-section .workflow-hub,
  .module-core {
    grid-area: auto;
    grid-column: auto;
  }

  .visual-workflow-section .workflow-arrow {
    width: 3px;
    height: 34px;
    margin-inline: auto;
  }

  .visual-workflow-section .workflow-arrow::after {
    right: 50%;
    top: auto;
    bottom: -4px;
    transform: translateX(50%) rotate(135deg);
  }

  .proof-logo-soup {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .client-logo-card {
    width: 240px;
    height: 108px;
  }
}

@media (max-width: 700px) {
  .social-proof-wall,
  .visual-workflow-section,
  .app-system-section {
    width: min(calc(100% - 28px), var(--max-width));
    padding: 34px 20px;
    border-radius: var(--radius);
  }

  .proof-logo-soup {
    grid-template-columns: 1fr;
  }

  .proof-quote-large {
    min-height: auto;
  }
}


.agile-value-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.9fr);
  gap: clamp(1.6rem, 4vw, 3rem);
  align-items: center;
  padding: clamp(1.8rem, 4vw, 3.5rem);
  border: 1px solid rgba(181, 217, 224, 0.8);
  border-radius: calc(var(--radius-lg) + 6px);
  background:
    radial-gradient(circle at 88% 12%, rgba(8, 179, 208, 0.2), transparent 26%),
    linear-gradient(135deg, rgba(255, 240, 224, 0.96), rgba(255, 255, 255, 0.92) 42%, rgba(181, 217, 224, 0.35));
  box-shadow: var(--shadow-soft);
}

.agile-value-panel .section-heading {
  max-width: 720px;
}

.agile-value-panel .section-actions {
  margin-top: 1.35rem;
}

.agile-value-visual {
  position: relative;
  min-height: 360px;
  overflow: hidden;
  border-radius: var(--radius-lg);
  background:
    radial-gradient(circle at 20% 16%, rgba(8, 179, 208, 0.5), transparent 24%),
    linear-gradient(135deg, var(--navy), #155c67);
  color: white;
  box-shadow: 0 24px 70px rgba(12, 44, 71, 0.22);
}

.value-orbit {
  position: absolute;
  inset: 1.3rem;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.75rem;
}

.value-orbit span,
.value-status-card {
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.72rem 0.9rem;
  backdrop-filter: blur(10px);
}

.value-core {
  position: absolute;
  inset: 50% auto auto 50%;
  width: min(78%, 330px);
  transform: translate(-50%, -50%);
  display: grid;
  gap: 0.8rem;
  place-items: center;
  text-align: center;
  padding: 1.7rem;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.1);
}

.value-core img {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  box-shadow: 0 18px 44px rgba(8, 179, 208, 0.28);
}

.value-core strong {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 3vw, 2.15rem);
  line-height: 1;
}

.value-core p {
  margin: 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.98rem;
}

.value-status-card {
  position: absolute;
  right: 1.2rem;
  bottom: 1.2rem;
  display: grid;
  gap: 0.18rem;
  min-width: 190px;
  border-radius: 18px;
  background: var(--sand);
  color: var(--navy);
  box-shadow: 0 18px 44px rgba(12, 44, 71, 0.22);
}

.value-status-card strong {
  font-size: 1.35rem;
  line-height: 1;
}

.value-status-card small {
  color: var(--teal);
  font-size: 0.8rem;
  font-weight: 900;
  text-transform: none;
  letter-spacing: 0;
}

.value-benefit-grid {
  margin-top: clamp(1.25rem, 3vw, 2rem);
}

.workflow-actions {
  margin-top: clamp(2.25rem, 5vw, 4rem);
  padding-top: 0.7rem;
}

.industry-split {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 0.72fr);
  gap: clamp(1.6rem, 4vw, 3rem);
  align-items: center;
}

.industry-copy .section-heading {
  margin-bottom: clamp(1.2rem, 3vw, 2rem);
}

.industry-image-card {
  position: relative;
  min-height: 430px;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(181, 217, 224, 0.8);
  border-radius: calc(var(--radius-lg) + 4px);
  background: var(--light-blue);
  box-shadow: var(--shadow-soft);
}

.industry-image-card img {
  width: 100%;
  height: 100%;
  min-height: 430px;
  display: block;
  object-fit: cover;
}

.industry-image-card figcaption {
  position: absolute;
  left: 1rem;
  right: 1rem;
  bottom: 1rem;
  padding: 1rem 1.1rem;
  border-radius: 18px;
  background: rgba(12, 44, 71, 0.86);
  color: white;
  font-weight: 900;
  line-height: 1.35;
  box-shadow: 0 14px 34px rgba(12, 44, 71, 0.28);
}

.industry-link-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  max-width: 980px;
}

.industry-link-grid a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0.8rem 1.05rem;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 999px;
  background: linear-gradient(135deg, var(--teal), #0b6376);
  color: var(--white);
  font-weight: 900;
  box-shadow: 0 14px 30px rgba(35, 124, 141, 0.2);
}

.industry-link-grid a:nth-child(2n) {
  background: linear-gradient(135deg, var(--navy), #174767);
}

.industry-link-grid a:hover,
.industry-link-grid a:focus-visible {
  border-color: rgba(255, 255, 255, 0.48);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 18px 36px rgba(35, 124, 141, 0.26);
}

.three-step-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.short-final-cta {
  margin-bottom: clamp(3rem, 8vw, 6rem);
}

@media (max-width: 860px) {
  .agile-value-panel,
  .industry-split {
    grid-template-columns: 1fr;
  }

  .agile-value-panel {
    padding: 1.25rem;
  }

  .agile-value-visual,
  .industry-image-card,
  .industry-image-card img {
    min-height: 320px;
  }

  .three-step-grid {
    grid-template-columns: 1fr;
  }

  .industry-link-grid {
    gap: 0.55rem;
  }

  .industry-link-grid a {
    width: 100%;
    justify-content: flex-start;
  }
}

/* SEO/GEO refactor: compact visual-first sections */
.visual-split-section {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1fr);
  gap: clamp(1.5rem, 4vw, 3.5rem);
  align-items: center;
}

.about-origin-section {
  grid-template-columns: minmax(0, 1fr) minmax(0, 0.9fr);
}

.founder-quote-section {
  margin-top: clamp(2.5rem, 6vw, 4.5rem);
  margin-bottom: clamp(2.5rem, 6vw, 4.5rem);
}

.founder-quote-card {
  position: relative;
  overflow: hidden;
  display: grid;
  gap: 0.95rem;
  padding: clamp(1.8rem, 4vw, 3.2rem);
  border-radius: calc(var(--radius) + 16px);
  background:
    radial-gradient(circle at 88% 18%, rgba(245, 203, 81, 0.18), transparent 28%),
    linear-gradient(135deg, #0c2c47, #164f68);
  color: var(--white);
  box-shadow: 0 32px 80px rgba(12, 44, 71, 0.24);
}

.founder-quote-card .eyebrow,
.founder-quote-card blockquote,
.founder-quote-card p,
.founder-quote-card cite {
  color: inherit;
}

.founder-quote-card blockquote {
  max-width: 780px;
  margin: 0;
  font-family: "Shadows Into Light Two", cursive;
  font-size: clamp(2rem, 4vw, 3.7rem);
  line-height: 1.05;
}

.founder-quote-card p {
  max-width: 800px;
  margin: 0;
  color: rgba(255, 255, 255, 0.84);
  font-size: clamp(0.98rem, 1.4vw, 1.1rem);
}

.founder-quote-card cite {
  display: grid;
  gap: 0.2rem;
  margin-top: 0.6rem;
  font-style: normal;
  font-weight: 950;
}

.founder-quote-card cite span {
  color: #f5cb51;
  font-weight: 850;
}

.founder-quote-card cite strong {
  font-family: "Shadows Into Light Two", cursive;
  color: var(--white);
  font-size: clamp(1.35rem, 2.2vw, 1.9rem);
  font-weight: 400;
}

.founder-handwritten-card {
  padding-right: clamp(1.8rem, 4vw, 3.2rem);
}

.founder-handwritten-card mark {
  padding: 0 0.12em;
  background: linear-gradient(to top, rgba(245, 203, 81, 0.42) 42%, transparent 42%);
  color: inherit;
}

.handwritten-underline {
  background-image: linear-gradient(transparent 74%, rgba(245, 203, 81, 0.75) 74%, rgba(245, 203, 81, 0.75) 88%, transparent 88%);
}

.founder-thanks {
  font-weight: 850;
}

.home-conversion-section {
  position: relative;
  overflow: hidden;
  display: grid;
  gap: clamp(1.5rem, 3vw, 2.25rem);
  padding: clamp(3rem, 7vw, 5.5rem) clamp(1.25rem, 5vw, 5rem);
  border-radius: calc(var(--radius) + 14px);
  background:
    linear-gradient(135deg, rgba(9, 34, 57, 0.98), rgba(20, 116, 134, 0.96));
  color: var(--white);
  box-shadow: 0 34px 86px rgba(9, 34, 57, 0.24);
}

.conversion-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(280px, 0.78fr);
  gap: clamp(1.5rem, 4vw, 3.5rem);
  align-items: center;
}

.home-conversion-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 82% 12%, rgba(236, 211, 128, 0.22), transparent 30%),
    radial-gradient(circle at 12% 86%, rgba(181, 232, 239, 0.22), transparent 34%);
  pointer-events: none;
}

.home-conversion-section > * {
  position: relative;
  z-index: 1;
}

.conversion-copy {
  max-width: 980px;
}

.conversion-copy .eyebrow,
.conversion-copy h2,
.conversion-copy p {
  color: inherit;
}

.conversion-copy .eyebrow {
  color: var(--sand);
}

.conversion-copy h2 {
  max-width: 760px;
  margin-bottom: 1rem;
  font-size: clamp(2.45rem, 4.6vw, 4.45rem);
}

.conversion-copy p {
  max-width: 700px;
  font-size: clamp(1.05rem, 1.55vw, 1.28rem);
  line-height: 1.55;
  opacity: 0.92;
}

.conversion-actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--button-gap);
  margin-top: 1.75rem;
}

.home-conversion-section .button-primary {
  background: var(--sand);
  color: var(--navy);
  box-shadow: 0 18px 40px rgba(236, 211, 128, 0.18);
}

.home-conversion-section .dark-button {
  border-color: rgba(255, 255, 255, 0.32);
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
}

.conversion-proof-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.conversion-proof-grid article {
  min-height: 150px;
  padding: clamp(1.1rem, 2vw, 1.45rem);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 16px 42px rgba(2, 12, 22, 0.16);
}

.conversion-proof-grid strong,
.conversion-proof-grid span {
  display: block;
  color: inherit;
}

.conversion-proof-grid strong {
  margin-bottom: 0.55rem;
  font-size: 1.18rem;
}

.conversion-proof-grid span {
  opacity: 0.82;
}

.conversion-apps-card {
  max-width: 820px;
  justify-self: center;
  margin-top: 0.5rem;
  border-color: rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 28px 66px rgba(2, 12, 22, 0.22);
}

.conversion-graphic {
  justify-self: center;
  width: min(100%, 420px);
  margin: 0;
}

.conversion-graphic img {
  display: block;
  width: 100%;
  height: auto;
  filter: drop-shadow(0 26px 46px rgba(2, 12, 22, 0.2));
}

.visual-split-copy {
  max-width: 700px;
}

.visual-split-copy h2 {
  max-width: 13.5ch;
  font-size: clamp(2.35rem, 3.4vw, 3.65rem);
  line-height: 1.02;
}

.workflow-visual-card,
.tool-orbit-card,
.diagnostic-card,
.app-companion-card {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(12, 44, 71, 0.1);
  border-radius: calc(var(--radius) + 10px);
  background:
    radial-gradient(circle at 12% 10%, rgba(8, 179, 208, 0.2), transparent 34%),
    radial-gradient(circle at 92% 20%, rgba(249, 139, 136, 0.18), transparent 28%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(181, 217, 224, 0.22));
  box-shadow: 0 26px 70px rgba(12, 44, 71, 0.12);
}

.workflow-visual-card,
.tool-orbit-card,
.diagnostic-card {
  padding: clamp(1.2rem, 3vw, 2rem);
}

.tool-orbit-card strong,
.diagnostic-card strong,
.app-companion-card strong {
  display: block;
  color: var(--navy);
  font-family: "Roca Two", Georgia, "Times New Roman", serif;
  font-size: clamp(1.55rem, 2.45vw, 2.25rem);
  line-height: 1.02;
}

.app-companion-card {
  display: grid;
  gap: 0.8rem;
  min-height: 0;
  padding: clamp(1.25rem, 3vw, 2rem);
  margin-bottom: 1rem;
}

.app-companion-card img {
  width: 56px;
  height: 56px;
}

.compact-card-grid .detail-card {
  min-height: 0;
}

.content-grid.service-card-grid {
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 14px;
}

.service-card-grid .service-card {
  padding: 22px;
  min-height: 260px;
}

.service-card-grid .service-card h3 {
  font-size: clamp(1.15rem, 1.35vw, 1.55rem);
}

.service-card-grid .service-card p {
  font-size: 0.94rem;
}

.diagram-section {
  width: min(calc(100% - 40px), var(--max-width));
  padding: clamp(3rem, 7vw, 5rem);
  margin-top: clamp(2rem, 5vw, 4rem);
  margin-bottom: clamp(2rem, 5vw, 4rem);
  border-radius: calc(var(--radius) + 18px);
  background:
    radial-gradient(circle at 12% 0%, rgba(8, 179, 208, 0.23), transparent 30%),
    radial-gradient(circle at 90% 22%, rgba(245, 203, 81, 0.22), transparent 26%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.92), rgba(181, 217, 224, 0.3));
  box-shadow: 0 26px 80px rgba(12, 44, 71, 0.11);
  overflow: hidden;
}

.workflow-map {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.55rem;
  align-items: stretch;
  margin-top: clamp(1.5rem, 4vw, 2.4rem);
}

.workflow-node {
  display: grid;
  gap: 0.75rem;
  flex: 1 1 210px;
  min-width: 0;
  min-height: 0;
  padding: clamp(1rem, 1.8vw, 1.2rem);
  border: 1px solid rgba(12, 44, 71, 0.11);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 16px 38px rgba(12, 44, 71, 0.08);
}

.workflow-node span {
  display: inline-grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: 14px;
  background: rgba(8, 179, 208, 0.13);
  color: var(--teal);
  font-weight: 950;
  letter-spacing: 0;
}

.workflow-node h3 {
  margin: 0;
  font-size: clamp(1.15rem, 1.65vw, 1.42rem);
  line-height: 1.08;
  overflow-wrap: anywhere;
}

.workflow-node p {
  margin: 0;
  color: rgba(9, 34, 57, 0.67);
  line-height: 1.5;
}

.workflow-connector {
  display: grid;
  place-items: center;
  flex: 0 0 20px;
  align-self: center;
  color: var(--teal);
  font-size: 1.45rem;
  font-weight: 950;
}

@supports selector(:has(*)) {
  .workflow-map:has(.workflow-node:nth-of-type(5)) .workflow-node {
    flex: 0 1 162px;
  }
}

.spacious-actions,
.section-actions.spacious-actions {
  margin-top: clamp(1.8rem, 5vw, 3rem);
  padding-top: 0.4rem;
}

.services-overview-section {
  padding: clamp(3.2rem, 6vw, 5rem) clamp(1.6rem, 4vw, 3.6rem);
  border: 1px solid rgba(12, 44, 71, 0.11);
  border-radius: calc(var(--radius) + 12px);
  background:
    radial-gradient(circle at 12% 12%, rgba(8, 179, 208, 0.16), transparent 30%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(181, 217, 224, 0.28));
  box-shadow: 0 24px 70px rgba(12, 44, 71, 0.1);
}

.service-flow-list {
  display: grid;
  gap: 18px;
}

.service-flow-card {
  display: grid;
  grid-template-columns: minmax(170px, 0.32fr) minmax(0, 1fr);
  gap: clamp(1.2rem, 3vw, 2.4rem);
  align-items: start;
  padding: clamp(1.35rem, 3vw, 2rem);
  border: 1px solid rgba(12, 44, 71, 0.1);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.82);
  box-shadow: var(--soft-shadow);
}

.service-flow-card--primary {
  border-color: rgba(35, 124, 141, 0.22);
  background:
    linear-gradient(135deg, rgba(181, 232, 239, 0.52), rgba(255, 255, 255, 0.9));
}

.service-step {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  min-height: 34px;
  padding: 0 0.8rem;
  border-radius: 999px;
  background: rgba(35, 124, 141, 0.11);
  color: var(--teal);
  font-size: 0.74rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.service-flow-card h3 {
  margin-bottom: 0.7rem;
  font-size: clamp(1.65rem, 2.7vw, 2.35rem);
}

.service-flow-card p {
  max-width: 720px;
  color: rgba(9, 34, 57, 0.72);
  font-size: 1.03rem;
}

.service-flow-points {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
  gap: 0.7rem 1rem;
  margin: 1.1rem 0 0;
  padding: 0;
  list-style: none;
}

.service-flow-points li {
  position: relative;
  padding-left: 1.05rem;
  color: rgba(12, 44, 71, 0.78);
  font-weight: 750;
}

.service-flow-points li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.6em;
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: var(--teal);
  box-shadow: 0 0 0 4px rgba(35, 124, 141, 0.1);
}

.app-image-frame {
  position: relative;
  margin: 0;
  padding: clamp(1rem, 2vw, 1.35rem);
  border: 1px solid rgba(12, 44, 71, 0.12);
  border-radius: calc(var(--radius) + 12px);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(181, 217, 224, 0.18));
  box-shadow: 0 26px 72px rgba(12, 44, 71, 0.13);
  cursor: zoom-in;
}

.app-image-frame img {
  display: block;
  width: 100%;
  max-height: 560px;
  object-fit: contain;
  border-radius: var(--radius);
}

.app-image-frame figcaption {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
}

.visual-proof-section {
  padding-top: clamp(3rem, 7vw, 5rem);
  padding-bottom: clamp(3rem, 7vw, 5rem);
}

.proof-mosaic {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.15fr) minmax(0, 1fr);
  gap: 1.1rem;
  align-items: stretch;
}

.pull-quote-card {
  display: grid;
  gap: 1.25rem;
  padding: clamp(1.35rem, 3vw, 2rem);
  border: 1px solid rgba(12, 44, 71, 0.1);
  border-radius: calc(var(--radius) + 4px);
  background: rgba(255, 255, 255, 0.84);
  box-shadow: var(--soft-shadow);
}

.pull-quote-card.featured {
  background: linear-gradient(135deg, var(--navy), var(--teal));
  color: white;
  transform: translateY(-0.8rem);
}

.pull-quote-card blockquote {
  margin: 0;
  color: inherit;
  font-size: clamp(1rem, 1.4vw, 1.18rem);
  font-weight: 850;
  line-height: 1.55;
}

.pull-quote-card cite {
  display: grid;
  gap: 0.25rem;
  color: var(--teal);
  font-style: normal;
  font-weight: 950;
}

.pull-quote-card.featured cite {
  color: var(--sand);
}

.pull-quote-card cite span {
  color: rgba(9, 34, 57, 0.6);
  font-size: 0.92rem;
}

.pull-quote-card.featured cite span {
  color: rgba(255, 255, 255, 0.78);
}

.resource-spotlight-section {
  padding: clamp(2rem, 5vw, 4.25rem);
  border-radius: calc(var(--radius) + 18px);
  background:
    radial-gradient(circle at 10% 15%, rgba(8, 179, 208, 0.22), transparent 34%),
    radial-gradient(circle at 92% 30%, rgba(245, 203, 81, 0.2), transparent 30%),
    linear-gradient(135deg, rgba(12, 44, 71, 0.96), rgba(35, 124, 141, 0.9));
  color: var(--white);
  overflow: hidden;
}

.resource-spotlight-section .section-heading {
  max-width: 760px;
  margin-inline: 0;
}

.resource-spotlight-section .eyebrow,
.resource-spotlight-section h2 {
  color: var(--white);
}

.resource-spotlight-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  margin-top: clamp(1.5rem, 3vw, 2.2rem);
}

.resource-spotlight-card {
  display: grid;
  gap: 0.7rem;
  padding: clamp(1.4rem, 3vw, 2rem);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
}

.resource-spotlight-card > span {
  display: inline-grid;
  width: 48px;
  height: 48px;
  place-items: center;
  border-radius: 16px;
  background: var(--maize);
  color: var(--navy);
  font-weight: 950;
}

.resource-spotlight-card h3,
.resource-spotlight-card p,
.resource-spotlight-card strong {
  margin: 0;
  color: inherit;
}

.resource-spotlight-card h3 {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
}

.resource-spotlight-card strong {
  color: var(--sand);
}

.resource-clarity-section {
  display: grid;
  grid-template-columns: minmax(240px, 0.82fr) minmax(0, 1.45fr);
  gap: clamp(1.5rem, 4vw, 3rem);
  align-items: start;
}

.industry-scroll-section {
  display: grid;
  grid-template-columns: minmax(250px, 0.72fr) minmax(0, 1.55fr);
  gap: clamp(1.5rem, 4vw, 3rem);
  align-items: start;
}

.clarity-intro {
  position: sticky;
  top: 8.5rem;
}

.clarity-intro h2,
.clarity-intro p {
  margin-bottom: 0;
}

.clarity-choice-grid {
  display: grid;
  gap: 0.85rem;
}

.industry-choice-list {
  max-height: min(760px, calc(100vh - 11rem));
  overflow-y: auto;
  padding: 0 0.35rem 0.25rem 0;
  overscroll-behavior: contain;
  scrollbar-color: rgba(38, 127, 146, 0.55) rgba(38, 127, 146, 0.12);
}

.industry-choice-list::-webkit-scrollbar {
  width: 10px;
}

.industry-choice-list::-webkit-scrollbar-track {
  background: rgba(38, 127, 146, 0.12);
  border-radius: 999px;
}

.industry-choice-list::-webkit-scrollbar-thumb {
  background: rgba(38, 127, 146, 0.55);
  border-radius: 999px;
}

.clarity-choice {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 1rem;
  align-items: start;
  padding: clamp(1.1rem, 2.5vw, 1.65rem);
  border: 1px solid rgba(38, 127, 146, 0.18);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(224, 246, 249, 0.74));
  box-shadow: 0 16px 36px rgba(9, 34, 57, 0.08);
  color: var(--navy);
}

.industry-choice {
  min-height: 156px;
}

.industry-choice .card-icon {
  width: 48px;
  height: 48px;
  margin: 0;
  color: var(--white);
}

.clarity-choice > span {
  display: inline-grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border-radius: 14px;
  background: var(--teal);
  color: var(--white);
  font-weight: 950;
  letter-spacing: 0;
}

.clarity-choice h3,
.clarity-choice p,
.clarity-choice strong {
  margin: 0;
}

.clarity-choice h3 {
  font-size: clamp(1.3rem, 2.2vw, 1.85rem);
}

.clarity-choice p {
  margin-top: 0.35rem;
  color: var(--muted);
}

.clarity-choice strong {
  display: inline-block;
  margin-top: 0.75rem;
  color: var(--teal);
}

.clarity-choice:hover {
  transform: translateY(-2px);
  border-color: rgba(38, 127, 146, 0.42);
  box-shadow: 0 20px 42px rgba(9, 34, 57, 0.12);
}

.video-section {
  display: grid;
  grid-template-columns: minmax(260px, 0.72fr) minmax(0, 1.28fr);
  gap: clamp(1.5rem, 4vw, 3rem);
  align-items: center;
}

.video-section .section-heading {
  margin: 0;
}

.video-embed-card {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(12, 44, 71, 0.12);
  border-radius: calc(var(--radius) + 10px);
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 24px 64px rgba(12, 44, 71, 0.14);
}

.video-embed-card::before {
  content: "";
  display: block;
  aspect-ratio: 16 / 9;
}

.video-embed-card iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.logo-soup,
.compact-logo-soup {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1.5rem, 5vw, 4rem);
  align-items: center;
  justify-content: center;
  margin-top: clamp(2rem, 5vw, 3.5rem);
  opacity: 0.78;
}

.logo-soup img {
  width: auto;
  max-width: min(230px, 42vw);
  height: auto;
  max-height: 86px;
  object-fit: contain;
  filter: grayscale(1);
  mix-blend-mode: multiply;
}

.client-logo-matrix-wrap {
  position: relative;
  margin-top: clamp(2rem, 5vw, 3.5rem);
  padding: clamp(1rem, 2.5vw, 1.35rem);
  overflow: hidden;
  border: 1px solid rgba(12, 44, 71, 0.08);
  border-radius: calc(var(--radius) + 8px);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.74), rgba(181, 217, 224, 0.22));
}

.client-logo-matrix-wrap::before,
.client-logo-matrix-wrap::after {
  position: absolute;
  right: 0;
  left: 0;
  z-index: 2;
  height: 86px;
  content: "";
  pointer-events: none;
}

.client-logo-matrix-wrap::before {
  top: 0;
  background: linear-gradient(180deg, rgba(255, 250, 244, 0.92) 0%, rgba(255, 250, 244, 0.62) 48%, rgba(255, 250, 244, 0) 100%);
}

.client-logo-matrix-wrap::after {
  bottom: 0;
  background: linear-gradient(0deg, rgba(255, 250, 244, 0.92) 0%, rgba(255, 250, 244, 0.62) 48%, rgba(255, 250, 244, 0) 100%);
}

.client-logo-matrix-intro {
  position: relative;
  z-index: 3;
  display: grid;
  gap: 0.6rem;
  justify-items: center;
  width: min(100%, 1040px);
  margin: 0 auto clamp(1.35rem, 2.8vw, 2rem);
  text-align: center;
}

.client-logo-matrix-intro .eyebrow,
.client-logo-matrix-intro h3 {
  margin-bottom: 0;
}

.client-logo-matrix-intro h3 {
  max-width: 34ch;
  font-size: clamp(1.35rem, 1.8vw, 1.95rem);
  line-height: 1.12;
}

.client-logo-matrix-intro p:not(.eyebrow) {
  max-width: 620px;
  margin: 0 auto;
  color: var(--muted);
  font-size: 1.02rem;
}

.client-logo-marquee {
  position: relative;
  z-index: 1;
  height: clamp(260px, 28vw, 360px);
  overflow: hidden;
  border-radius: 18px;
}

.client-logo-marquee-track {
  display: grid;
  gap: 5px;
  animation: clientLogoScroll 48s linear infinite;
  will-change: transform;
}

.client-logo-marquee:hover .client-logo-marquee-track,
.client-logo-marquee:focus-within .client-logo-marquee-track {
  animation-play-state: paused;
}

.client-logo-matrix {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 10px 16px;
}

.client-logo-cell {
  display: grid;
  min-height: 78px;
  place-items: center;
  padding: 12px 10px;
  border: 1px solid rgba(12, 44, 71, 0.06);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.46);
}

.client-logo-cell img {
  display: block;
  width: auto;
  max-width: 100%;
  height: auto;
  max-height: 48px;
  object-fit: contain;
  filter: grayscale(1);
  opacity: 0.72;
  transition: filter 180ms ease, opacity 180ms ease, transform 180ms ease;
}

.client-logo-cell:hover img {
  filter: grayscale(0.2);
  opacity: 1;
  transform: scale(1.04);
}

@keyframes clientLogoScroll {
  from {
    transform: translateY(0);
  }

  to {
    transform: translateY(calc(-50% - 2.5px));
  }
}

@media (prefers-reduced-motion: reduce) {
  .client-logo-marquee-track {
    animation: none;
  }
}

.answer-block,
.article-layout {
  max-width: 920px;
}

.article-layout {
  padding-top: clamp(3rem, 7vw, 6rem);
}

.article-layout h1 {
  max-width: 13ch;
}

.article-lede {
  max-width: 820px;
  color: rgba(9, 34, 57, 0.72);
  font-size: clamp(1.1rem, 2vw, 1.35rem);
  line-height: 1.65;
}

.toc-card {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin: clamp(1.3rem, 4vw, 2.3rem) 0;
  padding: 1rem;
  border: 1px solid rgba(12, 44, 71, 0.1);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.78);
}

.toc-card strong,
.toc-card a {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
}

.toc-card strong {
  margin-right: 0.35rem;
}

.toc-card a {
  padding: 0.55rem 0.85rem;
  border-radius: 999px;
  background: rgba(181, 217, 224, 0.32);
  color: var(--navy);
  font-weight: 850;
}

.no-fake-price .estimate-plan strong {
  font-family: "Roca Two", Georgia, "Times New Roman", serif;
  font-size: clamp(2rem, 3.4vw, 3.05rem);
  line-height: 1;
}

.proof-list span {
  cursor: default;
}

.compact-final-cta {
  margin-top: clamp(3rem, 7vw, 5rem);
}

.site-footer.expanded-footer {
  gap: clamp(2rem, 5vw, 4rem);
}

.comments-area,
#comments,
.comment-respond,
.wp-block-comments,
.wp-block-post-comments,
.wp-block-post-comments-form,
.wp-block-latest-comments,
.wp-block-post-comments-count,
.jetpack-comment-form,
.subscription-box,
.subscribe-blog,
.wp-block-jetpack-subscriptions {
  display: none !important;
}

@media (max-width: 1100px) {
  .visual-split-section,
  .conversion-layout,
  .industry-split,
  .industry-scroll-section,
  .resource-clarity-section,
  .video-section {
    grid-template-columns: 1fr;
  }

  .conversion-proof-grid {
    grid-template-columns: 1fr;
  }

  .clarity-intro {
    position: static;
  }

  .industry-choice-list {
    max-height: none;
    overflow: visible;
    padding-right: 0;
  }

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

  .workflow-connector {
    min-height: 28px;
    transform: rotate(90deg);
  }

  .proof-mosaic {
    grid-template-columns: 1fr;
  }

  .pull-quote-card.featured {
    transform: none;
  }
}

@media (max-width: 920px) {
  .client-logo-matrix {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  :root {
    --header-height: 64px;
    --header-top-gap: 12px;
  }

  body {
    background:
      linear-gradient(180deg, rgba(181, 217, 224, 0.22) 0, rgba(255, 250, 244, 0) 520px),
      var(--paper);
  }

  .site-header {
    top: 12px;
    padding: 8px 10px 8px 12px;
  }

  .brand-logo-full {
    width: clamp(118px, 38vw, 146px);
  }

  .site-nav {
    inset: 92px 12px auto;
    border-radius: 18px;
  }

  .section-shell,
  .logos-band,
  .site-footer {
    width: min(calc(100% - 24px), var(--max-width));
  }

  .page-section,
  .testimonial-section,
  .ease-section,
  .compare-ease-section {
    padding: clamp(3rem, 12vw, 4.5rem) 0;
  }

  .hero,
  .page-hero {
    gap: 1.5rem;
    padding-top: 42px;
  }

  .hero-copy,
  .section-heading,
  .visual-split-copy,
  .final-copy,
  .clarity-intro {
    max-width: none;
  }

  .hero-text,
  .section-heading p,
  .visual-split-copy p {
    font-size: 1rem;
    line-height: 1.58;
  }

  .hero-actions,
  .section-actions {
    width: 100%;
    flex-direction: column;
    align-items: stretch;
  }

  .button {
    width: 100%;
    min-height: 50px;
  }

  .proof-list,
  .hero-proof {
    gap: 0.55rem;
  }

  .proof-list span,
  .hero-proof span {
    min-height: 34px;
    padding: 0.35rem 0;
    font-size: 0.85rem;
  }

  .app-image-frame,
  .industry-image-card,
  .product-panel,
  .visual-card,
  .workflow-visual-card,
  .tool-orbit-card,
  .resource-spotlight-section,
  .resource-clarity-section,
  .home-conversion-section,
  .founder-quote-card,
  .final-cta {
    border-radius: 18px;
  }

  .home-conversion-section,
  .resource-spotlight-section,
  .resource-clarity-section,
  .final-cta,
  .founder-quote-card {
    padding: 1.25rem;
  }

  .conversion-graphic img,
  .connected-apps-image {
    max-height: 360px;
    object-fit: contain;
  }

  .founder-quote-card blockquote {
    font-size: clamp(1.85rem, 12vw, 3rem);
  }

  .founder-handwritten-card {
    padding-right: 1.25rem;
  }

  .estimate-plan-grid,
  .estimator-layout,
  .pricing-estimator-v2 {
    grid-template-columns: 1fr;
  }

  .estimator-controls,
  .estimate-plan {
    padding: 1.25rem;
  }

  .table-wrap,
  .comparison-table {
    max-width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }

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

  .feature-comparison th,
  .feature-comparison td {
    padding: 0.85rem;
  }

  .team-photo-band,
  .logo-soup,
  .compact-logo-soup {
    gap: 1rem;
  }

  .team-photo-band img {
    min-height: 220px;
  }

  .footer-column-grid {
    gap: 1.5rem;
  }

  .resource-spotlight-grid {
    grid-template-columns: 1fr;
  }

  .resource-spotlight-section {
    padding: 1.25rem;
  }

  .clarity-choice {
    grid-template-columns: 1fr;
  }

  .diagram-section {
    width: min(calc(100% - 24px), var(--max-width));
    padding: 1.25rem;
  }

  .visual-split-copy h2,
  .article-layout h1 {
    max-width: none;
  }

  .content-grid.four-col,
  .content-grid.three-col {
    grid-template-columns: 1fr;
  }

  .logo-soup {
    justify-content: center;
    text-align: center;
  }

  .client-logo-matrix-wrap {
    padding: 1rem;
  }

  .client-logo-marquee {
    height: 300px;
  }

  .client-logo-matrix {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.65rem;
  }

  .client-logo-cell {
    min-height: 82px;
    padding: 0.75rem;
  }

  .client-logo-cell img {
    max-height: 44px;
  }

  .workflow-map {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.85rem;
    align-items: stretch;
    justify-items: stretch;
  }

  .workflow-node {
    width: 100%;
    flex: none;
    padding: 1.15rem;
  }

  .workflow-node h3 {
    overflow-wrap: normal;
    word-break: normal;
    hyphens: auto;
  }

  .workflow-connector {
    width: 100%;
    min-height: 28px;
    transform: rotate(90deg);
    font-size: 1.45rem;
  }
}

.illustrated-workflow-node {
  align-content: start;
}

.workflow-node .workflow-illustration {
  display: inline-grid;
  width: 76px;
  height: 76px;
  place-items: center;
  margin-bottom: 0.1rem;
  border: 2px solid rgba(35, 124, 141, 0.22);
  border-radius: 24px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(181, 232, 239, 0.26)),
    var(--white);
  color: var(--teal);
  box-shadow: 0 18px 38px rgba(12, 44, 71, 0.1);
}

.workflow-node .workflow-illustration svg {
  width: 54px;
  height: 54px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.workflow-node .workflow-image-illustration {
  display: block;
  width: 100%;
  height: 176px;
  margin-bottom: 1.1rem;
  overflow: hidden;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.82);
}

.workflow-node .workflow-image-illustration img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}

.monthly-how-section,
.catchup-reassurance-section,
.context-highlight-section,
.app-interaction-section {
  padding: clamp(3rem, 5.8vw, 4.8rem) clamp(1.8rem, 4.5vw, 4rem);
  border: 1px solid rgba(12, 44, 71, 0.11);
  border-radius: calc(var(--radius) + 12px);
  background:
    radial-gradient(circle at 12% 10%, rgba(8, 179, 208, 0.18), transparent 30%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.94), rgba(181, 217, 224, 0.34));
  box-shadow: 0 24px 70px rgba(12, 44, 71, 0.11);
}

.monthly-how-section .section-heading,
.catchup-reassurance-section .section-heading,
.context-highlight-section .section-heading,
.app-interaction-section .section-heading {
  max-width: 920px;
}

.context-highlight-section .section-heading {
  margin-inline: auto;
  text-align: center;
}

.context-highlight-section .content-grid {
  width: 100%;
  max-width: 980px;
  margin-inline: auto;
}

.app-interaction-section .section-heading {
  margin-inline: auto;
  text-align: center;
}

.app-interaction-section .app-placeholder-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(1rem, 2vw, 1.35rem);
}

.monthly-how-section h2,
.catchup-reassurance-section h2 {
  max-width: 16ch;
}

.product-plugs-section .conversion-copy h2 {
  max-width: 13ch;
}

.app-placeholder-card {
  display: grid;
  gap: 0.8rem;
  padding: clamp(1rem, 2vw, 1.3rem);
  border: 1px solid rgba(12, 44, 71, 0.1);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.84);
  box-shadow: 0 18px 44px rgba(12, 44, 71, 0.08);
}

.app-placeholder-frame {
  position: relative;
  display: block;
  min-height: 170px;
  margin: 0;
  padding: 0;
  overflow: hidden;
  border: 1px dashed rgba(35, 124, 141, 0.38);
  border-radius: calc(var(--radius) - 4px);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.86), rgba(181, 232, 239, 0.26));
  color: var(--teal);
  font-weight: 950;
}

.app-placeholder-frame::before {
  display: none;
}

.app-placeholder-frame img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 170px;
  object-fit: cover;
  object-position: top center;
}

.app-placeholder-frame figcaption {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.industry-simple-grid {
  align-items: stretch;
}

.industry-simple-card {
  min-height: 210px;
}

.industry-simple-card .card-icon {
  display: inline-grid;
  width: 54px;
  height: 54px;
  place-items: center;
  margin-bottom: 0.95rem;
  border-radius: 16px;
  background: linear-gradient(135deg, var(--teal), #4bc0d8);
  color: var(--white);
  box-shadow: 0 18px 32px rgba(35, 124, 141, 0.2);
}

.industry-simple-card .card-icon svg {
  width: 28px;
  height: 28px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.industry-simple-card h3 {
  min-height: 2.35em;
}

.industry-icon-section .section-heading {
  max-width: 780px;
  margin-bottom: clamp(1.8rem, 4vw, 3rem);
}

.industry-icon-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(0.85rem, 1.6vw, 1.15rem);
}

.industry-icon-card {
  position: relative;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) 14px;
  gap: 1rem;
  align-items: center;
  min-width: 0;
  min-height: 112px;
  overflow: hidden;
  padding: clamp(1rem, 1.8vw, 1.25rem);
  border: 1px solid rgba(12, 44, 71, 0.1);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(181, 217, 224, 0.16)),
    var(--white);
  box-shadow: 0 18px 40px rgba(12, 44, 71, 0.09);
  color: var(--navy);
  text-decoration: none;
  transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.industry-icon-card::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 5px;
  background: var(--teal);
}

.industry-icon-card::after {
  content: "";
  justify-self: end;
  width: 10px;
  height: 10px;
  border-top: 2px solid currentColor;
  border-right: 2px solid currentColor;
  opacity: 0.46;
  transform: rotate(45deg);
  transition: opacity 180ms ease, transform 180ms ease;
}

.industry-icon-card:hover,
.industry-icon-card:focus-visible {
  border-color: rgba(35, 124, 141, 0.26);
  box-shadow: 0 22px 46px rgba(12, 44, 71, 0.13);
  transform: translateY(-3px);
}

.industry-icon-card:hover::after,
.industry-icon-card:focus-visible::after {
  opacity: 1;
  transform: translateX(3px) rotate(45deg);
}

.industry-icon {
  display: inline-grid;
  width: 54px;
  height: 54px;
  place-items: center;
  border: 1px solid rgba(35, 124, 141, 0.14);
  border-radius: 16px;
  background: rgba(181, 217, 224, 0.2);
  color: var(--teal);
}

.industry-icon svg {
  width: 28px;
  height: 28px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.industry-icon-title {
  min-width: 0;
  font-family: "Roca Two", Georgia, "Times New Roman", serif;
  font-size: clamp(1.18rem, 1.8vw, 1.55rem);
  font-weight: 900;
  line-height: 1.04;
  overflow-wrap: anywhere;
}

.team-values-section .detail-card,
.context-highlight-section .detail-card {
  background: rgba(255, 255, 255, 0.76);
}

.team-value-icon {
  display: inline-grid;
  width: 54px;
  height: 54px;
  place-items: center;
  margin-bottom: 1rem;
  border-radius: 18px;
  background:
    radial-gradient(circle at 70% 20%, rgba(245, 203, 81, 0.42), transparent 32%),
    linear-gradient(135deg, rgba(35, 124, 141, 0.96), rgba(8, 179, 208, 0.72));
  color: var(--white);
  box-shadow: 0 16px 32px rgba(35, 124, 141, 0.18);
}

.team-value-icon svg {
  width: 29px;
  height: 29px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

@media (max-width: 760px) {
  .workflow-node .workflow-illustration {
    width: 66px;
    height: 66px;
    border-radius: 20px;
  }

  .workflow-node .workflow-illustration svg {
    width: 46px;
    height: 46px;
  }

  .workflow-node .workflow-image-illustration {
    width: 100%;
    height: 170px;
    border-radius: 18px;
  }

  .monthly-how-section,
  .catchup-reassurance-section,
  .context-highlight-section,
  .app-interaction-section {
    padding: 1.25rem;
    border-radius: 18px;
  }

  .services-overview-section {
    padding: 1.25rem;
    border-radius: 18px;
  }

  .service-flow-card {
    grid-template-columns: 1fr;
    gap: 1rem;
    padding: 1.2rem;
  }

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

  .app-interaction-section .app-placeholder-grid {
    grid-template-columns: 1fr;
  }

  .app-placeholder-frame,
  .app-placeholder-frame img {
    min-height: 140px;
  }

  .industry-simple-card {
    min-height: 0;
  }

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

@media (max-width: 560px) {
  .industry-icon-section .section-heading {
    margin-bottom: 1.35rem;
  }

  .industry-icon-grid {
    grid-template-columns: 1fr;
  }

  .industry-icon-card {
    min-height: 88px;
    padding: 0.95rem 1rem;
  }

  .industry-icon {
    width: 46px;
    height: 46px;
  }
}

@media (min-width: 821px) {
  h1 {
    max-width: min(980px, 100%);
  }

  h2,
  .section-heading h2,
  .conversion-copy h2,
  .visual-split-copy h2,
  .final-copy h2,
  .human-story-copy h2,
  .updates-signup-copy h2,
  .founder-story-copy h2,
  .clarity-intro h2,
  .article-layout h1,
  .monthly-how-section h2,
  .catchup-reassurance-section h2,
  .product-plugs-section .conversion-copy h2 {
    max-width: min(980px, 100%);
  }

  .section-heading,
  .proof-wall-intro,
  .clarity-intro,
  .conversion-copy,
  .resource-spotlight-section .section-heading,
  .video-section .section-heading,
  .app-system-section .section-heading,
  .monthly-how-section .section-heading,
  .catchup-reassurance-section .section-heading,
  .context-highlight-section .section-heading,
  .app-interaction-section .section-heading {
    max-width: min(980px, 100%);
  }

  .section-heading p:not(.eyebrow),
  .conversion-copy p,
  .proof-wall-intro p,
  .clarity-intro p,
  .app-system-section .section-heading p:not(.eyebrow) {
    max-width: min(820px, 100%);
  }
}

/* Combined branch additions: accountant page and industry template */

.accountant-package-section {
  align-items: center;
  padding-block: clamp(4rem, 7vw, 6rem);
}

.accountant-hero-module {
  max-width: 680px;
  padding: clamp(1.15rem, 2.2vw, 1.6rem);
  background:
    radial-gradient(circle at 10% 8%, rgba(8, 179, 208, 0.14), transparent 32%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(181, 217, 224, 0.22));
}

.accountant-hero-module .mini-header {
  align-items: flex-start;
}

.accountant-hero-module .mini-header span {
  color: rgba(12, 44, 71, 0.62);
}

.accountant-hero-module .metric-card {
  min-height: 126px;
}

.accountant-hero-module .metric-card strong {
  font-size: clamp(1.35rem, 2.4vw, 1.78rem);
  line-height: 1;
}

.accountant-package-download {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 58px;
  padding: 0.85rem 1rem;
  margin-top: 0.85rem;
  border-radius: var(--radius-sm);
  background: var(--navy);
  color: var(--white);
  box-shadow: 0 16px 34px rgba(12, 44, 71, 0.16);
}

.accountant-package-download span {
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.78rem;
  font-weight: 850;
}

.accountant-package-download strong {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 0.95rem;
  border-radius: 999px;
  background: var(--sand);
  color: var(--navy);
  font-size: 0.82rem;
  font-weight: 950;
  white-space: nowrap;
}

.accountant-package-download strong::after {
  content: "↓";
  margin-left: 0.45rem;
  color: var(--teal);
  font-weight: 950;
}

.accountant-app-module {
  min-height: 0;
  padding: clamp(1rem, 2vw, 1.35rem);
  border: 1px solid rgba(12, 44, 71, 0.1);
  border-radius: calc(var(--radius) + 8px);
  background:
    radial-gradient(circle at 12% 10%, rgba(8, 179, 208, 0.16), transparent 32%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(181, 217, 224, 0.24));
  box-shadow: 0 24px 60px rgba(12, 44, 71, 0.12);
}

.accountant-app-body {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(170px, 0.58fr);
  gap: 0.9rem;
}

.app-window-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1rem;
  color: rgba(12, 44, 71, 0.62);
  font-size: 0.82rem;
  font-weight: 850;
}

.app-window-bar strong {
  display: block;
  color: var(--navy);
  font-size: 1.15rem;
}

.app-pill {
  display: inline-flex;
  min-height: 30px;
  align-items: center;
  padding: 0 0.75rem;
  border-radius: 999px;
  background: rgba(35, 124, 141, 0.12);
  color: var(--teal);
  font-size: 0.75rem;
  font-weight: 950;
  white-space: nowrap;
}

.app-tabs {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.45rem;
  margin-bottom: 1rem;
}

.app-tabs span {
  display: grid;
  min-height: 34px;
  place-items: center;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.78);
  color: rgba(12, 44, 71, 0.64);
  font-size: 0.72rem;
  font-weight: 900;
}

.app-tabs span:first-child {
  background: var(--navy);
  color: var(--white);
}

.close-checklist,
.package-panel {
  display: grid;
  gap: 0.55rem;
  padding: 0.8rem;
  border: 1px solid rgba(12, 44, 71, 0.08);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.82);
}

.close-checklist h3,
.package-panel h3 {
  margin: 0 0 0.25rem;
  font-size: 1.05rem;
}

.close-item,
.package-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.6rem;
  min-height: 42px;
  padding: 0.55rem 0.65rem;
  border-radius: var(--radius-sm);
  background: rgba(181, 217, 224, 0.22);
  color: var(--navy);
  font-size: 0.82rem;
  font-weight: 850;
}

.close-item em,
.package-item em {
  color: var(--teal);
  font-size: 0.72rem;
  font-style: normal;
  font-weight: 950;
  white-space: nowrap;
}

.package-download-action {
  display: grid;
  min-height: 48px;
  place-items: center;
  margin-top: 0.25rem;
  border-radius: 999px;
  background: var(--sand);
  color: var(--navy);
  font-size: 0.82rem;
  font-weight: 950;
}

.accountant-package-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.72rem 1rem;
  max-width: 680px;
  margin: 1.35rem 0 0;
  padding: 0;
  list-style: none;
}

.accountant-package-list li {
  position: relative;
  min-height: 42px;
  padding: 0.72rem 0.85rem 0.72rem 2.05rem;
  border: 1px solid rgba(12, 44, 71, 0.09);
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.76);
  color: var(--navy);
  font-weight: 850;
  box-shadow: 0 12px 30px rgba(12, 44, 71, 0.06);
}

.accountant-package-list li::before {
  content: "";
  position: absolute;
  left: 0.78rem;
  top: 50%;
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: var(--teal);
  box-shadow: 0 0 0 5px rgba(35, 124, 141, 0.12);
  transform: translateY(-50%);
}

.accountant-module-preview {
  display: grid;
  gap: 0.9rem;
  padding: clamp(1.2rem, 3vw, 1.8rem);
  border: 1px solid rgba(12, 44, 71, 0.1);
  border-radius: calc(var(--radius) + 12px);
  background:
    radial-gradient(circle at 12% 10%, rgba(8, 179, 208, 0.18), transparent 34%),
    radial-gradient(circle at 88% 4%, rgba(245, 203, 81, 0.18), transparent 24%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(181, 217, 224, 0.28));
  box-shadow: 0 28px 76px rgba(12, 44, 71, 0.14);
}

.module-preview-top,
.module-preview-footer,
.module-preview-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.module-preview-top {
  padding-bottom: 0.2rem;
}

.module-preview-top span,
.module-preview-footer span {
  display: block;
  color: rgba(12, 44, 71, 0.6);
  font-size: 0.82rem;
  font-weight: 850;
}

.module-preview-top strong,
.module-preview-footer strong {
  display: block;
  color: var(--navy);
  font-size: clamp(1.35rem, 2.4vw, 2rem);
  line-height: 1.05;
}

.module-preview-top em,
.module-preview-row strong {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 0.8rem;
  border-radius: 999px;
  font-size: 0.76rem;
  font-style: normal;
  font-weight: 900;
  white-space: nowrap;
}

.module-preview-top em,
.module-preview-row.ready strong {
  background: rgba(236, 211, 128, 0.42);
  color: var(--russet);
}

.module-preview-row.progress strong {
  background: rgba(236, 211, 128, 0.42);
  color: var(--russet);
}

.module-progress {
  position: relative;
  height: 14px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(12, 44, 71, 0.11);
  box-shadow: inset 0 1px 2px rgba(12, 44, 71, 0.08);
}

.module-progress span {
  display: block;
  width: 75%;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--teal), var(--aqua));
  box-shadow: 0 3px 8px rgba(25, 130, 143, 0.24);
}

.module-preview-row {
  min-height: 58px;
  padding: 0.85rem 1rem;
  border: 1px solid rgba(12, 44, 71, 0.09);
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.84);
}

.module-preview-row span {
  color: var(--navy);
  font-weight: 850;
}

.module-preview-row.complete strong {
  background: rgba(35, 124, 141, 0.12);
  color: var(--teal);
}

.module-preview-row.open strong {
  background: rgba(249, 139, 136, 0.16);
  color: var(--russet);
}

.module-preview-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 0.2rem;
  padding: 1rem;
  border-radius: var(--radius-sm);
  background: rgba(12, 44, 71, 0.92);
}

.module-preview-footer span,
.module-preview-footer strong {
  color: var(--white);
}

.module-preview-footer span {
  opacity: 0.7;
}

.module-preview-footer strong {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 0 0.95rem;
  border-radius: 999px;
  background: rgba(181, 232, 239, 0.92);
  color: var(--navy);
  font-size: clamp(1rem, 1.8vw, 1.35rem);
  line-height: 1;
  white-space: nowrap;
}

.accountant-outcome-band {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1fr);
  gap: clamp(1.4rem, 4vw, 3rem);
  align-items: center;
  padding: clamp(2.2rem, 5vw, 3.4rem);
  margin-top: clamp(2.4rem, 5vw, 4rem);
  margin-bottom: clamp(2.4rem, 5vw, 4rem);
  border: 1px solid rgba(12, 44, 71, 0.1);
  border-radius: calc(var(--radius) + 14px);
  background:
    linear-gradient(135deg, rgba(12, 44, 71, 0.98), rgba(35, 124, 141, 0.96));
  box-shadow: 0 28px 76px rgba(12, 44, 71, 0.17);
}

.accountant-outcome-copy h2,
.accountant-outcome-copy p,
.accountant-outcome-copy .eyebrow {
  color: var(--white);
}

.accountant-outcome-copy .eyebrow {
  color: var(--sand);
}

.accountant-outcome-copy p {
  max-width: 620px;
  color: rgba(255, 255, 255, 0.76);
}

.accountant-outcome-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.85rem;
}

.accountant-outcome-grid article {
  min-height: 154px;
  padding: 1.05rem;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.09);
  color: var(--white);
}

.accountant-outcome-grid strong {
  display: block;
  margin-bottom: 0.55rem;
  font-family: "Roca Two", Georgia, "Times New Roman", serif;
  font-size: clamp(1.35rem, 2vw, 1.8rem);
  line-height: 1.05;
}

.accountant-outcome-grid span {
  display: block;
  color: rgba(255, 255, 255, 0.76);
  font-weight: 720;
  line-height: 1.45;
}

@media (max-width: 900px) {
  .accountant-outcome-band,
  .accountant-outcome-grid,
  .accountant-app-body {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .accountant-package-list {
    grid-template-columns: 1fr;
  }

  .accountant-package-download {
    align-items: flex-start;
    flex-direction: column;
  }

  .module-preview-top,
  .module-preview-footer,
  .module-preview-row {
    align-items: flex-start;
    flex-direction: column;
    gap: 0.45rem;
  }
}

.conversion-copy .complexity-tagline {
  margin-top: 0.85rem;
  color: var(--sand);
  font-size: clamp(1.12rem, 1.7vw, 1.38rem);
  font-weight: 900;
  opacity: 1;
}

.industry-complexity-section .workflow-map {
  gap: clamp(0.7rem, 1.6vw, 1rem);
}

.industry-complexity-section .workflow-node {
  flex-basis: 280px;
  min-height: 218px;
  padding: clamp(1.25rem, 2.4vw, 1.75rem);
  background: rgba(255, 255, 255, 0.92);
}

.industry-complexity-section .workflow-node span {
  background: rgba(236, 211, 128, 0.5);
  color: var(--navy);
}

.industry-complexity-section .workflow-connector {
  color: var(--sand);
}

.visual-proof-section[aria-labelledby="accountant-proof-title"] .pull-quote-card cite {
  font-size: clamp(0.72rem, 0.78vw, 0.82rem);
  font-weight: 650;
  letter-spacing: 0;
  line-height: 1.25;
  white-space: nowrap;
}

.industry-proof-section .proof-mosaic {
  margin-top: 0;
}

.industry-proof-section .pull-quote-card.featured {
  transform: none;
}

.client-logo-cell img {
  filter: grayscale(1) brightness(0.84) contrast(1.02);
  opacity: 0.7;
}

.client-logo-cell img.logo-slightly-darker {
  filter: grayscale(1) brightness(0);
  opacity: 0.36;
}

.industry-logo-strip {
  max-width: 980px;
  margin-inline: auto;
  margin-bottom: clamp(2.75rem, 6vw, 4.25rem);
  overflow: visible;
}

.industry-logo-strip::before,
.industry-logo-strip::after {
  display: none;
}

.industry-logo-strip .client-logo-matrix {
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: clamp(0.45rem, 1.3vw, 0.85rem);
}

.industry-logo-strip .client-logo-cell {
  min-width: 0;
  height: clamp(72px, 8vw, 92px);
  padding: clamp(0.55rem, 1.4vw, 0.85rem);
}

.industry-proof-section .logo-soup {
  margin-bottom: 0;
  padding-bottom: clamp(3.75rem, 7vw, 5.5rem);
}

.final-year-end-module {
  max-width: 420px;
  margin-inline: auto;
  color: var(--navy);
  transform: rotate(0.8deg);
}

.final-year-end-module .accountant-app-body {
  grid-template-columns: 1fr;
}

.final-year-end-module .app-window-bar {
  margin-bottom: 0.75rem;
}

.final-year-end-module .app-tabs {
  gap: 0.35rem;
  margin-bottom: 0.75rem;
}

.final-year-end-module .app-tabs span {
  min-height: 30px;
  font-size: 0.62rem;
}

.final-year-end-module .close-checklist,
.final-year-end-module .package-panel {
  gap: 0.42rem;
  padding: 0.68rem;
}

.final-year-end-module .close-checklist h3,
.final-year-end-module .package-panel h3 {
  font-size: 0.95rem;
}

.final-year-end-module .close-item,
.final-year-end-module .package-item {
  min-height: 36px;
  font-size: 0.74rem;
}

.final-year-end-module .package-download-action {
  min-height: 42px;
  font-size: 0.76rem;
}

/* How it works page */
.how-hero .hero-text {
  max-width: 690px;
}

.how-rhythm-section {
  padding: clamp(3.2rem, 6vw, 5rem) clamp(1.4rem, 4vw, 4rem);
  border: 1px solid rgba(12, 44, 71, 0.1);
  border-radius: calc(var(--radius) + 18px);
  background:
    radial-gradient(circle at 10% 12%, rgba(8, 179, 208, 0.2), transparent 30%),
    radial-gradient(circle at 92% 18%, rgba(245, 203, 81, 0.2), transparent 26%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(181, 217, 224, 0.3));
  box-shadow: 0 26px 80px rgba(12, 44, 71, 0.1);
}

.how-rhythm-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
  margin-top: clamp(1.7rem, 4vw, 2.7rem);
}

.how-three-step-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.how-rhythm-card {
  display: grid;
  align-content: start;
  gap: 0.9rem;
  min-height: 420px;
  padding: clamp(1.25rem, 2.2vw, 1.7rem);
  border: 1px solid rgba(12, 44, 71, 0.1);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 18px 42px rgba(12, 44, 71, 0.08);
}

.how-rhythm-visual {
  display: grid;
  height: clamp(150px, 14vw, 190px);
  place-items: center;
  margin: 0 0 0.1rem;
  overflow: hidden;
  border: 1px solid rgba(35, 124, 141, 0.12);
  border-radius: calc(var(--radius) + 8px);
  background:
    radial-gradient(circle at 16% 12%, rgba(8, 179, 208, 0.16), transparent 32%),
    rgba(255, 255, 255, 0.72);
}

.how-rhythm-visual img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.how-rhythm-card span,
.how-mini-list span,
.how-upload-path span {
  font-weight: 900;
}

.how-rhythm-card span {
  display: inline-flex;
  width: fit-content;
  min-height: 34px;
  align-items: center;
  padding: 0 0.75rem;
  border-radius: 999px;
  background: rgba(35, 124, 141, 0.1);
  color: var(--teal);
  font-size: 0.78rem;
  text-transform: uppercase;
}

.how-rhythm-card h3 {
  margin: 0;
  font-size: clamp(1.25rem, 1.7vw, 1.65rem);
}

.how-rhythm-card p {
  margin: 0;
  color: rgba(9, 34, 57, 0.67);
}

.how-upload-section,
.how-reporting-section {
  align-items: stretch;
}

.how-upload-illustration-card {
  display: grid;
  align-items: center;
  min-height: 360px;
  margin: 0;
  overflow: visible;
  border-radius: calc(var(--radius) + 12px);
}

.how-upload-illustration-card img {
  display: block;
  width: 100%;
  height: auto;
  min-height: 0;
  object-fit: contain;
}

.how-reporting-section .app-image-frame {
  align-self: center;
  min-height: 360px;
}

.how-mini-list,
.how-upload-path {
  display: grid;
  gap: 0.7rem;
}

.how-mini-list {
  max-width: 540px;
  margin-top: 1.2rem;
}

.how-mini-list span {
  padding: 0.85rem 1rem;
  border: 1px solid rgba(12, 44, 71, 0.1);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.82);
  color: var(--navy);
}

.how-upload-card {
  display: grid;
  align-content: center;
  gap: clamp(1.2rem, 3vw, 2rem);
  min-height: 360px;
}

.how-upload-path {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.how-upload-path span {
  display: grid;
  min-height: 92px;
  place-items: center;
  padding: 1rem;
  border: 1px solid rgba(35, 124, 141, 0.16);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.82);
  color: var(--navy);
  text-align: center;
  box-shadow: 0 14px 30px rgba(12, 44, 71, 0.07);
}

.how-review-section .eyebrow {
  color: var(--maize);
}

.how-review-section::before {
  content: none;
}

.how-review-grid,
.how-app-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.how-review-grid {
  position: relative;
  z-index: 1;
}

.how-review-grid .feature-card {
  position: relative;
  padding: clamp(1.35rem, 2.4vw, 1.85rem);
}

.how-review-grid .feature-icon {
  display: inline-grid;
  width: 46px;
  height: 46px;
  place-items: center;
  margin-bottom: 1rem;
  border-radius: 16px;
  font-weight: 950;
}

.how-app-section .section-heading {
  max-width: 880px;
}

.how-app-intro {
  align-items: center;
  margin-bottom: clamp(1.6rem, 4vw, 2.8rem);
}

.how-app-intro .app-image-frame {
  min-height: 360px;
}

.how-app-grid .detail-card {
  min-height: 260px;
}

.how-outcome-section .detail-card {
  min-height: 250px;
}

@media (max-width: 980px) {
  .how-rhythm-grid,
  .how-review-grid,
  .how-app-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 680px) {
  .how-rhythm-grid,
  .how-review-grid,
  .how-app-grid,
  .how-upload-path {
    grid-template-columns: 1fr;
  }

  .how-rhythm-card,
  .how-app-grid .detail-card,
  .how-outcome-section .detail-card {
    min-height: 0;
  }

  .how-rhythm-visual {
    height: 180px;
  }
}

/* Services page */
.service-preview-hero {
  grid-template-columns: minmax(0, 0.82fr) minmax(460px, 0.78fr);
  gap: clamp(2rem, 4.5vw, 4.2rem);
  align-items: center;
}

.service-preview-hero .hero-copy,
.service-preview-hero h1 {
  max-width: 780px;
}

.service-preview-hero .hero-text {
  max-width: 710px;
}

.hero-photo-card {
  position: relative;
  width: 100%;
  max-width: 100%;
  min-height: clamp(320px, 29vw, 430px);
  margin: 0;
  aspect-ratio: 1.42;
  overflow: hidden;
  border: 1px solid rgba(12, 44, 71, 0.12);
  border-radius: calc(var(--radius) + 14px);
  background: rgba(255, 255, 255, 0.7);
  box-shadow: var(--shadow);
}

.hero-photo-card img {
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
  object-position: center center;
}

.hero-photo-caption {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 18px;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.54);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 18px 42px rgba(12, 44, 71, 0.16);
  backdrop-filter: blur(14px);
}

.hero-photo-caption strong {
  display: block;
  margin-bottom: 0.35rem;
  color: var(--navy);
  font-family: "Roca Two", Georgia, serif;
  font-size: clamp(1.35rem, 2vw, 1.8rem);
  line-height: 1.02;
}

.hero-photo-caption span {
  color: rgba(9, 34, 57, 0.68);
}

.clarity-panel {
  padding: clamp(2.2rem, 4.5vw, 4rem);
  border: 1px solid rgba(12, 44, 71, 0.08);
  border-radius: calc(var(--radius) + 12px);
  background:
    radial-gradient(circle at 8% 8%, rgba(8, 179, 208, 0.16), transparent 34%),
    radial-gradient(circle at 92% 12%, rgba(237, 218, 143, 0.28), transparent 34%),
    linear-gradient(135deg, rgba(232, 249, 252, 0.88), rgba(255, 255, 255, 0.78) 52%, rgba(242, 248, 244, 0.86));
  box-shadow: var(--soft-shadow);
}

.service-overview-strip {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(1.3rem, 4vw, 4rem);
}

.service-overview-strip::before {
  content: "";
  position: absolute;
  top: 2.2rem;
  left: 9%;
  right: 9%;
  height: 2px;
  background: linear-gradient(90deg, rgba(35, 124, 141, 0), rgba(35, 124, 141, 0.32), rgba(35, 124, 141, 0));
}

.overview-card {
  position: relative;
  min-height: 0;
  padding: 0;
  background: transparent;
  box-shadow: none;
  z-index: 1;
}

.overview-card span {
  display: grid;
  width: 4.4rem;
  height: 4.4rem;
  place-items: center;
  margin-bottom: 1rem;
  border: 1px solid rgba(35, 124, 141, 0.18);
  border-radius: 999px;
  background: var(--white);
  box-shadow: 0 16px 34px rgba(12, 44, 71, 0.08);
  color: var(--teal);
  font-size: 0.74rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.overview-card h3 {
  font-size: clamp(1.55rem, 2.5vw, 2.05rem);
}

.overview-card:not(:last-child)::after {
  display: none;
}

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

.phase-card,
.core-inclusion-card,
.add-on-card,
.handoff-card {
  border: 1px solid rgba(12, 44, 71, 0.11);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.8);
  box-shadow: var(--soft-shadow);
}

.phase-card {
  display: flex;
  min-height: 360px;
  flex-direction: column;
  padding: clamp(1.45rem, 3vw, 2rem);
}

.phase-card > span,
.timeline-step > span,
.add-on-card > span {
  display: inline-flex;
  width: fit-content;
  margin-bottom: 1.2rem;
  padding: 0.42rem 0.72rem;
  border-radius: 999px;
  background: rgba(35, 124, 141, 0.1);
  color: var(--teal);
  font-size: 0.74rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.phase-card h3,
.add-on-card h3 {
  font-size: clamp(1.8rem, 3vw, 2.55rem);
}

.phase-card p,
.core-inclusion-card p,
.add-on-card p,
.handoff-card p,
.timeline-step p {
  color: rgba(9, 34, 57, 0.68);
}

.phase-list {
  display: grid;
  gap: 0.7rem;
  margin: 1.2rem 0 0;
  padding: 0;
  list-style: none;
}

.phase-list li {
  position: relative;
  padding-left: 1.05rem;
  color: rgba(12, 44, 71, 0.78);
  font-weight: 750;
}

.phase-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.6em;
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: var(--teal);
}

.onboarding-timeline {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  overflow: hidden;
  border: 1px solid rgba(12, 44, 71, 0.11);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.82);
  box-shadow: var(--soft-shadow);
}

.timeline-step {
  min-height: 275px;
  padding: clamp(1.35rem, 2.6vw, 1.9rem);
}

.timeline-step + .timeline-step {
  border-left: 1px solid rgba(12, 44, 71, 0.1);
}

.timeline-step h3 {
  margin-bottom: 0.65rem;
  font-size: clamp(1.35rem, 2.1vw, 1.8rem);
}

.core-service-section {
  padding: clamp(3.2rem, 6vw, 5rem) clamp(1.4rem, 4vw, 3.4rem);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: calc(var(--radius) + 12px);
  background:
    radial-gradient(circle at 85% 10%, rgba(8, 179, 208, 0.28), transparent 36%),
    linear-gradient(135deg, #0c2c47, #237c8d);
  box-shadow: 0 24px 70px rgba(12, 44, 71, 0.1);
}

.core-service-section .section-heading h2,
.core-service-section .section-heading p,
.core-service-section .eyebrow {
  color: var(--white);
}

.core-service-section .section-heading p {
  opacity: 0.86;
}

.core-service-section .section-heading .eyebrow {
  color: var(--maize);
  opacity: 1;
}

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

.core-inclusion-card {
  min-height: 330px;
  padding: clamp(1.3rem, 2.5vw, 1.75rem);
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.17);
  box-shadow: none;
}

.core-inclusion-card h3 {
  margin-bottom: 0.45rem;
  font-size: clamp(1.35rem, 2vw, 1.85rem);
}

.core-inclusion-card h3,
.core-inclusion-card p,
.core-inclusion-card li {
  color: var(--white);
}

.core-inclusion-card p,
.core-inclusion-card li {
  opacity: 0.82;
}

.app-service-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(360px, 0.92fr);
  gap: clamp(2rem, 5vw, 4.6rem);
  align-items: center;
}

.app-service-layout .app-image-frame,
.app-service-preview,
.how-app-preview {
  margin: 0;
}

.app-service-preview,
.how-app-preview {
  position: relative;
}

.app-service-preview-desktop,
.how-app-preview-desktop {
  display: block;
  width: 100%;
  color: inherit;
  font: inherit;
  text-align: left;
  appearance: none;
}

.app-service-preview-desktop:focus-visible,
.app-service-preview-mobile:focus-visible,
.how-app-preview-desktop:focus-visible,
.how-app-preview-mobile:focus-visible {
  outline: 3px solid rgba(8, 179, 208, 0.55);
  outline-offset: 6px;
}

.app-service-preview-mobile,
.how-app-preview-mobile {
  padding: 0;
  cursor: zoom-in;
  pointer-events: auto;
  appearance: none;
}

.app-service-preview-mobile .expand-hint,
.how-app-preview-mobile .expand-hint {
  top: auto;
  right: 50%;
  bottom: 10px;
  min-height: 24px;
  padding: 0 8px;
  font-size: 0.62rem;
  opacity: 0;
  transform: translateX(50%) translateY(4px);
  transition: opacity 160ms ease, transform 160ms ease;
}

.app-service-preview-mobile:hover .expand-hint,
.app-service-preview-mobile:focus-visible .expand-hint,
.how-app-preview-mobile:hover .expand-hint,
.how-app-preview-mobile:focus-visible .expand-hint {
  opacity: 1;
  transform: translateX(50%);
}

.app-service-points {
  display: grid;
  gap: 12px;
  margin-top: 1.5rem;
}

.app-service-points article {
  padding: 18px;
  border: 1px solid rgba(12, 44, 71, 0.1);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.72);
}

.app-service-points strong {
  display: block;
  margin-bottom: 0.25rem;
  color: var(--navy);
}

.handoff-card {
  padding: clamp(1.6rem, 3.4vw, 2.4rem);
  background:
    radial-gradient(circle at 12% 12%, rgba(8, 179, 208, 0.13), transparent 32%),
    rgba(255, 255, 255, 0.84);
}

.handoff-card p {
  max-width: none;
}

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

.add-on-card {
  display: flex;
  min-height: 420px;
  flex-direction: column;
  padding: clamp(1.35rem, 2.8vw, 1.9rem);
}

.add-on-list {
  display: grid;
  gap: 0.58rem;
  margin: 1rem 0 1.2rem;
  padding: 0;
  list-style: none;
}

.add-on-list li {
  position: relative;
  padding-left: 1.05rem;
  color: rgba(12, 44, 71, 0.76);
  font-weight: 750;
}

.add-on-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.6em;
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: var(--teal);
}

.add-on-card .card-cta {
  margin-top: auto;
}

@media (max-width: 980px) {
  .service-preview-hero,
  .phase-grid,
  .service-overview-strip,
  .core-inclusion-grid,
  .app-service-layout,
  .add-on-grid {
    grid-template-columns: 1fr;
  }

  .onboarding-timeline,
  .core-inclusion-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .timeline-step:nth-child(3) {
    border-left: 0;
    border-top: 1px solid rgba(12, 44, 71, 0.1);
  }

  .timeline-step:nth-child(4) {
    border-top: 1px solid rgba(12, 44, 71, 0.1);
  }

  .overview-card:not(:last-child)::after {
    display: none;
  }

  .service-overview-strip::before {
    display: none;
  }
}

@media (max-width: 640px) {
  .hero-photo-card {
    min-height: 390px;
  }

  .onboarding-timeline {
    grid-template-columns: 1fr;
  }

  .core-inclusion-grid {
    grid-template-columns: 1fr;
  }

  .timeline-step + .timeline-step {
    border-left: 0;
    border-top: 1px solid rgba(12, 44, 71, 0.1);
  }
}

@media (min-width: 981px) {
  .add-on-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
