:root {
  --navy-950: #041326;
  --navy-900: #071a33;
  --navy-850: #0a2342;
  --navy-800: #0d2d52;
  --blue-700: #0b64aa;
  --blue-600: #0f70b7;
  --blue-500: #197fc8;
  --blue-400: #4f9fda;
  --blue-300: #8bc4ed;
  --blue-200: #c5e3f7;
  --blue-100: #e7f3fb;
  --teal-500: #2bb8a6;
  --teal-100: #def7f2;
  --amber-500: #e8aa3b;
  --amber-100: #fff2d8;
  --ink: #10243b;
  --ink-soft: #456078;
  --muted: #6a7f92;
  --line: #dce7f0;
  --line-dark: rgba(255, 255, 255, 0.14);
  --surface: #ffffff;
  --surface-soft: #f4f8fb;
  --surface-blue: #edf6fc;
  --shadow-sm: 0 8px 24px rgba(10, 42, 75, 0.08);
  --shadow-md: 0 22px 60px rgba(7, 33, 62, 0.13);
  --shadow-lg: 0 36px 90px rgba(0, 15, 35, 0.24);
  --radius-sm: 12px;
  --radius-md: 20px;
  --radius-lg: 30px;
  --radius-xl: 42px;
  --container: 1180px;
  --header-height: 78px;
  --ease: cubic-bezier(0.2, 0.75, 0.25, 1);
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 24px);
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--surface);
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

body.menu-open {
  overflow: hidden;
}

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

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

button,
summary {
  color: inherit;
}

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

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

h1,
h2,
h3,
h4 {
  color: var(--ink);
  font-weight: 760;
  letter-spacing: -0.035em;
  line-height: 1.06;
}

h1 {
  font-size: clamp(2.9rem, 5.7vw, 5.35rem);
}

h2 {
  font-size: clamp(2.1rem, 3.7vw, 3.65rem);
}

h3 {
  font-size: clamp(1.25rem, 2vw, 1.65rem);
}

::selection {
  color: #fff;
  background: var(--blue-600);
}

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

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

.skip-link {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 999;
  padding: 10px 14px;
  color: #fff;
  background: var(--navy-900);
  border-radius: 8px;
  transform: translateY(-140%);
  transition: transform 0.2s ease;
}

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

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

.section {
  position: relative;
  padding: clamp(76px, 9vw, 132px) 0;
}

.section--tight {
  padding: clamp(48px, 6vw, 80px) 0;
}

.section--soft {
  background: var(--surface-soft);
}

.section--dark {
  color: rgba(255, 255, 255, 0.77);
  background: var(--navy-900);
}

.section--dark h1,
.section--dark h2,
.section--dark h3,
.section--dark h4 {
  color: #fff;
}

.icon {
  width: 1.3em;
  height: 1.3em;
  flex: 0 0 auto;
}

.icon-box {
  display: grid;
  width: 52px;
  height: 52px;
  place-items: center;
  color: var(--blue-600);
  background: var(--blue-100);
  border: 1px solid rgba(15, 112, 183, 0.12);
  border-radius: 16px;
}

.icon-box .icon {
  width: 25px;
  height: 25px;
}

.icon-box--small {
  width: 44px;
  height: 44px;
  border-radius: 14px;
}

.icon-box--small .icon {
  width: 21px;
  height: 21px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  height: var(--header-height);
  background: rgba(255, 255, 255, 0.92);
  border-bottom: 1px solid rgba(12, 46, 80, 0.08);
  backdrop-filter: blur(18px);
  transition: box-shadow 0.25s ease, background 0.25s ease;
}

.site-header.is-scrolled {
  box-shadow: 0 12px 36px rgba(5, 31, 58, 0.08);
  background: rgba(255, 255, 255, 0.97);
}

.site-header__inner {
  display: flex;
  height: 100%;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.brand {
  display: inline-flex;
  align-items: center;
  width: 205px;
  flex: 0 0 auto;
}

.brand img {
  width: 100%;
  height: auto;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 26px;
  font-size: 0.94rem;
  font-weight: 650;
}

.site-nav > a,
.nav-dropdown > summary {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 10px 0;
  color: #2c465e;
  cursor: pointer;
  list-style: none;
  transition: color 0.2s ease;
}

.nav-dropdown > summary::-webkit-details-marker {
  display: none;
}

.site-nav > a::after,
.nav-dropdown > summary::after {
  position: absolute;
  right: 0;
  bottom: 3px;
  left: 0;
  height: 2px;
  content: "";
  background: var(--blue-600);
  border-radius: 999px;
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.2s ease;
}

.site-nav > a:hover,
.site-nav > a[aria-current="page"],
.nav-dropdown > summary:hover,
.nav-dropdown[data-active="true"] > summary,
.nav-dropdown[open] > summary {
  color: var(--blue-700);
}

.site-nav > a:hover::after,
.site-nav > a[aria-current="page"]::after,
.nav-dropdown[data-active="true"] > summary::after,
.nav-dropdown[open] > summary::after {
  transform: scaleX(1);
}

.nav-dropdown {
  position: relative;
}

.nav-dropdown > summary .icon {
  width: 16px;
  height: 16px;
  transition: transform 0.2s ease;
}

.nav-dropdown[open] > summary .icon {
  transform: rotate(180deg);
}

.nav-dropdown__panel {
  position: absolute;
  top: calc(100% + 14px);
  left: 50%;
  display: grid;
  width: min(720px, 80vw);
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 7px;
  padding: 10px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 20px;
  box-shadow: var(--shadow-md);
  transform: translateX(-36%);
}

.nav-dropdown__panel::before {
  position: absolute;
  top: -16px;
  right: 0;
  left: 0;
  height: 16px;
  content: "";
}

.nav-dropdown__panel a {
  display: grid;
  gap: 3px;
  padding: 15px 16px;
  border-radius: 13px;
  transition: background 0.18s ease, transform 0.18s ease;
}

.nav-dropdown__panel a:hover {
  background: var(--surface-soft);
  transform: translateY(-1px);
}

.nav-dropdown__panel strong {
  color: var(--ink);
  font-size: 0.95rem;
}

.nav-dropdown__panel span {
  color: var(--muted);
  font-size: 0.81rem;
  font-weight: 500;
}

.site-nav__cta {
  min-height: 43px !important;
  padding: 0 17px !important;
  font-size: 0.88rem !important;
}

.site-nav__cta::after {
  display: none !important;
}

.site-nav__mobile-contact {
  display: none;
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 10px;
  background: transparent;
  border: 0;
  border-radius: 10px;
  cursor: pointer;
}

.menu-toggle > span:not(.sr-only) {
  display: block;
  width: 23px;
  height: 2px;
  margin: 5px auto;
  background: var(--ink);
  border-radius: 999px;
  transition: transform 0.25s ease, opacity 0.2s ease;
}

.menu-toggle[aria-expanded="true"] > span:nth-of-type(2) {
  transform: translateY(7px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] > span:nth-of-type(3) {
  opacity: 0;
}

.menu-toggle[aria-expanded="true"] > span:nth-of-type(4) {
  transform: translateY(-7px) rotate(-45deg);
}

.button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 0.94rem;
  font-weight: 750;
  line-height: 1;
  cursor: pointer;
  transition: transform 0.2s var(--ease), box-shadow 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

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

.button .icon {
  width: 18px;
  height: 18px;
  transition: transform 0.2s ease;
}

.button:hover .icon,
.text-link:hover .icon {
  transform: translateX(3px);
}

.button--primary {
  color: #fff;
  background: linear-gradient(135deg, var(--blue-600), var(--blue-500));
  box-shadow: 0 12px 28px rgba(15, 112, 183, 0.26);
}

.button--primary:hover {
  box-shadow: 0 17px 34px rgba(15, 112, 183, 0.35);
}

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

.button--secondary:hover {
  background: #fff;
  border-color: #bfd2e1;
  box-shadow: var(--shadow-sm);
}

.button--on-dark {
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.22);
}

.button--on-dark:hover {
  background: rgba(255, 255, 255, 0.14);
  border-color: rgba(255, 255, 255, 0.35);
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 13px;
  align-items: center;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--blue-700);
  font-size: 0.93rem;
  font-weight: 760;
}

.text-link .icon {
  width: 18px;
  height: 18px;
  transition: transform 0.2s ease;
}

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

.eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
  color: var(--blue-700);
  font-size: 0.79rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  line-height: 1.2;
  text-transform: uppercase;
}

.eyebrow > span {
  width: 28px;
  height: 2px;
  background: currentColor;
  border-radius: 99px;
}

.eyebrow--light {
  color: var(--blue-300);
}

.section-heading {
  max-width: 760px;
  margin-bottom: clamp(40px, 6vw, 68px);
}

.section-heading h2 {
  margin-bottom: 20px;
}

.section-heading p {
  max-width: 680px;
  margin-bottom: 0;
  color: var(--ink-soft);
  font-size: clamp(1rem, 1.8vw, 1.16rem);
}

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

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

.section-heading--center p {
  margin-inline: auto;
}

.section-heading--dark p {
  color: rgba(255, 255, 255, 0.68);
}

.home-hero {
  min-height: min(860px, calc(100svh - var(--header-height)));
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-top: clamp(74px, 8vw, 110px);
  padding-bottom: clamp(82px, 9vw, 130px);
}

.home-hero__grid-bg {
  position: absolute;
  inset: 0;
  opacity: 0.28;
  background-image: linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 52px 52px;
  mask-image: linear-gradient(to bottom, #000 10%, transparent 90%);
}

.home-hero__glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(10px);
  pointer-events: none;
}

.home-hero__glow--one {
  top: -280px;
  right: -260px;
  width: 850px;
  height: 850px;
  background: radial-gradient(circle, rgba(25, 127, 200, 0.42), rgba(25, 127, 200, 0) 68%);
}

.home-hero__glow--two {
  bottom: -460px;
  left: -350px;
  width: 900px;
  height: 900px;
  background: radial-gradient(circle, rgba(79, 159, 218, 0.17), rgba(79, 159, 218, 0) 68%);
}

.home-hero__inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1.03fr) minmax(420px, 0.97fr);
  gap: clamp(52px, 7vw, 96px);
  align-items: center;
}

.home-hero__content h1 {
  max-width: 800px;
  margin-bottom: 28px;
  font-size: clamp(3.1rem, 5.4vw, 5.45rem);
}

.home-hero__content > p {
  max-width: 690px;
  margin-bottom: 34px;
  color: rgba(255, 255, 255, 0.75);
  font-size: clamp(1.08rem, 2vw, 1.27rem);
}

.hero-proof {
  display: grid;
  grid-template-columns: repeat(2, max-content);
  gap: 11px 26px;
  margin-top: 34px;
  color: rgba(255, 255, 255, 0.69);
  font-size: 0.87rem;
  font-weight: 620;
}

.hero-proof span {
  display: flex;
  gap: 7px;
  align-items: center;
}

.hero-proof .icon {
  width: 16px;
  height: 16px;
  color: var(--blue-300);
}

.home-hero__visual {
  min-width: 0;
}

.revenue-system {
  position: relative;
  min-height: 570px;
  overflow: hidden;
  background: linear-gradient(145deg, rgba(18, 51, 86, 0.95), rgba(5, 24, 48, 0.92));
  border: 1px solid rgba(139, 196, 237, 0.2);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
  isolation: isolate;
}

.revenue-system::before {
  position: absolute;
  inset: 0;
  z-index: -1;
  content: "";
  background: radial-gradient(circle at 70% 45%, rgba(25, 127, 200, 0.35), transparent 34%), radial-gradient(circle at 20% 90%, rgba(43, 184, 166, 0.12), transparent 30%);
}

.revenue-system__grid {
  position: absolute;
  inset: 0;
  opacity: 0.3;
  background-image: linear-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
  background-size: 38px 38px;
}

.revenue-system__status {
  position: absolute;
  top: 24px;
  left: 26px;
  display: flex;
  gap: 8px;
  align-items: center;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.77rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.revenue-system__status i,
.live-pill i {
  width: 8px;
  height: 8px;
  background: var(--teal-500);
  border-radius: 50%;
  box-shadow: 0 0 0 5px rgba(43, 184, 166, 0.11);
}

.revenue-system__center {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 230px;
  height: 230px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 25px;
  text-align: center;
  background: linear-gradient(150deg, rgba(15, 112, 183, 0.96), rgba(10, 64, 112, 0.96));
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 50%;
  box-shadow: 0 26px 70px rgba(0, 9, 28, 0.38), 0 0 0 18px rgba(79, 159, 218, 0.07), 0 0 0 42px rgba(79, 159, 218, 0.035);
  transform: translate(-50%, -50%);
}

.revenue-system__center span {
  color: var(--blue-200);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.revenue-system__center strong {
  max-width: 180px;
  margin: 8px 0 17px;
  color: #fff;
  font-size: 1.55rem;
  line-height: 1.06;
}

.mini-chart {
  display: flex;
  height: 34px;
  gap: 5px;
  align-items: flex-end;
}

.mini-chart i {
  width: 8px;
  background: rgba(255, 255, 255, 0.52);
  border-radius: 99px 99px 2px 2px;
}

.mini-chart i:nth-child(1) { height: 25%; }
.mini-chart i:nth-child(2) { height: 42%; }
.mini-chart i:nth-child(3) { height: 35%; }
.mini-chart i:nth-child(4) { height: 61%; }
.mini-chart i:nth-child(5) { height: 75%; }
.mini-chart i:nth-child(6) { height: 100%; background: #fff; }

.revenue-system__card {
  position: absolute;
  display: flex;
  min-width: 178px;
  gap: 12px;
  align-items: center;
  padding: 14px 15px;
  color: #fff;
  background: rgba(255, 255, 255, 0.075);
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 16px;
  box-shadow: 0 18px 35px rgba(0, 6, 21, 0.18);
  backdrop-filter: blur(12px);
}

.revenue-system__card::after {
  position: absolute;
  content: "";
  background: rgba(139, 196, 237, 0.26);
}

.revenue-system__card > .icon {
  width: 25px;
  height: 25px;
  color: var(--blue-300);
}

.revenue-system__card div {
  display: grid;
}

.revenue-system__card span {
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.revenue-system__card strong {
  font-size: 0.85rem;
}

.revenue-system__card--target {
  top: 98px;
  left: 28px;
}

.revenue-system__card--target::after {
  top: 50%;
  right: -62px;
  width: 62px;
  height: 1px;
}

.revenue-system__card--outreach {
  top: 108px;
  right: 25px;
}

.revenue-system__card--outreach::after {
  top: 50%;
  left: -56px;
  width: 56px;
  height: 1px;
}

.revenue-system__card--manage {
  bottom: 82px;
  left: 35px;
}

.revenue-system__card--manage::after {
  top: -52px;
  right: -38px;
  width: 1px;
  height: 66px;
  transform: rotate(-47deg);
}

.revenue-system__card--report {
  right: 30px;
  bottom: 76px;
}

.revenue-system__card--report::after {
  top: -48px;
  left: -30px;
  width: 1px;
  height: 62px;
  transform: rotate(43deg);
}

.proof-strip {
  padding: 25px 0;
  color: #4b647a;
  background: #fff;
  border-bottom: 1px solid var(--line);
}

.proof-strip__inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 17px 25px;
  font-size: 0.84rem;
  font-weight: 750;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.proof-strip__inner i {
  width: 4px;
  height: 4px;
  background: var(--blue-400);
  border-radius: 50%;
}

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

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

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

.feature-card {
  padding: 26px 24px 28px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  box-shadow: 0 12px 28px rgba(8, 46, 82, 0.045);
  transition: transform 0.25s var(--ease), box-shadow 0.25s ease, border-color 0.25s ease;
}

.feature-card:hover {
  border-color: #c5d9e8;
  box-shadow: var(--shadow-sm);
  transform: translateY(-4px);
}

.feature-card h3 {
  margin: 20px 0 10px;
  font-size: 1.18rem;
  letter-spacing: -0.02em;
}

.feature-card p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.91rem;
  line-height: 1.6;
}

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

.service-card {
  position: relative;
  display: flex;
  min-height: 100%;
  flex-direction: column;
  padding: 30px;
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: 0 15px 36px rgba(7, 39, 72, 0.055);
  transition: transform 0.25s var(--ease), box-shadow 0.25s ease, border-color 0.25s ease;
}

.service-card::before {
  position: absolute;
  top: -160px;
  right: -160px;
  width: 260px;
  height: 260px;
  content: "";
  background: radial-gradient(circle, rgba(79, 159, 218, 0.19), transparent 68%);
}

.service-card:hover {
  border-color: #bfd7e8;
  box-shadow: var(--shadow-md);
  transform: translateY(-6px);
}

.service-card__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.service-card__eyebrow {
  color: var(--muted);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.service-card h3 {
  margin: 30px 0 14px;
  font-size: 1.65rem;
}

.service-card > p {
  margin-bottom: 22px;
  color: var(--ink-soft);
}

.service-card .text-link {
  margin-top: auto;
  padding-top: 26px;
}

.check-list {
  display: grid;
  gap: 13px;
  padding: 0;
  margin: 0 0 30px;
  list-style: none;
}

.check-list li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  color: var(--ink-soft);
}

.check-list li .icon {
  width: 18px;
  height: 18px;
  margin-top: 4px;
  color: var(--blue-600);
}

.check-list--compact {
  gap: 9px;
  margin-bottom: 0;
  font-size: 0.86rem;
}

.check-list--light li {
  color: rgba(255, 255, 255, 0.72);
}

.check-list--light li .icon {
  color: var(--blue-300);
}

.process-section {
  overflow: hidden;
}

.process-section::before {
  position: absolute;
  inset: 0;
  content: "";
  opacity: 0.25;
  background-image: radial-gradient(circle at 1px 1px, rgba(255, 255, 255, 0.14) 1px, transparent 0);
  background-size: 24px 24px;
  mask-image: linear-gradient(to right, transparent, #000 25%, #000 75%, transparent);
}

.process-section .container {
  position: relative;
}

.process-grid {
  display: grid;
  gap: 16px;
}

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

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

.process-step {
  position: relative;
  padding: 24px 21px 27px;
  background: rgba(255, 255, 255, 0.055);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-md);
}

.section:not(.section--dark) .process-step {
  background: #fff;
  border-color: var(--line);
  box-shadow: var(--shadow-sm);
}

.process-step__number {
  position: absolute;
  top: 18px;
  right: 18px;
  color: rgba(255, 255, 255, 0.28);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.section:not(.section--dark) .process-step__number {
  color: #9eb3c3;
}

.process-step .icon-box {
  color: var(--blue-300);
  background: rgba(79, 159, 218, 0.13);
  border-color: rgba(139, 196, 237, 0.17);
}

.section:not(.section--dark) .process-step .icon-box {
  color: var(--blue-600);
  background: var(--blue-100);
  border-color: rgba(15, 112, 183, 0.12);
}

.process-step h3 {
  margin: 22px 0 11px;
  font-size: 1.18rem;
}

.process-step p {
  margin: 0;
  color: rgba(255, 255, 255, 0.61);
  font-size: 0.88rem;
  line-height: 1.58;
}

.section:not(.section--dark) .process-step p {
  color: var(--ink-soft);
}

.section-link-row {
  margin-top: 34px;
}

.section-link-row--center {
  text-align: center;
}

.reporting-section__grid {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(560px, 1.22fr);
  gap: clamp(45px, 7vw, 90px);
  align-items: center;
}

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

.dashboard-mock {
  position: relative;
  margin: 0;
  overflow: hidden;
  background: #f6f9fb;
  border: 1px solid #d7e2ea;
  border-radius: 25px;
  box-shadow: var(--shadow-md);
}

.dashboard-mock__bar {
  display: flex;
  min-height: 60px;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 0 22px;
  color: #fff;
  background: linear-gradient(105deg, var(--blue-700), var(--blue-400));
}

.dashboard-mock__bar > div {
  display: flex;
  gap: 9px;
  align-items: center;
}

.dashboard-dot {
  width: 10px;
  height: 10px;
  background: #fff;
  border-radius: 50%;
  box-shadow: 0 0 0 5px rgba(255, 255, 255, 0.14);
}

.dashboard-mock__bar strong {
  font-size: 0.86rem;
}

.live-pill {
  display: flex;
  gap: 8px;
  align-items: center;
  padding: 6px 10px;
  color: rgba(255, 255, 255, 0.84);
  background: rgba(0, 22, 50, 0.17);
  border-radius: 999px;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.dashboard-mock__metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  padding: 14px 14px 0;
}

.dashboard-mock__metrics > div {
  display: grid;
  gap: 3px;
  padding: 15px;
  background: #fff;
  border: 1px solid #e0e8ee;
  border-radius: 13px;
}

.dashboard-mock__metrics span,
.dashboard-panel__header span {
  color: #728698;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.dashboard-mock__metrics strong {
  color: var(--ink);
  font-size: 1.08rem;
}

.dashboard-mock__metrics small {
  color: #7b8e9e;
  font-size: 0.67rem;
}

.dashboard-mock__grid {
  display: grid;
  grid-template-columns: 1.65fr 0.9fr;
  gap: 10px;
  padding: 10px 14px 14px;
}

.dashboard-panel {
  min-width: 0;
  padding: 14px;
  background: #fff;
  border: 1px solid #e0e8ee;
  border-radius: 13px;
}

.dashboard-panel__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 8px;
}

.dashboard-panel__header strong {
  color: #233d55;
  font-size: 0.76rem;
}

.dashboard-panel--line {
  grid-row: span 2;
}

.dashboard-panel--line svg {
  width: 100%;
  margin-top: 5px;
}

.chart-grid path {
  fill: none;
  stroke: #e5edf3;
  stroke-width: 1;
}

.chart-area {
  fill: url(#areaGradient);
}

.chart-line {
  fill: none;
  stroke: var(--blue-500);
  stroke-width: 4;
  stroke-linecap: round;
}

.chart-points circle {
  fill: #fff;
  stroke: var(--blue-500);
  stroke-width: 3;
}

.bar-chart {
  display: flex;
  height: 130px;
  gap: 12px;
  align-items: flex-end;
  justify-content: space-around;
  padding-top: 16px;
}

.bar-chart > div {
  display: grid;
  height: 100%;
  grid-template-columns: repeat(2, 8px);
  gap: 4px;
  align-items: end;
  justify-items: center;
}

.bar-chart i,
.bar-chart b {
  width: 8px;
  height: var(--bar);
  border-radius: 5px 5px 1px 1px;
}

.bar-chart i {
  background: #bad7ed;
}

.bar-chart b {
  background: var(--blue-500);
}

.bar-chart span {
  grid-column: 1 / -1;
  color: #778b9d;
  font-size: 0.56rem;
  transform: rotate(-35deg);
  transform-origin: center;
}

.outcome-list {
  display: grid;
  gap: 8px;
}

.outcome-list > div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding-bottom: 7px;
  color: #5c7185;
  border-bottom: 1px solid #eef2f5;
  font-size: 0.67rem;
}

.outcome-list > div:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.outcome-list span {
  display: flex;
  gap: 7px;
  align-items: center;
}

.outcome-list b {
  color: #314b62;
  font-size: 0.63rem;
}

.status {
  width: 8px;
  height: 8px;
  border-radius: 50%;
}

.status--blue { background: var(--blue-500); }
.status--teal { background: var(--teal-500); }
.status--amber { background: var(--amber-500); }
.status--gray { background: #a7b4bf; }

.dashboard-mock figcaption {
  padding: 0 16px 15px;
  color: #8292a0;
  font-size: 0.64rem;
  text-align: right;
}

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

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

.metric-card {
  min-height: 230px;
  padding: 28px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  box-shadow: 0 12px 30px rgba(7, 39, 72, 0.05);
}

.metric-card strong {
  display: block;
  margin-bottom: 18px;
  color: var(--blue-600);
  font-size: clamp(2.5rem, 4vw, 4.1rem);
  letter-spacing: -0.06em;
  line-height: 1;
}

.metric-card > span {
  display: block;
  color: var(--ink);
  font-weight: 760;
  line-height: 1.28;
}

.metric-card p {
  margin: 16px 0 0;
  color: var(--muted);
  font-size: 0.85rem;
  line-height: 1.55;
}

.metrics-grid--dark .metric-card {
  background: rgba(255, 255, 255, 0.055);
  border-color: rgba(255, 255, 255, 0.12);
  box-shadow: none;
}

.metrics-grid--dark .metric-card strong {
  color: var(--blue-300);
}

.metrics-grid--dark .metric-card > span {
  color: #fff;
}

.metrics-grid--dark .metric-card p {
  color: rgba(255, 255, 255, 0.58);
}

.education-callout {
  overflow: hidden;
  background: linear-gradient(135deg, #fff, #edf6fc);
}

.education-callout::after {
  position: absolute;
  top: -40%;
  right: -15%;
  width: 700px;
  height: 700px;
  content: "";
  background: radial-gradient(circle, rgba(79, 159, 218, 0.16), transparent 67%);
}

.education-callout__inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: clamp(50px, 8vw, 100px);
  align-items: center;
}

.education-callout__copy h2 {
  margin-bottom: 22px;
}

.education-callout__copy p {
  margin-bottom: 27px;
  color: var(--ink-soft);
  font-size: 1.06rem;
}

.education-map-card {
  position: relative;
  min-height: 370px;
  padding: 28px;
  overflow: hidden;
  background: var(--navy-900);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

.education-map-card::before {
  position: absolute;
  inset: 0;
  content: "";
  opacity: 0.35;
  background-image: radial-gradient(circle at 1px 1px, rgba(255, 255, 255, 0.15) 1px, transparent 0);
  background-size: 24px 24px;
}

.education-map-card::after {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 270px;
  height: 270px;
  content: "";
  background: radial-gradient(circle, rgba(25, 127, 200, 0.42), transparent 68%);
  transform: translate(-50%, -50%);
}

.education-map-card__top,
.education-map-card__roles {
  position: relative;
  z-index: 2;
}

.education-map-card__top {
  display: flex;
  gap: 12px;
  align-items: center;
  color: #fff;
  font-weight: 760;
}

.education-map-card__top .icon {
  color: var(--blue-300);
}

.education-map-card__roles {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-content: center;
  justify-content: center;
  min-height: 265px;
}

.education-map-card__roles span {
  padding: 8px 12px;
  color: rgba(255, 255, 255, 0.78);
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 999px;
  font-size: 0.73rem;
  font-weight: 700;
  backdrop-filter: blur(8px);
}

.education-map-card__line {
  position: absolute;
  bottom: 28px;
  left: 28px;
  z-index: 2;
  width: calc(100% - 56px);
  height: 3px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 999px;
}

.education-map-card__line::after {
  display: block;
  width: 72%;
  height: 100%;
  content: "";
  background: linear-gradient(90deg, var(--blue-300), var(--teal-500));
}

.two-column {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(0, 1.22fr);
  gap: clamp(50px, 8vw, 110px);
  align-items: start;
}

.sticky-copy {
  position: sticky;
  top: calc(var(--header-height) + 36px);
}

.sticky-copy .section-heading {
  margin-bottom: 0;
}

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

.faq-item {
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  box-shadow: 0 8px 22px rgba(8, 46, 82, 0.035);
}

.faq-item summary {
  display: flex;
  min-height: 76px;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 20px 22px;
  color: var(--ink);
  font-weight: 730;
  line-height: 1.35;
  cursor: pointer;
  list-style: none;
}

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

.faq-item summary .icon {
  width: 20px;
  height: 20px;
  color: var(--blue-600);
  transition: transform 0.22s ease;
}

.faq-item[open] summary .icon {
  transform: rotate(180deg);
}

.faq-item__answer {
  padding: 0 22px 22px;
}

.faq-item__answer p {
  margin: 0;
  color: var(--ink-soft);
}

.cta-band {
  overflow: hidden;
  background: var(--navy-950);
}

.cta-band::before {
  position: absolute;
  top: -290px;
  right: -220px;
  width: 700px;
  height: 700px;
  content: "";
  background: radial-gradient(circle, rgba(25, 127, 200, 0.42), transparent 65%);
}

.cta-band__inner {
  position: relative;
  display: flex;
  min-height: 320px;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
  padding: clamp(42px, 6vw, 75px);
  overflow: hidden;
  background: linear-gradient(130deg, rgba(15, 47, 82, 0.94), rgba(5, 22, 44, 0.96));
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
}

.cta-band__inner::after {
  position: absolute;
  right: -180px;
  bottom: -220px;
  width: 520px;
  height: 520px;
  content: "";
  background: radial-gradient(circle, rgba(79, 159, 218, 0.24), transparent 68%);
}

.cta-band__inner > * {
  position: relative;
  z-index: 2;
}

.cta-band h2 {
  max-width: 700px;
  margin-bottom: 17px;
  color: #fff;
  font-size: clamp(2.15rem, 4.5vw, 4.25rem);
}

.cta-band p {
  max-width: 690px;
  margin: 0;
  color: rgba(255, 255, 255, 0.67);
}

.cta-band .button-row {
  flex: 0 0 auto;
  flex-direction: column;
  align-items: stretch;
}

.page-hero {
  min-height: 650px;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-top: clamp(65px, 7vw, 100px);
  padding-bottom: clamp(80px, 8vw, 116px);
}

.page-hero::before {
  position: absolute;
  inset: 0;
  content: "";
  opacity: 0.32;
  background-image: linear-gradient(rgba(255, 255, 255, 0.045) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, 0.045) 1px, transparent 1px);
  background-size: 52px 52px;
  mask-image: linear-gradient(to bottom, #000, transparent 95%);
}

.page-hero__glow {
  position: absolute;
  top: -350px;
  right: -250px;
  width: 900px;
  height: 900px;
  background: radial-gradient(circle, rgba(25, 127, 200, 0.4), transparent 66%);
}

.page-hero .container {
  position: relative;
  z-index: 2;
}

.breadcrumb {
  margin-bottom: 46px;
}

.breadcrumb ol {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 0;
  margin: 0;
  color: rgba(255, 255, 255, 0.49);
  font-size: 0.75rem;
  font-weight: 650;
  list-style: none;
}

.breadcrumb li {
  display: flex;
  gap: 8px;
  align-items: center;
}

.breadcrumb a:hover {
  color: #fff;
}

.breadcrumb [aria-current="page"] {
  color: var(--blue-300);
}

.page-hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(390px, 0.95fr);
  gap: clamp(50px, 8vw, 100px);
  align-items: center;
}

.page-hero__content h1 {
  margin-bottom: 24px;
  font-size: clamp(2.9rem, 5.1vw, 5rem);
}

.page-hero__lead {
  max-width: 700px;
  margin-bottom: 27px;
  color: rgba(255, 255, 255, 0.72);
  font-size: clamp(1.05rem, 2vw, 1.23rem);
}

.page-hero__list {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  max-width: 700px;
  gap: 10px 20px;
  margin-bottom: 32px;
  font-size: 0.88rem;
}

.page-hero__visual {
  min-width: 0;
}

.team-pod {
  position: relative;
  min-height: 500px;
  overflow: hidden;
  background: linear-gradient(145deg, rgba(18, 51, 86, 0.98), rgba(5, 24, 48, 0.95));
  border: 1px solid rgba(139, 196, 237, 0.2);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
}

.team-pod::before {
  position: absolute;
  inset: 0;
  content: "";
  opacity: 0.35;
  background-image: radial-gradient(circle at 1px 1px, rgba(255, 255, 255, 0.12) 1px, transparent 0);
  background-size: 26px 26px;
}

.team-pod__ring {
  position: absolute;
  top: 50%;
  left: 50%;
  border: 1px solid rgba(139, 196, 237, 0.2);
  border-radius: 50%;
  transform: translate(-50%, -50%);
}

.team-pod__ring--one {
  width: 290px;
  height: 290px;
}

.team-pod__ring--two {
  width: 430px;
  height: 430px;
  border-style: dashed;
  border-color: rgba(139, 196, 237, 0.12);
}

.team-pod__center {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 2;
  display: flex;
  width: 180px;
  height: 180px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: linear-gradient(145deg, var(--blue-600), #0a4d85);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 50%;
  box-shadow: 0 24px 55px rgba(0, 11, 32, 0.36), 0 0 0 15px rgba(79, 159, 218, 0.06);
  transform: translate(-50%, -50%);
}

.team-pod__center span {
  color: var(--blue-200);
  font-size: 0.65rem;
  font-weight: 750;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.team-pod__center strong {
  margin: 5px 0;
  color: #fff;
  font-size: 1.55rem;
}

.team-pod__center small {
  max-width: 120px;
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.64rem;
}

.team-pod__node {
  position: absolute;
  z-index: 3;
  display: flex;
  gap: 8px;
  align-items: center;
  padding: 10px 13px;
  color: rgba(255, 255, 255, 0.78);
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 720;
  backdrop-filter: blur(10px);
}

.team-pod__node .icon {
  width: 17px;
  height: 17px;
  color: var(--blue-300);
}

.team-pod__node--manager { top: 58px; left: 50%; transform: translateX(-50%); }
.team-pod__node--data { top: 50%; right: 25px; transform: translateY(-50%); }
.team-pod__node--success { bottom: 55px; left: 50%; transform: translateX(-50%); }
.team-pod__node--reporting { top: 50%; left: 25px; transform: translateY(-50%); }

.workflow-visual,
.ae-visual,
.full-team-visual,
.process-visual,
.contact-visual {
  overflow: hidden;
  background: linear-gradient(145deg, rgba(18, 51, 86, 0.98), rgba(5, 24, 48, 0.95));
  border: 1px solid rgba(139, 196, 237, 0.2);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
}

.workflow-visual {
  min-height: 410px;
  padding: 28px;
}

.workflow-visual__header,
.ae-visual__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  color: #fff;
  font-size: 0.78rem;
  font-weight: 720;
}

.workflow-visual__header i {
  width: 78px;
  height: 5px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.09);
  border-radius: 99px;
}

.workflow-visual__header i::after {
  display: block;
  width: 67%;
  height: 100%;
  content: "";
  background: var(--teal-500);
}

.workflow-visual__steps {
  display: grid;
  min-height: 270px;
  grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr;
  gap: 8px;
  align-items: center;
}

.workflow-visual__steps > div {
  display: grid;
  aspect-ratio: 1;
  place-items: center;
  align-content: center;
  gap: 10px;
  color: #fff;
  background: rgba(255, 255, 255, 0.065);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 20px;
}

.workflow-visual__steps > div .icon {
  width: 28px;
  height: 28px;
  color: var(--blue-300);
}

.workflow-visual__steps > div span {
  font-size: 0.72rem;
  font-weight: 720;
}

.workflow-visual__steps > b {
  color: rgba(139, 196, 237, 0.45);
}

.workflow-visual__steps > b .icon {
  width: 18px;
  height: 18px;
}

.workflow-visual__footer {
  display: flex;
  gap: 10px;
  justify-content: center;
}

.workflow-visual__footer span {
  display: flex;
  gap: 7px;
  align-items: center;
  padding: 8px 11px;
  color: rgba(255, 255, 255, 0.61);
  background: rgba(255, 255, 255, 0.05);
  border-radius: 999px;
  font-size: 0.68rem;
  font-weight: 650;
}

.workflow-visual__footer .icon {
  width: 15px;
  height: 15px;
  color: var(--blue-300);
}

.split-intro {
  display: grid;
  grid-template-columns: minmax(0, 0.73fr) minmax(0, 1.27fr);
  gap: clamp(55px, 8vw, 110px);
  align-items: start;
}

.split-intro > div:first-child {
  position: sticky;
  top: calc(var(--header-height) + 36px);
}

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

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

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

.principle-card {
  padding: 30px 25px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
}

.principle-card > span {
  color: var(--blue-500);
  font-size: 0.7rem;
  font-weight: 850;
  letter-spacing: 0.12em;
}

.principle-card h3 {
  margin: 27px 0 12px;
}

.principle-card p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.9rem;
}

.comparison-table {
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
}

.comparison-table__row {
  display: grid;
  grid-template-columns: 1.1fr 1fr 1fr;
  min-height: 65px;
  border-bottom: 1px solid var(--line);
}

.comparison-table__row:last-child {
  border-bottom: 0;
}

.comparison-table__row > div {
  display: flex;
  align-items: center;
  padding: 17px 22px;
  color: var(--ink-soft);
  font-size: 0.9rem;
}

.comparison-table__row > div + div {
  border-left: 1px solid var(--line);
}

.comparison-table__row > div:first-child {
  color: var(--ink);
  font-weight: 720;
}

.comparison-table__row > div:last-child {
  color: var(--blue-700);
  background: #f3f9fd;
  font-weight: 720;
}

.comparison-table__head {
  min-height: 54px;
  background: var(--navy-900);
}

.comparison-table__head > div,
.comparison-table__head > div:first-child,
.comparison-table__head > div:last-child {
  color: #fff;
  background: transparent;
  border-color: rgba(255, 255, 255, 0.11);
  font-size: 0.76rem;
  font-weight: 780;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.team-support {
  display: grid;
  grid-template-columns: minmax(390px, 0.95fr) minmax(0, 1.05fr);
  gap: clamp(60px, 9vw, 120px);
  align-items: center;
}

.team-support__visual .team-pod {
  min-height: 480px;
  box-shadow: none;
}

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

.ae-visual {
  min-height: 410px;
  padding: 28px;
}

.ae-visual__top i {
  padding: 5px 9px;
  color: var(--teal-500);
  background: rgba(43, 184, 166, 0.1);
  border: 1px solid rgba(43, 184, 166, 0.2);
  border-radius: 999px;
  font-size: 0.65rem;
  font-style: normal;
  text-transform: uppercase;
}

.ae-visual__pipeline {
  display: grid;
  min-height: 220px;
  grid-template-columns: repeat(5, 1fr);
  gap: 7px;
  align-items: center;
}

.ae-stage {
  position: relative;
  display: flex;
  height: 90px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  color: rgba(255, 255, 255, 0.55);
  background: rgba(255, 255, 255, 0.045);
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 14px;
}

.ae-stage::after {
  position: absolute;
  top: 50%;
  right: -8px;
  width: 8px;
  height: 1px;
  content: "";
  background: rgba(139, 196, 237, 0.23);
}

.ae-stage:last-child::after {
  display: none;
}

.ae-stage span {
  font-size: 0.65rem;
  font-weight: 680;
}

.ae-stage b {
  width: 60%;
  height: 5px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 99px;
}

.ae-stage--active {
  color: #fff;
  background: rgba(25, 127, 200, 0.19);
  border-color: rgba(139, 196, 237, 0.22);
}

.ae-stage--active b {
  background: var(--blue-400);
}

.ae-visual__cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}

.ae-visual__cards > div {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0 10px;
  padding: 14px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 14px;
}

.ae-visual__cards .icon {
  grid-row: 1 / 3;
  align-self: center;
  color: var(--blue-300);
}

.ae-visual__cards span {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.63rem;
}

.ae-visual__cards strong {
  color: #fff;
  font-size: 0.75rem;
}

.handoff-flow {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr auto 1fr;
  gap: 12px;
  align-items: center;
  padding: 28px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
}

.handoff-flow > div {
  display: grid;
  min-height: 125px;
  place-items: center;
  align-content: center;
  gap: 12px;
  text-align: center;
  background: var(--surface-soft);
  border-radius: 15px;
}

.handoff-flow > div .icon {
  width: 27px;
  height: 27px;
  color: var(--blue-600);
}

.handoff-flow > div span {
  font-size: 0.75rem;
  font-weight: 720;
}

.handoff-flow > b {
  color: #9fb3c3;
}

.handoff-flow > b .icon {
  width: 18px;
  height: 18px;
}

.full-team-visual {
  min-height: 410px;
  padding: 28px;
}

.full-team-visual__label {
  color: #fff;
  font-size: 0.78rem;
  font-weight: 720;
}

.full-team-visual__track {
  display: grid;
  min-height: 245px;
  grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr auto 1fr;
  gap: 7px;
  align-items: center;
}

.full-team-visual__track > div {
  display: grid;
  gap: 9px;
  place-items: center;
  color: #fff;
}

.full-team-visual__track > div i {
  display: grid;
  width: 58px;
  height: 58px;
  place-items: center;
  color: var(--blue-300);
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 18px;
}

.full-team-visual__track > div i .icon {
  width: 25px;
  height: 25px;
}

.full-team-visual__track > div span {
  font-size: 0.67rem;
  font-weight: 680;
}

.full-team-visual__track > b {
  color: rgba(139, 196, 237, 0.42);
}

.full-team-visual__track > b .icon {
  width: 15px;
  height: 15px;
}

.full-team-visual__support {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
}

.full-team-visual__support span {
  display: flex;
  gap: 7px;
  align-items: center;
  padding: 8px 10px;
  color: rgba(255, 255, 255, 0.61);
  background: rgba(255, 255, 255, 0.05);
  border-radius: 999px;
  font-size: 0.63rem;
  font-weight: 650;
}

.full-team-visual__support .icon {
  width: 14px;
  height: 14px;
  color: var(--blue-300);
}

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

.connected-card {
  position: relative;
  padding: 24px 20px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
}

.connected-card > span {
  position: absolute;
  top: 20px;
  right: 18px;
  color: #a6b7c5;
  font-size: 0.68rem;
  font-weight: 850;
}

.connected-card h3 {
  margin: 25px 0 12px;
  font-size: 1.11rem;
}

.connected-card p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.86rem;
}

.full-team-benefits {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(420px, 1.14fr);
  gap: clamp(55px, 8vw, 110px);
  align-items: center;
}

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

.system-card {
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

.system-card__head {
  display: flex;
  min-height: 60px;
  align-items: center;
  justify-content: space-between;
  padding: 0 22px;
  color: #fff;
  background: linear-gradient(110deg, var(--blue-700), var(--blue-400));
  font-size: 0.8rem;
  font-weight: 750;
}

.system-card__head i {
  padding: 5px 8px;
  background: rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  font-size: 0.61rem;
  font-style: normal;
  text-transform: uppercase;
}

.system-card__body {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  background: var(--line);
}

.system-card__body > div {
  display: flex;
  min-height: 105px;
  gap: 14px;
  align-items: center;
  padding: 18px;
  background: #fff;
}

.system-card__body > div > .icon {
  width: 23px;
  height: 23px;
  color: var(--blue-600);
}

.system-card__body span {
  display: grid;
  gap: 3px;
}

.system-card__body strong {
  color: var(--ink);
  font-size: 0.84rem;
}

.system-card__body small {
  color: var(--muted);
  font-size: 0.7rem;
}

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

.process-visual {
  position: relative;
  min-height: 410px;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 8px;
  align-items: center;
  padding: 34px 24px;
}

.process-visual__rail {
  position: absolute;
  top: 50%;
  right: 50px;
  left: 50px;
  height: 2px;
  background: linear-gradient(90deg, rgba(139, 196, 237, 0.18), var(--blue-400), rgba(139, 196, 237, 0.18));
}

.process-visual > div:not(.process-visual__rail) {
  position: relative;
  z-index: 2;
  display: grid;
  gap: 8px;
  place-items: center;
}

.process-visual > div:not(.process-visual__rail) span {
  display: grid;
  width: 58px;
  height: 58px;
  place-items: center;
  color: #fff;
  background: var(--blue-600);
  border: 8px solid var(--navy-850);
  border-radius: 50%;
  box-shadow: 0 0 0 1px rgba(139, 196, 237, 0.3);
  font-size: 0.67rem;
  font-weight: 850;
}

.process-visual > div:not(.process-visual__rail) strong {
  color: rgba(255, 255, 255, 0.74);
  font-size: 0.67rem;
}

.process-detail__list {
  display: grid;
  gap: 18px;
}

.process-detail__item {
  display: grid;
  grid-template-columns: 70px 64px minmax(0, 1fr);
  gap: 25px;
  align-items: start;
  padding: 35px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: 0 10px 28px rgba(7, 39, 72, 0.04);
}

.process-detail__number {
  color: var(--blue-500);
  font-size: 0.8rem;
  font-weight: 850;
  letter-spacing: 0.1em;
}

.process-detail__icon {
  display: grid;
  width: 56px;
  height: 56px;
  place-items: center;
  color: var(--blue-600);
  background: var(--blue-100);
  border-radius: 18px;
}

.process-detail__icon .icon {
  width: 26px;
  height: 26px;
}

.process-detail__item > div:last-child > span {
  color: var(--blue-700);
  font-size: 0.72rem;
  font-weight: 850;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.process-detail__item h3 {
  margin: 8px 0 13px;
  font-size: 1.55rem;
}

.process-detail__item p {
  max-width: 800px;
  margin-bottom: 16px;
  color: var(--ink-soft);
}

.process-detail__item ul {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.process-detail__item li {
  padding: 6px 10px;
  color: #486579;
  background: var(--surface-soft);
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 650;
}

.cadence-section__grid {
  display: grid;
  grid-template-columns: 0.84fr 1.16fr;
  gap: clamp(55px, 8vw, 110px);
  align-items: start;
}

.cadence-cards {
  display: grid;
  gap: 14px;
}

.cadence-card {
  padding: 25px 28px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
}

.cadence-card > span {
  color: var(--blue-600);
  font-size: 0.7rem;
  font-weight: 850;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.cadence-card h3 {
  margin: 12px 0 8px;
}

.cadence-card p {
  margin: 0;
  color: var(--ink-soft);
}

.education-visual {
  position: relative;
  min-height: 470px;
  overflow: hidden;
  background: linear-gradient(145deg, rgba(18, 51, 86, 0.98), rgba(5, 24, 48, 0.95));
  border: 1px solid rgba(139, 196, 237, 0.2);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
}

.education-visual::before {
  position: absolute;
  inset: 0;
  content: "";
  opacity: 0.35;
  background-image: radial-gradient(circle at 1px 1px, rgba(255, 255, 255, 0.13) 1px, transparent 0);
  background-size: 24px 24px;
}

.education-visual__center {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 2;
  display: flex;
  width: 190px;
  height: 190px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: linear-gradient(145deg, var(--blue-600), #0a4d85);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  box-shadow: 0 0 0 25px rgba(79, 159, 218, 0.06), 0 24px 60px rgba(0, 8, 26, 0.35);
  transform: translate(-50%, -50%);
}

.education-visual__center .icon {
  width: 31px;
  height: 31px;
  margin-bottom: 10px;
  color: var(--blue-200);
}

.education-visual__center strong {
  color: #fff;
}

.education-visual__center span {
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.65rem;
}

.education-visual__role {
  position: absolute;
  z-index: 3;
  padding: 9px 13px;
  color: rgba(255, 255, 255, 0.77);
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 999px;
  font-size: 0.7rem;
  font-weight: 690;
  backdrop-filter: blur(10px);
}

.education-visual__role--one { top: 58px; left: 50%; transform: translateX(-50%); }
.education-visual__role--two { top: 38%; right: 28px; }
.education-visual__role--three { right: 60px; bottom: 58px; }
.education-visual__role--four { bottom: 58px; left: 62px; }
.education-visual__role--five { top: 38%; left: 25px; }

.education-buyers {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(55px, 8vw, 110px);
  align-items: center;
}

.education-buyers__copy .section-heading {
  margin-bottom: 18px;
}

.education-buyers__copy > p {
  color: var(--ink-soft);
}

.buyer-cloud {
  display: flex;
  min-height: 360px;
  flex-wrap: wrap;
  gap: 11px;
  align-content: center;
  justify-content: center;
  padding: 35px;
  background: var(--navy-900);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

.tag {
  display: inline-flex;
  padding: 9px 13px;
  color: rgba(255, 255, 255, 0.77);
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 680;
}

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

.use-case-card {
  padding: 29px 26px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
}

.use-case-card > span {
  color: var(--blue-600);
  font-size: 0.7rem;
  font-weight: 850;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.use-case-card h3 {
  margin: 24px 0 12px;
  font-size: 1.28rem;
}

.use-case-card p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.91rem;
}

.results-visual {
  position: relative;
  min-height: 470px;
  overflow: hidden;
  background: linear-gradient(145deg, rgba(18, 51, 86, 0.98), rgba(5, 24, 48, 0.95));
  border: 1px solid rgba(139, 196, 237, 0.2);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
}

.results-visual__main {
  position: absolute;
  inset: 38px 38px 115px;
  padding: 24px;
  background: rgba(255, 255, 255, 0.055);
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 22px;
}

.results-visual__main span {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.68rem;
  font-weight: 750;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.results-visual__main strong {
  display: block;
  margin-top: 6px;
  color: #fff;
  font-size: 1.4rem;
}

.results-visual__main svg {
  width: 100%;
  margin-top: 26px;
}

.results-visual__main svg path:first-child {
  fill: none;
  stroke: var(--blue-300);
  stroke-width: 4;
  stroke-linecap: round;
}

.results-visual__main svg path:last-child {
  fill: rgba(79, 159, 218, 0.16);
}

.results-visual__stat {
  position: absolute;
  bottom: 34px;
  display: grid;
  min-width: 120px;
  gap: 4px;
  padding: 13px 15px;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 14px;
  backdrop-filter: blur(10px);
}

.results-visual__stat strong {
  color: var(--blue-300);
  font-size: 1.17rem;
}

.results-visual__stat span {
  color: rgba(255, 255, 255, 0.57);
  font-size: 0.62rem;
}

.results-visual__stat--one { left: 38px; }
.results-visual__stat--two { left: 50%; transform: translateX(-50%); }
.results-visual__stat--three { right: 38px; }

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

.case-study-card {
  padding: 34px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: 0 14px 36px rgba(7, 39, 72, 0.05);
}

.case-study-card__meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  color: var(--blue-700);
  font-size: 0.7rem;
  font-weight: 820;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.case-study-card__meta i {
  padding: 6px 9px;
  color: #5e7487;
  background: var(--surface-soft);
  border-radius: 999px;
  font-style: normal;
  letter-spacing: 0.05em;
}

.case-study-card h3 {
  margin: 30px 0 14px;
  font-size: 1.55rem;
}

.case-study-card > p {
  color: var(--ink-soft);
}

.case-study-card__outcomes {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin-top: 28px;
}

.case-study-card__outcomes > div {
  padding: 17px;
  background: var(--surface-blue);
  border-radius: 14px;
}

.case-study-card__outcomes strong {
  display: block;
  color: var(--blue-600);
  font-size: 1.55rem;
  letter-spacing: -0.04em;
}

.case-study-card__outcomes span {
  display: block;
  margin-top: 4px;
  color: #607689;
  font-size: 0.72rem;
  line-height: 1.4;
}

.about-visual {
  position: relative;
  min-height: 470px;
  overflow: hidden;
  background: linear-gradient(145deg, rgba(18, 51, 86, 0.98), rgba(5, 24, 48, 0.95));
  border: 1px solid rgba(139, 196, 237, 0.2);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
}

.about-visual::before {
  position: absolute;
  inset: 0;
  content: "";
  opacity: 0.28;
  background-image: radial-gradient(circle at 1px 1px, rgba(255, 255, 255, 0.14) 1px, transparent 0);
  background-size: 24px 24px;
}

.about-visual__center {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 2;
  display: grid;
  width: 190px;
  height: 190px;
  place-items: center;
  align-content: center;
  padding: 24px;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 50%;
  box-shadow: 0 0 0 26px rgba(79, 159, 218, 0.05);
  transform: translate(-50%, -50%);
}

.about-visual__center img {
  width: 88px;
  height: 88px;
  object-fit: contain;
  filter: brightness(0) invert(1);
}

.about-visual__center span {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.7rem;
  font-weight: 760;
  text-transform: uppercase;
}

.about-visual__item {
  position: absolute;
  z-index: 3;
  display: flex;
  gap: 7px;
  align-items: center;
  padding: 9px 12px;
  color: rgba(255, 255, 255, 0.76);
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 999px;
  font-size: 0.7rem;
  font-weight: 700;
}

.about-visual__item .icon {
  width: 16px;
  height: 16px;
  color: var(--blue-300);
}

.about-visual__item--one { top: 58px; left: 50%; transform: translateX(-50%); }
.about-visual__item--two { top: 50%; right: 35px; transform: translateY(-50%); }
.about-visual__item--three { bottom: 58px; left: 50%; transform: translateX(-50%); }
.about-visual__item--four { top: 50%; left: 35px; transform: translateY(-50%); }

.about-story__grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: clamp(55px, 8vw, 110px);
  align-items: start;
}

.about-story__copy {
  padding-top: 42px;
}

.about-story__copy p {
  color: var(--ink-soft);
  font-size: 1.08rem;
}

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

.positioning-card {
  padding: 34px;
  border-radius: var(--radius-lg);
}

.positioning-card > span {
  display: flex;
  gap: 9px;
  align-items: center;
  font-size: 0.77rem;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.positioning-card ul {
  display: grid;
  gap: 14px;
  padding: 0;
  margin: 30px 0 0;
  list-style: none;
}

.positioning-card li {
  position: relative;
  padding-left: 22px;
}

.positioning-card li::before {
  position: absolute;
  top: 0.7em;
  left: 0;
  width: 7px;
  height: 7px;
  content: "";
  border-radius: 50%;
  transform: translateY(-50%);
}

.positioning-card--yes {
  color: rgba(255, 255, 255, 0.74);
  background: var(--navy-900);
}

.positioning-card--yes > span {
  color: var(--blue-300);
}

.positioning-card--yes li::before {
  background: var(--teal-500);
}

.positioning-card--no {
  color: var(--ink-soft);
  background: var(--surface-soft);
  border: 1px solid var(--line);
}

.positioning-card--no > span {
  color: var(--muted);
}

.positioning-card--no li::before {
  background: #aab8c3;
}

.contact-visual {
  position: relative;
  min-height: 440px;
  padding: 34px;
}

.contact-visual__calendar {
  min-height: 280px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 28px;
  text-align: center;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 24px;
}

.contact-visual__calendar > .icon {
  width: 42px;
  height: 42px;
  margin-bottom: 16px;
  color: var(--blue-300);
}

.contact-visual__calendar strong {
  color: #fff;
  font-size: 1.3rem;
}

.contact-visual__calendar > span {
  margin-top: 5px;
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.72rem;
}

.contact-visual__calendar > div {
  display: flex;
  gap: 9px;
  margin-top: 28px;
}

.contact-visual__calendar > div i {
  width: 33px;
  height: 33px;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 10px;
}

.contact-visual__calendar > div i:nth-child(3) {
  background: var(--blue-500);
  border-color: var(--blue-400);
}

.contact-visual__note {
  position: absolute;
  right: 18px;
  bottom: 30px;
  left: 70px;
  display: flex;
  gap: 11px;
  align-items: center;
  padding: 13px 15px;
  color: rgba(255, 255, 255, 0.71);
  background: rgba(7, 26, 51, 0.92);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 14px;
  box-shadow: 0 18px 34px rgba(0, 10, 27, 0.3);
  font-size: 0.72rem;
}

.contact-visual__note .icon {
  color: var(--blue-300);
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(330px, 0.72fr) minmax(0, 1.28fr);
  gap: 24px;
  align-items: stretch;
}

.contact-option,
.contact-form-wrap {
  padding: clamp(28px, 4vw, 44px);
  border-radius: var(--radius-lg);
}

.contact-option--calendar {
  color: rgba(255, 255, 255, 0.71);
  background: var(--navy-900);
}

.contact-option--calendar .icon-box {
  color: var(--blue-300);
  background: rgba(79, 159, 218, 0.13);
  border-color: rgba(139, 196, 237, 0.18);
}

.contact-option__label {
  display: block;
  margin: 34px 0 12px;
  color: var(--blue-300);
  font-size: 0.7rem;
  font-weight: 850;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.contact-option h2 {
  margin-bottom: 19px;
  color: #fff;
  font-size: clamp(2rem, 3.5vw, 3.4rem);
}

.contact-option p {
  margin-bottom: 30px;
}

.contact-option small {
  display: block;
  margin-top: 14px;
  color: rgba(255, 255, 255, 0.43);
}

.contact-form-wrap {
  background: var(--surface-soft);
  border: 1px solid var(--line);
}

.contact-form-wrap__head h2 {
  margin-bottom: 14px;
  font-size: clamp(2rem, 3.6vw, 3.3rem);
}

.contact-form-wrap__head p {
  color: var(--ink-soft);
}

.contact-form-wrap code {
  padding: 2px 5px;
  color: var(--blue-700);
  background: var(--blue-100);
  border-radius: 5px;
  font-size: 0.82em;
}

.contact-form {
  display: grid;
  gap: 17px;
  margin-top: 30px;
}

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

.contact-form label {
  display: grid;
  gap: 7px;
}

.contact-form label > span {
  color: #314b62;
  font-size: 0.8rem;
  font-weight: 740;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  color: var(--ink);
  background: #fff;
  border: 1px solid #cfdde7;
  border-radius: 12px;
  transition: border-color 0.18s ease, box-shadow 0.18s ease;
}

.contact-form input,
.contact-form select {
  height: 50px;
  padding: 0 14px;
}

.contact-form textarea {
  min-height: 140px;
  padding: 13px 14px;
  resize: vertical;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--blue-500);
  box-shadow: 0 0 0 4px rgba(25, 127, 200, 0.12);
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: #9aa9b4;
}

.contact-form__footer {
  display: flex;
  gap: 20px;
  align-items: center;
  justify-content: space-between;
  margin-top: 4px;
}

.contact-form__footer p {
  max-width: 330px;
  margin: 0;
  color: var(--muted);
  font-size: 0.7rem;
}

.contact-form__footer a {
  color: var(--blue-700);
  text-decoration: underline;
}

.form-status {
  display: none;
  padding: 12px 14px;
  border-radius: 10px;
  font-size: 0.82rem;
}

.form-status.is-visible {
  display: block;
}

.form-status.is-success {
  color: #0d5b4e;
  background: var(--teal-100);
  border: 1px solid rgba(43, 184, 166, 0.25);
}

.form-status.is-error {
  color: #7b4d0b;
  background: var(--amber-100);
  border: 1px solid rgba(232, 170, 59, 0.3);
}

.honeypot {
  position: absolute !important;
  left: -10000px !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
}

.legal-hero {
  padding: 100px 0 90px;
}

.legal-hero__content {
  max-width: 780px;
}

.legal-hero h1 {
  margin-bottom: 20px;
  font-size: clamp(3rem, 6vw, 5.5rem);
}

.legal-hero p {
  color: rgba(255, 255, 255, 0.56);
}

.legal-content__inner {
  max-width: 820px;
}

.legal-intro {
  padding: 20px 22px;
  color: #4f667a;
  background: var(--surface-blue);
  border-left: 4px solid var(--blue-500);
  border-radius: 0 12px 12px 0;
}

.legal-content h2 {
  margin-top: 45px;
  margin-bottom: 14px;
  font-size: 1.55rem;
}

.legal-content p {
  color: var(--ink-soft);
}

.legal-content a {
  color: var(--blue-700);
  text-decoration: underline;
}

.selection-guide {
  display: grid;
  grid-template-columns: 0.76fr 1.24fr;
  gap: clamp(55px, 8vw, 100px);
  align-items: start;
}

.selection-guide__cards {
  display: grid;
  gap: 14px;
}

.selection-card {
  padding: 27px 29px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
}

.selection-card > span {
  color: var(--blue-600);
  font-size: 0.7rem;
  font-weight: 850;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.selection-card h3 {
  margin: 14px 0 10px;
}

.selection-card p {
  color: var(--ink-soft);
}

.site-footer {
  color: rgba(255, 255, 255, 0.64);
  background: var(--navy-950);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.site-footer__top {
  display: grid;
  grid-template-columns: 1.05fr 1fr 1.15fr;
  gap: clamp(45px, 7vw, 95px);
  padding: 75px 0 60px;
}

.brand--footer {
  width: 215px;
  margin-bottom: 22px;
}

.brand--footer img {
  filter: brightness(0) invert(1);
}

.site-footer__brand > p {
  max-width: 330px;
  margin-bottom: 24px;
}

.footer-email {
  display: inline-flex;
  gap: 9px;
  align-items: center;
  color: var(--blue-300);
  font-size: 0.86rem;
  font-weight: 700;
}

.footer-email .icon {
  width: 17px;
  height: 17px;
}

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

.site-footer__links > div {
  display: grid;
  align-content: start;
  gap: 11px;
}

.site-footer__links h2 {
  margin-bottom: 7px;
  color: #fff;
  font-size: 0.78rem;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.site-footer__links a {
  font-size: 0.86rem;
  transition: color 0.18s ease;
}

.site-footer__links a:hover,
.site-footer__bottom a:hover {
  color: #fff;
}

.site-footer__cta {
  padding: 28px;
  background: rgba(255, 255, 255, 0.055);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-md);
}

.site-footer__cta > span {
  color: var(--blue-300);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.site-footer__cta h2 {
  margin: 14px 0 23px;
  color: #fff;
  font-size: 1.65rem;
  line-height: 1.12;
}

.site-footer__bottom {
  display: flex;
  min-height: 72px;
  align-items: center;
  justify-content: space-between;
  gap: 25px;
  border-top: 1px solid rgba(255, 255, 255, 0.09);
  font-size: 0.76rem;
}

.site-footer__bottom p {
  margin: 0;
}

.site-footer__bottom > div {
  display: flex;
  gap: 20px;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}

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


/* Managed sales team system */
.managed-team-section {
  overflow: hidden;
}

.managed-team-system {
  position: relative;
  margin-top: 54px;
}

.managed-team-system__client {
  position: relative;
  z-index: 2;
  display: flex;
  width: min(390px, 100%);
  min-height: 92px;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding: 18px 24px;
  margin: 0 auto;
  color: #fff;
  text-align: left;
  background: linear-gradient(135deg, var(--navy-900), #0b4f8b);
  border: 1px solid rgba(139, 196, 237, 0.24);
  border-radius: 20px;
  box-shadow: 0 18px 44px rgba(7, 33, 62, 0.18);
}

.managed-team-system__client::after {
  position: absolute;
  top: 100%;
  left: 50%;
  width: 1px;
  height: 34px;
  content: "";
  background: var(--blue-600);
}

.managed-team-system__client-icon {
  display: grid;
  width: 48px;
  height: 48px;
  flex: 0 0 auto;
  place-items: center;
  color: #fff;
  background: rgba(255, 255, 255, 0.09);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 14px;
}

.managed-team-system__client-icon .icon {
  width: 25px;
  height: 25px;
}

.managed-team-system__client span,
.managed-team-system__client small {
  display: block;
}

.managed-team-system__client span {
  font-size: 1.32rem;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.managed-team-system__client small {
  margin-top: 2px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.78rem;
  line-height: 1.35;
}

.managed-team-system__grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  margin-top: 68px;
}

.managed-team-system__grid::before {
  position: absolute;
  top: -34px;
  right: 12.5%;
  left: 12.5%;
  height: 1px;
  content: "";
  background: var(--blue-600);
}

.managed-team-card {
  position: relative;
  min-width: 0;
  overflow: visible;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 22px;
  box-shadow: 0 16px 40px rgba(7, 39, 72, 0.07);
}

.managed-team-card::before {
  position: absolute;
  bottom: 100%;
  left: 50%;
  width: 1px;
  height: 34px;
  content: "";
  background: var(--blue-600);
}

.managed-team-card__head {
  position: relative;
  display: flex;
  min-height: 126px;
  align-items: center;
  gap: 13px;
  padding: 24px 18px 20px;
  color: #fff;
  background: linear-gradient(145deg, var(--navy-900), #0a4f8c);
  border-radius: 21px 21px 0 0;
}

.managed-team-card__head-icon {
  display: grid;
  width: 46px;
  height: 46px;
  flex: 0 0 auto;
  place-items: center;
  color: #fff;
  background: linear-gradient(145deg, var(--blue-600), #114f9b);
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 50%;
  box-shadow: 0 8px 18px rgba(0, 28, 60, 0.22);
}

.managed-team-card__head-icon .icon {
  width: 23px;
  height: 23px;
}

.managed-team-card__head h3 {
  margin: 0 0 5px;
  color: #fff;
  font-size: 1.08rem;
  letter-spacing: -0.02em;
}

.managed-team-card__head p {
  margin: 0;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.73rem;
  line-height: 1.42;
}

.managed-team-card__body {
  display: grid;
  gap: 10px;
  padding: 15px;
}

.managed-team-capability {
  display: flex;
  min-width: 0;
  align-items: flex-start;
  gap: 10px;
  padding: 12px;
  background: #fff;
  border: 1px solid #d8e6f1;
  border-radius: 13px;
  box-shadow: 0 6px 16px rgba(8, 46, 82, 0.035);
}

.managed-team-capability__icon {
  display: grid;
  width: 34px;
  height: 34px;
  flex: 0 0 auto;
  place-items: center;
  color: #fff;
  background: linear-gradient(145deg, var(--blue-600), #12498d);
  border-radius: 50%;
}

.managed-team-capability__icon .icon {
  width: 18px;
  height: 18px;
}

.managed-team-capability strong,
.managed-team-capability span {
  display: block;
}

.managed-team-capability strong {
  color: var(--navy-900);
  font-size: 0.84rem;
  line-height: 1.25;
}

.managed-team-capability span {
  margin-top: 3px;
  color: var(--ink-soft);
  font-size: 0.73rem;
  line-height: 1.4;
}

.managed-team-benefits {
  padding: 15px;
  background: linear-gradient(180deg, #f6fbff, #edf6fc);
  border: 1px solid #d6e7f3;
  border-radius: 14px;
}

.managed-team-benefits > strong {
  display: block;
  margin-bottom: 10px;
  color: var(--blue-700);
  font-size: 0.82rem;
}

.managed-team-benefits__list {
  gap: 7px;
  margin: 0;
}

.managed-team-benefits__list li {
  gap: 7px;
  color: #34536b;
  font-size: 0.72rem;
  line-height: 1.4;
}

.managed-team-benefits__list li .icon {
  width: 14px;
  height: 14px;
  margin-top: 2px;
}

.managed-team-system__summary {
  display: grid;
  grid-template-columns: minmax(250px, 0.9fr) minmax(0, 2.1fr);
  gap: 24px;
  align-items: center;
  padding: 22px 24px;
  margin-top: 24px;
  background: #fff;
  border: 1px solid #cbddeb;
  border-radius: 20px;
  box-shadow: 0 12px 32px rgba(7, 39, 72, 0.045);
}

.managed-team-system__summary-copy strong,
.managed-team-system__summary-copy span {
  display: block;
}

.managed-team-system__summary-copy strong {
  color: var(--navy-900);
  font-size: 1.18rem;
  letter-spacing: -0.025em;
}

.managed-team-system__summary-copy span {
  margin-top: 4px;
  color: var(--ink-soft);
  font-size: 0.82rem;
  line-height: 1.45;
}

.managed-team-system__summary-items {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.managed-team-system__summary-items > div {
  display: flex;
  min-width: 0;
  align-items: center;
  gap: 9px;
  padding: 4px 14px;
  border-left: 1px solid var(--line);
}

.managed-team-system__summary-items .icon {
  width: 27px;
  height: 27px;
  flex: 0 0 auto;
  color: var(--blue-700);
}

.managed-team-system__summary-items span,
.managed-team-system__summary-items strong,
.managed-team-system__summary-items small {
  display: block;
}

.managed-team-system__summary-items strong {
  color: var(--navy-900);
  font-size: 0.73rem;
}

.managed-team-system__summary-items small {
  margin-top: 2px;
  color: var(--muted);
  font-size: 0.62rem;
  line-height: 1.35;
}

.managed-team-section--sdr .managed-team-system {
  margin-top: 50px;
}

.managed-team-section--sdr .managed-team-card {
  box-shadow: 0 16px 44px rgba(7, 39, 72, 0.08);
}

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

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

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

@media (max-width: 1100px) {
  .managed-team-system__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin-top: 38px;
  }

  .managed-team-system__grid::before,
  .managed-team-system__client::after,
  .managed-team-card::before {
    display: none;
  }

  .managed-team-system__summary {
    grid-template-columns: 1fr;
  }

  .managed-team-system__summary-items > div:first-child {
    border-left: 0;
  }

  :root {
    --header-height: 72px;
  }

  .menu-toggle {
    display: block;
  }

  .site-header {
    overflow: visible;
  }

  .site-nav {
    position: absolute;
    top: 100%;
    right: 0;
    bottom: auto;
    left: 0;
    z-index: 10;
    display: none;
    width: 100%;
    height: calc(100vh - var(--header-height));
    height: calc(100dvh - var(--header-height));
    min-height: 0;
    overflow-y: auto;
    overscroll-behavior: contain;
    -webkit-overflow-scrolling: touch;
    align-content: start;
    align-items: stretch;
    gap: 0;
    padding: 22px 24px calc(36px + env(safe-area-inset-bottom));
    background: #fff;
    border-top: 1px solid var(--line);
    box-shadow: 0 24px 52px rgba(5, 31, 58, 0.16);
  }

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

  .site-nav > a,
  .nav-dropdown > summary,
  .site-nav__mobile-contact a {
    display: flex;
    min-height: 54px;
    align-items: center;
    justify-content: space-between;
    padding: 0;
    border-bottom: 1px solid var(--line);
    font-size: 1rem;
  }

  .site-nav > a::after,
  .nav-dropdown > summary::after {
    display: none;
  }

  .nav-dropdown__panel {
    position: static;
    width: 100%;
    grid-template-columns: 1fr;
    padding: 7px 0 14px 14px;
    background: transparent;
    border: 0;
    border-radius: 0;
    box-shadow: none;
    transform: none;
  }

  .nav-dropdown__panel a {
    padding: 12px;
    border-left: 2px solid var(--blue-200);
    border-radius: 0 10px 10px 0;
  }

  .site-nav__mobile-contact {
    display: block;
  }

  .site-nav__cta {
    min-height: 52px !important;
    margin-top: 22px;
  }

  .home-hero__inner,
  .page-hero__grid,
  .reporting-section__grid,
  .team-support,
  .full-team-benefits {
    grid-template-columns: 1fr;
  }

  .home-hero__content,
  .page-hero__content {
    max-width: 840px;
  }

  .home-hero__visual,
  .page-hero__visual {
    width: min(760px, 100%);
    margin-inline: auto;
  }

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

  .process-grid--five,
  .connected-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .reporting-section__grid {
    gap: 45px;
  }

  .reporting-section__copy {
    max-width: 760px;
  }

  .cta-band__inner {
    align-items: flex-start;
    flex-direction: column;
  }

  .cta-band .button-row {
    flex-direction: row;
  }

  .team-support__visual {
    width: min(680px, 100%);
    margin-inline: auto;
  }

  .split-intro,
  .selection-guide,
  .cadence-section__grid,
  .education-buyers,
  .about-story__grid {
    grid-template-columns: 1fr;
  }

  .split-intro > div:first-child,
  .sticky-copy {
    position: static;
  }

  .principles-grid,
  .feature-grid--four,
  .fit-grid,
  .use-case-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .site-footer__cta {
    grid-column: 1 / -1;
  }
}

@media (max-width: 800px) {
  .managed-team-system {
    margin-top: 40px;
  }

  .managed-team-system__summary-items {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px 0;
  }

  .managed-team-system__summary-items > div:nth-child(3) {
    border-left: 0;
  }

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

  .section {
    padding: 72px 0;
  }

  .brand {
    width: 180px;
  }

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

  .home-hero__content h1,
  .page-hero__content h1 {
    font-size: clamp(2.85rem, 11vw, 4.7rem);
  }

  .hero-proof {
    grid-template-columns: 1fr;
  }

  .revenue-system {
    min-height: 520px;
  }

  .feature-grid--five,
  .service-grid,
  .process-grid--five,
  .metrics-grid--four,
  .connected-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .education-callout__inner,
  .two-column,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .education-callout__visual {
    order: 2;
  }

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

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

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

  .comparison-table__row {
    grid-template-columns: 1fr 1fr;
  }

  .comparison-table__row > div:first-child {
    grid-column: 1 / -1;
    background: var(--surface-soft);
    border-bottom: 1px solid var(--line);
  }

  .comparison-table__head {
    display: none;
  }

  .comparison-table__row > div:nth-child(2)::before {
    display: block;
    margin-bottom: 4px;
    color: var(--muted);
    content: "Build internally";
    font-size: 0.65rem;
    font-weight: 800;
    letter-spacing: 0.06em;
    text-transform: uppercase;
  }

  .comparison-table__row > div:last-child::before {
    display: block;
    margin-bottom: 4px;
    color: var(--blue-600);
    content: "Capital Generations";
    font-size: 0.65rem;
    font-weight: 800;
    letter-spacing: 0.06em;
    text-transform: uppercase;
  }

  .comparison-table__row > div:nth-child(2),
  .comparison-table__row > div:last-child {
    display: block;
  }

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

  .handoff-flow > b {
    justify-self: center;
    transform: rotate(90deg);
  }

  .process-detail__item {
    grid-template-columns: 52px minmax(0, 1fr);
    gap: 18px;
    padding: 27px;
  }

  .process-detail__icon {
    grid-column: 1;
    grid-row: 2;
  }

  .process-detail__item > div:last-child {
    grid-column: 2;
    grid-row: 1 / 3;
  }

  .case-study-grid,
  .positioning-grid {
    grid-template-columns: 1fr;
  }

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

  .site-footer__cta {
    grid-column: auto;
  }
}

@media (max-width: 560px) {
  .managed-team-system__client {
    justify-content: flex-start;
    padding: 16px 18px;
  }

  .managed-team-system__grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .managed-team-card__head {
    min-height: 0;
    padding: 20px 16px;
  }

  .managed-team-card__body {
    padding: 13px;
  }

  .managed-team-system__summary {
    padding: 20px 18px;
  }

  .managed-team-system__summary-items {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .managed-team-system__summary-items > div,
  .managed-team-system__summary-items > div:nth-child(3) {
    padding: 12px 0;
    border-left: 0;
    border-top: 1px solid var(--line);
  }

  .managed-team-system__summary-items > div:first-child {
    border-top: 0;
  }

  h2 {
    font-size: clamp(2rem, 10vw, 3.15rem);
  }

  .button-row,
  .cta-band .button-row {
    width: 100%;
    flex-direction: column;
    align-items: stretch;
  }

  .button {
    width: 100%;
  }

  .home-hero__content h1,
  .page-hero__content h1 {
    font-size: clamp(2.6rem, 13vw, 3.9rem);
  }

  .revenue-system,
  .team-pod,
  .education-visual,
  .about-visual,
  .results-visual {
    min-height: 450px;
    border-radius: 28px;
  }

  .revenue-system__center {
    width: 175px;
    height: 175px;
  }

  .revenue-system__card {
    min-width: 138px;
    padding: 10px;
  }

  .revenue-system__card span {
    font-size: 0.57rem;
  }

  .revenue-system__card strong {
    font-size: 0.69rem;
  }

  .revenue-system__card > .icon {
    width: 20px;
    height: 20px;
  }

  .revenue-system__card--target { top: 75px; left: 14px; }
  .revenue-system__card--outreach { top: 85px; right: 14px; }
  .revenue-system__card--manage { bottom: 56px; left: 14px; }
  .revenue-system__card--report { right: 14px; bottom: 52px; }

  .proof-strip__inner {
    gap: 10px 14px;
    font-size: 0.7rem;
  }

  .proof-strip__inner i {
    display: none;
  }

  .feature-grid--five,
  .feature-grid--four,
  .service-grid,
  .process-grid--five,
  .process-grid--three,
  .metrics-grid--four,
  .principles-grid,
  .fit-grid,
  .use-case-grid,
  .connected-grid {
    grid-template-columns: 1fr;
  }

  .service-card,
  .metric-card,
  .case-study-card {
    padding: 25px;
  }

  .dashboard-mock__bar {
    padding: 0 15px;
  }

  .dashboard-mock__bar strong {
    font-size: 0.72rem;
  }

  .live-pill {
    display: none;
  }

  .dashboard-mock__metrics {
    grid-template-columns: 1fr;
  }

  .dashboard-mock__grid {
    grid-template-columns: 1fr;
  }

  .dashboard-panel--line {
    grid-row: auto;
  }

  .education-map-card {
    min-height: 330px;
  }

  .cta-band__inner {
    min-height: 0;
    padding: 30px 24px;
    border-radius: 28px;
  }

  .page-hero__grid {
    gap: 44px;
  }

  .breadcrumb {
    margin-bottom: 32px;
  }

  .team-pod__ring--two {
    width: 360px;
    height: 360px;
  }

  .team-pod__node--data { right: 10px; }
  .team-pod__node--reporting { left: 10px; }

  .workflow-visual,
  .ae-visual,
  .full-team-visual,
  .process-visual,
  .contact-visual {
    min-height: 380px;
    padding: 20px;
    border-radius: 28px;
  }

  .workflow-visual__steps {
    grid-template-columns: repeat(4, 1fr);
    gap: 7px;
  }

  .workflow-visual__steps > b {
    display: none;
  }

  .workflow-visual__steps > div {
    border-radius: 13px;
  }

  .workflow-visual__steps > div span {
    font-size: 0.59rem;
  }

  .ae-visual__pipeline {
    grid-template-columns: repeat(5, minmax(50px, 1fr));
    overflow-x: auto;
  }

  .ae-visual__cards,
  .system-card__body,
  .case-study-card__outcomes,
  .form-row {
    grid-template-columns: 1fr;
  }

  .full-team-visual__track {
    grid-template-columns: repeat(5, 1fr);
  }

  .full-team-visual__track > b {
    display: none;
  }

  .full-team-visual__track > div i {
    width: 50px;
    height: 50px;
  }

  .process-visual {
    grid-template-columns: 1fr;
    gap: 13px;
    min-height: auto;
    padding: 30px;
  }

  .process-visual__rail {
    top: 40px;
    bottom: 40px;
    left: 58px;
    width: 2px;
    height: auto;
    background: linear-gradient(180deg, rgba(139, 196, 237, 0.18), var(--blue-400), rgba(139, 196, 237, 0.18));
  }

  .process-visual > div:not(.process-visual__rail) {
    grid-template-columns: 56px 1fr;
    justify-items: start;
  }

  .process-detail__item {
    grid-template-columns: 1fr;
  }

  .process-detail__number,
  .process-detail__icon,
  .process-detail__item > div:last-child {
    grid-column: 1;
    grid-row: auto;
  }

  .process-detail__item ul {
    display: grid;
  }

  .education-visual__role--two { right: 8px; }
  .education-visual__role--five { left: 8px; }
  .education-visual__role--three { right: 25px; }
  .education-visual__role--four { left: 25px; }

  .results-visual__main {
    inset: 24px 20px 140px;
  }

  .results-visual__stat {
    bottom: 22px;
    min-width: 95px;
    padding: 10px;
  }

  .results-visual__stat--one { left: 18px; }
  .results-visual__stat--three { right: 18px; }

  .results-visual__stat strong {
    font-size: 0.95rem;
  }

  .results-visual__stat span {
    font-size: 0.53rem;
  }

  .contact-form__footer {
    align-items: stretch;
    flex-direction: column;
  }

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

  .site-footer__bottom {
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
    padding: 22px 0;
  }
}

/* Production contact integrations: phone, WhatsApp, Formspree and LinkedIn */
.direct-contact {
  display: grid;
  gap: 10px;
  margin-top: 32px;
  padding-top: 27px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.direct-contact > span {
  margin-bottom: 2px;
  color: rgba(255, 255, 255, 0.48);
  font-size: 0.67rem;
  font-weight: 820;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.direct-contact > a {
  display: grid;
  grid-template-columns: 38px minmax(0, 1fr);
  gap: 12px;
  align-items: center;
  min-width: 0;
  padding: 11px 12px;
  color: rgba(255, 255, 255, 0.83);
  background: rgba(255, 255, 255, 0.045);
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 13px;
  transition: color 0.18s ease, background 0.18s ease, border-color 0.18s ease, transform 0.18s ease;
}

.direct-contact > a:hover {
  color: #fff;
  background: rgba(79, 159, 218, 0.12);
  border-color: rgba(139, 196, 237, 0.25);
  transform: translateY(-1px);
}

.direct-contact > a > .icon {
  width: 20px;
  height: 20px;
  margin-inline: auto;
  color: var(--blue-300);
}

.direct-contact > a > span {
  min-width: 0;
}

.direct-contact strong,
.direct-contact small {
  overflow-wrap: anywhere;
}

.direct-contact strong {
  display: block;
  color: inherit;
  font-size: 0.8rem;
  line-height: 1.25;
}

.direct-contact small {
  margin: 3px 0 0;
  color: rgba(255, 255, 255, 0.43);
  font-size: 0.65rem;
  line-height: 1.35;
}

.footer-contact-list {
  display: grid;
  gap: 10px;
  align-items: start;
}

.footer-contact-link {
  display: inline-flex;
  gap: 9px;
  align-items: center;
  width: fit-content;
  max-width: 100%;
  color: var(--blue-300);
  font-size: 0.82rem;
  font-weight: 700;
  transition: color 0.18s ease, transform 0.18s ease;
}

.footer-contact-link:hover {
  color: #fff;
  transform: translateX(2px);
}

.footer-contact-link .icon {
  flex: 0 0 auto;
  width: 17px;
  height: 17px;
}

.footer-contact-link span {
  overflow-wrap: anywhere;
}

.whatsapp-fab {
  position: fixed;
  right: 24px;
  bottom: max(24px, env(safe-area-inset-bottom));
  z-index: 90;
  display: inline-flex;
  gap: 9px;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 18px;
  color: #fff;
  background: #168f7f;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 999px;
  box-shadow: 0 16px 38px rgba(4, 38, 33, 0.28);
  font-size: 0.8rem;
  font-weight: 820;
  letter-spacing: -0.01em;
  transition: background 0.18s ease, box-shadow 0.18s ease, transform 0.18s ease, opacity 0.18s ease;
}

.whatsapp-fab:hover {
  background: #0f796c;
  box-shadow: 0 20px 44px rgba(4, 38, 33, 0.34);
  transform: translateY(-2px);
}

.whatsapp-fab .icon {
  width: 20px;
  height: 20px;
}

.menu-open .whatsapp-fab {
  pointer-events: none;
  opacity: 0;
}

@media (max-width: 560px) {
  .whatsapp-fab {
    right: 14px;
    bottom: max(14px, env(safe-area-inset-bottom));
    width: 50px;
    min-height: 50px;
    padding: 0;
  }

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


/* Team profiles on the About page */
.people-section {
  overflow: hidden;
  background:
    radial-gradient(circle at 13% 10%, rgba(79, 159, 218, 0.09), transparent 28%),
    linear-gradient(180deg, #ffffff 0%, #f8fbfd 100%);
}

.people-section .section-heading {
  max-width: 820px;
  margin-inline: auto;
}

.founder-profile {
  display: grid;
  max-width: 1050px;
  grid-template-columns: minmax(300px, 0.78fr) minmax(0, 1.22fr);
  gap: clamp(36px, 6vw, 74px);
  align-items: stretch;
  padding: clamp(18px, 2vw, 26px);
  margin: clamp(46px, 6vw, 72px) auto 26px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-md);
}

.founder-profile__media {
  position: relative;
  min-height: 520px;
  overflow: hidden;
  background: var(--surface-blue);
  border-radius: calc(var(--radius-xl) - 8px);
}

.founder-profile__media::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 30%;
  content: "";
  pointer-events: none;
  background: linear-gradient(180deg, transparent, rgba(4, 19, 38, 0.12));
}

.founder-profile__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.founder-profile__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(12px, 3vw, 36px) clamp(8px, 2vw, 18px);
}

.founder-profile__role,
.team-profile-card__role {
  display: inline-flex;
  width: fit-content;
  margin-bottom: 11px;
  color: var(--blue-700);
  font-size: 0.72rem;
  font-weight: 850;
  letter-spacing: 0.075em;
  text-transform: uppercase;
}

.founder-profile__content h3 {
  margin-bottom: 20px;
  font-size: clamp(2.35rem, 4vw, 3.55rem);
}

.founder-profile__content p {
  margin-bottom: 15px;
  color: var(--ink-soft);
  font-size: 1rem;
  line-height: 1.72;
}

.founder-profile__content blockquote {
  position: relative;
  padding: 20px 22px 20px 26px;
  margin: 12px 0 0;
  color: var(--ink);
  background: var(--surface-blue);
  border-left: 3px solid var(--blue-500);
  border-radius: 0 16px 16px 0;
  font-size: 1.02rem;
  font-weight: 690;
  line-height: 1.55;
}

.team-profile-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 22px;
  margin-top: 22px;
}

.team-profile-card {
  grid-column: span 2;
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease), border-color 0.25s ease;
}

.team-profile-card:nth-child(4) {
  grid-column: 2 / span 2;
}

.team-profile-card:nth-child(5) {
  grid-column: 4 / span 2;
}

.team-profile-card:hover {
  border-color: var(--blue-200);
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}

.team-profile-card__media {
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background: var(--surface-blue);
}

.team-profile-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s var(--ease);
}

.team-profile-card:hover .team-profile-card__media img {
  transform: scale(1.018);
}

.team-profile-card__body {
  padding: 25px 24px 28px;
}

.team-profile-card__body h3 {
  margin-bottom: 13px;
  font-size: 1.65rem;
}

.team-profile-card__body p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.9rem;
  line-height: 1.68;
}

@media (max-width: 1080px) {
  .founder-profile {
    grid-template-columns: minmax(280px, 0.9fr) minmax(0, 1.1fr);
    gap: 34px;
  }

  .founder-profile__media {
    min-height: 500px;
  }

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

  .team-profile-card,
  .team-profile-card:nth-child(4),
  .team-profile-card:nth-child(5) {
    grid-column: auto;
  }

  .team-profile-card:last-child {
    grid-column: 1 / -1;
    width: min(520px, 100%);
    justify-self: center;
  }
}

@media (max-width: 760px) {
  .founder-profile {
    grid-template-columns: 1fr;
    gap: 0;
    padding: 14px;
    border-radius: 28px;
  }

  .founder-profile__media {
    min-height: 0;
    aspect-ratio: 4 / 5;
    border-radius: 20px;
  }

  .founder-profile__content {
    padding: 28px 10px 18px;
  }

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

  .team-profile-card:last-child {
    grid-column: auto;
    width: 100%;
  }
}

@media (max-width: 560px) {
  .founder-profile {
    margin-top: 38px;
  }

  .founder-profile__content h3 {
    font-size: 2.25rem;
  }

  .founder-profile__content p {
    font-size: 0.94rem;
  }

  .founder-profile__content blockquote {
    padding: 17px 18px 17px 21px;
    font-size: 0.93rem;
  }

  .team-profile-card__body {
    padding: 22px 20px 24px;
  }
}
