:root {
  --navy:#071421;
  --navy-2:#0b1d2d;
  --navy-3:#10293d;
  --ink:#10202b;
  --muted:#5f6b72;
  --line:#d8ddd9;
  --paper:#f2f1eb;
  --white:#fff;
  --signal:#ffd84d;
  --cyan:#38cee8;
  --green:#38b88a;
  --orange:#e69c38;
  --shadow:0 24px 70px rgba(4,17,28,.13);
  --font-display:'Manrope','Segoe UI',sans-serif;
  --font-body:'DM Sans','Segoe UI',sans-serif;
}

body {
  color:var(--ink);
  background:#fff;
  font-size:16px;
  line-height:1.55;
}

body.menu-open {
  overflow:hidden;
}

.wrap {
  width:min(1180px,calc(100% - 48px));
}

h1,
h2,
h3,
h4 {
  letter-spacing:-.035em;
  line-height:1.08;
}

h1 {
  font-size:clamp(46px,6vw,92px);
}

h2 {
  font-size:clamp(34px,4vw,60px);
  line-height:1.08;
}

h3 {
  font-size:20px;
}

.navy-section {
  color:#fff;
  background:var(--navy);
}

.paper-section {
  background:var(--paper);
}

.white-section {
  background:#fff;
}

.signal-section {
  color:var(--navy);
  background:var(--signal);
}

.eyebrow {
  margin:0 0 18px;
  color:#657178;
  font-size:11px;
  font-weight:800;
  line-height:1;
  letter-spacing:.17em;
}

.eyebrow.cyan,
.section-head-dark .eyebrow {
  color:var(--cyan);
}

.button {
  min-height:50px;
  padding:0 22px;
  border:1px solid transparent;
  border-radius:2px;
  font-size:13px;
}

.button-signal {
  color:var(--navy);
  background:var(--signal);
}

.button-signal:hover {
  background:#ffe57d;
}

.button-white {
  color:var(--navy);
  background:#fff;
}

.button-navy {
  color:#fff;
  background:var(--navy);
}

.button-outline {
  border-color:var(--line);
}

.text-link {
  color:#fff;
  font-size:13px;
}

.text-link.dark {
  color:var(--ink);
}

.text-link.signal {
  color:var(--signal);
}

.button-row {
  display:flex;
  align-items:center;
  flex-wrap:wrap;
  gap:24px;
  margin-top:34px;
}

.section-head {
  display:grid;
  grid-template-columns:minmax(0,1.1fr) minmax(280px,.7fr);
  gap:9vw;
  align-items:end;
  margin-bottom:55px;
}

.section-head h2 {
  max-width:780px;
  margin:0;
}

.section-head>p {
  max-width:540px;
  margin:0;
  color:var(--muted);
  font-size:17px;
}

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

.section-action {
  margin-top:42px;
  text-align:right;
}

:where(a,button,input,select,textarea,summary):focus-visible {
  outline:3px solid var(--cyan);
  outline-offset:3px;
}

.choice-grid input:focus-visible+span {
  outline:3px solid var(--cyan);
  outline-offset:2px;
}

/* identity and navigation */ .brand {
  display:inline-flex;
  align-items:center;
  gap:10px;
  color:#fff;
  white-space:nowrap;
}

.brand-words {
  display:flex;
  flex-direction:column;
}

.brand-words strong {
  font:800 16px/1 var(--font-display);
  letter-spacing:.12em;
}

.brand-words small {
  margin-top:5px;
  color:var(--cyan);
  font:700 8px/1 var(--font-display);
  letter-spacing:.28em;
}

.logo-mark {
  width:34px;
  height:34px;
  position:relative;
  display:inline-block;
  transform:none;
}

.logo-mark i {
  position:absolute;
  left:0;
  height:4px;
  background:var(--signal);
  transform:skewX(-30deg);
}

.logo-mark i:nth-child(1) {
  width:29px;
  top:5px;
}

.logo-mark i:nth-child(2) {
  width:23px;
  top:15px;
  left:4px;
}

.logo-mark i:nth-child(3) {
  width:29px;
  top:25px;
  margin:0;
}

.campaign-bar {
  height:34px;
  display:flex;
  align-items:center;
  justify-content:center;
  gap:20px;
  color:var(--navy);
  background:var(--signal);
  font-size:11px;
  font-weight:700;
  letter-spacing:.05em;
}

.campaign-bar a {
  display:inline-flex;
  align-items:center;
  gap:6px;
  border-bottom:1px solid var(--navy);
}

.site-header {
  height:82px;
  gap:32px;
  padding-inline:max(24px,calc((100vw - 1180px)/2));
  background:var(--navy);
}

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

.nav-item {
  align-self:stretch;
  display:flex;
  align-items:center;
}

.nav-item>a {
  height:100%;
  display:flex;
  align-items:center;
  gap:7px;
  padding:0 14px;
  color:#dce7ec;
  font:600 12px/1 var(--font-display);
}

.nav-item:hover>a {
  color:var(--signal);
}

.header-cta {
  margin-left:8px;
  min-height:44px;
}

.mega-menu {
  width:min(940px,calc(100vw - 48px));
  display:grid;
  grid-template-columns:1.25fr repeat(2,1fr);
  position:absolute;
  top:81px;
  left:50%;
  padding:0;
  color:var(--ink);
  background:#fff;
  border-top:3px solid var(--signal);
  box-shadow:var(--shadow);
  opacity:0;
  visibility:hidden;
  transform:translate(-50%,8px);
  transition:.18s ease;
}

.nav-item:hover .mega-menu,
.nav-item:focus-within .mega-menu {
  opacity:1;
  visibility:visible;
  transform:translate(-50%,0);
}

.mega-intro {
  padding:32px;
  color:#fff;
  background:var(--navy-2);
}

.mega-intro h3 {
  font-size:24px;
}

.mega-intro a {
  display:inline-flex;
  align-items:center;
  gap:7px;
  color:var(--signal);
  font-weight:700;
  font-size:12px;
}

.mega-group {
  display:flex;
  flex-direction:column;
  gap:9px;
  padding:31px;
  border-right:1px solid #e5e9e6;
}

.mega-group strong {
  margin-bottom:6px;
  color:#728087;
  font-size:10px;
  letter-spacing:.14em;
  text-transform:uppercase;
}

.mega-group a {
  font-size:13px;
  line-height:1.25;
}

.mega-group a:hover {
  color:#008aa2;
}

.mobile-menu-button {
  display:none;
  margin-left:auto;
  padding:9px;
  color:#fff;
  background:transparent;
}

.mobile-nav {
  display:none;
}

/* home hero */ .home-hero {
  position:relative;
  overflow:hidden;
  padding-top:72px;
}

.home-hero:before {
  content:'';
  width:520px;
  height:520px;
  position:absolute;
  left:-240px;
  top:-200px;
  border:1px solid rgba(56,206,232,.14);
  border-radius:50%;
  box-shadow:0 0 0 70px rgba(56,206,232,.025),0 0 0 150px rgba(56,206,232,.018);
}

.hero-layout {
  min-height:595px;
  display:grid;
  grid-template-columns:1.02fr .9fr;
  gap:70px;
  align-items:center;
  padding-bottom:68px;
}

.hero-copy {
  z-index:2;
}

.hero-copy h1 {
  max-width:720px;
  margin-bottom:26px;
}

.hero-copy>p:not(.eyebrow) {
  max-width:610px;
  color:#b5c5cf;
  font-size:18px;
}

.hero-media {
  align-self:stretch;
  position:relative;
  min-height:510px;
}

.hero-media:after {
  content:'';
  position:absolute;
  inset:0;
  border:1px solid rgba(255,255,255,.13);
  pointer-events:none;
}

.hero-media img {
  width:100%;
  height:100%;
  object-fit:cover;
  object-position:54% center;
  filter:saturate(.82) contrast(1.04);
}

.hero-data-card {
  width:215px;
  position:absolute;
  left:-32px;
  bottom:42px;
  padding:18px;
  color:var(--ink);
  background:#fff;
  box-shadow:0 15px 42px rgba(0,0,0,.22);
}

.hero-data-card>div {
  display:flex;
  align-items:center;
  gap:8px;
}

.hero-data-card small,
.hero-notification small {
  color:#718087;
  font:700 9px/1 var(--font-display);
  letter-spacing:.13em;
}

.hero-data-card strong {
  display:block;
  margin:12px 0 2px;
  font:800 17px/1.2 var(--font-display);
}

.hero-data-card p {
  margin:0;
  color:var(--muted);
  font-size:12px;
}

.live-dot {
  width:7px;
  height:7px;
  display:inline-block;
  border-radius:50%;
  background:var(--green);
  box-shadow:0 0 0 4px rgba(56,184,138,.16);
}

.hero-notification {
  position:absolute;
  top:28px;
  right:-24px;
  display:flex;
  align-items:center;
  gap:10px;
  padding:13px 16px;
  color:var(--navy);
  background:var(--signal);
  box-shadow:0 13px 35px rgba(0,0,0,.2);
  font:700 11px/1.2 var(--font-display);
}

.hero-notification small {
  display:block;
  margin-bottom:4px;
  color:#5f5114;
}

.capability-strip {
  display:grid;
  grid-template-columns:repeat(6,1fr);
  border-top:1px solid rgba(255,255,255,.12);
}

.capability-strip span {
  min-height:66px;
  display:flex;
  align-items:center;
  justify-content:center;
  gap:9px;
  color:#a9bac4;
  border-right:1px solid rgba(255,255,255,.1);
  font-size:11px;
}

.capability-strip span:first-child {
  border-left:1px solid rgba(255,255,255,.1);
}

.capability-strip svg {
  color:var(--cyan);
}

/* core page sections */ .problem-section,
.outcome-section,
.journey-section,
.industries-section,
.process-section,
.why-section,
.evidence-section,
.faq-section,
.solutions-hub,
.industry-hub,
.outcomes-detail,
.included-section,
.connection-section,
.best-section,
.related-section,
.challenge-section,
.stack-section,
.industry-journey,
.compliance-section,
.how-page,
.roles-section,
.plan-section,
.engagement-section,
.resources-section,
.about-principles,
.boundary-section,
.contact-page,
.all-faqs,
.legal-section {
  padding:104px 0;
}

.problem-grid {
  display:grid;
  grid-template-columns:.8fr 1.25fr;
  align-items:center;
  gap:9vw;
}

.problem-copy>p:last-child {
  color:var(--muted);
  font-size:17px;
}

.handoff-visual {
  min-height:380px;
  display:grid;
  grid-template-columns:1fr 1fr;
  box-shadow:var(--shadow);
}

.scattered,
.connected {
  position:relative;
  overflow:hidden;
  min-height:380px;
  padding:25px;
}

.scattered {
  background:#e8e5dd;
}

.connected {
  color:#fff;
  background:var(--navy-2);
}

.scattered>span,
.connected>span {
  position:absolute;
  padding:8px 10px;
  border:1px solid #c4c8c4;
  background:rgba(255,255,255,.8);
  font:700 10px/1 var(--font-display);
}

.scattered span:nth-child(1) {
  top:60px;
  left:26px;
  transform:rotate(-4deg);
}

.scattered span:nth-child(2) {
  top:90px;
  right:23px;
  transform:rotate(4deg);
}

.scattered span:nth-child(3) {
  left:50px;
  bottom:103px;
  transform:rotate(3deg);
}

.scattered span:nth-child(4) {
  right:32px;
  bottom:61px;
  transform:rotate(-5deg);
}

.scattered small,
.connected small {
  position:absolute;
  bottom:24px;
  left:24px;
  color:#7a8589;
  font-size:9px;
  font-weight:800;
  letter-spacing:.14em;
}

.broken-line {
  width:70px;
  position:absolute;
  top:50%;
  left:50%;
  border-top:2px dashed #c1a68d;
  transform-origin:left;
}

.line-a {
  transform:rotate(32deg);
}

.line-b {
  transform:rotate(150deg);
}

.connect-core {
  width:78px;
  height:78px;
  position:absolute;
  inset:50% auto auto 50%;
  display:grid;
  place-items:center;
  color:var(--navy);
  background:var(--signal);
  transform:translate(-50%,-50%);
  font-weight:800;
}

.connected>span {
  color:#fff;
  border-color:rgba(56,206,232,.38);
  background:rgba(56,206,232,.07);
}

.connected span:nth-of-type(1) {
  top:45px;
  left:30px;
}

.connected span:nth-of-type(2) {
  top:75px;
  right:28px;
}

.connected span:nth-of-type(3) {
  bottom:82px;
  left:32px;
}

.connected span:nth-of-type(4) {
  bottom:55px;
  right:25px;
}

.connected:before,
.connected:after {
  content:'';
  position:absolute;
  inset:50% 23px auto;
  border-top:1px solid rgba(56,206,232,.35);
}

.connected:after {
  inset:23px auto;
  left:50%;
  bottom:23px;
  border:0;
  border-left:1px solid rgba(56,206,232,.35);
}

.outcome-grid {
  display:grid;
  grid-template-columns:repeat(4,1fr);
  border:1px solid var(--line);
}

.outcome-card {
  --accent:var(--cyan);
  min-height:430px;
  display:flex;
  flex-direction:column;
  padding:28px;
  border-right:1px solid var(--line);
  border-top:4px solid var(--accent);
}

.outcome-card:last-child {
  border-right:0;
}

.get-found {
  --accent:var(--cyan);
}

.get-chosen {
  --accent:#e6b900;
}

.get-customers {
  --accent:var(--orange);
}

.keep-customers {
  --accent:var(--green);
}

.outcome-top {
  display:flex;
  align-items:center;
  justify-content:space-between;
  margin-bottom:42px;
  color:var(--accent);
}

.outcome-top b {
  color:#a3acae;
  font-size:10px;
}

.outcome-card h3 {
  font-size:23px;
}

.outcome-card>p {
  min-height:82px;
  color:var(--muted);
  font-size:13px;
}

.outcome-card ul {
  margin:auto 0 0;
  padding:22px 0 0;
  border-top:1px solid var(--line);
  list-style:none;
}

.outcome-card li+li {
  margin-top:10px;
}

.outcome-card li a {
  display:flex;
  justify-content:space-between;
  gap:8px;
  font-size:12px;
  font-weight:600;
}

.outcome-footer {
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:20px;
  margin-top:28px;
}

.outcome-footer p {
  margin:0;
  color:var(--muted);
  font-size:13px;
}

.journey-loop {
  display:grid;
  grid-template-columns:repeat(4,1fr);
  border:1px solid rgba(255,255,255,.14);
}

.journey-step {
  min-height:190px;
  display:grid;
  grid-template-columns:30px 1fr;
  gap:14px;
  padding:24px;
  background:var(--navy);
  border-right:1px solid rgba(255,255,255,.14);
}

.journey-step:nth-child(n+5) {
  border-top:1px solid rgba(255,255,255,.14);
}

.journey-step:last-of-type {
  grid-column:2/4;
}

.journey-step>span {
  color:var(--cyan);
  font-size:10px;
  font-weight:800;
}

.journey-step strong {
  font:700 16px/1.2 var(--font-display);
}

.journey-step p {
  margin:14px 0 0;
  color:#9eb1bd;
  font-size:12px;
}

.foundation-band {
  display:flex;
  align-items:center;
  gap:12px;
  margin-top:14px;
  padding:16px 20px;
  color:var(--navy);
  background:var(--cyan);
}

.foundation-band span {
  font-size:10px;
  font-weight:800;
  letter-spacing:.13em;
}

.foundation-band p {
  margin:0 0 0 10px;
  font-size:13px;
}

.industry-grid {
  display:grid;
  grid-template-columns:repeat(3,1fr);
  border-top:1px solid #cdd2cf;
  border-left:1px solid #cdd2cf;
}

.industry-card {
  min-height:250px;
  position:relative;
  display:flex;
  flex-direction:column;
  justify-content:space-between;
  padding:25px;
  overflow:hidden;
  background:#fff;
  border-right:1px solid #cdd2cf;
  border-bottom:1px solid #cdd2cf;
}

.industry-card:after {
  content:'';
  width:120px;
  height:120px;
  position:absolute;
  right:-60px;
  top:-60px;
  border:1px solid rgba(7,20,33,.12);
  transform:rotate(45deg);
}

.industry-pattern-1:after {
  border-radius:50%;
  transform:none;
}

.industry-pattern-2:after {
  box-shadow:0 0 0 18px rgba(56,206,232,.06),0 0 0 36px rgba(56,206,232,.04);
}

.industry-number {
  color:#98a4a7;
  font-size:10px;
  font-weight:700;
}

.industry-card>div:nth-child(2) {
  margin-top:auto;
  padding-right:20px;
}

.industry-card>div p {
  margin:0 0 8px;
  color:#647379;
  font-size:9px;
  font-weight:800;
  letter-spacing:.11em;
  text-transform:uppercase;
}

.industry-card h3 {
  margin-bottom:9px;
  font-size:21px;
}

.industry-card>div span {
  display:block;
  color:var(--muted);
  font-size:12px;
  line-height:1.45;
}

.industry-card>a {
  width:34px;
  height:34px;
  position:absolute;
  right:22px;
  bottom:22px;
  display:grid;
  place-items:center;
  color:#fff;
  background:var(--navy);
}

.industry-card:hover>a {
  color:var(--navy);
  background:var(--signal);
}

.process-track {
  border-top:1px solid var(--line);
}

.process-item {
  display:grid;
  grid-template-columns:90px 1fr;
  gap:24px;
  padding:28px 0;
  border-bottom:1px solid var(--line);
}

.process-item>span {
  color:#99a3a5;
  font-size:10px;
  font-weight:700;
}

.process-item>div {
  display:grid;
  grid-template-columns:44px .55fr 1fr;
  align-items:center;
  gap:22px;
}

.process-item svg {
  color:#008ea7;
}

.process-item h3,
.process-item p {
  margin:0;
}

.process-item p {
  color:var(--muted);
}

.why-layout {
  display:grid;
  grid-template-columns:.72fr 1fr;
  gap:10vw;
}

.why-layout h2 {
  position:sticky;
  top:120px;
}

.why-list article {
  display:grid;
  grid-template-columns:42px 1fr;
  gap:22px;
  padding:25px 0;
  border-top:1px solid rgba(7,20,33,.22);
}

.why-list article:last-child {
  border-bottom:1px solid rgba(7,20,33,.22);
}

.why-list article>span {
  font-size:10px;
  font-weight:800;
}

.why-list h3 {
  margin-bottom:9px;
}

.why-list p {
  margin:0;
  color:#465157;
}

.evidence-grid {
  display:grid;
  grid-template-columns:.8fr 1.2fr;
  gap:8vw;
  align-items:center;
}

.evidence-copy>p:not(.eyebrow) {
  color:var(--muted);
}

.sample-dashboard {
  padding:28px;
  color:#fff;
  background:var(--navy-2);
  box-shadow:var(--shadow);
}

.sample-head {
  display:flex;
  justify-content:space-between;
  align-items:center;
}

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

.sample-head b,
.sample-head small {
  font-size:9px;
  letter-spacing:.12em;
}

.sample-head small {
  padding:5px 7px;
  color:var(--navy);
  background:var(--signal);
}

.sample-chart {
  height:205px;
  display:flex;
  align-items:end;
  gap:10px;
  margin:34px 0 24px;
  padding:0 18px;
  border-bottom:1px solid rgba(255,255,255,.18);
  background:repeating-linear-gradient(to bottom,transparent 0 50px,rgba(255,255,255,.05) 51px);
}

.sample-chart i {
  height:var(--h);
  flex:1;
  background:linear-gradient(var(--cyan),#11889d);
}

.sample-signals {
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:12px;
}

.sample-signals span {
  color:#8da3b0;
  font-size:10px;
  text-transform:uppercase;
}

.sample-signals b {
  display:block;
  margin-top:5px;
  color:#fff;
  font-size:12px;
  text-transform:none;
}

.faq-layout {
  display:grid;
  grid-template-columns:.72fr 1.25fr;
  gap:9vw;
}

.accordion {
  border-top:1px solid #bbc3c0;
}

.accordion details {
  border-bottom:1px solid #bbc3c0;
}

.accordion summary {
  min-height:74px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:18px;
  cursor:pointer;
  font:700 15px/1.35 var(--font-display);
  list-style:none;
}

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

.accordion summary svg {
  transition:transform .2s;
}

.accordion details[open] summary svg {
  transform:rotate(45deg);
}

.accordion details>p {
  max-width:760px;
  padding:0 42px 24px 0;
  color:var(--muted);
}

.accordion details>p a {
  color:#007f96;
  font-weight:700;
}

.closing-cta {
  min-height:400px;
  position:relative;
  display:flex;
  align-items:center;
  overflow:hidden;
}

.closing-layout {
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:70px;
  z-index:2;
}

.closing-layout h2 {
  max-width:770px;
  margin-bottom:18px;
}

.closing-layout p:not(.eyebrow) {
  max-width:690px;
  margin:0;
  color:#aebfc9;
}

.closing-layout>.button {
  flex:none;
}

.closing-orbit {
  width:460px;
  height:460px;
  position:absolute;
  right:-200px;
  top:-40px;
  border:1px solid rgba(56,206,232,.2);
  border-radius:50%;
  box-shadow:0 0 0 80px rgba(56,206,232,.025),0 0 0 160px rgba(56,206,232,.018);
}

/* hub and page templates */ .page-hero {
  padding:96px 0 88px;
  overflow:hidden;
}

.page-hero.compact {
  padding:70px 0;
}

.page-hero-grid {
  display:grid;
  grid-template-columns:1.15fr .55fr;
  gap:8vw;
  align-items:center;
}

.page-hero h1 {
  max-width:860px;
  margin-bottom:25px;
}

.page-hero-grid>div:first-child>p:not(.eyebrow) {
  max-width:750px;
  color:#afc0ca;
  font-size:17px;
}

.page-hero-mark {
  min-height:270px;
  position:relative;
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  gap:26px;
  padding:30px;
  text-align:center;
  border:1px solid rgba(56,206,232,.24);
  background:radial-gradient(circle,rgba(56,206,232,.1),transparent 64%);
}

.page-hero-mark:before,
.page-hero-mark:after {
  content:'';
  width:45px;
  height:45px;
  position:absolute;
  border-color:var(--cyan);
  border-style:solid;
}

.page-hero-mark:before {
  left:-1px;
  top:-1px;
  border-width:2px 0 0 2px;
}

.page-hero-mark:after {
  right:-1px;
  bottom:-1px;
  border-width:0 2px 2px 0;
}

.page-hero-mark svg {
  color:var(--signal);
}

.page-hero-mark span {
  color:#becbd3;
  font-size:10px;
  font-weight:700;
  line-height:1.5;
  letter-spacing:.11em;
  text-transform:uppercase;
}

.solution-group+.solution-group {
  margin-top:100px;
}

.group-heading {
  --accent:var(--cyan);
  display:grid;
  grid-template-columns:70px 1fr;
  gap:22px;
  margin-bottom:28px;
  padding-bottom:25px;
  border-bottom:4px solid var(--accent);
}

.group-heading>span {
  width:54px;
  height:54px;
  display:grid;
  place-items:center;
  color:var(--navy);
  background:var(--accent);
}

.group-heading p {
  max-width:750px;
  margin:7px 0 0;
  color:var(--muted);
}

.group-heading p:first-child {
  margin:0 0 7px;
  color:#6a767c;
  font-size:9px;
  font-weight:800;
  letter-spacing:.14em;
}

.group-heading h2 {
  margin:0;
  font-size:36px;
}

.service-grid {
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:0;
  background:transparent;
  border:0;
  border-top:1px solid var(--line);
  border-left:1px solid var(--line);
}

.service-card {
  --accent:var(--cyan);
  min-height:335px;
  display:flex;
  flex-direction:column;
  justify-content:space-between;
  padding:25px;
  background:#fff;
  border:0;
  border-right:1px solid var(--line);
  border-bottom:1px solid var(--line);
  border-top:3px solid var(--accent);
  overflow:visible;
}

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

.service-card:hover {
  color:var(--ink);
  background:#fff;
}

.service-card.compact {
  min-height:280px;
}

.card-index {
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
  color:var(--accent);
}

.card-index span {
  color:#6b777d;
  font-size:9px;
  font-weight:800;
  letter-spacing:.1em;
  text-transform:uppercase;
}

.service-card h3 {
  font-size:21px;
}

.service-card p {
  color:var(--muted);
  font-size:13px;
}

.service-card:hover p {
  color:var(--muted);
}

.service-card>a {
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding-top:16px;
  border-top:1px solid var(--line);
  font-size:12px;
  font-weight:700;
}

.service-card>a:hover {
  color:#007f97;
}

.breadcrumb-bar {
  background:#fff;
  border-bottom:1px solid var(--line);
}

.breadcrumb-bar .wrap {
  min-height:47px;
  display:flex;
  align-items:center;
  gap:10px;
  color:#6a777d;
  font-size:11px;
}

.breadcrumb-bar a {
  font-weight:700;
  color:var(--ink);
}

.detail-hero {
  padding:95px 0;
}

.detail-hero-grid {
  display:grid;
  grid-template-columns:1.15fr .7fr;
  align-items:center;
  gap:9vw;
}

.detail-hero h1 {
  margin-bottom:24px;
}

.detail-hero-grid>div:first-child>p:not(.eyebrow) {
  max-width:730px;
  color:#b3c2cb;
  font-size:17px;
}

.service-diagram {
  min-height:340px;
  position:relative;
  border:1px solid rgba(255,255,255,.14);
}

.service-diagram:before,
.service-diagram:after {
  content:'';
  position:absolute;
  inset:50% 35px auto;
  border-top:1px solid rgba(56,206,232,.3);
}

.service-diagram:after {
  inset:35px auto;
  left:50%;
  bottom:35px;
  border:0;
  border-left:1px solid rgba(56,206,232,.3);
}

.diagram-core {
  width:132px;
  height:132px;
  position:absolute;
  z-index:2;
  inset:50% auto auto 50%;
  display:grid;
  place-content:center;
  justify-items:center;
  gap:9px;
  padding:15px;
  text-align:center;
  color:var(--navy);
  background:var(--accent);
  transform:translate(-50%,-50%);
}

.diagram-core strong {
  font-size:12px;
  line-height:1.2;
}

.diagram-node {
  position:absolute;
  z-index:2;
  padding:7px 10px;
  color:#c3d0d7;
  background:var(--navy);
  border:1px solid rgba(56,206,232,.36);
  font-size:9px;
  font-weight:700;
}

.node-1 {
  top:28px;
  left:23px;
}

.node-2 {
  top:28px;
  right:23px;
}

.node-3 {
  bottom:28px;
  left:23px;
}

.node-4 {
  bottom:28px;
  right:23px;
}

.service-diagram small {
  position:absolute;
  left:50%;
  bottom:10px;
  transform:translateX(-50%);
  color:#718794;
  font-size:8px;
  font-weight:700;
  letter-spacing:.14em;
}

.outcome-list {
  display:grid;
  grid-template-columns:repeat(3,1fr);
  border-top:1px solid rgba(7,20,33,.25);
}

.outcome-list article {
  display:grid;
  grid-template-columns:30px 1fr;
  gap:16px;
  padding:27px 20px;
  border-bottom:1px solid rgba(7,20,33,.25);
  border-right:1px solid rgba(7,20,33,.25);
}

.outcome-list span {
  font-size:10px;
  font-weight:800;
}

.outcome-list p {
  margin:0;
  font:700 15px/1.35 var(--font-display);
}

.included-grid,
.best-grid {
  display:grid;
  grid-template-columns:.8fr 1.2fr;
  gap:9vw;
}

.check-list {
  display:grid;
  grid-template-columns:1fr 1fr;
  border-top:1px solid var(--line);
}

.check-list p {
  display:flex;
  gap:12px;
  margin:0;
  padding:18px 10px 18px 0;
  border-bottom:1px solid var(--line);
}

.check-list svg {
  color:var(--green);
  margin-top:3px;
}

.connection-grid {
  display:grid;
  grid-template-columns:1.15fr .8fr;
  gap:9vw;
  align-items:center;
}

.connection-grid>div:last-child>p:last-child {
  color:var(--muted);
}

.connection-visual {
  min-height:290px;
  display:flex;
  align-items:center;
  justify-content:center;
  padding:50px;
  background:#fff;
  box-shadow:var(--shadow);
}

.connection-visual div {
  width:100px;
  height:100px;
  display:grid;
  place-content:center;
  text-align:center;
  background:var(--navy);
  color:var(--cyan);
  font-size:10px;
  font-weight:800;
}

.connection-visual div span {
  display:block;
  margin-top:8px;
  color:#fff;
  font-size:12px;
}

.connection-visual i {
  flex:1;
  border-top:2px solid #e6b900;
}

.best-grid>div:last-child {
  border-top:1px solid rgba(255,255,255,.18);
}

.best-grid>div:last-child p {
  display:flex;
  gap:14px;
  margin:0;
  padding:18px 0;
  border-bottom:1px solid rgba(255,255,255,.18);
}

.best-grid svg {
  color:var(--cyan);
}

.detail-section-head {
  display:flex;
  justify-content:space-between;
  align-items:end;
  margin-bottom:45px;
}

.challenge-grid {
  display:grid;
  grid-template-columns:repeat(3,1fr);
  border-top:1px solid #c3c9c5;
  border-left:1px solid #c3c9c5;
}

.challenge-grid article {
  min-height:180px;
  padding:24px;
  background:#fff;
  border-right:1px solid #c3c9c5;
  border-bottom:1px solid #c3c9c5;
}

.challenge-grid span {
  color:#7c8a8e;
  font-size:10px;
  font-weight:800;
}

.challenge-grid p {
  margin:45px 0 0;
  font:700 16px/1.4 var(--font-display);
}

.stack-grid {
  display:grid;
  grid-template-columns:.75fr 1.1fr;
  gap:9vw;
}

.stack-grid>div:first-child>p:last-child {
  color:var(--muted);
}

.stack-list {
  border-top:1px solid var(--line);
}

.stack-list article {
  display:flex;
  align-items:center;
  gap:18px;
  padding:20px 0;
  border-bottom:1px solid var(--line);
}

.stack-list article>span {
  width:42px;
  height:42px;
  display:grid;
  place-items:center;
  color:var(--navy);
  background:#c9f5fb;
}

.stack-list p {
  margin:0;
  font-weight:600;
}

.industry-journey h2 {
  margin-bottom:48px;
}

.journey-story {
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
}

.journey-story span {
  min-height:94px;
  flex:1;
  display:flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  border:1px solid rgba(255,255,255,.18);
  font-size:12px;
  font-weight:700;
}

.journey-story span svg {
  color:var(--cyan);
}

.journey-story>svg {
  color:var(--signal);
}

.story-copy {
  max-width:850px;
  margin:34px 0 0;
  color:#aebec7;
}

.compliance-section .wrap {
  display:grid;
  grid-template-columns:50px 1fr;
  gap:25px;
}

.compliance-section .wrap>svg {
  margin-top:4px;
}

.compliance-section h2 {
  font-size:32px;
}

.compliance-section p:last-child {
  max-width:850px;
  margin:0;
  color:#465158;
}

.industry-group+.industry-group {
  margin-top:85px;
}

.industry-group-head {
  display:flex;
  justify-content:space-between;
  align-items:end;
  margin-bottom:28px;
}

.industry-group-head h2 {
  font-size:29px;
}

/* supporting pages and forms */ .phase-list {
  border-top:1px solid #c6ccc8;
}

.phase-list article {
  display:grid;
  grid-template-columns:90px 1fr 55px;
  gap:30px;
  align-items:center;
  padding:35px 0;
  border-bottom:1px solid #c6ccc8;
}

.phase-number {
  color:#7c898d;
  font-size:10px;
  font-weight:800;
}

.phase-list h2 {
  margin-bottom:10px;
  font-size:29px;
}

.phase-list p:last-child {
  max-width:700px;
  margin:0;
  color:var(--muted);
}

.phase-list article>span {
  width:50px;
  height:50px;
  display:grid;
  place-items:center;
  background:#fff;
}

.roles-grid {
  display:grid;
  grid-template-columns:.8fr 1.15fr;
  gap:9vw;
}

.roles-grid>div:last-child {
  border-top:1px solid var(--line);
}

.roles-grid article {
  display:grid;
  grid-template-columns:140px 1fr;
  gap:25px;
  padding:22px 0;
  border-bottom:1px solid var(--line);
}

.roles-grid strong {
  font-size:14px;
}

.roles-grid article p {
  margin:0;
  color:var(--muted);
}

.plan-grid,
.contact-page-grid {
  display:grid;
  grid-template-columns:.78fr 1.08fr;
  gap:9vw;
  align-items:start;
}

.plan-steps h2,
.contact-page-grid h2 {
  margin-bottom:35px;
  font-size:32px;
}

.plan-steps>p:not(.eyebrow) {
  display:grid;
  grid-template-columns:35px 1fr;
  gap:15px;
  padding:15px 0;
  margin:0;
  border-top:1px solid #c6ccc8;
  font-weight:600;
}

.plan-steps>p span,
.contact-expectations p span {
  color:#738085;
  font-size:10px;
  font-weight:800;
}

.verification-note {
  display:flex;
  gap:12px;
  margin-top:28px;
  padding:17px;
  color:#193747;
  background:#c9f5fb;
}

.verification-note p {
  margin:0;
  font-size:12px;
}

.growth-form {
  padding:36px;
  background:#fff;
  box-shadow:var(--shadow);
}

.form-head h2 {
  font-size:28px;
}

.growth-form label {
  display:flex;
  flex-direction:column;
  gap:7px;
  margin-top:17px;
  color:#4e5c63;
  font-size:10px;
  font-weight:700;
  letter-spacing:.02em;
  text-transform:none;
}

.growth-form input,
.growth-form textarea,
.growth-form select {
  width:100%;
  padding:12px 13px;
  color:var(--ink);
  background:#fff;
  border:1px solid #cbd2cf;
}

.growth-form input:focus,
.growth-form textarea:focus,
.growth-form select:focus {
  border-color:#008ea7;
  box-shadow:0 0 0 3px rgba(56,206,232,.15);
}

.form-row {
  gap:16px;
}

.checkbox-grid {
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:8px 14px;
  margin:11px 0 24px;
}

.checkbox-grid label {
  flex-direction:row;
  align-items:center;
  gap:8px;
  margin:0;
  font-weight:500;
}

.checkbox-grid input {
  width:auto;
}

.form-note {
  margin:16px 0 0;
  color:#6f7c82;
  font-size:11px;
}

.form-error {
  color:#aa332e;
}

.form-success {
  min-height:500px;
  display:flex;
  flex-direction:column;
  align-items:flex-start;
  justify-content:center;
  text-align:left;
}

.form-success>svg {
  color:var(--green);
}

.form-success h2 {
  font-size:32px;
}

.engagement-grid {
  display:grid;
  grid-template-columns:repeat(3,1fr);
  border-top:1px solid #c6ccc8;
  border-left:1px solid #c6ccc8;
}

.engagement-grid article {
  min-height:390px;
  display:flex;
  flex-direction:column;
  padding:28px;
  background:#fff;
  border-right:1px solid #c6ccc8;
  border-bottom:1px solid #c6ccc8;
}

.engagement-grid article>span {
  color:#7a878b;
  font-size:10px;
  font-weight:800;
}

.engagement-grid article>svg {
  margin:45px 0 28px;
  color:#008fa8;
}

.engagement-grid article p {
  color:var(--muted);
}

.engagement-grid article small {
  margin-top:auto;
  padding-top:20px;
  border-top:1px solid var(--line);
  color:#6e797e;
}

.engagement-grid a {
  display:flex;
  align-items:center;
  justify-content:space-between;
  margin-top:20px;
  font-size:11px;
  font-weight:700;
}

.commercial-note {
  max-width:850px;
  margin:30px auto 0;
  color:var(--muted);
  text-align:center;
  font-size:12px;
}

.resource-grid {
  display:grid;
  grid-template-columns:repeat(3,1fr);
  border-top:1px solid #c6ccc8;
  border-left:1px solid #c6ccc8;
}

.resource-grid article {
  min-height:360px;
  position:relative;
  display:flex;
  flex-direction:column;
  padding:28px;
  background:#fff;
  border-right:1px solid #c6ccc8;
  border-bottom:1px solid #c6ccc8;
}

.resource-grid article>div {
  display:flex;
  align-items:center;
  justify-content:space-between;
  color:#008fa8;
}

.resource-grid article>div span {
  color:#7b888c;
  font-size:9px;
  font-weight:800;
  letter-spacing:.12em;
}

.resource-grid h2 {
  margin-top:55px;
  font-size:24px;
}

.resource-grid p {
  color:var(--muted);
}

.resource-grid small {
  margin-top:auto;
  color:#7a878b;
}

.resource-grid b {
  position:absolute;
  right:0;
  bottom:0;
  padding:7px 10px;
  color:var(--navy);
  background:var(--signal);
  font-size:9px;
  letter-spacing:.08em;
}

.resource-note {
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:25px;
  margin-top:28px;
  padding:22px;
  color:#b7c4cb;
  background:var(--navy);
}

.resource-note p {
  max-width:720px;
  margin:0;
}

.principle-grid {
  display:grid;
  grid-template-columns:repeat(5,1fr);
  border-top:1px solid var(--line);
  border-left:1px solid var(--line);
}

.principle-grid article {
  min-height:280px;
  padding:23px;
  border-right:1px solid var(--line);
  border-bottom:1px solid var(--line);
}

.principle-grid span {
  color:#859195;
  font-size:10px;
  font-weight:800;
}

.principle-grid h3 {
  margin-top:45px;
}

.principle-grid p {
  color:var(--muted);
  font-size:12px;
}

.boundary-section .wrap {
  display:grid;
  grid-template-columns:.7fr 1.3fr;
  gap:8vw;
}

.boundary-section h2 {
  font-size:35px;
}

.boundary-section>.wrap>p:last-child {
  color:#465158;
  font-size:17px;
}

.contact-expectations {
  border-top:1px solid #c6ccc8;
}

.contact-expectations p {
  display:grid;
  grid-template-columns:35px 1fr;
  gap:15px;
  margin:0;
  padding:18px 0;
  border-bottom:1px solid #c6ccc8;
}

.all-faqs>.wrap>section+section {
  margin-top:78px;
}

.faq-group-title {
  --accent:var(--cyan);
  display:flex;
  align-items:center;
  gap:15px;
  padding-bottom:18px;
  border-bottom:4px solid var(--accent);
}

.faq-group-title h2 {
  margin:0;
  font-size:27px;
}

.faq-group-title svg {
  color:var(--accent);
}

.all-faqs summary span {
  display:flex;
  flex-direction:column;
  gap:5px;
}

.all-faqs summary small {
  color:#748087;
  font:500 10px/1 var(--font-body);
}

.narrow {
  max-width:820px;
}

.draft-notice {
  display:grid;
  grid-template-columns:45px 1fr;
  gap:24px;
  margin-bottom:35px;
  padding:32px;
  background:#fff;
  border-top:4px solid #e6b900;
  box-shadow:var(--shadow);
}

.draft-notice svg {
  color:var(--orange);
}

.draft-notice h2 {
  font-size:25px;
}

.draft-notice p {
  margin:0;
  color:var(--muted);
}

.not-found {
  min-height:calc(100vh - 116px);
  display:flex;
  align-items:center;
}

.not-found p:not(.eyebrow) {
  color:#afc0ca;
}

/* footer */ .site-footer {
  color:#aebdc6;
  background:#04101a;
}

.footer-main {
  display:grid;
  grid-template-columns:1.65fr repeat(3,1fr);
  gap:60px;
  padding-top:78px;
  padding-bottom:65px;
}

.footer-brand>p {
  max-width:360px;
  margin:24px 0;
  font-size:13px;
}

.footer-main h4 {
  margin-bottom:22px;
  color:#fff;
  font-size:10px;
  letter-spacing:.13em;
  text-transform:uppercase;
}

.footer-main>div:not(.footer-brand) {
  display:flex;
  flex-direction:column;
  gap:12px;
}

.footer-main>div:not(.footer-brand) a {
  font-size:12px;
}

.footer-main a:hover {
  color:var(--signal);
}

.footer-bottom {
  min-height:70px;
  color:#aebdc6;
}

.footer-bottom>div {
  display:flex;
  gap:20px;
}

.toast {
  left:auto;
  right:24px;
  bottom:24px;
  transform:translateY(10px);
  color:#fff;
  background:var(--navy);
}

.toast.show {
  transform:none;
}

/* workbook CMS */ .login-brand,
.cms-sidebar {
  background:var(--navy);
}

.login-brand h1 em,
.cms-welcome h2 em {
  color:var(--signal);
}

.login-card .button-navy {
  color:#fff;
  background:var(--navy);
}

.login-icon {
  color:var(--navy);
  background:var(--signal);
}

.cms-shell {
  grid-template-columns:245px 1fr;
  color:#172731;
  background:#eef0ed;
}

.cms-sidebar {
  padding:0;
}

.cms-brand {
  min-height:93px;
  display:flex;
  align-items:center;
  padding:0 25px;
  border-bottom:1px solid rgba(255,255,255,.1);
}

.cms-sidebar nav {
  display:block;
  padding:22px 12px;
}

.cms-sidebar nav button,
.cms-sidebar-bottom button,
.cms-sidebar-bottom a {
  min-height:45px;
  padding:0 13px;
  color:#91a5b0;
}

.cms-sidebar nav button.active {
  color:var(--navy);
  background:var(--signal);
  font-weight:700;
}

.cms-sidebar nav button.active .icon {
  color:var(--navy);
}

.cms-sidebar nav button b {
  min-width:20px;
  width:auto;
  height:auto;
  border-radius:0;
  margin-left:auto;
  padding:3px 5px;
  color:var(--navy);
  background:var(--cyan);
}

.cms-sidebar nav button b.warn {
  background:#f0aa43;
}

.cms-sidebar-bottom {
  padding:13px 12px 20px;
}

.cms-header {
  min-height:93px;
  height:auto;
  justify-content:flex-start;
  gap:18px;
  padding:0 34px;
}

.cms-header>div:nth-child(2)>span {
  color:#76838a;
  font-size:9px;
  font-weight:700;
  letter-spacing:.12em;
}

.cms-header h1 {
  margin:5px 0 0;
  font-size:23px;
}

.cms-user {
  margin-left:auto;
}

.cms-user>span {
  border-radius:0;
  color:var(--navy);
  background:#c9f5fb;
}

.cms-content {
  max-width:none;
  padding:32px;
}

.cms-welcome {
  min-height:250px;
  margin:0;
  padding:38px;
  background:var(--navy-2);
}

.cms-welcome:after {
  border-color:rgba(56,206,232,.18);
}

.cms-welcome h2 {
  font-size:42px;
}

.cms-welcome>div>p:last-child {
  max-width:570px;
  color:#9fb2bd;
  font-size:14px;
}

.cms-welcome .button {
  color:var(--navy);
  background:var(--signal);
}

.cms-stat-grid {
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:15px;
  margin:16px 0;
}

.cms-stat-grid article {
  min-height:145px;
  padding:20px;
  background:#fff;
  border:1px solid var(--line);
  border-top:3px solid #d7dcda;
}

.cms-stat-grid article>span {
  width:34px;
  height:34px;
  display:grid;
  place-items:center;
  color:#007f97;
  background:#e1f7fa;
}

.cms-stat-grid article>p {
  margin:17px 0 3px;
  color:#6f7c82;
  font-size:10px;
}

.cms-stat-grid strong {
  margin-right:7px;
  font:800 27px/1 var(--font-display);
}

.cms-stat-grid small {
  color:#829096;
  font-size:9px;
}

.cms-stat-grid .attention {
  border-top-color:#e39a38;
}

.cms-stat-grid .ready {
  border-top-color:var(--green);
}

.cms-dashboard-grid {
  grid-template-columns:.85fr 1.15fr;
  gap:16px;
}

.cms-card-head {
  min-height:76px;
  height:auto;
  padding:17px 21px;
}

.cms-card-head h3 {
  margin:4px 0 0;
  font-size:17px;
}

.coverage-list {
  padding:5px 21px;
}

.coverage-list p {
  display:flex;
  justify-content:space-between;
  gap:20px;
  margin:0;
  padding:16px 0;
  border-bottom:1px solid #e2e5e3;
  font-size:12px;
}

.coverage-list p:last-child {
  border:0;
}

.coverage-list b {
  color:#0b879d;
}

.cms-page-head {
  min-height:70px;
  align-items:center;
  gap:30px;
  margin-bottom:20px;
}

.cms-page-head>p {
  max-width:760px;
  color:#657279;
  font-size:14px;
}

.cms-editor-grid {
  grid-template-columns:1.1fr .9fr;
  gap:18px;
}

.cms-form-card {
  padding:26px;
}

.cms-guidance {
  display:flex;
  gap:14px;
  margin-top:18px;
  padding:20px;
  color:#213a46;
  background:#c9f5fb;
}

.cms-guidance p {
  margin:5px 0 0;
  font-size:11px;
}

.collection-tools {
  min-height:72px;
  height:auto;
}

.collection-head,
.collection-row {
  grid-template-columns:1.25fr 1.5fr 110px 70px;
}

.collection-name>span {
  color:#087f94;
  background:#e4f6f8;
}

.status-toggle.live {
  color:#1b805f;
}

.status-toggle.live i {
  background:var(--green);
}

.readiness-badge {
  display:flex;
  align-items:baseline;
  gap:6px;
  padding:10px 14px;
  color:#9a5d14;
  background:#fff1db;
}

.readiness-badge.ready {
  color:#167152;
  background:#dcf5e9;
}

.readiness-badge strong {
  font:800 17px/1 var(--font-display);
}

.readiness-badge span {
  font-size:10px;
}

.verification-list {
  display:grid;
  gap:11px;
}

.verification-item {
  display:grid;
  grid-template-columns:42px 1fr;
  gap:15px;
  padding:20px;
  border-left:3px solid #e4a04a;
}

.verification-item.verified {
  border-left-color:var(--green);
}

.verification-item>span {
  width:36px;
  height:36px;
  display:grid;
  place-items:center;
  color:#a46518;
  background:#fff0d8;
}

.verification-item.verified>span {
  color:#167252;
  background:#dcf5e9;
}

.verification-item .eyebrow {
  margin-bottom:7px;
}

.verification-item h3 {
  margin-bottom:14px;
  font-size:15px;
}

.verification-fields {
  display:grid;
  grid-template-columns:160px .65fr 1.2fr;
  gap:13px;
}

.verification-fields label {
  display:flex;
  flex-direction:column;
  gap:7px;
  margin:0;
  color:#4e5c63;
  font-size:10px;
  font-weight:700;
}

.verification-fields input,
.verification-fields select {
  padding:10px;
  border:1px solid var(--line);
  background:#fff;
}

.sticky-save {
  position:sticky;
  bottom:20px;
  justify-self:end;
  box-shadow:0 10px 30px rgba(4,17,28,.2);
}

.lead-row {
  grid-template-columns:35px 1fr 60px 65px;
  gap:12px;
  padding:0 20px;
}

.lead-row>span {
  width:32px;
  height:32px;
  display:grid;
  place-items:center;
  color:#087f94;
  background:#e2f7f9;
  font-size:9px;
  font-weight:800;
}

.lead-row strong {
  font-size:11px;
}

.lead-row small,
.lead-row time {
  color:#7d898e;
  font-size:9px;
}

.lead-row i {
  padding:4px 6px;
  font-size:9px;
  font-style:normal;
  text-align:center;
  background:#e5e9e7;
}

.lead-row i.new {
  color:#84600c;
  background:#fff0bb;
}

.lead-row i.contacted {
  color:#0b7488;
  background:#d9f4f7;
}

.cms-modal {
  width:min(640px,calc(100vw - 32px));
  height:auto;
  max-height:calc(100vh - 40px);
  right:20px;
  top:20px;
  padding:0;
}

.modal-head {
  position:sticky;
  z-index:2;
  top:0;
  min-height:84px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:20px;
  padding:20px 24px;
  background:#fff;
  border-bottom:1px solid var(--line);
}

.modal-head .eyebrow {
  margin-bottom:6px;
}

.modal-head h2 {
  margin:0;
  font-size:22px;
}

.modal-head button {
  padding:8px;
  background:transparent;
  border:0;
}

.cms-modal form,
.lead-detail {
  padding:24px;
}

.cms-modal form {
  padding-top:10px;
}

.lead-detail-grid p {
  padding:13px;
  background:#f2f4f2;
}

.detail-tags span {
  color:#14667a;
  background:#def5f8;
}

.lead-message {
  background:#f4f5f3;
  border:1px solid var(--line);
}

/* motion */ .reveal {
  opacity:1;
  transform:none;
  animation:rise .65s both ease-out;
  animation-delay:var(--delay,0ms);
}

.delay-1 {
  animation-delay:.12s;
}

@keyframes rise {
  from {
    opacity:0;
    transform:translateY(16px);
  }

  to {
    opacity:1;
    transform:none;
  }

}

@media (max-width:1100px) {
  .desktop-nav {
    gap:0;
  }

  .nav-item>a {
    padding-inline:9px;
  }

  .header-cta {
    padding-inline:14px;
  }

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

  .outcome-card:nth-child(2) {
    border-right:0;
  }

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

  .cms-shell {
    grid-template-columns:210px 1fr;
  }

  .cms-content {
    padding:24px;
  }

}

@media (max-width:900px) {
  .wrap {
    width:min(100% - 36px,760px);
  }

  .campaign-bar span {
    display:none;
  }

  .desktop-nav,
  .header-cta {
    display:none;
  }

  .mobile-menu-button {
    display:block;
  }

  .site-header {
    height:72px;
    padding-inline:18px;
  }

  .mobile-nav {
    position:absolute;
    top:72px;
    left:0;
    right:0;
    max-height:calc(100vh - 72px);
    overflow:auto;
    padding:12px 18px 25px;
    color:#fff;
    background:var(--navy);
    border-top:1px solid rgba(255,255,255,.12);
  }

  .mobile-nav.open {
    display:flex;
    flex-direction:column;
  }

  .mobile-nav a {
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:17px 0;
    border-bottom:1px solid rgba(255,255,255,.12);
    font-weight:700;
  }

  .hero-layout,
  .page-hero-grid,
  .detail-hero-grid {
    grid-template-columns:1fr;
  }

  .hero-layout {
    min-height:0;
  }

  .hero-media {
    min-height:500px;
  }

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

  .problem-grid,
  .why-layout,
  .evidence-grid,
  .faq-layout,
  .included-grid,
  .connection-grid,
  .best-grid,
  .stack-grid,
  .roles-grid,
  .plan-grid,
  .contact-page-grid,
  .boundary-section .wrap {
    grid-template-columns:1fr;
    gap:55px;
  }

  .journey-loop {
    grid-template-columns:repeat(2,1fr);
  }

  .journey-step:nth-child(n+3) {
    border-top:1px solid rgba(255,255,255,.14);
  }

  .journey-step:last-of-type {
    grid-column:auto;
  }

  .industry-grid,
  .service-grid,
  .challenge-grid {
    grid-template-columns:1fr 1fr;
  }

  .why-layout h2 {
    position:static;
  }

  .service-diagram {
    max-width:520px;
    width:100%;
    margin:auto;
  }

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

  .engagement-grid,
  .resource-grid {
    grid-template-columns:1fr;
  }

  .engagement-grid article,
  .resource-grid article {
    min-height:300px;
  }

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

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

  .footer-main>div:last-child {
    grid-column:2;
  }

  .cms-shell {
    display:block;
  }

  .cms-sidebar {
    width:245px;
  }

  .cms-stat-grid {
    grid-template-columns:1fr 1fr;
  }

}

@media (max-width:640px) {
  .wrap {
    width:calc(100% - 30px);
  }

  body {
    font-size:15px;
  }

  h1 {
    font-size:clamp(41px,13vw,64px);
  }

  h2 {
    font-size:clamp(32px,9vw,48px);
  }

  .campaign-bar {
    height:30px;
  }

  .home-hero {
    padding-top:52px;
  }

  .hero-layout {
    gap:42px;
    padding-bottom:55px;
  }

  .hero-media {
    min-height:400px;
  }

  .hero-data-card {
    left:10px;
    bottom:20px;
  }

  .hero-notification {
    right:10px;
    top:15px;
  }

  .capability-strip {
    width:100%;
    grid-template-columns:1fr 1fr;
  }

  .capability-strip span {
    min-height:55px;
  }

  .section-head {
    display:block;
    margin-bottom:38px;
  }

  .section-head>p {
    margin-top:20px;
  }

  .problem-section,
  .outcome-section,
  .journey-section,
  .industries-section,
  .process-section,
  .why-section,
  .evidence-section,
  .faq-section,
  .solutions-hub,
  .industry-hub,
  .outcomes-detail,
  .included-section,
  .connection-section,
  .best-section,
  .related-section,
  .challenge-section,
  .stack-section,
  .industry-journey,
  .compliance-section,
  .how-page,
  .roles-section,
  .plan-section,
  .engagement-section,
  .resources-section,
  .about-principles,
  .boundary-section,
  .contact-page,
  .all-faqs,
  .legal-section {
    padding:72px 0;
  }

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

  .scattered,
  .connected {
    min-height:300px;
  }

  .outcome-grid,
  .industry-grid,
  .service-grid,
  .challenge-grid,
  .outcome-list,
  .check-list,
  .principle-grid {
    grid-template-columns:1fr;
  }

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

  .journey-loop {
    grid-template-columns:1fr;
  }

  .journey-step {
    min-height:145px;
    border-right:0;
    border-top:1px solid rgba(255,255,255,.14);
  }

  .process-item {
    grid-template-columns:35px 1fr;
  }

  .process-item>div {
    grid-template-columns:35px 1fr;
  }

  .process-item>div p {
    grid-column:2;
  }

  .sample-signals {
    grid-template-columns:1fr;
  }

  .closing-layout,
  .resource-note {
    align-items:flex-start;
    flex-direction:column;
  }

  .closing-cta {
    min-height:450px;
    padding:70px 0;
  }

  .page-hero,
  .detail-hero {
    padding:72px 0;
  }

  .page-hero-mark {
    min-height:220px;
  }

  .group-heading {
    grid-template-columns:50px 1fr;
  }

  .group-heading>span {
    width:44px;
    height:44px;
  }

  .connection-visual {
    padding:25px 12px;
  }

  .connection-visual div {
    width:80px;
    height:80px;
  }

  .detail-section-head,
  .industry-group-head {
    display:block;
  }

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

  .journey-story>svg {
    margin:auto;
    transform:rotate(90deg);
  }

  .phase-list article {
    grid-template-columns:35px 1fr;
    gap:17px;
  }

  .phase-list article>span {
    display:none;
  }

  .roles-grid article {
    grid-template-columns:1fr;
    gap:8px;
  }

  .form-row,
  .checkbox-grid {
    grid-template-columns:1fr;
  }

  .growth-form {
    padding:24px;
  }

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

  .footer-brand {
    grid-column:1/-1;
  }

  .footer-main>div:last-child {
    grid-column:auto;
  }

  .footer-bottom {
    align-items:flex-start;
    flex-direction:column;
    padding:20px 0;
  }

  .footer-bottom>div {
    flex-wrap:wrap;
  }

  .cms-header {
    padding:0 16px;
  }

  .cms-content {
    padding:15px;
  }

  .cms-welcome {
    align-items:flex-start;
    flex-direction:column;
    padding:28px 22px;
  }

  .cms-stat-grid {
    grid-template-columns:1fr 1fr;
    gap:9px;
  }

  .cms-stat-grid article {
    min-height:130px;
    padding:15px;
  }

  .cms-dashboard-grid,
  .cms-editor-grid {
    grid-template-columns:1fr;
  }

  .cms-page-head {
    align-items:flex-start;
    flex-direction:column;
  }

  .cms-page-head .button {
    width:100%;
  }

  .collection-tools {
    align-items:flex-start;
  }

  .collection-head {
    display:none;
  }

  .collection-row {
    grid-template-columns:1fr 85px;
    gap:8px;
    padding:14px;
  }

  .collection-row>p {
    display:block;
    grid-column:1/-1;
    grid-row:2;
  }

  .collection-row .status-toggle {
    display:flex;
  }

  .row-actions {
    display:block;
    grid-column:2;
    grid-row:2;
  }

  .verification-fields {
    grid-template-columns:1fr;
  }

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

  .lead-row {
    grid-template-columns:35px 1fr 55px;
  }

  .lead-row time {
    display:none;
  }

  .lead-detail-grid {
    grid-template-columns:1fr;
  }

}

@media (prefers-reduced-motion:reduce) {
  .reveal {
    animation:none;
  }

}

/* Final layout safeguards */ .hero-layout>*,
.page-hero-grid>*,
.detail-hero-grid>*,
.section-head>* {
  min-width:0;
}

.tone-get-found {
  --accent:var(--cyan);
}

.tone-get-chosen {
  --accent:#e6b900;
}

.tone-get-customers {
  --accent:var(--orange);
}

.tone-keep-customers {
  --accent:var(--green);
}

.mega-menu {
  width:min(1180px,calc(100vw - 48px));
  grid-template-columns:1.2fr repeat(4,minmax(0,1fr));
}

.mega-group {
  padding:27px 22px;
}

.growth-form,
.growth-form label,
.form-row>* {
  min-width:0;
}

.form-row {
  grid-template-columns:minmax(0,1fr) minmax(0,1fr);
}

.form-row>label {
  width:auto;
}

.growth-form input,
.growth-form textarea,
.growth-form select {
  width:auto!important;
  min-width:0;
  max-width:100%;
  align-self:stretch;
  box-sizing:border-box;
}

.package-grid {
  display:grid;
  grid-template-columns:repeat(4,minmax(0,1fr));
  align-items:stretch;
  border-top:1px solid #c6ccc8;
  border-left:1px solid #c6ccc8;
}

.package-card {
  min-width:0;
  min-height:720px;
  display:flex;
  flex-direction:column;
  padding:26px;
  background:#fff;
  border-right:1px solid #c6ccc8;
  border-bottom:1px solid #c6ccc8;
  border-top:4px solid var(--cyan);
}

.package-card:nth-child(2) {
  border-top-color:var(--signal);
}

.package-card:nth-child(3) {
  border-top-color:var(--orange);
}

.package-card:nth-child(4) {
  border-top-color:var(--green);
}

.package-card.featured {
  position:relative;
  color:#fff;
  background:var(--navy);
  box-shadow:0 22px 55px rgba(4,17,28,.18);
  transform:translateY(-12px);
}

.package-card-head {
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
  color:#7b898e;
  font:800 9px/1 var(--font-display);
  letter-spacing:.12em;
}

.package-card-head b {
  padding:6px 8px;
  color:var(--navy);
  background:#d9f7fa;
  font-size:8px;
  letter-spacing:.09em;
}

.package-card.featured .package-card-head {
  color:#8da3af;
}

.package-card.featured .package-card-head b {
  background:var(--signal);
}

.package-icon {
  width:46px;
  height:46px;
  display:grid;
  place-items:center;
  margin:38px 0 25px;
  color:var(--navy);
  background:#c9f5fb;
}

.package-card.featured .package-icon {
  background:var(--signal);
}

.package-card h2 {
  display:flex;
  flex-direction:column;
  gap:4px;
  margin:0;
  font-size:34px;
}

.package-card h2 small {
  color:#7a888d;
  font:800 9px/1 var(--font-display);
  letter-spacing:.18em;
}

.package-card.featured h2 small {
  color:var(--cyan);
}

.package-tagline {
  min-height:68px;
  margin:13px 0 24px;
  color:var(--muted);
  font-size:13px;
}

.package-card.featured .package-tagline {
  color:#b3c2ca;
}

.package-price {
  padding:18px 0;
  border-top:1px solid var(--line);
  border-bottom:1px solid var(--line);
}

.package-card.featured .package-price {
  border-color:rgba(255,255,255,.16);
}

.package-price span,
.package-price small {
  display:block;
  color:#76848a;
  font:700 8px/1.2 var(--font-display);
  letter-spacing:.12em;
}

.package-price strong {
  display:block;
  margin:7px 0 5px;
  font:800 34px/1 var(--font-display);
  letter-spacing:-.05em;
}

.package-card.featured .package-price span,
.package-card.featured .package-price small {
  color:#91a6b2;
}

.package-setup {
  margin:10px 0 24px;
  color:#6c7a80;
  font-size:10px;
}

.package-card.featured .package-setup {
  color:#8fa4af;
}

.package-best {
  min-height:105px;
  padding:15px;
  background:#f0f2ef;
}

.package-card.featured .package-best {
  background:rgba(255,255,255,.07);
}

.package-best>span {
  color:#77858a;
  font:800 8px/1 var(--font-display);
  letter-spacing:.13em;
}

.package-best p {
  margin:8px 0 0!important;
  color:var(--ink)!important;
  font-size:12px!important;
  line-height:1.45;
}

.package-card.featured .package-best p {
  color:#e4edf1!important;
}

.package-card ul {
  margin:22px 0 28px;
  padding:0;
  list-style:none;
}

.package-card li {
  display:grid;
  grid-template-columns:17px 1fr;
  gap:8px;
  padding:9px 0;
  border-bottom:1px solid #e3e6e3;
  color:#4f5d63;
  font-size:11px;
  line-height:1.4;
}

.package-card li svg {
  margin-top:1px;
  color:#078ba2;
}

.package-card.featured li {
  color:#bdcbd2;
  border-color:rgba(255,255,255,.12);
}

.package-card.featured li svg {
  color:var(--signal);
}

.package-card>.button {
  width:100%;
  margin-top:auto;
}

.package-card.featured .button-outline {
  color:#fff;
  border-color:rgba(255,255,255,.25);
}

.pricing-boundary {
  display:grid;
  grid-template-columns:.8fr 1.2fr;
  gap:8vw;
  margin-top:55px;
  padding:45px;
  color:#fff;
  background:var(--navy-2);
}

.pricing-boundary h2 {
  font-size:34px;
}

.pricing-boundary>div:last-child {
  border-top:1px solid rgba(255,255,255,.16);
}

.pricing-boundary>div:last-child p {
  display:grid;
  grid-template-columns:22px 1fr;
  gap:13px;
  margin:0;
  padding:18px 0;
  border-bottom:1px solid rgba(255,255,255,.16);
  color:#b7c6ce;
  font-size:13px;
}

.pricing-boundary>div:last-child svg {
  color:var(--cyan);
  margin-top:2px;
}

.pricing-boundary strong {
  color:#fff;
}

.form-package-context {
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:16px;
  margin:20px 0 4px;
  padding:13px 15px;
  color:#173240;
  background:#c9f5fb;
}

.form-package-context strong {
  font:800 12px/1.2 var(--font-display);
}

.form-package-context span {
  font-size:9px;
  text-align:right;
}

@media (max-width:1100px) {
  .package-grid {
    grid-template-columns:repeat(2,minmax(0,1fr));
  }

  .package-card {
    min-height:650px;
  }

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

}

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

  .package-card {
    min-height:0;
  }

  .pricing-boundary {
    grid-template-columns:1fr;
    gap:30px;
    padding:28px 22px;
  }

  .form-package-context {
    align-items:flex-start;
    flex-direction:column;
  }

  .form-package-context span {
    text-align:left;
  }

}

@media (max-width:640px) {
  body {
    overflow-x:hidden;
  }

  h1 {
    font-size:clamp(40px,12.5vw,50px);
    overflow-wrap:break-word;
  }

  .hero-copy,
  .hero-copy h1,
  .hero-copy>p {
    max-width:100%;
  }

  .button-row {
    max-width:100%;
  }

  .mobile-menu-button {
    position:relative;
    z-index:2;
    flex:0 0 auto;
  }

}

/* White, blue and green brand system + industry experience */ :root {
  --navy:#08284b;
  --navy-2:#0a315d;
  --navy-3:#104477;
  --ink:#102b45;
  --muted:#52697b;
  --line:#d8e5ec;
  --paper:#f3f9fc;
  --signal:#34d399;
  --cyan:#1877cf;
  --green:#18a874;
  --shadow:0 24px 70px rgba(12,64,105,.13);
}

body {
  background:#fff;
}

.paper-section,
.bluewash-section {
  background:#f3f9fc;
}

.signal-section {
  background:var(--signal);
}

.button-signal {
  color:#062642;
  background:var(--signal);
  box-shadow:0 10px 26px rgba(24,168,116,.18);
}

.button-signal:hover {
  background:#6ce2b6;
  transform:translateY(-1px);
}

.eyebrow.cyan,
.section-head-dark .eyebrow {
  color:var(--cyan);
}

.campaign-bar {
  color:#fff;
  background:#1069b8;
}

.campaign-bar a {
  color:#fff;
  border-bottom-color:rgba(255,255,255,.7);
}

.site-header {
  z-index:20;
  color:var(--ink);
  background:#fff;
  border-bottom:1px solid #dce8ef;
  box-shadow:0 4px 20px rgba(12,64,105,.05);
}

.brand-dark {
  color:var(--navy);
}

.brand-dark .brand-words small {
  color:var(--green);
}

.nav-item>a {
  color:#28465d;
}

.nav-item:hover>a {
  color:#087a59;
}

.mobile-menu-button {
  color:var(--navy);
}

.mega-menu {
  border-top-color:var(--green);
}

.mega-intro {
  background:var(--navy);
}

.mega-intro a {
  color:#73e6bc;
}

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

.home-hero:before {
  border-color:rgba(24,119,207,.12);
  box-shadow:0 0 0 70px rgba(24,119,207,.025),0 0 0 150px rgba(52,211,153,.025);
}

.hero-copy>p:not(.eyebrow) {
  color:var(--muted);
}

.home-hero .text-link {
  color:var(--navy);
}

.hero-media:after {
  border-color:rgba(8,40,75,.12);
}

.hero-notification {
  color:#fff;
  background:var(--cyan);
}

.hero-notification small {
  color:#d9efff;
}

.capability-strip {
  border-color:#dce8ef;
  background:#f5fafc;
}

.capability-strip span {
  color:#3d5c72;
  border-color:#dce8ef;
}

.capability-strip span:first-child {
  border-color:#dce8ef;
}

.capability-strip svg {
  color:var(--green);
}

.page-hero {
  color:var(--ink);
  background:#fff;
  border-bottom:1px solid #dce8ef;
}

.page-hero-grid>div:first-child>p:not(.eyebrow) {
  color:var(--muted);
}

.page-hero .text-link {
  color:var(--navy);
}

.page-hero-mark {
  border-color:rgba(24,119,207,.22);
  background:radial-gradient(circle at center,rgba(24,119,207,.09),rgba(52,211,153,.035) 60%,transparent 70%);
}

.page-hero-mark:before,
.page-hero-mark:after {
  border-color:var(--green);
}

.page-hero-mark svg {
  color:var(--cyan);
}

.page-hero-mark span {
  color:#42627a;
}

.closing-cta {
  background:linear-gradient(120deg,var(--navy),#0c3e70);
}

.closing-orbit {
  border-color:rgba(52,211,153,.25);
  box-shadow:0 0 0 80px rgba(52,211,153,.035),0 0 0 160px rgba(24,119,207,.025);
}

.industries-section {
  overflow:hidden;
}

.industries-section .section-head {
  margin-bottom:38px;
}

.industry-rail-shell {
  width:100%;
  overflow:hidden;
  padding:8px 0 18px;
}

.industry-rail-track {
  width:max-content;
  display:flex;
  gap:18px;
  padding-left:24px;
  animation:industryRail 75s linear infinite;
}

.industry-rail-shell:hover .industry-rail-track,
.industry-rail-shell:focus-within .industry-rail-track {
  animation-play-state:paused;
}

.industry-rail-card {
  width:300px;
  height:390px;
  position:relative;
  flex:none;
  overflow:hidden;
  color:#fff;
  background:var(--navy);
  box-shadow:0 16px 40px rgba(12,64,105,.12);
}

.industry-rail-card:after {
  content:'';
  position:absolute;
  inset:35% 0 0;
  background:linear-gradient(transparent,rgba(5,31,56,.94));
}

.industry-rail-card img {
  width:100%;
  height:100%;
  object-fit:cover;
  transition:transform .45s ease;
}

.industry-rail-card>span {
  position:absolute;
  z-index:2;
  left:22px;
  right:22px;
  bottom:22px;
}

.industry-rail-card small {
  display:block;
  margin-bottom:8px;
  color:#8ee9c8;
  font-size:9px;
  font-weight:800;
  letter-spacing:.13em;
  text-transform:uppercase;
}

.industry-rail-card strong {
  display:block;
  font:800 21px/1.15 var(--font-display);
}

.industry-rail-card b {
  display:flex;
  align-items:center;
  gap:8px;
  margin-top:17px;
  color:#fff;
  font-size:11px;
}

.industry-rail-card:hover img {
  transform:scale(1.035);
}

@keyframes industryRail {
  to {
    transform:translateX(calc(-50% - 9px));
  }

}

.industry-promise-row {
  display:grid;
  grid-template-columns:repeat(4,1fr);
  margin-top:32px;
  border:1px solid var(--line);
}

.industry-promise-row span {
  min-height:72px;
  display:flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  padding:15px;
  border-right:1px solid var(--line);
  font-size:11px;
  font-weight:700;
}

.industry-promise-row span:last-child {
  border-right:0;
}

.industry-promise-row svg {
  color:var(--green);
}

.industry-hub-intro {
  overflow:hidden;
  padding:104px 0 80px;
}

.industry-hub-intro .industry-rail-shell {
  margin-top:18px;
}

.industry-grid {
  gap:22px;
  border:0;
}

.industry-card {
  min-height:430px;
  padding:0;
  border:1px solid var(--line);
  background:#fff;
  box-shadow:0 12px 34px rgba(12,64,105,.06);
  transition:transform .25s ease,box-shadow .25s ease;
}

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

.industry-card:hover {
  transform:translateY(-5px);
  box-shadow:0 20px 44px rgba(12,64,105,.13);
}

.industry-card-link {
  height:100%;
  display:flex;
  flex-direction:column;
}

.industry-card-media {
  height:200px;
  position:relative;
  overflow:hidden;
}

.industry-card-media:after {
  content:'';
  position:absolute;
  inset:0;
  background:linear-gradient(transparent 55%,rgba(8,40,75,.45));
}

.industry-card-media img {
  width:100%;
  height:100%;
  object-fit:cover;
  transition:transform .4s ease;
}

.industry-card:hover .industry-card-media img {
  transform:scale(1.035);
}

.industry-card-media>span {
  position:absolute;
  z-index:2;
  left:18px;
  bottom:15px;
  color:#fff;
  font-size:10px;
  font-weight:800;
}

.industry-card-copy {
  height:calc(100% - 200px);
  display:flex;
  flex-direction:column;
  padding:23px;
}

.industry-card-copy p {
  margin:0 0 10px;
  color:#1877cf;
  font-size:9px;
  font-weight:800;
  letter-spacing:.12em;
  text-transform:uppercase;
}

.industry-card-copy h3 {
  margin:0 0 11px;
  font-size:21px;
}

.industry-card-copy>span {
  color:var(--muted);
  font-size:12px;
  line-height:1.5;
}

.industry-card-copy b {
  display:flex;
  align-items:center;
  justify-content:space-between;
  margin-top:auto;
  padding-top:17px;
  border-top:1px solid var(--line);
  color:#087a59;
  font-size:11px;
}

.industry-detail-hero,
.industry-value-section,
.industry-workflow-section,
.industry-capabilities-section,
.industry-dashboard-section,
.related-industry-section {
  padding:104px 0;
}

.industry-detail-hero {
  position:relative;
  overflow:hidden;
}

.industry-detail-hero:before {
  content:'';
  width:520px;
  height:520px;
  position:absolute;
  left:-330px;
  bottom:-340px;
  border:1px solid rgba(24,119,207,.12);
  border-radius:50%;
  box-shadow:0 0 0 70px rgba(24,119,207,.025),0 0 0 145px rgba(52,211,153,.022);
}

.industry-detail-hero-grid {
  display:grid;
  grid-template-columns:1.03fr .87fr;
  gap:72px;
  align-items:center;
}

.industry-detail-copy {
  position:relative;
  z-index:2;
}

.industry-detail-copy h1 {
  max-width:760px;
  margin-bottom:25px;
  font-size:clamp(45px,5.2vw,78px);
}

.industry-detail-copy>p:not(.eyebrow) {
  max-width:720px;
  color:var(--muted);
  font-size:17px;
}

.industry-hero-tags {
  display:flex;
  flex-wrap:wrap;
  gap:9px;
  margin-top:34px;
}

.industry-hero-tags span {
  display:flex;
  align-items:center;
  gap:7px;
  padding:9px 11px;
  color:#28536f;
  background:#edf8f4;
  border:1px solid #ccebdd;
  font-size:10px;
  font-weight:700;
}

.industry-hero-tags svg {
  color:var(--green);
}

.industry-detail-media {
  height:555px;
  position:relative;
  padding:18px 18px 0 0;
}

.industry-detail-media:before {
  content:'';
  position:absolute;
  inset:0 0 auto auto;
  width:72%;
  height:78%;
  background:#dff6ed;
}

.industry-detail-media img {
  width:calc(100% - 18px);
  height:calc(100% - 18px);
  position:relative;
  z-index:1;
  object-fit:cover;
  box-shadow:0 24px 60px rgba(12,64,105,.16);
}

.industry-media-accent {
  width:76px;
  height:76px;
  position:absolute;
  z-index:2;
  right:0;
  top:0;
  border-top:4px solid var(--cyan);
  border-right:4px solid var(--green);
}

.industry-media-card {
  width:min(310px,78%);
  position:absolute;
  z-index:3;
  left:-32px;
  bottom:0;
  padding:20px;
  color:#fff;
  background:var(--navy);
  box-shadow:0 15px 40px rgba(8,40,75,.22);
}

.industry-media-card small {
  display:block;
  color:#75e5bc;
  font-size:8px;
  font-weight:800;
  letter-spacing:.15em;
}

.industry-media-card strong {
  display:block;
  margin:9px 0 14px;
  font:800 16px/1.25 var(--font-display);
}

.industry-media-card span {
  display:flex;
  align-items:center;
  gap:7px;
  color:#c6d7e2;
  font-size:9px;
}

.industry-media-card svg {
  color:var(--green);
}

.industry-value-grid {
  display:grid;
  grid-template-columns:.82fr 1.18fr;
  gap:8vw;
  align-items:center;
}

.industry-value-grid>div:first-child>p:last-child {
  color:var(--muted);
  font-size:16px;
}

.industry-value-grid h2 {
  font-size:clamp(35px,4vw,54px);
}

.industry-outcome-grid {
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:14px;
}

.industry-outcome-grid article {
  min-height:175px;
  display:flex;
  flex-direction:column;
  padding:22px;
  background:#fff;
  border:1px solid #d6e6ed;
  border-top:3px solid var(--cyan);
}

.industry-outcome-grid article:nth-child(even) {
  border-top-color:var(--green);
}

.industry-outcome-grid article>span {
  width:40px;
  height:40px;
  display:grid;
  place-items:center;
  color:#0f67b4;
  background:#e9f4fd;
}

.industry-outcome-grid small {
  margin:25px 0 7px;
  color:#6d8494;
  font-size:8px;
  font-weight:800;
  letter-spacing:.14em;
}

.industry-outcome-grid strong {
  font:800 15px/1.35 var(--font-display);
}

.industry-workflow {
  display:grid;
  grid-template-columns:repeat(4,1fr);
  border:1px solid var(--line);
}

.industry-workflow article {
  min-height:280px;
  padding:25px;
  background:#fff;
  border-right:1px solid var(--line);
}

.industry-workflow article:last-child {
  border-right:0;
}

.industry-workflow>article>span {
  color:#1877cf;
  font-size:10px;
  font-weight:800;
}

.industry-workflow>article>div {
  margin-top:65px;
}

.industry-workflow svg {
  color:var(--green);
}

.industry-workflow p {
  margin-top:18px;
  font:700 14px/1.5 var(--font-display);
}

.capability-layout {
  display:grid;
  grid-template-columns:.7fr 1.3fr;
  gap:8vw;
  align-items:start;
}

.capability-layout>div:first-child {
  position:sticky;
  top:130px;
}

.capability-layout>div:first-child>p:last-child {
  color:var(--muted);
}

.industry-capability-grid {
  display:grid;
  grid-template-columns:1fr 1fr;
  border-top:1px solid var(--line);
  border-left:1px solid var(--line);
}

.industry-capability-grid article {
  min-height:145px;
  padding:21px;
  background:#fff;
  border-right:1px solid var(--line);
  border-bottom:1px solid var(--line);
}

.industry-capability-grid article>span {
  width:39px;
  height:39px;
  display:grid;
  place-items:center;
  color:#fff;
  background:linear-gradient(135deg,var(--cyan),#0f5ea3);
}

.industry-capability-grid article:nth-child(even)>span {
  background:linear-gradient(135deg,var(--green),#0b7f58);
}

.industry-capability-grid p {
  margin:22px 0 0;
  font:700 13px/1.4 var(--font-display);
}

.industry-dashboard-layout {
  display:grid;
  grid-template-columns:1.15fr .85fr;
  gap:8vw;
  align-items:center;
}

.industry-dashboard {
  padding:26px;
  color:#fff;
  background:linear-gradient(145deg,var(--navy),#0d3c6b);
  box-shadow:0 28px 75px rgba(8,40,75,.2);
}

.industry-dashboard-head,
.industry-dashboard-head>div,
.industry-dashboard-summary {
  display:flex;
  align-items:center;
}

.industry-dashboard-head,
.industry-dashboard-summary {
  justify-content:space-between;
  gap:20px;
}

.industry-dashboard-head>div {
  gap:10px;
}

.industry-dashboard-head strong {
  font-size:11px;
}

.industry-dashboard-head small {
  padding:5px 7px;
  color:#fff;
  background:#1877cf;
  font-size:8px;
  letter-spacing:.1em;
}

.industry-dashboard-summary {
  margin:26px 0;
  padding:22px;
  background:rgba(255,255,255,.07);
}

.industry-dashboard-summary>div span {
  display:block;
  color:#84a6bd;
  font-size:8px;
  font-weight:800;
  letter-spacing:.13em;
}

.industry-dashboard-summary>div strong {
  display:block;
  margin-top:8px;
  font-size:13px;
}

.dashboard-status {
  padding:7px 9px;
  color:#062642;
  background:var(--green);
  font-size:8px;
  font-weight:800;
}

.industry-dashboard-body {
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:10px;
}

.industry-dashboard-body article {
  display:grid;
  grid-template-columns:34px 1fr;
  gap:12px;
  padding:15px;
  background:rgba(255,255,255,.055);
}

.industry-dashboard-body article>span {
  width:32px;
  height:32px;
  display:grid;
  place-items:center;
  color:#83e5c2;
  background:rgba(52,211,153,.1);
}

.industry-dashboard-body small {
  display:block;
  min-height:30px;
  color:#d8e5ed;
  font-size:9px;
  line-height:1.35;
}

.industry-dashboard-body i {
  height:4px;
  display:block;
  margin:8px 0;
  background:rgba(255,255,255,.12);
}

.industry-dashboard-body i b {
  width:var(--progress);
  height:100%;
  display:block;
  background:linear-gradient(90deg,var(--cyan),var(--green));
}

.industry-dashboard-body em {
  color:#7fa3ba;
  font-size:8px;
  font-style:normal;
}

.industry-dashboard>p {
  margin:18px 0 0;
  color:#7394aa;
  font-size:8px;
}

.industry-dashboard-layout>div:last-child>p:not(.eyebrow) {
  color:var(--muted);
}

.industry-dashboard-layout ul {
  margin:25px 0 0;
  padding:0;
  list-style:none;
}

.industry-dashboard-layout li {
  display:flex;
  align-items:center;
  gap:10px;
  padding:11px 0;
  border-bottom:1px solid var(--line);
  font-size:12px;
  font-weight:700;
}

.industry-dashboard-layout li svg {
  color:var(--green);
}

.challenge-section .detail-section-head>p {
  max-width:430px;
  color:var(--muted);
}

.challenge-grid {
  border-color:#d3e3eb;
}

.challenge-grid article {
  border-color:#d3e3eb;
}

.challenge-grid span {
  color:var(--cyan);
}

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

.industry-journey .eyebrow {
  color:#667d8d;
}

.industry-journey .journey-story span {
  color:var(--ink);
  border-color:var(--line);
  background:#f8fbfc;
}

.industry-journey .journey-story span svg {
  color:var(--green);
}

.industry-journey .journey-story>svg {
  color:var(--cyan);
}

.industry-journey .story-copy {
  color:var(--muted);
}

.green-section {
  color:var(--ink);
  background:#dff7ed;
}

.green-section .wrap>svg {
  color:#087a59;
}

.green-section .eyebrow {
  color:#087a59;
}

.compliance-section p:last-child {
  color:#355c50;
}

.related-industry-section .industry-card {
  min-height:410px;
}

@media (max-width:1000px) {
  .industry-detail-hero-grid,
  .industry-value-grid,
  .capability-layout,
  .industry-dashboard-layout {
    grid-template-columns:1fr;
    gap:55px;
  }

  .industry-detail-media {
    width:min(650px,100%);
    margin:auto;
  }

  .capability-layout>div:first-child {
    position:static;
  }

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

  .industry-workflow article:nth-child(2) {
    border-right:0;
  }

  .industry-workflow article:nth-child(n+3) {
    border-top:1px solid var(--line);
  }

  .industry-promise-row {
    grid-template-columns:1fr 1fr;
  }

  .industry-promise-row span:nth-child(2) {
    border-right:0;
  }

  .industry-promise-row span:nth-child(n+3) {
    border-top:1px solid var(--line);
  }

}

@media (max-width:900px) {
  .mobile-nav {
    color:var(--ink);
    background:#fff;
    border-top-color:var(--line);
    box-shadow:0 18px 35px rgba(8,40,75,.12);
  }

  .mobile-nav a {
    border-bottom-color:var(--line);
  }

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

}

@media (max-width:640px) {
  .industry-hub-intro,
  .industry-detail-hero,
  .industry-value-section,
  .industry-workflow-section,
  .industry-capabilities-section,
  .industry-dashboard-section,
  .related-industry-section {
    padding:72px 0;
  }

  .industry-rail-card {
    width:255px;
    height:350px;
  }

  .industry-detail-copy h1 {
    font-size:clamp(40px,12vw,53px);
  }

  .industry-detail-media {
    height:430px;
    padding:12px 12px 0 0;
  }

  .industry-media-card {
    left:12px;
    bottom:-18px;
  }

  .industry-hero-tags {
    display:grid;
  }

  .industry-outcome-grid,
  .industry-capability-grid,
  .industry-dashboard-body,
  .industry-grid,
  .industry-workflow,
  .industry-promise-row {
    grid-template-columns:1fr;
  }

  .industry-workflow article,
  .industry-workflow article:nth-child(2) {
    border-right:0;
  }

  .industry-workflow article+article {
    border-top:1px solid var(--line);
  }

  .industry-workflow article {
    min-height:220px;
  }

  .industry-workflow>article>div {
    margin-top:42px;
  }

  .industry-capability-grid article {
    min-height:125px;
  }

  .industry-promise-row span {
    border-right:0;
  }

  .industry-promise-row span+span {
    border-top:1px solid var(--line);
  }

  .industry-card {
    min-height:420px;
  }

  .industry-dashboard-summary {
    align-items:flex-start;
    flex-direction:column;
  }

  .journey-story {
    grid-template-columns:1fr;
  }

  .journey-story>svg {
    transform:rotate(90deg);
  }

}

@media (prefers-reduced-motion:reduce) {
  .industry-rail-track {
    animation:none;
  }

}

.industry-card>.industry-card-link {
  width:100%;
  height:100%;
  position:relative;
  right:auto;
  bottom:auto;
  display:flex;
  flex-direction:column;
  place-items:initial;
  color:inherit;
  background:transparent;
}

.industry-card:hover>.industry-card-link {
  color:inherit;
  background:transparent;
}

.outcome-delay-0 {
  --delay:0ms;
}

.outcome-delay-1 {
  --delay:70ms;
}

.outcome-delay-2 {
  --delay:140ms;
}

.outcome-delay-3 {
  --delay:210ms;
}

.sample-bar-1 {
  --h:42%;
}

.sample-bar-2 {
  --h:58%;
}

.sample-bar-3 {
  --h:50%;
}

.sample-bar-4 {
  --h:72%;
}

.sample-bar-5 {
  --h:81%;
}

.sample-bar-6 {
  --h:76%;
}

.sample-bar-7 {
  --h:91%;
}

.dashboard-progress-1 {
  --progress:68%;
}

.dashboard-progress-2 {
  --progress:82%;
}

.dashboard-progress-3 {
  --progress:57%;
}

.dashboard-progress-4 {
  --progress:74%;
}

/* v4 — two-concept comparison, media-rich pages and concise SaaS pricing */ .concept-compare {
  min-height:42px;
  display:flex;
  align-items:center;
  justify-content:center;
  gap:8px;
  padding:6px 24px;
  color:#506a7d;
  background:#f3f9fc;
  border-bottom:1px solid var(--line);
}

.concept-compare>span {
  margin-right:8px;
  font-size:8px;
  font-weight:800;
  letter-spacing:.16em;
}

.concept-compare a {
  padding:7px 12px;
  color:#38566b;
  border:1px solid transparent;
  border-radius:999px;
  font-size:10px;
  font-weight:800;
}

.concept-compare a.active {
  color:#fff;
  background:var(--navy);
  border-color:var(--navy);
}

.outcome-section,
.industries-section,
.process-section,
.home-pricing,
.service-detail-hero,
.service-outcomes,
.service-system-section,
.service-scope-section,
.industry-system-section {
  padding:88px 0;
}

.concise-grid .outcome-card {
  min-height:285px;
}

.concise-grid .outcome-card>p {
  min-height:0;
}

.concise-grid .outcome-card>a {
  display:flex;
  align-items:center;
  justify-content:space-between;
  margin-top:auto;
  padding-top:20px;
  border-top:1px solid var(--line);
  font-size:11px;
  font-weight:800;
}

.concise-process {
  display:grid;
  grid-template-columns:repeat(4,1fr);
  border:1px solid var(--line);
  border-right:0;
}

.concise-process .process-item {
  display:block;
  min-height:260px;
  padding:24px;
  border:0;
  border-right:1px solid var(--line);
}

.concise-process .process-item>span {
  display:block;
  margin-bottom:58px;
}

.concise-process .process-item>div {
  display:block;
}

.concise-process .process-item svg {
  margin-bottom:14px;
}

.concise-process .process-item h3 {
  margin-bottom:12px;
}

.concise-process .process-item p {
  font-size:12px;
}

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

.pricing-preview-card {
  min-height:440px;
  display:flex;
  flex-direction:column;
  padding:24px;
  background:#fff;
  border:1px solid var(--line);
  border-top:4px solid var(--cyan);
  box-shadow:0 14px 38px rgba(12,64,105,.06);
}

.pricing-preview-card:nth-child(2) {
  border-top-color:var(--green);
}

.pricing-preview-card:nth-child(3) {
  border-top-color:#7d77e8;
}

.pricing-preview-card:nth-child(4) {
  border-top-color:var(--navy);
}

.pricing-preview-card.featured {
  color:#fff;
  background:var(--navy);
  box-shadow:0 22px 54px rgba(8,40,75,.18);
}

.pricing-preview-card>div:first-child {
  display:flex;
  justify-content:space-between;
  color:#8499a7;
  font-size:9px;
  font-weight:800;
  letter-spacing:.11em;
}

.pricing-preview-card>div:first-child b {
  color:var(--green);
}

.pricing-preview-card>small {
  display:block;
  margin:34px 0 8px;
  color:#607b8f;
  font-size:9px;
  font-weight:800;
  letter-spacing:.09em;
  text-transform:uppercase;
}

.pricing-preview-card.featured>small {
  color:#8fe5c6;
}

.pricing-preview-card h3 {
  margin:0;
  font-size:31px;
}

.pricing-preview-card>p {
  min-height:54px;
  color:var(--muted);
  font-size:12px;
}

.pricing-preview-card.featured>p {
  color:#b9cbd5;
}

.pricing-preview-card>strong {
  display:block;
  margin:18px 0;
  font-size:24px;
}

.pricing-preview-card>strong small {
  color:#738b9c;
  font-size:8px;
  letter-spacing:.08em;
  text-transform:uppercase;
}

.pricing-preview-card ul {
  margin:0 0 24px;
  padding:0;
  list-style:none;
}

.pricing-preview-card li {
  display:grid;
  grid-template-columns:16px 1fr;
  gap:7px;
  padding:8px 0;
  border-bottom:1px solid var(--line);
  font-size:10px;
}

.pricing-preview-card.featured li {
  border-color:rgba(255,255,255,.12);
}

.pricing-preview-card li svg {
  color:var(--green);
}

.pricing-preview-card>a {
  display:flex;
  align-items:center;
  justify-content:space-between;
  margin-top:auto;
  padding-top:18px;
  border-top:1px solid var(--line);
  font-size:11px;
  font-weight:800;
}

.pricing-preview-card.featured>a {
  border-color:rgba(255,255,255,.15);
}

.pricing-preview-action {
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:24px;
  margin-top:22px;
}

.pricing-preview-action>span {
  color:var(--muted);
  font-size:10px;
}

.service-card {
  min-height:410px;
  padding:0;
  border-top:0;
  box-shadow:0 10px 30px rgba(12,64,105,.05);
}

.service-card.compact {
  min-height:390px;
}

.service-card>.service-card-media {
  height:175px;
  position:relative;
  display:block;
  padding:0;
  border:0;
  overflow:hidden;
}

.service-card-media img {
  width:100%;
  height:100%;
  object-fit:cover;
  transition:transform .35s ease;
}

.service-card:hover .service-card-media img {
  transform:scale(1.035);
}

.service-card-media>span {
  width:38px;
  height:38px;
  position:absolute;
  left:16px;
  bottom:0;
  display:grid;
  place-items:center;
  color:#fff;
  background:var(--navy);
}

.service-card-body {
  min-height:235px;
  display:flex;
  flex-direction:column;
  padding:20px;
}

.service-card-body .card-index {
  justify-content:flex-start;
}

.service-card-body h3 {
  margin:14px 0 8px;
}

.service-card-body p {
  margin:0;
}

.service-card-body>a {
  display:flex;
  align-items:center;
  justify-content:space-between;
  margin-top:auto;
  padding-top:14px;
  border-top:1px solid var(--line);
  font-size:11px;
  font-weight:800;
}

.service-detail-hero {
  position:relative;
  overflow:hidden;
}

.service-detail-hero-grid {
  display:grid;
  grid-template-columns:1.05fr .95fr;
  gap:7vw;
  align-items:center;
}

.service-detail-hero h1 {
  max-width:760px;
  margin-bottom:24px;
  font-size:clamp(44px,5.2vw,76px);
}

.service-detail-hero-grid>div:first-child>p:not(.eyebrow) {
  max-width:690px;
  color:var(--muted);
  font-size:16px;
}

.service-detail-media {
  height:530px;
  position:relative;
  padding:18px 0 0 18px;
}

.service-detail-media:before {
  content:'';
  position:absolute;
  inset:0 auto auto 0;
  width:70%;
  height:72%;
  background:#daf6eb;
}

.service-detail-media>img {
  width:100%;
  height:100%;
  position:relative;
  z-index:1;
  object-fit:cover;
  box-shadow:0 25px 65px rgba(12,64,105,.15);
}

.service-detail-media>div {
  width:min(310px,80%);
  position:absolute;
  z-index:2;
  right:-24px;
  bottom:-24px;
  padding:20px;
  color:#fff;
  background:var(--navy);
  box-shadow:0 16px 42px rgba(8,40,75,.2);
}

.service-detail-media small {
  display:block;
  color:#83e4c1;
  font-size:8px;
  font-weight:800;
  letter-spacing:.14em;
}

.service-detail-media strong {
  display:block;
  margin:8px 0 13px;
  font-size:15px;
}

.service-detail-media span {
  display:flex;
  align-items:center;
  gap:7px;
  color:#c8d8e1;
  font-size:9px;
}

.service-detail-media svg {
  color:var(--green);
}

.service-outcome-strip {
  display:grid;
  grid-template-columns:repeat(3,1fr);
  border:1px solid var(--line);
}

.service-outcome-strip article {
  min-height:128px;
  display:grid;
  grid-template-columns:32px 1fr;
  gap:15px;
  padding:22px;
  background:#fff;
  border-right:1px solid var(--line);
}

.service-outcome-strip article:last-child {
  border-right:0;
}

.service-outcome-strip span {
  color:var(--cyan);
  font-size:9px;
  font-weight:800;
}

.service-outcome-strip strong {
  font:800 14px/1.4 var(--font-display);
}

.service-system-layout,
.industry-system-layout {
  display:grid;
  grid-template-columns:1fr .88fr;
  gap:7vw;
  align-items:center;
}

.service-system-layout h2,
.industry-system-layout h2 {
  max-width:700px;
  margin-bottom:30px;
}

.growth-infographic {
  overflow:hidden;
  background:#f5fafc;
  border:1px solid var(--line);
  box-shadow:0 18px 48px rgba(12,64,105,.08);
}

.infographic-head {
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:20px;
  padding:18px 20px;
  color:#fff;
  background:var(--navy);
}

.infographic-head span {
  font-size:8px;
  font-weight:800;
  letter-spacing:.13em;
}

.infographic-head strong {
  font-size:11px;
  text-align:right;
}

.infographic-flow {
  display:grid;
  grid-template-columns:1fr 24px 1fr 24px 1fr 24px 1fr;
  padding:28px 20px 22px;
}

.infographic-flow article {
  min-height:145px;
  display:flex;
  flex-direction:column;
  padding:16px;
  background:#fff;
  border:1px solid var(--line);
  border-top:3px solid var(--green);
}

.infographic-flow article:nth-of-type(even) {
  border-top-color:var(--cyan);
}

.infographic-flow article>span {
  color:#77909f;
  font-size:8px;
  font-weight:800;
}

.infographic-flow article svg {
  margin:24px 0 12px;
  color:var(--cyan);
}

.infographic-flow article strong {
  font-size:10px;
  line-height:1.4;
}

.infographic-flow>i {
  display:grid;
  place-items:center;
  color:var(--green);
}

.infographic-core {
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:20px;
  padding:14px 20px;
  color:#fff;
  background:linear-gradient(100deg,#1169b7,#0f9f72);
}

.infographic-core span {
  font-weight:800;
}

.infographic-core small {
  font-size:8px;
  letter-spacing:.09em;
}

.media-story {
  margin:0;
}

.media-story-frame {
  position:relative;
  overflow:hidden;
  background:var(--navy);
  box-shadow:0 24px 60px rgba(8,40,75,.18);
}

.media-story video {
  width:100%;
  aspect-ratio:16/9;
  display:block;
  object-fit:cover;
  background:var(--navy);
}

.media-story-badge {
  position:absolute;
  left:13px;
  top:13px;
  display:flex;
  align-items:center;
  gap:7px;
  padding:7px 9px;
  color:#fff;
  background:rgba(6,31,56,.85);
  font-size:7px;
  font-weight:800;
  letter-spacing:.1em;
  pointer-events:none;
}

.media-story-badge svg {
  color:var(--green);
}

.media-story-domain {
  position:absolute;
  right:13px;
  bottom:13px;
  padding:7px 9px;
  color:#092b45;
  background:var(--signal);
  font-size:7px;
  font-weight:900;
  letter-spacing:.1em;
  pointer-events:none;
}

.media-story figcaption {
  padding:18px 3px 0;
}

.media-story figcaption small {
  display:block;
  color:var(--green);
  font-size:8px;
  font-weight:800;
  letter-spacing:.13em;
}

.media-story figcaption strong {
  display:block;
  margin:7px 0;
  font-size:15px;
}

.media-story figcaption p {
  margin:0;
  color:var(--muted);
  font-size:11px;
}

/* Distinct workflow-automation blueprints for every industry */ .automation-infographic {
  overflow:hidden;
  background:#f5fafc;
  border:1px solid var(--line);
  box-shadow:0 18px 48px rgba(12,64,105,.1);
}

.automation-head {
  min-height:76px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:24px;
  padding:17px 20px;
  color:#fff;
  background:linear-gradient(115deg,var(--navy),#0d5781);
}

.automation-head div>span {
  display:block;
  color:#75dfbc;
  font-size:7px;
  font-weight:900;
  letter-spacing:.14em;
}

.automation-head div>strong {
  display:block;
  margin-top:7px;
  font:800 13px/1.2 var(--font-display);
}

.automation-head>b {
  display:flex;
  align-items:center;
  gap:7px;
  padding:8px 10px;
  color:#d8f9ed;
  border:1px solid rgba(255,255,255,.18);
  font-size:7px;
  letter-spacing:.1em;
  white-space:nowrap;
}

.automation-head>b svg {
  color:var(--signal);
}

.automation-orchestration {
  display:grid;
  grid-template-columns:1fr 28px 1.45fr 28px 1fr;
  align-items:stretch;
  padding:20px 18px 14px;
}

.automation-orchestration article {
  min-height:116px;
  position:relative;
  display:flex;
  flex-direction:column;
  justify-content:center;
  padding:15px;
  background:#fff;
  border:1px solid var(--line);
}

.automation-orchestration article>small {
  color:#6b8494;
  font-size:7px;
  font-weight:900;
  letter-spacing:.12em;
}

.automation-orchestration article>span {
  width:34px;
  height:34px;
  display:grid;
  place-items:center;
  margin:12px 0 9px;
  color:#fff;
  background:var(--cyan);
}

.automation-orchestration article>strong {
  font-size:10px;
  line-height:1.35;
}

.automation-orchestration .automation-output>span {
  background:var(--green);
}

.automation-arrow {
  display:grid;
  place-items:center;
  color:var(--green);
}

.automation-orchestration .automation-core-card {
  color:#fff;
  background:linear-gradient(145deg,#0b3159,#0f6e7c);
  border-color:#0f6e7c;
}

.automation-core-card>small {
  color:#8de4c6!important;
}

.automation-core-card>div {
  display:flex;
  gap:5px;
  margin:15px 0 10px;
}

.automation-core-card>div b {
  padding:6px;
  color:#08284b;
  background:var(--signal);
  font-size:6px;
  letter-spacing:.08em;
}

.automation-core-card>strong {
  color:#dff5f2;
  font-size:9px!important;
}

.automation-flow {
  display:grid;
  grid-template-columns:repeat(4,1fr);
  margin:0 18px;
  border:1px solid var(--line);
  background:#fff;
}

.automation-flow article {
  min-height:132px;
  position:relative;
  padding:15px;
  border-right:1px solid var(--line);
}

.automation-flow article:last-child {
  border-right:0;
}

.automation-flow article>span {
  width:31px;
  height:31px;
  display:grid;
  place-items:center;
  color:var(--cyan);
  background:#e9f7fc;
}

.automation-flow article:nth-child(even)>span {
  color:var(--green);
  background:#e9f8f2;
}

.automation-flow article>small {
  display:block;
  margin:13px 0 7px;
  color:#7d93a1;
  font-size:7px;
  font-weight:900;
}

.automation-flow article>strong {
  display:block;
  font-size:8px;
  line-height:1.45;
}

.automation-flow article>i {
  width:24px;
  height:24px;
  position:absolute;
  z-index:2;
  right:-12px;
  top:53px;
  display:grid;
  place-items:center;
  color:#fff;
  background:var(--green);
  border-radius:50%;
}

.automation-impact {
  display:grid;
  grid-template-columns:1fr 1fr;
  margin:14px 18px 0;
  color:#fff;
  background:linear-gradient(105deg,#1169b7,#0c9d70);
}

.automation-impact>div {
  min-height:86px;
  padding:16px 18px;
}

.automation-impact>div+div {
  border-left:1px solid rgba(255,255,255,.2);
}

.automation-impact small {
  display:block;
  color:#c6f4e4;
  font-size:6px;
  font-weight:900;
  letter-spacing:.13em;
}

.automation-impact strong {
  display:block;
  margin-top:9px;
  font-size:9px;
  line-height:1.45;
}

.automation-signals {
  display:flex;
  align-items:center;
  flex-wrap:wrap;
  gap:7px;
  padding:13px 18px 17px;
}

.automation-signals>span {
  margin-right:auto;
  color:#698292;
  font-size:6px;
  font-weight:900;
  letter-spacing:.12em;
}

.automation-signals>b {
  display:flex;
  align-items:center;
  gap:5px;
  padding:6px 7px;
  color:#34556b;
  background:#fff;
  border:1px solid var(--line);
  font-size:6px;
}

.automation-signals>b svg {
  color:var(--cyan);
}

.service-scope-grid {
  display:grid;
  grid-template-columns:.8fr 1.2fr;
  gap:8vw;
}

.service-scope-grid>div:first-child>p:not(.eyebrow) {
  color:var(--muted);
}

.scope-disclosure,
.industry-insight-details,
.package-more,
.suite-comparison {
  margin-top:28px;
  border-top:1px solid var(--line);
  border-bottom:1px solid var(--line);
}

.scope-disclosure summary,
.industry-insight-details summary,
.package-more summary,
.suite-comparison>summary {
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:16px;
  padding:17px 0;
  cursor:pointer;
  font-weight:800;
  list-style:none;
}

.scope-disclosure summary::-webkit-details-marker,
.industry-insight-details summary::-webkit-details-marker,
.package-more summary::-webkit-details-marker,
.suite-comparison>summary::-webkit-details-marker {
  display:none;
}

.scope-disclosure[open] summary svg,
.industry-insight-details[open] summary svg,
.package-more[open] summary svg,
.suite-comparison[open]>summary>svg {
  transform:rotate(45deg);
}

.scope-disclosure>p {
  display:flex;
  gap:9px;
  color:var(--muted);
  font-size:11px;
}

.scope-disclosure>p svg {
  flex:none;
  color:var(--green);
}

.service-included-list {
  border-top:1px solid var(--line);
}

.service-included-list article {
  display:grid;
  grid-template-columns:38px 1fr;
  gap:14px;
  padding:18px 0;
  border-bottom:1px solid var(--line);
}

.service-included-list>article>span {
  width:32px;
  height:32px;
  display:grid;
  place-items:center;
  color:#fff;
  background:var(--green);
}

.service-included-list small {
  display:block;
  margin-bottom:4px;
  color:#7890a0;
  font-size:8px;
  font-weight:800;
  letter-spacing:.11em;
}

.service-included-list strong {
  font-size:12px;
}

.industry-system-section {
  padding:96px 0;
}

.industry-compact-layout {
  display:grid;
  grid-template-columns:1.05fr .95fr;
  gap:7vw;
  align-items:start;
}

.industry-compact-layout .industry-capability-grid {
  margin-top:28px;
}

.industry-insight-details>summary {
  font-size:12px;
}

.industry-insight-details>div {
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:28px;
  padding:20px 0;
}

.industry-insight-details section>strong {
  display:block;
  margin-bottom:12px;
}

.industry-insight-details section p {
  display:flex;
  gap:8px;
  color:var(--muted);
  font-size:10px;
}

.industry-insight-details section p svg {
  flex:none;
  color:var(--green);
  margin-top:2px;
}

.package-card {
  min-height:660px;
}

.package-card.featured {
  transform:translateY(-8px);
}

.package-suite {
  display:block;
  min-height:34px;
  margin:26px 0 9px;
  color:#517185;
  font-size:8px;
  font-weight:800;
  letter-spacing:.11em;
  text-transform:uppercase;
}

.package-card.featured .package-suite {
  color:#83e4c1;
}

.package-card h2 {
  margin-bottom:0;
}

.package-tagline {
  min-height:54px;
}

.package-more {
  margin:0 0 20px;
}

.package-more summary {
  padding:12px 0;
  font-size:9px;
}

.package-more p {
  display:grid;
  grid-template-columns:15px 1fr;
  gap:7px;
  color:var(--muted);
  font-size:9px;
}

.package-more p svg {
  color:var(--green);
}

.package-card.featured .package-more {
  border-color:rgba(255,255,255,.16);
}

.package-card.featured .package-more p {
  color:#b8cad4;
}

.suite-comparison {
  margin-top:44px;
  padding:0 24px;
  background:#f3f9fc;
  border:1px solid var(--line);
}

.suite-comparison>summary {
  min-height:82px;
}

.suite-comparison>summary span small {
  display:block;
  color:var(--green);
  font-size:8px;
  letter-spacing:.13em;
}

.suite-comparison>summary span strong {
  display:block;
  margin-top:6px;
  font-size:15px;
}

.suite-comparison-grid {
  display:grid;
  grid-template-columns:repeat(4,1fr);
  border-top:1px solid var(--line);
}

.suite-comparison-grid article {
  padding:22px;
  border-right:1px solid var(--line);
}

.suite-comparison-grid article:last-child {
  border-right:0;
}

.suite-comparison-grid article>small {
  color:#607b8d;
  font-size:8px;
  font-weight:800;
  text-transform:uppercase;
}

.suite-comparison-grid h3 {
  margin:8px 0;
  font-size:23px;
}

.suite-comparison-grid article>strong {
  display:block;
  margin-bottom:18px;
  font-size:11px;
}

.suite-comparison-grid p {
  display:grid;
  grid-template-columns:15px 1fr;
  gap:7px;
  color:var(--muted);
  font-size:9px;
}

.suite-comparison-grid p svg {
  color:var(--green);
}

/* Concept A: Northern Clarity — bright, editorial, linear */ body[data-concept="northern"] {
  --navy:#08284b;
  --navy-2:#0a315d;
  --ink:#102b45;
  --paper:#f3f9fc;
  --signal:#34d399;
  --cyan:#1877cf;
  --green:#18a874;
}

body[data-concept="northern"] .home-hero {
  background:linear-gradient(180deg,#fff 0,#fff 82%,#f3f9fc 82%);
}

body[data-concept="northern"] .home-hero .hero-media {
  border-radius:2px 2px 80px 2px;
  overflow:visible;
}

body[data-concept="northern"] .pricing-preview-card,
body[data-concept="northern"] .service-card,
body[data-concept="northern"] .industry-card {
  border-radius:0;
}

/* Concept B: Digital Momentum — immersive, modular, high-energy */ body[data-concept="momentum"] {
  --navy:#11183f;
  --navy-2:#171e4f;
  --navy-3:#232c69;
  --ink:#171b3f;
  --muted:#5f6683;
  --line:#dcdff0;
  --paper:#f5f4ff;
  --signal:#b7ee45;
  --cyan:#24c4e5;
  --green:#45d6a7;
  --shadow:0 28px 80px rgba(17,24,63,.17);
  background:#f8f8ff;
}

body[data-concept="momentum"] .campaign-bar {
  color:#11183f;
  background:#b7ee45;
}

body[data-concept="momentum"] .campaign-bar a {
  color:#11183f;
  border-color:#11183f;
}

body[data-concept="momentum"] .concept-compare {
  color:#aeb7d5;
  background:#11183f;
  border-color:#293263;
}

body[data-concept="momentum"] .concept-compare a {
  color:#c8d1eb;
}

body[data-concept="momentum"] .concept-compare a.active {
  color:#11183f;
  background:#24c4e5;
  border-color:#24c4e5;
}

body[data-concept="momentum"] .site-header {
  color:#fff;
  background:#11183f;
  border-color:#27305f;
  box-shadow:none;
}

body[data-concept="momentum"] .brand-dark {
  color:#fff;
}

body[data-concept="momentum"] .brand-dark .brand-words small {
  color:#b7ee45;
}

body[data-concept="momentum"] .nav-item>a {
  color:#dfe5fa;
}

body[data-concept="momentum"] .nav-item:hover>a {
  color:#b7ee45;
}

body[data-concept="momentum"] .mobile-menu-button {
  color:#fff;
}

body[data-concept="momentum"] .home-hero {
  color:#fff;
  background:radial-gradient(circle at 18% 15%,#2c397b 0,rgba(44,57,123,.55) 23%,transparent 48%),linear-gradient(135deg,#10163c,#141b4a 58%,#0c3152);
  padding-top:54px;
}

body[data-concept="momentum"] .home-hero:before {
  left:auto;
  right:-230px;
  top:-240px;
  border-color:rgba(36,196,229,.24);
  box-shadow:0 0 0 90px rgba(183,238,69,.025),0 0 0 180px rgba(36,196,229,.025);
}

body[data-concept="momentum"] .hero-layout {
  grid-template-columns:.88fr 1.12fr;
  gap:36px;
  min-height:625px;
}

body[data-concept="momentum"] .hero-media {
  order:-1;
  min-height:540px;
  clip-path:polygon(0 0,91% 0,100% 12%,100% 100%,9% 100%,0 88%);
}

body[data-concept="momentum"] .hero-copy {
  padding:30px 0 30px 26px;
}

body[data-concept="momentum"] .hero-copy h1 {
  font-size:clamp(48px,6.5vw,92px);
}

body[data-concept="momentum"] .hero-copy>p:not(.eyebrow) {
  color:#c6cee9;
}

body[data-concept="momentum"] .home-hero .text-link {
  color:#fff;
}

body[data-concept="momentum"] .hero-data-card {
  left:24px;
  background:#b7ee45;
}

body[data-concept="momentum"] .hero-notification {
  right:20px;
  color:#11183f;
  background:#24c4e5;
}

body[data-concept="momentum"] .capability-strip {
  grid-template-columns:repeat(4,1fr);
  border:0;
  background:rgba(255,255,255,.05);
}

body[data-concept="momentum"] .capability-strip span {
  color:#d6def3;
  border-color:rgba(255,255,255,.1);
}

body[data-concept="momentum"] .bluewash-section,
body[data-concept="momentum"] .paper-section {
  background:#f5f4ff;
}

body[data-concept="momentum"] .outcome-grid {
  grid-template-columns:1fr 1fr;
  gap:16px;
  border:0;
}

body[data-concept="momentum"] .concise-grid .outcome-card {
  min-height:245px;
  padding:28px;
  border:1px solid #dde0f0;
  border-radius:22px;
  box-shadow:0 18px 45px rgba(26,32,83,.07);
}

body[data-concept="momentum"] .outcome-card:nth-child(1) {
  background:#eefbff;
}

body[data-concept="momentum"] .outcome-card:nth-child(2) {
  background:#f5ffe4;
}

body[data-concept="momentum"] .outcome-card:nth-child(3) {
  background:#fff2f7;
}

body[data-concept="momentum"] .outcome-card:nth-child(4) {
  background:#f2efff;
}

body[data-concept="momentum"] .industry-rail-card {
  width:390px;
  height:285px;
  border-radius:22px;
}

body[data-concept="momentum"] .industry-rail-card:after {
  inset:25% 0 0;
}

body[data-concept="momentum"] .pricing-preview-grid {
  grid-template-columns:1fr 1fr;
  gap:18px;
}

body[data-concept="momentum"] .pricing-preview-card {
  min-height:360px;
  border-radius:22px;
  border-top-width:1px;
}

body[data-concept="momentum"] .pricing-preview-card.featured {
  background:linear-gradient(145deg,#11183f,#253073);
}

body[data-concept="momentum"] .concise-process {
  gap:14px;
  border:0;
}

body[data-concept="momentum"] .concise-process .process-item {
  border:1px solid #dde0f0;
  border-radius:18px;
  background:#fff;
}

body[data-concept="momentum"] .page-hero {
  color:#fff;
  background:radial-gradient(circle at 85% 20%,#29367a,transparent 38%),#11183f;
  border:0;
}

body[data-concept="momentum"] .page-hero-grid>div:first-child>p:not(.eyebrow) {
  color:#c2cbe7;
}

body[data-concept="momentum"] .page-hero .text-link {
  color:#fff;
}

body[data-concept="momentum"] .page-hero-mark {
  border-color:#394584;
  background:rgba(36,196,229,.06);
}

body[data-concept="momentum"] .page-hero-mark span {
  color:#d4dcf2;
}

body[data-concept="momentum"] .service-detail-hero,
body[data-concept="momentum"] .industry-detail-hero {
  color:#fff;
  background:#11183f;
}

body[data-concept="momentum"] .service-detail-hero-grid,
body[data-concept="momentum"] .industry-detail-hero-grid {
  grid-template-columns:.9fr 1.1fr;
}

body[data-concept="momentum"] .service-detail-media,
body[data-concept="momentum"] .industry-detail-media {
  order:-1;
}

body[data-concept="momentum"] .service-detail-hero-grid>div:first-child>p:not(.eyebrow),
body[data-concept="momentum"] .industry-detail-copy>p:not(.eyebrow) {
  color:#c3cce6;
}

body[data-concept="momentum"] .service-detail-hero .text-link,
body[data-concept="momentum"] .industry-detail-hero .text-link {
  color:#fff;
}

body[data-concept="momentum"] .industry-hero-tags span {
  color:#dce5f6;
  background:rgba(36,196,229,.09);
  border-color:#35447a;
}

body[data-concept="momentum"] .growth-infographic,
body[data-concept="momentum"] .automation-infographic {
  border-radius:20px;
}

body[data-concept="momentum"] .infographic-head,
body[data-concept="momentum"] .automation-head {
  background:linear-gradient(125deg,#11183f,#273373);
}

body[data-concept="momentum"] .media-story-frame {
  border-radius:20px;
}

body[data-concept="momentum"] .industry-dashboard {
  border-radius:20px;
  background:linear-gradient(145deg,#11183f,#273373);
}

body[data-concept="momentum"] .package-card {
  border-radius:20px;
  border:1px solid #dde0f0;
  border-top:1px solid #dde0f0;
}

body[data-concept="momentum"] .package-card.featured {
  background:linear-gradient(145deg,#11183f,#273373);
}

body[data-concept="momentum"] .pricing-boundary,
body[data-concept="momentum"] .suite-comparison {
  border-radius:20px;
}

@media (max-width:1050px) {
  .pricing-preview-grid,
  .suite-comparison-grid {
    grid-template-columns:1fr 1fr;
  }

  .service-system-layout,
  .industry-system-layout,
  .industry-compact-layout {
    grid-template-columns:1fr;
    gap:55px;
  }

  .service-detail-hero-grid {
    grid-template-columns:1fr;
    gap:60px;
  }

  .service-detail-media {
    width:min(680px,100%);
    margin:auto;
  }

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

  body[data-concept="momentum"] .service-detail-hero-grid,
  body[data-concept="momentum"] .industry-detail-hero-grid {
    grid-template-columns:1fr;
  }

  body[data-concept="momentum"] .service-detail-media,
  body[data-concept="momentum"] .industry-detail-media {
    order:0;
  }

}

@media (max-width:760px) {
  .concept-compare {
    justify-content:flex-start;
    overflow-x:auto;
  }

  .concept-compare>span {
    display:none;
  }

  .concept-compare a {
    flex:none;
  }

  .outcome-section,
  .industries-section,
  .process-section,
  .home-pricing,
  .service-detail-hero,
  .service-outcomes,
  .service-system-section,
  .service-scope-section,
  .industry-system-section {
    padding:68px 0;
  }

  .pricing-preview-grid,
  .suite-comparison-grid,
  .concise-process,
  .service-outcome-strip,
  .service-scope-grid,
  .industry-insight-details>div {
    grid-template-columns:1fr;
  }

  .pricing-preview-action {
    align-items:flex-start;
    flex-direction:column;
  }

  .service-outcome-strip article {
    border-right:0;
    border-bottom:1px solid var(--line);
  }

  .service-detail-media {
    height:390px;
    padding:10px 0 0 10px;
  }

  .service-detail-media>div {
    right:10px;
  }

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

  .infographic-flow>i {
    height:24px;
    transform:rotate(90deg);
  }

  .infographic-core {
    align-items:flex-start;
    flex-direction:column;
  }

  .service-card {
    min-height:390px;
  }

  .suite-comparison-grid article {
    border-right:0;
    border-bottom:1px solid var(--line);
  }

  body[data-concept="momentum"] .hero-layout {
    grid-template-columns:1fr;
  }

  body[data-concept="momentum"] .hero-media {
    order:0;
    min-height:420px;
  }

  body[data-concept="momentum"] .hero-copy {
    padding-left:0;
  }

  body[data-concept="momentum"] .pricing-preview-grid,
  body[data-concept="momentum"] .outcome-grid {
    grid-template-columns:1fr;
  }

  body[data-concept="momentum"] .industry-rail-card {
    width:270px;
    height:330px;
  }

}

@media (max-width:760px) {
  .automation-head {
    align-items:flex-start;
    flex-direction:column;
  }

  .automation-orchestration {
    grid-template-columns:1fr;
  }

  .automation-arrow {
    height:25px;
    transform:rotate(90deg);
  }

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

  .automation-flow article {
    min-height:105px;
    border-right:0;
    border-bottom:1px solid var(--line);
  }

  .automation-flow article:last-child {
    border-bottom:0;
  }

  .automation-flow article>i {
    right:auto;
    left:calc(50% - 12px);
    top:auto;
    bottom:-12px;
    transform:rotate(90deg);
  }

  .automation-impact {
    grid-template-columns:1fr;
  }

  .automation-impact>div+div {
    border-left:0;
    border-top:1px solid rgba(255,255,255,.2);
  }

  .media-story-badge {
    max-width:60%;
    line-height:1.35;
  }

  .media-story-domain {
    display:none;
  }

}

/* Continuously moving, CMS-managed platform ecosystem */ .partners-section {
  overflow:hidden;
  padding:88px 0;
}

.partners-section .section-head {
  margin-bottom:36px;
}

.partner-rail-shell {
  width:100%;
  overflow:hidden;
  padding:8px 0 20px;
}

.partner-rail-track {
  width:max-content;
  display:flex;
  gap:18px;
  padding-left:24px;
  animation:partnerRail 58s linear infinite;
}

.partner-rail-shell:hover .partner-rail-track {
  animation-play-state:paused;
}

.partner-rail-card {
  width:315px;
  min-height:355px;
  flex:none;
  overflow:hidden;
  background:#fff;
  border:1px solid var(--line);
  box-shadow:0 16px 38px rgba(12,64,105,.08);
}

.partner-rail-media {
  height:176px;
  padding:16px;
  background:#f7fbfd;
  border-bottom:1px solid var(--line);
}

.partner-rail-media img {
  width:100%;
  height:100%;
  display:block;
  object-fit:contain;
}

.partner-rail-card>div:last-child {
  padding:20px;
}

.partner-rail-card small {
  display:block;
  color:var(--green);
  font-size:8px;
  font-weight:800;
  letter-spacing:.13em;
  text-transform:uppercase;
}

.partner-rail-card strong {
  display:block;
  margin:8px 0;
  font:800 18px/1.2 var(--font-display);
}

.partner-rail-card p {
  min-height:50px;
  margin:0;
  color:var(--muted);
  font-size:11px;
}

.partner-rail-card span {
  display:flex;
  align-items:center;
  gap:7px;
  margin-top:17px;
  padding-top:14px;
  color:#4e6a7d;
  border-top:1px solid var(--line);
  font-size:9px;
  font-weight:800;
}

.partner-rail-card span svg {
  color:var(--cyan);
}

.partner-publishing-note {
  display:flex;
  align-items:center;
  gap:8px;
  margin:14px 0 0;
  color:#5c7485;
  font-size:9px;
}

.partner-publishing-note svg {
  color:var(--green);
}

body[data-concept="momentum"] .partner-rail-card {
  width:380px;
  min-height:285px;
  display:grid;
  grid-template-columns:155px 1fr;
  border-radius:20px;
  background:#fff;
}

body[data-concept="momentum"] .partner-rail-media {
  height:100%;
  padding:12px;
  border:0;
  border-right:1px solid var(--line);
}

body[data-concept="momentum"] .partner-rail-card p {
  min-height:66px;
}

@keyframes partnerRail {
  to {
    transform:translateX(calc(-50% - 9px));
  }

}

@media (max-width:760px) {
  .partners-section {
    padding:68px 0;
  }

  .partner-rail-card,
  body[data-concept="momentum"] .partner-rail-card {
    width:270px;
    min-height:340px;
    display:block;
  }

  .partner-rail-media,
  body[data-concept="momentum"] .partner-rail-media {
    height:155px;
    border:0;
    border-bottom:1px solid var(--line);
  }

  .partner-publishing-note {
    align-items:flex-start;
  }

}

@media (prefers-reduced-motion:reduce) {
  .partner-rail-track {
    animation:none;
  }

}

@media (max-width:760px) {
  .campaign-bar {
    min-height:44px;
    height:auto;
    padding:7px 14px;
  }

  .campaign-bar a,
  .concept-compare a,
  .mobile-menu-button {
    min-height:44px;
  }

  .mobile-menu-button {
    min-width:44px;
  }

  .mobile-nav a {
    min-height:50px;
    display:flex;
    align-items:center;
    justify-content:space-between;
  }

  .footer-bottom a {
    min-height:44px;
    display:inline-flex;
    align-items:center;
  }

}

/* Refined content rhythm: compact, connected and presentation-ready */ .outcome-section,
.industries-section,
.process-section,
.service-detail-hero,
.service-outcomes,
.service-system-section,
.service-scope-section,
.industry-system-section,
.partners-section {
  padding:76px 0;
}

.industry-detail-hero,
.industry-value-section,
.industry-capabilities-section,
.industry-dashboard-section,
.related-industry-section,
.solutions-hub,
.industry-hub,
.engagement-section,
.how-page,
.roles-section,
.plan-section,
.resources-section,
.about-principles,
.boundary-section,
.contact-page,
.all-faqs,
.legal-section {
  padding:80px 0;
}

.page-hero {
  padding:78px 0 72px;
}

.section-head {
  margin-bottom:38px;
}

.industry-hub-intro {
  padding:78px 0 60px;
}

.industry-system-section {
  padding:80px 0;
}

.solution-group+.solution-group {
  margin-top:72px;
}

.industry-group+.industry-group {
  margin-top:62px;
}

.closing-cta {
  min-height:340px;
}

.service-system-layout,
.industry-system-layout {
  gap:5vw;
}

.service-detail-hero-grid,
.industry-detail-hero-grid {
  gap:5.5vw;
}

@media (max-width:760px) {
  .outcome-section,
  .industries-section,
  .process-section,
  .service-detail-hero,
  .service-outcomes,
  .service-system-section,
  .service-scope-section,
  .industry-system-section,
  .partners-section,
  .industry-detail-hero,
  .industry-value-section,
  .industry-capabilities-section,
  .industry-dashboard-section,
  .related-industry-section {
    padding:60px 0;
  }

  .section-head {
    margin-bottom:30px;
  }

  .closing-cta {
    min-height:310px;
  }

  .page-hero {
    padding:62px 0 58px;
  }

}

/* Lightweight hero product walkthrough: cross-platform, no additional media download */ .brand-x {
  color:var(--signal);
  text-shadow:0 0 16px color-mix(in srgb,var(--signal) 32%,transparent);
}

.hero-product-ui {
  position:absolute;
  z-index:4;
  left:22px;
  right:22px;
  bottom:22px;
  padding:16px 18px;
  color:#fff;
  background:rgba(7,38,70,.94);
  border:1px solid rgba(255,255,255,.18);
  box-shadow:0 18px 45px rgba(2,22,42,.28);
  backdrop-filter:blur(10px);
}

.hero-ui-head {
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding-bottom:12px;
  border-bottom:1px solid rgba(255,255,255,.15);
}

.hero-ui-head span {
  display:flex;
  align-items:center;
  gap:7px;
  color:#9ff0d2;
  font-size:7px;
  font-weight:900;
  letter-spacing:.13em;
}

.hero-ui-head .live-dot {
  width:6px;
  height:6px;
}

.hero-ui-head b {
  padding:5px 7px;
  color:#08284b;
  background:var(--signal);
  font-size:6px;
  letter-spacing:.11em;
}

.hero-ui-flow {
  display:grid;
  grid-template-columns:1fr 16px 1fr 16px 1fr 16px 1fr;
  align-items:center;
  gap:3px;
  padding:15px 0 10px;
}

.hero-ui-flow>span {
  min-height:54px;
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  gap:7px;
  color:var(--cyan);
  background:rgba(255,255,255,.07);
  border:1px solid rgba(255,255,255,.11);
}

.hero-ui-flow>span:nth-of-type(even) {
  color:var(--signal);
}

.hero-ui-flow small {
  color:#fff;
  font-size:6px;
  font-weight:900;
  letter-spacing:.08em;
}

.hero-ui-flow>i {
  display:grid;
  place-items:center;
  color:#88a8bb;
}

.hero-ui-progress {
  height:3px;
  overflow:hidden;
  background:rgba(255,255,255,.13);
}

.hero-ui-progress i {
  width:42%;
  height:100%;
  display:block;
  background:linear-gradient(90deg,var(--cyan),var(--signal));
  animation:heroInterfaceWalk 4.8s ease-in-out infinite;
}

.hero-product-ui>p {
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:18px;
  margin:11px 0 0;
}

.hero-product-ui>p strong {
  font-size:8px;
  letter-spacing:.03em;
}

.hero-product-ui>p small {
  color:#9eb8c8;
  font-size:7px;
}

body[data-concept="momentum"] .hero-product-ui {
  background:rgba(17,24,63,.94);
  border-radius:18px;
}

body[data-concept="momentum"] .hero-ui-flow>span {
  border-radius:9px;
}

@keyframes heroInterfaceWalk {
  0% {
    transform:translateX(-105%);
  }

  50%,
  70% {
    transform:translateX(140%);
  }

  100% {
    transform:translateX(250%);
  }

}

@media (max-width:640px) {
  .hero-product-ui {
    left:12px;
    right:12px;
    bottom:12px;
    padding:13px;
  }

  .hero-ui-flow {
    grid-template-columns:1fr 10px 1fr 10px 1fr 10px 1fr;
  }

  .hero-ui-flow>span {
    min-height:48px;
  }

  .hero-ui-flow svg {
    width:13px;
    height:13px;
  }

  .hero-product-ui>p small {
    display:none;
  }

}

@media (prefers-reduced-motion:reduce) {
  .hero-ui-progress i {
    width:100%;
    animation:none;
  }

}

/* v6 UX refinement: stronger visual storytelling and tighter page rhythm */ .home-hero .hero-media img {
  object-position:57% 42%;
  filter:saturate(.96) contrast(1.035);
}

.outcome-section,
.industries-section,
.partners-section,
.delivery-rhythm-section {
  padding:64px 0;
}

.outcome-section .section-head,
.industries-section .section-head,
.partners-section .section-head,
.delivery-rhythm-section .section-head {
  margin-bottom:30px;
}

.outcome-experience-grid {
  grid-template-columns:repeat(2,minmax(0,1fr));
  gap:18px;
  border:0;
}

.outcome-experience-grid .outcome-experience-card {
  min-height:395px;
  padding:25px 26px;
  border:1px solid var(--line);
  border-right:1px solid var(--line);
  border-top:4px solid var(--accent);
  background:#fff;
  box-shadow:0 16px 44px rgba(12,64,105,.07);
}

.outcome-experience-card .outcome-top {
  margin-bottom:15px;
}

.outcome-experience-card h3 {
  margin:0 0 17px;
  font-size:27px;
}

.outcome-experience-card>p {
  min-height:0;
  margin:18px 0;
  color:var(--muted);
  font-size:12px;
}

.outcome-experience-card>a {
  display:flex;
  align-items:center;
  justify-content:space-between;
  margin-top:auto;
  padding-top:15px;
  border-top:1px solid var(--line);
  font-size:11px;
  font-weight:800;
}

.outcome-experience {
  overflow:hidden;
  background:color-mix(in srgb,var(--accent) 7%,#fff);
  border:1px solid color-mix(in srgb,var(--accent) 22%,var(--line));
}

.outcome-path {
  display:grid;
  grid-template-columns:1fr 18px 1fr 18px 1fr;
  align-items:center;
  padding:14px;
}

.outcome-path>span {
  min-height:68px;
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  gap:8px;
  color:var(--accent);
  background:#fff;
  border:1px solid color-mix(in srgb,var(--accent) 16%,var(--line));
}

.outcome-path>span small {
  color:var(--ink);
  font-size:7px;
  font-weight:900;
  letter-spacing:.08em;
  text-transform:uppercase;
}

.outcome-path>i {
  display:grid;
  place-items:center;
  color:var(--accent);
}

.outcome-value {
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:18px;
  padding:11px 14px;
  color:#fff;
  background:linear-gradient(110deg,var(--navy),color-mix(in srgb,var(--navy) 75%,var(--accent)));
}

.outcome-value small {
  flex:none;
  color:color-mix(in srgb,var(--accent) 70%,#fff);
  font-size:6px;
  font-weight:900;
  letter-spacing:.12em;
}

.outcome-value strong {
  font-size:9px;
  text-align:right;
}

body[data-concept="momentum"] .outcome-experience-card {
  border-radius:20px;
}

body[data-concept="momentum"] .outcome-experience {
  border-radius:13px;
}

body[data-concept="momentum"] .outcome-path>span {
  border-radius:9px;
}

body[data-concept="momentum"] .outcome-value {
  border-radius:0 0 12px 12px;
}

.delivery-rhythm-section {
  position:relative;
  overflow:hidden;
  background:radial-gradient(circle at 88% 12%,rgba(52,211,153,.16),transparent 30%),linear-gradient(125deg,var(--navy),var(--navy-2));
}

.delivery-rhythm-section:before {
  content:'';
  width:420px;
  height:420px;
  position:absolute;
  left:-260px;
  bottom:-280px;
  border:1px solid rgba(36,196,229,.2);
  border-radius:50%;
  box-shadow:0 0 0 70px rgba(36,196,229,.025),0 0 0 140px rgba(52,211,153,.02);
}

.delivery-rhythm-section .wrap {
  position:relative;
  z-index:1;
}

.delivery-rhythm-section .section-head>p {
  color:#b6c8d3;
}

.delivery-timeline {
  position:relative;
  display:grid;
  grid-template-columns:repeat(5,minmax(0,1fr));
  gap:12px;
}

.delivery-timeline:before {
  content:'';
  height:1px;
  position:absolute;
  z-index:-1;
  left:8%;
  right:8%;
  top:93px;
  background:linear-gradient(90deg,var(--cyan),var(--signal));
}

.delivery-stage {
  min-height:305px;
  display:flex;
  flex-direction:column;
  padding:19px;
  color:#fff;
  background:rgba(255,255,255,.065);
  border:1px solid rgba(255,255,255,.13);
  box-shadow:0 18px 45px rgba(0,0,0,.1);
  backdrop-filter:blur(5px);
}

.delivery-stage-head {
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
}

.delivery-stage-head span {
  color:#7895a8;
  font-size:8px;
  font-weight:900;
}

.delivery-stage-head small {
  color:#fff;
  font-size:8px;
  font-weight:900;
  letter-spacing:.13em;
}

.delivery-stage-visual {
  display:grid;
  grid-template-columns:1fr 50px 1fr;
  align-items:center;
  margin:28px -19px 23px;
}

.delivery-stage-visual>i {
  height:1px;
  background:rgba(255,255,255,.18);
}

.delivery-stage-visual>b {
  width:50px;
  height:50px;
  display:grid;
  place-items:center;
  color:var(--navy);
  background:var(--signal);
  border-radius:50%;
  box-shadow:0 0 0 8px rgba(52,211,153,.09);
}

.delivery-stage:nth-child(even) .delivery-stage-visual>b {
  background:var(--cyan);
}

.delivery-stage p {
  margin:0;
  color:#b9cbd6;
  font-size:11px;
}

.delivery-stage>strong {
  display:flex;
  align-items:center;
  gap:7px;
  margin-top:auto;
  padding-top:17px;
  color:#d9f8eb;
  border-top:1px solid rgba(255,255,255,.12);
  font-size:9px;
}

.delivery-stage>strong svg {
  color:var(--signal);
}

.delivery-loop-note {
  display:grid;
  grid-template-columns:34px 1fr auto;
  align-items:center;
  gap:15px;
  margin-top:14px;
  padding:16px 18px;
  color:var(--navy);
  background:linear-gradient(90deg,var(--signal),#84e7c2);
}

.delivery-loop-note>svg {
  color:#087a59;
}

.delivery-loop-note span {
  font-size:10px;
}

.delivery-loop-note span strong {
  display:block;
  font-size:11px;
}

.delivery-loop-note a {
  display:flex;
  align-items:center;
  gap:7px;
  font-size:10px;
  font-weight:900;
}

body[data-concept="momentum"] .delivery-rhythm-section {
  background:radial-gradient(circle at 12% 18%,#303e87,transparent 34%),linear-gradient(130deg,#11183f,#101f52);
}

body[data-concept="momentum"] .delivery-stage {
  border-radius:18px;
}

body[data-concept="momentum"] .delivery-loop-note {
  border-radius:14px;
}

.service-detail-hero-grid,
.industry-detail-hero-grid {
  align-items:stretch;
}

.service-detail-hero-grid>div:first-child,
.industry-detail-copy {
  display:flex;
  flex-direction:column;
  justify-content:center;
  padding:20px 0;
}

.service-detail-media,
.industry-detail-media {
  height:auto;
  min-height:510px;
  align-self:stretch;
}

.service-detail-media>img {
  position:absolute;
  z-index:1;
  inset:18px 0 0 18px;
  width:calc(100% - 18px);
  height:calc(100% - 18px);
}

.industry-detail-media img {
  height:calc(100% - 18px);
}

.system-section-head {
  display:grid;
  grid-template-columns:minmax(0,1.05fr) minmax(280px,.65fr);
  gap:8vw;
  align-items:end;
  margin-bottom:30px;
}

.system-section-head .eyebrow {
  grid-column:1/-1;
  margin-bottom:-3px;
}

.system-section-head h2 {
  max-width:760px;
  margin:0;
  font-size:clamp(34px,3.7vw,53px);
}

.system-section-head>p:last-child {
  max-width:500px;
  margin:0;
  color:var(--muted);
  font-size:14px;
}

.system-media-grid {
  display:grid;
  grid-template-columns:minmax(0,1.12fr) minmax(360px,.88fr);
  gap:26px;
  align-items:stretch;
}

.system-infographic-panel,
.system-media-grid .media-story {
  min-width:0;
}

.system-infographic-panel>div {
  height:100%;
}

.system-media-grid .media-story {
  display:flex;
  flex-direction:column;
  margin:0;
  background:#f5fafc;
  border:1px solid var(--line);
  box-shadow:0 18px 48px rgba(12,64,105,.08);
}

.system-media-grid .media-story-frame {
  flex:none;
  box-shadow:none;
}

.system-media-grid .media-story figcaption {
  min-height:0;
  display:flex;
  flex:1;
  flex-direction:column;
  padding:20px;
}

.system-media-grid .media-story figcaption>strong {
  font-size:16px;
}

.system-media-grid .media-story figcaption>p {
  font-size:11px;
}

.media-story-proof {
  display:grid;
  grid-template-columns:1fr 14px 1fr 14px 1fr;
  align-items:center;
  gap:4px;
  margin-top:auto;
  padding-top:18px;
}

.media-story-proof>span {
  min-height:65px;
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  gap:8px;
  color:var(--cyan);
  text-align:center;
  background:#fff;
  border:1px solid var(--line);
}

.media-story-proof>span:nth-of-type(2) {
  color:var(--green);
}

.media-story-proof>span:nth-of-type(3) {
  color:#765ed1;
}

.media-story-proof b {
  color:var(--ink);
  font-size:7px;
  line-height:1.25;
}

.media-story-proof>i {
  display:grid;
  place-items:center;
  color:var(--green);
}

body[data-concept="momentum"] .system-media-grid .media-story {
  border-radius:20px;
  overflow:hidden;
}

body[data-concept="momentum"] .media-story-proof>span {
  border-radius:9px;
}

@media (max-width:1050px) {
  .delivery-timeline {
    grid-template-columns:repeat(3,1fr);
  }

  .delivery-timeline:before {
    display:none;
  }

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

  .system-media-grid .media-story {
    width:min(760px,100%);
  }

  .service-detail-media,
  .industry-detail-media {
    min-height:470px;
  }

}

@media (max-width:760px) {
  .outcome-section,
  .industries-section,
  .partners-section,
  .delivery-rhythm-section {
    padding:52px 0;
  }

  .outcome-experience-grid,
  .delivery-timeline,
  .system-section-head {
    grid-template-columns:1fr;
  }

  .outcome-experience-grid .outcome-experience-card {
    min-height:0;
    padding:22px;
  }

  .outcome-path {
    grid-template-columns:1fr 14px 1fr 14px 1fr;
    padding:10px;
  }

  .outcome-path>span {
    min-height:62px;
  }

  .outcome-value {
    align-items:flex-start;
    flex-direction:column;
    gap:4px;
  }

  .outcome-value strong {
    text-align:left;
  }

  .delivery-stage {
    min-height:250px;
  }

  .delivery-loop-note {
    grid-template-columns:30px 1fr;
  }

  .delivery-loop-note a {
    grid-column:2;
  }

  .system-section-head {
    gap:14px;
  }

  .system-section-head .eyebrow {
    grid-column:auto;
    margin-bottom:0;
  }

  .system-media-grid {
    gap:20px;
  }

  .system-media-grid .media-story {
    width:100%;
  }

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

  .media-story-proof>i {
    height:14px;
    transform:rotate(90deg);
  }

  .media-story-proof>span {
    min-height:54px;
  }

  .service-detail-media,
  .industry-detail-media {
    min-height:390px;
    height:390px;
  }

  .service-detail-media>img {
    inset:10px 0 0 10px;
    width:calc(100% - 10px);
    height:calc(100% - 10px);
  }

}

.system-infographic-panel>div {
  display:flex;
  flex-direction:column;
}

.system-infographic-panel .infographic-core,
.system-infographic-panel .automation-signals {
  margin-top:auto;
}

.system-section-head {
  column-gap:8vw;
  row-gap:10px;
}

/* v7: five-concept brand studio, cinematic hero motion and richer visual sections */ .concept-compare {
  overflow-x:auto;
  justify-content:flex-start;
  scrollbar-width:thin;
}

.concept-compare>span {
  position:sticky;
  left:0;
  z-index:2;
  padding-right:10px;
  background:inherit;
}

.concept-compare a {
  flex:none;
}

.hero-media {
  isolation:isolate;
  overflow:hidden;
}

.hero-media img {
  animation:heroPortraitDrift 13s ease-in-out infinite alternate;
  will-change:transform,filter;
}

.hero-motion-network {
  position:absolute;
  z-index:3;
  inset:0;
  overflow:hidden;
  pointer-events:none;
}

.motion-line {
  height:1px;
  position:absolute;
  display:block;
  background:linear-gradient(90deg,transparent,var(--cyan),var(--signal),transparent);
  opacity:.7;
  transform-origin:left;
}

.line-one {
  width:58%;
  left:5%;
  top:27%;
  transform:rotate(12deg);
}

.line-two {
  width:48%;
  right:4%;
  top:43%;
  transform:rotate(-18deg);
}

.motion-node {
  width:38px;
  height:38px;
  position:absolute;
  display:grid;
  place-items:center;
  color:#fff;
  background:rgba(8,40,75,.83);
  border:1px solid rgba(255,255,255,.38);
  border-radius:50%;
  box-shadow:0 12px 30px rgba(2,20,40,.2);
  backdrop-filter:blur(7px);
  animation:heroNodeFloat 4.8s ease-in-out infinite;
}

.node-search {
  left:6%;
  top:20%;
}

.node-loop {
  right:6%;
  top:34%;
  animation-delay:-1.5s;
}

.node-chart {
  left:17%;
  top:49%;
  animation-delay:-3s;
}

.motion-pulse {
  width:10px;
  height:10px;
  position:absolute;
  border-radius:50%;
  background:var(--signal);
  box-shadow:0 0 0 0 color-mix(in srgb,var(--signal) 55%,transparent);
  animation:heroPulse 2.8s ease-out infinite;
}

.pulse-one {
  left:46%;
  top:34%;
}

.pulse-two {
  right:28%;
  top:21%;
  animation-delay:-1.4s;
}

@keyframes heroPortraitDrift {
  0% {
    transform:scale(1.01) translate3d(0,0,0);
    filter:saturate(.93) contrast(1.03);
  }

  100% {
    transform:scale(1.065) translate3d(-.8%,.5%,0);
    filter:saturate(1.07) contrast(1.045);
  }

}

@keyframes heroNodeFloat {
  0%,
  100% {
    transform:translateY(0) rotate(0);
  }

  50% {
    transform:translateY(-10px) rotate(3deg);
  }

}

@keyframes heroPulse {
  0% {
    transform:scale(.7);
    opacity:1;
    box-shadow:0 0 0 0 color-mix(in srgb,var(--signal) 55%,transparent);
  }

  75%,
  100% {
    transform:scale(1.1);
    opacity:.2;
    box-shadow:0 0 0 22px transparent;
  }

}

.outcome-experience-grid .outcome-experience-card {
  min-height:585px;
}

.outcome-photo {
  height:155px;
  position:relative;
  margin:0 0 16px;
  overflow:hidden;
  background:var(--navy);
}

.outcome-photo img {
  width:100%;
  height:100%;
  display:block;
  object-fit:cover;
  transition:transform .5s ease;
}

.outcome-photo:after {
  content:'';
  position:absolute;
  inset:45% 0 0;
  background:linear-gradient(transparent,rgba(5,30,52,.72));
}

.outcome-photo figcaption {
  position:absolute;
  z-index:2;
  left:13px;
  bottom:11px;
  display:flex;
  align-items:center;
  gap:7px;
  margin:0;
  color:#fff;
  font-size:8px;
  font-weight:800;
  letter-spacing:.06em;
}

.outcome-photo figcaption svg {
  color:var(--signal);
}

.outcome-experience-card:hover .outcome-photo img {
  transform:scale(1.04);
}

.industries-section {
  padding-bottom:38px;
}

.industries-section .industry-rail-shell {
  padding-bottom:8px;
}

.industries-section .section-action {
  margin-top:18px;
}

.partners-section {
  padding-top:44px;
}

.industries-section+.partners-section {
  border-top:1px solid var(--line);
}

.footer-social {
  min-height:108px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:35px;
  padding:22px 0;
  border-top:1px solid rgba(255,255,255,.13);
  border-bottom:1px solid rgba(255,255,255,.13);
}

.footer-social .eyebrow {
  margin:0 0 7px;
  color:var(--signal);
}

.footer-social>div:first-child strong {
  color:#fff;
  font-size:15px;
}

.footer-social-links {
  display:flex;
  align-items:center;
  flex-wrap:wrap;
  gap:8px;
}

.footer-social-links>a,
.social-link-pending {
  min-height:44px;
  display:flex;
  align-items:center;
  gap:8px;
  padding:9px 11px;
  color:#e0eaf0;
  background:rgba(255,255,255,.055);
  border:1px solid rgba(255,255,255,.13);
  font-size:9px;
  font-weight:800;
}

.footer-social-links>a:hover {
  color:var(--navy);
  background:var(--signal);
  border-color:var(--signal);
}

.social-link-pending {
  color:#8aa0ae;
}

.social-link-pending small {
  padding-left:7px;
  color:#6f8796;
  border-left:1px solid rgba(255,255,255,.12);
  font-size:5px;
  letter-spacing:.1em;
}

.social-cms-card {
  margin-top:18px;
}

.principle-visual-grid {
  grid-template-columns:repeat(6,1fr);
  gap:16px;
  border:0;
}

.principle-visual-grid article {
  grid-column:span 2;
  min-height:370px;
  padding:0;
  overflow:hidden;
  background:#fff;
  border:1px solid var(--line);
  box-shadow:0 16px 42px rgba(12,64,105,.07);
}

.principle-visual-grid article:nth-child(n+4) {
  grid-column:span 3;
}

.principle-media {
  height:205px;
  position:relative;
  overflow:hidden;
}

.principle-media:after {
  content:'';
  position:absolute;
  inset:55% 0 0;
  background:linear-gradient(transparent,rgba(8,40,75,.72));
}

.principle-media img {
  width:100%;
  height:100%;
  display:block;
  object-fit:cover;
  transition:transform .5s ease;
}

.principle-media span {
  position:absolute;
  z-index:2;
  left:18px;
  bottom:14px;
  color:#fff;
  font-size:9px;
}

.principle-copy {
  padding:20px 22px;
}

.principle-copy h3 {
  margin:0 0 9px;
  font-size:19px;
}

.principle-copy p {
  margin:0;
  color:var(--muted);
  font-size:12px;
}

.principle-visual-grid article:hover .principle-media img {
  transform:scale(1.04);
}

/* 03 — Aurora Intelligence: immersive AI-native presentation */ body[data-concept="aurora"] {
  --navy:#071831;
  --navy-2:#0c2445;
  --navy-3:#12355f;
  --ink:#10233d;
  --muted:#536a81;
  --line:#d9e5ed;
  --paper:#f2f8fb;
  --signal:#7cf3c5;
  --cyan:#46c7ff;
  --green:#32c89b;
  background:#f8fcff;
}

body[data-concept="aurora"] .campaign-bar {
  color:#071831;
  background:linear-gradient(90deg,#7cf3c5,#46c7ff);
}

body[data-concept="aurora"] .campaign-bar a {
  color:#071831;
  border-color:#071831;
}

body[data-concept="aurora"] .concept-compare {
  color:#a7c0d5;
  background:#071831;
  border-color:#17365c;
}

body[data-concept="aurora"] .concept-compare a {
  color:#c3d5e4;
}

body[data-concept="aurora"] .concept-compare a.active {
  color:#071831;
  background:#7cf3c5;
  border-color:#7cf3c5;
}

body[data-concept="aurora"] .site-header {
  color:#fff;
  background:rgba(7,24,49,.97);
  border-color:#19395e;
  box-shadow:none;
}

body[data-concept="aurora"] .brand-dark {
  color:#fff;
}

body[data-concept="aurora"] .brand-dark .brand-words small {
  color:#7cf3c5;
}

body[data-concept="aurora"] .nav-item>a {
  color:#dceaf4;
}

body[data-concept="aurora"] .nav-item:hover>a {
  color:#7cf3c5;
}

body[data-concept="aurora"] .mobile-menu-button {
  color:#fff;
}

body[data-concept="aurora"] .home-hero {
  color:#fff;
  padding-top:48px;
  background:radial-gradient(circle at 18% 12%,rgba(70,199,255,.25),transparent 28%),radial-gradient(circle at 83% 25%,rgba(124,243,197,.16),transparent 31%),linear-gradient(145deg,#071831,#0a2850 58%,#063e55);
}

body[data-concept="aurora"] .hero-layout {
  min-height:0;
  grid-template-columns:1fr;
  gap:38px;
  padding-bottom:52px;
  text-align:center;
}

body[data-concept="aurora"] .hero-copy {
  width:min(920px,100%);
  margin:auto;
}

body[data-concept="aurora"] .hero-copy h1,
body[data-concept="aurora"] .hero-copy>p:not(.eyebrow) {
  max-width:900px;
  margin-left:auto;
  margin-right:auto;
}

body[data-concept="aurora"] .hero-copy>p:not(.eyebrow) {
  color:#c7d8e5;
}

body[data-concept="aurora"] .hero-copy .button-row {
  justify-content:center;
}

body[data-concept="aurora"] .home-hero .text-link {
  color:#fff;
}

body[data-concept="aurora"] .hero-media {
  width:min(980px,100%);
  min-height:520px;
  margin:auto;
  border-radius:30px;
  box-shadow:0 35px 90px rgba(0,0,0,.32);
}

body[data-concept="aurora"] .hero-product-ui {
  left:auto;
  right:24px;
  width:min(520px,58%);
  border-radius:18px;
  background:rgba(7,24,49,.94);
}

body[data-concept="aurora"] .capability-strip {
  grid-template-columns:repeat(4,1fr);
  background:rgba(255,255,255,.055);
  border:1px solid rgba(255,255,255,.11);
}

body[data-concept="aurora"] .capability-strip span {
  color:#d2e2ed;
  border-color:rgba(255,255,255,.12);
}

body[data-concept="aurora"] .outcome-experience-card,
body[data-concept="aurora"] .principle-visual-grid article,
body[data-concept="aurora"] .industry-rail-card,
body[data-concept="aurora"] .partner-rail-card {
  border-radius:22px;
}

body[data-concept="aurora"] .delivery-stage,
body[data-concept="aurora"] .delivery-loop-note,
body[data-concept="aurora"] .media-story,
body[data-concept="aurora"] .growth-infographic,
body[data-concept="aurora"] .automation-infographic {
  border-radius:18px;
  overflow:hidden;
}

body[data-concept="aurora"] .page-hero,
body[data-concept="aurora"] .service-detail-hero,
body[data-concept="aurora"] .industry-detail-hero {
  color:#fff;
  background:radial-gradient(circle at 86% 18%,#17456d,transparent 34%),#071831;
  border:0;
}

body[data-concept="aurora"] .page-hero-grid>div:first-child>p:not(.eyebrow),
body[data-concept="aurora"] .service-detail-hero-grid>div:first-child>p:not(.eyebrow),
body[data-concept="aurora"] .industry-detail-copy>p:not(.eyebrow) {
  color:#bfd1de;
}

body[data-concept="aurora"] .page-hero .text-link,
body[data-concept="aurora"] .service-detail-hero .text-link,
body[data-concept="aurora"] .industry-detail-hero .text-link {
  color:#fff;
}

/* 04 — Signal Precision: crisp enterprise editorial system */ body[data-concept="signal"] {
  --navy:#18242f;
  --navy-2:#223441;
  --navy-3:#2d4858;
  --ink:#17232d;
  --muted:#5c6a72;
  --line:#d9d7cf;
  --paper:#f5f2eb;
  --signal:#ff8858;
  --cyan:#086cf0;
  --green:#0ca678;
  background:#fbfaf7;
}

body[data-concept="signal"] .campaign-bar {
  color:#fff;
  background:#086cf0;
}

body[data-concept="signal"] .campaign-bar a {
  color:#fff;
  border-color:#fff;
}

body[data-concept="signal"] .concept-compare {
  background:#f0ede6;
}

body[data-concept="signal"] .concept-compare a.active {
  color:#fff;
  background:#18242f;
  border-color:#18242f;
}

body[data-concept="signal"] .home-hero {
  color:var(--ink);
  padding-top:42px;
  background:linear-gradient(90deg,#fbfaf7 0 68%,#eee9df 68%);
}

body[data-concept="signal"] .hero-layout {
  grid-template-columns:.78fr 1.22fr;
  gap:30px;
  min-height:575px;
  padding-bottom:46px;
}

body[data-concept="signal"] .hero-copy h1 {
  font-size:clamp(46px,5.5vw,76px);
}

body[data-concept="signal"] .hero-copy>p:not(.eyebrow) {
  color:var(--muted);
}

body[data-concept="signal"] .home-hero .text-link {
  color:var(--ink);
}

body[data-concept="signal"] .hero-media {
  min-height:500px;
  clip-path:polygon(0 0,94% 0,100% 8%,100% 100%,6% 100%,0 92%);
}

body[data-concept="signal"] .hero-product-ui {
  background:rgba(24,36,47,.94);
}

body[data-concept="signal"] .capability-strip {
  grid-template-columns:repeat(4,1fr);
  background:#fff;
  border:1px solid var(--line);
}

body[data-concept="signal"] .capability-strip span {
  color:#344a58;
  border-color:var(--line);
}

body[data-concept="signal"] .outcome-experience-grid {
  grid-template-columns:repeat(4,1fr);
}

body[data-concept="signal"] .outcome-experience-grid .outcome-experience-card {
  min-height:640px;
  padding:19px;
}

body[data-concept="signal"] .outcome-experience-card h3 {
  font-size:23px;
}

body[data-concept="signal"] .outcome-path {
  grid-template-columns:1fr;
  gap:5px;
}

body[data-concept="signal"] .outcome-path>i {
  height:10px;
  transform:rotate(90deg);
}

body[data-concept="signal"] .outcome-path>span {
  min-height:48px;
  flex-direction:row;
}

body[data-concept="signal"] .delivery-stage {
  border-radius:0;
}

body[data-concept="signal"] .page-hero,
body[data-concept="signal"] .service-detail-hero,
body[data-concept="signal"] .industry-detail-hero {
  background:#fbfaf7;
}

body[data-concept="signal"] .bluewash-section,
body[data-concept="signal"] .paper-section {
  background:#f5f2eb;
}

/* 05 — Pacific Horizon: human-centred West Coast confidence */ body[data-concept="pacific"] {
  --navy:#0b3a37;
  --navy-2:#0f4b46;
  --navy-3:#17615a;
  --ink:#14352f;
  --muted:#5d716c;
  --line:#d5e2dc;
  --paper:#f3f7f2;
  --signal:#ff765f;
  --cyan:#1178c9;
  --green:#1b9a75;
  background:#fbfdfb;
}

body[data-concept="pacific"] .campaign-bar {
  color:#fff;
  background:#1178c9;
}

body[data-concept="pacific"] .campaign-bar a {
  color:#fff;
  border-color:#fff;
}

body[data-concept="pacific"] .concept-compare {
  background:#edf5f0;
}

body[data-concept="pacific"] .concept-compare a.active {
  color:#fff;
  background:#0b3a37;
  border-color:#0b3a37;
}

body[data-concept="pacific"] .home-hero {
  color:var(--ink);
  padding:38px 0;
  background:linear-gradient(145deg,#e5f1ec,#f8f3e9);
}

body[data-concept="pacific"] .hero-layout {
  min-height:680px;
  position:relative;
  display:block;
  padding-bottom:0;
}

body[data-concept="pacific"] .hero-media {
  position:absolute;
  inset:0;
  min-height:0;
  border-radius:34px;
  box-shadow:0 30px 80px rgba(11,58,55,.18);
}

body[data-concept="pacific"] .hero-copy {
  width:min(570px,58%);
  position:relative;
  z-index:6;
  padding:46px;
  margin:34px 0 0 34px;
  background:rgba(255,255,255,.92);
  border:1px solid rgba(255,255,255,.7);
  border-radius:26px;
  box-shadow:0 25px 70px rgba(11,58,55,.16);
  backdrop-filter:blur(15px);
}

body[data-concept="pacific"] .hero-copy h1 {
  font-size:clamp(45px,5vw,72px);
}

body[data-concept="pacific"] .hero-copy>p:not(.eyebrow) {
  color:var(--muted);
}

body[data-concept="pacific"] .home-hero .text-link {
  color:var(--ink);
}

body[data-concept="pacific"] .hero-product-ui {
  left:auto;
  right:26px;
  width:45%;
  border-radius:17px;
  background:rgba(11,58,55,.94);
}

body[data-concept="pacific"] .capability-strip {
  width:min(1180px,calc(100% - 48px));
  grid-template-columns:repeat(4,1fr);
  margin:18px auto 0;
  background:#fff;
  border:1px solid var(--line);
  border-radius:16px;
  overflow:hidden;
}

body[data-concept="pacific"] .capability-strip span {
  color:#315d55;
  border-color:var(--line);
}

body[data-concept="pacific"] .outcome-experience-card,
body[data-concept="pacific"] .principle-visual-grid article,
body[data-concept="pacific"] .industry-rail-card,
body[data-concept="pacific"] .partner-rail-card,
body[data-concept="pacific"] .delivery-stage,
body[data-concept="pacific"] .delivery-loop-note {
  border-radius:20px;
}

body[data-concept="pacific"] .bluewash-section,
body[data-concept="pacific"] .paper-section {
  background:#f3f7f2;
}

body[data-concept="pacific"] .delivery-rhythm-section {
  background:radial-gradient(circle at 90% 15%,rgba(255,118,95,.2),transparent 28%),linear-gradient(130deg,#0b3a37,#0c5750);
}

body[data-concept="pacific"] .page-hero {
  background:linear-gradient(145deg,#e5f1ec,#f8f3e9);
}

body[data-concept="pacific"] .service-detail-hero,
body[data-concept="pacific"] .industry-detail-hero {
  background:#f8fbf8;
}

@media (max-width:1100px) {
  body[data-concept="signal"] .outcome-experience-grid {
    grid-template-columns:1fr 1fr;
  }

  .principle-visual-grid {
    grid-template-columns:1fr 1fr;
  }

  .principle-visual-grid article,
  .principle-visual-grid article:nth-child(n+4) {
    grid-column:auto;
  }

}

@media (max-width:900px) {
  body[data-concept="aurora"] .hero-media {
    min-height:470px;
  }

  body[data-concept="signal"] .hero-layout {
    grid-template-columns:1fr;
  }

  body[data-concept="pacific"] .home-hero {
    padding:28px 0;
  }

  body[data-concept="pacific"] .hero-layout {
    min-height:0;
    display:grid;
    grid-template-columns:1fr;
    gap:24px;
  }

  body[data-concept="pacific"] .hero-copy {
    width:100%;
    margin:0;
    padding:30px;
  }

  body[data-concept="pacific"] .hero-media {
    position:relative;
    inset:auto;
    min-height:460px;
  }

  body[data-concept="pacific"] .hero-product-ui {
    left:16px;
    right:16px;
    width:auto;
  }

}

@media (max-width:760px) {
  .outcome-experience-grid .outcome-experience-card {
    min-height:0;
  }

  .outcome-photo {
    height:175px;
  }

  .footer-social {
    align-items:flex-start;
    flex-direction:column;
  }

  .footer-social-links {
    width:100%;
  }

  .footer-social-links>a,
  .social-link-pending {
    flex:1 1 calc(50% - 8px);
    justify-content:center;
  }

  .principle-visual-grid,
  body[data-concept="signal"] .outcome-experience-grid {
    grid-template-columns:1fr;
  }

  .principle-media {
    height:220px;
  }

  body[data-concept="aurora"] .hero-media {
    min-height:410px;
  }

  body[data-concept="aurora"] .hero-product-ui {
    left:12px;
    right:12px;
    width:auto;
  }

  body[data-concept="signal"] .outcome-path {
    grid-template-columns:1fr 14px 1fr 14px 1fr;
  }

  body[data-concept="signal"] .outcome-path>i {
    height:auto;
    transform:none;
  }

  body[data-concept="signal"] .outcome-path>span {
    min-height:62px;
    flex-direction:column;
  }

  body[data-concept="pacific"] .hero-copy {
    padding:25px;
  }

  body[data-concept="pacific"] .hero-media {
    min-height:420px;
  }

}

@media (prefers-reduced-motion:reduce) {
  .hero-media img,
  .motion-node,
  .motion-pulse {
    animation:none;
  }

  .hero-media img {
    transform:none;
  }

}

/* v8: consistent single-row outcome alignment on desktop */ body[data-concept] .outcome-experience-grid {
  grid-template-columns:repeat(4,minmax(0,1fr));
  gap:12px;
}

body[data-concept] .outcome-experience-grid .outcome-experience-card {
  min-height:510px;
  padding:17px 16px;
}

body[data-concept] .outcome-experience-card .outcome-top {
  margin-bottom:9px;
}

body[data-concept] .outcome-experience-card h3 {
  margin-bottom:11px;
  font-size:21px;
}

body[data-concept] .outcome-photo {
  height:118px;
  margin-bottom:11px;
}

body[data-concept] .outcome-photo figcaption {
  left:10px;
  bottom:8px;
  font-size:7px;
}

body[data-concept] .outcome-path,
body[data-concept="signal"] .outcome-path {
  grid-template-columns:1fr 11px 1fr 11px 1fr;
  gap:0;
  padding:8px;
}

body[data-concept] .outcome-path>span,
body[data-concept="signal"] .outcome-path>span {
  min-height:54px;
  flex-direction:column;
  gap:5px;
  padding:5px 2px;
  text-align:center;
}

body[data-concept] .outcome-path>span small {
  font-size:6px;
  letter-spacing:.04em;
}

body[data-concept] .outcome-path>i,
body[data-concept="signal"] .outcome-path>i {
  height:auto;
  transform:none;
}

body[data-concept] .outcome-value {
  align-items:flex-start;
  flex-direction:column;
  gap:3px;
  padding:8px 10px;
}

body[data-concept] .outcome-value strong {
  text-align:left;
  font-size:8px;
  line-height:1.3;
}

body[data-concept] .outcome-experience-card>p {
  margin:12px 0;
  font-size:10px;
  line-height:1.45;
}

body[data-concept] .outcome-experience-card>a {
  padding-top:11px;
  font-size:9px;
}

.industry-value-grid {
  grid-template-columns:1fr;
  gap:28px;
}

.industry-value-grid>div:first-child {
  max-width:880px;
}

.industry-outcome-grid {
  grid-template-columns:repeat(4,minmax(0,1fr));
  gap:12px;
}

.industry-outcome-grid article {
  min-height:145px;
  padding:18px;
}

.industry-outcome-grid small {
  margin:17px 0 6px;
}

@media (max-width:900px) {
  body[data-concept] .outcome-experience-grid,
  .industry-outcome-grid {
    grid-template-columns:repeat(2,minmax(0,1fr));
  }

}

@media (max-width:640px) {
  body[data-concept] .outcome-experience-grid,
  .industry-outcome-grid {
    grid-template-columns:1fr;
  }

  body[data-concept] .outcome-experience-grid .outcome-experience-card {
    min-height:0;
    padding:20px;
  }

  body[data-concept] .outcome-photo {
    height:175px;
  }

}

/* v9: unified banner geometry and baseline alignment across all concepts */ .concept-compare {
  gap:6px;
  justify-content:center;
}

.concept-compare a {
  width:148px;
  min-height:32px;
  display:grid;
  flex:0 0 148px;
  place-items:center;
  padding:5px 10px;
  text-align:center;
  line-height:1.15;
}

body[data-concept] .capability-strip {
  grid-template-columns:repeat(4,minmax(0,1fr));
}

body[data-concept] .capability-strip span {
  min-width:0;
  min-height:64px;
  padding:10px 12px;
  text-align:center;
  line-height:1.25;
}

body[data-concept] .outcome-experience-grid {
  align-items:stretch;
  grid-auto-rows:1fr;
}

body[data-concept] .outcome-experience-grid .outcome-experience-card {
  height:100%;
}

body[data-concept] .outcome-experience-card>p {
  display:-webkit-box;
  overflow:hidden;
  -webkit-box-orient:vertical;
  -webkit-line-clamp:3;
}

body[data-concept] .industry-rail-track,
body[data-concept] .partner-rail-track {
  gap:16px;
}

body[data-concept] .industry-rail-card {
  width:310px;
  height:345px;
  display:block;
  flex:0 0 310px;
}

body[data-concept] .industry-rail-card:after {
  inset:38% 0 0;
}

body[data-concept] .industry-rail-card>span {
  left:20px;
  right:20px;
  bottom:20px;
}

body[data-concept] .industry-rail-card strong {
  min-height:48px;
  display:-webkit-box;
  overflow:hidden;
  font-size:20px;
  -webkit-box-orient:vertical;
  -webkit-line-clamp:2;
}

body[data-concept] .industry-rail-card b {
  margin-top:13px;
}

body[data-concept] .partner-rail-card {
  width:310px;
  height:330px;
  min-height:330px;
  display:flex;
  flex:0 0 310px;
  flex-direction:column;
  grid-template-columns:none;
}

body[data-concept] .partner-rail-media {
  height:145px;
  flex:0 0 145px;
  padding:14px;
  border:0;
  border-bottom:1px solid var(--line);
}

body[data-concept] .partner-rail-card>div:last-child {
  min-height:0;
  display:flex;
  flex:1;
  flex-direction:column;
  padding:16px 18px;
}

body[data-concept] .partner-rail-card strong {
  min-height:39px;
  display:-webkit-box;
  overflow:hidden;
  margin:7px 0 5px;
  font-size:16px;
  -webkit-box-orient:vertical;
  -webkit-line-clamp:2;
}

body[data-concept] .partner-rail-card p {
  min-height:0;
  display:-webkit-box;
  overflow:hidden;
  font-size:10px;
  line-height:1.4;
  -webkit-box-orient:vertical;
  -webkit-line-clamp:3;
}

body[data-concept] .partner-rail-card span {
  margin-top:auto;
  padding-top:11px;
}

.industry-outcome-grid {
  align-items:stretch;
  grid-auto-rows:1fr;
}

.industry-outcome-grid article {
  height:100%;
}

@media (max-width:900px) {
  .concept-compare {
    justify-content:flex-start;
  }

  .concept-compare>span {
    display:none;
  }

}

@media (max-width:760px) {
  body[data-concept] .capability-strip {
    grid-template-columns:repeat(2,minmax(0,1fr));
  }

  body[data-concept] .industry-rail-card {
    width:270px;
    height:330px;
    flex-basis:270px;
  }

  body[data-concept] .partner-rail-card {
    width:270px;
    height:340px;
    min-height:340px;
    flex-basis:270px;
  }

  body[data-concept] .partner-rail-media {
    height:145px;
    flex-basis:145px;
  }

}

/* v10: capability ribbon, icon-only social links and five distinct logo systems */ .hero-capability-shell {
  display:block!important;
  position:relative;
  overflow:hidden;
  padding:0;
  -webkit-mask-image:linear-gradient(90deg,transparent,#000 2.5%,#000 97.5%,transparent);
  mask-image:linear-gradient(90deg,transparent,#000 2.5%,#000 97.5%,transparent);
}

.hero-capability-track {
  width:max-content;
  display:flex;
  align-items:stretch;
  animation:heroCapabilityRail 52s linear infinite;
  will-change:transform;
}

.hero-capability-shell:hover .hero-capability-track {
  animation-play-state:paused;
}

body[data-concept] .hero-capability-track span {
  width:190px;
  height:64px;
  min-width:190px;
  min-height:64px;
  display:flex;
  flex:0 0 190px;
  align-items:center;
  justify-content:center;
  gap:9px;
  padding:10px 14px;
  border-left:0;
  border-right:1px solid var(--line);
  font:700 10px/1.25 var(--font-display);
  letter-spacing:.025em;
  text-align:center;
  white-space:normal;
}

.hero-capability-track span b {
  font:inherit;
}

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

}

.footer-social-links {
  gap:10px;
}

.footer-social-links>a.social-icon-link,
.footer-social-links .social-icon-pending {
  width:46px;
  height:46px;
  min-width:46px;
  min-height:46px;
  display:grid;
  place-items:center;
  flex:0 0 46px;
  padding:0;
  color:#e7f0f4;
  background:rgba(255,255,255,.06);
  border:1px solid rgba(255,255,255,.16);
  border-radius:50%;
  transition:color .2s ease,background .2s ease,border-color .2s ease,transform .2s ease;
}

.footer-social-links>a.social-icon-link:hover,
.footer-social-links>a.social-icon-link:focus-visible {
  color:var(--navy);
  background:var(--signal);
  border-color:var(--signal);
  transform:translateY(-3px);
}

.footer-social-links .social-icon-pending {
  color:#9ab0bc;
  border-style:dashed;
  cursor:default;
}

.brand .logo-mark {
  flex:0 0 36px;
  width:36px;
  height:36px;
  transition:transform .25s ease;
}

.brand:hover .logo-mark {
  transform:translateY(-2px);
}

.brand .brand-x {
  font-weight:900;
}

body[data-concept="northern"] .logo-mark {
  overflow:visible;
  background:transparent;
  border:0;
  border-radius:0;
}

body[data-concept="northern"] .logo-mark i {
  height:4px;
  background:#18a874;
  border-radius:5px;
  transform:skewX(-29deg);
}

body[data-concept="northern"] .logo-mark i:nth-child(1) {
  width:31px;
  top:5px;
  left:1px;
  background:#1877cf;
}

body[data-concept="northern"] .logo-mark i:nth-child(2) {
  width:24px;
  top:16px;
  left:7px;
  background:#34d399;
}

body[data-concept="northern"] .logo-mark i:nth-child(3) {
  width:31px;
  top:27px;
  left:1px;
  background:#18a874;
}

body[data-concept="northern"] .brand-x {
  color:#18a874;
  text-shadow:0 0 14px rgba(24,168,116,.2);
}

body[data-concept="northern"] .brand-words small {
  color:#1877cf;
}

body[data-concept="momentum"] .logo-mark {
  overflow:hidden;
  background:linear-gradient(145deg,#24c4e5,#6674ff);
  border:1px solid rgba(255,255,255,.25);
  border-radius:10px;
  box-shadow:0 8px 22px rgba(36,196,229,.25);
  transform:rotate(-7deg);
}

body[data-concept="momentum"] .brand:hover .logo-mark {
  transform:rotate(-7deg) translateY(-2px);
}

body[data-concept="momentum"] .logo-mark i {
  height:3px;
  background:#fff;
  border-radius:4px;
  transform:none;
}

body[data-concept="momentum"] .logo-mark i:nth-child(1) {
  width:21px;
  top:9px;
  left:7px;
}

body[data-concept="momentum"] .logo-mark i:nth-child(2) {
  width:15px;
  top:16px;
  left:11px;
  background:#b7ee45;
}

body[data-concept="momentum"] .logo-mark i:nth-child(3) {
  width:24px;
  top:23px;
  left:6px;
}

body[data-concept="momentum"] .brand-x {
  color:#24c4e5;
  text-shadow:0 0 16px rgba(36,196,229,.38);
}

body[data-concept="momentum"] .brand-words small {
  color:#b7ee45;
}

body[data-concept="aurora"] .logo-mark {
  overflow:hidden;
  background:radial-gradient(circle at 34% 30%,rgba(124,243,197,.35),transparent 31%),#0b2d54;
  border:1px solid #46c7ff;
  border-radius:50%;
  box-shadow:0 0 0 3px rgba(70,199,255,.12),0 8px 24px rgba(7,24,49,.28);
}

body[data-concept="aurora"] .logo-mark i {
  height:2px;
  background:#7cf3c5;
  border-radius:4px;
  transform:none;
}

body[data-concept="aurora"] .logo-mark i:nth-child(1) {
  width:17px;
  top:9px;
  left:9px;
  transform:rotate(18deg);
}

body[data-concept="aurora"] .logo-mark i:nth-child(2) {
  width:23px;
  top:17px;
  left:7px;
  background:#46c7ff;
  transform:rotate(-12deg);
}

body[data-concept="aurora"] .logo-mark i:nth-child(3) {
  width:15px;
  top:25px;
  left:11px;
  transform:rotate(18deg);
}

body[data-concept="aurora"] .brand-x {
  color:#7cf3c5;
  text-shadow:0 0 18px rgba(124,243,197,.45);
}

body[data-concept="aurora"] .brand-words small {
  color:#46c7ff;
}

body[data-concept="signal"] .logo-mark {
  overflow:hidden;
  background:#fff;
  border:1px solid #d9d7cf;
  border-left:5px solid #086cf0;
  border-radius:2px;
  box-shadow:5px 5px 0 rgba(255,136,88,.2);
}

body[data-concept="signal"] .logo-mark i {
  height:3px;
  background:#18242f;
  border-radius:0;
  transform:none;
}

body[data-concept="signal"] .logo-mark i:nth-child(1) {
  width:18px;
  top:8px;
  left:8px;
  background:#086cf0;
}

body[data-concept="signal"] .logo-mark i:nth-child(2) {
  width:23px;
  top:16px;
  left:5px;
  background:#18242f;
}

body[data-concept="signal"] .logo-mark i:nth-child(3) {
  width:14px;
  top:24px;
  left:12px;
  background:#ff8858;
}

body[data-concept="signal"] .brand-x {
  color:#ff6f3c;
  text-shadow:none;
}

body[data-concept="signal"] .brand-words small {
  color:#086cf0;
}

body[data-concept="pacific"] .logo-mark {
  overflow:hidden;
  background:linear-gradient(145deg,#0b3a37,#1b9a75);
  border:1px solid rgba(255,255,255,.28);
  border-radius:70% 30% 68% 32%;
  box-shadow:0 8px 22px rgba(11,58,55,.25);
  transform:rotate(-8deg);
}

body[data-concept="pacific"] .brand:hover .logo-mark {
  transform:rotate(-8deg) translateY(-2px);
}

body[data-concept="pacific"] .logo-mark i {
  height:2px;
  background:#fff7eb;
  border-radius:4px;
  transform:rotate(-22deg);
}

body[data-concept="pacific"] .logo-mark i:nth-child(1) {
  width:20px;
  top:10px;
  left:8px;
}

body[data-concept="pacific"] .logo-mark i:nth-child(2) {
  width:15px;
  top:17px;
  left:11px;
  background:#ffb8a9;
}

body[data-concept="pacific"] .logo-mark i:nth-child(3) {
  width:21px;
  top:24px;
  left:7px;
}

body[data-concept="pacific"] .brand-x {
  color:#ff765f;
  text-shadow:0 0 14px rgba(255,118,95,.28);
}

body[data-concept="pacific"] .brand-words small {
  color:#1b9a75;
}

@media (max-width:760px) {
  body[data-concept] .hero-capability-track span {
    width:170px;
    height:60px;
    min-width:170px;
    min-height:60px;
    flex-basis:170px;
  }

  .footer-social-links {
    width:auto;
  }

  .footer-social-links>a.social-icon-link,
  .footer-social-links .social-icon-pending {
    flex:0 0 46px;
  }

}

@media (prefers-reduced-motion:reduce) {
  .hero-capability-shell {
    overflow-x:auto;
    -webkit-mask-image:none;
    mask-image:none;
  }

  .hero-capability-track {
    animation:none;
  }

  .hero-capability-track span[aria-hidden="true"] {
    display:none;
  }

}
