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

/* Prevent the '$' character in shell blocks from being copied */
.gp {
  user-select: none;
}

:root {
  --md-primary-fg-color: #0057B7;
  --md-primary-fg-color--light: #4698CA;
  --card-background: #ffffff;
  --card-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  --card-shadow-hover: 0 12px 30px rgba(0, 0, 0, 0.12);
  --text-muted: #64748b;
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

/* Zensical's modern header uses default surface colors, so restore the
   original CALYPR blue treatment explicitly for the top nav. */
.md-header,
.md-tabs {
  background-color: var(--md-primary-fg-color);
  color: var(--md-primary-bg-color);
}

.md-header {
  box-shadow: 0 10px 30px rgba(0, 36, 77, 0.16);
}

.md-tabs {
  box-shadow: 0 -0.05rem 0 inset rgba(255, 255, 255, 0.18);
}

.md-header__button,
.md-header__title,
.md-header__topic,
.md-tabs__link {
  color: var(--md-primary-bg-color);
}

.md-tabs__item--active {
  border-bottom-color: var(--md-primary-bg-color);
}

.md-header__inner {
  gap: 1rem;
}

.md-header__brand {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  gap: 0.85rem;
  margin-right: 1.5rem;
  min-width: 0;
  text-decoration: none;
}

.md-header__brand:hover {
  text-decoration: none;
}

.md-header__brand-logo {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.md-header__brand-logo img,
.md-header__brand-logo svg {
  width: 2rem;
  height: 2rem;
}

.md-header__brand-text {
  color: #ffffff;
  font-size: 1.15rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1;
}

.md-header__nav {
  display: flex;
  flex: 1 1 auto;
  align-items: center;
  min-width: 0;
}

.md-header__nav-list {
  display: flex;
  align-items: center;
  gap: 1.75rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.md-header__nav-link {
  display: inline-flex;
  align-items: center;
  border-bottom: 2px solid transparent;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.92rem;
  font-weight: 700;
  line-height: 1;
  min-height: 2rem;
  padding: 0.25rem 0;
  text-decoration: none;
  transition: var(--transition);
}

.md-header__nav-link:hover {
  color: #ffffff;
}

.md-header__nav-item--active .md-header__nav-link {
  border-bottom-color: var(--md-primary-bg-color);
  color: #ffffff;
}

.md-search__button {
  background-color: rgba(255, 255, 255, 0.94) !important;
  color: #0f172a !important;
}

.md-search__button:focus,
.md-search__button:hover {
  background-color: #ffffff !important;
  color: #0f172a !important;
}

.md-search__button::before {
  background-color: #0f172a !important;
}

.md-search__button::after {
  background: rgba(15, 23, 42, 0.08) !important;
  color: #475569 !important;
}

h1,
h2,
h3 {
  font-weight: 700 !important;
  letter-spacing: -0.02em;
}

/* horizontal dividers */
body.home   .md-content h2::before {
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  background-color: #e2e8f0;
  margin-top: 0.5em;
  margin-bottom: 1.5em;
}

body.business-home .md-main__inner {
  display: block;
  width: 100%;
  margin: 0;
  max-width: 100%;
  padding: 0;
}

body.business-home .md-content {
  display: block;
  width: 100%;
  max-width: none;
  margin: 0;
  padding: 0;
}

body.business-home .md-content__inner {
  display: block;
  width: 100%;
  max-width: none;
  margin: 0;
  padding: 0;
}

body.business-home .md-content__inner::before,
body.business-home .md-content h2::before {
  display: none;
}

body.marketing-page .md-main__inner {
  display: block;
  max-width: none;
  margin: 0;
}

body.marketing-page .md-content {
  width: 100%;
  max-width: none;
  margin: 0;
}

body.marketing-page .md-content__inner {
  max-width: none;
  margin: 0;
  padding: 2.5rem 0 4rem;
}

body.marketing-page .md-content__inner::before,
body.marketing-page .md-content h2::before {
  display: none;
}

body.marketing-page .md-sidebar--primary,
body.marketing-page .md-sidebar--secondary {
  display: none;
}

.business-hero {
  display: grid;
  grid-template-columns: minmax(520px, 1fr) minmax(360px, 0.78fr);
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
  max-width: 1180px;
  margin: 0 auto;
  padding: clamp(4rem, 7vw, 7rem) 1.5rem 3rem;
}

.business-hero::before {
  content: "";
  position: absolute;
  inset: 6rem 0 auto;
  height: 560px;
  z-index: -1;
  background:
    radial-gradient(circle at 18% 28%, rgba(20, 184, 166, 0.14), transparent 28rem),
    radial-gradient(circle at 74% 12%, rgba(56, 189, 248, 0.18), transparent 26rem),
    linear-gradient(180deg, #f8fafc 0%, #eef6ff 68%, #ffffff 100%);
}

.business-hero__copy h1 {
  max-width: 760px;
  margin: 0;
  color: #07111f;
  font-size: clamp(3.1rem, 5.2vw, 5.25rem);
  line-height: 0.98;
  letter-spacing: -0.055em;
  overflow-wrap: normal;
  word-break: normal;
}

.business-hero__lead {
  max-width: 720px;
  margin: 1.4rem 0 0;
  color: #334155;
  font-size: clamp(1.05rem, 1.8vw, 1.35rem);
  line-height: 1.65;
}

.business-hero__panel {
  position: relative;
}

.business-hero__panel img {
  display: block;
  width: 100%;
  border-radius: 28px;
  box-shadow: 0 32px 80px rgba(15, 23, 42, 0.18);
}

.eyebrow {
  margin: 0 0 1rem;
  color: #0f766e;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.business-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 2rem;
}

.business-actions .md-button {
  border-radius: 999px;
  font-weight: 800;
}

.business-actions--center {
  justify-content: center;
}

.solution-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
  max-width: 1180px;
  margin: 1rem auto 5rem;
  padding: 0 1.5rem;
}

.solution-strip a {
  display: flex;
  min-height: 100%;
  flex-direction: column;
  gap: 0.75rem;
  overflow: hidden;
  border: 1px solid #dbeafe;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 18px 42px rgba(15, 23, 42, 0.08);
  color: #0f172a;
  text-decoration: none;
  transition: var(--transition);
}

.solution-strip a:hover {
  transform: translateY(-6px);
  border-color: #38bdf8;
  box-shadow: 0 28px 62px rgba(15, 23, 42, 0.14);
}

.solution-strip img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border-bottom: 1px solid #e0f2fe;
}

.solution-strip strong,
.solution-strip span {
  padding: 0 1rem;
}

.solution-strip strong {
  color: #0f172a;
  font-size: 1.05rem;
}

.solution-strip span {
  padding-bottom: 1.15rem;
  color: #475569;
  font-size: 0.82rem;
  line-height: 1.5;
}

.solution-strip--page {
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  margin: 2rem 0;
  padding: 0;
}

.solution-hero,
.solution-section {
  max-width: 1180px;
  margin: 0 auto 5rem;
  padding: 0 1.5rem;
}

.solution-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 2rem;
  align-items: start;
  padding-top: 2.5rem;
}

.solution-hero h1 {
  max-width: 14ch;
  margin: 0;
  color: #07111f;
  font-size: clamp(2.5rem, 4.2vw, 4.4rem);
  line-height: 0.98;
  letter-spacing: -0.06em;
}

.solution-hero__lead {
  max-width: 42rem;
  margin: 1.5rem 0 0;
  color: #334155;
  font-size: clamp(1rem, 1.45vw, 1.18rem);
  line-height: 1.7;
}

.solution-hero__copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  max-width: 860px;
}

.solution-hero__aside {
  border: 1px solid #99f6e4;
  border-radius: 28px;
  background:
    radial-gradient(circle at 92% 8%, rgba(56, 189, 248, 0.18), transparent 14rem),
    linear-gradient(135deg, #f0fdfa 0%, #eff6ff 100%);
  box-shadow: 0 24px 60px rgba(15, 23, 42, 0.08);
  padding: 1.6rem;
}

.solution-hero__aside span,
.usecase-panel span,
.solution-flow span {
  display: block;
  color: #0f766e;
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.solution-hero__aside strong {
  display: block;
  margin-top: 0.7rem;
  color: #0f172a;
  font-size: 1.08rem;
  line-height: 1.55;
}

.product-banners--solutions {
  margin-top: 0;
}

.solution-section h2 {
  max-width: 900px;
  margin: 0 0 2rem;
  color: #07111f;
  font-size: clamp(1.9rem, 3.2vw, 3.2rem);
  line-height: 1.02;
  letter-spacing: -0.05em;
}

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

.usecase-panel {
  border: 1px solid #dbeafe;
  border-radius: 26px;
  background: #ffffff;
  box-shadow: 0 18px 48px rgba(15, 23, 42, 0.07);
  padding: clamp(1.2rem, 3vw, 2rem);
  display: flex;
  min-height: 100%;
  flex-direction: column;
}

.usecase-panel h3 {
  margin: 0;
  color: #0f172a;
  font-size: clamp(1.25rem, 2vw, 1.75rem);
  line-height: 1.08;
  letter-spacing: -0.035em;
}

.usecase-panel p {
  margin: 1rem 0 0;
  color: #475569;
  line-height: 1.65;
}

.solutions-page .usecase-panel__journey {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.6rem;
  margin-top: 1.35rem;
}

.solutions-page .usecase-panel__journey span {
  display: flex;
  min-height: 64px;
  align-items: center;
  justify-content: center;
  border: 1px solid #dbeafe;
  border-radius: 18px;
  background: linear-gradient(180deg, #f8fbff 0%, #eef6ff 100%);
  color: #0f172a;
  font-size: 0.84rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  line-height: 1.2;
  padding: 0.75rem;
  text-align: center;
  text-transform: none;
}

.usecase-panel__links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: auto;
  padding-top: 1.25rem;
}

.usecase-panel__links a,
.product-map a {
  color: #0057B7;
  font-weight: 800;
  text-decoration: none;
}

.usecase-panel__links a {
  border: 1px solid #bfdbfe;
  border-radius: 999px;
  background: #f8fafc;
  padding: 0.45rem 0.72rem;
  font-size: 0.78rem;
}

.solution-section--flow {
  max-width: none;
  padding: 4.5rem max(1.5rem, calc((100vw - 1180px) / 2));
  background:
    radial-gradient(circle at 84% 12%, rgba(14, 165, 233, 0.12), transparent 22rem),
    linear-gradient(180deg, #f8fafc 0%, #eef6ff 100%);
}

.solutions-page .solution-flow-layout {
  display: grid;
  grid-template-columns: minmax(300px, 0.8fr) minmax(0, 1.2fr);
  gap: 1.5rem;
  align-items: start;
}

.solutions-page .solution-flow-layout__intro p:last-child {
  max-width: 32rem;
  margin: 0;
  color: #475569;
  font-size: 1rem;
  line-height: 1.7;
}

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

.solution-flow a {
  display: flex;
  min-height: 220px;
  flex-direction: column;
  justify-content: space-between;
  border: 1px solid #dbeafe;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 20px 50px rgba(15, 23, 42, 0.07);
  color: #0f172a;
  padding: 1.25rem;
  text-decoration: none;
  transition: var(--transition);
}

.solution-flow a:hover {
  transform: translateY(-5px);
  border-color: #38bdf8;
  box-shadow: 0 28px 68px rgba(15, 23, 42, 0.12);
}

.solution-flow strong {
  display: block;
  margin-top: 1rem;
  color: #0f172a;
  font-size: 1.25rem;
  line-height: 1.15;
  letter-spacing: -0.035em;
}

.solution-flow small {
  color: #64748b;
  font-size: 0.82rem;
  line-height: 1.45;
}

.product-map {
  overflow: hidden;
  border: 1px solid #dbeafe;
  border-radius: 26px;
  background: #ffffff;
  box-shadow: 0 20px 54px rgba(15, 23, 42, 0.08);
}

.product-map__row {
  display: grid;
  grid-template-columns: 0.55fr 1.25fr 1fr;
  gap: 1rem;
  align-items: start;
  border-top: 1px solid #e2e8f0;
  padding: 1.1rem 1.25rem;
}

.product-map__row:first-child {
  border-top: 0;
}

.product-map__row--header {
  background: #eff6ff;
  color: #0f172a;
  font-size: 0.76rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.product-map__row span {
  color: #475569;
  line-height: 1.55;
}

.cta-band--solutions {
  margin-bottom: 2rem;
}

.solutions-page .solution-hero__canvas {
  border: 1px solid #bfdbfe;
  border-radius: 34px;
  background:
    radial-gradient(circle at 88% 10%, rgba(56, 189, 248, 0.16), transparent 18rem),
    linear-gradient(135deg, #ffffff 0%, #edf6ff 54%, #f0fdfa 100%);
  box-shadow: 0 28px 70px rgba(15, 23, 42, 0.1);
  overflow: hidden;
  max-width: 1040px;
}

.solutions-page .solution-canvas__header {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  padding: 1.4rem 1.5rem 1.2rem;
  border-bottom: 1px solid rgba(191, 219, 254, 0.9);
  background: rgba(255, 255, 255, 0.66);
}

.solutions-page .solution-canvas__header span,
.solutions-page .solution-canvas__label,
.solutions-page .solution-roadmap__step span {
  display: block;
  color: #0f766e;
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.solutions-page .solution-canvas__header strong {
  color: #0f172a;
  font-size: 1.05rem;
  line-height: 1.55;
}

.solutions-page .solution-canvas__columns {
  display: grid;
  grid-template-columns: minmax(210px, 0.8fr) minmax(360px, 1.4fr) minmax(210px, 0.8fr);
}

.solutions-page .solution-canvas__rail,
.solutions-page .solution-canvas__core {
  padding: 1.35rem;
  min-width: 0;
}

.solutions-page .solution-canvas__rail {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  background: rgba(255, 255, 255, 0.54);
}

.solutions-page .solution-canvas__core {
  border-left: 1px solid rgba(191, 219, 254, 0.9);
  border-right: 1px solid rgba(191, 219, 254, 0.9);
}

.solutions-page .solution-canvas__item {
  border: 1px solid #dbeafe;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.88);
  color: #0f172a;
  font-size: 0.92rem;
  font-weight: 700;
  line-height: 1.3;
  padding: 0.9rem 0.95rem;
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.04);
}

.solutions-page .solution-canvas__header strong,
.solutions-page .solution-canvas__label,
.solutions-page .solution-canvas__item,
.solutions-page .solution-canvas__product strong,
.solutions-page .solution-canvas__product small {
  max-width: none;
  white-space: normal;
  overflow-wrap: normal;
  word-break: keep-all;
  hyphens: none;
}

.solutions-page .solution-canvas__products {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.9rem;
  margin-top: 0.95rem;
}

.solutions-page .solution-canvas__product {
  display: grid;
  grid-template-columns: 86px minmax(0, 1fr);
  gap: 0.85rem;
  align-items: center;
  border: 1px solid #cfe0ff;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.92);
  color: #0f172a;
  min-height: 100%;
  padding: 1rem;
  text-decoration: none;
  transition: var(--transition);
}

.solutions-page .solution-canvas__product:hover {
  transform: translateY(-4px);
  border-color: #38bdf8;
  box-shadow: 0 20px 40px rgba(15, 23, 42, 0.1);
}

.solutions-page .solution-canvas__product img {
  width: 100%;
  height: 76px;
  object-fit: contain;
  border-radius: 16px;
  background: linear-gradient(180deg, #f8fbff 0%, #eef6ff 100%);
  padding: 0.55rem;
}

.solutions-page .solution-canvas__product strong,
.solutions-page .solution-canvas__product small {
  grid-column: 2;
}

.solutions-page .solution-canvas__product img {
  grid-row: 1 / span 2;
}

.solutions-page .solution-canvas__product strong {
  color: #0f172a;
  font-size: 1rem;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

.solutions-page .solution-canvas__product small {
  color: #64748b;
  font-size: 0.82rem;
  line-height: 1.45;
}

.solutions-page .solution-roadmap {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.solutions-page .solution-roadmap__step {
  position: relative;
  border: 1px solid #dbeafe;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 18px 42px rgba(15, 23, 42, 0.07);
  padding: 1.25rem;
}

.solutions-page .solution-roadmap__step strong {
  display: block;
  margin-top: 0.9rem;
  color: #0f172a;
  font-size: 1.3rem;
  line-height: 1.08;
  letter-spacing: -0.04em;
}

.solutions-page .solution-roadmap__step p {
  margin: 0.95rem 0 0;
  color: #64748b;
  font-size: 0.9rem;
  line-height: 1.6;
}

.solutions-page .cta-band--solutions {
  padding: 1.5rem 2rem;
  border-radius: 26px;
}

.solutions-page .cta-band--solutions h2 {
  max-width: 980px;
  font-size: clamp(1.6rem, 2.4vw, 2.35rem);
}

.solutions-page .solution-route-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.15rem 1.4rem;
}

.solutions-page .solution-route {
  display: grid;
  grid-template-columns: 14px minmax(0, 1fr);
  gap: 1rem;
  align-items: start;
}

.solutions-page .solution-route__marker {
  width: 14px;
  height: 14px;
  border-radius: 999px;
  background: linear-gradient(135deg, #0057B7, #14b8a6);
  box-shadow: 0 0 0 7px rgba(191, 219, 254, 0.35);
  margin-top: 0.45rem;
}

.solutions-page .solution-route__body {
  border: 1px solid #dbeafe;
  border-radius: 22px;
  background: #ffffff;
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.06);
  padding: 1.2rem 1.25rem;
}

.solutions-page .solution-route__body strong {
  display: block;
  color: #0f172a;
  font-size: 1.22rem;
  line-height: 1.15;
  letter-spacing: -0.03em;
}

.solutions-page .solution-route__body p {
  margin: 0.85rem 0 0;
  color: #475569;
  line-height: 1.65;
}

.solutions-page .solution-route__products {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-top: 1rem;
}

.solutions-page .solution-route__products a {
  border: 1px solid #bfdbfe;
  border-radius: 999px;
  background: #f8fbff;
  color: #0057B7;
  font-size: 0.8rem;
  font-weight: 800;
  padding: 0.45rem 0.72rem;
  text-decoration: none;
}

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

.product-system__card {
  border: 1px solid #dbeafe;
  border-radius: 28px;
  background:
    radial-gradient(circle at 92% 12%, rgba(56, 189, 248, 0.12), transparent 12rem),
    #ffffff;
  box-shadow: 0 20px 48px rgba(15, 23, 42, 0.08);
  padding: 1.4rem 1.45rem;
}

.product-system__card span {
  display: block;
  color: #0f766e;
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.product-system__card h3 {
  margin: 0.8rem 0 0;
  color: #0f172a;
  font-size: 1.7rem;
  line-height: 1.02;
  letter-spacing: -0.04em;
}

.product-system__card p {
  margin: 0.9rem 0 0;
  color: #475569;
  line-height: 1.65;
}

.product-system__card ul {
  margin: 1rem 0 0;
  padding-left: 1rem;
  color: #334155;
}

.product-system__card li + li {
  margin-top: 0.45rem;
}

.developer-hero {
  padding-top: 3rem;
}

body.developers-page .md-content h1:first-of-type {
  display: none;
}

.developer-index__rows {
  border-top: 1px solid #dbeafe;
}

.developer-index__row {
  display: grid;
  grid-template-columns: minmax(220px, 0.9fr) minmax(0, 1.8fr) auto;
  gap: 1.25rem;
  align-items: center;
  border-bottom: 1px solid #dbeafe;
  padding: 1.2rem 0;
  color: inherit;
  text-decoration: none;
}

.developer-index__title {
  color: #0f172a;
  font-size: 1.18rem;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.developer-index__detail {
  color: #475569;
  line-height: 1.7;
}

.developer-index__route {
  color: #0f766e;
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  white-space: nowrap;
}

.developer-catalog__groups {
  display: grid;
  gap: 0;
  border-top: 1px solid #dbeafe;
}

.developer-catalog__group {
  display: grid;
  grid-template-columns: minmax(220px, 0.9fr) minmax(0, 1.6fr) minmax(260px, 1fr);
  gap: 1.5rem;
  align-items: start;
  border-bottom: 1px solid #dbeafe;
  padding: 1.35rem 0;
}

.developer-catalog__label {
  color: #0f172a;
  font-size: 1.08rem;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.developer-catalog__group p {
  margin: 0;
  color: #475569;
  line-height: 1.7;
}

.developer-catalog__links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
}

.developer-catalog__links a {
  color: #0057B7;
  font-weight: 800;
  text-decoration: none;
}

.developer-directory__grid,
.product-dev-links__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.15rem;
}

.developer-directory__card,
.product-dev-links__card {
  display: flex;
  min-height: 100%;
  flex-direction: column;
  border: 1px solid #dbeafe;
  border-radius: 24px;
  background: #ffffff;
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.06);
  padding: 1.25rem;
  text-decoration: none;
}

.developer-directory__card strong,
.product-dev-links__card strong {
  color: #0f172a;
  font-size: 1.24rem;
  line-height: 1.1;
  letter-spacing: -0.03em;
}

.developer-directory__card span,
.product-dev-links__card p {
  margin-top: 0.8rem;
  color: #475569;
  line-height: 1.65;
}

.developer-tool-groups {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.15rem;
}

.developer-tool-group {
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
  border: 1px solid #dbeafe;
  border-radius: 24px;
  background:
    radial-gradient(circle at 92% 10%, rgba(56, 189, 248, 0.12), transparent 12rem),
    #ffffff;
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.06);
  padding: 1.25rem;
}

.developer-tool-group span {
  display: block;
  color: #0f766e;
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.developer-tool-group a,
.product-dev-links__card a {
  color: #0057B7;
  font-weight: 800;
  text-decoration: none;
}

.product-dev-links__card a {
  margin-top: auto;
  padding-top: 1rem;
}

.product-banners {
  display: grid;
  gap: 2rem;
  max-width: 1180px;
  margin: 1rem auto 5rem;
  padding: 0 1.5rem;
}

.product-banner {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(360px, 1.1fr);
  gap: clamp(1.5rem, 4vw, 4rem);
  align-items: center;
  overflow: hidden;
  min-height: 380px;
  border: 1px solid #dbeafe;
  border-radius: 34px;
  background:
    radial-gradient(circle at 95% 10%, rgba(56, 189, 248, 0.16), transparent 19rem),
    linear-gradient(135deg, #ffffff 0%, #eef6ff 100%);
  box-shadow: 0 28px 80px rgba(15, 23, 42, 0.1);
  padding: clamp(1.5rem, 4vw, 3rem);
}

.product-banner:nth-child(even) {
  grid-template-columns: minmax(360px, 1.1fr) minmax(0, 0.9fr);
}

.product-banner:nth-child(even) .product-banner__copy {
  order: 2;
}

.product-banner:nth-child(even) img {
  order: 1;
}

.product-banner--compute {
  background:
    radial-gradient(circle at 8% 8%, rgba(124, 58, 237, 0.12), transparent 18rem),
    linear-gradient(135deg, #ffffff 0%, #f5f3ff 100%);
}

.product-banner--integrate {
  background:
    radial-gradient(circle at 95% 12%, rgba(20, 184, 166, 0.14), transparent 18rem),
    linear-gradient(135deg, #ffffff 0%, #ecfeff 100%);
}

.product-banner--models {
  background:
    radial-gradient(circle at 8% 10%, rgba(245, 158, 11, 0.16), transparent 18rem),
    linear-gradient(135deg, #ffffff 0%, #fffbeb 100%);
}

.product-banner__copy h2 {
  margin: 0;
  color: #07111f;
  font-size: clamp(2.4rem, 5vw, 4.6rem);
  line-height: 0.95;
  letter-spacing: -0.06em;
}

.product-banner__copy p:not(.eyebrow) {
  max-width: 560px;
  margin: 1rem 0 0;
  color: #334155;
  font-size: clamp(1rem, 1.8vw, 1.3rem);
  line-height: 1.55;
}

.product-banner img {
  display: block;
  width: 100%;
  border-radius: 24px;
  box-shadow: 0 24px 70px rgba(15, 23, 42, 0.14);
}

.product-banner__links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-top: 1.8rem;
}

.product-banner__links a {
  display: inline-flex;
  align-items: center;
  border: 1px solid #bfdbfe;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.76);
  color: #0057B7;
  font-size: 0.85rem;
  font-weight: 800;
  padding: 0.55rem 0.9rem;
  text-decoration: none;
  transition: var(--transition);
}

.product-banner__links a:hover {
  transform: translateY(-2px);
  border-color: #38bdf8;
  background: #ffffff;
  box-shadow: 0 12px 30px rgba(15, 23, 42, 0.08);
}

.business-section {
  max-width: 1180px;
  margin: 0 auto 5rem;
  padding: 0 1.5rem;
}

.business-section h2 {
  max-width: 850px;
  margin-top: 0;
  color: #0f172a;
  font-size: clamp(1.9rem, 3vw, 3.2rem);
  line-height: 1.06;
  letter-spacing: -0.045em;
}

.section-lead {
  max-width: 760px;
  color: #475569;
  font-size: 1.05rem;
  line-height: 1.7;
}

.business-section--muted {
  max-width: none;
  padding: 4.5rem max(1.5rem, calc((100vw - 1180px) / 2));
  background:
    radial-gradient(circle at 90% 10%, rgba(124, 58, 237, 0.08), transparent 24rem),
    linear-gradient(180deg, #f8fafc 0%, #eef6ff 100%);
}

.value-grid,
.capability-grid,
.foundation-grid {
  display: grid;
  gap: 1rem;
}

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

.value-grid article,
.capability-grid article {
  border: 1px solid #e2e8f0;
  border-radius: 22px;
  background: #ffffff;
  box-shadow: 0 18px 46px rgba(15, 23, 42, 0.06);
  padding: 1.4rem;
}

.value-grid h3,
.capability-grid h3 {
  margin-top: 0;
  color: #0f172a;
}

.value-grid p,
.capability-grid p {
  color: #475569;
  line-height: 1.65;
}

.proof-band,
.cta-band {
  max-width: 1180px;
  margin: 0 auto 5rem;
  border-radius: 30px;
  padding: 2rem;
}

.proof-band {
  display: flex;
  gap: 1.5rem;
  align-items: center;
  justify-content: space-between;
  border: 1px solid #99f6e4;
  background:
    linear-gradient(135deg, rgba(236, 254, 255, 0.94), rgba(239, 246, 255, 0.94)),
    radial-gradient(circle at 92% 18%, rgba(245, 158, 11, 0.18), transparent 18rem);
  box-shadow: 0 24px 64px rgba(15, 23, 42, 0.08);
}

.proof-band span {
  display: block;
  margin-bottom: 0.45rem;
  color: #0f766e;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.proof-band strong {
  display: block;
  max-width: 780px;
  color: #0f172a;
  font-size: 1.15rem;
  line-height: 1.55;
}

.foundation-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin: 2rem 0;
}

.foundation-grid a {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  border: 1px solid #dbeafe;
  border-radius: 18px;
  background: #ffffff;
  padding: 1.1rem;
  color: #0f172a;
  text-decoration: none;
  transition: var(--transition);
}

.foundation-grid a:hover {
  transform: translateY(-4px);
  border-color: #38bdf8;
  box-shadow: 0 18px 42px rgba(15, 23, 42, 0.1);
}

.foundation-grid span {
  color: #64748b;
  font-size: 0.86rem;
  line-height: 1.45;
}

.cta-band {
  background:
    linear-gradient(135deg, rgba(0, 87, 183, 0.96), rgba(14, 116, 144, 0.96)),
    radial-gradient(circle at 88% 18%, rgba(245, 158, 11, 0.25), transparent 20rem);
  color: #ffffff;
}

.cta-band h2 {
  max-width: 850px;
  margin: 0;
  color: #ffffff;
  font-size: clamp(1.8rem, 3vw, 3rem);
  line-height: 1.08;
}

.cta-band p {
  max-width: 760px;
  color: rgba(255, 255, 255, 0.84);
  font-size: 1rem;
  line-height: 1.65;
}

.cta-band .eyebrow,
.cta-band a {
  color: #ccfbf1;
}

/* Hero section container */
.md-hero {
  background-image: linear-gradient(135deg, var(--md-primary-fg-color), #1e40af);
  background:
    linear-gradient(rgba(0, 48, 102, 0.4), rgba(0, 48, 102, 0.4)),
    url("../assets/banner_fade.png");
  background-size: cover;
  background-position: center;
  color: white;
  padding: 6rem 0;
  clip-path: ellipse(150% 100% at 50% 0%);
}

.md-hero__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.md-hero__content h1 {
  font-size: 3rem;
  font-weight: 800;
  margin-bottom: 1rem;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.md-hero__content div {
  font-size: 1.25rem;
  max-width: 40rem;
  margin-bottom: 2rem;
  opacity: 0.95;
  font-weight: 400;
}

/* Product Grid */
.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
  max-width: 1100px;
  margin: 0rem auto 4rem;
  padding: 0 1rem;
  position: relative;
  z-index: 10;
}

/* Professional Product Card */
.product-card {
  background: var(--card-background);
  border-radius: 12px;
  box-shadow: var(--card-shadow);
  overflow: hidden;
  transition: var(--transition);
  border: 1px solid rgba(226, 232, 240, 0.8);
  display: flex;
  flex-direction: column;
}

.product-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--card-shadow-hover);
  border-color: var(--md-primary-fg-color--light);
}

.product-card--featured:hover {
  transform: none;
}

/* Featured / Umbrella Card */
.product-card--featured {
  grid-column: 1 / -1;
  flex-direction: column;
  min-height: 500px;
  background: white;
}

.product-card--featured .product-card__image-wrap {
  width: 100%;
  height: 650px;
  border-bottom: none;
  border-right: none;
  padding: 0;
  background: #f8fafc;
}

/* Gradient transition from image to text */
.product-card--featured .product-card__image-wrap::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 80px;
  background: linear-gradient(to bottom, transparent, white);
  z-index: 2;
}

.product-card--featured .product-card__image {
  width: 100%;
  height: 100%;
  max-width: none;
  max-height: none;
  object-fit: cover;
  object-position: center 20%;
  z-index: 1;
}

.product-card--featured .product-card__content {
  padding: 2rem 4rem 4rem;
  text-align: center;
  align-items: center;
}

.product-card--featured .product-card__title {
  font-size: 2.8rem;
  margin-bottom: 1rem;
}

.product-card--featured .product-card__summary {
  font-size: 1.4rem;
  margin-bottom: 1.5rem;
  max-width: 800px;
}

.product-card--featured .product-card__description {
  font-size: 1.1rem;
  max-width: 750px;
  margin-bottom: 2rem;
}

.product-card__image-wrap {
  position: relative;
  width: 100%;
  height: 180px;
  background: #f8fafc;
  border-bottom: 1px solid #f1f5f9;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.product-card__image {
  max-width: 80%;
  max-height: 80%;
  object-fit: contain;
  transition: var(--transition);
}

.product-card:hover .product-card__image {
  transform: scale(1.05);
}

.product-card--featured:hover .product-card__image {
  transform: scale(1);
}

.product-card__content {
  padding: 1.5rem;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.product-card__title {
  color: #0f172a;
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
}

.product-card__summary {
  color: #334155;
  font-size: 0.95rem;
  font-weight: 500;
  margin-bottom: 0.75rem;
  line-height: 1.4;
}

.product-card__description {
  color: var(--text-muted);
  font-size: 0.875rem;
  line-height: 1.6;
  margin-bottom: 1.5rem;
  flex-grow: 1;
}

.product-card__link {
  display: inline-flex;
  align-items: center;
  color: var(--md-primary-fg-color);
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  transition: var(--transition);
}

.product-card__link i {
  margin-left: 0.25rem;
  transition: var(--transition);
}

.product-card__link:hover {
  color: #1a73e8;
}

.product-card__link:hover i {
  transform: translateX(4px);
}

.product-card--featured .product-card__link:hover i {
  transform: none;
}

/* Responsive */
@media screen and (max-width: 960px) {
  .business-hero {
    grid-template-columns: 1fr;
    padding-top: 3rem;
  }

  .md-header__nav {
    display: none;
  }

  .md-header__brand {
    margin-right: auto;
  }

  .md-header__brand-text {
    font-size: 1rem;
  }

  .business-hero__copy h1 {
    font-size: 2.35rem;
  }

  .solution-strip,
  .solution-hero,
  .solution-flow,
  .solution-roadmap,
  .solution-route-grid,
  .developer-index__row,
  .developer-catalog__group,
  .developer-directory__grid,
  .product-dev-links__grid,
  .developer-tool-groups,
  .product-system,
  .usecase-grid,
  .product-map__row,
  .product-banner,
  .value-grid,
  .capability-grid,
  .foundation-grid {
    grid-template-columns: 1fr;
  }

  .solutions-page .solution-flow-layout {
    grid-template-columns: 1fr;
  }

  .product-banner:nth-child(even) {
    grid-template-columns: 1fr;
  }

  .product-banner:nth-child(even) .product-banner__copy,
  .product-banner:nth-child(even) img {
    order: initial;
  }

  .solutions-page .solution-canvas__columns,
  .solutions-page .solution-canvas__products,
  .solutions-page .usecase-panel__journey {
    grid-template-columns: 1fr;
  }

  .solutions-page .solution-canvas__product {
    grid-template-columns: 1fr;
  }

  .solutions-page .solution-canvas__product strong,
  .solutions-page .solution-canvas__product small,
  .solutions-page .solution-canvas__product img {
    grid-column: auto;
    grid-row: auto;
  }

  .solutions-page .solution-canvas__core {
    border-top: 1px solid rgba(191, 219, 254, 0.9);
    border-bottom: 1px solid rgba(191, 219, 254, 0.9);
    border-left: 0;
    border-right: 0;
  }

  .proof-band {
    align-items: flex-start;
    flex-direction: column;
  }

  .product-grid {
    grid-template-columns: 1fr;
    margin-top: 2rem;
  }

  .md-hero__content h1 {
    font-size: 2.25rem;
  }

  .product-card--featured {
    flex-direction: column;
  }

  .product-card--featured .product-card__image-wrap {
    width: 100%;
    height: 200px;
    border-right: none;
    border-bottom: none;
    padding: 2rem 2rem 0;
  }

  .product-card--featured .product-card__content {
    padding: 1.5rem;
  }

  .product-card--featured .product-card__title {
    font-size: 1.75rem;
  }
}

/* Sidebar Navigation Styles */
/* Target top-level section headers, nested collapsible headers, and index links */
.md-nav__item--section>.md-nav__link,
.md-nav__item--section>label.md-nav__link,
.md-nav__item--section>.md-nav__link--index,
.md-nav__link[for],
.md-nav__item--nested>.md-nav__link,
.md-nav__link--index {
  font-weight: 700 !important;
  color: #000000 !important;
  opacity: 1 !important;
}

/* Adjust top-level sidebar items that are links to follow a similar weight */
.md-nav--primary>.md-nav__list>.md-nav__item>.md-nav__link {
  font-weight: 700;
  color: #000000;
}

body:not(.marketing-page) .md-sidebar--primary .md-nav--primary > .md-nav__list > .md-nav__item:not(.md-nav__item--active) {
  display: none;
}
