@import url("https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&display=swap");

:root {
  --navy: #0f1f3d;
  --navy-2: #1e3a8a;
  --blue: #2563eb;
  --blue-2: #0ea5e9;
  --teal: #0f766e;
  --green: #16a34a;
  --violet: #6d5bd0;
  --red: #ef4444;
  --orange: #f97316;
  --text: #374151;
  --muted: #6b7280;
  --pale: #f8fafc;
  --blue-pale: #eff6ff;
  --line: #e5e7eb;
  --white: #fff;
  --shadow: 0 12px 32px -8px rgba(15, 31, 61, .12);
  --shadow-premium: 0 20px 40px -12px rgba(15,31,61,.14), 0 1px 2px rgba(15,31,61,.04);
  --shadow-hover: 0 30px 50px -15px rgba(15,31,61,.2);
  --radius: 8px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

@keyframes pageIn {
  from { opacity: 0; transform: translateY(6px); }
  to { opacity: 1; transform: translateY(0); }
}

body {
  margin: 0;
  font-family: "Inter", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: #fff;
  color: var(--text);
  font-size: 15px;
  line-height: 1.6;
  letter-spacing: 0;
  animation: pageIn .38s ease both;
}

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

a,
button,
.card,
.premium-service-card,
.topic-card,
.resource-card,
.cap-premium,
.problem-card,
.system-chip,
.outcome-chip,
.platform-bar-grid div {
  transition: transform .24s ease, box-shadow .24s ease, background-color .24s ease, border-color .24s ease, color .24s ease, opacity .24s ease;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 200;
  min-height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 0 52px;
  background: rgba(255,255,255,.94);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--line);
  box-shadow: 0 10px 28px -26px rgba(15,31,61,.38);
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--navy);
  min-width: max-content;
}

.brand-lockup {
  display: inline-flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
  gap: 12px;
  line-height: 1;
}

.brand-symbol {
  width: 48px;
  height: 48px;
  display: block;
  object-fit: contain;
  flex: 0 0 auto;
}

.brand-text {
  display: flex;
  flex-direction: column;
  gap: 3px;
  min-width: 0;
}

.brand-text strong {
  color: var(--navy);
  font-size: 26px;
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: .95;
}

.brand-text small {
  display: block;
  color: #9aa3b1;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: -0.01em;
  line-height: 1.1;
  white-space: nowrap;
}

.brand-mark {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
}

.brand-mark img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.brand > span:last-child {
  font-size: 17px;
  font-weight: 800;
  line-height: 1;
}

.brand .brand-copy {
  display: block;
  margin-left: 2px;
  padding-left: 10px;
  border-left: 1px solid rgba(15,31,61,.14);
  color: #64748b;
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 0;
  line-height: 1.15;
  max-width: 92px;
}

.brand small {
  display: block;
  margin-top: 3px;
  color: #9ca3af;
  font-size: 10px;
  font-weight: 500;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  margin-left: auto;
  color: var(--text);
  font-size: 14px;
  font-weight: 500;
}

.nav a,
.drop-label {
  position: relative;
  display: inline-flex;
  align-items: center;
  min-height: 68px;
  padding: 0 2px;
  color: var(--text);
  white-space: nowrap;
  transition: color .28s ease, transform .28s cubic-bezier(.2,.8,.2,1);
}

.nav a:hover,
.drop-label:hover {
  transform: translateY(-1px);
}

.nav a.active,
.drop-label.active {
  color: var(--blue);
}

.nav a:hover,
.drop-label:hover,
.nav a.active,
.drop-label.active {
  color: var(--blue);
}

.nav a.active::after,
.drop-label.active::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 2px;
  border-radius: 999px;
  background: var(--blue);
  transform: scaleX(.72);
  transform-origin: center;
  opacity: .9;
  transition: transform .28s cubic-bezier(.2,.8,.2,1), opacity .28s ease;
}

.nav a:hover::after,
.drop-label:hover::after {
  transform: scaleX(1);
  opacity: 1;
}

.dropdown { position: relative; }

.drop-label { gap: 7px; cursor: default; }

.mobile-menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  gap: 5px;
  flex-direction: column;
  border: 1px solid #dbeafe;
  border-radius: 12px;
  background: #fff;
  color: var(--navy);
  box-shadow: 0 12px 24px -20px rgba(15,31,61,.34);
  cursor: pointer;
  transition: transform .28s cubic-bezier(.2,.8,.2,1), box-shadow .28s ease, border-color .28s ease, background-color .28s ease;
}

.mobile-menu-toggle:hover {
  transform: translateY(-1px);
  border-color: #bfdbfe;
  box-shadow: 0 18px 32px -22px rgba(15,31,61,.42);
}

.mobile-menu-toggle span {
  width: 20px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  transition: transform .34s cubic-bezier(.22,1,.36,1), opacity .22s ease;
}

.nav-open .mobile-menu-toggle span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-open .mobile-menu-toggle span:nth-child(2) { opacity: 0; }
.nav-open .mobile-menu-toggle span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.drop-label .chev {
  width: 14px;
  height: 14px;
  transition: transform .28s cubic-bezier(.2,.8,.2,1);
}

.dropdown:hover .chev { transform: rotate(180deg); }

.dropdown-menu {
  position: absolute;
  top: 60px;
  left: 50%;
  transform: translateX(-50%) translateY(8px);
  min-width: 330px;
  display: grid;
  gap: 6px;
  padding: 10px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 12px;
  box-shadow: 0 24px 56px -28px rgba(15,31,61,.36);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity .28s ease, transform .32s cubic-bezier(.22,1,.36,1), visibility .28s ease;
}

.dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}

.dropdown-menu a {
  min-height: auto;
  display: grid;
  grid-template-columns: 36px 1fr;
  gap: 11px;
  align-items: center;
  padding: 12px;
  border-radius: 8px;
  color: var(--navy);
  transition: background-color .24s ease, transform .24s cubic-bezier(.2,.8,.2,1), color .24s ease;
}

.dropdown-menu a::before {
  content: "";
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--blue-pale);
  background-repeat: no-repeat;
  background-position: center;
  background-size: 20px 20px;
  background-image: url("data:image/svg+xml,%3Csvg width='24' height='24' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M12 3L20 7L12 11L4 7L12 3Z' stroke='%232563eb' stroke-width='1.8' stroke-linejoin='round'/%3E%3Cpath d='M4 12L12 16L20 12' stroke='%232563eb' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M4 17L12 21L20 17' stroke='%232563eb' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}

.dropdown-menu a:nth-child(2)::before {
  background-color: #ecfdf5;
  background-image: url("data:image/svg+xml,%3Csvg width='24' height='24' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M21 12C18 12 16 10 16 7C13 7 11 5 11 2C7.5 4.2 5.5 7 5.5 10.3C5.5 14.5 8.8 17.5 13 17.5C16.5 17.5 19.7 15.5 21 12Z' stroke='%230f766e' stroke-width='1.8' stroke-linejoin='round'/%3E%3Cpath d='M4 22C6.5 16.5 10.5 12.5 16 10' stroke='%230f766e' stroke-width='1.8' stroke-linecap='round'/%3E%3C/svg%3E");
}

.dropdown-menu a:nth-child(3)::before {
  background-color: #f5f3ff;
  background-image: url("data:image/svg+xml,%3Csvg width='24' height='24' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M4 19V5' stroke='%236d5bd0' stroke-width='1.8' stroke-linecap='round'/%3E%3Cpath d='M4 19H20' stroke='%236d5bd0' stroke-width='1.8' stroke-linecap='round'/%3E%3Cpath d='M7 16L11 12L14 14L20 7' stroke='%236d5bd0' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}

.about-dropdown .dropdown-menu a:nth-child(1)::before {
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' fill='none' stroke='%232563eb' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='12' cy='8' r='4'/%3E%3Cpath d='M4 22c0-4.4 3.6-8 8-8s8 3.6 8 8'/%3E%3C/svg%3E");
}

.about-dropdown .dropdown-menu a:nth-child(2)::before {
  background-color: #eff6ff;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' fill='none' stroke='%232563eb' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M13 2 3 14h8l-1 8 11-14h-8l1-6Z'/%3E%3C/svg%3E");
}

.about-dropdown .dropdown-menu a:nth-child(3)::before {
  background-color: #f5f3ff;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' fill='none' stroke='%236d5bd0' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M12 3v18M3 12h18'/%3E%3Cpath d='m7 8 5-5 5 5M7 16l5 5 5-5'/%3E%3C/svg%3E");
}

.dropdown-menu a:hover {
  background: var(--pale);
  transform: translateX(3px);
  color: var(--blue);
}

.cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 42px;
  padding: 0 22px;
  border-radius: var(--radius);
  border: 1.5px solid var(--navy);
  background: var(--navy);
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  white-space: nowrap;
  transition: background .18s ease, border-color .18s ease, transform .18s ease;
}

.cta-btn:hover { background: #1e3a5f; border-color: #1e3a5f; }

.cta-btn.secondary {
  background: #fff;
  color: var(--navy);
  border-color: #d1d5db;
}

.cta-btn.secondary:hover { background: #f9fafb; border-color: #cbd5e1; }

.cta-btn.light {
  background: #fff;
  color: var(--navy);
  border-color: #fff;
}

.hero {
  display: grid;
  grid-template-columns: minmax(360px, 1.05fr) minmax(420px, 1fr);
  gap: 48px;
  align-items: center;
  padding: 64px 62px 60px;
  background: linear-gradient(180deg, #fbfdff 0%, #fff 100%);
}

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

.eyebrow {
  display: inline-flex;
  align-items: center;
  min-height: 24px;
  margin-bottom: 20px;
  padding: 4px 12px;
  border-radius: 999px;
  background: var(--blue-pale);
  color: var(--blue);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

.eyebrow.green {
  background: #ecfdf5;
  color: var(--teal);
}

.hero h1 {
  margin: 0 0 18px;
  color: var(--navy);
  font-size: clamp(40px, 4vw, 58px);
  font-weight: 800;
  line-height: 1.13;
}

.blue { color: var(--blue); }
.green { color: var(--teal); }
.blue-theme .green { color: var(--blue); }

.hero h2 {
  margin: 0 0 18px;
  color: var(--navy);
  font-size: 24px;
  font-weight: 750;
  line-height: 1.25;
}

.lead {
  max-width: 560px;
  margin: 0 0 32px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.75;
  font-weight: 500;
}

.actions { display: flex; gap: 12px; flex-wrap: wrap; }

.visual {
  position: relative;
  min-height: 420px;
  display: grid;
  place-items: center;
}

.financial-hero-visual {
  min-height: 500px;
  align-self: stretch;
}

.financial-hero-image {
  width: min(720px, 100%);
  margin: 0;
  padding: 10px;
  border: 1px solid #dbeafe;
  border-radius: 24px;
  background:
    radial-gradient(circle at 50% 50%, rgba(37, 99, 235, .08), transparent 58%),
    linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
  box-shadow: 0 28px 60px -30px rgba(15, 31, 61, .34);
}

.financial-hero-image img {
  display: block;
  width: 100%;
  border-radius: 18px;
  object-fit: cover;
  box-shadow: 0 18px 44px -28px rgba(15, 31, 61, .5);
}

.orbit {
  position: relative;
  width: min(560px, 100%);
  aspect-ratio: 1 / .82;
  display: grid;
  place-items: center;
}

.orbit::before,
.orbit::after {
  content: "";
  position: absolute;
  inset: 5% 12%;
  border: 1px solid #e2e8f0;
  border-radius: 50%;
  opacity: .85;
}

.orbit::after {
  inset: 14% 22%;
  border-style: dashed;
  border-color: #93c5fd;
  opacity: .75;
}

.center-node {
  position: relative;
  z-index: 2;
  width: 154px;
  height: 154px;
  display: grid;
  place-items: center;
  text-align: center;
  padding: 18px;
  border-radius: 50%;
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  color: var(--navy);
  font-size: 18px;
  font-weight: 800;
  line-height: 1.24;
}

.center-node.dark {
  background: radial-gradient(circle at 28% 18%, #1e4fa1, #0f1f3d 72%);
  color: #fff;
}

.center-node small {
  display: block;
  margin-top: 4px;
  font-size: 10px;
  font-weight: 500;
  color: rgba(255,255,255,.84);
}

.logo-center {
  grid-template-rows: auto auto auto;
  gap: 5px;
  padding: 20px;
}

.logo-center img {
  width: 96px;
  max-width: 82%;
  height: auto;
  display: block;
}

.logo-center span {
  color: var(--navy);
  font-size: 14px;
  font-weight: 800;
  line-height: 1.15;
}

.logo-center small {
  color: var(--muted) !important;
  line-height: 1.35;
}

.node-card {
  position: absolute;
  z-index: 4;
  width: 184px;
  min-height: 82px;
  padding: 15px 16px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #fff;
  box-shadow: var(--shadow);
}

.node-card .icon {
  width: 38px;
  height: 38px;
  margin-bottom: 9px;
  border-radius: 12px;
}

.node-card .icon::before {
  width: 22px;
  height: 22px;
}

.node-card strong {
  display: block;
  margin-bottom: 6px;
  color: var(--navy);
  font-size: 13px;
  font-weight: 800;
}

.node-card span {
  display: block;
  color: var(--muted);
  font-size: 11px;
  line-height: 1.45;
  font-weight: 500;
}

.node-card.top { top: 0; left: 50%; transform: translateX(-50%); }
.node-card.right { right: 0; top: 38%; }
.node-card.bottom { bottom: 0; left: 50%; transform: translateX(-50%); }
.node-card.left { left: 0; top: 38%; }

.service-orbit {
  width: min(620px, 100%);
  min-height: 500px;
}

.service-orbit .service-lines {
  position: absolute;
  inset: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
}

.service-orbit .center-node {
  z-index: 3;
}

.service-orbit .node-card {
  width: 198px;
  min-height: 126px;
}

.service-orbit .node-card.top { top: 0; }
.service-orbit .node-card.left { left: 4px; top: 50%; transform: translateY(-50%); }
.service-orbit .node-card.right { right: 4px; top: 50%; transform: translateY(-50%); }
.service-orbit .node-card.bottom { bottom: 0; }

.three-stack {
  position: relative;
  width: min(430px, 95%);
  display: grid;
  gap: 0;
  justify-items: center;
}

.slab {
  width: 310px;
  min-height: 86px;
  display: grid;
  place-items: center;
  text-align: center;
  padding: 18px;
  color: #fff;
  font-size: 17px;
  font-weight: 800;
  line-height: 1.25;
  clip-path: polygon(50% 0, 100% 22%, 100% 78%, 50% 100%, 0 78%, 0 22%);
  filter: drop-shadow(0 14px 14px rgba(15,31,61,.16));
}

.slab.one { background: linear-gradient(180deg, #7562dc, #4f3abc); }
.slab.two { margin-top: -12px; background: linear-gradient(180deg, #2b84ff, #2563eb); }
.slab.three { margin-top: -12px; background: linear-gradient(180deg, #22b9a4, #0f766e); }

.side-note {
  position: absolute;
  left: -170px;
  width: 175px;
  padding: 14px 16px;
  border: 1px solid var(--line);
  background: #fff;
  border-radius: 12px;
  box-shadow: var(--shadow);
  color: var(--navy);
  font-size: 12px;
  font-weight: 700;
  line-height: 1.45;
}

.side-note.n1 { top: 0; }
.side-note.n2 { top: 114px; }
.side-note.n3 { top: 228px; }
.side-note.right {
  left: auto;
  right: -170px;
  top: 120px;
  width: 170px;
  height: 170px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  text-align: center;
}

.section { padding: 72px 58px; }

.section.soft {
  margin: 0 34px;
  border-radius: 14px;
  background: var(--pale);
}

.section h2 {
  margin: 0 0 12px;
  color: var(--navy);
  text-align: center;
  font-size: 28px;
  font-weight: 800;
  line-height: 1.2;
}

.section h2.left { text-align: left; }

.section > p.sub {
  margin: 0 auto 34px;
  color: var(--muted);
  text-align: center;
  font-size: 14px;
}

.grid { display: grid; gap: 20px; }
.grid.three { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.grid.four { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.grid.five { grid-template-columns: repeat(5, minmax(0, 1fr)); }
.grid.six { grid-template-columns: repeat(6, minmax(0, 1fr)); }
.grid.two { grid-template-columns: repeat(2, minmax(0, 1fr)); }

.card {
  padding: 26px 24px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 10px 24px -18px rgba(15,31,61,.18);
}

.service-card {
  min-height: 430px;
  display: grid;
  align-content: start;
  gap: 14px;
}

.service-card h3,
.card h3 {
  margin: 0;
  color: var(--navy);
  font-size: 17px;
  font-weight: 800;
  line-height: 1.28;
}

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

.card p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.65;
}

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

.icon {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--blue-pale);
  color: var(--blue);
  font-size: 0;
  flex: 0 0 auto;
}

.icon::before {
  content: "";
  width: 27px;
  height: 27px;
  background: currentColor;
  -webkit-mask: var(--icon-layer) center / contain no-repeat;
  mask: var(--icon-layer) center / contain no-repeat;
}

.icon {
  --icon-layer: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' stroke='black' stroke-width='1.7' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M12 3L20 7L12 11L4 7L12 3Z'/%3E%3Cpath d='M4 12L12 16L20 12'/%3E%3Cpath d='M4 17L12 21L20 17'/%3E%3C/g%3E%3C/svg%3E");
}

.icon.green {
  background: #ecfdf5;
  color: var(--teal);
  --icon-layer: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' stroke='black' stroke-width='1.7' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M21 12C18 12 16 10 16 7C13 7 11 5 11 2C7.5 4.2 5.5 7 5.5 10.3C5.5 14.5 8.8 17.5 13 17.5C16.5 17.5 19.7 15.5 21 12Z'/%3E%3Cpath d='M4 22C6.5 16.5 10.5 12.5 16 10'/%3E%3C/g%3E%3C/svg%3E");
}

.icon.violet {
  background: #f5f3ff;
  color: var(--violet);
  --icon-layer: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' stroke='black' stroke-width='1.7' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M4 19V5'/%3E%3Cpath d='M4 19H20'/%3E%3Cpath d='M7 16L11 12L14 14L20 7'/%3E%3C/g%3E%3C/svg%3E");
}

.icon.red {
  background: #fee2e2;
  color: var(--red);
  --icon-layer: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' stroke='black' stroke-width='1.7' stroke-linecap='round'%3E%3Cellipse cx='12' cy='5' rx='8' ry='3'/%3E%3Cpath d='M4 5v5c0 1.7 3.6 3 8 3s8-1.3 8-3V5'/%3E%3Cpath d='M4 10v5c0 1.7 3.6 3 8 3s8-1.3 8-3v-5'/%3E%3C/g%3E%3C/svg%3E");
}

.icon.orange {
  background: #fff7ed;
  color: #ea580c;
}

.icon-users { --icon-layer: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' stroke='black' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='9' cy='7' r='4'/%3E%3Cpath d='M2 21v-2a7 7 0 0 1 14 0v2'/%3E%3Cpath d='M17 11a4 4 0 0 1 0 8'/%3E%3Cpath d='M22 21v-2a5 5 0 0 0-3-4.6'/%3E%3C/g%3E%3C/svg%3E"); }
.icon-provider { --icon-layer: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' stroke='black' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M4 21V6a2 2 0 0 1 2-2h12a2 2 0 0 1 2 2v15'/%3E%3Cpath d='M9 21v-6h6v6'/%3E%3Cpath d='M9 9h.01M15 9h.01M12 9v.01M9 12h.01M15 12h.01'/%3E%3C/g%3E%3C/svg%3E"); }
.icon-shield { --icon-layer: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' stroke='black' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M12 22s8-4 8-10V5l-8-3-8 3v7c0 6 8 10 8 10Z'/%3E%3Cpath d='m9 12 2 2 4-5'/%3E%3C/g%3E%3C/svg%3E"); }
.icon-person { --icon-layer: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' stroke='black' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='12' cy='8' r='4'/%3E%3Cpath d='M4 22c0-4.4 3.6-8 8-8s8 3.6 8 8'/%3E%3C/g%3E%3C/svg%3E"); }
.icon-workflow { --icon-layer: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' stroke='black' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='18' cy='5' r='3'/%3E%3Ccircle cx='6' cy='12' r='3'/%3E%3Ccircle cx='18' cy='19' r='3'/%3E%3Cpath d='M8.6 10.5 15.4 6.5M8.6 13.5l6.8 4'/%3E%3C/g%3E%3C/svg%3E"); }
.icon-visibility { --icon-layer: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' stroke='black' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M2 12s3.5-7 10-7 10 7 10 7-3.5 7-10 7S2 12 2 12Z'/%3E%3Ccircle cx='12' cy='12' r='3'/%3E%3C/g%3E%3C/svg%3E"); }
.icon-rules { --icon-layer: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' stroke='black' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='4' y='3' width='16' height='18' rx='2'/%3E%3Cpath d='M8 8h8M8 12h5M8 16h8'/%3E%3C/g%3E%3C/svg%3E"); }
.icon-api { --icon-layer: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' stroke='black' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M10 13a5 5 0 0 0 7.5.5l3-3a5 5 0 0 0-7-7L12 5'/%3E%3Cpath d='M14 11a5 5 0 0 0-7.5-.5l-3 3a5 5 0 0 0 7 7L12 19'/%3E%3C/g%3E%3C/svg%3E"); }
.icon-claims { --icon-layer: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' stroke='black' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M7 3h10v18H7z'/%3E%3Cpath d='M9 8h6M9 12h6M9 16h3'/%3E%3Cpath d='m15 16 2 2 4-5'/%3E%3C/g%3E%3C/svg%3E"); }
.icon-eligibility { --icon-layer: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' stroke='black' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='3' y='5' width='18' height='14' rx='2'/%3E%3Cpath d='M7 9h5M7 13h3M15 14l2 2 4-5'/%3E%3C/g%3E%3C/svg%3E"); }
.icon-network { --icon-layer: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' stroke='black' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='12' cy='5' r='3'/%3E%3Ccircle cx='5' cy='19' r='3'/%3E%3Ccircle cx='19' cy='19' r='3'/%3E%3Cpath d='M10.5 7.7 6.5 16.3M13.5 7.7l4 8.6M8 19h8'/%3E%3C/g%3E%3C/svg%3E"); }
.icon-heart { --icon-layer: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' stroke='black' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20.8 4.6a5.5 5.5 0 0 0-7.8 0L12 5.6l-1-1a5.5 5.5 0 0 0-7.8 7.8l1 1L12 21l7.8-7.6 1-1a5.5 5.5 0 0 0 0-7.8Z'/%3E%3C/g%3E%3C/svg%3E"); }
.icon-money { --icon-layer: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' stroke='black' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='3' y='6' width='18' height='12' rx='2'/%3E%3Ccircle cx='12' cy='12' r='3'/%3E%3Cpath d='M6 9v.01M18 15v.01'/%3E%3C/g%3E%3C/svg%3E"); }
.icon-ai { --icon-layer: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' stroke='black' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M9 3h6v3h3v6h3v6h-3v3h-6v-3H9v3H3v-6h3v-3H3V6h6V3Z'/%3E%3Cpath d='M10 10h4v4h-4z'/%3E%3C/g%3E%3C/svg%3E"); }
.icon-data { --icon-layer: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' stroke='black' stroke-width='1.8' stroke-linecap='round'%3E%3Cellipse cx='12' cy='5' rx='8' ry='3'/%3E%3Cpath d='M4 5v6c0 1.7 3.6 3 8 3s8-1.3 8-3V5'/%3E%3Cpath d='M4 11v6c0 1.7 3.6 3 8 3s8-1.3 8-3v-6'/%3E%3C/g%3E%3C/svg%3E"); }
.icon-speed { --icon-layer: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' stroke='black' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M4 14a8 8 0 1 1 16 0'/%3E%3Cpath d='m12 14 4-5'/%3E%3Cpath d='M5 19h14'/%3E%3C/g%3E%3C/svg%3E"); }

.check-list {
  display: grid;
  gap: 10px;
  margin: 8px 0 0;
  padding: 0;
  list-style: none;
  color: var(--text);
  font-size: 14px;
}

.check-list li {
  display: grid;
  grid-template-columns: 18px 1fr;
  gap: 8px;
  align-items: start;
}

.check-list li::before {
  content: "";
  width: 17px;
  height: 17px;
  margin-top: 2px;
  border-radius: 50%;
  background: #ecfdf5;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 18 18' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M5 9L8 12L13 6' stroke='%230f766e' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-position: center;
  background-repeat: no-repeat;
  background-size: 15px;
}

.learn {
  margin-top: auto;
  color: var(--blue);
  font-size: 14px;
  font-weight: 800;
}

.mini-dashboard {
  width: 145px;
  min-height: 220px;
  justify-self: end;
  margin-top: -170px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #fff;
  box-shadow: var(--shadow);
}

.mini-dashboard p {
  margin-top: 10px;
  font-size: 10px;
}

.bar-row { display: flex; align-items: end; gap: 6px; height: 46px; margin-top: 14px; }
.bar-row i { flex: 1; display: block; background: #93c5fd; border-radius: 2px 2px 0 0; }

.features {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  text-align: center;
}

.feature {
  padding: 18px 30px;
  border-right: 1px solid var(--line);
}

.feature:last-child { border-right: 0; }
.feature .icon { margin: 0 auto; }
.feature strong { display: block; margin: 14px 0 7px; color: var(--navy); font-size: 14px; }
.feature p { margin: 0; color: var(--muted); font-size: 13px; line-height: 1.6; }

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

.step {
  min-height: 230px;
  padding: 28px 22px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: #fff;
  box-shadow: var(--shadow-premium);
  text-align: center;
  transition: transform .22s ease, box-shadow .22s ease;
}

.step:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-hover);
}

.step .icon { margin: 0 auto; }
.step h3 { margin: 14px 0 8px; color: var(--navy); font-size: 15px; font-weight: 800; line-height: 1.35; }
.step p { margin: 0; color: var(--muted); font-size: 13px; line-height: 1.6; }

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 36px;
  align-items: start;
}

.impact-list { display: grid; gap: 22px; }

.impact-item {
  display: grid;
  grid-template-columns: 58px 1fr;
  gap: 14px;
  align-items: center;
}

.impact-item strong { display: block; margin-bottom: 4px; color: var(--navy); font-weight: 800; }
.impact-item p { margin: 0; color: var(--muted); font-size: 14px; line-height: 1.45; }

.cta-band {
  margin: 0 56px 0;
  display: grid;
  grid-template-columns: 72px 1fr auto;
  gap: 24px;
  align-items: center;
  padding: 34px 42px;
  border-radius: 20px;
  background: linear-gradient(100deg, #0f1f3d, #1e3a8a 58%, #2563eb);
  color: #fff;
}

.cta-band .icon {
  background: var(--blue);
  color: #fff;
}

.cta-band h2 { margin: 0 0 6px; color: #fff; font-size: 22px; font-weight: 800; line-height: 1.3; }
.cta-band p { margin: 0; color: #dbeafe; font-size: 14px; line-height: 1.55; }

.fs-blue-page .green,
.fs-blue-page .eyebrow.green {
  color: var(--blue);
}

.fs-blue-page .eyebrow.green,
.fs-blue-page .icon.green {
  background: var(--blue-pale);
}

.fs-blue-page .icon.green {
  color: var(--blue);
}

.fs-blue-page .check-list li::before {
  background-color: var(--blue-pale);
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 18 18' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M5 9L8 12L13 6' stroke='%232563eb' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}

.blue-theme .check-list li::before {
  background-color: var(--blue-pale);
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 18 18' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M5 9L8 12L13 6' stroke='%232563eb' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}

.fs-blue-page .pill {
  background: var(--blue-pale);
  color: var(--blue);
}

.fs-blue-page .cta-band {
  background: linear-gradient(100deg, #0f1f3d 0%, #1e3a8a 48%, #2563eb 100%);
}

/* Resources and About pages */
.resource-hero,
.about-hero {
  background:
    radial-gradient(circle at 84% 36%, rgba(37, 99, 235, .1), transparent 38%),
    linear-gradient(180deg, #fbfdff 0%, #fff 100%);
}

.resource-search {
  width: min(420px, 100%);
  height: 48px;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 0 16px;
  border: 1px solid #cbd5e1;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 12px 28px -24px rgba(15,31,61,.28);
}

.resource-search .icon {
  width: 20px;
  height: 20px;
  background: transparent;
  color: #64748b;
}

.resource-search .icon::before {
  width: 18px;
  height: 18px;
}

.resource-search input {
  width: 100%;
  border: 0;
  outline: 0;
  color: var(--navy);
  font: 600 14px/1.2 Inter, sans-serif;
}

.resource-search input::placeholder { color: #94a3b8; }

.resource-orbit {
  position: relative;
  width: min(560px, 100%);
  min-height: 420px;
  display: grid;
  place-items: center;
}

.resource-lines {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  fill: none;
  stroke: #93c5fd;
  stroke-dasharray: 4 7;
  opacity: .8;
}

.resource-hub {
  position: relative;
  z-index: 2;
  width: 150px;
  height: 150px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #fff;
  box-shadow: var(--shadow-premium);
}

.resource-hub .brand-mark {
  width: 106px;
  height: 58px;
}

.resource-float {
  position: absolute;
  z-index: 3;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #fff;
  box-shadow: var(--shadow-premium);
}

.resource-float {
  width: 148px;
  height: 92px;
}

.resource-float.top { top: 18px; left: 50%; transform: translateX(-50%); }
.resource-float.left { left: 28px; top: 164px; }
.resource-float.right { right: 28px; top: 164px; }
.resource-float.bottom { left: 50%; bottom: 18px; transform: translateX(-50%); }

.mini-chart {
  width: 112px;
  height: 52px;
  display: flex;
  align-items: end;
  gap: 9px;
  padding: 10px;
  border-radius: 10px;
  background: #f8fbff;
}

.mini-chart::before {
  content: "";
  width: 28px;
  height: 28px;
  align-self: start;
  border: 7px solid #cbd5e1;
  border-right-color: #3b82f6;
  border-radius: 50%;
}

.mini-chart i { width: 10px; border-radius: 3px 3px 0 0; background: #3b82f6; }
.mini-chart i:nth-child(1) { height: 18px; opacity: .45; }
.mini-chart i:nth-child(2) { height: 28px; opacity: .65; }
.mini-chart i:nth-child(3) { height: 38px; }

.video-card span {
  width: 86px;
  height: 54px;
  display: grid;
  place-items: center;
  border-radius: 6px;
  background: linear-gradient(135deg, #0f1f3d, #1d4ed8);
}

.video-card span::before {
  content: "";
  border-left: 15px solid #fff;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
}

.topic-grid { gap: 14px; }

.topic-card {
  min-height: 198px;
  display: grid;
  justify-items: center;
  align-content: start;
  gap: 10px;
  padding: 24px 16px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #fff;
  text-align: center;
  text-decoration: none;
  box-shadow: var(--shadow-premium);
  transition: transform .2s, box-shadow .2s;
}

.topic-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-hover);
}

.topic-card .icon { width: 46px; height: 46px; background: #f8fbff; }
.topic-card .icon::before { width: 25px; height: 25px; }
.topic-card h3 { margin: 0; color: var(--navy); font-size: 13px; font-weight: 800; line-height: 1.25; }
.topic-card p { margin: 0; color: var(--muted); font-size: 12px; line-height: 1.55; }
.topic-card strong { margin-top: auto; color: var(--blue); font-size: 12px; }

.section-row {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  align-items: center;
  margin-bottom: 22px;
}

.text-link {
  color: var(--blue);
  font-size: 14px;
  font-weight: 800;
  text-decoration: none;
}

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

.resource-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #fff;
  box-shadow: var(--shadow-premium);
}

.resource-card img {
  width: 100%;
  aspect-ratio: 1.45 / 1;
  display: block;
  object-fit: cover;
  background: #e2e8f0;
}

.resource-card span {
  display: inline-block;
  margin: -18px 16px 0;
  position: relative;
  padding: 5px 10px;
  border-radius: 999px;
  background: #fff;
  color: var(--blue);
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
  box-shadow: 0 8px 22px -12px rgba(15,31,61,.28);
}

.resource-card h3 {
  min-height: 62px;
  margin: 14px 16px 10px;
  color: var(--navy);
  font-size: 18px;
  line-height: 1.25;
}

.resource-card p {
  margin: 0 16px 22px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.6;
}

.resource-card a {
  display: inline-block;
  margin: 0 16px 22px;
  color: var(--blue);
  font-size: 13px;
  font-weight: 800;
  text-decoration: none;
}

.latest-section {
  display: grid;
  grid-template-columns: 1.15fr .95fr;
  gap: 56px;
  align-items: start;
}

.latest-list {
  display: grid;
  margin-bottom: 18px;
}

.latest-list a {
  display: grid;
  grid-template-columns: 58px 1fr auto;
  gap: 14px;
  align-items: center;
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
  text-decoration: none;
}

.latest-list .icon { width: 48px; height: 48px; border-radius: 10px; }
.latest-list .icon::before { width: 24px; height: 24px; }
.latest-list strong { display: block; color: var(--navy); font-size: 14px; line-height: 1.3; }
.latest-list small { display: block; margin-top: 4px; color: var(--muted); font-size: 12px; }
.latest-list em { color: var(--blue); font-size: 13px; font-style: normal; font-weight: 800; }

.filter-panel h2 { margin-bottom: 18px; }
.filter-pills { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 36px; }
.filter-pills button {
  padding: 9px 14px;
  border: 1px solid #cbd5e1;
  border-radius: 10px;
  background: #fff;
  color: var(--navy);
  font: 700 13px/1 Inter, sans-serif;
}
.filter-pills button:first-child { background: var(--blue); color: #fff; border-color: var(--blue); }

.subscribe-box {
  padding: 30px;
  border: 1px solid #cbd5e1;
  border-radius: 16px;
  background: linear-gradient(180deg, #f8fbff, #fff);
  box-shadow: var(--shadow-premium);
}

.subscribe-box h3 { margin: 0 0 8px; color: var(--navy); font-size: 24px; line-height: 1.2; }
.subscribe-box p { margin: 0 0 22px; color: var(--muted); font-size: 14px; line-height: 1.6; }
.subscribe-box form { display: grid; grid-template-columns: 1fr auto; gap: 10px; margin-bottom: 14px; }
.subscribe-box input {
  min-height: 48px;
  border: 1px solid #cbd5e1;
  border-radius: 8px;
  padding: 0 14px;
  font: 600 14px/1 Inter, sans-serif;
}
.subscribe-box button {
  border: 0;
  border-radius: 8px;
  background: var(--blue);
  color: #fff;
  padding: 0 22px;
  font: 800 14px/1 Inter, sans-serif;
}
.subscribe-box small { color: var(--muted); font-size: 12px; }

.about-photo {
  position: relative;
  width: min(460px, 100%);
  margin: 0 auto;
}

.about-photo::before {
  content: "";
  position: absolute;
  inset: -38px;
  border: 1.5px dashed #93c5fd;
  border-radius: 50%;
}

.about-photo img {
  position: relative;
  display: block;
  width: 100%;
  aspect-ratio: 1 / .86;
  object-fit: cover;
  border-radius: 48% 48% 10% 10%;
  box-shadow: 0 28px 60px -28px rgba(15,31,61,.35);
}

.about-photo figcaption {
  position: absolute;
  right: -38px;
  bottom: -20px;
  display: grid;
  grid-template-columns: 54px 1fr;
  gap: 14px;
  align-items: center;
  min-width: 270px;
  padding: 18px 20px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: #fff;
  box-shadow: var(--shadow-premium);
  color: var(--navy);
}

.about-photo figcaption strong { font-size: 17px; line-height: 1.35; }
.about-photo figcaption span { color: var(--blue); }

.purpose-band {
  margin: 0 24px;
  border: 1px solid #dbeafe;
  border-radius: 16px;
  background: linear-gradient(100deg, #f8fbff, #eefdfb);
}

.purpose-grid {
  display: grid;
  grid-template-columns: 1.7fr repeat(4, 1fr);
  gap: 0;
  align-items: center;
}

.purpose-statement {
  margin: 0;
  padding: 6px 26px 6px 24px;
  border-left: 2px solid var(--blue);
  color: var(--navy);
  font-size: 23px;
  line-height: 1.45;
}

.purpose-metric {
  min-height: 150px;
  padding: 0 24px;
  border-left: 1px solid #cbd5e1;
  text-align: center;
}

.purpose-metric .icon { margin: 0 auto 12px; background: transparent; color: #0f766e; }
.purpose-metric h3 { margin: 0 0 8px; color: var(--navy); font-size: 16px; }
.purpose-metric p { margin: 0; color: var(--muted); font-size: 13px; line-height: 1.55; }

.about-split {
  display: grid;
  grid-template-columns: .95fr 1.05fr;
  gap: 64px;
  align-items: start;
}

.about-split p {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.75;
}

.proof-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 28px;
}

.proof-row > div {
  display: grid;
  grid-template-columns: 46px 1fr;
  gap: 12px;
  align-items: center;
  color: var(--navy);
  font-size: 13px;
  font-weight: 800;
  line-height: 1.3;
}

.proof-row .icon { width: 42px; height: 42px; background: #fff; border: 1px solid #cbd5e1; }
.proof-row .icon::before { width: 22px; height: 22px; }

.difference-panel {
  padding: 32px;
  border-radius: 16px;
  background: #f8fbff;
  box-shadow: var(--shadow-premium);
}

.difference-item {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 16px;
  padding: 18px 0;
  border-bottom: 1px solid #cbd5e1;
}

.difference-item:last-child { border-bottom: 0; }
.difference-item .icon { width: 42px; height: 42px; background: transparent; color: var(--blue); }
.difference-item .icon::before { width: 24px; height: 24px; }
.difference-item p { margin: 0; font-size: 13px; }
.difference-item strong { display: block; margin-bottom: 3px; color: var(--navy); }

.values-section .eyebrow { margin-left: 18px; }
.value-card {
  min-height: 190px;
  padding: 28px 22px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #fff;
  text-align: center;
  box-shadow: var(--shadow-premium);
}
.value-card .icon { margin: 0 auto 14px; background: transparent; }
.value-card h3 { margin: 0 0 10px; color: var(--navy); font-size: 15px; }
.value-card p { margin: 0; color: var(--muted); font-size: 12.5px; line-height: 1.6; }

.trust-banner {
  margin: 0 44px 10px;
  display: grid;
  grid-template-columns: 74px 1fr 1.4fr;
  gap: 26px;
  align-items: center;
  padding: 30px 34px;
  border-radius: 16px;
  background: linear-gradient(100deg, #0f1f3d, #1446a0 62%, #075985);
  color: #fff;
}

.trust-banner > .icon {
  width: 64px;
  height: 64px;
  background: #1d4ed8;
  color: #fff;
}

.trust-banner h2 { margin: 0 0 8px; color: #fff; font-size: 22px; }
.trust-banner p { margin: 0; color: #dbeafe; font-size: 14px; line-height: 1.55; }
.trust-mini {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}
.trust-mini span {
  min-height: 78px;
  display: grid;
  place-items: center;
  gap: 8px;
  border-left: 1px solid rgba(255,255,255,.22);
  color: #fff;
  text-align: center;
  font-size: 12px;
  font-weight: 800;
}
.trust-mini .icon { width: 30px; height: 30px; background: transparent; color: #fff; }
.trust-mini .icon::before { width: 24px; height: 24px; }

.contact-hero {
  grid-template-columns: minmax(320px, .75fr) minmax(520px, 1.25fr);
  align-items: start;
  gap: 40px;
  padding-top: 54px;
  background: linear-gradient(180deg, #fbfdff, #fff);
}

.contact-hero h1 {
  max-width: 520px;
  font-size: clamp(38px, 3.8vw, 54px);
}

.contact-points {
  display: grid;
  gap: 16px;
  margin-top: 34px;
}

.contact-points > div {
  display: grid;
  grid-template-columns: 54px 1fr;
  gap: 14px;
  align-items: center;
  padding: 18px;
  border: 1px solid #dbeafe;
  border-radius: 16px;
  background: #fff;
  box-shadow: var(--shadow-premium);
}

.contact-points strong {
  display: block;
  margin-bottom: 4px;
  color: var(--navy);
  font-size: 15px;
}

.contact-points span {
  display: block;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.5;
}

.contact-card {
  overflow: hidden;
  border: 1px solid #dbeafe;
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 20px 48px -32px rgba(15,31,61,.34);
}

.contact-card-head {
  padding: 20px 24px;
  border-bottom: 1px solid #e5e7eb;
  background: #f8fbff;
}

.contact-card-head h2 {
  margin: 0;
  color: var(--navy);
  font-size: 22px;
}

.contact-card-head p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.calendly-inline-widget {
  width: 100%;
}

/* Mission and Story pages */
.mission-hero,
.story-hero {
  display: grid;
  grid-template-columns: minmax(360px, .92fr) minmax(520px, 1.08fr);
  gap: 54px;
  align-items: center;
  padding: 76px 64px 72px;
  background: linear-gradient(90deg, #f8fbff 0%, #fff 46%, #eef6ff 100%);
}

.mission-copy h1,
.story-copy h1 {
  margin: 0 0 22px;
  color: var(--navy);
  font-size: clamp(44px, 4.4vw, 64px);
  font-weight: 800;
  line-height: 1.06;
  letter-spacing: -1.4px;
}

.north-star-card {
  max-width: 520px;
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 20px;
  align-items: center;
  margin-top: 30px;
  padding: 26px;
  border: 1px solid #dbeafe;
  border-radius: 16px;
  background: rgba(255,255,255,.94);
  box-shadow: var(--shadow-premium);
}

.north-star-card strong {
  display: block;
  margin-bottom: 7px;
  color: #0f766e;
  font-size: 18px;
}

.north-star-card p {
  margin: 0;
  color: var(--navy);
  font-size: 16px;
  font-weight: 800;
  line-height: 1.5;
}

.mission-visual {
  position: relative;
  min-height: 500px;
  overflow: hidden;
  border-radius: 0 0 0 90px;
}

.mission-visual img {
  width: 100%;
  height: 100%;
  min-height: 500px;
  display: block;
  object-fit: cover;
  object-position: center;
}

.mission-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 38% 50%, rgba(255,255,255,.45), transparent 48%);
}

.mission-network span {
  position: absolute;
  z-index: 2;
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(255,255,255,.96);
  box-shadow: var(--shadow-premium);
}

.mission-network span::before {
  content: "";
  width: 28px;
  height: 28px;
  background: var(--blue);
  -webkit-mask: var(--icon-layer) center / contain no-repeat;
  mask: var(--icon-layer) center / contain no-repeat;
}

.mission-network span:nth-child(1) { left: 34%; top: 22%; --icon-layer: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' stroke='black' stroke-width='1.8' stroke-linecap='round'%3E%3Cpath d='M16 21v-2a4 4 0 0 0-4-4H6a4 4 0 0 0-4 4v2'/%3E%3Ccircle cx='9' cy='7' r='4'/%3E%3Cpath d='M22 21v-2a4 4 0 0 0-3-3.87M16 3.13a4 4 0 0 1 0 7.75'/%3E%3C/g%3E%3C/svg%3E"); }
.mission-network span:nth-child(2) { left: 20%; top: 56%; --icon-layer: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' stroke='black' stroke-width='1.8'%3E%3Cpath d='M7 3h10v18H7z'/%3E%3Cpath d='M9 8h6M9 12h6M9 16h3'/%3E%3C/g%3E%3C/svg%3E"); }
.mission-network span:nth-child(3) { left: 46%; top: 74%; --icon-layer: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' stroke='black' stroke-width='1.8'%3E%3Cpath d='M20.8 4.6a5.5 5.5 0 0 0-7.8 0L12 5.6l-1-1a5.5 5.5 0 0 0-7.8 7.8L12 21l8.8-8.6a5.5 5.5 0 0 0 0-7.8Z'/%3E%3C/g%3E%3C/svg%3E"); }
.mission-network span:nth-child(4) { left: 62%; top: 12%; --icon-layer: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' stroke='black' stroke-width='1.8'%3E%3Cpath d='M12 22s8-4 8-10V5l-8-3-8 3v7c0 6 8 10 8 10Z'/%3E%3C/g%3E%3C/svg%3E"); }

.mission-problems .card,
.mission-future .grid > div {
  text-align: center;
}

.mission-note {
  margin: 20px 0 0;
  color: var(--navy);
  text-align: center;
  font-weight: 700;
}

.mission-why {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 64px;
  align-items: center;
  padding: 56px 64px;
  background: linear-gradient(90deg, #f8fbff, #eff6ff);
}

.mission-why img,
.story-photo img {
  width: 100%;
  display: block;
  object-fit: cover;
  box-shadow: var(--shadow-premium);
}

.mission-why img {
  aspect-ratio: 1.65 / 1;
  border-radius: 18px;
}

.mission-why h2,
.mission-metric h2 {
  margin: 0 0 18px;
  color: var(--navy);
  font-size: 30px;
}

.belief-callout {
  display: grid;
  grid-template-columns: 54px 1fr;
  gap: 14px;
  align-items: center;
  margin-top: 24px;
  color: #0f766e;
  font-weight: 800;
}

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

.belief-row > div {
  padding: 0 26px;
  border-right: 1px solid #dbeafe;
  text-align: center;
}

.belief-row > div:last-child { border-right: 0; }
.belief-row .icon { margin: 0 auto 12px; background: transparent; }
.belief-row h3 { margin: 0 0 8px; color: var(--navy); font-size: 14px; }
.belief-row p { margin: 0; color: var(--muted); font-size: 12.5px; line-height: 1.55; }

.mission-metric {
  display: grid;
  grid-template-columns: .95fr 1.45fr;
  gap: 44px;
  align-items: center;
  padding: 48px 64px;
  background: #f8fbff;
}

.mission-metric strong {
  display: block;
  color: var(--blue);
  font-size: 28px;
  line-height: 1.15;
}

.mission-metric span {
  display: block;
  color: var(--muted);
  font-size: 13px;
}

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

.metric-row > div {
  color: var(--navy);
  text-align: center;
  font-size: 13px;
  font-weight: 800;
}

.metric-row .icon { margin: 0 auto 12px; background: transparent; }

.not-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 22px;
}

.not-grid > div {
  position: relative;
  padding-left: 34px;
}

.not-grid > div::before {
  content: "";
  position: absolute;
  left: 0;
  top: 4px;
  width: 22px;
  height: 22px;
  border: 2px solid #fb7185;
  border-radius: 50%;
}

.not-grid > div::after {
  content: "";
  position: absolute;
  left: 5px;
  top: 15px;
  width: 15px;
  height: 2px;
  background: #fb7185;
  transform: rotate(-45deg);
}

.not-grid strong {
  display: block;
  color: var(--navy);
  font-size: 14px;
  line-height: 1.25;
}

.not-grid p {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 12.5px;
}

.mission-future {
  background: linear-gradient(180deg, #f8fbff, #eefcff);
}

.mission-future .grid > div {
  display: grid;
  justify-items: center;
  gap: 10px;
  color: var(--navy);
  font-weight: 800;
}

.story-hero {
  background: linear-gradient(90deg, #f8fbff 0%, #fff 50%, #eef6ff 100%);
}

.story-photo {
  position: relative;
  margin: 0;
  overflow: hidden;
  border-radius: 46% 0 0 46%;
}

.story-photo img {
  min-height: 430px;
  aspect-ratio: 1.45 / 1;
}

.story-photo figcaption {
  position: absolute;
  right: 42px;
  bottom: 38px;
  max-width: 360px;
  padding: 22px 28px;
  border-radius: 12px;
  background: rgba(255,255,255,.96);
  box-shadow: var(--shadow-premium);
  color: var(--navy);
  font-size: 19px;
  font-weight: 800;
  line-height: 1.35;
}

.story-photo figcaption::before {
  content: "\201C";
  color: #0f766e;
  font-size: 42px;
  line-height: 0;
  margin-right: 8px;
  vertical-align: -12px;
}

.journey-section {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 54px;
}

.journey-line {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
}

.journey-line > div {
  position: relative;
  padding: 0 24px;
  border-left: 1px solid #dbeafe;
}

.journey-line .icon {
  margin: 0 auto 18px;
  background: #eff6ff;
}

.journey-line strong {
  display: block;
  color: var(--navy);
  font-size: 15px;
  line-height: 1.3;
}

.journey-line p {
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 12.5px;
  line-height: 1.6;
}

.story-star {
  margin: 0 54px;
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 44px;
  padding: 42px;
  border: 1px solid #dbeafe;
  border-radius: 18px;
  background: linear-gradient(100deg, #f8fbff, #eefdfb);
}

.story-star h2 {
  color: var(--navy);
  font-size: 30px;
  line-height: 1.22;
}

.story-frictions {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
  margin: 28px 0;
}

.story-frictions > div {
  padding: 0 14px;
  border-right: 1px solid #dbeafe;
  text-align: center;
  color: var(--navy);
  font-size: 12px;
  font-weight: 800;
}

.story-frictions > div:last-child { border-right: 0; }
.story-frictions .icon { margin: 0 auto 8px; background: transparent; }

.advantage-section { text-align: center; }

.advantage-diagram {
  display: grid;
  grid-template-columns: 1fr 170px 1fr;
  gap: 34px;
  align-items: center;
  max-width: 1080px;
  margin: 28px auto 22px;
}

.adv-card {
  padding: 34px;
  border: 1px solid #dbeafe;
  border-radius: 16px;
  background: #fff;
  box-shadow: var(--shadow-premium);
  text-align: left;
}

.adv-card h3 { color: var(--navy); margin: 0 0 10px; }
.adv-card p { color: var(--muted); margin: 0; font-size: 14px; }

.adv-hub {
  width: 150px;
  height: 150px;
  display: grid;
  place-items: center;
  border: 1px dashed #93c5fd;
  border-radius: 50%;
  background: #fff;
  box-shadow: var(--shadow-premium);
}

.site-footer {
  margin-top: 18px;
  padding: 46px 62px 26px;
  background: var(--navy);
  color: #fff;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr repeat(5, 1fr);
  gap: 28px;
  padding-bottom: 32px;
  border-bottom: 1px solid #1e3a5f;
}

.footer-grid h4 {
  margin: 0 0 14px;
  color: #fff;
  font-size: 13px;
  font-weight: 700;
}

.footer-grid a,
.footer-grid p {
  display: block;
  margin: 0 0 9px;
  color: #9ca3af;
  font-size: 12px;
  line-height: 1.4;
}

.footer-brand {
  color: #fff;
  font-size: 16px;
  font-weight: 800;
}

.site-footer .brand-text strong {
  color: #fff;
}

.site-footer .brand-text small {
  color: #9ca3af;
}

.copyright {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding-top: 20px;
  color: #6b7280;
  font-size: 12px;
}

.breadcrumb {
  padding: 22px 62px 0;
  color: var(--muted);
  font-size: 13px;
}

.model-diagram {
  display: grid;
  grid-template-columns: .85fr 1.7fr .8fr;
  gap: 32px;
  align-items: center;
}

.layer-stack { display: grid; gap: 14px; }

.layer {
  padding: 22px 28px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #fff;
  text-align: center;
  box-shadow: 0 10px 24px -18px rgba(15,31,61,.18);
}

.layer.primary {
  background: var(--navy-2);
  color: #fff;
  font-weight: 800;
}

.pill-row {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 10px;
}

.pill {
  display: inline-flex;
  align-items: center;
  min-height: 25px;
  padding: 0 12px;
  border-radius: 999px;
  background: var(--blue-pale);
  color: var(--navy);
  font-size: 11px;
  font-weight: 700;
}

.comparison {
  display: grid;
  grid-template-columns: 1fr 2fr 1.25fr;
  gap: 36px;
  align-items: center;
}

.table-card {
  border: 1px solid var(--line);
  border-radius: 12px;
  overflow: hidden;
  background: #fff;
}

.table-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-bottom: 1px solid #f0f0f0;
}

.table-row:last-child { border-bottom: 0; }
.table-row strong,
.table-row span { padding: 13px 16px; font-size: 13px; }
.table-row strong { background: #f3f4f6; color: var(--navy); }
.table-row strong:nth-child(2) { background: var(--blue); color: #fff; }
.table-row span:nth-child(2) { background: #f8fbff; }

.micro-ui {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: #fff;
  box-shadow: var(--shadow);
}

.micro-ui-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid var(--line);
  padding: 12px 16px;
  background: var(--pale);
  color: var(--muted);
  font-size: 11px;
}

.micro-ui-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  padding: 16px;
}

.micro-ui-grid div {
  padding: 14px 10px;
  border-radius: 8px;
  background: var(--pale);
  color: var(--muted);
  font-size: 11px;
}

.micro-ui-grid strong { color: var(--navy); }

@media (max-width: 1080px) {
  body::before {
    content: "";
    position: fixed;
    inset: 0;
    z-index: 300;
    background: rgba(15,31,61,.18);
    backdrop-filter: blur(2px);
    opacity: 0;
    pointer-events: none;
    transition: opacity .28s ease;
  }

  body.nav-open::before {
    opacity: 1;
    pointer-events: none;
  }

  .site-header {
    z-index: 700;
    min-height: 68px;
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 12px 18px;
  }

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

  .nav {
    position: fixed;
    top: 69px;
    left: 14px;
    right: 14px;
    z-index: 720;
    width: auto;
    max-height: calc(100vh - 88px);
    display: flex;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    gap: 8px;
    overflow-y: auto;
    padding: 16px;
    border: 1px solid #dbeafe;
    border-radius: 18px;
    background: rgba(255,255,255,.98);
    box-shadow: 0 32px 70px -34px rgba(15,31,61,.45);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-10px) scale(.985);
    transform-origin: top center;
    transition: opacity .3s ease, transform .36s cubic-bezier(.22,1,.36,1);
  }

  .nav-open .nav {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0) scale(1);
  }

  .nav a,
  .drop-label,
  .dropdown {
    width: 100%;
    min-height: 44px;
    justify-content: flex-start;
    padding: 12px 14px;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    background: #fff;
    white-space: nowrap;
    transform: translateX(6px);
    opacity: 0;
    transition: transform .3s cubic-bezier(.22,1,.36,1), opacity .3s ease, background-color .22s ease, border-color .22s ease, color .22s ease;
  }

  .nav .dropdown-menu a {
    opacity: 1;
    transform: none;
  }

  .dropdown {
    display: block;
    min-height: auto;
    padding: 0;
    border: 0;
    background: transparent;
    opacity: 0;
    transform: translateX(6px);
  }

  .dropdown .drop-label {
    opacity: 1;
    transform: none;
  }

  .nav-open .nav > a,
  .nav-open .nav > .dropdown {
    transform: translateX(0);
    opacity: 1;
  }

  .nav-open .nav > :nth-child(1) { transition-delay: .03s; }
  .nav-open .nav > :nth-child(2) { transition-delay: .06s; }
  .nav-open .nav > :nth-child(3) { transition-delay: .09s; }
  .nav-open .nav > :nth-child(4) { transition-delay: .12s; }
  .nav-open .nav > :nth-child(5) { transition-delay: .15s; }

  .nav a:hover,
  .drop-label:hover {
    transform: translateX(3px);
  }

  .nav a.active::after,
  .drop-label.active::after { display: none; }

  .nav a.active,
  .drop-label.active {
    border-color: #bfdbfe;
    background: #eff6ff;
  }

  .site-header > .cta-btn {
    display: none;
    min-height: 40px;
    padding: 10px 16px;
    white-space: nowrap;
  }

  .dropdown-menu {
    position: static;
    left: auto;
    top: auto;
    min-width: 0;
    width: 100%;
    display: grid;
    gap: 8px;
    max-height: 0;
    margin: 0;
    padding: 0 8px;
    border: 0;
    border-radius: 12px;
    background: #f8fbff;
    box-shadow: none;
    opacity: 1;
    visibility: visible;
    pointer-events: none;
    overflow: hidden;
    transform: none !important;
    transition: max-height .32s cubic-bezier(.22,1,.36,1), padding .24s ease, margin .24s ease, background-color .24s ease;
  }

  .dropdown.open .dropdown-menu {
    max-height: 260px;
    margin: 8px 0 0;
    padding: 8px;
    pointer-events: auto;
  }

  .about-dropdown.open .dropdown-menu {
    max-height: 230px;
  }

  .dropdown.open .chev {
    transform: rotate(180deg);
  }

  .dropdown-menu a {
    width: 100%;
    display: grid;
    grid-template-columns: 32px 1fr;
    min-height: 40px;
    padding: 10px 12px;
    font-size: 13px;
    opacity: 1;
    transform: none;
    pointer-events: auto;
    background: #fff;
  }

  .dropdown-menu a::before {
    width: 32px;
    height: 32px;
  }

  .nav-open .dropdown-menu a {
    opacity: 1;
    transform: none;
  }

  .hero {
    grid-template-columns: 1fr;
    padding: 48px 28px;
  }

  .visual { min-height: 360px; }
  .grid.three,
  .grid.four,
  .grid.five,
  .grid.six,
  .grid.two,
  .split,
  .model-diagram,
  .comparison { grid-template-columns: 1fr; }

  .process { grid-template-columns: 1fr; }
  .features { grid-template-columns: 1fr 1fr; }
  .section,
  .site-footer { padding-left: 24px; padding-right: 24px; }
  .section.soft { margin: 0 16px; }
  .cta-band { margin-left: 18px; margin-right: 18px; grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .side-note { display: none; }
}

@media (max-width: 640px) {
  .hero h1 { font-size: 36px; }
  .actions,
  .cta-btn { width: 100%; }
  .features,
  .footer-grid,
  .micro-ui-grid { grid-template-columns: 1fr; }
  .node-card {
    position: static;
    width: 100%;
    transform: none !important;
    margin: 8px 0;
  }
  .orbit {
    display: grid;
    gap: 8px;
    aspect-ratio: auto;
  }
  .orbit::before,
  .orbit::after { display: none; }
  .center-node {
    width: 150px;
    height: 150px;
    justify-self: center;
  }
  .copyright { flex-direction: column; }
}

/* Premium polish pass inspired by the provided reference */
.hero {
  padding: 86px 64px 78px;
  background: radial-gradient(circle at 88% 44%, #eff6ff 0%, rgba(239,246,255,.5) 28%, transparent 46%), linear-gradient(180deg, #fbfdff 0%, #fff 100%);
}

main.blue-theme > .hero:first-child {
  padding-bottom: 42px;
}

.hero h1 {
  line-height: 1.08;
  letter-spacing: -1.2px;
}

.visual { min-height: 560px; }

.premium-orbit {
  position: relative;
  width: min(620px, 100%);
  height: min(620px, 78vw);
  min-height: 520px;
}

.premium-orbit svg.orbit-lines {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.premium-hub {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 8;
  width: 112px;
  height: 112px;
  display: grid;
  place-items: center;
  transform: translate(-50%, -50%);
  border: 1px solid #eef2f7;
  border-radius: 50%;
  background: #fff;
  box-shadow: var(--shadow-premium);
}

.premium-orbit-card {
  position: absolute;
  z-index: 12;
  width: 240px;
  min-height: 166px;
  padding: 26px 22px;
  border: 1px solid #eef2f7;
  border-radius: 32px;
  background: rgba(255,255,255,.96);
  box-shadow: var(--shadow-premium);
  text-align: center;
  transition: transform .28s ease, box-shadow .28s ease;
}

.premium-orbit-card:hover { transform: translateY(-10px); box-shadow: var(--shadow-hover); }
.premium-orbit-card.orbit-top { top: 0; left: 50%; transform: translateX(-50%); }
.premium-orbit-card.orbit-top:hover { transform: translateX(-50%) translateY(-10px); }
.premium-orbit-card.orbit-left { bottom: 7%; left: -2%; }
.premium-orbit-card.orbit-right { bottom: 7%; right: -2%; }

.premium-card-icon {
  width: 56px;
  height: 56px;
  display: grid;
  place-items: center;
  margin: 0 auto 18px;
  border-radius: 20px;
  color: #fff;
}

.premium-card-icon.blue-bg { background: linear-gradient(135deg, #3b82f6, #1d4ed8); }
.premium-card-icon.teal-bg { background: linear-gradient(135deg, #10b981, #047857); }
.premium-card-icon.violet-bg { background: linear-gradient(135deg, #8b5cf6, #6d28d9); }

.premium-orbit-card h4 {
  margin: 0 0 9px;
  color: var(--navy);
  font-size: 18px;
  font-weight: 800;
}

.premium-orbit-card p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.5;
}

.card {
  border-radius: 16px;
  box-shadow: var(--shadow-premium);
  transition: transform .22s ease, box-shadow .22s ease;
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
}

.premium-services {
  padding: 44px 64px 90px;
  margin-top: -8px;
  background: #f9fafb;
}

.premium-service-card {
  min-height: 100%;
  padding: 38px 32px;
  border: 1px solid #eef2f6;
  border-radius: 32px;
  background: #fff;
  box-shadow: 0 22px 52px -30px rgba(15,31,61,.42), 0 1px 0 rgba(15,31,61,.03);
  display: flex;
  flex-direction: column;
  transition: transform .25s ease, box-shadow .25s ease;
}

.premium-service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-hover);
}

.premium-card-head {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 24px;
}

.premium-card-head h3 {
  margin: 0;
  font-size: 20px;
  font-weight: 800;
  line-height: 1.18;
  letter-spacing: -.3px;
}

.round-icon {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  border-radius: 50%;
  background: rgba(37,99,235,.1);
  color: var(--blue);
}

.round-icon.green { background: #ecfdf5; color: #047857; }
.round-icon.violet { background: #f5f3ff; color: #6d28d9; }

.premium-card-body {
  display: grid;
  grid-template-columns: 1.25fr .82fr;
  gap: 24px;
  align-items: start;
  flex: 1;
}

.premium-card-body.full { grid-template-columns: 1fr; }

.premium-subtitle {
  margin: 0 0 10px;
  color: var(--navy);
  font-size: 15px;
  font-weight: 800;
  line-height: 1.35;
}

.premium-desc {
  margin: 0 0 18px;
  color: var(--muted);
  font-size: 13.5px;
  line-height: 1.55;
}

.dashboard-widget,
.ba-widget,
.frag-widget {
  border: 1px solid #dbeafe;
  border-radius: 20px;
  padding: 18px 16px;
  background: linear-gradient(145deg, #eff6ff, #fff);
  box-shadow: 0 10px 22px rgba(37,99,235,.08);
}

.ba-widget,
.frag-widget {
  min-height: 174px;
  display: grid;
  align-content: center;
  justify-items: center;
  background:
    radial-gradient(circle at 50% 38%, rgba(37,99,235,.08), transparent 52%),
    linear-gradient(145deg, #f8fbff, #fff);
  box-shadow: 0 16px 38px -26px rgba(15,31,61,.36);
}

.widget-label {
  margin-bottom: 14px;
  color: #1e40af;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .8px;
  text-transform: uppercase;
}

.ba-widget { border-color: #dbeafe; text-align: center; }
.frag-widget { border-color: #dbeafe; text-align: center; }
.ba-widget .widget-label,
.frag-widget .widget-label { color: var(--blue); }
.ba-widget svg,
.frag-widget svg {
  width: 132px;
  height: auto;
  filter: drop-shadow(0 10px 12px rgba(37,99,235,.12));
}

.ba-widget::after {
  content: "Aligned operating model";
  display: inline-block;
  margin-top: 10px;
  padding: 5px 10px;
  border-radius: 999px;
  background: #eff6ff;
  color: var(--blue);
  font-size: 10px;
  font-weight: 800;
}

.frag-widget::after {
  content: "Trusted unified foundation";
  display: inline-block;
  margin-top: 10px;
  padding: 5px 10px;
  border-radius: 999px;
  background: #eff6ff;
  color: var(--blue);
  font-size: 10px;
  font-weight: 800;
}

.stat-row { margin-bottom: 12px; }
.stat-label { margin-bottom: 4px; color: #64748b; font-size: 9px; font-weight: 700; text-transform: uppercase; }
.stat-value-row { display: flex; align-items: baseline; justify-content: space-between; gap: 8px; }
.stat-number { color: var(--navy); font-size: 18px; font-weight: 800; }
.badge-red, .badge-green { padding: 3px 7px; border-radius: 999px; font-size: 9px; font-weight: 800; }
.badge-red { background: #fee2e2; color: #dc2626; }
.badge-green { background: #d1fae5; color: #059669; }
.mini-bars { display: flex; gap: 5px; height: 38px; align-items: flex-end; margin-top: 16px; }
.mini-bars span { flex: 1; background: #3b82f6; border-radius: 4px 4px 0 0; opacity: .72; }
.premium-service-card .learn { margin-top: 26px; }

.platform-hero .premium-orbit-card {
  width: 190px;
  min-height: 126px;
  padding: 18px;
  border-radius: 22px;
}

.platform-hero .premium-card-icon {
  width: 42px;
  height: 42px;
  border-radius: 14px;
  margin-bottom: 10px;
}

.platform-hero .premium-orbit-card h4 { font-size: 14px; margin-bottom: 5px; }
.platform-hero .premium-orbit-card p { font-size: 11px; }
.platform-hero .premium-hub {
  width: 178px;
  height: 178px;
  background: radial-gradient(circle at 28% 18%, #1e4fa1, #0f1f3d 72%);
  color: #fff;
  text-align: center;
  font-size: 22px;
  font-weight: 800;
  line-height: 1.15;
}

.module-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  grid-column: span 2;
}

.module-card {
  min-height: 220px;
  padding: 24px 20px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.module-card h3 {
  max-width: 190px;
  min-height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 14px 0 9px;
  font-size: 15.5px;
  line-height: 1.22;
}

.module-card p {
  max-width: 210px;
  margin: 0 auto;
  font-size: 12.8px;
  line-height: 1.55;
}

@media (max-width: 1080px) {
  .premium-orbit { transform: scale(.88); transform-origin: center; margin: -36px 0; }
  .module-grid { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
  .premium-orbit {
    width: 100%;
    height: auto;
    min-height: 0;
    transform: none;
    display: grid;
    gap: 14px;
  }
  .premium-orbit svg.orbit-lines { display: none; }
  .premium-hub,
  .premium-orbit-card {
    position: static;
    width: 100%;
    transform: none !important;
  }
  .premium-hub { height: 120px; border-radius: 24px; }
  .premium-card-body { grid-template-columns: 1fr; }
}

/* Platform page: reference-inspired diagrams and consistent blue-first theme */
.platform-hero .premium-orbit {
  width: min(620px, 100%);
  min-height: 680px;
}

.platform-hero .premium-hub {
  width: 168px;
  height: 168px;
}

.platform-hero .premium-orbit-card.orbit-left {
  left: -10px;
  top: 50%;
  transform: translateY(-50%);
  bottom: auto;
}

.platform-hero .premium-orbit-card.orbit-left:hover {
  transform: translateY(calc(-50% - 10px));
}

.platform-hero .premium-orbit-card.orbit-right {
  right: -10px;
  top: 50%;
  transform: translateY(-50%);
  bottom: auto;
}

.platform-hero .premium-orbit-card.orbit-right:hover {
  transform: translateY(calc(-50% - 10px));
}

.platform-hero .premium-orbit-card.orbit-bottom {
  bottom: 6px;
  left: 50%;
  transform: translateX(-50%);
}

.platform-hero .premium-orbit-card.orbit-bottom:hover {
  transform: translateX(-50%) translateY(-10px);
}

.blue-theme .icon.green,
.blue-theme .round-icon.green {
  background: var(--blue-pale);
  color: var(--blue);
}

.problem-strip {
  padding: 26px 58px 64px;
}

.problem-strip h2,
.platform-flow h2,
.platform-caps h2,
.platform-why h2,
.platform-trust h2 {
  margin: 0 0 28px;
  color: var(--navy);
  text-align: center;
  font-size: 28px;
  font-weight: 800;
  line-height: 1.2;
}

.problem-card {
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 26px 24px;
  background: #fff;
  box-shadow: var(--shadow-premium);
}

.problem-card .icon {
  background: #fee2e2;
  color: var(--red);
  margin-bottom: 18px;
}

.problem-card .icon.orange {
  background: #fff7ed;
  color: #ea580c;
}

.problem-card .icon.violet {
  background: #f5f3ff;
  color: var(--violet);
}

.problem-card h3 {
  margin: 0 0 7px;
  color: var(--navy);
  font-size: 15px;
  font-weight: 800;
}

.problem-card p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.6;
}

.warning-pill {
  width: fit-content;
  max-width: 100%;
  margin: 28px auto 0;
  padding: 14px 26px;
  border: 1px solid #fb923c;
  border-radius: 999px;
  background: linear-gradient(180deg, #fff7ed, #fff);
  color: #9a3412;
  font-size: 13.5px;
  font-weight: 800;
  box-shadow: 0 16px 34px -24px rgba(234,88,12,.42);
}

.platform-flow {
  margin: 0 34px;
  padding: 76px 30px;
  border-radius: 20px;
  background: var(--pale);
}

.flow-layout {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 58px;
  align-items: center;
  max-width: 1180px;
  margin: 0 auto;
}

.flow-copy h2 {
  text-align: left;
  margin-bottom: 16px;
}

.flow-copy p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.75;
}

.flow-diagram {
  position: relative;
  min-width: 0;
}

.flow-connectors {
  position: absolute;
  z-index: 0;
  left: 0;
  right: 0;
  top: 48px;
  width: 100%;
  height: 350px;
  pointer-events: none;
}

.flow-connectors path {
  fill: none;
  stroke: #60a5fa;
  stroke-width: 2.4;
  stroke-linecap: round;
  stroke-dasharray: 7 8;
  opacity: .78;
  filter: drop-shadow(0 4px 8px rgba(37,99,235,.16));
}

.flow-label {
  margin-bottom: 10px;
  color: #94a3b8;
  text-align: center;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 1.8px;
  text-transform: uppercase;
}

.systems-row,
.outcomes-row {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 8px;
}

.system-chip,
.outcome-chip {
  display: grid;
  place-items: center;
  align-content: center;
  gap: 6px;
  min-height: 76px;
  padding: 10px 6px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 14px 28px -22px rgba(15,31,61,.32);
  color: var(--text);
  text-align: center;
  font-size: 10px;
  font-weight: 700;
  line-height: 1.25;
}

.system-chip::before,
.outcome-chip::before,
.platform-bar-grid div::before {
  content: "";
  width: 22px;
  height: 22px;
  background: currentColor;
  opacity: .95;
  -webkit-mask: var(--chip-icon) center / contain no-repeat;
  mask: var(--chip-icon) center / contain no-repeat;
}

.system-chip { color: var(--text); --chip-icon: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' stroke='black' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='3' y='4' width='18' height='14' rx='2'/%3E%3Cpath d='M8 21h8M12 18v3'/%3E%3C/g%3E%3C/svg%3E"); }
.system-chip:nth-child(2) { --chip-icon: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' stroke='black' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M7 3h10v18H7z'/%3E%3Cpath d='M9 8h6M9 12h6M9 16h3'/%3E%3C/g%3E%3C/svg%3E"); }
.system-chip:nth-child(3) { --chip-icon: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' stroke='black' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m4 12 5 5L20 6'/%3E%3C/g%3E%3C/svg%3E"); }
.system-chip:nth-child(4) { --chip-icon: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' stroke='black' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='3' y='5' width='18' height='14' rx='2'/%3E%3Cpath d='M3 10h18'/%3E%3C/g%3E%3C/svg%3E"); }
.system-chip:nth-child(5) { --chip-icon: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' stroke='black' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='12' cy='8' r='4'/%3E%3Cpath d='M4 22c0-4.4 3.6-8 8-8s8 3.6 8 8'/%3E%3C/g%3E%3C/svg%3E"); }
.system-chip:nth-child(6) { --chip-icon: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='black'%3E%3Ccircle cx='5' cy='12' r='2'/%3E%3Ccircle cx='12' cy='12' r='2'/%3E%3Ccircle cx='19' cy='12' r='2'/%3E%3C/g%3E%3C/svg%3E"); }

.flow-arrows {
  display: flex;
  justify-content: center;
  gap: 52px;
  margin: 10px 0;
  color: #94a3b8;
  font-size: 18px;
}

.platform-flow .flow-arrows {
  display: none;
}

.platform-bar {
  position: relative;
  z-index: 2;
  border-radius: 14px;
  padding: 20px;
  background: linear-gradient(90deg, #3437d9, #0b7dec);
  box-shadow: 0 18px 34px rgba(37,99,235,.22);
}

.platform-bar-title {
  margin-bottom: 16px;
  color: rgba(255,255,255,.72);
  text-align: center;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 1.8px;
}

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

.platform-bar-grid div {
  display: grid;
  place-items: center;
  gap: 6px;
  min-height: 74px;
  color: #fff;
  text-align: center;
  font-size: 10px;
  font-weight: 700;
  line-height: 1.25;
}

.platform-bar-grid div { --chip-icon: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' stroke='black' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='18' cy='5' r='3'/%3E%3Ccircle cx='6' cy='12' r='3'/%3E%3Ccircle cx='18' cy='19' r='3'/%3E%3Cpath d='M8.6 10.5 15.4 6.5M8.6 13.5l6.8 4'/%3E%3C/g%3E%3C/svg%3E"); }
.platform-bar-grid div:nth-child(2) { --chip-icon: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' stroke='black' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='4' y='3' width='16' height='18' rx='2'/%3E%3Cpath d='M8 8h8M8 12h5M8 16h8'/%3E%3C/g%3E%3C/svg%3E"); }
.platform-bar-grid div:nth-child(3) { --chip-icon: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' stroke='black' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M10 13a5 5 0 0 0 7.5.5l3-3a5 5 0 0 0-7-7L12 5'/%3E%3Cpath d='M14 11a5 5 0 0 0-7.5-.5l-3 3a5 5 0 0 0 7 7L12 19'/%3E%3C/g%3E%3C/svg%3E"); }
.platform-bar-grid div:nth-child(4) { --chip-icon: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' stroke='black' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M2 12s3.5-7 10-7 10 7 10 7-3.5 7-10 7S2 12 2 12Z'/%3E%3Ccircle cx='12' cy='12' r='3'/%3E%3C/g%3E%3C/svg%3E"); }
.platform-bar-grid div:nth-child(5) { --chip-icon: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' stroke='black' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M13 2 3 14h8l-1 8 11-14h-8l1-6Z'/%3E%3C/g%3E%3C/svg%3E"); }

.outcome-chip { --chip-icon: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' stroke='black' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='12' cy='12' r='10'/%3E%3Cpath d='m8 12 3 3 6-6'/%3E%3C/g%3E%3C/svg%3E"); }
.outcome-chip:nth-child(2) { --chip-icon: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' stroke='black' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M12 2v20M17 5H9.5a3.5 3.5 0 0 0 0 7h5a3.5 3.5 0 0 1 0 7H6'/%3E%3C/g%3E%3C/svg%3E"); }
.outcome-chip:nth-child(3) { --chip-icon: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' stroke='black' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M17 21v-2a4 4 0 0 0-4-4H5a4 4 0 0 0-4 4v2'/%3E%3Ccircle cx='9' cy='7' r='4'/%3E%3Cpath d='M23 21v-2a4 4 0 0 0-3-3.9M16 3.1a4 4 0 0 1 0 7.8'/%3E%3C/g%3E%3C/svg%3E"); }
.outcome-chip:nth-child(4) { --chip-icon: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' stroke='black' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M3 17l6-6 4 4 8-8'/%3E%3Cpath d='M14 7h7v7'/%3E%3C/g%3E%3C/svg%3E"); }

.outcomes-row {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  max-width: 760px;
  margin: 0 auto;
}

.outcome-chip {
  min-height: 64px;
  color: var(--navy);
}

.platform-caps,
.platform-trust {
  padding: 78px 58px;
}

.caps-grid-premium {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 34px 42px;
  max-width: 1060px;
  margin: 0 auto;
}

.cap-premium {
  text-align: center;
}

.cap-premium .icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 18px;
}

.cap-premium h3 {
  margin: 0 0 8px;
  color: var(--navy);
  font-size: 15px;
  font-weight: 800;
}

.cap-premium p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.62;
}

.platform-why {
  padding: 78px 58px;
  background: var(--pale);
}

.why-layout {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 58px;
  max-width: 1120px;
  margin: 0 auto;
}

.why-layout h2 {
  text-align: left;
  margin-bottom: 12px;
}

.why-layout p {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.65;
}

.compare-table {
  overflow: hidden;
  margin-top: 28px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #fff;
}

.compare-head,
.compare-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.compare-head div {
  padding: 13px 14px;
  text-align: center;
  font-size: 13px;
  font-weight: 800;
}

.compare-head div:first-child { background: #f3f4f6; color: var(--text); }
.compare-head div:last-child { background: var(--blue); color: #fff; }

.compare-row {
  border-top: 1px solid #f0f0f0;
}

.compare-row div {
  padding: 12px 14px;
  background: #fff;
  color: var(--text);
  font-size: 13px;
  line-height: 1.45;
}

.compare-row div:last-child { background: #f8fbff; }

.portal {
  overflow: hidden;
  margin-top: 24px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: #fff;
  box-shadow: var(--shadow-premium);
}

.portal-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 12px 16px;
  border-bottom: 1px solid var(--line);
  background: #f8fafc;
}

.portal-brand {
  color: #94a3b8;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 1.6px;
}

.portal-nav {
  display: flex;
  gap: 14px;
  color: var(--text);
  font-size: 10px;
  font-weight: 600;
}

.portal-avatar {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: linear-gradient(135deg, #06b6d4, var(--blue));
}

.portal-body {
  display: grid;
  grid-template-columns: 120px 1fr;
  min-height: 190px;
}

.portal-sidebar {
  border-right: 1px solid #f1f5f9;
  padding: 10px 0;
}

.sidebar-item {
  padding: 8px 12px;
  color: var(--muted);
  font-size: 10px;
  font-weight: 600;
}

.sidebar-item.active {
  color: var(--blue);
  background: var(--blue-pale);
  border-right: 2px solid var(--blue);
}

.portal-main {
  padding: 16px;
}

.portal-greeting {
  margin-bottom: 12px;
  color: var(--navy);
  font-size: 13px;
  font-weight: 800;
}

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

.portal-card {
  padding: 12px 10px;
  border-radius: 10px;
  background: var(--pale);
}

.portal-card-label {
  margin-bottom: 5px;
  color: #94a3b8;
  font-size: 9px;
  font-weight: 700;
}

.portal-card-val {
  color: var(--navy);
  font-size: 11px;
  font-weight: 800;
}

.platform-trust-row {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  max-width: 1100px;
  margin: 0 auto;
}

.platform-trust-item {
  padding: 0 30px;
  border-right: 1px solid var(--line);
}

.platform-trust-item:last-child { border-right: 0; }
.platform-trust-item .icon { margin-bottom: 14px; }
.platform-trust-item h3 { margin: 0 0 6px; color: var(--navy); font-size: 15px; font-weight: 800; }
.platform-trust-item p { margin: 0; color: var(--muted); font-size: 13px; line-height: 1.6; }

.fs-foundation {
  position: relative;
  width: min(620px, 100%);
  min-height: 480px;
  display: grid;
  place-items: center;
}

.fs-foundation::before,
.fs-foundation::after {
  content: "";
  position: absolute;
  border: 1px solid #dbeafe;
  border-radius: 50%;
}

.fs-foundation::before { width: 430px; height: 430px; }
.fs-foundation::after { width: 310px; height: 310px; border-style: dashed; border-color: #93c5fd; }

.fs-stack {
  position: relative;
  z-index: 3;
  display: grid;
  justify-items: center;
}

.fs-slab {
  width: 310px;
  min-height: 88px;
  display: grid;
  place-items: center;
  padding: 18px 24px;
  clip-path: polygon(50% 0, 100% 22%, 100% 78%, 50% 100%, 0 78%, 0 22%);
  color: #fff;
  text-align: center;
  font-weight: 800;
  line-height: 1.25;
  filter: drop-shadow(0 16px 16px rgba(15,31,61,.18));
}

.fs-slab.one { background: linear-gradient(180deg, #7562dc, #4f3abc); }
.fs-slab.two { margin-top: -12px; background: linear-gradient(180deg, #2b84ff, #2563eb); }
.fs-slab.three { margin-top: -12px; background: linear-gradient(180deg, #20b8a3, #0f766e); }

.fs-note {
  position: absolute;
  z-index: 4;
  width: 190px;
  padding: 16px 18px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #fff;
  box-shadow: var(--shadow-premium);
  color: var(--navy);
  font-size: 12px;
  font-weight: 800;
  line-height: 1.45;
}

.fs-note::before {
  content: "";
  display: block;
  width: 30px;
  height: 30px;
  margin-bottom: 8px;
  border-radius: 10px;
  background: #eff6ff;
  background-repeat: no-repeat;
  background-position: center;
  background-size: 19px 19px;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' fill='none' stroke='%232563eb' stroke-width='1.9' stroke-linecap='round' xmlns='http://www.w3.org/2000/svg'%3E%3Cellipse cx='12' cy='5' rx='8' ry='3'/%3E%3Cpath d='M4 5v6c0 1.7 3.6 3 8 3s8-1.3 8-3V5'/%3E%3Cpath d='M4 11v6c0 1.7 3.6 3 8 3s8-1.3 8-3v-6'/%3E%3C/svg%3E");
}

.fs-note.left-2::before {
  background-color: #ecfdf5;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' fill='none' stroke='%230f766e' stroke-width='1.9' stroke-linecap='round' stroke-linejoin='round' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M12 22s8-4 8-10V5l-8-3-8 3v7c0 6 8 10 8 10Z'/%3E%3Cpath d='m9 12 2 2 4-5'/%3E%3C/svg%3E");
}

.fs-note.left-3::before {
  background-color: #f5f3ff;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' fill='none' stroke='%236d5bd0' stroke-width='1.9' stroke-linecap='round' stroke-linejoin='round' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='18' cy='5' r='3'/%3E%3Ccircle cx='6' cy='12' r='3'/%3E%3Ccircle cx='18' cy='19' r='3'/%3E%3Cpath d='M8.6 10.5 15.4 6.5M8.6 13.5l6.8 4'/%3E%3C/svg%3E");
}

.fs-note.right-result::before {
  margin: 0 auto 8px;
  background-color: #eff6ff;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' fill='none' stroke='%232563eb' stroke-width='1.9' stroke-linecap='round' stroke-linejoin='round' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M3 17l6-6 4 4 8-8'/%3E%3Cpath d='M14 7h7v7'/%3E%3C/svg%3E");
}

.fs-note.left-1 { left: 0; top: 68px; }
.fs-note.left-2 { left: 0; top: 190px; }
.fs-note.left-3 { left: 0; top: 312px; }
.fs-note.right-result {
  right: 0;
  top: 176px;
  width: 165px;
  height: 165px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  text-align: center;
}

.healthcare-map {
  position: relative;
  width: min(660px, 100%);
  min-height: 560px;
  display: grid;
  place-items: center;
}

.healthcare-map svg.map-lines {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.healthcare-core {
  position: relative;
  z-index: 4;
  width: 210px;
  height: 210px;
  display: grid;
  place-items: center;
  padding: 28px;
  border-radius: 50%;
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-premium);
  color: var(--navy);
  text-align: center;
  font-size: 20px;
  font-weight: 800;
  line-height: 1.2;
}

.healthcare-node {
  position: absolute;
  z-index: 6;
  width: 190px;
  min-height: 118px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: #fff;
  box-shadow: var(--shadow-premium);
}

.healthcare-node .icon {
  width: 42px;
  height: 42px;
  margin-bottom: 10px;
}

.healthcare-node h4 {
  margin: 0 0 5px;
  color: var(--navy);
  font-size: 14px;
  font-weight: 800;
}

.healthcare-node p {
  margin: 0;
  color: var(--muted);
  font-size: 11px;
  line-height: 1.45;
}

.healthcare-node.top-left { top: 10px; left: 22px; }
.healthcare-node.top-right { top: 10px; right: 22px; }
.healthcare-node.bottom-left { bottom: 68px; left: 22px; }
.healthcare-node.bottom-right { bottom: 68px; right: 22px; }

.healthcare-outcomes {
  position: absolute;
  z-index: 8;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 8px;
  width: min(520px, 95%);
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: rgba(255,255,255,.96);
  box-shadow: var(--shadow-premium);
}

.healthcare-outcomes span {
  color: var(--navy);
  text-align: center;
  font-size: 10px;
  font-weight: 700;
  line-height: 1.3;
}

@media (max-width: 640px) {
  .healthcare-map {
    min-height: auto;
    display: grid;
    gap: 14px;
  }
  .healthcare-map svg.map-lines { display: none; }
  .healthcare-core,
  .healthcare-node,
  .healthcare-outcomes {
    position: static;
    width: 100%;
    height: auto;
    transform: none;
    border-radius: 18px;
  }
  .healthcare-outcomes { grid-template-columns: 1fr; }
}

@media (max-width: 1080px) {
  .flow-layout,
  .why-layout { grid-template-columns: 1fr; }
  .flow-copy h2,
  .why-layout h2 { text-align: center; }
  .systems-row,
  .platform-bar-grid,
  .outcomes-row,
  .caps-grid-premium,
  .platform-trust-row { grid-template-columns: 1fr 1fr; }
  .platform-trust-item { border-right: 0; border-bottom: 1px solid var(--line); padding: 22px; }
  .fs-note { display: none; }
}

@media (max-width: 640px) {
  .systems-row,
  .platform-bar-grid,
  .outcomes-row,
  .caps-grid-premium,
  .platform-trust-row,
  .portal-body,
  .portal-cards { grid-template-columns: 1fr; }
  .fs-foundation { min-height: 360px; }
  .fs-foundation::before { width: 320px; height: 320px; }
  .fs-foundation::after { width: 240px; height: 240px; }
  .fs-slab { width: 260px; }
}

@media (max-width: 1080px) {
  .financial-hero-visual {
    min-height: auto;
  }

  .financial-hero-image {
    width: min(760px, 100%);
  }

  .featured-grid,
  .latest-section,
  .about-split,
  .purpose-grid,
  .trust-banner,
  .contact-hero {
    grid-template-columns: 1fr;
  }

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

  .resource-float.left { left: 20px; }
  .resource-float.right { right: 20px; }

  .purpose-metric {
    border-left: 0;
    border-top: 1px solid #cbd5e1;
    padding: 24px;
  }

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

  .about-photo figcaption {
    right: 0;
  }

  .contact-card {
    width: 100%;
  }

  .mission-hero,
  .story-hero,
  .mission-why,
  .mission-metric,
  .story-star,
  .journey-section {
    grid-template-columns: 1fr;
  }

  .mission-visual,
  .story-photo {
    border-radius: 22px;
  }

  .belief-row,
  .metric-row,
  .not-grid,
  .story-frictions,
  .journey-line {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
  }

  .belief-row > div,
  .journey-line > div,
  .story-frictions > div {
    border-right: 0;
    border-left: 0;
    padding: 20px;
    border: 1px solid #dbeafe;
    border-radius: 14px;
    background: #fff;
    box-shadow: var(--shadow-premium);
  }

  .advantage-diagram {
    grid-template-columns: 1fr;
  }

  .adv-hub {
    margin: 0 auto;
  }
}

@media (max-width: 640px) {
  .financial-hero-image {
    padding: 6px;
    border-radius: 16px;
  }

  .financial-hero-image img {
    border-radius: 12px;
  }

  .topic-grid,
  .featured-grid,
  .proof-row,
  .trust-mini,
  .subscribe-box form {
    grid-template-columns: 1fr;
  }

  .resource-orbit {
    min-height: 360px;
  }

  .resource-float.top,
  .resource-float.left,
  .resource-float.right,
  .resource-float.bottom {
    position: static;
    width: 100%;
    height: 72px;
    transform: none;
    margin: 6px 0;
  }

  .resource-lines,
  .resource-hub {
    display: none;
  }

  .latest-list a {
    grid-template-columns: 48px 1fr;
  }

  .latest-list em {
    grid-column: 2;
  }

  .about-photo::before {
    inset: -14px;
  }

  .about-photo figcaption {
    position: relative;
    right: auto;
    bottom: auto;
    min-width: 0;
    margin: -28px 14px 0;
  }

  .purpose-band,
  .trust-banner {
    margin-left: 16px;
    margin-right: 16px;
  }

  .purpose-statement {
    padding: 0 0 20px;
    border-left: 0;
    font-size: 20px;
  }

  .contact-points > div,
  .contact-card-head {
    grid-template-columns: 1fr;
  }

  .contact-card {
    border-radius: 16px;
  }

  .calendly-inline-widget {
    min-width: 280px !important;
    height: 760px !important;
  }

  .mission-hero,
  .story-hero,
  .mission-why,
  .mission-metric {
    padding: 42px 18px;
  }

  .mission-copy h1,
  .story-copy h1 {
    font-size: 38px;
  }

  .north-star-card {
    grid-template-columns: 1fr;
    padding: 22px;
  }

  .mission-visual img,
  .story-photo img {
    min-height: 310px;
  }

  .mission-network span {
    width: 46px;
    height: 46px;
  }

  .belief-row,
  .metric-row,
  .not-grid,
  .story-frictions,
  .journey-line,
  .mission-future .grid {
    grid-template-columns: 1fr;
  }

  .story-star {
    margin: 0 16px;
    padding: 28px 20px;
  }

  .story-photo figcaption {
    left: 18px;
    right: 18px;
    bottom: 18px;
    font-size: 15px;
  }

  .adv-card {
    padding: 24px;
  }
}

/* Mobile diagram preservation pass */
@media (max-width: 640px) {
  .hero {
    padding: 42px 18px 34px;
    gap: 26px;
  }

  .hero.compact {
    padding-top: 34px;
  }

  .hero h1 {
    font-size: 34px;
    letter-spacing: -.7px;
  }

  .lead {
    font-size: 14px;
  }

  .visual {
    min-height: auto;
    overflow: visible;
  }

  .premium-services {
    padding: 28px 18px 56px;
  }

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

  .premium-service-card {
    padding: 26px 22px;
    border-radius: 22px;
  }

  .premium-orbit {
    width: 620px;
    height: 620px;
    min-height: 620px;
    transform: scale(.54);
    transform-origin: top center;
    margin: 0 auto -270px;
    display: block;
  }

  .premium-orbit svg.orbit-lines {
    display: block;
  }

  .premium-hub,
  .premium-orbit-card {
    position: absolute;
  }

  .premium-hub {
    width: 112px;
    height: 112px;
    border-radius: 50%;
  }

  .premium-orbit-card {
    width: 240px;
    min-height: 166px;
    transform: none;
  }

  .premium-orbit-card.orbit-top {
    top: 0;
    left: 50%;
    transform: translateX(-50%) !important;
  }

  .premium-orbit-card.orbit-left {
    left: -2%;
    right: auto;
    top: auto;
    bottom: 7%;
    transform: none !important;
  }

  .premium-orbit-card.orbit-right {
    right: -2%;
    left: auto;
    top: auto;
    bottom: 7%;
    transform: none !important;
  }

  .platform-hero .premium-orbit {
    width: 620px;
    height: 680px;
    min-height: 680px;
    transform: scale(.54);
    margin-bottom: -293px;
  }

  .platform-hero .premium-orbit-card.orbit-left {
    left: -10px;
    top: 50%;
    bottom: auto;
    transform: translateY(-50%) !important;
  }

  .platform-hero .premium-orbit-card.orbit-right {
    right: -10px;
    top: 50%;
    bottom: auto;
    transform: translateY(-50%) !important;
  }

  .platform-hero .premium-orbit-card.orbit-bottom {
    bottom: 6px;
    left: 50%;
    transform: translateX(-50%) !important;
  }

  .service-orbit {
    width: 620px;
    height: 500px;
    min-height: 500px;
    transform: scale(.54);
    transform-origin: top center;
    margin: 0 auto -214px;
    display: block;
  }

  .service-orbit .service-lines {
    display: block;
  }

  .service-orbit .center-node,
  .service-orbit .node-card {
    position: absolute;
  }

  .service-orbit .node-card.top {
    top: 0;
    left: 50%;
    transform: translateX(-50%) !important;
  }

  .service-orbit .node-card.left {
    left: 4px;
    top: 50%;
    transform: translateY(-50%) !important;
  }

  .service-orbit .node-card.right {
    right: 4px;
    top: 50%;
    transform: translateY(-50%) !important;
  }

  .service-orbit .node-card.bottom {
    bottom: 0;
    left: 50%;
    transform: translateX(-50%) !important;
  }

  .platform-flow {
    margin: 0 16px;
    padding: 36px 14px;
  }

  .flow-diagram {
    width: 100%;
    min-width: 0;
    overflow-x: auto;
    padding-bottom: 10px;
  }

  .flow-diagram > * {
    min-width: 760px;
  }

  .flow-label {
    width: 760px;
  }

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

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

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

  .flow-arrows {
    height: 32px;
    margin: 0;
    color: transparent;
  }

  .flow-connectors {
    display: block;
    width: 760px;
  }

  .healthcare-map {
    width: 660px;
    min-height: 560px;
    transform: scale(.52);
    transform-origin: top center;
    margin: 0 auto -270px;
    display: grid;
  }

  .healthcare-map svg.map-lines {
    display: block;
  }

  .healthcare-core,
  .healthcare-node,
  .healthcare-outcomes {
    position: absolute;
    transform: none;
  }

  .healthcare-core {
    position: relative;
    width: 210px;
    height: 210px;
    border-radius: 50%;
  }

  .healthcare-node {
    width: 190px;
    height: auto;
    border-radius: 18px;
  }

  .healthcare-outcomes {
    left: 50%;
    bottom: 0;
    width: min(520px, 95%);
    grid-template-columns: repeat(4, minmax(0, 1fr));
    transform: translateX(-50%);
  }

  .resource-orbit {
    width: 560px;
    min-height: 420px;
    transform: scale(.58);
    transform-origin: top center;
    margin: 0 auto -170px;
    display: grid;
  }

  .resource-lines,
  .resource-hub {
    display: block;
  }

  .resource-float.top,
  .resource-float.left,
  .resource-float.right,
  .resource-float.bottom {
    position: absolute;
    width: 148px;
    height: 92px;
    margin: 0;
  }

  .resource-float.top { top: 18px; left: 50%; transform: translateX(-50%); }
  .resource-float.left { left: 28px; top: 164px; transform: none; }
  .resource-float.right { right: 28px; top: 164px; transform: none; }
  .resource-float.bottom { left: 50%; bottom: 18px; transform: translateX(-50%); }
}

@media (max-width: 420px) {
  .premium-orbit,
  .platform-hero .premium-orbit,
  .service-orbit {
    transform: scale(.49);
  }

  .premium-orbit { margin-bottom: -315px; }
  .platform-hero .premium-orbit { margin-bottom: -270px; }
  .service-orbit { margin-bottom: -255px; }

  .healthcare-map {
    transform: scale(.47);
    margin-bottom: -300px;
  }

  .resource-orbit {
    transform: scale(.52);
    margin-bottom: -195px;
  }
}

/* Final mobile balance pass: keep diagrams, but fit them naturally in the viewport */
@media (max-width: 640px) {
  .visual {
    width: 100%;
    justify-items: center;
  }

  .premium-orbit {
    width: min(100%, 360px);
    height: 430px;
    min-height: 430px;
    transform: none;
    margin: 0 auto;
  }

  .premium-orbit-card {
    width: 150px;
    min-height: 128px;
    padding: 16px 14px;
    border-radius: 18px;
  }

  .premium-card-icon {
    width: 42px;
    height: 42px;
    margin-bottom: 10px;
    border-radius: 14px;
  }

  .premium-card-icon svg {
    width: 22px;
    height: 22px;
  }

  .premium-orbit-card h4 {
    font-size: 14px;
    margin-bottom: 5px;
  }

  .premium-orbit-card p {
    font-size: 10.5px;
    line-height: 1.35;
  }

  .premium-hub {
    width: 86px;
    height: 86px;
  }

  .premium-hub svg {
    width: 44px;
    height: 44px;
  }

  .premium-orbit-card.orbit-top {
    top: 0;
    left: 50%;
    transform: translateX(-50%) !important;
  }

  .premium-orbit-card.orbit-left {
    left: 0;
    bottom: 22px;
    transform: none !important;
  }

  .premium-orbit-card.orbit-right {
    right: 0;
    bottom: 22px;
    transform: none !important;
  }

  .platform-hero .premium-orbit {
    width: min(100%, 370px);
    height: 500px;
    min-height: 500px;
    transform: none;
    margin: 0 auto;
  }

  .platform-hero .premium-hub {
    width: 104px;
    height: 104px;
    font-size: 13px;
  }

  .platform-hero .premium-orbit-card {
    width: calc(50% - 58px);
    min-height: 118px;
    padding: 14px 12px;
  }

  .platform-hero .premium-orbit-card.orbit-top {
    top: 0;
    left: 50%;
    transform: translateX(-50%) !important;
  }

  .platform-hero .premium-orbit-card.orbit-left {
    left: 0;
    top: 50%;
    bottom: auto;
    transform: translateY(-50%) !important;
  }

  .platform-hero .premium-orbit-card.orbit-right {
    right: 0;
    top: 50%;
    bottom: auto;
    transform: translateY(-50%) !important;
  }

  .platform-hero .premium-orbit-card.orbit-bottom {
    bottom: 6px;
    left: 50%;
    transform: translateX(-50%) !important;
  }

  .service-orbit {
    width: min(100%, 370px);
    height: 430px;
    min-height: 430px;
    transform: none;
    margin: 0 auto;
  }

  .service-orbit .center-node {
    width: 104px;
    height: 104px;
    font-size: 13px;
  }

  .service-orbit .node-card {
    width: 145px;
    min-height: 112px;
    padding: 13px 12px;
  }

  .service-orbit .node-card .icon {
    width: 34px;
    height: 34px;
    margin-bottom: 6px;
  }

  .service-orbit .node-card strong {
    font-size: 12px;
  }

  .service-orbit .node-card span {
    font-size: 9.8px;
  }

  .service-orbit .node-card.top {
    top: 0;
    left: 50%;
    transform: translateX(-50%) !important;
  }

  .service-orbit .node-card.left {
    left: 0;
    top: 50%;
    transform: translateY(-50%) !important;
  }

  .service-orbit .node-card.right {
    right: 0;
    top: 50%;
    transform: translateY(-50%) !important;
  }

  .service-orbit .node-card.bottom {
    bottom: 0;
    left: 50%;
    transform: translateX(-50%) !important;
  }

  .service-orbit .service-lines {
    transform: scale(.84);
    transform-origin: center;
  }

  .healthcare-map {
    width: min(100%, 380px);
    height: 520px;
    min-height: 520px;
    transform: none;
    margin: 0 auto;
  }

  .healthcare-core {
    width: 142px;
    height: 142px;
    padding: 18px;
    font-size: 14px;
  }

  .healthcare-core small {
    display: none;
  }

  .healthcare-node {
    width: 148px;
    min-height: 112px;
    padding: 13px 12px;
  }

  .healthcare-node .icon {
    width: 34px;
    height: 34px;
    margin-bottom: 7px;
  }

  .healthcare-node h4 {
    font-size: 12px;
  }

  .healthcare-node p {
    font-size: 9.8px;
  }

  .healthcare-node.top-left { top: 8px; left: 0; }
  .healthcare-node.top-right { top: 8px; right: 0; }
  .healthcare-node.bottom-left { bottom: 74px; left: 0; }
  .healthcare-node.bottom-right { bottom: 74px; right: 0; }

  .healthcare-outcomes {
    width: 100%;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 6px;
    padding: 8px;
  }

  .healthcare-outcomes span {
    font-size: 9.5px;
  }

  .resource-orbit {
    width: min(100%, 360px);
    height: 360px;
    min-height: 360px;
    transform: none;
    margin: 0 auto;
  }

  .resource-hub {
    width: 106px;
    height: 106px;
  }

  .resource-hub svg {
    width: 42px;
    height: 42px;
  }

  .resource-float.top,
  .resource-float.left,
  .resource-float.right,
  .resource-float.bottom {
    width: 116px;
    height: 78px;
  }

  .resource-float.top {
    top: 0;
  }

  .resource-float.left {
    left: 0;
    top: 142px;
  }

  .resource-float.right {
    right: 0;
    top: 142px;
  }

  .resource-float.bottom {
    bottom: 0;
  }

  .mini-chart {
    width: 88px;
    height: 44px;
  }

  .video-card span {
    width: 70px;
    height: 44px;
  }
}

@media (max-width: 380px) {
  .premium-orbit,
  .platform-hero .premium-orbit,
  .service-orbit,
  .resource-orbit {
    transform: scale(.92);
    transform-origin: top center;
    margin-bottom: -28px;
  }

  .healthcare-map {
    transform: scale(.9);
    transform-origin: top center;
    margin-bottom: -52px;
  }
}

/* Final logo system: one official mark, consistent sizing by context */
.site-header .brand {
  gap: 12px;
}

.site-header .brand-logo {
  width: 150px;
  max-height: 48px;
  object-fit: contain;
}

.site-header .brand-copy {
  max-width: 98px;
  color: #64748b;
  font-size: 10.5px;
  line-height: 1.15;
}

.brand-mark,
.resource-hub .brand-mark {
  overflow: visible;
}

.brand-mark img,
.logo-hub img,
.logo-center img,
.resource-hub .brand-mark img,
.footer-brand img {
  display: block;
  height: auto;
  object-fit: contain;
}

.premium-hub.logo-hub,
.adv-hub.logo-hub {
  overflow: hidden;
  padding: 18px;
}

.premium-hub.logo-hub img,
.adv-hub.logo-hub img {
  width: min(112px, 82%);
  max-height: 62px;
}

.platform-hero .premium-hub.logo-hub {
  padding: 22px;
}

.platform-hero .premium-hub.logo-hub img {
  width: min(128px, 82%);
  max-height: 70px;
}

.premium-hub.logo-hub small {
  margin-top: 6px;
  color: var(--muted);
  font-size: 10.5px;
  font-weight: 700;
  line-height: 1.2;
  text-align: center;
}

.center-node.logo-center,
.healthcare-core.logo-center {
  overflow: hidden;
  padding: 22px;
  gap: 6px;
}

.center-node.logo-center img,
.healthcare-core.logo-center img {
  width: min(112px, 76%);
  max-height: 60px;
}

.center-node.logo-center span,
.healthcare-core.logo-center span {
  max-width: 128px;
  color: var(--navy);
  font-size: 14px;
  font-weight: 800;
  line-height: 1.18;
}

.healthcare-core.logo-center img {
  width: min(126px, 78%);
}

.resource-hub .brand-mark {
  width: 108px;
  height: auto;
}

.resource-hub .brand-mark img {
  width: 100%;
  max-height: 58px;
}

.footer-brand img {
  width: 150px;
  max-height: 54px;
  padding: 0;
  border-radius: 0;
  background: transparent;
}

@media (max-width: 1080px) {
  .site-header .brand-logo {
    width: 138px;
  }

  .premium-hub.logo-hub,
  .adv-hub.logo-hub,
  .center-node.logo-center,
  .healthcare-core.logo-center {
    padding: 16px;
  }

  .premium-hub.logo-hub img,
  .adv-hub.logo-hub img,
  .center-node.logo-center img,
  .healthcare-core.logo-center img {
    width: min(96px, 78%);
    max-height: 54px;
  }
}

@media (max-width: 640px) {
  .site-header .brand {
    gap: 8px;
    min-width: 0;
  }

  .site-header .brand-logo {
    width: 126px;
    max-height: 42px;
  }

  .site-header .brand-copy {
    display: none;
  }

  .premium-hub.logo-hub {
    height: 112px;
    border-radius: 24px;
  }

  .premium-hub.logo-hub img,
  .adv-hub.logo-hub img,
  .center-node.logo-center img,
  .healthcare-core.logo-center img {
    width: min(86px, 74%);
    max-height: 48px;
  }

  .premium-hub.logo-hub small,
  .center-node.logo-center small,
  .healthcare-core.logo-center small {
    display: none;
  }

  .center-node.logo-center span,
  .healthcare-core.logo-center span {
    font-size: 12px;
  }

  .resource-hub .brand-mark {
    width: 82px;
  }

  .footer-brand img {
    width: 150px;
  }
}

/* Logo polish v2: match the circular reference treatment everywhere */
.site-header .brand-logo {
  width: 150px;
  max-height: 46px;
}

.site-header .brand-tagline,
.site-footer .brand-tagline {
  padding-left: 42px;
  color: #8a95a6;
  font-size: 10px;
  font-weight: 600;
  line-height: 1.1;
  opacity: .9;
}

.premium-hub.logo-hub,
.center-node.logo-center,
.resource-hub,
.adv-hub.logo-hub,
.healthcare-core.logo-center {
  display: grid;
  place-items: center;
  overflow: hidden;
  border-radius: 50%;
  background: #fff;
}

.premium-hub.logo-hub,
.adv-hub.logo-hub,
.resource-hub {
  width: 150px;
  height: 150px;
  padding: 24px;
}

.platform-hero .premium-hub.logo-hub {
  width: 168px;
  height: 168px;
  padding: 28px;
}

.center-node.logo-center {
  width: 154px;
  height: 154px;
  padding: 24px;
}

.healthcare-core.logo-center {
  width: 210px;
  height: 210px;
  padding: 34px;
}

.premium-hub.logo-hub img,
.adv-hub.logo-hub img,
.resource-hub .brand-mark img,
.center-node.logo-center img,
.healthcare-core.logo-center img {
  width: 100%;
  max-width: 116px;
  max-height: 64px;
  object-fit: contain;
}

.platform-hero .premium-hub.logo-hub img {
  max-width: 128px;
  max-height: 72px;
}

.healthcare-core.logo-center img {
  max-width: 132px;
  max-height: 76px;
}

.resource-hub .brand-mark {
  width: 112px;
  height: auto;
}

.premium-hub.logo-hub small {
  margin-top: 4px;
  color: #64748b;
  font-size: 10px;
}

.center-node.logo-center span,
.healthcare-core.logo-center span {
  margin-top: 4px;
  font-size: 12.5px;
  line-height: 1.15;
}

@media (max-width: 1080px) {
  .site-header .brand-logo {
    width: 142px;
  }

  .premium-hub.logo-hub,
  .adv-hub.logo-hub,
  .resource-hub {
    width: 138px;
    height: 138px;
    padding: 22px;
  }

  .platform-hero .premium-hub.logo-hub,
  .center-node.logo-center,
  .healthcare-core.logo-center {
    width: 142px;
    height: 142px;
    padding: 22px;
  }

  .premium-hub.logo-hub img,
  .adv-hub.logo-hub img,
  .resource-hub .brand-mark img,
  .center-node.logo-center img,
  .healthcare-core.logo-center img {
    max-width: 104px;
    max-height: 58px;
  }
}

@media (max-width: 640px) {
  .site-header .brand-logo {
    width: 132px;
    max-height: 40px;
  }

  .site-header .brand-tagline {
    padding-left: 37px;
    font-size: 8.8px;
  }

  .premium-hub.logo-hub,
  .adv-hub.logo-hub,
  .resource-hub,
  .platform-hero .premium-hub.logo-hub,
  .center-node.logo-center,
  .healthcare-core.logo-center {
    width: 126px !important;
    height: 126px !important;
    margin-inline: auto;
    padding: 20px;
    border-radius: 50%;
  }

  .premium-hub.logo-hub img,
  .adv-hub.logo-hub img,
  .resource-hub .brand-mark img,
  .center-node.logo-center img,
  .healthcare-core.logo-center img {
    max-width: 92px;
    max-height: 52px;
  }

  .resource-hub .brand-mark {
    width: 92px;
  }
}

/* Brand lockup final: visible symbol + consistent text on every page */
.site-header {
  min-height: 78px;
}

.site-header .brand.brand-lockup,
.site-footer .footer-brand.brand-lockup {
  display: inline-flex;
  flex-direction: row;
  align-items: center;
  gap: 14px;
  min-width: 0;
}

.site-header .brand-symbol,
.site-footer .brand-symbol,
.footer-brand img.brand-symbol {
  width: 64px;
  height: 64px;
  max-width: 64px;
  max-height: 64px;
  padding: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  object-fit: contain;
}

.site-header .brand-text strong,
.site-footer .brand-text strong {
  display: block;
  color: var(--navy);
  font-size: 25px;
  font-weight: 700;
  letter-spacing: -0.035em;
  line-height: 1;
}

.site-header .brand-text small,
.site-footer .brand-text small {
  display: block;
  margin-top: 3px;
  color: #9aa3b1;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: -0.01em;
  line-height: 1.1;
  white-space: nowrap;
}

.site-footer .brand-text strong {
  color: #fff;
}

.site-footer .brand-text small {
  color: #9ca3af;
}

@media (max-width: 640px) {
  .site-header .brand.brand-lockup,
  .site-footer .footer-brand.brand-lockup {
    gap: 9px;
  }

  .site-header .brand-symbol,
  .site-footer .brand-symbol,
  .footer-brand img.brand-symbol {
    width: 48px;
    height: 48px;
    max-width: 48px;
    max-height: 48px;
  }

  .site-header .brand-text strong,
  .site-footer .brand-text strong {
    font-size: 21px;
    font-weight: 700;
  }

  .site-header .brand-text small,
  .site-footer .brand-text small {
    font-size: 9.5px;
  }
}

/* Final hero/logo placement: medium contained mark inside every circle or box */
.premium-hub.logo-hub,
.center-node.logo-center,
.resource-hub,
.adv-hub.logo-hub,
.healthcare-core.logo-center {
  background: #fff;
  border: 1px solid rgba(191,219,254,.78);
  box-shadow: 0 24px 46px -30px rgba(15,31,61,.35);
}

.premium-hub.logo-hub img,
.center-node.logo-center img,
.resource-hub .brand-mark img,
.adv-hub.logo-hub img,
.healthcare-core.logo-center img {
  width: min(92px, 62%);
  height: min(92px, 62%);
  max-width: 92px;
  max-height: 92px;
  object-fit: contain;
  border-radius: 0;
}

.platform-hero .premium-hub.logo-hub img,
.healthcare-core.logo-center img {
  width: min(104px, 58%);
  height: min(104px, 58%);
  max-width: 104px;
  max-height: 104px;
}

.resource-hub .brand-mark {
  width: 96px;
  height: 96px;
  display: grid;
  place-items: center;
}

.premium-hub.logo-hub small,
.center-node.logo-center span,
.healthcare-core.logo-center span,
.center-node.logo-center small,
.healthcare-core.logo-center small {
  display: none;
}

@media (max-width: 640px) {
  .premium-hub.logo-hub img,
  .center-node.logo-center img,
  .resource-hub .brand-mark img,
  .adv-hub.logo-hub img,
  .healthcare-core.logo-center img {
    width: 72px;
    height: 72px;
    max-width: 72px;
    max-height: 72px;
  }

  .resource-hub .brand-mark {
    width: 72px;
    height: 72px;
  }
}

/* Home service-card diagrams from supplied references */
.refined-dashboard {
  min-width: 178px;
  padding: 20px;
  border: 1px solid #f1f5f9;
  border-radius: 20px;
  background: #fff;
  box-shadow: 0 18px 34px -24px rgba(15,31,61,.35);
}

.refined-dashboard h4,
.fs-unify h4 {
  margin: 0 0 16px;
  color: #1e293b;
  font-size: 16px;
  font-weight: 800;
  letter-spacing: -.02em;
}

.metric-section {
  padding: 0 0 16px;
  margin-bottom: 16px;
  border-bottom: 1px solid #f1f5f9;
}

.metric-section:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: 0;
}

.metric-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 5px;
}

.metric-header span {
  color: #94a3b8;
  font-size: 10.5px;
  font-weight: 700;
}

.metric-header em {
  font-style: normal;
  font-size: 10.5px;
  font-weight: 800;
}

.metric-header .green { color: #22c55e; }
.metric-header .blue { color: #3b82f6; }

.metric-section strong {
  display: block;
  color: #1e293b;
  font-size: 21px;
  font-weight: 800;
  line-height: 1.05;
}

.wave-chart {
  width: 100%;
  height: 38px;
  margin-top: 10px;
}

.paired-bars {
  display: flex;
  justify-content: space-between;
  align-items: end;
  height: 46px;
  margin-top: 14px;
}

.paired-bars span {
  position: relative;
  display: inline-flex;
  align-items: end;
  gap: 2px;
  height: 46px;
}

.paired-bars span::before,
.paired-bars span::after {
  content: "";
  display: block;
  width: 4px;
  border-radius: 2px 2px 0 0;
}

.paired-bars span::before { height: var(--h1); background: #3b82f6; }
.paired-bars span::after { height: var(--h2); background: #dbeafe; }

.blueprint-flow {
  min-width: 190px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 12px;
  padding: 18px 16px;
  border: 1px solid #eef2f7;
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 16px 32px -24px rgba(15,31,61,.32);
}

.blueprint-flow .side {
  display: grid;
  justify-items: center;
  gap: 8px;
}

.blueprint-flow strong {
  color: #1e293b;
  font-size: 12px;
  font-weight: 800;
}

.blueprint-flow svg {
  width: 74px;
  height: 104px;
  overflow: visible;
}

.blueprint-flow path {
  fill: none;
  stroke: #e2e8f0;
  stroke-width: 1.6;
  stroke-linecap: round;
}

.blueprint-flow circle {
  fill: #fff;
  stroke: #94a3b8;
  stroke-width: 2;
}

.blueprint-flow .after path.active {
  stroke: #067a46;
  stroke-width: 2.6;
}

.blueprint-flow .after path.muted { stroke: #d1fae5; }
.blueprint-flow .after circle { stroke: #067a46; }
.blueprint-flow .after circle.dot { fill: #067a46; }

.flow-arrow {
  color: #067a46;
  font-size: 18px;
  font-weight: 800;
}

.fs-unify {
  min-width: 178px;
  display: grid;
  justify-items: center;
  padding: 18px;
  border: 1px solid #eef2f7;
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 16px 32px -24px rgba(15,31,61,.32);
}

.fs-unify h4 {
  margin-bottom: 10px;
  font-size: 13px;
  font-weight: 700;
}

.fragmented-svg {
  width: 118px;
  height: 62px;
}

.fragmented-svg .dotted {
  fill: none;
  stroke: #d1d5db;
  stroke-width: 1.2;
  stroke-dasharray: 2 4;
}

.fragmented-svg .line {
  fill: none;
  stroke: #d1d5db;
  stroke-width: 1;
}

.fragmented-svg .blue-node { fill: #bfdbfe; stroke: #2563eb; stroke-width: 1.5; }
.fragmented-svg .purple-node { fill: #e9d5ff; stroke: #9333ea; stroke-width: 1.5; }
.fragmented-svg .soft-node { fill: #e0f2fe; stroke: rgba(37,99,235,.35); }
.fragmented-svg .soft-purple { fill: #f3e8ff; stroke: rgba(147,51,234,.35); }
.fragmented-svg .x { fill: none; stroke: #1e3a8a; stroke-width: 1.5; stroke-linecap: round; }

.down-arrow {
  margin: 4px 0 8px;
  color: #1e3a8a;
  font-size: 22px;
  font-weight: 800;
}

.database-svg {
  width: 116px;
  height: 116px;
}

.database-svg path,
.database-svg ellipse {
  fill: none;
  stroke: #3b82f6;
  stroke-width: 4;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.database-svg circle {
  fill: #fff;
  stroke: #10b981;
  stroke-width: 2.5;
}

.database-svg polyline {
  fill: none;
  stroke: #10b981;
  stroke-width: 3.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* Final logo recentering inside hero hubs */
.premium-hub.logo-hub img,
.center-node.logo-center img,
.resource-hub .brand-mark img,
.adv-hub.logo-hub img,
.healthcare-core.logo-center img {
  transform: translateX(-2px);
}

.premium-hub.logo-hub small,
.center-node.logo-center span,
.healthcare-core.logo-center span {
  display: block;
  margin-top: 5px;
  color: #1e293b;
  font-size: 10.5px;
  font-weight: 800;
  line-height: 1.15;
  text-align: center;
}

.center-node.logo-center small,
.healthcare-core.logo-center small {
  display: block;
  margin-top: 2px;
  color: #64748b !important;
  font-size: 9px;
  font-weight: 600;
  line-height: 1.2;
  text-align: center;
}

@media (max-width: 760px) {
  .premium-card-body {
    grid-template-columns: 1fr;
  }

  .refined-dashboard,
  .blueprint-flow,
  .fs-unify {
    width: 100%;
    min-width: 0;
  }
}

/* Final platform hero logo fix */
.platform-hero .premium-hub.logo-hub {
  width: 132px !important;
  height: 132px !important;
  background: transparent !important;
  border: 0 !important;
  box-shadow: none !important;
  overflow: visible !important;
}

.platform-hero .premium-hub.logo-hub img {
  width: 132px !important;
  height: 132px !important;
  max-width: 132px !important;
  max-height: 132px !important;
  object-fit: contain !important;
}

.platform-hero .premium-hub.logo-hub small {
  display: none !important;
}

@media (max-width: 640px) {
  .platform-hero .premium-hub.logo-hub {
    width: 88px !important;
    height: 88px !important;
  }

  .platform-hero .premium-hub.logo-hub img {
    width: 88px !important;
    height: 88px !important;
    max-width: 88px !important;
    max-height: 88px !important;
  }
}

/* Resource article page */
.featured-single {
  grid-template-columns: minmax(0, 1.6fr) minmax(280px, .65fr);
  align-items: stretch;
}

.resource-card-featured {
  display: grid;
  grid-template-columns: minmax(260px, .78fr) 1fr;
  min-height: 360px;
}

.resource-card-featured img {
  height: 100%;
  aspect-ratio: auto;
}

.featured-resource-body {
  display: flex;
  flex-direction: column;
  padding: 30px;
}

.resource-card-featured span {
  width: fit-content;
  margin: 0 0 16px;
}

.resource-card-featured h3 {
  min-height: 0;
  margin: 0 0 14px;
  font-size: clamp(28px, 3vw, 42px);
  letter-spacing: -.9px;
}

.resource-card-featured p {
  margin: 0 0 20px;
  max-width: 650px;
  font-size: 15px;
}

.resource-card-featured a {
  margin: auto 0 0;
}

.resource-meta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 0 0 22px;
}

.resource-meta-row small,
.article-meta span {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 10px;
  border-radius: 999px;
  background: #eff6ff;
  color: #1d4ed8;
  font-size: 11px;
  font-weight: 800;
}

.resource-feature-panel {
  display: grid;
  align-content: center;
  gap: 16px;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: linear-gradient(180deg, #f8fbff, #fff);
  box-shadow: var(--shadow-premium);
}

.resource-feature-panel .icon {
  width: 58px;
  height: 58px;
}

.resource-feature-panel h3 {
  margin: 0;
  color: var(--navy);
  font-size: 22px;
  line-height: 1.2;
}

.resource-feature-panel ul {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.resource-feature-panel li {
  position: relative;
  padding-left: 22px;
  color: #334155;
  font-size: 14px;
  line-height: 1.45;
  font-weight: 650;
}

.resource-feature-panel li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .55em;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--blue);
  box-shadow: 0 0 0 5px #eff6ff;
}

.article-hero {
  display: grid;
  grid-template-columns: minmax(0, .95fr) minmax(420px, .82fr);
  align-items: center;
  gap: 54px;
  padding: 74px 6vw 64px;
  background:
    radial-gradient(circle at 88% 18%, rgba(37,99,235,.12), transparent 34%),
    linear-gradient(180deg, #f8fbff 0%, #fff 100%);
  border-bottom: 1px solid var(--line);
}

.article-back {
  display: inline-flex;
  margin-bottom: 18px;
  color: var(--blue);
  font-size: 13px;
  font-weight: 800;
  text-decoration: none;
}

.article-hero h1 {
  max-width: 820px;
  margin: 0 0 20px;
  color: var(--navy);
  font-size: clamp(42px, 6vw, 72px);
  line-height: .98;
  letter-spacing: -2.1px;
}

.article-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 26px;
}

.article-hero-visual {
  position: relative;
  min-height: 470px;
}

.article-hero-visual::before,
.article-hero-visual::after {
  content: "";
  position: absolute;
  inset: 58px;
  border: 1px dashed rgba(37,99,235,.34);
  border-radius: 50%;
}

.article-hero-visual::after {
  inset: 104px;
  border-style: solid;
  opacity: .55;
}

.article-system-core {
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 3;
  width: 210px;
  min-height: 210px;
  transform: translate(-50%, -50%);
  display: grid;
  justify-items: center;
  align-content: center;
  gap: 14px;
  padding: 24px;
  border: 1px solid #e0ecff;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 28px 70px -34px rgba(15,31,61,.46);
  text-align: center;
}

.article-system-core img {
  width: 82px;
  height: 82px;
  object-fit: contain;
}

.article-system-core span {
  color: var(--navy);
  font-size: 15px;
  font-weight: 800;
  line-height: 1.25;
}

.article-system-card {
  position: absolute;
  z-index: 4;
  width: 190px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: rgba(255,255,255,.94);
  box-shadow: var(--shadow-premium);
}

.article-system-card .icon {
  width: 42px;
  height: 42px;
  margin-bottom: 12px;
}

.article-system-card strong,
.article-system-card small {
  display: block;
}

.article-system-card strong {
  color: var(--navy);
  font-size: 15px;
}

.article-system-card small {
  margin-top: 4px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
}

.card-ehr { left: 0; top: 38px; }
.card-coding { right: 0; top: 96px; }
.card-billing { left: 18px; bottom: 58px; }
.card-payer { right: 34px; bottom: 18px; }

.article-shell {
  display: grid;
  grid-template-columns: 260px minmax(0, 820px);
  gap: 54px;
  align-items: start;
  max-width: 1180px;
  margin: 0 auto;
  padding: 64px 32px 86px;
}

.article-toc {
  position: sticky;
  top: 110px;
  display: grid;
  gap: 10px;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #fff;
  box-shadow: var(--shadow-premium);
}

.article-toc strong {
  margin-bottom: 6px;
  color: var(--navy);
  font-size: 14px;
}

.article-toc a {
  color: #475569;
  font-size: 13px;
  font-weight: 750;
  text-decoration: none;
}

.article-body {
  color: #26364d;
  font-size: 17px;
  line-height: 1.78;
}

.article-body > p {
  margin: 0 0 20px;
}

.article-body h2 {
  margin: 44px 0 16px;
  color: var(--navy);
  font-size: 30px;
  line-height: 1.16;
  letter-spacing: -.5px;
}

.article-body h3 {
  margin: 0 0 8px;
  color: var(--navy);
  font-size: 17px;
}

.article-callout {
  display: grid;
  grid-template-columns: 58px 1fr;
  gap: 18px;
  align-items: center;
  margin: 30px 0;
  padding: 24px;
  border: 1px solid #bfdbfe;
  border-radius: 18px;
  background: linear-gradient(135deg, #eff6ff, #fff);
  box-shadow: var(--shadow-premium);
}

.article-callout .icon {
  width: 58px;
  height: 58px;
}

.article-callout p {
  margin: 0;
  color: var(--navy);
  font-size: 18px;
  line-height: 1.5;
  font-weight: 800;
}

.article-step-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin: 24px 0 12px;
}

.article-step-grid section,
.impact-list div:not(.icon) {
  border: 1px solid var(--line);
  border-radius: 16px;
  background: #fff;
  box-shadow: var(--shadow-premium);
}

.article-step-grid section {
  padding: 22px;
}

.article-step-grid section span {
  display: inline-flex;
  margin-bottom: 18px;
  color: var(--blue);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .12em;
}

.article-step-grid p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.6;
}

.impact-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin: 24px 0 20px;
}

.impact-list div:not(.icon) {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 14px;
  align-items: center;
  padding: 16px;
}

.impact-list .icon {
  width: 44px;
  height: 44px;
  align-self: center;
  flex-shrink: 0;
}

.impact-list span {
  color: var(--navy);
  font-size: 14px;
  font-weight: 800;
  line-height: 1.35;
}

.article-conclusion {
  margin-top: 42px;
  padding: 34px;
  border-radius: 22px;
  background: linear-gradient(135deg, #0b2b6f, #075bc7);
  color: #dbeafe;
  box-shadow: 0 28px 70px -34px rgba(15,31,61,.55);
}

.article-conclusion h2 {
  margin-top: 0;
  color: #fff;
}

.article-conclusion p {
  color: #dbeafe;
}

/* ============================================================
   PATCH: FS Real Image (Financial Services blueprint card)
   ============================================================ */
.fs-real-image {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px 12px;
  background: #fff;
  border: 1px solid #e0eaff;
  border-radius: 18px;
  box-shadow: 0 14px 32px -20px rgba(15,31,61,.18);
  min-height: 210px;
}

/* Remove the old ::after badge that was for the SVG version */
.fs-real-image::after,
.frag-widget.fs-real-image::after {
  content: none !important;
  display: none !important;
}

.fs-diagram-img {
  display: block;
  width: 100%;
  max-width: 220px;
  height: auto;
  object-fit: contain;
  border-radius: 4px;
}

/* ============================================================
   PATCH: FS Clean Visual (Financial Services blueprint card)
   ============================================================ */
.fs-clean-visual {
  display: grid;
  justify-items: center;
  gap: 6px;
  padding: 18px 16px 20px;
  background: #fff;
  border: 1px solid #e0eaff;
  border-radius: 18px;
  box-shadow: 0 14px 32px -20px rgba(15,31,61,.22);
}

.fs-visual-label {
  margin: 0;
  color: #1e293b;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: -.01em;
  text-align: center;
}

.fs-networks-row {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin: 4px 0 2px;
}

.fs-net-svg {
  width: 68px;
  height: 60px;
}

.fs-arrow-down {
  font-size: 22px;
  font-weight: 900;
  color: #1e293b;
  line-height: 1;
  margin: 2px 0;
}

.fs-db-svg {
  width: 108px;
  height: 96px;
  margin-top: 2px;
  filter: drop-shadow(0 10px 14px rgba(37,99,235,.2));
}

/* ============================================================
   PATCH: Home hero orbit — visible logo circle
   ============================================================ */
.hero-logo-ring {
  position: relative;
  z-index: 6;
  width: 160px;
  height: 160px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #fff;
  border: 2.5px solid #dbeafe;
  box-shadow: 0 0 0 10px rgba(219,234,254,.35), 0 20px 44px -20px rgba(15,31,61,.18);
}

.hero-logo-ring img {
  width: 110px !important;
  height: 110px !important;
  max-width: 110px !important;
  max-height: 110px !important;
  object-fit: contain;
  display: block;
}

/* ============================================================
   PATCH: Blueprint flow — contain SVG, professional label
   ============================================================ */
.blueprint-flow svg {
  overflow: hidden;
}

.ba-widget {
  overflow: hidden;
}

.ba-widget::after {
  content: "Simplified Target Operating Model";
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: none;
  color: #1d4ed8;
}

/* ============================================================
   PATCH: Platform trust — proper professional cards
   ============================================================ */
.platform-trust-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px;
  max-width: 1120px;
  margin: 0 auto;
}

.trust-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 14px;
  padding: 28px 26px;
  border: 1.5px solid #dbeafe;
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 14px 36px -20px rgba(15,31,61,.13);
  transition: transform .22s ease, box-shadow .22s ease;
}

.trust-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 48px -20px rgba(15,31,61,.2);
}

.trust-card .icon {
  width: 52px;
  height: 52px;
  flex: 0 0 auto;
  background: #eff6ff;
  color: var(--blue);
}

.trust-card h3 {
  margin: 0 0 6px;
  color: var(--navy);
  font-size: 16px;
  font-weight: 800;
  line-height: 1.25;
}

.trust-card p {
  margin: 0;
  color: var(--muted);
  font-size: 13.5px;
  line-height: 1.65;
}

/* ============================================================
   PATCH: About "Built for trust" banner — professional layout
   ============================================================ */
.trust-banner {
  display: grid;
  grid-template-columns: 68px 1fr;
  gap: 28px;
  align-items: start;
  padding: 38px 44px;
  border-radius: 20px;
}

.trust-banner-content h2 {
  margin: 0 0 8px;
  color: #fff;
  font-size: 22px;
  font-weight: 800;
}

.trust-banner-content p {
  margin: 0 0 28px;
  color: #bfdbfe;
  font-size: 14px;
  line-height: 1.6;
}

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

.trust-chip {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 20px 14px;
  border-radius: 14px;
  border: 1px solid rgba(191,219,254,.55);
  background: rgba(239,246,255,.15);
  color: #fff;
  font-size: 12px;
  font-weight: 800;
  text-align: center;
  line-height: 1.3;
  backdrop-filter: blur(4px);
}

.trust-chip .icon {
  width: 36px;
  height: 36px;
  background: rgba(255,255,255,.18);
  color: #fff;
  flex: 0 0 auto;
}

.trust-chip .icon::before {
  width: 20px;
  height: 20px;
}

/* ============================================================
   PATCH: Resources — search filter active state & hide subscribe
   ============================================================ */
.resource-item[data-hidden="true"] { display: none; }

.resource-search:focus-within {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(37,99,235,.12), 0 12px 28px -24px rgba(15,31,61,.28);
}

/* ============================================================
   PATCH: Mobile — center service-orbit & trust grid
   ============================================================ */
@media (max-width: 768px) {
  .platform-trust-grid {
    grid-template-columns: 1fr 1fr;
  }

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

  .trust-banner {
    grid-template-columns: 1fr;
    padding: 28px 24px;
  }

  .trust-banner > .icon {
    display: none;
  }
}

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

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

  .fs-clean-visual {
    width: 100%;
    min-width: 0;
  }

  .hero-logo-ring {
    width: 120px;
    height: 120px;
  }

  .hero-logo-ring img {
    width: 84px !important;
    height: 84px !important;
    max-width: 84px !important;
    max-height: 84px !important;
  }
}

/* ============================================================
   PATCH: Mobile accordion — service sections
   ============================================================ */
.mobile-accordion-toggle {
  display: none;
}

.mobile-section-body {
  display: block;
}

@media (max-width: 768px) {
  .mobile-accordion-toggle {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 18px 0;
    border: none;
    border-bottom: 1px solid var(--line);
    background: transparent;
    color: var(--navy);
    font: 700 16px/1.3 Inter, sans-serif;
    text-align: left;
    cursor: pointer;
  }

  .mobile-accordion-toggle .chev-icon {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: #eff6ff;
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
    transition: transform .28s ease;
  }

  .mobile-accordion-toggle.open .chev-icon {
    transform: rotate(180deg);
  }

  .mobile-section-body {
    overflow: hidden;
    max-height: 0;
    transition: max-height .36s cubic-bezier(.22,1,.36,1);
  }

  .mobile-section-body.open {
    max-height: 2000px;
  }
}

/* ============================================================
   PATCH: Service platform — diagram visible & centered on mobile
   ============================================================ */
@media (max-width: 640px) {
  .service-orbit {
    display: block;
    width: 540px;
    min-height: 460px;
    transform: scale(.52);
    transform-origin: top center;
    margin: 0 auto -215px;
  }

  .service-orbit .service-lines {
    display: block;
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
  }

  .service-orbit .center-node,
  .service-orbit .node-card {
    position: absolute;
  }

  .visual {
    overflow: hidden;
    display: flex;
    justify-content: center;
    width: 100%;
  }
}

.article-conclusion .cta-btn {
  margin-top: 12px;
  background: #fff;
  color: var(--navy);
}

@media (max-width: 1080px) {
  .featured-single,
  .resource-card-featured,
  .article-hero,
  .article-shell {
    grid-template-columns: 1fr;
  }

  .article-hero {
    gap: 30px;
    padding-top: 54px;
  }

  .article-hero-visual {
    min-height: 430px;
  }

  .article-toc {
    position: static;
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .article-toc strong {
    grid-column: 1 / -1;
  }
}

@media (max-width: 640px) {
  .resource-card-featured {
    min-height: 0;
  }

  .featured-resource-body {
    padding: 24px 20px;
  }

  .resource-card-featured h3 {
    font-size: 28px;
  }

  .resource-feature-panel {
    padding: 24px 20px;
  }

  .article-hero {
    padding: 42px 18px 38px;
  }

  .article-hero h1 {
    font-size: 38px;
    letter-spacing: -1.1px;
  }

  .article-hero-visual {
    min-height: 520px;
  }

  .article-hero-visual::before {
    inset: 86px 34px;
  }

  .article-hero-visual::after {
    inset: 138px 76px;
  }

  .article-system-core {
    width: 170px;
    min-height: 170px;
  }

  .article-system-core img {
    width: 64px;
    height: 64px;
  }

  .article-system-card {
    width: calc(50% - 10px);
    padding: 14px;
  }

  .card-ehr { left: 0; top: 16px; }
  .card-coding { right: 0; top: 86px; }
  .card-billing { left: 0; bottom: 86px; }
  .card-payer { right: 0; bottom: 16px; }

  .article-shell {
    padding: 38px 18px 64px;
    gap: 28px;
  }

  .article-toc,
  .article-step-grid,
  .impact-list {
    grid-template-columns: 1fr;
  }

  .article-body {
    font-size: 16px;
  }

  .article-body h2 {
    font-size: 25px;
  }

  .article-callout {
    grid-template-columns: 1fr;
  }

  .article-conclusion {
    padding: 26px 20px;
    border-radius: 18px;
  }
}
