:root {
  --brand-blue: #285a83;
  --brand-slate: #4d5871;
  --brand-mauve: #7d6473;
  --brand-rose: #a46869;
  --brand-coral: #cb6b5f;
  --brand-orange: #ef6f53;

  --bg-dark: #0b1220;
  --bg-dark2: #0f2747;

  --surface: #ffffff;
  --surface2: #f6f8fb;

  --text: #0b1220;
  --muted: #5c6b7c;

  --line: rgba(10, 18, 32, 0.1);
  --radius: 18px;
  --radius2: 24px;

  --shadow: 0 14px 44px rgba(10, 18, 32, 0.12);
  --shadow2: 0 18px 70px rgba(10, 18, 32, 0.18);

  --easeOut: cubic-bezier(0.2, 0.9, 0.2, 1);
  --easeSoft: cubic-bezier(0.2, 0.8, 0.2, 1);
}

* {
  box-sizing: border-box;
}
html,
body {
  height: 100%;
}
body {
  margin: 0;
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto,
    Helvetica, Arial, "Apple Color Emoji", "Segoe UI Emoji";
  color: var(--text);
  background: var(--surface);
  line-height: 1.6;
  overflow-x: hidden;
}

.gh-wrap {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 22px;
}
.gh-muted {
  color: var(--muted);
}
.gh-muted--dark {
  color: rgba(255, 255, 255, 0.72);
}

.gh-h1 {
  font-size: clamp(34px, 3.3vw, 56px);
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin: 10px 0 14px;
}
.gh-h2 {
  font-size: clamp(24px, 2.2vw, 38px);
  line-height: 1.12;
  letter-spacing: -0.015em;
  margin: 0 0 10px;
}
.gh-h2--invert {
  color: #fff;
}
.gh-h3 {
  font-size: 16px;
  letter-spacing: -0.01em;
  margin: 0 0 10px;
}

/* Buttons */
.gh-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 10px 14px;
  border-radius: 999px;
  font-weight: 850;
  font-size: 14px;
  text-decoration: none;
  border: 1px solid transparent;
  user-select: none;
  cursor: pointer;
  transition: transform 0.18s var(--easeOut), filter 0.18s var(--easeOut),
    background 0.18s var(--easeOut), border-color 0.18s var(--easeOut),
    box-shadow 0.18s var(--easeOut);
}
.gh-btn:active {
  transform: translateY(1px);
}

.gh-btn--primary {
  color: #fff;
  background: linear-gradient(90deg, var(--brand-blue), var(--brand-blue));
  box-shadow: 0 14px 40px rgba(40, 90, 131, 0.22);
  position: relative;
  overflow: hidden;
}
.gh-btn--primary::after {
  content: "";
  position: absolute;
  inset: -60px -180px auto auto;
  width: 260px;
  height: 160px;
  transform: rotate(18deg);
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.18),
    transparent
  );
  opacity: 0.65;
  animation: ghShimmer 5.8s var(--easeSoft) infinite;
}
.gh-btn--primary:hover {
  filter: brightness(1.05);
  box-shadow: 0 18px 56px rgba(40, 90, 131, 0.28);
  transform: translateY(-1px);
}

.gh-btn--outline {
  color: #fff;
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.16);
}
.gh-btn--outline:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-1px);
}

.gh-btn--ghost {
  color: rgba(255, 255, 255, 0.88);
  background: transparent;
  border-color: rgba(255, 255, 255, 0.14);
}
.gh-btn--ghost:hover {
  background: rgba(255, 255, 255, 0.06);
  transform: translateY(-1px);
}

.gh-btn--lg {
  padding: 12px 18px;
  font-size: 15px;
}
.gh-btn--full {
  width: 100%;
}

/* NAV */
:root {
  --gh-navH: 74px;
} /* adjust if needed */

.gh-hero {
  margin-top: calc(-0.7 * var(--gh-navH));
  padding-top: var(--gh-navH);
  padding-bottom: var(--gh-navH);
}

section {
  scroll-margin-top: calc(var(--gh-navH) + 12px);
}

.gh-nav {
  transition: padding 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
  box-shadow: none;
}
.gh-nav.is-scrolled {
  background: rgba(10, 18, 32, 0.82);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.22);
}

.gh-nav {
  position: fixed; /* was sticky */
  top: 0;
  left: 0;
  right: 0;
  z-index: 9999;

  background: rgba(10, 18, 32, 0.7);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}
.gh-nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 12px 0;
}
.gh-brand {
  display: flex;
  align-items: center;
  text-decoration: none;
  gap: 10px;
}
.gh-logo {
  height: 34px;
  width: auto;
  display: none;
  filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.18));
}
.gh-logo--light {
  display: block;
}
.gh-nav.is-light .gh-logo--light {
  display: none;
}
.gh-nav.is-light .gh-logo--dark {
  display: block;
}

.gh-nav__links {
  display: flex;
  align-items: center;
  gap: 6px;
}
.gh-link {
  color: rgba(255, 255, 255, 0.86);
  text-decoration: none;
  font-size: 14px;
  padding: 8px 10px;
  border-radius: 999px;
  border: 1px solid transparent;
  transition: background 0.18s var(--easeOut), border-color 0.18s var(--easeOut),
    transform 0.18s var(--easeOut);
}
.gh-link:hover {
  background: rgba(255, 255, 255, 0.06);
  transform: translateY(-1px);
}
.gh-link.is-active {
  background: rgba(239, 111, 83, 0.14);
  border-color: rgba(239, 111, 83, 0.22);
}

.gh-burger {
  display: none;
  width: 42px;
  height: 38px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.06);
}
.gh-burger span {
  display: block;
  height: 2px;
  margin: 6px 10px;
  background: rgba(255, 255, 255, 0.92);
  border-radius: 2px;
}
.gh-nav__mobile {
  display: none;
  padding: 10px 0 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}
.gh-nav__mobile a {
  display: block;
  padding: 12px 6px;
  color: rgba(255, 255, 255, 0.9);
  text-decoration: none;
  border-radius: 12px;
}
.gh-nav__mobile a:hover {
  background: rgba(255, 255, 255, 0.06);
}
.gh-nav.is-open .gh-nav__mobile {
  display: block;
}

/* HERO */
.gh-hero {
  position: relative;
  color: #fff;
  background: radial-gradient(
      1200px 700px at 18% 10%,
      rgba(239, 111, 83, 0.16),
      transparent 55%
    ),
    radial-gradient(
      900px 600px at 85% 18%,
      rgba(40, 90, 131, 0.26),
      transparent 55%
    ),
    linear-gradient(135deg, var(--bg-dark), var(--bg-dark2));
  overflow: hidden;
}

/* Mobile hero spacing fix */
@media (max-width: 768px) {
  .gh-hero {
    padding-left: 20px;
    padding-right: 20px;
  }
  .gh-footer {
    padding-left: 20px;
    padding-right: 20px;
  }
}

.gh-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    900px 500px at var(--mx, 50%) var(--my, 40%),
    rgba(255, 255, 255, 0.07),
    transparent 55%
  );
  pointer-events: none;
  transition: opacity 0.25s var(--easeOut);
  opacity: 0.85;
}
.gh-hero__bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.gh-grid {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0.7;
}

.gh-orb {
  position: absolute;
  width: 560px;
  height: 560px;
  border-radius: 999px;
  filter: blur(34px);
  opacity: 0.55;
  transform: translate3d(0, 0, 0);
  will-change: transform;
}
.gh-orb--a {
  left: -220px;
  top: -260px;
  background: rgba(239, 111, 83, 0.22);
}
.gh-orb--b {
  right: -260px;
  top: -190px;
  background: rgba(40, 90, 131, 0.26);
}
.gh-orb--c {
  right: -170px;
  bottom: -280px;
  background: rgba(125, 100, 115, 0.18);
}

.gh-hero__inner {
  position: relative;
  padding: 64px 0 4px;
  display: grid;
  grid-template-columns: 1.12fr 0.88fr;
  gap: 22px;
  align-items: start;
}

.gh-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 12px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.06);
  border-radius: 999px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.9);
  position: relative;
  overflow: hidden;
}
.gh-kicker__spark {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--brand-blue));
  box-shadow: 0 0 0 6px rgba(239, 111, 83, 0.12);
  flex: 0 0 auto;
}
.gh-kicker::after {
  content: "";
  position: absolute;
  inset: -40px -120px auto auto;
  width: 220px;
  height: 140px;
  transform: rotate(18deg);
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.1),
    transparent
  );
  animation: ghShimmer 4.8s var(--easeSoft) infinite;
  opacity: 0.65;
}

@keyframes ghShimmer {
  0% {
    transform: translateX(-120px) rotate(18deg);
  }
  50% {
    transform: translateX(140px) rotate(18deg);
  }
  100% {
    transform: translateX(-120px) rotate(18deg);
  }
}

.gh-hero__lede {
  margin: 0 0 10px;
  color: rgba(255, 255, 255, 0.88);
  max-width: 72ch;
}
.gh-hero__cta {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin: 65px 0 14px;
}

.gh-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 10px;
}
.gh-chips span {
  font-size: 12px;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(239, 111, 83, 0.1);
  border: 1px solid rgba(239, 111, 83, 0.2);
  color: rgba(255, 255, 255, 0.86);
}
.gh-chips span:hover {
  transform: translateY(-1px);
  background: rgba(255, 255, 255, 0.07);
}

/* Credibility chips (premium stagger) */
.gh-credChips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 14px 0 6px;
}
.gh-credChips span {
  font-size: 12px;
  padding: 8px 10px;
  border-radius: 999px;
  background: rgba(40, 90, 131, 0.16);
  border: 1px solid rgba(40, 90, 131, 0.26);
  color: rgba(255, 255, 255, 0.92);
  transition: transform 0.18s var(--easeOut), background 0.18s var(--easeOut),
    border-color 0.18s var(--easeOut);
  opacity: 0;
  transform: translateY(8px);
}
.gh-reveal.is-in .gh-credChips span {
  opacity: 1;
  transform: translateY(0);
}
.gh-reveal.is-in .gh-credChips span:nth-child(1) {
  transition-delay: 0.1s;
}
.gh-reveal.is-in .gh-credChips span:nth-child(2) {
  transition-delay: 0.14s;
}
.gh-reveal.is-in .gh-credChips span:nth-child(3) {
  transition-delay: 0.18s;
}
.gh-reveal.is-in .gh-credChips span:nth-child(4) {
  transition-delay: 0.22s;
}
.gh-reveal.is-in .gh-credChips span:nth-child(5) {
  transition-delay: 0.26s;
}

.gh-credChips span:hover {
  transform: translateY(-1px);
  background: rgba(239, 111, 83, 0.14);
  border-color: rgba(239, 111, 83, 0.24);
}

/* Stats */
.gh-stats {
  margin-top: 86px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}
.gh-stat {
  padding: 12px 12px;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.05);
  transition: transform 0.18s var(--easeOut), border-color 0.18s var(--easeOut),
    background 0.18s var(--easeOut);
}
.gh-stat:hover {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, 0.07);
  border-color: rgba(255, 255, 255, 0.14);
}
.gh-stat__n {
  font-weight: 800;
  letter-spacing: -0.02em;
  font-size: 35px;
  line-height: 1.1;
}
.gh-stat__n::after {
  content: "%";
  opacity: 0.85;
  margin-left: 2px;
}
.gh-stat__t {
  color: rgba(255, 255, 255, 0.72);
  font-size: 12px;
  font-weight: 750;
  margin-top: 6px;
}
.gh-stat__note {
  grid-column: 1 / -1;
  color: rgba(255, 255, 255, 0.6);
  font-size: 12px;
  margin-top: 0px;
}

/* Glass */
.gh-glass {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius2);
  padding: 18px;
  box-shadow: var(--shadow2);
  position: relative;
  overflow: hidden;
}
.gh-glass::before {
  content: "";
  position: absolute;
  inset: -2px;
  border-radius: inherit;
  background: linear-gradient(
    135deg,
    rgba(239, 111, 83, 0.28),
    rgba(40, 90, 131, 0.28),
    transparent 70%
  );
  opacity: 0.18;
  pointer-events: none;
}
.gh-glass--lift {
  transition: transform 0.22s var(--easeOut), box-shadow 0.22s var(--easeOut);
}
.gh-glass--lift:hover {
  transform: translateY(-2px);
  box-shadow: 0 22px 86px rgba(10, 18, 32, 0.28);
}

.gh-glass__title {
  font-weight: 800;
  letter-spacing: -0.01em;
  font-size: 25px;
}
.gh-glass__desc {
  margin-top: 6px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 13px;
  margin-bottom: 20px;
}

.gh-triad {
  margin-top: 14px;
  display: grid;
  gap: 10px;
}
.gh-triad__item {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding: 12px;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.05);
  background: linear-gradient(
    90deg,
    var(--brand-mauve),
    var(--brand-blue),
    transparent 99.9%
  );

  transition: transform 0.18s var(--easeOut), background 0.18s var(--easeOut),
    border-color 0.18s var(--easeOut);
  will-change: transform;
}
.gh-triad__item:hover {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, 0.07);
  border-color: rgba(255, 255, 255, 0.14);
}
.gh-ic {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  background: rgba(239, 111, 83, 0.12);
  border: 1px solid rgba(239, 111, 83, 0.18);
  color: rgba(255, 255, 255, 0.92);
  flex: 0 0 auto;
}
.gh-ic svg {
  width: 20px;
  height: 20px;
  color: currentColor;
}
.gh-triad__h {
  font-weight: 800;
  letter-spacing: -0.01em;
}
.gh-triad__p {
  color: rgba(255, 255, 255, 0.72);
  font-size: 13px;
  margin-top: 2px;
}

.gh-miniBadges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 20px;
  padding-bottom: 5px;
}
.gh-miniBadges span {
  font-size: 12px;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(239, 111, 83, 0.1);
  border: 1px solid rgba(239, 111, 83, 0.2);
  color: rgba(255, 255, 255, 0.86);
}

.gh-heroCard {
  margin-bottom: 10px;
  margin-left: 122px;
  margin-right: 122px;
  padding: 16px;
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.05);
  position: relative;
  overflow: hidden;
  transition: transform 0.18s var(--easeOut), box-shadow 0.18s var(--easeOut),
    border-color 0.18s var(--easeOut);
}
.gh-heroCard:hover {
  transform: translateY(-2px);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.28);
  border-color: rgba(255, 255, 255, 0.14);
}
.gh-heroCard__h {
  font-weight: 800;
  letter-spacing: -0.01em;
}
.gh-heroCard__p {
  color: rgba(255, 255, 255, 0.74);
  font-size: 13px;
  margin-top: 6px;
}
.gh-heroCard__link {
  display: inline-block;
  margin-top: 10px;
  color: rgba(255, 255, 255, 0.9);
  text-decoration: none;
  font-weight: 600;
}
.gh-heroCard__link:hover {
  text-decoration: underline;
}
.gh-heroCard::after {
  content: "";
  position: absolute;
  inset: -60px -240px auto auto;
  width: 260px;
  height: 160px;
  transform: rotate(18deg);
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.12),
    transparent
  );
  animation: ghShimmer 6.8s var(--easeSoft) infinite;
  opacity: 0.6;
}

/* Sections */
.gh-section {
  padding: 50px 0;
  position: relative;
}
.gh-section--light {
  background: var(--surface2);
}
.gh-section--white {
  background: var(--surface);
}
.gh-section--dark {
  background: radial-gradient(
      900px 420px at 10% 10%,
      rgba(239, 111, 83, 0.14),
      transparent 55%
    ),
    radial-gradient(
      900px 420px at 90% 40%,
      rgba(40, 90, 131, 0.18),
      transparent 60%
    ),
    #0f172a;
  color: #fff;
}

.gh-head {
  margin-bottom: 22px;
}

/* Lists */
.gh-list {
  margin: 0;
  padding-left: 18px;
}
.gh-list li {
  margin: 7px 0;
  color: #223244;
}
.gh-section--dark .gh-list li {
  color: rgba(255, 255, 255, 0.8);
}
.gh-list--compact li {
  margin: 6px 0;
}

/* Premium cards (shared) */
.gh-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 16px;
  box-shadow: 0 10px 26px rgba(10, 18, 32, 0.06);
  transition: transform 0.18s var(--easeOut), box-shadow 0.18s var(--easeOut),
    border-color 0.18s var(--easeOut);
  will-change: transform;
  position: relative;
  overflow: hidden;
}
.gh-card::before {
  content: "";
  position: absolute;
  inset: -2px;
  border-radius: inherit;
  background: linear-gradient(
    135deg,
    rgba(239, 111, 83, 0.18),
    rgba(40, 90, 131, 0.18),
    transparent 70%
  );
  opacity: 0;
  transition: opacity 0.18s var(--easeOut);
  pointer-events: none;
}
.gh-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 50px rgba(10, 18, 32, 0.1);
  border-color: rgba(40, 90, 131, 0.18);
}
.gh-card:hover::before {
  opacity: 0.9;
}

/* Decision grid */
.gh-decisionGrid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}
.gh-decisionCard {
  composes: gh-card;
}
.gh-decisionCard {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 16px;
  box-shadow: 0 10px 26px rgba(10, 18, 32, 0.06);
  transition: transform 0.18s var(--easeOut), box-shadow 0.18s var(--easeOut),
    border-color 0.18s var(--easeOut);
  position: relative;
  overflow: hidden;
}
.gh-decisionCard::before {
  content: "";
  position: absolute;
  inset: -2px;
  border-radius: inherit;
  background: linear-gradient(
    135deg,
    rgba(239, 111, 83, 0.18),
    rgba(40, 90, 131, 0.18),
    transparent 70%
  );
  opacity: 0;
  transition: opacity 0.18s var(--easeOut);
  pointer-events: none;
}
.gh-decisionCard:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 48px rgba(10, 18, 32, 0.1);
  border-color: rgba(40, 90, 131, 0.2);
}
.gh-decisionCard:hover::before {
  opacity: 0.85;
}
.gh-decisionCard__h {
  font-weight: 800;
  letter-spacing: -0.01em;
  position: relative;
  z-index: 1;
}
.gh-decisionCard__p {
  margin-top: 6px;
  color: var(--muted);
  font-size: 13px;
  position: relative;
  z-index: 1;
}
.gh-decisionCard--spark {
  border-color: rgba(239, 111, 83, 0.18);
  background: linear-gradient(
    135deg,
    rgba(239, 111, 83, 0.07),
    rgba(40, 90, 131, 0.06)
  );
}
.gh-decisionGrid--twoCol {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
@media (max-width: 980px) {
  .gh-decisionGrid--twoCol {
    grid-template-columns: 1fr;
  }
}

/* Risk grid with icons */
.gh-riskGrid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}
.gh-riskCard {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 16px;
  box-shadow: 0 10px 26px rgba(10, 18, 32, 0.06);
  transition: transform 0.18s var(--easeOut), box-shadow 0.18s var(--easeOut),
    border-color 0.18s var(--easeOut);
  position: relative;
  overflow: hidden;
  will-change: transform;
}
.gh-riskCard::before {
  content: "";
  position: absolute;
  inset: -2px;
  border-radius: inherit;
  background: linear-gradient(
    135deg,
    rgba(239, 111, 83, 0.18),
    rgba(40, 90, 131, 0.18),
    transparent 70%
  );
  opacity: 0;
  transition: opacity 0.18s var(--easeOut);
  pointer-events: none;
}
.gh-riskCard:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 46px rgba(10, 18, 32, 0.1);
  border-color: rgba(40, 90, 131, 0.18);
}
.gh-riskCard:hover::before {
  opacity: 0.8;
}

.gh-riskCard__top {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 8px;
  position: relative;
  z-index: 1;
}
.gh-riskIcon {
  width: 34px;
  height: 34px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(40, 90, 131, 0.1);
  border: 1px solid rgba(40, 90, 131, 0.18);
  color: #0f2f63;
}
.gh-riskIcon svg {
  width: 30px;
  height: 30px;
  color: var(--brand-orange);
}
.gh-riskCard__h {
  font-weight: 800;
  letter-spacing: -0.01em;
}

/* Slab */
.gh-slab {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  border-radius: 24px;
  padding: 16px;
  margin-top: 16px;
  background: var(--surface2);
  border: 1px solid var(--line);
}
.gh-quote {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 16px;
  box-shadow: 0 10px 26px rgba(10, 18, 32, 0.06);
  position: relative;
  overflow: hidden;
}
.gh-quote::before {
  content: "";
  position: absolute;
  inset: -2px;
  border-radius: inherit;
  background: linear-gradient(
    135deg,
    rgba(239, 111, 83, 0.16),
    rgba(40, 90, 131, 0.16),
    transparent 70%
  );
  opacity: 0.55;
  pointer-events: none;
}
.gh-quote__mark {
  font-size: 38px;
  line-height: 1;
  color: rgba(239, 111, 83, 0.26);
  position: relative;
  z-index: 1;
}
.gh-quote__text {
  margin-top: 4px;
  color: #1a2a3b;
  font-weight: 850;
  letter-spacing: -0.01em;
  position: relative;
  z-index: 1;
}
.gh-quote__by {
  margin-top: 8px;
  color: var(--muted);
  font-size: 13px;
  position: relative;
  z-index: 1;
}

.gh-pillRow {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 12px;
}
.gh-pill {
  padding: 8px 10px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.92);
  font-size: 12px;
  color: #1b2a3a;
  transition: transform 0.18s var(--easeOut);
}
.gh-pill:hover {
  transform: translateY(-1px);
}

/* Capabilities */
.gh-capGrid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}
.gh-capCard {
  background: #fff;
  background: linear-gradient(
    135deg,
    rgba(239, 111, 83, 0.18),
    rgba(40, 90, 131, 0.18),
    transparent 70%
  );
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 16px;
  box-shadow: 0 10px 26px rgba(10, 18, 32, 0.06);
  transition: transform 0.18s var(--easeOut), box-shadow 0.18s var(--easeOut),
    border-color 0.18s var(--easeOut);
  position: relative;
  overflow: hidden;
  will-change: transform;
}
.gh-capCard::before {
  content: "";
  position: absolute;
  inset: -2px;
  border-radius: inherit;
  background: linear-gradient(
    135deg,
    rgba(239, 111, 83, 0.18),
    rgba(40, 90, 131, 0.18),
    transparent 70%
  );
  opacity: 0;
  transition: opacity 0.18s var(--easeOut);
  pointer-events: none;
}
.gh-capCard:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 50px rgba(10, 18, 32, 0.1);
  border-color: rgba(40, 90, 131, 0.18);
}
.gh-capCard:hover::before {
  opacity: 0.85;
}
.gh-capCard__top {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  position: relative;
  z-index: 1;
}
.gh-badge {
  width: 30px;
  height: 30px;
  border-radius: 999px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  background: rgba(40, 90, 131, 0.1);
  border: 1px solid rgba(40, 90, 131, 0.18);
  color: #0f2f63;
  flex: 0 0 auto;
}
.gh-capCard__title {
  margin: 0;
  font-size: 18px;
  letter-spacing: -0.01em;
  font-weight: 800;
}
.gh-capCard__sub {
  margin-top: 2px;
  font-size: 12px;
  color: var(--muted);
}
.gh-capCard__desc {
  margin: 10px 0 10px;
  color: var(--muted);
  position: relative;
  z-index: 1;
}
.gh-capCard__foot {
  margin-top: 10px;
  color: var(--muted);
  padding-top: 10px;
  border-top: 1px solid rgba(10, 18, 32, 0.08);
  position: relative;
  z-index: 1;
}

/* How it works – premium connector + pulse */
.gh-flow {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  position: relative;
}
.gh-flow::before {
  content: "";
  position: absolute;
  left: 24px;
  right: 24px;
  top: 26px;
  height: 2px;
  background: linear-gradient(
    90deg,
    rgba(40, 90, 131, 0.18),
    rgba(239, 111, 83, 0.22),
    rgba(40, 90, 131, 0.18)
  );
  border-radius: 999px;
  opacity: 0.65;
}
.gh-flow::after {
  content: "";
  position: absolute;
  left: 24px;
  top: 26px;
  width: 90px;
  height: 2px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0),
    rgba(255, 255, 255, 0)
  );
  border-radius: 999px;
  opacity: 0.9;
  animation: ghPulseLine 3.2s linear infinite;
}
@keyframes ghPulseLine {
  0% {
    transform: translateX(0);
    opacity: 0;
  }
  8% {
    opacity: 0.9;
  }
  50% {
    opacity: 0.9;
  }
  100% {
    transform: translateX(calc(100% - 90px));
    opacity: 0;
  }
}

.gh-flow__item {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 16px;
  box-shadow: 0 10px 26px rgba(10, 18, 32, 0.06);
  transition: transform 0.18s var(--easeOut), box-shadow 0.18s var(--easeOut),
    border-color 0.18s var(--easeOut);
  position: relative;
  overflow: hidden;
  will-change: transform;
}
.gh-flow__item::before {
  content: "";
  position: absolute;
  inset: -2px;
  border-radius: inherit;
  background: linear-gradient(
    135deg,
    rgba(239, 111, 83, 0.18),
    rgba(40, 90, 131, 0.18),
    transparent 70%
  );
  opacity: 0;
  transition: opacity 0.18s var(--easeOut);
  pointer-events: none;
}
.gh-flow__item:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 48px rgba(10, 18, 32, 0.1);
  border-color: rgba(40, 90, 131, 0.18);
}
.gh-flow__item:hover::before {
  opacity: 0.85;
}

.gh-flow__num {
  width: 32px;
  height: 32px;
  border-radius: 999px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  background: rgba(239, 111, 83, 0.12);
  border: 1px solid rgba(239, 111, 83, 0.22);
  color: #7a2c22;
  position: relative;
  z-index: 1;
}
.gh-flow__h {
  margin-top: 10px;
  font-weight: 800;
  letter-spacing: -0.01em;
  position: relative;
  z-index: 1;
}
.gh-flow__p {
  margin-top: 6px;
  color: var(--muted);
  font-size: 13px;
  position: relative;
  z-index: 1;
}

.gh-inlineCta {
  margin-top: 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
  border-radius: 20px;
  padding: 14px;
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: 0 10px 26px rgba(10, 18, 32, 0.06);
}
.gh-inlineCta__t {
  font-size: 18px;
  font-weight: 900;
  letter-spacing: -0.01em;
}

/* Experience */
.gh-xpGrid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-bottom: 14px;
}
.gh-xpCard {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 16px;
  box-shadow: 0 10px 26px rgba(10, 18, 32, 0.06);
  transition: transform 0.18s var(--easeOut), box-shadow 0.18s var(--easeOut),
    border-color 0.18s var(--easeOut);
  position: relative;
  overflow: hidden;
  will-change: transform;
}
.gh-xpCard::before {
  content: "";
  position: absolute;
  inset: -2px;
  border-radius: inherit;
  background: linear-gradient(
    135deg,
    rgba(239, 111, 83, 0.16),
    rgba(40, 90, 131, 0.16),
    transparent 70%
  );
  opacity: 0;
  transition: opacity 0.18s var(--easeOut);
  pointer-events: none;
}
.gh-xpCard:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 48px rgba(10, 18, 32, 0.1);
  border-color: rgba(40, 90, 131, 0.18);
}
.gh-xpCard:hover::before {
  opacity: 0.9;
}
.gh-xpCard__h {
  font-weight: 800;
  letter-spacing: -0.01em;
  position: relative;
  z-index: 1;
}
.gh-xpCard__p {
  margin-top: 6px;
  color: var(--muted);
  font-size: 13px;
  position: relative;
  z-index: 1;
  padding-bottom: 15px;
}

.gh-screenGrid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}
.gh-screenCard {
  margin: 0;
  background: #fff;
  border: 1px solid rgba(40, 90, 131, 0.14);
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 10px 26px rgba(10, 18, 32, 0.06);
  transition: transform 0.18s var(--easeOut), box-shadow 0.18s var(--easeOut);
  transform-style: preserve-3d;
  will-change: transform;
}
.gh-screenCard:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 52px rgba(10, 18, 32, 0.12);
}
.gh-screenCard__tag {
  padding: 10px 12px;
  font-weight: 900;
  letter-spacing: -0.01em;
  background: linear-gradient(
    90deg,
    rgba(40, 90, 131, 0.1),
    rgba(239, 111, 83, 0.08)
  );
  border-bottom: 1px solid rgba(10, 18, 32, 0.06);
}
.gh-screenImg {
  width: 100%;
  height: 300px;
  object-fit: cover;
  display: block;
  background: #f2f4f7;
  opacity: 0.7;
}
/* =====================================================
   GH CALLOUT — Executive Question Block
   ===================================================== */

.gh-callout {
  margin-top: 40px;
  padding: 28px 32px;
  border-radius: 16px;
  background: linear-gradient(180deg, #f7f9fc 0%, #eef2f7 100%);
  border: 1px solid #dde3ea;
  box-shadow: 0 8px 24px rgba(16, 24, 40, 0.05);
  max-width: 1133px;
}

.gh-callout__h {
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #6b7280;
  margin-bottom: 10px;
}

.gh-callout__p {
  font-size: 18px;
  line-height: 1.5;
  font-weight: 900;
  color: #111827;
}
/* =====================================================
   GH NOTE COMPONENT
   ===================================================== */

.gh-note {
  margin-top: 32px;
  padding: 18px 22px;
  border-radius: 12px;
  font-size: 15px;
  line-height: 1.6;
  background: #f4f6f9;
  color: #2a2f36;
  border: 1px solid #e2e6ea;
}

/* Spark variant — slightly elevated emphasis */
.gh-note--spark {
  position: relative;
  background: linear-gradient(180deg, #f8fafc 0%, #eef2f6 100%);
  border: 1px solid #d9e0e7;
  box-shadow: 0 4px 12px rgba(10, 25, 47, 0.04);
}

/* Optional subtle left accent line */
.gh-note--spark::before {
  content: "";
  position: absolute;
  left: 0;
  top: 16px;
  bottom: 16px;
  width: 4px;
  border-radius: 4px;
  background: linear-gradient(180deg, #1f3c88 0%, #3c6fd1 100%);
}

/* Deploy / Engage / Trust / Interop / Security / IP / Proof / About */
.gh-deployGrid,
.gh-engageGrid,
.gh-proofGrid,
.gh-ipGrid,
.gh-aboutGrid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}
.gh-deployCard,
.gh-engageCard,
.gh-proofCard,
.gh-ipCard,
.gh-aboutCard {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 16px;
  box-shadow: 0 10px 26px rgba(10, 18, 32, 0.06);
  transition: transform 0.18s var(--easeOut), box-shadow 0.18s var(--easeOut),
    border-color 0.18s var(--easeOut);
  position: relative;
  overflow: hidden;
  will-change: transform;
}
.gh-deployCard::before,
.gh-engageCard::before,
.gh-proofCard::before,
.gh-ipCard::before,
.gh-aboutCard::before {
  content: "";
  position: absolute;
  inset: -2px;
  border-radius: inherit;
  background: linear-gradient(
    135deg,
    rgba(239, 111, 83, 0.16),
    rgba(40, 90, 131, 0.16),
    transparent 70%
  );
  opacity: 0;
  transition: opacity 0.18s var(--easeOut);
  pointer-events: none;
}
.gh-deployCard:hover,
.gh-engageCard:hover,
.gh-proofCard:hover,
.gh-ipCard:hover,
.gh-aboutCard:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 50px rgba(10, 18, 32, 0.1);
  border-color: rgba(40, 90, 131, 0.18);
}
.gh-deployCard:hover::before,
.gh-engageCard:hover::before,
.gh-proofCard:hover::before,
.gh-ipCard:hover::before,
.gh-aboutCard:hover::before {
  opacity: 0.9;
}
.gh-deployCard--spark,
.gh-engageCard--spark,
.gh-proofCard--spark,
.gh-aboutCard--spark {
  border-color: rgba(239, 111, 83, 0.2);
  background: linear-gradient(
    135deg,
    rgba(239, 111, 83, 0.08),
    rgba(40, 90, 131, 0.06)
  );
}
.gh-deployCard__h,
.gh-engageCard__h,
.gh-proofCard__h,
.gh-ipCard__h,
.gh-aboutCard__h {
  font-weight: 800;
  letter-spacing: -0.01em;
  position: relative;
  z-index: 1;
}
.gh-deployCard__p,
.gh-proofCard__p,
.gh-ipCard__p {
  margin-top: 6px;
  color: var(--muted);
  font-size: 13px;
  position: relative;
  z-index: 1;
}
.gh-deployCard__k,
.gh-proofCard__mini {
  margin-top: 10px;
  font-size: 12px;
  font-weight: 900;
  color: var(--brand-slate);
  position: relative;
  z-index: 1;
}

.gh-engageCard__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  position: relative;
  z-index: 1;
}
.gh-engageCard__foot {
  margin-top: 10px;
  font-size: 12px;
  font-weight: 900;
  color: var(--brand-slate);
  padding-top: 10px;
  border-top: 1px solid rgba(10, 18, 32, 0.08);
  position: relative;
  z-index: 1;
}
.gh-tag {
  font-size: 12px;
  font-weight: 800;
  padding: 6px 10px;
  border-radius: 999px;
  border: 1px solid rgba(40, 90, 131, 0.18);
  background: rgba(40, 90, 131, 0.08);
  color: #0f2f63;
  position: relative;
  z-index: 1;
}
.gh-tag--hot {
  border-color: rgba(239, 111, 83, 0.22);
  background: rgba(239, 111, 83, 0.12);
  color: #7a2c22;
}

/* Trust (dark) */
.gh-govGrid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}
.gh-govCard {
  border-radius: 20px;
  padding: 16px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: transform 0.18s var(--easeOut), background 0.18s var(--easeOut),
    border-color 0.18s var(--easeOut);
  position: relative;
  overflow: hidden;
}
.gh-govCard::before {
  content: "";
  position: absolute;
  inset: -2px;
  border-radius: inherit;
  background: linear-gradient(
    135deg,
    rgba(239, 111, 83, 0.28),
    rgba(40, 90, 131, 0.26),
    transparent 70%
  );
  opacity: 0.1;
  pointer-events: none;
}
.gh-govCard:hover {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.14);
}
.gh-govCard__h {
  font-weight: 800;
  letter-spacing: -0.01em;
}
.gh-govCard__p {
  margin-top: 6px;
  color: rgba(255, 255, 255, 0.74);
  font-size: 13px;
}
.gh-darkNote {
  margin-top: 12px;
  padding: 12px 14px;
  border-radius: 18px;
  border: 1px dashed rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.05);
  color: rgba(255, 255, 255, 0.74);
}

/* Interop + Security */
.gh-interopGrid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.gh-interopCard {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 16px;
  box-shadow: 0 10px 26px rgba(10, 18, 32, 0.06);
  position: relative;
  overflow: hidden;
}
.gh-interopCard--spark {
  border-color: rgba(239, 111, 83, 0.18);
  background: linear-gradient(
    135deg,
    rgba(239, 111, 83, 0.08),
    rgba(40, 90, 131, 0.06)
  );
}
.gh-interopCard__h {
  font-weight: 800;
  letter-spacing: -0.01em;
}
.gh-miniLine {
  margin-top: 10px;
  font-size: 12px;
  color: var(--brand-slate);
  font-weight: 800;
}

.gh-secGrid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}
.gh-secCard {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 16px;
  box-shadow: 0 10px 26px rgba(10, 18, 32, 0.06);
  transition: transform 0.18s var(--easeOut), box-shadow 0.18s var(--easeOut);
}
.gh-secCard:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 50px rgba(10, 18, 32, 0.1);
}
.gh-secCard__h {
  font-weight: 800;
  letter-spacing: -0.01em;
}
.gh-secCard__p {
  margin-top: 6px;
  color: var(--muted);
  font-size: 13px;
}

.gh-quoteMini {
  margin-top: 10px;
  padding: 12px 12px;
  border-radius: 18px;
  border: 1px dashed rgba(10, 18, 32, 0.14);
  background: rgba(255, 255, 255, 0.86);
  color: #213244;
  font-weight: 700;
  font-size: 13px;
}

/* Marquee (Recognition ticker) */
.gh-marquee {
  margin-top: 14px;
  border-radius: 20px;
  border: 1px solid rgba(10, 18, 32, 0.1);
  background: #fff;
  overflow: hidden;
  box-shadow: 0 10px 26px rgba(10, 18, 32, 0.06);
}
.gh-marquee__track {
  overflow: hidden;
}
.gh-marquee__row {
  display: flex;
  gap: 18px;
  padding: 12px 14px;
  white-space: nowrap;
  animation: ghMarquee 22s linear infinite;
}
.gh-marquee__row span {
  font-size: 12px;
  font-weight: 900;
  color: #223244;
  padding: 8px 10px;
  border-radius: 999px;
  border: 1px solid rgba(40, 90, 131, 0.14);
  background: linear-gradient(
    90deg,
    rgba(40, 90, 131, 0.07),
    rgba(239, 111, 83, 0.05)
  );
}
@keyframes ghMarquee {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* FAQ – smooth open */
.gh-faq {
  border: 1px solid rgba(10, 18, 32, 0.1);
  border-radius: 22px;
  background: #fff;
  overflow: hidden;
  box-shadow: 0 10px 26px rgba(10, 18, 32, 0.06);
}
.gh-faq__q {
  width: 100%;
  text-align: left;
  padding: 16px 16px;
  background: #fff;
  border: 0;
  border-bottom: 1px solid rgba(10, 18, 32, 0.08);
  font-weight: 900;
  letter-spacing: -0.01em;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  cursor: pointer;
  transition: background 0.15s var(--easeOut);
}
.gh-faq__q:hover {
  background: rgba(246, 248, 251, 0.95);
}
.gh-faq__a {
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  padding: 0 16px 0 16px;
  transition: max-height 0.28s ease, opacity 0.22s ease, padding 0.22s ease;
}

.gh-faq__a.is-open {
  max-height: 220px;
  opacity: 1;
  padding: 0 16px 16px 16px;
}
.gh-faq__a[hidden] {
  display: none !important;
}
.gh-faq__icon {
  width: 18px;
  height: 18px;
  border-radius: 6px;
  border: 1px solid rgba(239, 111, 83, 0.22);
  background: rgba(239, 111, 83, 0.1);
  position: relative;
  flex: 0 0 auto;
}
.gh-faq__icon::before,
.gh-faq__icon::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 10px;
  height: 2px;
  background: rgba(10, 18, 32, 0.64);
  transform: translate(-50%, -50%);
  border-radius: 2px;
}
.gh-faq__icon::after {
  width: 2px;
  height: 10px;
  transition: opacity 0.18s var(--easeOut);
}
.gh-faq__q[aria-expanded="true"] .gh-faq__icon::after {
  opacity: 0;
}

/* CTA + Form */
.gh-cta {
  background: radial-gradient(
      700px 360px at 15% 25%,
      rgba(239, 111, 83, 0.18),
      transparent 55%
    ),
    radial-gradient(
      700px 360px at 85% 50%,
      rgba(40, 90, 131, 0.24),
      transparent 60%
    ),
    linear-gradient(135deg, #091225, #0d2b45);
  color: #fff;
  padding: 66px 0;
  position: relative;
  overflow: hidden;
}
.gh-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    900px 520px at var(--mx, 50%) var(--my, 50%),
    rgba(255, 255, 255, 0.07),
    transparent 55%
  );
  pointer-events: none;
  opacity: 0.85;
}
.gh-cta__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  align-items: start;
  position: relative;
  z-index: 1;
}
.gh-cta__mini {
  margin-top: 12px;
  color: rgba(255, 255, 255, 0.78);
  font-weight: 800;
}
.gh-cta__actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 14px;
}
.gh-cta__note {
  margin-top: 14px;
  color: rgba(255, 255, 255, 0.62);
  font-size: 13px;
}

.gh-formWrap {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 24px;
  padding: 16px;
  box-shadow: var(--shadow2);
}
.gh-form {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 16px;
}
.gh-form__title {
  font-weight: 800;
  letter-spacing: -0.01em;
  margin-bottom: 10px;
}
.gh-form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.gh-field {
  margin-top: 10px;
}
.gh-field label {
  display: block;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.78);
  margin-bottom: 6px;
  font-weight: 850;
}
.gh-field input,
.gh-field select,
.gh-field textarea {
  width: 100%;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(10, 18, 32, 0.22);
  color: #fff;
  padding: 10px 12px;
  outline: none;
  transition: box-shadow 0.18s var(--easeOut), border-color 0.18s var(--easeOut);
}
.gh-field input::placeholder,
.gh-field textarea::placeholder {
  color: rgba(255, 255, 255, 0.5);
}
.gh-field input:focus,
.gh-field select:focus,
.gh-field textarea:focus {
  border-color: rgba(239, 111, 83, 0.4);
  box-shadow: 0 0 0 6px rgba(239, 111, 83, 0.12);
}
.gh-field.is-invalid input,
.gh-field.is-invalid select,
.gh-field.is-invalid textarea {
  border-color: rgba(239, 111, 83, 0.6);
}
.gh-err {
  min-height: 16px;
  margin-top: 4px;
  font-size: 12px;
  color: rgba(239, 111, 83, 0.95);
  font-weight: 800;
}

.gh-form__actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 14px;
}
.gh-form__status {
  margin-top: 12px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.78);
  font-weight: 800;
}
.gh-form__status.ok {
  color: rgba(180, 255, 220, 0.85);
}
.gh-form__status.bad {
  color: rgba(255, 200, 180, 0.92);
}
.gh-form__fineprint {
  margin-top: 10px;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.58);
}

/* Footer */
.gh-footer {
  background: #070c16;
  color: rgba(255, 255, 255, 0.74);
}
.gh-footer__inner {
  padding: 44px 0;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 22px;
}
.gh-footer__logo {
  height: 32px;
  width: auto;
  display: block;
}
.gh-footer__text {
  margin-top: 10px;
  font-size: 13px;
  max-width: 60ch;
}
.gh-footer__mini {
  margin-top: 12px;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.55);
}
.gh-footer__cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.gh-footer__h {
  font-weight: 800;
  color: #fff;
  margin-bottom: 8px;
}
.gh-footer__cols a {
  display: block;
  color: rgba(255, 255, 255, 0.72);
  text-decoration: none;
  padding: 6px 0;
  font-size: 13px;
}
.gh-footer__cols a:hover {
  color: #fff;
}
.gh-footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  padding: 14px 0;
}
.gh-footer__bottomInner {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
  font-size: 12px;
}
.gh-footer__small {
  color: rgba(255, 255, 255, 0.55);
}
.gh-footer a {
  color: rgba(255, 255, 255, 0.85);
}

.gh-footer a:hover {
  color: #fff;
}

/* Reveal animations + stagger */
.gh-reveal {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 0.75s var(--easeOut), transform 0.75s var(--easeOut);
}
.gh-reveal.is-in {
  opacity: 1;
  transform: translateY(0);
}

[data-stagger] > * {
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.55s var(--easeOut), transform 0.55s var(--easeOut);
}
.gh-reveal.is-in [data-stagger] > * {
  opacity: 1;
  transform: translateY(0);
}
.gh-reveal.is-in [data-stagger] > *:nth-child(1) {
  transition-delay: 0.06s;
}
.gh-reveal.is-in [data-stagger] > *:nth-child(2) {
  transition-delay: 0.1s;
}
.gh-reveal.is-in [data-stagger] > *:nth-child(3) {
  transition-delay: 0.14s;
}
.gh-reveal.is-in [data-stagger] > *:nth-child(4) {
  transition-delay: 0.18s;
}
.gh-reveal.is-in [data-stagger] > *:nth-child(5) {
  transition-delay: 0.22s;
}
.gh-reveal.is-in [data-stagger] > *:nth-child(6) {
  transition-delay: 0.26s;
}

/* Floating WA */
.gh-waFloat {
  position: fixed;
  right: 18px;
  bottom: 18px;
  width: 54px;
  height: 54px;
  border-radius: 999px;
  border: 1px solid rgba(239, 111, 83, 0.22);
  background: linear-gradient(135deg, var(--brand-blue));
  color: #fff;
  font-weight: 800;
  letter-spacing: -0.02em;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.22);
  cursor: pointer;
  transition: transform 0.18s var(--easeOut), filter 0.18s var(--easeOut);
  animation: ghWABreathe 9s var(--easeSoft) infinite;
}
@keyframes ghWABreathe {
  0%,
  90%,
  100% {
    transform: translateY(0);
  }
  92% {
    transform: translateY(-3px);
  }
  95% {
    transform: translateY(0);
  }
  98% {
    transform: translateY(-2px);
  }
}
.gh-waFloat:hover {
  filter: brightness(1.06);
  transform: translateY(-2px);
  animation: none;
}

/* Responsive */
@media (max-width: 1100px) {
  .gh-hero__inner {
    grid-template-columns: 1fr;
  }
  .gh-riskGrid {
    grid-template-columns: 1fr;
  }
  .gh-decisionGrid {
    grid-template-columns: 1fr;
  }
  .gh-capGrid {
    grid-template-columns: 1fr;
  }
  .gh-flow {
    grid-template-columns: 1fr 1fr;
  }
  .gh-xpGrid {
    grid-template-columns: 1fr;
  }
  .gh-screenGrid {
    grid-template-columns: 1fr;
  }
  .gh-deployGrid,
  .gh-engageGrid,
  .gh-proofGrid,
  .gh-ipGrid,
  .gh-aboutGrid {
    grid-template-columns: 1fr;
  }
  .gh-govGrid {
    grid-template-columns: 1fr 1fr;
  }
  .gh-interopGrid {
    grid-template-columns: 1fr;
  }
  .gh-secGrid {
    grid-template-columns: 1fr 1fr;
  }
  .gh-cta__inner {
    grid-template-columns: 1fr;
  }
  .gh-stats {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 900px) {
  .gh-slab {
    grid-template-columns: 1fr;
  }
  .gh-form__row {
    grid-template-columns: 1fr;
  }
  .gh-footer__inner {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 820px) {
  .gh-nav__links {
    display: none;
  }
  .gh-burger {
    display: inline-block;
  }
}
@media (max-width: 768px) {
  .gh-nav {
    padding-left: 18px;
    padding-right: 18px;
  }
  .gh-heroCard {
    margin-left: 4px;
    margin-right: 4px;
  }
}
@media (max-width: 540px) {
  .gh-flow {
    grid-template-columns: 1fr;
  }
  .gh-govGrid {
    grid-template-columns: 1fr;
  }
  .gh-secGrid {
    grid-template-columns: 1fr;
  }
}

/* Reduced motion (enterprise friendly) */
@media (prefers-reduced-motion: reduce) {
  * {
    animation: none !important;
    transition: none !important;
    scroll-behavior: auto !important;
  }
}
/* Overline label for premium hierarchy */
.gh-overline {
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(40, 90, 131, 0.72);
  margin-bottom: 10px;
}

/* Make marquee feel supportive, not dominant */
.gh-marquee--subtle {
  margin-top: 10px; /* sits after heading */
  margin-bottom: 18px; /* separates it from cards */
  opacity: 0.92;
}

/* Reduce “pills on top” dominance */
.gh-marquee--subtle .gh-marquee__row span {
  font-weight: 850;
  border-color: rgba(40, 90, 131, 0.12);
  background: linear-gradient(
    90deg,
    rgba(40, 90, 131, 0.05),
    rgba(239, 111, 83, 0.035)
  );
}

/* Optional: edge fade for the ticker so it looks premium */
.gh-marquee--subtle {
  -webkit-mask-image: linear-gradient(
    to right,
    transparent,
    black 10%,
    black 90%,
    transparent
  );
  mask-image: linear-gradient(
    to right,
    transparent,
    black 10%,
    black 90%,
    transparent
  );
}
/* =========================================================
   PREMIUM Recognition & IP Section (₹50L SaaS look)
   Fully isolated under .mg-peds
   Requires Font Awesome for icons (optional)
   ========================================================= */

.mg-recog {
  padding: 70px 0;
  background: #ffffff;
}
.mg-recog-alt {
  background: linear-gradient(180deg, #ffffff, #f7fafc);
  border-top: 1px solid rgba(10, 18, 32, 0.06);
  border-bottom: 1px solid rgba(10, 18, 32, 0.06);
  color: rgba(10, 18, 32, 0.92);
}

.mg-recog-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 26px;
}

.mg-recog-title {
  margin: 0;
  font-size: clamp(22px, 2.4vw, 32px);
  letter-spacing: -0.3px;
  color: rgba(10, 18, 32, 0.94);
}

.mg-recog-sub {
  margin: 10px 0 0 0;
  max-width: 72ch;
  color: rgba(10, 18, 32, 0.66);
  line-height: 1.6;
  font-size: 14.5px;
}

.mg-recog-badges {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.mg-recog-badge {
  padding: 8px 10px;
  border-radius: 999px;
  border: 1px solid rgba(10, 18, 32, 0.1);
  background: rgba(32, 80, 128, 0.04);
  color: rgba(10, 18, 32, 0.74);
  font-size: 12.5px;
  white-space: nowrap;
  margin-bottom: 10px;
}

/* Grid */
.mg-recog-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-bottom: 60px;
}

/* Card */
.mg-recog-card {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 16px;
  border-radius: 18px;
  background: #ffffff;
  border: 1px solid rgba(10, 18, 32, 0.1);
  box-shadow: 0 14px 40px rgba(10, 18, 32, 0.06);
  transition: transform 160ms ease, box-shadow 160ms ease,
    border-color 160ms ease;
  text-decoration: none;
}

.mg-recog-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 50px rgba(10, 18, 32, 0.1);
  border-color: rgba(32, 80, 128, 0.18);
}

/* Top row */
.mg-recog-top {
  display: flex;
  align-items: center;
  gap: 12px;
}

.mg-recog-icon {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(32, 80, 128, 0.08);
  border: 1px solid rgba(32, 80, 128, 0.14);
  flex: 0 0 auto;
}

.mg-recog-icon i {
  font-size: 18px;
  color: #205080;
}

.mg-recog-kicker {
  font-size: 12px;
  color: rgba(10, 18, 32, 0.58);
  letter-spacing: 0.2px;
  text-transform: uppercase;
}

.mg-recog-name {
  margin-top: 2px;
  font-size: 14.5px;
  font-weight: 800;
  color: rgba(10, 18, 32, 0.92);
}

/* Thumbnail window (uniform look) */
.mg-recog-thumb {
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid rgba(10, 18, 32, 0.1);
  background: #f7fafc;
  aspect-ratio: 16 / 10;
  display: flex;
  align-items: center;
  justify-content: center;
}

.mg-recog-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover; /* makes all thumbs consistent */
  object-position: top; /* best for articles */
  display: block;
  filter: saturate(0.95);
}

/* Footer row */
.mg-recog-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-top: 2px;
}

.mg-recog-note {
  font-size: 12.8px;
  color: rgba(10, 18, 32, 0.62);
}

.mg-recog-view {
  font-size: 12.8px;
  color: #205080;
  font-weight: 700;
}

/* Fine print */
.mg-recog-fine {
  margin-top: 14px;
  font-size: 12.5px;
  color: rgba(10, 18, 32, 0.55);
}

/* Responsive */
@media (max-width: 1100px) {
  .mg-recog-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 640px) {
  .mg-recog-grid {
    grid-template-columns: 1fr;
  }
}
.mg-section {
  padding: 44px 0;
  background: #ffffff;
  color: rgba(10, 18, 32, 0.92);
  margin: 100px 50px 20px 50px;
}
/* =========================================================
   Gleeo Health — Homepage Graph Section (fully isolated)
   Scope: .gh-homegraphs (no :root, no global tags)
   ========================================================= */

.gh-homegraphs {
  /* scoped tokens */
  --ghg-bg: var(--surface2);
  --ghg-ink: #0f172a; /* slate-900 */
  --ghg-muted: #475569; /* slate-600 */
  --ghg-border: #e5e7eb; /* gray-200 */
  --ghg-soft: rgba(15, 23, 42, 0.06);
  --ghg-shadow: 0 10px 30px rgba(2, 6, 23, 0.08);
  --ghg-radius: 18px;
  --ghg-radius2: 14px;

  --ghg-max: 1120px;
  --ghg-gap: 18px;
  --ghg-pad: 18px;

  background: var(--ghg-bg);
  color: var(--ghg-ink);
}

.gh-homegraphs__wrap {
  max-width: var(--ghg-max);
  margin: 0 auto;
  padding: 28px 16px;
}

.gh-homegraphs__head {
  margin-bottom: 16px;
}

.gh-homegraphs__title {
  margin: 0 0 8px 0;
  font-size: 24px;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

.gh-homegraphs__sub {
  margin: 0;
  color: var(--ghg-muted);
  font-size: 14.5px;
  line-height: 1.5;
  max-width: 720px;
}

.gh-homegraphs__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--ghg-gap);
}

@media (min-width: 860px) {
  .gh-homegraphs__grid {
    grid-template-columns: 1fr 1fr;
  }
}

.gh-homegraphs__card {
  border: 1px solid var(--ghg-border);
  border-radius: var(--ghg-radius);
  background: #fff;
  box-shadow: var(--ghg-shadow);
  overflow: hidden;
}

.gh-homegraphs__cardhead {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  padding: 16px 16px 10px 16px;
}

.gh-homegraphs__h3 {
  margin: 0 0 4px 0;
  font-size: 16px;
  line-height: 1.25;
  letter-spacing: -0.01em;
  font-weight: 800;
}

.gh-homegraphs__p {
  margin: 0;
  color: var(--ghg-muted);
  font-size: 13px;
  line-height: 1.45;
}

.gh-homegraphs__tag {
  flex: 0 0 auto;
  font-size: 12px;
  color: var(--ghg-muted);
  background: rgba(2, 6, 23, 0.04);
  border: 1px solid rgba(2, 6, 23, 0.08);
  padding: 6px 10px;
  border-radius: 999px;
  white-space: nowrap;
}

.gh-homegraphs__viz {
  position: relative;
  padding: 12px 16px 16px 16px;
}

/* replace your current .gh-homegraphs__img block with this */
.gh-homegraphs__img {
  display: block; /* IMPORTANT: not display:none */
  width: 100%;
  height: 280px;
  object-fit: contain;
  border-radius: var(--ghg-radius2);
  border: 1px solid rgba(2, 6, 23, 0.08);
  background: #fff;

  opacity: 0.7; /* start hidden */
  transition: opacity 180ms ease;
}

.gh-homegraphs__ph {
  height: 280px;
  border-radius: var(--ghg-radius2);
  border: 1px solid rgba(2, 6, 23, 0.08);
  background: radial-gradient(
      1200px 600px at 30% 10%,
      rgba(37, 99, 235, 0.12),
      transparent 60%
    ),
    radial-gradient(
      900px 500px at 80% 40%,
      rgba(16, 185, 129, 0.1),
      transparent 55%
    ),
    linear-gradient(180deg, rgba(2, 6, 23, 0.03), rgba(2, 6, 23, 0.01));
  position: relative;
  overflow: hidden;
}

.gh-homegraphs__phcap {
  position: absolute;
  left: 14px;
  bottom: 12px;
  font-size: 12px;
  color: rgba(15, 23, 42, 0.62);
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(2, 6, 23, 0.1);
  padding: 6px 10px;
  border-radius: 999px;
  backdrop-filter: blur(6px);
}

/* Placeholder: heatmap grid */
.gh-homegraphs__phgrid {
  position: absolute;
  inset: 14px 14px 44px 14px;
  border-radius: 12px;
  background: linear-gradient(
      to right,
      rgba(2, 6, 23, 0.07) 1px,
      transparent 1px
    ),
    linear-gradient(to bottom, rgba(2, 6, 23, 0.07) 1px, transparent 1px);
  background-size: 34px 28px;
  opacity: 0.75;
}
.gh-homegraphs__phgrid--heatmap::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(16, 185, 129, 0.35) 0 33%,
    rgba(245, 158, 11, 0.3) 33% 66%,
    rgba(239, 68, 68, 0.28) 66% 100%
  );
  opacity: 0.35;
  border-radius: 12px;
}

/* Placeholder: line chart */
.gh-homegraphs__phline {
  position: absolute;
  inset: 14px 14px 44px 14px;
  border-radius: 12px;
  background: linear-gradient(
    to bottom,
    rgba(2, 6, 23, 0.07) 1px,
    transparent 1px
  );
  background-size: 100% 28px;
}
.gh-homegraphs__phline::after {
  content: "";
  position: absolute;
  left: 8%;
  right: 6%;
  top: 18%;
  bottom: 18%;
  border-radius: 10px;
  background: linear-gradient(
      135deg,
      transparent 0 35%,
      rgba(37, 99, 235, 0.45) 35% 37%,
      transparent 37% 100%
    ),
    linear-gradient(
      45deg,
      transparent 0 58%,
      rgba(245, 158, 11, 0.4) 58% 60%,
      transparent 60% 100%
    ),
    linear-gradient(
      315deg,
      transparent 0 70%,
      rgba(239, 68, 68, 0.35) 70% 72%,
      transparent 72% 100%
    );
  opacity: 0.8;
}

/* Placeholder: area chart */
.gh-homegraphs__pharea {
  position: absolute;
  inset: 14px 14px 44px 14px;
  border-radius: 12px;
  background: linear-gradient(
    to bottom,
    rgba(2, 6, 23, 0.07) 1px,
    transparent 1px
  );
  background-size: 100% 28px;
}
.gh-homegraphs__pharea::after {
  content: "";
  position: absolute;
  inset: 18% 10% 22% 10%;
  border-radius: 10px;
  background: linear-gradient(
      180deg,
      rgba(37, 99, 235, 0.22),
      rgba(37, 99, 235, 0.06)
    ),
    linear-gradient(90deg, rgba(2, 6, 23, 0.06) 1px, transparent 1px);
  background-size: auto, 40px 100%;
  clip-path: polygon(
    0% 75%,
    12% 72%,
    22% 66%,
    36% 58%,
    48% 50%,
    60% 44%,
    72% 35%,
    84% 28%,
    100% 22%,
    100% 100%,
    0% 100%
  );
}

/* Placeholder: bars */
.gh-homegraphs__phbars {
  position: absolute;
  inset: 14px 14px 44px 14px;
  border-radius: 12px;
  background: linear-gradient(
    to bottom,
    rgba(2, 6, 23, 0.07) 1px,
    transparent 1px
  );
  background-size: 100% 28px;
}
.gh-homegraphs__phbars::after {
  content: "";
  position: absolute;
  inset: 18% 10% 20% 10%;
  border-radius: 10px;
  background: linear-gradient(
    90deg,
    rgba(37, 99, 235, 0.3) 0 22%,
    transparent 22% 28%,
    rgba(16, 185, 129, 0.26) 28% 50%,
    transparent 50% 56%,
    rgba(245, 158, 11, 0.26) 56% 72%,
    transparent 72% 78%,
    rgba(239, 68, 68, 0.24) 78% 100%
  );
  clip-path: polygon(
    0% 100%,
    0% 70%,
    10% 70%,
    10% 100%,
    18% 100%,
    18% 52%,
    28% 52%,
    28% 100%,
    36% 100%,
    36% 60%,
    46% 60%,
    46% 100%,
    54% 100%,
    54% 38%,
    64% 38%,
    64% 100%,
    72% 100%,
    72% 56%,
    82% 56%,
    82% 100%,
    90% 100%,
    90% 66%,
    100% 66%,
    100% 100%
  );
  opacity: 0.85;
}

.gh-homegraphs__foot {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 14px;
  align-items: center;
  justify-content: space-between;
  margin-top: 16px;
}

.gh-homegraphs__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid rgba(2, 6, 23, 0.14);
  background: rgba(2, 6, 23, 0.03);
  color: var(--ghg-ink);
  text-decoration: none;
  font-size: 13px;
  line-height: 1;
  transition: transform 120ms ease, background 120ms ease;
}
.gh-homegraphs__cta:hover {
  background: rgba(2, 6, 23, 0.06);
  transform: translateY(-1px);
}

.gh-homegraphs__note {
  color: var(--ghg-muted);
  font-size: 12.5px;
  line-height: 1.4;
  max-width: 720px;
}
/* what is cct  */
.gh-archSplit {
  margin-top: 40px;
}

.gh-archGrid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  margin-top: 24px;
}

.gh-archCard {
  background: #f9f7f7;
  border-radius: 16px;
  padding: 24px;
  border: 1px solid rgba(0, 0, 0, 0.06);
}

.gh-archCard--highlight {
  border: 1px solid rgba(14, 100, 255, 0.2);
  box-shadow: 0 10px 30px rgba(14, 100, 255, 0.08);
}

.gh-archCard__label {
  font-weight: 700;
  font-size: 16px;
  margin-bottom: 4px;
}

.gh-archCard__sub {
  font-size: 14px;
  opacity: 0.7;
  margin-bottom: 16px;
}

.gh-archCard__foot {
  margin-top: 16px;
  font-size: 13px;
  opacity: 0.7;
}
/* --- EMR vs CCT connector: premium handoff --- */
#what .gh-archGrid {
  display: grid;
  grid-template-columns: 1fr 120px 1fr;
  gap: 20px;
  align-items: stretch;
}

#what .gh-archLink {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

#what .gh-archLink__rail {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
}

#what .gh-archLink__node {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  border: 2px solid rgba(15, 23, 42, 0.2);
  background: #fff;
}

#what .gh-archLink__node--right {
  border-color: rgba(59, 130, 246, 0.45);
}

#what .gh-archLink__arrow {
  font-size: 18px;
  line-height: 1;
  color: rgba(15, 23, 42, 0.45);
  transform: translateY(-1px);
}

#what .gh-archLink__cap {
  font-size: 12px;
  font-weight: 600;
  color: rgba(15, 23, 42, 0.55);
  letter-spacing: 0.01em;
  text-align: center;
}

/* Mobile: stack cards, hide connector */
@media (max-width: 860px) {
  #what .gh-archGrid {
    grid-template-columns: 1fr;
  }
  #what .gh-archLink {
    display: none;
  }
}

/* Triad kicker label used in hero */
.gh-triad__kicker {
  display: inline-block;
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  opacity: 0.75;
  margin-bottom: 4px;
}

/* --- CCT bridge section (hero -> platform) --- */
.gh-cctBridge {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 32px;
  align-items: start;
}

/* Left column (CCT engines) */

.gh-cctBridge__left {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

/* Right column (platform capabilities) */

.gh-cctBridge__right {
  display: grid;
  align-content: start;
}
@media (max-width: 980px) {
  .gh-cctBridge {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 1024px) {
  .gh-cctBridge {
    grid-template-columns: 1fr;
    gap: 28px;
  }
}

/* CCT concept panel */

.gh-cctDiagram {
  background: linear-gradient(145deg, #f8fafc 0%, #eef3fb 50%, #f8fbff 100%);
  border: 1px solid #e3e9f3;
  border-radius: 20px;
  padding: 28px;
  box-shadow: 0 20px 45px rgba(16, 24, 40, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

.gh-cctDiagram::before {
  content: "";
  position: absolute;
  width: 380px;
  height: 380px;
  background: radial-gradient(
    circle,
    rgba(90, 140, 255, 0.15) 0%,
    rgba(90, 140, 255, 0.05) 40%,
    transparent 70%
  );
  top: -80px;
  left: -60px;

  pointer-events: none;
}

.gh-cctDiagram__title {
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  opacity: 0.75;
  margin-bottom: 12px;
}
.gh-cctDiagram__row {
  display: grid;
  gap: 16px;
}
.gh-cctDiagram__row--top {
  grid-template-columns: 1fr;
  height: 125px;
}

.gh-cctDiagram__row--bottom {
  grid-template-columns: 1fr 1fr;
  height: 125px;
}
@media (max-width: 520px) {
  .gh-cctDiagram__row--top {
    height: 98px;
  }
  .gh-cctDiagram__row--bottom {
    height: 98px;
  }
  .gh-section--light .gh-cctDiagram__arrow {
    margin-top: 96px;
  }
}

.gh-cctDiagram__engine {
  background: white;
  border: 1px solid #d8e1ef;
  border-radius: 14px;
  padding: 16px 18px;
  box-shadow: 0 10px 22px rgba(15, 23, 42, 0.05);
}

.gh-cctDiagram__k {
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #64748b;
  margin-bottom: 6px;
}
.gh-cctDiagram__h {
  font-size: 17px;
  font-weight: 700;
  color: #0f172a;
}

.gh-cctDiagram__arrow {
  margin: 12px 0 10px;
  font-size: 11px;
  opacity: 0.7;
  text-align: center;
}
.gh-cctDiagram__pillRow {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
}
.gh-cctDiagram__pillRow span {
  font-size: 12px;
  padding: 7px 10px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.02);
  opacity: 0.95;
}

.gh-decisionGrid--tight {
  gap: 12px;
}

/* --- CCT bridge: ensure it renders well on light sections (white background) --- */
.gh-section--light .gh-cctDiagram {
  border: 1px solid var(--line);
  background: linear-gradient(180deg, #ffffff, var(--surface2));
  box-shadow: var(--shadow);
}
.gh-section--light .gh-cctDiagram__engine {
  border: 1px solid var(--line);
  background: #ffffff;
}
.gh-section--light .gh-cctDiagram__title,
.gh-section--light .gh-cctDiagram__k,
.gh-section--light .gh-cctDiagram__arrow {
  color: var(--muted);
  opacity: 1;
}
.gh-section--light .gh-cctDiagram__arrow {
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 10px;
  opacity: 0.75;
  margin-top: 65px;
}
@media (max-width: 520px) {
  .gh-section--light .gh-cctDiagram__arrow {
    margin-top: 96px;
  }
}

.gh-section--light .gh-cctDiagram__h {
  color: var(--text);
}
.gh-section--light .gh-cctDiagram__pillRow span {
  border: 1px solid var(--line);
  background: #ffffff;
  color: var(--text);
  box-shadow: 0 10px 26px rgba(10, 18, 32, 0.06);
}
/* Make the left diagram visually balanced */
.gh-cctDiagram {
  min-height: 360px;
}
@media (max-width: 980px) {
  .gh-cctDiagram {
    min-height: auto;
  }
}
/* ================================
   CCT LEFT PANEL – FINAL OVERRIDES
   Paste at the VERY END of styles.css
================================ */

/* Ensure bridge columns behave */
.gh-cctBridge__left {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}
.gh-cctBridge__right {
  display: block;
}

/* Stronger, popping background for the left panel ON LIGHT SECTIONS */
.gh-section--light .gh-cctDiagram {
  position: relative;
  overflow: hidden;

  background: linear-gradient(
    145deg,
    #f8fafc 0%,
    #eef3fb 50%,
    #f8fbff 100%
  ) !important;

  border: 1px solid #d7e1f0;
  border-radius: 20px;
  padding: 28px;
  box-shadow: 0 22px 52px rgba(16, 24, 40, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.85);
}

/* Subtle “glow” so the panel pops */
.gh-section--light .gh-cctDiagram::before {
  content: "";
  position: absolute;
  width: 420px;
  height: 420px;

  background: radial-gradient(
    circle,
    rgba(90, 140, 255, 0.18) 0%,
    rgba(90, 140, 255, 0.07) 42%,
    transparent 70%
  );

  top: -120px;
  left: -120px;
  pointer-events: none;
}

/* Bring engines to the same visual level as right-side cards */
.gh-section--light .gh-cctDiagram__engine {
  background: #ffffff;
  border: 1px solid #cfd6e1;
  border-radius: 16px;
  padding: 16px 18px;
  box-shadow: 0 12px 28px rgba(16, 24, 40, 0.08);
}

.gh-section--light .gh-cctDiagram__k {
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #64748b;
  margin-bottom: 6px;
}

.gh-section--light .gh-cctDiagram__h {
  font-size: 22px;
  font-weight: 750;
  color: #0f172a;
  font-weight: 800;
}

/* Pills: slightly stronger so they don’t look flat */
.gh-section--light .gh-cctDiagram__pillRow span {
  border: 1px solid #d7e1f0;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 10px 22px rgba(16, 24, 40, 0.06);
}
