:root {
  color-scheme: dark;
  --bg: #030712;
  --bg-2: #07111f;
  --panel: rgba(10, 18, 32, 0.68);
  --panel-strong: rgba(12, 22, 40, 0.86);
  --panel-soft: rgba(15, 25, 44, 0.46);
  --line: rgba(226, 232, 240, 0.12);
  --line-strong: rgba(226, 232, 240, 0.22);
  --text: #f8fafc;
  --text-soft: #d8e2ef;
  --muted: #91a3ba;
  --muted-2: #66758c;
  --blue: #2462ea;
  --blue-bright: #2462ea;
  --blue-soft: rgba(36, 98, 234, 0.14);
  --indigo: #6d6af5;
  --shadow: 0 28px 90px rgba(0, 0, 0, 0.46);
  --shadow-soft: 0 20px 70px rgba(0, 0, 0, 0.32);
  --radius: 20px;
  --radius-sm: 10px;
  --max: 1280px;
  --font-main: "Plus Jakarta Sans", "Satoshi", "Inter", "Segoe UI", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  min-height: 100%;
  background: var(--bg);
  scroll-behavior: smooth;
}

body.home-page {
  width: 100%;
  min-height: 100%;
  margin: 0;
  overflow-x: clip;
  background:
    radial-gradient(circle at 78% 8%, rgba(48, 93, 202, 0.28), transparent 34rem),
    radial-gradient(circle at 18% 42%, rgba(86, 91, 218, 0.16), transparent 30rem),
    linear-gradient(180deg, #030712 0%, #050b16 42%, #07111f 100%);
  color: var(--text);
  font-family: var(--font-main);
  font-size: 16px;
  line-height: 1.7;
}

body.home-page::before,
body.home-page::after {
  position: fixed;
  z-index: -2;
  display: block;
  width: 48rem;
  height: 48rem;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(58, 116, 255, 0.2), rgba(58, 116, 255, 0) 68%);
  content: "";
  filter: blur(18px);
  opacity: 0.75;
  pointer-events: none;
  transform: translate3d(0, 0, 0);
  animation: ambientPulse 16s ease-in-out infinite alternate;
}

body.home-page::before {
  top: -16rem;
  right: -10rem;
}

body.home-page::after {
  bottom: -24rem;
  left: -16rem;
  background: radial-gradient(circle, rgba(105, 99, 255, 0.14), rgba(105, 99, 255, 0) 70%);
  animation-duration: 19s;
}

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

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

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

::selection {
  background: rgba(95, 169, 255, 0.38);
  color: #fff;
}

.skip-link {
  position: fixed;
  left: 1rem;
  top: 1rem;
  z-index: 999;
  padding: 0.7rem 1rem;
  border-radius: var(--radius-sm);
  background: #fff;
  color: #030712;
  font-size: 0.88rem;
  font-weight: 700;
  transform: translateY(-150%);
  transition: transform 180ms ease;
}

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

.site-shell {
  width: 100%;
  min-height: 100vh;
  overflow: hidden;
}

.site-header {
  position: fixed;
  top: 1.1rem;
  left: 50%;
  z-index: 80;
  width: min(var(--max), calc(100% - 2rem));
  transform: translateX(-50%);
}

.site-header::before {
  position: absolute;
  inset: 0;
  z-index: -1;
  border: 1px solid rgba(226, 232, 240, 0.12);
  border-radius: 18px;
  background: rgba(3, 7, 18, 0.66);
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.34);
  content: "";
  backdrop-filter: blur(26px);
  -webkit-backdrop-filter: blur(26px);
}

.site-header::after {
  position: absolute;
  inset: 1px;
  z-index: -1;
  border-radius: 17px;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.06), rgba(95, 169, 255, 0.06), rgba(255, 255, 255, 0.03));
  content: "";
  pointer-events: none;
}

.site-header,
.site-nav,
.brand,
.menu-toggle {
  display: flex;
  align-items: center;
}

.site-header {
  justify-content: space-between;
  gap: 1.2rem;
  padding: 0.55rem 0.65rem 0.55rem 0.75rem;
}

.brand {
  min-width: 3.1rem;
  justify-content: flex-start;
}

.brand-logo {
  position: relative;
  display: grid;
  width: 2.45rem;
  height: 2.45rem;
  place-items: center;
  border: 1px solid rgba(226, 232, 240, 0.18);
  border-radius: 10px;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.04));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.12), 0 14px 34px rgba(0, 0, 0, 0.26);
}

.brand-logo::before {
  color: #fff;
  content: "CB";
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: 0;
  line-height: 1;
}

.site-nav {
  gap: 0.2rem;
}

.site-nav > a,
.nav-dropdown-label {
  display: inline-flex;
  min-height: 2.35rem;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  color: rgba(248, 250, 252, 0.82);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0;
  padding: 0 0.72rem;
  transition: background 180ms ease, color 180ms ease, transform 180ms ease;
}

.site-nav > a:hover,
.site-nav > a:focus-visible,
.nav-dropdown-label:hover,
.nav-dropdown:focus-within .nav-dropdown-label {
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
}

.nav-cta {
  margin-left: 0.35rem;
  min-height: 2.45rem !important;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: #fff !important;
  color: #030712 !important;
  padding: 0 1rem !important;
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.22);
}

.nav-cta:hover,
.nav-cta:focus-visible {
  box-shadow: 0 18px 52px rgba(80, 145, 255, 0.22);
  transform: translateY(-1px);
}

.nav-dropdown {
  position: relative;
}

.nav-dropdown::after {
  position: absolute;
  top: 100%;
  left: -1rem;
  display: block;
  width: calc(100% + 2rem);
  height: 1.1rem;
  content: "";
}

.nav-dropdown-label::after {
  width: 0.42rem;
  height: 0.42rem;
  margin-left: 0.4rem;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  content: "";
  opacity: 0.72;
  transform: rotate(45deg) translateY(-1px);
  transition: transform 180ms ease;
}

.nav-dropdown:hover .nav-dropdown-label::after,
.nav-dropdown:focus-within .nav-dropdown-label::after {
  transform: rotate(225deg) translateY(-1px);
}

.nav-services-panel {
  position: absolute;
  top: calc(100% + 1rem);
  right: -5.2rem;
  width: min(54rem, calc(100vw - 2rem));
  padding: 1.25rem;
  border: 1px solid rgba(226, 232, 240, 0.13);
  border-radius: 20px;
  background: linear-gradient(145deg, rgba(8, 15, 28, 0.9), rgba(11, 24, 44, 0.78));
  box-shadow: var(--shadow);
  opacity: 0;
  pointer-events: none;
  transform: translateY(0.5rem);
  transition: opacity 180ms ease, transform 180ms ease, visibility 180ms ease;
  visibility: hidden;
  backdrop-filter: blur(30px);
  -webkit-backdrop-filter: blur(30px);
}

.nav-services:hover .nav-services-panel,
.nav-services:focus-within .nav-services-panel {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
  visibility: visible;
}

.nav-services-panel::before {
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background:
    radial-gradient(circle at 84% 8%, rgba(95, 169, 255, 0.16), transparent 15rem),
    linear-gradient(180deg, rgba(255, 255, 255, 0.05), transparent);
  content: "";
  pointer-events: none;
}

.nav-services-heading,
.nav-services-menu {
  position: relative;
  z-index: 1;
}

.nav-services-heading {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 0.45rem 0.35rem 1.1rem;
}

.nav-services-heading span {
  color: #fff;
  font-size: 0.98rem;
  font-weight: 800;
}

.nav-services-heading p {
  max-width: 28rem;
  margin: 0;
  color: var(--muted);
  font-size: 0.82rem;
  line-height: 1.55;
}

.nav-services-menu {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.9rem;
}

.nav-service-group {
  padding: 0.4rem;
}

.nav-service-group p {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  margin: 0 0 0.85rem;
  color: #fff;
  font-size: 0.83rem;
  font-weight: 800;
}

.nav-service-icon {
  display: inline-block;
  width: 1.65rem;
  height: 1.65rem;
  border: 1px solid rgba(226, 232, 240, 0.12);
  border-radius: 9px;
  background:
    linear-gradient(135deg, rgba(95, 169, 255, 0.28), rgba(109, 106, 245, 0.08)),
    rgba(255, 255, 255, 0.04);
}

.nav-service-group a {
  display: block;
  border-radius: 12px;
  padding: 0.7rem 0.72rem;
  transition: background 180ms ease, transform 180ms ease;
}

.nav-service-group a:hover,
.nav-service-group a:focus-visible {
  background: rgba(255, 255, 255, 0.06);
  transform: translateY(-1px);
}

.nav-service-group span:not(.nav-service-icon) {
  display: block;
  color: rgba(248, 250, 252, 0.94);
  font-size: 0.82rem;
  font-weight: 700;
  line-height: 1.35;
}

.nav-service-group small {
  display: block;
  margin-top: 0.28rem;
  color: rgba(145, 163, 186, 0.92);
  font-size: 0.74rem;
  line-height: 1.45;
}

.menu-toggle {
  display: none;
  width: 2.75rem;
  height: 2.75rem;
  justify-content: center;
  gap: 0.35rem;
  border: 1px solid rgba(226, 232, 240, 0.14);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
}

.menu-toggle span {
  display: block;
  width: 1.05rem;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
}

.section {
  position: relative;
  width: min(var(--max), calc(100% - 2rem));
  margin-inline: auto;
}

.section[id] {
  scroll-margin-top: 7.5rem;
}

.ecosystem-main {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.top-insight-strip {
  position: relative;
  z-index: 3;
  width: 100%;
  margin-top: 5.6rem;
  border-top: 1px solid rgba(10, 32, 58, 0.08);
  border-bottom: 1px solid rgba(10, 32, 58, 0.08);
  background: rgba(255, 255, 255, 0.74);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.top-insight-inner {
  display: grid;
  width: min(var(--max), calc(100% - 2rem));
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.6rem;
  margin-inline: auto;
  padding: 1.05rem 0;
}

.top-insight-inner a {
  display: grid;
  grid-template-columns: minmax(4.5rem, 0.32fr) minmax(0, 1fr) auto;
  align-items: center;
  gap: 0.75rem;
  min-width: 0;
  color: #071426;
}

.top-insight-inner span {
  color: #2462ea;
  font-size: 0.78rem;
  font-weight: 800;
  line-height: 1.2;
}

.top-insight-inner strong {
  min-width: 0;
  color: #13273e;
  font-size: 0.82rem;
  font-weight: 800;
  line-height: 1.35;
}

.top-insight-inner i {
  color: #2462ea;
  font-style: normal;
  font-weight: 900;
  transition: transform 180ms ease;
}

.top-insight-inner a:hover i,
.top-insight-inner a:focus-visible i {
  transform: translateX(0.2rem);
}

.ecosystem-hero {
  display: grid;
  min-height: 40rem;
  grid-template-columns: minmax(0, 1fr) minmax(26rem, 0.86fr);
  align-items: center;
  gap: 3.5rem;
  padding: 4.8rem 0 6rem;
}

.ecosystem-hero > * {
  min-width: 0;
}

.ecosystem-hero::before {
  position: absolute;
  inset: 12% -18% 2% auto;
  z-index: -1;
  width: 60rem;
  height: 34rem;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(53, 104, 236, 0.24), rgba(53, 104, 236, 0) 68%);
  content: "";
  filter: blur(34px);
}

.ecosystem-hero::after {
  position: absolute;
  inset: auto -16% -8% -16%;
  z-index: -1;
  height: 16rem;
  background: linear-gradient(180deg, transparent, rgba(9, 17, 31, 0.92));
  content: "";
  pointer-events: none;
}

.ambient-orb {
  position: absolute;
  z-index: -1;
  border-radius: 999px;
  opacity: 0.62;
  pointer-events: none;
  filter: blur(44px);
}

.ambient-orb-one {
  top: 18%;
  right: 13%;
  width: 18rem;
  height: 18rem;
  background: rgba(53, 104, 236, 0.22);
  animation: ambientPulse 11s ease-in-out infinite alternate;
}

.ambient-orb-two {
  bottom: 18%;
  right: 36%;
  width: 14rem;
  height: 14rem;
  background: rgba(109, 106, 245, 0.13);
  animation: ambientPulse 14s ease-in-out infinite alternate-reverse;
}

.hero-copy {
  width: 100%;
  max-width: 48rem;
}

.hero-eyebrow,
.section-kicker {
  margin: 0 0 1rem;
  color: var(--blue-bright);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0;
  line-height: 1.2;
  text-transform: uppercase;
}

.hero-copy h1 {
  margin: 0;
  color: #fff;
  font-size: 4.08rem;
  font-weight: 800;
  letter-spacing: 0;
  line-height: 0.98;
}

.hero-copy h1 span {
  display: block;
}

.hero-headline-accent {
  display: inline-block;
  background: linear-gradient(92deg, #edf5ff 0%, #7ea3ff 44%, #2462ea 100%);
  background-clip: text;
  color: transparent;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-lede {
  max-width: 39rem;
  margin: 1.65rem 0 0;
  color: var(--text-soft);
  font-size: 1.04rem;
  line-height: 1.85;
}

.hero-actions {
  display: flex;
  width: 100%;
  align-items: center;
  gap: 1rem;
  margin-top: 2.15rem;
  flex-wrap: wrap;
}

.button {
  display: inline-flex;
  min-height: 3.05rem;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  font-size: 0.9rem;
  font-weight: 800;
  letter-spacing: 0;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease, color 180ms ease;
}

.button-primary {
  border: 1px solid rgba(255, 255, 255, 0.86);
  background: #fff;
  color: #030712;
  padding: 0 1.35rem;
  box-shadow: 0 18px 46px rgba(0, 0, 0, 0.28);
}

.button-primary:hover,
.button-primary:focus-visible {
  box-shadow: 0 22px 64px rgba(80, 145, 255, 0.26);
  transform: translateY(-2px);
}

.button-secondary {
  min-height: auto;
  gap: 0.45rem;
  color: #fff;
  padding: 0.35rem 0;
}

.button-secondary .cta-arrow {
  color: var(--blue-bright);
  transition: transform 180ms ease;
}

.button-secondary:hover .cta-arrow,
.button-secondary:focus-visible .cta-arrow {
  transform: translateX(0.22rem);
}

.premium-card {
  --x: 50%;
  --y: 20%;
  position: relative;
  border: 1px solid rgba(226, 232, 240, 0.12);
  background: linear-gradient(145deg, rgba(12, 22, 40, 0.72), rgba(5, 12, 24, 0.5));
  box-shadow: var(--shadow-soft);
  overflow: hidden;
  backdrop-filter: blur(22px);
  -webkit-backdrop-filter: blur(22px);
}

.premium-card::before {
  position: absolute;
  inset: 0;
  z-index: 2;
  border-radius: inherit;
  padding: 1px;
  background:
    radial-gradient(18rem circle at var(--x) var(--y), rgba(95, 169, 255, 0.64), transparent 42%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.14), rgba(255, 255, 255, 0.02));
  content: "";
  opacity: 0.72;
  pointer-events: none;
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  mask-composite: exclude;
}

.hero-visual {
  width: 100%;
  min-width: 0;
  min-height: 33rem;
  border-radius: 24px;
  padding: 1rem;
  transform: translateZ(0);
}

.hero-visual::after {
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background:
    radial-gradient(circle at 76% 20%, rgba(95, 169, 255, 0.22), transparent 22rem),
    linear-gradient(180deg, rgba(255, 255, 255, 0.05), transparent 48%);
  content: "";
  pointer-events: none;
}

.visual-toolbar,
.visual-stage,
.visual-metrics {
  position: relative;
  z-index: 3;
}

.visual-toolbar {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.85rem 0.9rem;
  border: 1px solid rgba(226, 232, 240, 0.1);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.04);
}

.visual-toolbar span {
  width: 0.52rem;
  height: 0.52rem;
  border-radius: 50%;
  background: rgba(226, 232, 240, 0.32);
}

.visual-toolbar strong {
  min-width: 0;
  margin-left: auto;
  color: rgba(248, 250, 252, 0.82);
  font-size: 0.78rem;
  font-weight: 700;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.visual-stage {
  position: relative;
  min-height: 23.3rem;
  margin: 1rem 0;
  border: 1px solid rgba(226, 232, 240, 0.08);
  border-radius: 18px;
  background:
    linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    radial-gradient(circle at 50% 40%, rgba(95, 169, 255, 0.12), transparent 20rem);
  background-size: 44px 44px, 44px 44px, auto;
  overflow: hidden;
}

.node-network {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0.7;
}

.node-network path {
  fill: none;
  stroke: rgba(142, 187, 255, 0.56);
  stroke-linecap: round;
  stroke-width: 1.4;
  animation: networkBreath 6s ease-in-out infinite;
}

.node-network path:nth-child(2) {
  animation-delay: 1.2s;
  opacity: 0.66;
}

.node-network path:nth-child(3) {
  animation-delay: 2.1s;
  opacity: 0.48;
}

.node-network circle {
  fill: rgba(95, 169, 255, 0.95);
  stroke: rgba(232, 240, 255, 0.8);
  stroke-width: 2;
  filter: drop-shadow(0 0 14px rgba(95, 169, 255, 0.48));
}

.system-node {
  position: absolute;
  z-index: 2;
  width: 10.5rem;
  border: 1px solid rgba(226, 232, 240, 0.14);
  border-radius: 16px;
  background: rgba(7, 17, 31, 0.72);
  padding: 0.85rem 0.9rem;
  box-shadow: 0 16px 42px rgba(0, 0, 0, 0.26);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  animation: floatNode 8s ease-in-out infinite;
}

.system-node small,
.visual-metrics span {
  display: block;
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 700;
}

.system-node strong,
.visual-metrics strong {
  display: block;
  margin-top: 0.16rem;
  color: #fff;
  font-size: 0.94rem;
  font-weight: 800;
  line-height: 1.2;
}

.node-requests {
  top: 2.9rem;
  left: 2.2rem;
}

.node-approval {
  top: 8.7rem;
  left: 15.2rem;
  animation-delay: 0.7s;
}

.node-automation {
  right: 2.2rem;
  top: 4.8rem;
  animation-delay: 1.4s;
}

.node-reporting {
  right: 4.1rem;
  bottom: 3rem;
  animation-delay: 2s;
}

.node-record {
  left: 4rem;
  bottom: 3.8rem;
  animation-delay: 2.8s;
}

.visual-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.8rem;
}

.visual-metrics div {
  border: 1px solid rgba(226, 232, 240, 0.1);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.045);
  padding: 0.9rem;
}

.capability-strip {
  width: 100%;
  max-width: none;
  border-top: 1px solid rgba(226, 232, 240, 0.08);
  border-bottom: 1px solid rgba(226, 232, 240, 0.08);
  background: rgba(7, 17, 31, 0.62);
  overflow: hidden;
}

.strip-track {
  display: flex;
  width: min(var(--max), calc(100% - 2rem));
  align-items: center;
  justify-content: space-between;
  gap: 1.2rem;
  margin-inline: auto;
  padding: 1.1rem 0;
}

.strip-track span {
  color: rgba(216, 226, 239, 0.76);
  font-size: 0.78rem;
  font-weight: 800;
  white-space: nowrap;
}

.how-we-work,
.services-ecosystem,
.workflow-review,
.product-showcase,
.final-cta {
  padding: 7rem 0;
}

.section-heading {
  max-width: 49rem;
  margin-bottom: 3rem;
}

.section-heading-wide {
  max-width: 58rem;
}

.section-heading h2,
.review-copy h2,
.final-cta-panel h2 {
  margin: 0;
  color: #fff;
  font-size: 3.15rem;
  font-weight: 800;
  letter-spacing: 0;
  line-height: 1.06;
}

.section-heading p:not(.section-kicker),
.review-copy p,
.final-cta-panel p,
.bento-copy p,
.service-tile p,
.timeline-card p {
  color: var(--muted);
}

.section-heading p:not(.section-kicker) {
  max-width: 45rem;
  margin: 1.2rem 0 0;
  font-size: 1rem;
  line-height: 1.8;
}

.timeline {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.timeline::before {
  position: absolute;
  top: 2.35rem;
  left: 3.1rem;
  right: 3.1rem;
  height: 1px;
  background: linear-gradient(90deg, rgba(95, 169, 255, 0.58), rgba(226, 232, 240, 0.14), rgba(95, 169, 255, 0.26));
  content: "";
  opacity: 0.7;
}

.timeline-card,
.service-tile,
.bento-card,
.review-panel,
.final-cta-panel {
  border-radius: var(--radius);
}

.timeline-card {
  min-height: 17rem;
  padding: 1.6rem;
}

.timeline-marker {
  position: relative;
  z-index: 3;
  display: inline-grid;
  width: 2.3rem;
  height: 2.3rem;
  place-items: center;
  border: 1px solid rgba(95, 169, 255, 0.44);
  border-radius: 999px;
  background: rgba(47, 109, 246, 0.15);
  color: #d9eaff;
  font-size: 0.72rem;
  font-weight: 800;
  box-shadow: 0 0 0 7px rgba(3, 7, 18, 0.86), 0 0 28px rgba(95, 169, 255, 0.22);
}

.timeline-card h3,
.service-tile h3,
.bento-card h3 {
  margin: 1.6rem 0 0;
  color: #fff;
  font-size: 1.22rem;
  font-weight: 800;
  line-height: 1.25;
}

.timeline-card p {
  margin: 0.8rem 0 0;
  font-size: 0.93rem;
  line-height: 1.75;
}

.service-matrix {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.service-tile {
  min-height: 18rem;
  padding: 1.55rem;
}

.service-tile h3 {
  margin-top: 0;
  font-size: 1.18rem;
}

.service-tile p {
  margin: 1rem 0 0;
  font-size: 0.92rem;
  line-height: 1.72;
}

.service-tile a {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  margin-top: 1.25rem;
  color: #d9eaff;
  font-size: 0.85rem;
  font-weight: 800;
}

.service-tile a span {
  color: var(--blue-bright);
  transition: transform 180ms ease;
}

.service-tile a:hover span,
.service-tile a:focus-visible span {
  transform: translateX(0.18rem);
}

.workflow-review {
  padding-top: 2rem;
}

.workflow-review > .review-panel {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(22rem, 0.65fr);
  gap: 3rem;
  padding: 2rem;
}

.review-copy h2 {
  max-width: 42rem;
}

.review-copy p {
  max-width: 42rem;
  margin: 1.2rem 0 0;
  font-size: 1rem;
  line-height: 1.78;
}

.review-copy .button {
  margin-top: 1.7rem;
}

.review-detail {
  border: 1px solid rgba(226, 232, 240, 0.1);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.045);
  padding: 1.35rem;
}

.review-price {
  margin: 0 0 1rem;
  color: #fff;
  font-size: 1.35rem;
  font-weight: 800;
}

.review-detail ul {
  display: grid;
  gap: 0.75rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.review-detail li {
  position: relative;
  padding-left: 1.25rem;
  color: var(--text-soft);
  font-size: 0.9rem;
  line-height: 1.55;
}

.review-detail li::before {
  position: absolute;
  left: 0;
  top: 0.62rem;
  width: 0.42rem;
  height: 0.42rem;
  border-radius: 50%;
  background: var(--blue-bright);
  content: "";
  box-shadow: 0 0 18px rgba(95, 169, 255, 0.48);
}

.product-showcase {
  padding-top: 3rem;
}

.bento-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 1rem;
}

.bento-card {
  min-height: 32rem;
  padding: 1.55rem;
}

.bento-card h3 {
  max-width: 38rem;
  margin-top: 0;
  font-size: 2.05rem;
  line-height: 1.13;
}

.bento-copy p:not(.section-kicker) {
  max-width: 37rem;
  margin: 1rem 0 0;
  font-size: 0.96rem;
  line-height: 1.75;
}

.skillproof-card {
  display: grid;
  align-content: space-between;
  gap: 2rem;
}

.compliance-preview,
.gateway-visual {
  position: relative;
  z-index: 3;
  border: 1px solid rgba(226, 232, 240, 0.1);
  border-radius: 18px;
  background:
    radial-gradient(circle at 80% 0%, rgba(95, 169, 255, 0.16), transparent 18rem),
    rgba(255, 255, 255, 0.045);
  padding: 1rem;
}

.preview-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1rem;
}

.preview-header span,
.gateway-door span,
.verified-profile span {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 800;
}

.preview-header strong {
  color: #fff;
  font-size: 0.86rem;
}

.compliance-row {
  display: grid;
  grid-template-columns: minmax(8rem, 0.55fr) minmax(0, 1fr);
  align-items: center;
  gap: 1rem;
  padding: 0.95rem 0;
  border-top: 1px solid rgba(226, 232, 240, 0.08);
}

.compliance-row span {
  color: rgba(248, 250, 252, 0.84);
  font-size: 0.86rem;
  font-weight: 700;
}

.compliance-row div {
  height: 0.55rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  overflow: hidden;
}

.compliance-row i {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, #7ea3ff, #2462ea);
}

.axo-card {
  display: grid;
  gap: 1.3rem;
}

.axo-line {
  color: #dceafe !important;
  font-weight: 800;
}

.gateway-visual {
  display: grid;
  min-height: 16rem;
  grid-template-columns: minmax(0, 1fr) 8.5rem;
  gap: 1rem;
  align-items: stretch;
}

.verified-profile,
.gateway-door,
.agent-route {
  border: 1px solid rgba(226, 232, 240, 0.1);
  border-radius: 16px;
  background: rgba(3, 7, 18, 0.5);
}

.verified-profile {
  display: flex;
  min-height: 8rem;
  flex-direction: column;
  justify-content: center;
  padding: 1.1rem;
}

.verified-profile strong {
  display: block;
  margin-top: 0.35rem;
  color: #fff;
  font-size: 1rem;
  line-height: 1.35;
}

.gateway-door {
  display: grid;
  place-items: center;
  text-align: center;
  background:
    linear-gradient(180deg, rgba(95, 169, 255, 0.14), transparent),
    rgba(3, 7, 18, 0.5);
}

.agent-route {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.7rem;
  padding: 0.7rem;
}

.agent-route span {
  display: grid;
  min-height: 3rem;
  place-items: center;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.055);
  color: rgba(248, 250, 252, 0.86);
  font-size: 0.78rem;
  font-weight: 800;
  text-align: center;
}

.programme-stages {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.65rem;
}

.programme-stages span {
  display: grid;
  min-height: 3.35rem;
  place-items: center;
  border: 1px solid rgba(226, 232, 240, 0.1);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.045);
  color: rgba(248, 250, 252, 0.86);
  font-size: 0.76rem;
  font-weight: 800;
  line-height: 1.25;
  padding: 0.35rem;
  text-align: center;
}

.final-cta {
  padding-bottom: 7.5rem;
}

.final-cta-panel {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  padding: 2rem;
}

.final-cta-panel > div {
  max-width: 44rem;
}

.final-cta-panel p {
  max-width: 38rem;
  margin: 1rem 0 0;
  line-height: 1.78;
}

.final-cta-email a {
  color: #fff;
  font-weight: 800;
}

.cookie-notice {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  z-index: 90;
  display: none;
  width: min(28rem, calc(100% - 2rem));
  gap: 1rem;
  align-items: center;
  justify-content: space-between;
  border: 1px solid rgba(226, 232, 240, 0.14);
  border-radius: 16px;
  background: rgba(3, 7, 18, 0.84);
  box-shadow: var(--shadow);
  padding: 0.9rem;
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
}

.cookie-notice.is-visible {
  display: flex;
}

.cookie-notice p {
  margin: 0;
  color: var(--text-soft);
  font-size: 0.82rem;
  line-height: 1.5;
}

.cookie-notice a {
  color: #fff;
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 0.18rem;
}

.cookie-actions {
  display: flex;
  gap: 0.5rem;
}

.cookie-actions button {
  min-height: 2.2rem;
  border: 1px solid rgba(226, 232, 240, 0.12);
  border-radius: 10px;
  background: #fff;
  color: #030712;
  cursor: pointer;
  font-size: 0.8rem;
  font-weight: 800;
  padding: 0 0.8rem;
}

.cookie-actions .cookie-decline {
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
}

.site-footer {
  position: relative;
  display: grid;
  width: min(var(--max), calc(100% - 2rem));
  grid-template-columns: minmax(16rem, 0.85fr) minmax(0, 1.2fr);
  gap: 2rem;
  margin-inline: auto;
  border-top: 1px solid rgba(226, 232, 240, 0.1);
  padding: 3rem 0 2.4rem;
}

.footer-brand {
  max-width: 25rem;
}

.footer-brand p,
.footer-company p {
  color: var(--muted);
  font-size: 0.86rem;
  line-height: 1.65;
}

.footer-navigation {
  display: grid;
  gap: 1.2rem;
}

.footer-navigation nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem 1rem;
  justify-content: flex-end;
}

.footer-navigation a,
.footer-company a {
  color: rgba(248, 250, 252, 0.84);
  font-size: 0.82rem;
  font-weight: 700;
}

.footer-legal a {
  color: rgba(145, 163, 186, 0.92);
}

.footer-company {
  grid-column: 1 / -1;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  border-top: 1px solid rgba(226, 232, 240, 0.08);
  padding-top: 1.4rem;
}

.footer-company p {
  margin: 0;
}

:focus-visible {
  outline: 3px solid rgba(95, 169, 255, 0.72);
  outline-offset: 4px;
}

@keyframes ambientPulse {
  from {
    opacity: 0.42;
    transform: scale(0.94);
  }

  to {
    opacity: 0.78;
    transform: scale(1.08);
  }
}

/* Use the real CB Transformation logo asset, not a CSS text stand-in. */
.brand-logo {
  display: block !important;
  object-fit: cover;
  background: url("/assets/cb-logo-web.png") center / cover no-repeat !important;
}

.brand-logo::before {
  content: none !important;
}

@keyframes floatNode {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-0.45rem);
  }
}

@keyframes networkBreath {
  0%,
  100% {
    opacity: 0.4;
    stroke-width: 1.2;
  }

  50% {
    opacity: 0.84;
    stroke-width: 1.8;
  }
}

@media (max-width: 1080px) {
  .top-insight-inner {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .ecosystem-hero {
    grid-template-columns: 1fr;
    gap: 3rem;
    padding-top: 4.5rem;
  }

  .hero-copy {
    max-width: 48rem;
  }

  .hero-copy h1 {
    font-size: 3.65rem;
  }

  .hero-visual {
    max-width: 44rem;
  }

  .timeline,
  .service-matrix,
  .bento-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .timeline::before {
    display: none;
  }

  .bento-card,
  .axo-card {
    min-height: auto;
  }

  .axo-card {
    grid-column: 1 / -1;
  }
}

@media (max-width: 900px) {
  .site-header {
    top: 0.75rem;
    width: min(var(--max), calc(100% - 1rem));
  }

  .menu-toggle {
    display: inline-flex;
  }

  .site-nav {
    position: absolute;
    top: calc(100% + 0.7rem);
    left: 0;
    right: 0;
    display: grid;
    gap: 0.25rem;
    border: 1px solid rgba(226, 232, 240, 0.12);
    border-radius: 18px;
    background: rgba(3, 7, 18, 0.88);
    box-shadow: var(--shadow);
    opacity: 0;
    padding: 0.65rem;
    pointer-events: none;
    transform: translateY(-0.35rem);
    transition: opacity 180ms ease, transform 180ms ease, visibility 180ms ease;
    visibility: hidden;
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
  }

  body.menu-open .site-nav {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
    visibility: visible;
  }

  .site-nav > a,
  .nav-dropdown-label {
    width: 100%;
    justify-content: flex-start;
    min-height: 2.8rem;
    padding: 0 0.85rem;
  }

  .nav-dropdown::after {
    display: none;
  }

  .nav-services-panel {
    position: static;
    width: 100%;
    margin: 0.25rem 0 0.6rem;
    opacity: 1;
    padding: 0.9rem;
    pointer-events: auto;
    transform: none;
    visibility: visible;
  }

  .nav-services-heading {
    display: block;
  }

  .nav-services-heading p {
    margin-top: 0.35rem;
  }

  .nav-services-menu {
    grid-template-columns: 1fr;
  }

  .nav-cta {
    margin-left: 0;
    justify-content: center !important;
  }
}

@media (max-width: 760px) {
  body.home-page {
    font-size: 15px;
  }

  .section {
    width: min(var(--max), calc(100% - 1.25rem));
  }

  .top-insight-strip {
    margin-top: 4.8rem;
    overflow: hidden;
  }

  .top-insight-inner {
    display: flex;
    width: 100%;
    gap: 1rem;
    overflow-x: auto;
    padding: 0.95rem 0.75rem;
    scrollbar-width: none;
  }

  .top-insight-inner::-webkit-scrollbar {
    display: none;
  }

  .top-insight-inner a {
    flex: 0 0 18rem;
    grid-template-columns: minmax(4.2rem, 0.3fr) minmax(0, 1fr) auto;
  }

  .ecosystem-hero {
    display: flex;
    flex-direction: column;
    min-height: auto;
    padding: 3.5rem 0 4rem;
  }

  .hero-copy h1 {
    font-size: 2.34rem;
    line-height: 1.02;
  }

  .hero-lede {
    font-size: 0.98rem;
    line-height: 1.75;
  }

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

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

  .button-primary {
    width: 100%;
  }

  .button-secondary {
    justify-content: flex-start;
  }

  .hero-visual {
    min-height: 29rem;
    border-radius: 20px;
    padding: 0.8rem;
    overflow: hidden;
  }

  .visual-stage {
    min-height: 20rem;
  }

  .system-node {
    width: 7.6rem;
    padding: 0.7rem;
  }

  .node-requests {
    left: 1rem;
    top: 2rem;
  }

  .node-approval {
    left: 6.2rem;
    top: 8.2rem;
  }

  .node-automation {
    right: 0.8rem;
    top: 4rem;
  }

  .node-reporting {
    right: 1.3rem;
    bottom: 2rem;
  }

  .node-record {
    left: 0.8rem;
    bottom: 3rem;
  }

  .visual-metrics,
  .timeline,
  .service-matrix,
  .bento-grid,
  .workflow-review > .review-panel,
  .programme-stages,
  .gateway-visual,
  .agent-route {
    grid-template-columns: 1fr;
  }

  .strip-track {
    justify-content: flex-start;
    overflow-x: auto;
    padding-inline: 0.65rem;
    scrollbar-width: none;
  }

  .strip-track::-webkit-scrollbar {
    display: none;
  }

  .how-we-work,
  .services-ecosystem,
  .workflow-review,
  .product-showcase,
  .final-cta {
    padding: 4.5rem 0;
  }

  .section-heading h2,
  .review-copy h2,
  .final-cta-panel h2 {
    font-size: 2.35rem;
    line-height: 1.1;
  }

  .timeline-card,
  .service-tile,
  .bento-card,
  .workflow-review > .review-panel,
  .final-cta-panel {
    padding: 1.2rem;
  }

  .bento-card h3 {
    font-size: 1.65rem;
  }

  .final-cta-panel,
  .site-footer,
  .footer-company {
    display: grid;
    grid-template-columns: 1fr;
  }

  .footer-navigation nav {
    justify-content: flex-start;
  }

  .cookie-notice {
    left: 0.75rem;
    right: 0.75rem;
    bottom: 0.75rem;
    width: auto;
    align-items: stretch;
    flex-direction: column;
  }

  .cookie-notice.is-visible {
    display: flex;
  }

  .cookie-actions {
    justify-content: stretch;
  }

  .cookie-actions button {
    flex: 1;
  }
}

@media (max-width: 430px) {
  .hero-copy h1 {
    font-size: 2.14rem;
  }

  .site-header {
    padding: 0.45rem;
  }

  .brand-logo,
  .menu-toggle {
    width: 2.55rem;
    height: 2.55rem;
  }

  .hero-visual {
    min-height: 26rem;
  }

  .system-node {
    width: 7.05rem;
  }

  .system-node strong {
    font-size: 0.8rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 1ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 1ms !important;
  }
}

/* Light corporate direction: clean surfaces, ink navy, restrained brand blue. */
:root {
  color-scheme: light;
  --bg: #f7f9fc;
  --bg-2: #edf2f7;
  --panel: rgba(255, 255, 255, 0.82);
  --panel-strong: rgba(255, 255, 255, 0.94);
  --panel-soft: rgba(247, 250, 253, 0.82);
  --line: rgba(10, 32, 58, 0.12);
  --line-strong: rgba(10, 32, 58, 0.2);
  --text: #071426;
  --text-soft: #22364d;
  --muted: #5d6f82;
  --muted-2: #748497;
  --blue: #2462ea;
  --blue-bright: #2462ea;
  --blue-soft: rgba(36, 98, 234, 0.1);
  --indigo: #041424;
  --shadow: 0 26px 90px rgba(19, 38, 65, 0.12);
  --shadow-soft: 0 18px 60px rgba(19, 38, 65, 0.1);
}

html,
body.home-page {
  background: #f7f9fc;
}

body.home-page {
  background:
    radial-gradient(circle at 82% 4%, rgba(36, 98, 234, 0.09), transparent 32rem),
    radial-gradient(circle at 10% 36%, rgba(157, 179, 202, 0.16), transparent 28rem),
    linear-gradient(180deg, #ffffff 0%, #f7f9fc 46%, #edf2f7 100%);
  color: var(--text);
}

body.home-page::before,
body.home-page::after {
  background: radial-gradient(circle, rgba(36, 98, 234, 0.06), rgba(36, 98, 234, 0) 68%);
  opacity: 0.55;
}

body.home-page::after {
  background: radial-gradient(circle, rgba(64, 89, 120, 0.08), rgba(64, 89, 120, 0) 70%);
}

::selection {
  background: rgba(23, 74, 124, 0.18);
  color: var(--text);
}

.site-header::before {
  border-color: rgba(10, 32, 58, 0.1);
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 18px 60px rgba(19, 38, 65, 0.12);
}

.site-header::after {
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.72), rgba(23, 74, 124, 0.04), rgba(255, 255, 255, 0.46));
}

.brand-logo {
  border-color: rgba(10, 32, 58, 0.16);
  background: linear-gradient(145deg, #041424, #082340);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.18), 0 12px 30px rgba(19, 38, 65, 0.14);
}

.site-nav > a,
.nav-dropdown-label {
  color: rgba(7, 20, 38, 0.76);
}

.site-nav > a:hover,
.site-nav > a:focus-visible,
.nav-dropdown-label:hover,
.nav-dropdown:focus-within .nav-dropdown-label {
  background: rgba(36, 98, 234, 0.08);
  color: #071426;
}

.nav-cta,
.button-primary {
  border-color: #041424 !important;
  background: #041424 !important;
  color: #ffffff !important;
  box-shadow: 0 16px 34px rgba(9, 32, 56, 0.18);
}

.nav-cta:hover,
.nav-cta:focus-visible,
.button-primary:hover,
.button-primary:focus-visible {
  box-shadow: 0 20px 46px rgba(4, 20, 36, 0.22);
}

.nav-services-panel {
  border-color: rgba(10, 32, 58, 0.11);
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.96), rgba(241, 246, 251, 0.88));
  box-shadow: 0 30px 90px rgba(19, 38, 65, 0.16);
}

.nav-services-panel::before {
  background:
    radial-gradient(circle at 84% 8%, rgba(36, 98, 234, 0.08), transparent 16rem),
    linear-gradient(180deg, rgba(255, 255, 255, 0.65), transparent);
}

.nav-services-heading span,
.nav-service-group p,
.nav-service-group span:not(.nav-service-icon) {
  color: #071426;
}

.nav-services-heading p,
.nav-service-group small {
  color: rgba(77, 96, 118, 0.96);
}

.nav-service-icon {
  border-color: rgba(10, 32, 58, 0.1);
  background:
    linear-gradient(135deg, rgba(36, 98, 234, 0.1), rgba(255, 255, 255, 0.4)),
    #f5f8fb;
}

.nav-service-group a:hover,
.nav-service-group a:focus-visible {
  background: rgba(36, 98, 234, 0.06);
}

.menu-toggle {
  border-color: rgba(10, 32, 58, 0.12);
  background: rgba(255, 255, 255, 0.75);
  color: #041424;
}

.ecosystem-hero::before {
  background: radial-gradient(circle, rgba(36, 98, 234, 0.08), rgba(36, 98, 234, 0) 68%);
}

.ecosystem-hero::after {
  background: linear-gradient(180deg, transparent, rgba(247, 249, 252, 0.92));
}

.ambient-orb-one {
  background: rgba(36, 98, 234, 0.08);
}

.ambient-orb-two {
  background: rgba(130, 151, 176, 0.13);
}

.hero-copy h1,
.section-heading h2,
.review-copy h2,
.final-cta-panel h2,
.timeline-card h3,
.service-tile h3,
.bento-card h3,
.review-price,
.final-cta-email a {
  color: #071426;
}

.hero-headline-accent {
  background: linear-gradient(92deg, #041424 0%, #103474 50%, #2462ea 100%);
  background-clip: text;
  color: transparent;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-lede,
.section-heading p:not(.section-kicker),
.review-copy p,
.final-cta-panel p,
.bento-copy p,
.service-tile p,
.timeline-card p {
  color: #33465c;
}

.hero-eyebrow,
.section-kicker {
  color: #2462ea;
}

.button-secondary {
  color: #041424;
}

.button-secondary .cta-arrow,
.service-tile a span {
  color: #2462ea;
}

.premium-card {
  border-color: rgba(10, 32, 58, 0.12);
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.86), rgba(247, 250, 253, 0.72));
  box-shadow: var(--shadow-soft);
}

.premium-card::before {
  background:
    radial-gradient(16rem circle at var(--x) var(--y), rgba(36, 98, 234, 0.18), transparent 42%),
    linear-gradient(135deg, rgba(10, 32, 58, 0.14), rgba(10, 32, 58, 0.02));
}

.hero-visual::after {
  background:
    radial-gradient(circle at 76% 20%, rgba(36, 98, 234, 0.1), transparent 22rem),
    linear-gradient(180deg, rgba(255, 255, 255, 0.62), transparent 48%);
}

.visual-toolbar,
.visual-stage,
.visual-metrics div,
.review-detail,
.compliance-preview,
.gateway-visual,
.verified-profile,
.gateway-door,
.agent-route,
.programme-stages span {
  border-color: rgba(10, 32, 58, 0.1);
  background: rgba(255, 255, 255, 0.72);
}

.visual-toolbar strong,
.system-node strong,
.visual-metrics strong,
.preview-header strong,
.verified-profile strong {
  color: #071426;
}

.visual-toolbar span {
  background: rgba(9, 32, 56, 0.32);
}

.visual-stage {
  background:
    linear-gradient(rgba(10, 32, 58, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(10, 32, 58, 0.045) 1px, transparent 1px),
    radial-gradient(circle at 50% 40%, rgba(36, 98, 234, 0.06), transparent 20rem),
    rgba(255, 255, 255, 0.64);
  background-size: 44px 44px, 44px 44px, auto, auto;
}

.node-network path {
  stroke: rgba(36, 98, 234, 0.42);
}

.node-network circle {
  fill: #2462ea;
  stroke: rgba(255, 255, 255, 0.92);
  filter: drop-shadow(0 0 8px rgba(36, 98, 234, 0.14));
}

.system-node {
  border-color: rgba(10, 32, 58, 0.12);
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 14px 34px rgba(19, 38, 65, 0.1);
}

.system-node small,
.visual-metrics span,
.preview-header span,
.gateway-door span,
.verified-profile span {
  color: #64768a;
}

.capability-strip {
  border-color: rgba(10, 32, 58, 0.08);
  background: rgba(255, 255, 255, 0.66);
}

.strip-track span {
  color: rgba(7, 20, 38, 0.72);
}

.timeline::before {
  background: linear-gradient(90deg, rgba(36, 98, 234, 0.26), rgba(10, 32, 58, 0.08), rgba(36, 98, 234, 0.16));
}

.timeline-marker {
  border-color: rgba(36, 98, 234, 0.34);
  background: #ffffff;
  color: #2462ea;
  box-shadow: 0 0 0 7px rgba(247, 249, 252, 0.9), 0 12px 28px rgba(19, 38, 65, 0.08);
}

.service-tile a,
.axo-line {
  color: #041424 !important;
}

.review-detail li {
  color: #33465c;
}

.review-detail li::before {
  background: #2462ea;
  box-shadow: none;
}

.compliance-row {
  border-top-color: rgba(10, 32, 58, 0.08);
}

.compliance-row span,
.agent-route span,
.programme-stages span {
  color: #24374d;
}

.compliance-row div {
  background: rgba(10, 32, 58, 0.08);
}

.compliance-row i {
  background: linear-gradient(90deg, #041424, #2462ea);
}

.gateway-door {
  background:
    linear-gradient(180deg, rgba(23, 74, 124, 0.08), transparent),
    rgba(255, 255, 255, 0.76);
}

.agent-route span {
  background: rgba(23, 74, 124, 0.055);
}

.cookie-notice {
  border-color: rgba(10, 32, 58, 0.14);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 18px 60px rgba(19, 38, 65, 0.16);
}

.cookie-notice p {
  color: #33465c;
}

.cookie-notice a,
.footer-navigation a,
.footer-company a {
  color: #071426;
}

.cookie-actions button {
  border-color: rgba(10, 32, 58, 0.12);
  background: #041424;
  color: #ffffff;
}

.cookie-actions .cookie-decline {
  background: #ffffff;
  color: #041424;
}

.site-footer {
  border-top-color: rgba(10, 32, 58, 0.1);
}

.footer-brand p,
.footer-company p,
.footer-legal a {
  color: #5d6f82;
}

@media (max-width: 900px) {
  .site-nav {
    border-color: rgba(10, 32, 58, 0.12);
    background: rgba(255, 255, 255, 0.94);
    box-shadow: 0 24px 70px rgba(19, 38, 65, 0.16);
  }
}

/* Signature premium pass: branded, modern and detailed without generic AI styling. */
:root {
  --brand-ink: #041424;
  --brand-ink-2: #071d35;
  --brand-blue: #2462ea;
  --brand-blue-deep: #103474;
  --brand-paper: #f6f9fd;
  --brand-card: rgba(255, 255, 255, 0.86);
  --brand-line: rgba(4, 20, 36, 0.12);
  --brand-shadow: 0 22px 70px rgba(12, 31, 55, 0.14), 0 2px 8px rgba(12, 31, 55, 0.06);
  --brand-shadow-lift: 0 34px 90px rgba(12, 31, 55, 0.2), 0 8px 18px rgba(12, 31, 55, 0.09);
}

body.home-page {
  background:
    linear-gradient(180deg, #f7faff 0%, #f3f7fc 42%, #ffffff 100%);
  font-family: "Segoe UI Variable Text", "Plus Jakarta Sans", Aptos, "Segoe UI", system-ui, sans-serif;
}

body.home-page::before,
body.home-page::after,
.ambient-orb {
  display: none;
}

.site-header {
  top: 1rem;
}

.site-header::before {
  border-color: rgba(255, 255, 255, 0.14);
  background: rgba(4, 20, 36, 0.78);
  box-shadow: 0 22px 74px rgba(2, 7, 13, 0.26);
}

.site-header::after {
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.08), rgba(36, 98, 234, 0.1), rgba(255, 255, 255, 0.04));
}

.site-nav > a,
.nav-dropdown-label {
  color: rgba(255, 255, 255, 0.82);
  font-weight: 680;
}

.site-nav > a:hover,
.site-nav > a:focus-visible,
.nav-dropdown-label:hover,
.nav-dropdown:focus-within .nav-dropdown-label {
  background: rgba(255, 255, 255, 0.1);
  color: #ffffff;
}

.nav-cta,
.button-primary {
  border-color: rgba(255, 255, 255, 0.9) !important;
  background: #ffffff !important;
  color: var(--brand-ink) !important;
  box-shadow: 0 16px 36px rgba(2, 7, 13, 0.18);
}

.nav-cta:hover,
.nav-cta:focus-visible,
.button-primary:hover,
.button-primary:focus-visible {
  box-shadow: 0 22px 58px rgba(4, 20, 36, 0.24);
  transform: translateY(-2px);
}

.nav-services-panel {
  border-color: rgba(4, 20, 36, 0.12);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(239, 245, 252, 0.94));
  box-shadow: 0 32px 90px rgba(4, 20, 36, 0.18);
}

.nav-services-panel::before {
  background:
    linear-gradient(90deg, rgba(36, 98, 234, 0.08), transparent 42%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.86), transparent);
}

.top-insight-strip {
  margin-top: 5.8rem;
  border-color: rgba(255, 255, 255, 0.1);
  background:
    linear-gradient(90deg, rgba(4, 20, 36, 0.94), rgba(7, 29, 53, 0.92) 60%, rgba(13, 50, 93, 0.88));
}

.top-insight-inner {
  gap: 0;
  padding: 0;
}

.top-insight-inner a {
  min-height: 4.7rem;
  grid-template-columns: minmax(4.2rem, 0.26fr) minmax(0, 1fr) auto;
  border-left: 1px solid rgba(255, 255, 255, 0.08);
  color: #ffffff;
  padding: 0 1.15rem;
  transition: background 180ms ease, transform 180ms ease;
}

.top-insight-inner a:last-child {
  border-right: 1px solid rgba(255, 255, 255, 0.08);
}

.top-insight-inner a:hover,
.top-insight-inner a:focus-visible {
  background: rgba(255, 255, 255, 0.08);
}

.top-insight-inner span {
  color: #8fb5ff;
  font-weight: 720;
}

.top-insight-inner strong {
  color: rgba(255, 255, 255, 0.94);
  font-weight: 680;
}

.ecosystem-hero {
  width: min(1480px, calc(100% - 6rem));
  min-height: clamp(650px, 76vh, 780px);
  grid-template-columns: 1fr;
  align-content: center;
  gap: 0;
  padding: clamp(5.7rem, 9vh, 7.8rem) 0 clamp(6.2rem, 9vh, 8rem);
  isolation: isolate;
}

.ecosystem-hero::before {
  inset: 0 calc(50% - 50vw);
  width: auto;
  height: auto;
  border-radius: 0;
  background:
    radial-gradient(circle at 88% 8%, rgba(36, 98, 234, 0.34), transparent 31rem),
    linear-gradient(112deg, #041424 0%, #071d35 52%, #11386a 100%);
  content: "";
  filter: none;
}

.ecosystem-hero::after {
  z-index: -1;
  inset: 50% -7% auto auto;
  width: min(48vw, 48rem);
  aspect-ratio: 1;
  height: auto;
  background: url("/assets/cb-logo-web.png") center / contain no-repeat;
  content: "";
  opacity: 0.085;
  mix-blend-mode: screen;
  pointer-events: none;
  transform: translateY(-44%);
}

.hero-copy h1 {
  max-width: 12em;
  color: #ffffff;
  font-family: "Segoe UI Variable Display", "Plus Jakarta Sans", Aptos, "Segoe UI", system-ui, sans-serif;
  font-size: clamp(3.35rem, 5.1vw, 5.85rem);
  font-weight: 760;
  line-height: 1.01;
}

.hero-headline-accent {
  background: linear-gradient(92deg, #dce9ff 0%, #6f9cff 46%, #2462ea 100%);
  background-clip: text;
  color: transparent;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-lede {
  max-width: 48rem;
  color: rgba(237, 244, 252, 0.86);
  font-size: clamp(1.02rem, 1.15vw, 1.13rem);
  line-height: 1.72;
}

.hero-copy {
  max-width: 72rem;
}

.button {
  border-radius: 9px;
  font-weight: 720;
}

.button-secondary {
  color: rgba(255, 255, 255, 0.92);
}

.button-secondary .cta-arrow {
  color: #8fb5ff;
}

.premium-card {
  border-color: rgba(4, 20, 36, 0.11);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.92), rgba(246, 250, 254, 0.78));
  box-shadow: var(--brand-shadow);
  transition: box-shadow 240ms ease, transform 240ms ease, border-color 240ms ease;
}

.premium-card:hover {
  border-color: rgba(36, 98, 234, 0.22);
  box-shadow: var(--brand-shadow-lift);
  transform: translateY(-5px);
}

.premium-card::before {
  background:
    radial-gradient(18rem circle at var(--x) var(--y), rgba(36, 98, 234, 0.18), transparent 44%),
    linear-gradient(135deg, rgba(4, 20, 36, 0.1), rgba(255, 255, 255, 0.02));
  opacity: 0;
  transition: opacity 220ms ease;
}

.premium-card:hover::before {
  opacity: 1;
}

.hero-visual {
  min-height: 36rem;
  border-color: rgba(255, 255, 255, 0.14);
  background:
    linear-gradient(145deg, rgba(5, 20, 37, 0.92), rgba(9, 36, 68, 0.72));
  box-shadow: 0 30px 92px rgba(2, 7, 13, 0.34);
  transform:
    perspective(1200px)
    rotateX(calc(var(--tilt-y, 0) * -5deg))
    rotateY(calc(var(--tilt-x, 0) * 5deg))
    translateY(0);
}

.hero-visual:hover {
  border-color: rgba(143, 181, 255, 0.34);
  transform:
    perspective(1200px)
    rotateX(calc(var(--tilt-y, 0) * -5deg))
    rotateY(calc(var(--tilt-x, 0) * 5deg))
    translateY(-6px);
}

.hero-visual::after {
  background:
    linear-gradient(116deg, transparent 0 40%, rgba(255, 255, 255, 0.08) 48%, transparent 58%),
    radial-gradient(circle at 82% 12%, rgba(36, 98, 234, 0.18), transparent 18rem);
}

.visual-toolbar {
  border-color: rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.055);
}

.visual-toolbar strong {
  color: rgba(255, 255, 255, 0.82);
}

.transformation-map {
  min-height: 25rem;
  background:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    radial-gradient(circle at 42% 42%, rgba(36, 98, 234, 0.16), transparent 21rem),
    rgba(4, 20, 36, 0.36);
  background-size: 52px 52px, 52px 52px, auto, auto;
}

.map-layer,
.map-label {
  position: absolute;
  z-index: 4;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(5, 18, 34, 0.72);
  box-shadow: 0 16px 42px rgba(2, 7, 13, 0.2);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.map-layer {
  --base-x: 0;
  width: 12.4rem;
  border-radius: 16px;
  padding: 0.9rem 1rem;
  transform: translateX(var(--base-x));
}

.map-layer span,
.map-label {
  color: #8fb5ff;
  font-size: 0.72rem;
  font-weight: 760;
}

.map-layer strong {
  display: block;
  margin-top: 0.2rem;
  color: #ffffff;
  font-size: 0.92rem;
  line-height: 1.25;
}

.map-layer-left {
  top: 2rem;
  left: 1.4rem;
}

.map-layer-centre {
  --base-x: -50%;
  top: 9.2rem;
  left: 42%;
  transform: translateX(-50%);
}

.map-layer-right {
  right: 1.4rem;
  bottom: 2.2rem;
}

.transformation-network {
  inset: 0.45rem;
  width: calc(100% - 0.9rem);
  height: calc(100% - 0.9rem);
}

.transformation-network .map-route {
  fill: none;
  stroke: url("#cb-flow-stroke");
  stroke-linecap: round;
  stroke-width: 2.2;
}

.transformation-network .map-route-soft {
  opacity: 0.42;
  stroke-width: 1.2;
}

.transformation-network .map-node-group circle {
  fill: rgba(36, 98, 234, 0.94);
  stroke: rgba(255, 255, 255, 0.74);
  stroke-width: 2;
}

.map-decision path,
.map-system-card rect,
.map-automation-card rect {
  fill: rgba(5, 18, 34, 0.72);
  stroke: rgba(143, 181, 255, 0.46);
  stroke-width: 1.5;
}

.map-system-card path,
.map-automation-card path {
  fill: none;
  stroke: rgba(220, 233, 255, 0.54);
  stroke-linecap: round;
  stroke-width: 2;
}

.map-automation-card circle {
  fill: rgba(36, 98, 234, 0.32);
  stroke: rgba(143, 181, 255, 0.72);
  stroke-width: 1.5;
}

.map-decision text {
  fill: rgba(255, 255, 255, 0.76);
  font-size: 13px;
  font-weight: 720;
  text-anchor: middle;
}

.map-label {
  border-radius: 999px;
  padding: 0.35rem 0.65rem;
}

.map-label-one {
  top: 6.9rem;
  right: 7rem;
}

.map-label-two {
  bottom: 6.1rem;
  left: 12rem;
}

.map-label-three {
  top: 14.6rem;
  right: 2.1rem;
}

.map-label-four {
  bottom: 1.55rem;
  left: 1.6rem;
}

.visual-metrics div {
  border-color: rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.055);
}

.visual-metrics span,
.visual-metrics strong {
  color: rgba(255, 255, 255, 0.8);
}

.visual-metrics strong {
  color: #ffffff;
}

.capability-strip {
  border-color: rgba(4, 20, 36, 0.08);
  background: #ffffff;
}

.strip-track {
  width: min(1480px, calc(100% - 2rem));
}

.strip-track span {
  color: rgba(4, 20, 36, 0.72);
}

.how-we-work,
.services-ecosystem,
.workflow-review,
.product-showcase,
.final-cta {
  padding: clamp(5.5rem, 8vw, 8.5rem) 0;
}

.section-heading h2,
.review-copy h2,
.final-cta-panel h2,
.bento-card h3 {
  color: var(--brand-ink);
  font-family: "Segoe UI Variable Display", "Plus Jakarta Sans", Aptos, "Segoe UI", system-ui, sans-serif;
  font-weight: 720;
}

.section-heading p:not(.section-kicker),
.review-copy p,
.final-cta-panel p,
.bento-copy p,
.service-tile p,
.timeline-card p {
  color: #405168;
}

.section-kicker,
.product-tag {
  color: var(--brand-blue);
  font-size: 0.76rem;
  font-weight: 760;
  margin: 0 0 0.8rem;
}

.timeline {
  grid-template-columns: 1.16fr 0.92fr 1.08fr 0.92fr;
  gap: 1.15rem;
}

.timeline::before {
  background: linear-gradient(90deg, rgba(36, 98, 234, 0.34), rgba(4, 20, 36, 0.08), rgba(36, 98, 234, 0.2));
}

.timeline-card {
  min-height: 18rem;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.95), rgba(247, 250, 253, 0.82));
}

.timeline-card:nth-child(even) {
  margin-top: 2.4rem;
}

.timeline-marker {
  width: 0.88rem;
  height: 0.88rem;
  border-color: var(--brand-blue);
  background: var(--brand-blue);
  color: transparent;
  box-shadow: 0 0 0 9px rgba(36, 98, 234, 0.08);
}

.service-matrix {
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.85fr) minmax(0, 1.05fr);
  grid-auto-rows: minmax(15.5rem, auto);
  gap: 1.15rem;
}

.service-tile {
  display: flex;
  min-height: 16.5rem;
  flex-direction: column;
  align-items: flex-start;
  justify-content: space-between;
  padding: 1.75rem;
}

.service-tile:first-child {
  grid-row: span 2;
  background:
    linear-gradient(145deg, rgba(4, 20, 36, 0.96), rgba(16, 52, 116, 0.86));
  color: #ffffff;
}

.service-tile:first-child h3,
.service-tile:first-child p,
.service-tile:first-child a {
  color: #ffffff !important;
}

.service-tile:nth-child(3) {
  margin-top: 2.25rem;
}

.service-tile-wide {
  grid-column: 2 / 4;
  min-height: 13rem;
  background:
    linear-gradient(135deg, rgba(36, 98, 234, 0.1), rgba(255, 255, 255, 0.9));
}

.service-tile a {
  color: var(--brand-ink) !important;
}

.workflow-review {
  padding-top: clamp(4rem, 7vw, 6rem);
}

.workflow-review > .review-panel {
  grid-template-columns: minmax(0, 1.15fr) minmax(22rem, 0.7fr);
  border: 0;
  background:
    linear-gradient(135deg, #ffffff 0%, #f6f9fd 62%, rgba(36, 98, 234, 0.08) 100%);
  padding: clamp(1.7rem, 3vw, 3rem);
}

.review-detail {
  border-color: rgba(4, 20, 36, 0.1);
  background: #ffffff;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.review-price {
  color: var(--brand-ink);
}

.review-detail li {
  color: #405168;
}

.product-showcase {
  width: min(1480px, calc(100% - 2rem));
}

.bento-grid {
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
  gap: 1.15rem;
}

.bento-card {
  border-radius: 22px;
  padding: clamp(1.4rem, 2vw, 2.2rem);
}

.skillproof-card {
  background:
    linear-gradient(180deg, #ffffff, #f5f8fc);
}

.axo-card {
  background:
    radial-gradient(circle at 92% 0%, rgba(36, 98, 234, 0.15), transparent 22rem),
    linear-gradient(145deg, rgba(4, 20, 36, 0.96), rgba(8, 30, 58, 0.9));
}

.axo-card h3,
.axo-card .product-tag,
.axo-card .bento-copy p,
.axo-card .axo-line {
  color: #ffffff !important;
}

.compliance-preview,
.gateway-visual,
.verified-profile,
.gateway-door,
.agent-route,
.programme-stages span {
  border-color: rgba(4, 20, 36, 0.1);
  background: rgba(255, 255, 255, 0.78);
}

.axo-card .gateway-visual,
.axo-card .verified-profile,
.axo-card .gateway-door,
.axo-card .agent-route,
.axo-card .programme-stages span {
  border-color: rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.065);
}

.axo-card .verified-profile strong,
.axo-card .preview-header strong {
  color: #ffffff;
}

.axo-card .agent-route span,
.axo-card .programme-stages span {
  color: rgba(255, 255, 255, 0.82);
}

.final-cta-panel {
  border: 0;
  background:
    linear-gradient(135deg, var(--brand-ink), #0b2b52 72%, #123d74);
  color: #ffffff;
  padding: clamp(1.7rem, 3vw, 2.8rem);
}

.final-cta-panel h2,
.final-cta-panel p,
.final-cta-email a {
  color: #ffffff;
}

.site-footer {
  width: min(1480px, calc(100% - 2rem));
  border-top-color: rgba(4, 20, 36, 0.1);
}

body.home-page.enhanced-motion .reveal-on-scroll {
  opacity: 0;
  transform: translateY(22px);
  transition:
    opacity 760ms cubic-bezier(0.16, 1, 0.3, 1) var(--reveal-delay, 0ms),
    transform 760ms cubic-bezier(0.16, 1, 0.3, 1) var(--reveal-delay, 0ms);
}

body.home-page.enhanced-motion .reveal-on-scroll.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: no-preference) {
  .map-layer-left,
  .map-layer-right {
    animation: mapLayerFloat 8s ease-in-out infinite;
  }

  .map-layer-centre {
    animation: mapLayerFloat 8s ease-in-out 1.2s infinite;
  }

  .transformation-network .map-route {
    stroke-dasharray: 11 13;
    stroke-dashoffset: 0;
    animation: mapRouteDraw 7.4s linear infinite;
  }

  .transformation-network .map-route-secondary {
    animation-delay: 0.7s;
  }

  .transformation-network .map-route-soft {
    animation-delay: 1.25s;
  }
}

@keyframes mapLayerFloat {
  0%,
  100% {
    transform: translate3d(var(--base-x), 0, 0);
  }

  50% {
    transform: translate3d(var(--base-x), -0.42rem, 0);
  }
}

@keyframes mapRouteDraw {
  0% {
    opacity: 0.48;
    stroke-dashoffset: 0;
  }

  50% {
    opacity: 0.88;
  }

  100% {
    opacity: 0.48;
    stroke-dashoffset: -180;
  }
}

@media (max-width: 1080px) {
  .ecosystem-hero {
    width: min(var(--max), calc(100% - 3rem));
    min-height: auto;
    grid-template-columns: 1fr;
  }

  .ecosystem-hero::after {
    right: -5rem;
    top: 50%;
    font-size: clamp(10rem, 44vw, 22rem);
  }

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

  .service-tile:first-child,
  .service-tile-wide {
    grid-column: auto;
    grid-row: auto;
  }

  .service-tile:nth-child(3) {
    margin-top: 0;
  }
}

@media (max-width: 760px) {
  .site-header {
    top: 0.75rem;
  }

  .menu-toggle {
    display: inline-flex;
    margin-left: auto;
  }

  .top-insight-strip {
    display: none;
  }

  .ecosystem-hero {
    width: calc(100vw - 2rem);
    justify-items: start;
    padding-top: 6.25rem;
    overflow: hidden;
  }

  .ecosystem-hero::after {
    top: 50%;
    right: -4.4rem;
    width: min(72vw, 22rem);
    max-width: calc(100vw - 2rem);
    aspect-ratio: 1;
    font-size: 0;
    opacity: 0.07;
    transform: translateY(-52%);
  }

  .hero-copy h1 {
    width: 100%;
    max-width: 100%;
    font-size: clamp(2rem, 7.9vw, 2.55rem);
  }

  .hero-copy,
  .hero-copy h1 span,
  .hero-lede,
  .section-heading,
  .section-heading h2,
  .section-heading p:not(.section-kicker) {
    box-sizing: border-box;
    max-width: 100%;
    min-width: 0;
    overflow-wrap: normal;
    white-space: normal !important;
  }

  .hero-copy {
    margin-right: auto !important;
    margin-left: 0 !important;
    text-align: left !important;
  }

  .hero-copy,
  .hero-copy h1,
  .hero-lede,
  .section-heading,
  .section-heading h2,
  .section-heading p:not(.section-kicker) {
    inline-size: min(22rem, calc(100dvw - 2rem)) !important;
    max-inline-size: min(22rem, calc(100dvw - 2rem)) !important;
  }

  .hero-lede {
    width: 100%;
    font-size: 0.96rem;
  }

  .capability-strip {
    overflow-x: hidden;
  }

  .strip-track {
    width: 100%;
    max-width: 100vw;
    overflow-x: auto;
  }

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

  .timeline,
  .service-matrix,
  .bento-grid {
    grid-template-columns: 1fr;
  }

  .timeline-card:nth-child(even) {
    margin-top: 0;
  }

  .service-tile,
  .service-tile:first-child,
  .service-tile-wide {
    min-height: auto;
  }
}

@media (max-width: 900px) {
  .site-header {
    right: 0.75rem !important;
    left: 0.75rem !important;
    width: auto !important;
    max-width: none !important;
    padding-right: 4rem !important;
    transform: none !important;
  }

  .menu-toggle {
    position: absolute !important;
    top: 50% !important;
    right: 0.6rem !important;
    z-index: 5 !important;
    display: inline-flex !important;
    flex: 0 0 2.75rem !important;
    margin-left: auto !important;
    opacity: 1 !important;
    pointer-events: auto !important;
    transform: translateY(-50%) !important;
    visibility: visible !important;
  }

  .site-nav {
    right: 0 !important;
    left: 0 !important;
    width: auto !important;
  }
}

@media (max-width: 480px) {
  .site-header {
    right: 0.5rem !important;
    left: 0.5rem !important;
  }
}

/* Final logo quality pass: keep the visible mark clean and use the larger asset for the oversized hero watermark. */
.brand-logo {
  border: 0 !important;
  box-shadow: none !important;
}

img.brand-logo {
  background: none !important;
  object-fit: cover;
}

.ecosystem-hero::after {
  background-image: url("/assets/cb-logo-mark-transparent.png") !important;
  opacity: 0.12;
}
