:root {
  --ga-bg: #06090f;
  --ga-bg-top: #0a111c;
  --ga-panel: rgba(16, 24, 38, 0.78);
  --ga-panel-strong: rgba(18, 29, 46, 0.94);
  --ga-panel-soft: rgba(255, 255, 255, 0.03);
  --ga-border: rgba(201, 216, 236, 0.11);
  --ga-border-strong: rgba(216, 229, 245, 0.2);
  --ga-text: #f4f7fb;
  --ga-text-muted: rgba(224, 231, 241, 0.76);
  --ga-text-soft: rgba(210, 220, 233, 0.58);
  --ga-accent: #e5eef9;
  --ga-accent-strong: #ffffff;
  --ga-accent-dark: #09131f;
  --ga-glow: rgba(156, 191, 255, 0.18);
  --ga-glow-strong: rgba(220, 236, 255, 0.16);
  --ga-shadow: 0 28px 90px rgba(0, 0, 0, 0.38);
  --ga-radius-sm: 14px;
  --ga-radius-md: 22px;
  --ga-radius-lg: 36px;
  --ga-container: 1200px;
  --ga-gutter: 24px;
  --ga-section-space: clamp(72px, 10vw, 128px);
  --ga-title-font: "Iowan Old Style", "Palatino Linotype", "Book Antiqua", "Times New Roman", serif;
  --ga-body-font: "Avenir Next", "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  --ga-display-font: "Avenir Next", "Segoe UI", "Helvetica Neue", Arial, sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  font-family: var(--ga-body-font);
  color: var(--ga-text);
  background:
    radial-gradient(circle at top left, rgba(106, 143, 216, 0.13), transparent 34%),
    radial-gradient(circle at 76% 16%, rgba(182, 211, 255, 0.08), transparent 20%),
    linear-gradient(180deg, var(--ga-bg-top) 0%, #070b12 28%, var(--ga-bg) 100%);
  line-height: 1.6;
}

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

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

.ga-site {
  position: relative;
  overflow: clip;
}

.ga-site::before,
.ga-site::after {
  content: "";
  position: absolute;
  pointer-events: none;
  z-index: 0;
}

.ga-site::before {
  top: -120px;
  left: -140px;
  width: 420px;
  height: 420px;
  background: radial-gradient(circle, rgba(146, 182, 245, 0.16), transparent 68%);
  filter: blur(14px);
}

.ga-site::after {
  top: 480px;
  right: -120px;
  width: 360px;
  height: 520px;
  background: linear-gradient(180deg, rgba(205, 225, 255, 0.13), transparent 75%);
  filter: blur(78px);
  opacity: 0.52;
}

.ga-container {
  position: relative;
  z-index: 1;
  width: min(calc(100% - (var(--ga-gutter) * 2)), var(--ga-container));
  margin: 0 auto;
}

.ga-header {
  position: relative;
  z-index: 5;
  padding: 20px 0 0;
}

.ga-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.ga-logo-link {
  display: inline-flex;
  align-items: center;
  min-width: 0;
}

.ga-logo-link img {
  width: auto;
  height: 48px;
  max-width: 270px;
}

.ga-nav {
  display: none;
  align-items: center;
  gap: 30px;
  margin-left: auto;
}

.ga-nav__link,
.ga-footer__links a {
  position: relative;
  color: rgba(240, 245, 250, 0.86);
  transition: color 180ms ease, opacity 180ms ease;
}

.ga-nav__link::after,
.ga-footer__links a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -7px;
  left: 0;
  height: 1px;
  background: linear-gradient(90deg, rgba(235, 243, 251, 0.8), rgba(235, 243, 251, 0));
  opacity: 0;
  transform: scaleX(0.6);
  transform-origin: left center;
  transition: opacity 180ms ease, transform 180ms ease;
}

.ga-nav__link:hover,
.ga-nav__link:focus-visible,
.ga-footer__links a:hover,
.ga-footer__links a:focus-visible {
  color: var(--ga-accent-strong);
}

.ga-nav__link--active {
  color: #7fa5ff;
}

.ga-nav__link--active::after {
  opacity: 1;
  transform: scaleX(1);
  background: #5f8cff;
}

.ga-nav__link:hover::after,
.ga-nav__link:focus-visible::after,
.ga-footer__links a:hover::after,
.ga-footer__links a:focus-visible::after {
  opacity: 1;
  transform: scaleX(1);
}

.ga-nav__item {
  position: relative;
}

.ga-nav__menu-button {
  appearance: none;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 0;
  border: 0;
  background: transparent;
  font: inherit;
  cursor: pointer;
}

.ga-nav__chevron {
  width: 7px;
  height: 7px;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: translateY(-2px) rotate(45deg);
  transition: transform 180ms ease;
}

.ga-nav__item:hover .ga-nav__chevron,
.ga-nav__item:focus-within .ga-nav__chevron,
.ga-nav__item.is-open .ga-nav__chevron {
  transform: translateY(1px) rotate(225deg);
}

.ga-nav-menu {
  position: absolute;
  top: calc(100% + 18px);
  left: 50%;
  z-index: 30;
  display: grid;
  gap: 4px;
  width: min(520px, calc(100vw - 32px));
  padding: 12px;
  border: 1px solid rgba(126, 160, 228, 0.32);
  border-radius: 10px;
  background:
    radial-gradient(circle at 12% 0%, rgba(76, 120, 255, 0.16), transparent 34%),
    linear-gradient(180deg, rgba(9, 20, 36, 0.98), rgba(4, 12, 23, 0.98));
  box-shadow:
    0 28px 80px rgba(0, 0, 0, 0.46),
    inset 0 1px 0 rgba(255, 255, 255, 0.04);
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, -6px);
  transition: opacity 160ms ease, transform 160ms ease, visibility 160ms ease;
  visibility: hidden;
}

.ga-nav-menu::before {
  content: "";
  position: absolute;
  top: -18px;
  right: 0;
  left: 0;
  height: 18px;
}

.ga-nav__item:hover .ga-nav-menu,
.ga-nav__item:focus-within .ga-nav-menu,
.ga-nav__item.is-open .ga-nav-menu {
  opacity: 1;
  pointer-events: auto;
  transform: translate(-50%, 0);
  visibility: visible;
}

.ga-nav-menu a {
  display: grid;
  gap: 4px;
  padding: 12px;
  border-radius: 7px;
  color: rgba(238, 245, 255, 0.92);
  transition: background 160ms ease, color 160ms ease;
}

.ga-nav-menu a:hover,
.ga-nav-menu a:focus-visible {
  background: rgba(80, 124, 255, 0.13);
  color: #ffffff;
  outline: none;
}

.ga-nav-menu a:focus-visible {
  box-shadow: 0 0 0 2px rgba(241, 247, 255, 0.9);
}

.ga-nav-menu strong {
  color: inherit;
  font-size: 0.86rem;
  font-weight: 650;
  letter-spacing: -0.01em;
}

.ga-nav-menu span {
  color: rgba(212, 224, 241, 0.68);
  font-size: 0.76rem;
  line-height: 1.45;
}

.ga-header__actions {
  display: inline-flex;
  align-items: center;
}

.ga-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 600;
  letter-spacing: 0.01em;
  transition:
    transform 180ms ease,
    background-color 180ms ease,
    border-color 180ms ease,
    color 180ms ease,
    box-shadow 180ms ease;
}

.ga-button:hover,
.ga-button:focus-visible {
  transform: translateY(-1px);
}

.ga-button:focus-visible,
.ga-nav__link:focus-visible,
.ga-footer__links a:focus-visible,
.ga-logo-link:focus-visible,
.ga-footer__brand:focus-visible {
  outline: 2px solid rgba(241, 247, 255, 0.94);
  outline-offset: 4px;
}

.ga-button--primary {
  color: var(--ga-accent-dark);
  background: linear-gradient(180deg, #fbfdff 0%, #dce8f6 100%);
  box-shadow: 0 14px 34px rgba(217, 228, 244, 0.14);
}

.ga-button--primary:hover,
.ga-button--primary:focus-visible {
  background: linear-gradient(180deg, #ffffff 0%, #eaf2fb 100%);
}

.ga-button--secondary {
  color: var(--ga-text);
  background: rgba(255, 255, 255, 0.04);
  border-color: var(--ga-border-strong);
  backdrop-filter: blur(12px);
}

.ga-button--secondary:hover,
.ga-button--secondary:focus-visible {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(224, 236, 251, 0.28);
}

.ga-hero {
  position: relative;
  overflow: visible;
  padding: 26px 0 40px;
  background:
    linear-gradient(180deg, rgba(8, 12, 20, 0.38), rgba(6, 9, 15, 0.7) 72%, rgba(6, 9, 15, 0.92) 100%),
    linear-gradient(90deg, rgba(6, 9, 15, 0.92) 0%, rgba(6, 9, 15, 0.84) 22%, rgba(6, 9, 15, 0.62) 38%, rgba(6, 9, 15, 0.22) 56%, rgba(6, 9, 15, 0.06) 76%, rgba(6, 9, 15, 0) 100%),
    linear-gradient(180deg, var(--ga-bg-top) 0%, #070b12 36%, var(--ga-bg) 100%);
}

.ga-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.015), transparent 22%);
  pointer-events: none;
  z-index: 0;
}

.ga-hero::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 1px;
  background: linear-gradient(90deg, rgba(206, 222, 245, 0), rgba(206, 222, 245, 0.14) 24%, rgba(206, 222, 245, 0.24) 50%, rgba(206, 222, 245, 0.14) 76%, rgba(206, 222, 245, 0));
  pointer-events: none;
  z-index: 0;
}

.ga-hero__panel {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 540px;
  padding: clamp(28px, 3.6vw, 38px) 0 18px;
}

.ga-hero__content,
.ga-hero__trust {
  position: relative;
  z-index: 2;
}

.ga-hero__content {
  max-width: 560px;
  width: min(100%, 560px);
  min-width: 0;
  padding: 56px 0 58px;
}

.ga-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 14px;
  color: rgba(226, 235, 246, 0.68);
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.ga-eyebrow::before {
  content: "";
  width: 34px;
  height: 1px;
  background: linear-gradient(90deg, rgba(231, 240, 250, 0.14), rgba(231, 240, 250, 0.74));
}

.ga-hero__title,
.ga-section__title,
.ga-cta-band h2,
.ga-card h3,
.ga-platform-card h3 {
  font-family: var(--ga-title-font);
}

.ga-hero__title {
  font-family: var(--ga-display-font);
  margin: 0;
  max-width: none;
  font-size: clamp(1.9rem, 3.7vw, 3rem);
  font-weight: 500;
  line-height: 1.07;
  letter-spacing: -0.038em;
}

.ga-hero__title span {
  display: block;
}

.ga-hero__body {
  max-width: 41ch;
  margin: 18px 0 0;
  color: rgba(229, 236, 246, 0.78);
  font-size: clamp(0.96rem, 1.16vw, 1rem);
  line-height: 1.58;
}

.ga-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.ga-hero__media {
  position: absolute;
  top: -120px;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 0;
  pointer-events: none;
  isolation: isolate;
}

.ga-hero__art {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(6, 9, 15, 0.96) 0%, rgba(6, 9, 15, 0.94) 18%, rgba(6, 9, 15, 0.86) 30%, rgba(6, 9, 15, 0.64) 40%, rgba(6, 9, 15, 0.28) 54%, rgba(6, 9, 15, 0.08) 72%, rgba(6, 9, 15, 0) 100%),
    url("../img/backgrounds/homepage_background.svg") 84% 44% / cover no-repeat;
  opacity: 1;
}

.ga-hero__bloom,
.ga-hero__mist {
  position: absolute;
  pointer-events: none;
}

.ga-hero__bloom {
  top: 4%;
  right: 8%;
  width: min(28vw, 320px);
  height: min(28vw, 320px);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(213, 231, 255, 0.16) 0%, rgba(173, 203, 250, 0.1) 32%, rgba(121, 166, 236, 0.06) 54%, transparent 76%);
  filter: blur(22px);
  opacity: 0.56;
}

.ga-hero__mist {
  border-radius: 999px;
  background: radial-gradient(circle, rgba(219, 230, 246, 0.15), rgba(219, 230, 246, 0.018) 60%, transparent 76%);
  filter: blur(30px);
}

.ga-hero__mist--one {
  right: 6%;
  bottom: 16%;
  width: min(44vw, 560px);
  height: 128px;
  opacity: 0.24;
}

.ga-hero__mist--two {
  right: 18%;
  bottom: 8%;
  width: min(28vw, 340px);
  height: 86px;
  opacity: 0.14;
}

.ga-hero__trust {
  display: none;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  padding-top: 20px;
  border-top: 1px solid rgba(219, 230, 244, 0.08);
}

.ga-hero__trust-label {
  margin: 0;
  color: rgba(224, 233, 245, 0.48);
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  white-space: nowrap;
}

.ga-hero__logos {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 16px 34px;
  flex: 1;
  color: rgba(241, 246, 252, 0.48);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.ga-hero__logos span {
  opacity: 0.84;
}

.ga-section {
  padding: var(--ga-section-space) 0;
}

.ga-section--solutions {
  padding-top: 64px;
  padding-bottom: calc(var(--ga-section-space) - 8px);
  background: linear-gradient(180deg, #0b1220 0%, #0a111b 100%);
}

.ga-solutions__top {
  display: grid;
  gap: 24px;
  align-items: center;
}

.ga-section__intro {
  display: grid;
  gap: 0;
}

.ga-section__intro--solutions {
  max-width: 34rem;
  margin-top: 18px;
}

.ga-section--solutions .ga-eyebrow {
  margin-bottom: 14px;
  color: rgba(223, 232, 244, 0.58);
}

.ga-section--solutions .ga-section__title {
  max-width: 11.5ch;
  font-size: clamp(1.56rem, 2.35vw, 2.28rem);
  line-height: 1.01;
  letter-spacing: -0.04em;
}

.ga-section__body--solutions {
  max-width: 33ch;
  margin-top: 16px;
  color: rgba(222, 230, 241, 0.7);
  font-size: clamp(0.95rem, 1.04vw, 1rem);
  line-height: 1.62;
}

.ga-solutions__visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  min-height: 360px;
  margin: 0;
  transform: translate(-3%, 24px);
}

.ga-solutions__visual img {
  position: relative;
  z-index: 1;
  display: block;
  width: min(118%, 860px);
  height: auto;
  filter: drop-shadow(0 34px 58px rgba(0, 0, 0, 0.34));
}

.ga-solutions__glow {
  position: absolute;
  inset: auto 2% 4% 2%;
  height: 70%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(135, 174, 238, 0.22) 0%, rgba(135, 174, 238, 0.11) 34%, rgba(135, 174, 238, 0.035) 60%, transparent 80%);
  filter: blur(42px);
  opacity: 0.98;
}

.ga-section__title {
  margin: 0;
  max-width: 14ch;
  font-size: clamp(2.15rem, 4vw, 3.75rem);
  line-height: 1.05;
  letter-spacing: -0.045em;
  text-wrap: balance;
}

.ga-section__body {
  max-width: 62ch;
  margin: 18px 0 0;
  color: var(--ga-text-muted);
  font-size: 1.04rem;
}

.ga-value-grid,
.ga-platform-grid {
  display: grid;
  gap: 18px;
  margin-top: 42px;
}

.ga-section--solutions .ga-value-grid {
  gap: 18px;
  margin-top: 28px;
  position: relative;
  z-index: 2;
}

.ga-card,
.ga-platform-card {
  position: relative;
  overflow: hidden;
  padding: 28px;
  border: 1px solid var(--ga-border);
  border-radius: var(--ga-radius-md);
  background: linear-gradient(180deg, rgba(17, 26, 40, 0.88), rgba(10, 16, 27, 0.74));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.ga-section--solutions .ga-card {
  padding: 28px 26px 26px;
  border: 1px solid rgba(205, 220, 240, 0.06);
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(14, 21, 32, 0.44), rgba(9, 14, 22, 0.24));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.02);
}

.ga-platform-card {
  min-height: 220px;
  background:
    radial-gradient(circle at top right, rgba(158, 196, 255, 0.12), transparent 38%),
    linear-gradient(180deg, rgba(15, 23, 36, 0.92), rgba(8, 12, 20, 0.84));
}

.ga-platform-card::before {
  content: "";
  position: absolute;
  right: -18%;
  bottom: -30%;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(190, 217, 255, 0.16), transparent 68%);
  filter: blur(16px);
}

.ga-platform-card__index {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  margin: 0 0 18px;
  border: 1px solid rgba(224, 236, 251, 0.12);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.03);
  color: rgba(243, 247, 252, 0.74);
  font-size: 0.82rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.ga-card h3,
.ga-platform-card h3 {
  margin: 0;
  max-width: 14ch;
  font-size: 1.5rem;
  line-height: 1.08;
  letter-spacing: -0.03em;
}

.ga-section--solutions .ga-card h3 {
  max-width: 13ch;
  font-size: 1.26rem;
  line-height: 1.12;
}

.ga-card p:last-child,
.ga-platform-card p:last-child {
  margin: 14px 0 0;
  color: var(--ga-text-muted);
}

.ga-section--solutions .ga-card p:last-child {
  margin-top: 12px;
  color: rgba(221, 229, 240, 0.68);
  line-height: 1.62;
}

.ga-integrations {
  padding: 34px;
  border: 1px solid var(--ga-border);
  border-radius: 32px;
  background: linear-gradient(180deg, rgba(13, 20, 32, 0.88), rgba(9, 14, 22, 0.78));
  box-shadow: var(--ga-shadow);
}

.ga-pill-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.ga-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 18px;
  border: 1px solid rgba(223, 234, 248, 0.1);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.035);
  color: rgba(240, 245, 251, 0.88);
  font-size: 0.96rem;
}

.ga-section--cta {
  padding-bottom: calc(var(--ga-section-space) + 6px);
}

.ga-cta-band {
  display: grid;
  gap: 28px;
  padding: clamp(28px, 4vw, 44px);
  border: 1px solid rgba(221, 232, 246, 0.12);
  border-radius: 36px;
  background:
    radial-gradient(circle at top right, rgba(189, 219, 255, 0.16), transparent 34%),
    linear-gradient(180deg, rgba(14, 22, 34, 0.96), rgba(9, 15, 23, 0.94));
  box-shadow: var(--ga-shadow);
}

.ga-cta-band h2 {
  margin: 0;
  max-width: 12ch;
  font-size: clamp(2.2rem, 4vw, 3.4rem);
  line-height: 1.03;
  letter-spacing: -0.04em;
}

.ga-cta-band p:last-child {
  max-width: 54ch;
  margin: 18px 0 0;
  color: var(--ga-text-muted);
}

.ga-cta-band__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.ga-footer {
  padding: 0 0 34px;
  color: rgba(219, 228, 240, 0.72);
}

.ga-footer__inner {
  display: flex;
  flex-direction: column;
  gap: 18px;
  padding-top: 26px;
  border-top: 1px solid rgba(214, 227, 245, 0.08);
}

.ga-footer__brand {
  display: inline-flex;
  align-items: center;
  color: var(--ga-text);
  font-family: var(--ga-title-font);
  font-size: 1.15rem;
  letter-spacing: 0.02em;
}

.ga-footer__links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 22px;
  font-size: 0.95rem;
}

@media (min-width: 720px) {
  .ga-hero__title span {
    white-space: nowrap;
  }

  .ga-nav {
    display: inline-flex;
  }

  .ga-solutions__top {
    grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
    gap: 40px;
  }

  .ga-section__intro--solutions {
    margin-top: 26px;
  }

  .ga-solutions__visual {
    min-height: 460px;
    justify-content: flex-end;
  }

  .ga-solutions__visual img {
    width: min(122%, 940px);
  }

  .ga-section--solutions .ga-value-grid {
    margin-top: 32px;
  }

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

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

  .ga-cta-band {
    grid-template-columns: minmax(0, 1.35fr) auto;
    align-items: center;
  }

  .ga-footer__inner {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
}

@media (min-width: 960px) {
  .ga-hero {
    padding: 32px 0 52px;
  }

  .ga-solutions__top {
    grid-template-columns: minmax(0, 0.88fr) minmax(0, 1.12fr);
    gap: 42px;
  }

  .ga-section__intro--solutions {
    max-width: 28rem;
  }

  .ga-solutions__visual {
    min-height: 540px;
    transform: translate(-7%, 26px);
  }

  .ga-solutions__visual img {
    width: min(124%, 1040px);
  }

  .ga-section--solutions .ga-value-grid {
    margin-top: 28px;
  }

  .ga-hero__panel {
    min-height: 520px;
    padding: 28px 0 18px;
  }

  .ga-hero__content {
    max-width: 520px;
    width: 42%;
    min-width: 420px;
    padding: 52px 0 90px;
  }
}

@media (max-width: 719px) {
  .ga-header {
    padding-top: 18px;
  }

  .ga-header__inner {
    flex-wrap: wrap;
  }

  .ga-header__actions {
    width: 100%;
  }

  .ga-header__actions .ga-button {
    width: 100%;
  }

  .ga-hero {
    padding: 18px 0 34px;
  }

  .ga-section--solutions {
    padding-top: 40px;
  }

  .ga-solutions__top {
    gap: 18px;
  }

  .ga-section__intro--solutions {
    margin-top: 8px;
  }

  .ga-solutions__visual {
    min-height: 270px;
    margin-inline: -12px;
    justify-content: center;
    transform: translate(0, 6px);
  }

  .ga-solutions__visual img {
    width: min(112%, 600px);
  }

  .ga-solutions__glow {
    inset: auto 0 8% 0;
    height: 64%;
    filter: blur(32px);
  }

  .ga-section--solutions .ga-value-grid {
    margin-top: 18px;
  }

  .ga-hero__media {
    top: -96px;
  }

  .ga-hero__panel {
    min-height: 0;
    padding: 24px 0 16px;
  }

  .ga-hero__content {
    max-width: none;
    width: auto;
    min-width: 0;
    padding: 36px 0 100px;
  }

  .ga-hero__title {
    max-width: 11ch;
    font-size: clamp(1.85rem, 8.1vw, 2.7rem);
    line-height: 1.1;
  }

  .ga-hero__body {
    max-width: 33ch;
  }

  .ga-hero__art {
    background:
      radial-gradient(circle at 18% 34%, rgba(7, 11, 18, 0.94) 0%, rgba(7, 11, 18, 0.88) 24%, rgba(7, 11, 18, 0.66) 40%, rgba(7, 11, 18, 0.22) 62%, transparent 78%),
      linear-gradient(90deg, rgba(6, 9, 15, 0.98) 0%, rgba(6, 9, 15, 0.94) 36%, rgba(6, 9, 15, 0.8) 54%, rgba(6, 9, 15, 0.34) 72%, rgba(6, 9, 15, 0.08) 100%),
      url("../img/backgrounds/homepage_background.svg") 92% 30% / cover no-repeat;
  }

  .ga-hero__bloom {
    top: 8%;
    right: -4%;
    width: 156px;
    height: 156px;
    opacity: 0.4;
  }

  .ga-hero__mist--one {
    right: 0;
    bottom: 20%;
    width: 260px;
    height: 68px;
    opacity: 0.18;
  }

  .ga-hero__mist--two {
    display: none;
  }

  .ga-hero__trust {
    align-items: flex-start;
    justify-content: flex-start;
    flex-direction: column;
    gap: 10px;
    padding-top: 18px;
  }

  .ga-hero__logos {
    justify-content: flex-start;
    gap: 10px 18px;
    font-size: 0.78rem;
    letter-spacing: 0.06em;
  }

  .ga-hero__logos span:nth-child(5),
  .ga-hero__logos span:nth-child(6) {
    display: none;
  }

  .ga-integrations {
    padding: 28px 22px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .ga-button,
  .ga-nav__link,
  .ga-nav__link::after,
  .ga-footer__links a,
  .ga-footer__links a::after {
    transition: none;
  }
}

/* Public homepage refresh */
:root {
  --ga-blue: #4778ff;
  --ga-blue-soft: rgba(71, 120, 255, 0.18);
  --ga-line: rgba(134, 164, 214, 0.18);
  --ga-card-bg: rgba(7, 14, 25, 0.68);
}

body {
  background:
    radial-gradient(circle at 14% 0%, rgba(70, 115, 230, 0.14), transparent 28%),
    radial-gradient(circle at 86% 18%, rgba(150, 187, 255, 0.11), transparent 26%),
    linear-gradient(180deg, #050912 0%, #06101a 44%, #04101a 100%);
}

.ga-site::before,
.ga-site::after {
  opacity: 0.35;
}

.ga-header {
  padding-top: 24px;
}

.ga-header__inner {
  gap: 22px;
}

.ga-logo-link img {
  height: 46px;
}

.ga-nav {
  gap: clamp(18px, 3vw, 46px);
}

.ga-nav__link {
  color: rgba(244, 248, 255, 0.9);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.01em;
}

.ga-button {
  min-height: 48px;
  gap: 10px;
  border-radius: 7px;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.01em;
}

.ga-button--primary {
  color: #ffffff;
  background: linear-gradient(180deg, #4f7eff 0%, #2f61f4 100%);
  box-shadow: 0 18px 42px rgba(38, 91, 242, 0.26);
}

.ga-button--primary:hover,
.ga-button--primary:focus-visible {
  background: linear-gradient(180deg, #638dff 0%, #3f6fff 100%);
}

.ga-button--secondary {
  background: rgba(4, 11, 20, 0.72);
  border-color: rgba(221, 232, 250, 0.38);
}

.ga-hero__trust {
  display: flex;
  justify-content: flex-start;
  border-top: 0;
}

.ga-hero__badges {
  justify-content: flex-start;
  gap: 13px 28px;
  color: rgba(235, 242, 255, 0.78);
  font-size: 0.78rem;
  letter-spacing: -0.01em;
  text-transform: none;
}

.ga-hero__badges span {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  opacity: 1;
}

.ga-badge__icon {
  width: 19px;
  height: 19px;
  flex: 0 0 auto;
  color: #6f94ff;
  filter: drop-shadow(0 0 10px rgba(83, 126, 255, 0.34));
}

.ga-badge__icon path {
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.ga-section {
  position: relative;
  padding: clamp(88px, 9vw, 148px) 0;
}

.ga-section + .ga-section {
  border-top: 1px solid var(--ga-line);
}

.ga-section--challenge {
  padding-top: clamp(76px, 8vw, 118px);
  background: linear-gradient(180deg, rgba(3, 13, 23, 0.96), rgba(4, 15, 25, 0.92));
}

.ga-section--model,
.ga-section--platform,
.ga-section--use-cases,
.ga-section--integrations {
  background:
    radial-gradient(circle at 2% 12%, rgba(54, 105, 218, 0.12), transparent 30%),
    linear-gradient(180deg, rgba(4, 15, 25, 0.94), rgba(4, 13, 23, 0.96));
}

.ga-section--action {
  padding-top: clamp(72px, 8vw, 124px);
  background:
    radial-gradient(circle at 62% 44%, rgba(82, 126, 241, 0.13), transparent 34%),
    linear-gradient(180deg, rgba(3, 12, 22, 0.97), rgba(4, 13, 23, 0.96));
}

.ga-section__header {
  display: grid;
  gap: 12px;
  margin-bottom: 38px;
}

.ga-section__header--split {
  align-items: end;
  gap: 24px;
}

.ga-eyebrow {
  color: #5f8cff;
  font-weight: 600;
  letter-spacing: 0.18em;
}

.ga-eyebrow::before {
  display: none;
}

.ga-section__title,
.ga-cta-band h2,
.ga-card h3,
.ga-platform-card h3,
.ga-use-case h3,
.ga-step h3 {
  font-family: var(--ga-display-font);
}

.ga-section__title {
  max-width: 22ch;
  font-size: clamp(1.9rem, 3.7vw, 3rem);
  font-weight: 500;
  line-height: 1.07;
  letter-spacing: -0.038em;
}

.ga-section__body {
  max-width: 48ch;
  color: rgba(226, 236, 249, 0.76);
  font-size: 1.02rem;
}

.ga-card-grid,
.ga-platform-grid,
.ga-use-cases__grid,
.ga-logo-grid {
  display: grid;
  gap: 22px;
}

.ga-card-grid--five {
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
}

.ga-card,
.ga-platform-card,
.ga-use-case,
.ga-logo-card {
  border: 1px solid rgba(139, 166, 213, 0.24);
  border-radius: 8px;
  background:
    radial-gradient(circle at 18% 0%, rgba(75, 119, 255, 0.12), transparent 38%),
    linear-gradient(180deg, rgba(8, 20, 34, 0.72), rgba(3, 11, 21, 0.68));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.035);
}

.ga-card {
  min-height: 170px;
  padding: 28px 24px 25px;
}

.ga-card__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  margin-bottom: 24px;
  border: 1px solid rgba(80, 124, 255, 0.8);
  border-radius: 999px;
  color: #75a0ff;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.ga-card__icon svg {
  width: 25px;
  height: 25px;
}

.ga-card__icon path {
  fill: none;
  stroke: currentColor;
  stroke-width: 1.65;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.ga-card h3,
.ga-platform-card h3,
.ga-use-case h3,
.ga-step h3 {
  margin: 0;
  max-width: none;
  color: #ffffff;
  font-size: clamp(1.05rem, 1.35vw, 1.24rem);
  font-weight: 500;
  line-height: 1.12;
  letter-spacing: -0.026em;
}

.ga-card p:last-child,
.ga-platform-card p:last-child,
.ga-use-case p,
.ga-step p {
  margin: 10px 0 0;
  color: rgba(224, 234, 248, 0.75);
  font-size: 0.91rem;
  line-height: 1.65;
}

.ga-model {
  display: grid;
  gap: 44px;
}

.ga-model__intro .ga-section__title {
  max-width: 20ch;
}

.ga-model__steps {
  display: grid;
  gap: 22px;
}

.ga-step {
  position: relative;
  display: grid;
  justify-items: center;
  text-align: center;
}

.ga-step__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 74px;
  height: 74px;
  margin-bottom: 16px;
  border: 1px solid rgba(91, 132, 255, 0.56);
  border-radius: 50%;
  background:
    radial-gradient(circle at 34% 18%, rgba(122, 158, 255, 0.26), transparent 40%),
    rgba(16, 28, 52, 0.72);
  color: #8fb0ff;
  font-size: 0.83rem;
  font-weight: 600;
  letter-spacing: 0.06em;
}

.ga-step__icon svg {
  width: 32px;
  height: 32px;
}

.ga-step__icon path {
  fill: none;
  stroke: currentColor;
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.ga-platform-grid {
  margin-top: 0;
}

.ga-platform-card {
  min-height: 224px;
  padding: 28px 24px 26px;
}

.ga-platform-card::before {
  display: none;
}

.ga-platform-card__index {
  width: 42px;
  height: 42px;
  border-color: rgba(78, 123, 255, 0.58);
  color: #7da3ff;
}

.ga-platform-card__index svg {
  width: 24px;
  height: 24px;
}

.ga-platform-card__index path {
  fill: none;
  stroke: currentColor;
  stroke-width: 1.65;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.ga-action {
  display: grid;
  gap: 34px;
  align-items: center;
}

.ga-action__copy {
  max-width: 28rem;
}

.ga-text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 24px;
  color: #7ca3ff;
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.01em;
}

.ga-action__visual {
  position: relative;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(174, 196, 236, 0.42);
  border-radius: 14px;
  background:
    linear-gradient(180deg, rgba(212, 225, 249, 0.12), rgba(212, 225, 249, 0.02)),
    rgba(8, 17, 30, 0.78);
  box-shadow:
    0 34px 90px rgba(0, 0, 0, 0.44),
    0 0 0 5px rgba(119, 151, 217, 0.18);
}

.ga-action__visual img {
  width: 100%;
  min-height: 320px;
  object-fit: cover;
  object-position: center;
}

.ga-use-cases {
  display: grid;
  gap: 42px;
}

.ga-use-cases__intro .ga-section__title {
  max-width: 16ch;
}

.ga-use-case {
  padding: 22px 22px 20px;
  border-radius: 0;
  border-width: 0 0 0 1px;
  background: transparent;
}

.ga-use-case h3 {
  font-size: clamp(1rem, 1.16vw, 1.12rem);
}

.ga-use-case p {
  font-size: 0.86rem;
}

.ga-integrations {
  display: grid;
  gap: 38px;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.ga-integrations__copy {
  max-width: 30rem;
}

.ga-logo-grid {
  grid-template-columns: repeat(auto-fit, minmax(132px, 1fr));
  align-items: stretch;
}

.ga-logo-card {
  display: grid;
  place-items: center;
  grid-template-rows: 64px auto;
  gap: 14px;
  min-height: 132px;
  padding: 18px;
  text-align: center;
}

.ga-tool-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  min-width: 64px;
  border: 1px solid #cbd5e1;
  border-radius: 999px;
  background: #ffffff;
  color: #334155;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.45),
    0 14px 34px rgba(0, 0, 0, 0.22);
  overflow: hidden;
}

.ga-tool-badge svg {
  width: 34px;
  height: 34px;
}

.ga-tool-badge img {
  display: block;
  width: 40px;
  height: 40px;
  object-fit: contain;
}

.ga-tool-badge--crowdstrike {
  border-color: #fecdd3;
  color: #be123c;
}

.ga-tool-badge--intune,
.ga-tool-badge--azure,
.ga-tool-badge--paloalto,
.ga-tool-badge--okta,
.ga-tool-badge--servicenow {
  border-color: #bfdbfe;
}

.ga-tool-badge--intune,
.ga-tool-badge--azure,
.ga-tool-badge--paloalto,
.ga-tool-badge--okta {
  color: #2563eb;
}

.ga-tool-badge--servicenow {
  color: #0369a1;
}

.ga-tool-badge--cisco {
  border-color: #cbd5e1;
  color: #0f766e;
}

.ga-tool-badge--jamf {
  border-color: #fed7aa;
  color: #c2410c;
}

.ga-tool-badge--qualys {
  border-color: #fecaca;
  color: #dc2626;
}

.ga-logo-card > span:not(.ga-tool-badge),
.ga-logo-card strong {
  color: rgba(244, 248, 255, 0.9);
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.01em;
}

.ga-logo-card--more {
  border-style: dashed;
  color: #82a7ff;
}

.ga-logo-card--more span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border: 1px solid rgba(91, 132, 255, 0.58);
  border-radius: 50%;
  color: #82a7ff;
  font-size: 1.55rem;
  font-weight: 500;
}

.ga-section--cta {
  padding-top: clamp(76px, 8vw, 124px);
  padding-bottom: clamp(72px, 8vw, 110px);
}

.ga-cta-band {
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 28px;
  border-radius: 10px;
  background:
    radial-gradient(circle at 8% 50%, rgba(96, 137, 255, 0.28), transparent 22%),
    linear-gradient(90deg, rgba(25, 42, 92, 0.86), rgba(9, 27, 54, 0.9));
}

.ga-cta-band__copy {
  min-width: 0;
}

.ga-cta-band__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 76px;
  height: 76px;
  border: 1px solid rgba(137, 166, 255, 0.52);
  border-radius: 50%;
  background:
    radial-gradient(circle at 36% 24%, rgba(140, 169, 255, 0.38), transparent 38%),
    rgba(57, 82, 156, 0.64);
  color: #e8efff;
}

.ga-cta-band__icon svg {
  width: 36px;
  height: 36px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.ga-cta-band h2 {
  max-width: none;
  font-size: clamp(1.55rem, 2.6vw, 2.25rem);
  font-weight: 500;
  line-height: 1.12;
  letter-spacing: -0.032em;
}

.ga-cta-band p:last-child {
  max-width: 50rem;
  margin-top: 10px;
  color: rgba(226, 236, 249, 0.76);
  font-size: 0.98rem;
  line-height: 1.65;
}

.ga-home-cta__band div > p:not(.ga-eyebrow) {
  max-width: 34rem;
  margin: 10px 0 0;
  color: rgba(226, 236, 249, 0.76);
  font-size: 0.9rem;
  line-height: 1.6;
}

.ga-footer {
  padding: 0 0 28px;
  background: linear-gradient(180deg, rgba(4, 13, 23, 0), rgba(2, 8, 15, 0.72));
}

.ga-footer__inner {
  display: grid;
  align-items: start;
  gap: 42px;
  padding-top: 38px;
}

.ga-footer__brand-block {
  align-self: start;
  max-width: 20rem;
}

.ga-footer__brand {
  font-family: var(--ga-display-font);
  font-size: 1.14rem;
  font-weight: 500;
  letter-spacing: -0.02em;
}

.ga-footer__brand-block p {
  margin: 14px 0 0;
  color: rgba(220, 230, 244, 0.65);
  font-size: 0.84rem;
  line-height: 1.7;
}

.ga-footer__columns {
  display: grid;
  align-items: start;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 26px 34px;
}

.ga-footer__columns div {
  display: grid;
  gap: 8px;
  align-content: start;
}

.ga-footer__columns h2 {
  margin: 0 0 8px;
  color: #6e93ff;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.ga-footer__columns a,
.ga-footer__bottom a {
  color: rgba(231, 239, 251, 0.75);
  font-size: 0.78rem;
}

.ga-footer__bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 14px;
  margin-top: 34px;
  padding-top: 16px;
  border-top: 1px solid rgba(214, 227, 245, 0.08);
  color: rgba(220, 230, 244, 0.56);
  font-size: 0.78rem;
}

.ga-footer__bottom span:last-child {
  display: inline-flex;
  gap: 28px;
}

.ga-platform-hero {
  padding: clamp(48px, 6vw, 82px) 0 clamp(64px, 7vw, 94px);
}

.ga-platform-hero__grid {
  display: grid;
  gap: clamp(34px, 5vw, 68px);
  align-items: center;
}

.ga-platform-hero__copy h1 {
  max-width: 18ch;
  margin: 0;
  color: #ffffff;
  font-family: var(--ga-display-font);
  font-size: clamp(1.9rem, 3.1vw, 2.75rem);
  font-weight: 500;
  line-height: 1.07;
  letter-spacing: -0.04em;
}

.ga-platform-hero__copy > p {
  max-width: 36rem;
  margin: 18px 0 0;
  color: rgba(226, 236, 249, 0.78);
  font-size: 0.9rem;
  line-height: 1.65;
}

.ga-platform-hero__points {
  display: grid;
  gap: 22px;
  margin-top: 34px;
}

.ga-platform-hero__points article {
  display: grid;
  grid-template-columns: 40px minmax(0, 1fr);
  gap: 16px;
  align-items: start;
}

.ga-platform-hero__points span,
.ga-platform-feature-list span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #73a0ff;
}

.ga-platform-hero__points span {
  width: 34px;
  height: 34px;
}

.ga-platform-hero__points svg,
.ga-platform-feature-list svg {
  width: 25px;
  height: 25px;
}

.ga-platform-hero__points path,
.ga-platform-feature-list path {
  fill: none;
  stroke: currentColor;
  stroke-width: 1.65;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.ga-platform-hero__points h2,
.ga-platform-feature-list h3 {
  margin: 0;
  color: #ffffff;
  font-size: 1.04rem;
  font-weight: 600;
  letter-spacing: -0.02em;
}

.ga-platform-hero__points p,
.ga-platform-feature-list p {
  margin: 7px 0 0;
  color: rgba(224, 234, 248, 0.76);
  font-size: 0.9rem;
  line-height: 1.65;
}

.ga-platform-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 34px;
}

.ga-platform-console {
  margin: 0;
  border: 1px solid rgba(111, 146, 221, 0.58);
  border-radius: 10px;
  overflow: hidden;
  background:
    radial-gradient(circle at 68% 0%, rgba(72, 116, 250, 0.22), transparent 32%),
    linear-gradient(145deg, rgba(12, 23, 41, 0.96), rgba(4, 12, 23, 0.96));
  box-shadow:
    0 28px 90px rgba(0, 0, 0, 0.46),
    inset 0 1px 0 rgba(255, 255, 255, 0.045);
}

.ga-platform-console img {
  width: 100%;
  height: auto;
}

.ga-platform-console__sidebar {
  display: grid;
  gap: 9px;
  align-content: start;
  padding: 18px 12px;
  border-right: 1px solid rgba(157, 177, 216, 0.12);
  background: rgba(3, 12, 22, 0.42);
}

.ga-platform-console__sidebar span {
  border-radius: 4px;
  padding: 7px 9px;
  color: rgba(227, 236, 249, 0.72);
  font-size: 0.7rem;
}

.ga-platform-console__sidebar .ga-platform-console__brand {
  color: #ffffff;
  font-weight: 700;
}

.ga-platform-console__sidebar .is-active {
  background: linear-gradient(90deg, rgba(70, 111, 244, 0.72), rgba(51, 86, 182, 0.42));
  color: #ffffff;
}

.ga-platform-console__main {
  display: grid;
  gap: 18px;
  padding: clamp(18px, 3vw, 28px);
}

.ga-platform-console__topline {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 14px;
  align-items: center;
}

.ga-platform-console__topline strong {
  color: #ffffff;
  font-size: 1.12rem;
}

.ga-platform-console__topline div {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 9px;
}

.ga-platform-console__topline span {
  border: 1px solid rgba(157, 177, 216, 0.13);
  border-radius: 6px;
  padding: 7px 10px;
  background: rgba(255, 255, 255, 0.035);
  color: rgba(227, 236, 249, 0.72);
  font-size: 0.66rem;
}

.ga-platform-console__metrics,
.ga-platform-console__stats {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.ga-platform-console__metrics article,
.ga-platform-console__charts article,
.ga-platform-console__stats article {
  border: 1px solid rgba(147, 169, 210, 0.12);
  border-radius: 8px;
  background: rgba(10, 22, 38, 0.72);
}

.ga-platform-console__metrics article,
.ga-platform-console__stats article {
  display: grid;
  gap: 5px;
  padding: 16px;
}

.ga-platform-console__metrics span,
.ga-platform-console__stats span {
  color: rgba(224, 234, 248, 0.66);
  font-size: 0.68rem;
}

.ga-platform-console__metrics strong,
.ga-platform-console__stats strong {
  color: #ffffff;
  font-size: clamp(1.2rem, 2vw, 1.55rem);
}

.ga-platform-console__metrics em {
  font-style: normal;
  font-size: 0.66rem;
  font-weight: 700;
}

.is-good {
  color: #61d979 !important;
}

.is-bad {
  color: #ff6476 !important;
}

.ga-platform-console__charts {
  display: grid;
  gap: 12px;
}

.ga-platform-console__charts article {
  padding: 18px;
}

.ga-platform-console__charts strong {
  display: block;
  margin-bottom: 14px;
  color: #ffffff;
  font-size: 0.82rem;
}

.ga-platform-console__donut {
  display: grid;
  grid-template-columns: 116px minmax(0, 1fr);
  gap: 18px;
  align-items: center;
}

.ga-platform-console__donut strong {
  grid-column: 1 / -1;
}

.ga-platform-console__donut div {
  display: grid;
  place-items: center;
  width: 104px;
  aspect-ratio: 1;
  border-radius: 999px;
  background:
    radial-gradient(circle, #07111f 0 46%, transparent 47%),
    conic-gradient(#63c977 0 42%, #466ff4 42% 67%, #dc455b 67% 82%, #9aa7bd 82% 100%);
}

.ga-platform-console__donut div span {
  color: #ffffff;
  font-size: 1.22rem;
  font-weight: 700;
}

.ga-platform-console__donut ul {
  display: grid;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.ga-platform-console__donut li {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  color: rgba(224, 234, 248, 0.72);
  font-size: 0.68rem;
}

.ga-platform-console__line svg {
  width: 100%;
  min-height: 150px;
}

.ga-platform-console__line path {
  fill: none;
  stroke: rgba(210, 226, 255, 0.12);
  stroke-width: 1;
}

.ga-platform-console__line polyline {
  fill: none;
  stroke: #477dff;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 4;
  filter: drop-shadow(0 0 12px rgba(71, 125, 255, 0.42));
}

.ga-platform-section {
  padding: clamp(76px, 8vw, 118px) 0;
  border-top: 1px solid rgba(214, 227, 245, 0.1);
}

.ga-platform-section__intro,
.ga-platform-capabilities {
  display: grid;
  gap: 32px;
}

.ga-platform-section__intro h2,
.ga-platform-capabilities h2,
.ga-platform-cta__band h2 {
  max-width: 16ch;
  margin: 0;
  color: #ffffff;
  font-family: var(--ga-display-font);
  font-size: clamp(1.85rem, 3.4vw, 2.9rem);
  font-weight: 500;
  line-height: 1.12;
  letter-spacing: -0.038em;
}

.ga-platform-section__intro > p,
.ga-platform-cta__band > p {
  max-width: 40rem;
  margin: 0;
  color: rgba(226, 236, 249, 0.76);
  font-size: 1rem;
  line-height: 1.7;
}

.ga-platform-cycle {
  display: grid;
  gap: 28px;
  margin-top: 44px;
}

.ga-platform-cycle article {
  position: relative;
  display: grid;
  justify-items: center;
  text-align: center;
}

.ga-platform-cycle h3 {
  margin: 0;
  color: #ffffff;
  font-size: 1rem;
  font-weight: 600;
}

.ga-platform-cycle p {
  max-width: 11rem;
  margin: 10px auto 0;
  color: rgba(224, 234, 248, 0.74);
  font-size: 0.86rem;
  line-height: 1.7;
}

.ga-platform-section--model {
  padding-top: clamp(62px, 6.5vw, 92px);
  padding-bottom: clamp(70px, 7vw, 102px);
}

.ga-platform-section--model .ga-platform-section__intro {
  gap: clamp(28px, 5vw, 76px);
}

.ga-platform-section--model .ga-platform-section__intro h2 {
  max-width: 22ch;
  font-size: clamp(1.45rem, 2.2vw, 2.05rem);
  line-height: 1.16;
  letter-spacing: -0.03em;
}

.ga-platform-section--capabilities .ga-platform-section__intro h2 {
  max-width: 30ch;
  font-size: clamp(1.45rem, 2.2vw, 2.05rem);
  line-height: 1.16;
  letter-spacing: -0.03em;
}

.ga-platform-section--capabilities .ga-platform-section__intro h2 span {
  display: block;
}

.ga-platform-section--model .ga-platform-section__intro > p {
  max-width: 38rem;
  font-size: 0.92rem;
  line-height: 1.72;
}

.ga-platform-section--model .ga-platform-cycle,
.ga-platform-section--capabilities .ga-platform-feature-list {
  margin-top: clamp(42px, 5vw, 58px);
}

.ga-platform-feature-list {
  display: grid;
  gap: 34px 44px;
}

.ga-platform-feature-list article {
  display: grid;
  grid-template-columns: 54px minmax(0, 1fr);
  gap: 16px;
  align-items: center;
}

.ga-platform-feature-list span {
  width: 48px;
  height: 48px;
  border: 1px solid rgba(91, 132, 255, 0.45);
  border-radius: 8px;
  background: rgba(8, 20, 34, 0.62);
}

.ga-platform-feature-list__copy {
  display: grid;
  gap: 5px;
}

.ga-platform-feature-list h3 {
  align-self: start;
}

.ga-platform-feature-list p {
  margin-top: 0;
}

.ga-platform-capabilities h2 {
  max-width: 18ch;
  font-size: clamp(1.45rem, 2.15vw, 2.05rem);
  line-height: 1.16;
  letter-spacing: -0.03em;
}

.ga-platform-cta {
  padding: 0 0 clamp(58px, 7vw, 92px);
}

.ga-platform-cta__band {
  display: grid;
  gap: 28px;
  align-items: center;
  min-height: 188px;
  padding: clamp(24px, 3.8vw, 38px);
  border: 1px solid rgba(111, 146, 221, 0.52);
  border-radius: 10px;
  background:
    linear-gradient(90deg, rgba(4, 13, 23, 0.97) 0%, rgba(4, 13, 23, 0.86) 42%, rgba(6, 19, 38, 0.44) 100%),
    url("../img/backgrounds/homepage_background.svg") 63% 38% / 116% auto no-repeat;
  overflow: hidden;
}

.ga-platform-cta__band .ga-button {
  margin-top: 22px;
}

.ga-platform-cta__band h2 {
  max-width: 20ch;
  font-size: clamp(1.35rem, 2vw, 1.95rem);
  line-height: 1.16;
  letter-spacing: -0.03em;
}

.ga-platform-cta__band > p {
  max-width: 28rem;
  font-size: 0.9rem;
  line-height: 1.72;
}

.ga-breadcrumb {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  margin-bottom: clamp(34px, 4vw, 48px);
  color: rgba(226, 236, 249, 0.64);
  font-size: 0.82rem;
}

.ga-breadcrumb a {
  color: rgba(226, 236, 249, 0.82);
}

.ga-breadcrumb a:hover,
.ga-breadcrumb a:focus-visible {
  color: #ffffff;
}

.ga-solution-hero {
  padding: clamp(48px, 6vw, 82px) 0 clamp(64px, 7vw, 94px);
}

.ga-solution-hero__grid {
  display: grid;
  gap: clamp(34px, 5vw, 68px);
  align-items: center;
}

.ga-solution-hero__copy {
  max-width: none;
}

.ga-solution-hero__copy h1,
.ga-solution-problem h2,
.ga-solution-model h2,
.ga-solution-action h2 {
  margin: 0;
  color: #ffffff;
  font-family: var(--ga-display-font);
  font-weight: 500;
  letter-spacing: -0.036em;
}

.ga-solution-hero__copy h1 {
  max-width: 18ch;
  margin-top: 12px;
  font-size: clamp(1.9rem, 3.1vw, 2.75rem);
  line-height: 1.07;
  letter-spacing: -0.04em;
}

.ga-solution-hero__copy > p,
.ga-solution-problem > div > p,
.ga-solution-model > div > p,
.ga-solution-action > div > p {
  margin: 18px 0 0;
  color: rgba(226, 236, 249, 0.76);
  font-size: 0.9rem;
  line-height: 1.65;
}

.ga-solution-hero__copy > p {
  max-width: 36rem;
}

.ga-solution-problem > div > p,
.ga-solution-model > div > p,
.ga-solution-action > div > p {
  font-size: 0.92rem;
  line-height: 1.7;
}

.ga-solution-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.ga-asset-console,
.ga-device-panel {
  margin: 0;
  border: 1px solid rgba(111, 146, 221, 0.42);
  border-radius: 10px;
  background:
    radial-gradient(circle at 68% 0%, rgba(72, 116, 250, 0.16), transparent 32%),
    linear-gradient(145deg, rgba(11, 22, 39, 0.94), rgba(4, 12, 23, 0.96));
  box-shadow:
    0 28px 90px rgba(0, 0, 0, 0.38),
    inset 0 1px 0 rgba(255, 255, 255, 0.04);
  overflow: hidden;
}

.ga-asset-console {
  display: grid;
  min-height: 400px;
}

.ga-asset-console--image {
  grid-template-columns: 1fr;
  place-items: stretch;
}

.ga-asset-console--image img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 400px;
  object-fit: cover;
  object-position: center;
}

.ga-asset-console__sidebar {
  display: none;
}

.ga-asset-console__main {
  display: grid;
  gap: 12px;
  min-width: 0;
  padding: clamp(18px, 3vw, 26px);
}

.ga-asset-console__top,
.ga-device-panel__top {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  justify-content: space-between;
}

.ga-asset-console__top strong,
.ga-device-panel__top strong {
  color: #ffffff;
  font-size: 1rem;
  font-weight: 700;
}

.ga-asset-console__top div,
.ga-device-panel__top {
  color: rgba(226, 236, 249, 0.66);
  font-size: 0.68rem;
}

.ga-asset-console__top span,
.ga-device-panel__top button,
.ga-device-panel__top em {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 10px;
  border: 1px solid rgba(157, 177, 216, 0.15);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.035);
  color: rgba(227, 236, 249, 0.75);
  font: inherit;
  font-style: normal;
}

.ga-device-panel__top em {
  border-color: rgba(96, 217, 121, 0.3);
  color: #83dd93;
}

.ga-asset-console__tabs {
  display: flex;
  gap: 16px;
  overflow: auto;
  color: rgba(226, 236, 249, 0.68);
  font-size: 0.7rem;
  scrollbar-width: none;
}

.ga-asset-console__tabs .is-active {
  color: #6f94ff;
}

.ga-asset-console__metrics,
.ga-asset-console__stats,
.ga-device-panel__grid {
  display: grid;
  gap: 10px;
}

.ga-asset-console__metrics {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.ga-asset-console__metrics article,
.ga-asset-console__charts article,
.ga-asset-console__stats span,
.ga-device-panel article,
.ga-question-grid article {
  border: 1px solid rgba(147, 169, 210, 0.13);
  border-radius: 8px;
  background: rgba(8, 20, 34, 0.62);
}

.ga-asset-console__metrics article {
  display: grid;
  gap: 4px;
  padding: 14px;
}

.ga-asset-console__metrics span,
.ga-asset-console__stats span,
.ga-device-panel p {
  color: rgba(224, 234, 248, 0.66);
  font-size: 0.68rem;
}

.ga-asset-console__metrics strong {
  color: #ffffff;
  font-size: clamp(1.25rem, 2vw, 1.65rem);
}

.ga-asset-console__metrics em {
  font-size: 0.65rem;
  font-style: normal;
  font-weight: 700;
}

.ga-asset-console__charts {
  display: grid;
  gap: 10px;
}

.ga-asset-console__charts article {
  padding: 16px;
}

.ga-asset-console__charts strong,
.ga-device-panel h3 {
  display: block;
  margin: 0 0 12px;
  color: #ffffff;
  font-size: 0.78rem;
}

.ga-asset-donut {
  display: grid;
  grid-template-columns: 92px minmax(0, 1fr);
  gap: 14px;
  align-items: center;
}

.ga-asset-donut strong {
  grid-column: 1 / -1;
}

.ga-asset-donut div {
  display: grid;
  place-items: center;
  width: 88px;
  aspect-ratio: 1;
  border-radius: 999px;
  background:
    radial-gradient(circle, #07111f 0 47%, transparent 48%),
    conic-gradient(#54d27b 0 34%, #4778ff 34% 66%, #f5a524 66% 81%, #7f5cff 81% 100%);
}

.ga-asset-donut div span {
  color: #ffffff;
  font-size: 1rem;
  font-weight: 700;
}

.ga-asset-donut ul,
.ga-solution-action ul {
  display: grid;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.ga-asset-donut li,
.ga-asset-bars p {
  display: grid;
  grid-template-columns: minmax(70px, 0.8fr) minmax(60px, 1fr) auto;
  gap: 8px;
  align-items: center;
  margin: 0;
  color: rgba(224, 234, 248, 0.72);
  font-size: 0.66rem;
}

.ga-asset-bars {
  display: grid;
  gap: 12px;
}

.ga-asset-bars i {
  display: block;
  height: 5px;
  border-radius: 999px;
  background: linear-gradient(90deg, #4778ff var(--bar), rgba(255, 255, 255, 0.1) var(--bar));
}

.ga-asset-console__stats {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.ga-asset-console__stats span {
  display: grid;
  gap: 4px;
  padding: 12px;
}

.ga-asset-console__stats b {
  color: #ffffff;
  font-size: 1rem;
}

.ga-solution-section {
  padding: clamp(64px, 7vw, 96px) 0;
  border-top: 1px solid rgba(214, 227, 245, 0.1);
}

.ga-solution-problem,
.ga-solution-model,
.ga-solution-action {
  display: grid;
  gap: clamp(32px, 5vw, 58px);
}

.ga-solution-problem h2,
.ga-solution-model h2,
.ga-solution-action h2 {
  max-width: 18ch;
  font-size: clamp(1.45rem, 2.2vw, 2.1rem);
  line-height: 1.14;
}

.ga-solution-points,
.ga-solution-steps,
.ga-question-grid {
  display: grid;
  gap: 22px;
}

.ga-solution-points article,
.ga-solution-steps article,
.ga-question-grid article {
  display: grid;
  gap: 14px;
}

.ga-solution-points article {
  grid-template-columns: 66px minmax(0, 1fr);
  align-items: center;
}

.ga-solution-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 58px;
  height: 58px;
  border: 1px solid rgba(91, 132, 255, 0.45);
  border-radius: 50%;
  background:
    radial-gradient(circle at 34% 18%, rgba(122, 158, 255, 0.2), transparent 40%),
    rgba(8, 20, 34, 0.62);
  color: #82a7ff;
}

.ga-solution-icon svg {
  width: 28px;
  height: 28px;
}

.ga-solution-icon path {
  fill: none;
  stroke: currentColor;
  stroke-width: 1.65;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.ga-solution-points h3,
.ga-solution-steps h3 {
  margin: 0;
  color: #ffffff;
  font-size: 1rem;
  font-weight: 700;
}

.ga-solution-points p,
.ga-solution-steps p,
.ga-question-grid p {
  margin: 6px 0 0;
  color: rgba(224, 234, 248, 0.74);
  font-size: 0.86rem;
  line-height: 1.62;
}

.ga-solution-steps article {
  position: relative;
  justify-items: center;
  gap: 10px;
  text-align: center;
}

.ga-solution-steps h3 {
  max-width: 17ch;
}

.ga-solution-steps p {
  max-width: 22ch;
  margin-top: 0;
}

.ga-device-panel {
  padding: clamp(16px, 3vw, 24px);
}

.ga-device-panel__grid {
  margin-top: 16px;
}

.ga-device-panel article {
  padding: 16px;
}

.ga-device-panel p {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  margin: 7px 0 0;
}

.ga-device-panel b {
  color: rgba(245, 249, 255, 0.9);
  font-weight: 600;
  text-align: right;
}

.ga-solution-action li {
  position: relative;
  padding-left: 30px;
  color: rgba(226, 236, 249, 0.78);
  font-size: 0.88rem;
  line-height: 1.6;
}

.ga-solution-action li::before {
  content: "";
  position: absolute;
  top: 5px;
  left: 0;
  width: 15px;
  height: 15px;
  border: 1px solid #4778ff;
  border-radius: 999px;
  background: radial-gradient(circle, #4778ff 0 3px, transparent 4px);
}

.ga-question-grid {
  margin-top: 18px;
  grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
}

.ga-question-grid article {
  grid-template-columns: 44px minmax(0, 1fr);
  align-items: center;
  padding: 18px;
}

.ga-question-grid .ga-solution-icon {
  width: 36px;
  height: 36px;
}

.ga-question-grid .ga-solution-icon svg {
  width: 20px;
  height: 20px;
}

.ga-question-grid p {
  margin: 0;
  font-size: 0.8rem;
}

.ga-page-asset-inventory .ga-asset-console--image {
  min-height: auto;
}

.ga-page-asset-inventory .ga-asset-console--image img {
  height: auto;
  min-height: 0;
}

.ga-page-asset-inventory .ga-solution-model .ga-solution-steps h3 {
  max-width: 16ch;
}

.ga-page-software-inventory .ga-solution-model .ga-solution-steps h3 {
  max-width: 17ch;
}

.ga-control-console .ga-asset-donut div {
  background:
    radial-gradient(circle, #07111f 0 47%, transparent 48%),
    conic-gradient(#54d27b 0 48%, #4778ff 48% 67%, #f5a524 67% 82%, #7f5cff 82% 100%);
}

.ga-control-list {
  display: grid;
  gap: 10px;
  padding: 16px;
}

.ga-control-list p {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 10px;
  align-items: center;
  margin: 0;
  color: rgba(224, 234, 248, 0.74);
  font-size: 0.68rem;
}

.ga-control-list p::before {
  content: "!";
  display: inline-grid;
  place-items: center;
  width: 16px;
  height: 16px;
  margin-right: 6px;
  border: 1px solid rgba(255, 100, 118, 0.54);
  border-radius: 50%;
  color: #ff6476;
  font-size: 0.66rem;
  font-weight: 800;
}

.ga-control-list span {
  display: inline-flex;
  align-items: center;
}

.ga-control-list b {
  color: #ffffff;
}

.ga-control-list a {
  margin-top: 4px;
  color: #73a0ff;
  font-size: 0.7rem;
  font-weight: 600;
}

.ga-capability-grid {
  display: grid;
  gap: 16px;
}

.ga-capability-grid article {
  display: grid;
  gap: 14px;
  padding: 22px;
  border: 1px solid rgba(139, 166, 213, 0.22);
  border-radius: 8px;
  background:
    radial-gradient(circle at 18% 0%, rgba(75, 119, 255, 0.1), transparent 38%),
    linear-gradient(180deg, rgba(8, 20, 34, 0.68), rgba(3, 11, 21, 0.64));
}

.ga-capability-grid h3 {
  margin: 0;
  color: #ffffff;
  font-size: 1rem;
  font-weight: 700;
}

.ga-capability-grid p {
  margin: 0;
  color: rgba(224, 234, 248, 0.74);
  font-size: 0.84rem;
  line-height: 1.62;
}

.ga-solution-icon--warning {
  color: #f5a524;
}

.ga-control-panel {
  margin: 0;
  padding: clamp(16px, 3vw, 24px);
  border: 1px solid rgba(111, 146, 221, 0.42);
  border-radius: 10px;
  background:
    radial-gradient(circle at 86% 46%, rgba(71, 120, 255, 0.2), transparent 30%),
    linear-gradient(145deg, rgba(11, 22, 39, 0.94), rgba(4, 12, 23, 0.96));
  overflow: hidden;
}

.ga-control-panel__body {
  display: grid;
  gap: 22px;
  align-items: center;
  margin-top: 18px;
}

.ga-control-table {
  min-width: 0;
  overflow: auto;
}

.ga-control-table > div {
  display: grid;
  grid-template-columns: minmax(150px, 1.2fr) minmax(130px, 1fr) repeat(4, minmax(70px, 0.5fr));
  gap: 10px;
  align-items: center;
  min-width: 680px;
  padding: 10px 0;
  border-bottom: 1px solid rgba(147, 169, 210, 0.11);
  color: rgba(224, 234, 248, 0.72);
  font-size: 0.72rem;
}

.ga-control-table > div:first-child {
  color: rgba(224, 234, 248, 0.58);
  font-size: 0.68rem;
}

.ga-control-table span,
.ga-control-table b {
  color: rgba(245, 249, 255, 0.9);
}

.ga-control-table em {
  font-style: normal;
  font-weight: 700;
}

.ga-control-shield {
  display: grid;
  place-items: center;
  min-height: 190px;
  border-radius: 10px;
  background:
    radial-gradient(circle at 50% 50%, rgba(71, 120, 255, 0.32), transparent 58%),
    radial-gradient(ellipse at 50% 86%, rgba(71, 120, 255, 0.24), transparent 52%);
}

.ga-control-shield svg {
  width: min(150px, 55vw);
  filter: drop-shadow(0 0 22px rgba(71, 120, 255, 0.48));
}

.ga-control-shield path:first-child {
  fill: rgba(33, 78, 168, 0.44);
  stroke: #78a4ff;
  stroke-width: 3;
}

.ga-control-shield path:last-child {
  fill: none;
  stroke: #80d8ff;
  stroke-width: 8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.ga-software-metrics {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.ga-software-donut div {
  background:
    radial-gradient(circle, #07111f 0 47%, transparent 48%),
    conic-gradient(#4778ff 0 31%, #54d27b 31% 55%, #f5a524 55% 73%, #7f5cff 73% 88%, #9aa7bd 88% 100%);
}

.ga-software-ring div {
  background:
    radial-gradient(circle, #07111f 0 47%, transparent 48%),
    conic-gradient(#54d27b 0 84%, #f5a524 84% 93%, #ff6476 93% 100%);
}

.ga-software-risk-list p::before {
  border-color: rgba(245, 165, 36, 0.58);
  color: #f5a524;
}

.ga-software-panel {
  margin: 0;
  padding: clamp(16px, 3vw, 24px);
  border: 1px solid rgba(111, 146, 221, 0.42);
  border-radius: 10px;
  background:
    radial-gradient(circle at 92% 80%, rgba(71, 120, 255, 0.2), transparent 34%),
    linear-gradient(145deg, rgba(11, 22, 39, 0.94), rgba(4, 12, 23, 0.96));
  overflow: hidden;
}

.ga-software-table {
  margin-top: 18px;
}

.ga-software-table > div {
  grid-template-columns:
    minmax(150px, 1.2fr)
    minmax(110px, 0.85fr)
    minmax(72px, 0.5fr)
    minmax(76px, 0.55fr)
    minmax(96px, 0.65fr)
    minmax(94px, 0.68fr)
    minmax(80px, 0.55fr);
  min-width: 820px;
}

.ga-software-table em.is-good {
  color: #66d987;
}

.ga-software-table em.is-bad {
  color: #ff6476;
}

.ga-identity-metrics {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.ga-identity-donut div {
  background:
    radial-gradient(circle, #07111f 0 47%, transparent 48%),
    conic-gradient(#4778ff 0 34%, #54d27b 34% 84%, #f5a524 84% 95%, #9aa7bd 95% 100%);
}

.ga-identity-risk-donut div {
  background:
    radial-gradient(circle, #07111f 0 47%, transparent 48%),
    conic-gradient(#ff6476 0 4%, #f5a524 4% 20%, #54d27b 20% 44%, #7ee39a 44% 100%);
}

.ga-identity-app-bars {
  display: grid;
  gap: 10px;
  padding: 16px;
}

.ga-identity-app-bars p {
  display: grid;
  grid-template-columns: minmax(76px, 0.8fr) minmax(72px, 1fr) auto;
  gap: 8px;
  align-items: center;
  margin: 0;
  color: rgba(224, 234, 248, 0.72);
  font-size: 0.66rem;
}

.ga-identity-app-bars i {
  display: block;
  height: 5px;
  border-radius: 999px;
  background: linear-gradient(90deg, #4778ff var(--bar), rgba(255, 255, 255, 0.1) var(--bar));
}

.ga-identity-app-bars b {
  color: #ffffff;
}

.ga-identity-app-bars a {
  margin-top: 4px;
  color: #73a0ff;
  font-size: 0.7rem;
  font-weight: 600;
}

.ga-identity-profile {
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr) auto;
  gap: 14px;
  align-items: center;
}

.ga-identity-profile > span {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background:
    radial-gradient(circle at 36% 22%, rgba(220, 230, 255, 0.26), transparent 36%),
    rgba(143, 161, 196, 0.36);
  color: #ffffff;
  font-weight: 700;
}

.ga-identity-profile strong {
  display: block;
  color: #ffffff;
  font-size: 1.25rem;
}

.ga-identity-profile p {
  margin: 4px 0 0;
  color: rgba(224, 234, 248, 0.66);
  font-size: 0.72rem;
}

.ga-identity-profile em {
  padding: 5px 9px;
  border-radius: 999px;
  background: rgba(96, 217, 121, 0.13);
  color: #66d987;
  font-size: 0.68rem;
  font-style: normal;
  font-weight: 700;
}

.ga-identity-detail__grid {
  display: grid;
  gap: 10px;
}

.ga-migration-metrics {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.ga-migration-progress {
  display: grid;
  gap: 10px;
  padding: 16px;
}

.ga-migration-progress p {
  display: grid;
  grid-template-columns: minmax(112px, 0.8fr) minmax(120px, 1.4fr) auto;
  gap: 10px;
  align-items: center;
  margin: 0;
  color: rgba(224, 234, 248, 0.74);
  font-size: 0.66rem;
}

.ga-migration-progress i {
  display: flex;
  height: 12px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
}

.ga-migration-progress i b {
  display: block;
  width: var(--w);
  min-width: 3px;
}

.ga-migration-progress i b:nth-child(1) {
  background: #9aa7bd;
}

.ga-migration-progress i b:nth-child(2) {
  background: #4778ff;
}

.ga-migration-progress i b:nth-child(3) {
  background: #f5a524;
}

.ga-migration-progress i b:nth-child(4) {
  background: #54d27b;
}

.ga-migration-progress em {
  color: #ffffff;
  font-style: normal;
  font-weight: 700;
}

.ga-migration-progress a {
  margin-top: 6px;
  color: #73a0ff;
  font-size: 0.7rem;
  font-weight: 600;
}

.ga-migration-phase-donut div {
  background:
    radial-gradient(circle, #07111f 0 47%, transparent 48%),
    conic-gradient(#4778ff 0 17%, #54d27b 17% 34%, #f5a524 34% 78%, #7f5cff 78% 89%, #62dca2 89% 100%);
}

.ga-migration-status-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.ga-migration-progress-line {
  position: relative;
  display: grid;
  grid-template-columns: repeat(5, minmax(90px, 1fr));
  gap: 10px;
  overflow: auto;
  padding: 20px 4px 6px;
}

.ga-migration-progress-line::before {
  content: "";
  position: absolute;
  top: 29px;
  left: 9%;
  right: 9%;
  height: 2px;
  background: linear-gradient(90deg, #54d27b 0 42%, #4778ff 42% 58%, rgba(157, 177, 216, 0.2) 58% 100%);
}

.ga-migration-progress-line span {
  position: relative;
  display: grid;
  justify-items: center;
  gap: 14px;
  color: rgba(224, 234, 248, 0.68);
  font-size: 0.68rem;
  text-align: center;
}

.ga-migration-progress-line span::before {
  content: "";
  position: relative;
  z-index: 1;
  width: 14px;
  height: 14px;
  border: 2px solid rgba(157, 177, 216, 0.5);
  border-radius: 50%;
  background: #081423;
}

.ga-migration-progress-line .is-complete::before {
  border-color: #54d27b;
  background: #54d27b;
}

.ga-migration-progress-line .is-active::before {
  border-color: #4778ff;
  background: #4778ff;
  box-shadow: 0 0 0 4px rgba(71, 120, 255, 0.18);
}

.ga-migration-detail__grid {
  display: grid;
  gap: 10px;
}

.ga-exposure-metrics {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.ga-exposure-score {
  justify-items: start;
}

.ga-exposure-score div {
  display: grid;
  place-items: center;
  width: 72px;
  aspect-ratio: 1;
  border-radius: 50%;
  background:
    radial-gradient(circle, #07111f 0 54%, transparent 55%),
    conic-gradient(#ff6476 0 28%, #f5a524 28% 58%, #54d27b 58% 72%, rgba(255, 255, 255, 0.11) 72% 100%);
}

.ga-exposure-score div strong {
  font-size: 1.35rem;
  line-height: 1;
}

.ga-exposure-score div em {
  color: rgba(224, 234, 248, 0.58);
  font-size: 0.58rem;
  font-weight: 700;
}

.ga-exposure-score small {
  color: #ff9b72;
  font-size: 0.66rem;
  font-weight: 700;
}

.ga-exposure-type-donut div {
  background:
    radial-gradient(circle, #07111f 0 47%, transparent 48%),
    conic-gradient(#4778ff 0 25%, #54d27b 25% 54%, #7f5cff 54% 74%, #9aa7bd 74% 100%);
}

.ga-exposure-risk-donut div {
  background:
    radial-gradient(circle, #07111f 0 47%, transparent 48%),
    conic-gradient(#ff3f4f 0 15%, #f5a524 15% 59%, #ffb84d 59% 86%, #54d27b 86% 96%, #9aa7bd 96% 100%);
}

.ga-exposure-stats {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.ga-exposure-panel {
  margin: 0;
  padding: clamp(16px, 3vw, 24px);
  border: 1px solid rgba(111, 146, 221, 0.42);
  border-radius: 10px;
  background:
    radial-gradient(circle at 92% 80%, rgba(71, 120, 255, 0.18), transparent 34%),
    linear-gradient(145deg, rgba(11, 22, 39, 0.94), rgba(4, 12, 23, 0.96));
  overflow: hidden;
}

.ga-exposure-panel__body {
  display: grid;
  gap: 18px;
  margin-top: 18px;
}

.ga-exposure-table > div {
  grid-template-columns:
    minmax(70px, 0.55fr)
    minmax(150px, 1.25fr)
    minmax(118px, 0.9fr)
    minmax(96px, 0.75fr)
    minmax(92px, 0.65fr)
    minmax(60px, 0.45fr)
    minmax(58px, 0.45fr);
  min-width: 850px;
}

.ga-exposure-table em {
  display: inline-flex;
  justify-content: center;
  width: fit-content;
  min-width: 54px;
  padding: 4px 8px;
  border-radius: 6px;
  font-size: 0.64rem;
}

.ga-exposure-table .is-critical {
  background: rgba(255, 63, 79, 0.12);
  color: #ff6476;
}

.ga-exposure-table .is-high {
  background: rgba(245, 116, 36, 0.13);
  color: #ff9b72;
}

.ga-exposure-table .is-medium {
  background: rgba(245, 165, 36, 0.13);
  color: #f5a524;
}

.ga-exposure-table .is-low,
.ga-exposure-table .is-good {
  background: rgba(84, 210, 123, 0.12);
  color: #66d987;
}

.ga-exposure-table .is-bad {
  color: #ff6476;
}

.ga-exposure-details {
  display: grid;
  gap: 9px;
  padding: 16px;
  border: 1px solid rgba(147, 169, 210, 0.13);
  border-radius: 8px;
  background: rgba(8, 20, 34, 0.62);
}

.ga-exposure-details strong,
.ga-exposure-details h3,
.ga-exposure-details h4 {
  margin: 0;
  color: #ffffff;
}

.ga-exposure-details > em {
  width: fit-content;
  padding: 4px 8px;
  border-radius: 6px;
  background: rgba(255, 63, 79, 0.12);
  color: #ff6476;
  font-size: 0.64rem;
  font-style: normal;
  font-weight: 700;
}

.ga-exposure-details p,
.ga-exposure-details dt {
  margin: 0;
  color: rgba(224, 234, 248, 0.68);
  font-size: 0.72rem;
  line-height: 1.55;
}

.ga-exposure-details dl {
  display: grid;
  gap: 7px;
  margin: 4px 0 0;
}

.ga-exposure-details dl div {
  display: flex;
  justify-content: space-between;
  gap: 14px;
}

.ga-exposure-details dd {
  margin: 0;
  color: rgba(245, 249, 255, 0.9);
  font-size: 0.72rem;
  font-weight: 700;
  text-align: right;
}

.ga-exposure-details .ga-button {
  min-height: 40px;
  margin-top: 4px;
}

.ga-drift-metrics {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.ga-drift-line {
  display: grid;
  gap: 10px;
  padding: 16px;
}

.ga-drift-line svg {
  width: 100%;
  min-height: 130px;
}

.ga-drift-line path {
  fill: none;
  stroke: rgba(210, 226, 255, 0.12);
  stroke-width: 1;
}

.ga-drift-line polyline {
  fill: none;
  stroke: #477dff;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 4;
  filter: drop-shadow(0 0 12px rgba(71, 125, 255, 0.42));
}

.ga-drift-line .is-critical {
  stroke: #ff6476;
}

.ga-drift-line a {
  color: #73a0ff;
  font-size: 0.7rem;
  font-weight: 600;
}

.ga-drift-donut div {
  background:
    radial-gradient(circle, #07111f 0 47%, transparent 48%),
    conic-gradient(#ff3f4f 0 28%, #f5a524 28% 62%, #4778ff 62% 84%, #54d27b 84% 96%, #9aa7bd 96% 100%);
}

.ga-solution-steps--five {
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
}

.ga-drift-findings {
  display: grid;
  gap: 0;
  margin: 0;
  border: 1px solid rgba(111, 146, 221, 0.42);
  border-radius: 10px;
  background:
    radial-gradient(circle at 84% 30%, rgba(71, 120, 255, 0.14), transparent 32%),
    linear-gradient(145deg, rgba(11, 22, 39, 0.94), rgba(4, 12, 23, 0.96));
  overflow: hidden;
}

.ga-drift-findings__table,
.ga-drift-details {
  padding: clamp(16px, 2.4vw, 22px);
}

.ga-drift-details {
  border-top: 1px solid rgba(147, 169, 210, 0.13);
  background: rgba(5, 13, 24, 0.54);
}

.ga-drift-details div {
  display: grid;
  gap: 8px;
  margin-bottom: 18px;
}

.ga-drift-details div span,
.ga-drift-table em {
  display: inline-flex;
  width: fit-content;
  min-height: 22px;
  align-items: center;
  padding: 0 8px;
  border-radius: 5px;
  background: rgba(255, 100, 118, 0.12);
  color: #ff6476;
  font-size: 0.68rem;
  font-style: normal;
  font-weight: 700;
}

.ga-drift-details div strong {
  color: #ffffff;
  font-size: 0.95rem;
}

.ga-drift-details p {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  margin: 9px 0 0;
  color: rgba(224, 234, 248, 0.66);
  font-size: 0.74rem;
}

.ga-drift-details b {
  color: rgba(245, 249, 255, 0.9);
  text-align: right;
}

.ga-drift-details h3 {
  margin: 20px 0 0;
  color: #ffffff;
  font-size: 0.8rem;
}

.ga-drift-details .ga-button {
  width: 100%;
  margin-top: 18px;
}

.ga-drift-table > div {
  grid-template-columns: minmax(72px, 0.5fr) minmax(210px, 1.4fr) minmax(100px, 0.8fr) minmax(120px, 0.9fr) minmax(100px, 0.8fr) minmax(90px, 0.7fr);
  min-width: 780px;
}

.ga-drift-table em:not(.is-bad):not(.is-good) {
  background: rgba(245, 165, 36, 0.12);
  color: #f5a524;
}

.ga-solution-final-cta--drift .ga-platform-cta__band {
  background:
    linear-gradient(90deg, rgba(4, 13, 23, 0.98) 0%, rgba(4, 13, 23, 0.9) 44%, rgba(6, 19, 38, 0.5) 100%),
    radial-gradient(ellipse at 84% 72%, rgba(71, 120, 255, 0.28), transparent 36%),
    linear-gradient(135deg, transparent 54%, rgba(71, 120, 255, 0.3) 55%, transparent 57%),
    linear-gradient(160deg, transparent 60%, rgba(117, 221, 255, 0.22) 61%, transparent 64%),
    linear-gradient(180deg, rgba(10, 23, 42, 0.92), rgba(4, 12, 23, 0.92));
}

.ga-solution-final-cta {
  padding: 0 0 clamp(50px, 6vw, 76px);
}

.ga-solution-final-cta .ga-platform-cta__band {
  align-items: center;
}

.ga-solution-final-cta .ga-platform-cta__band h2 {
  max-width: 32ch;
}

.ga-solution-final-cta .ga-platform-cta__band p {
  margin: 10px 0 0;
  color: rgba(226, 236, 249, 0.76);
  font-size: 0.9rem;
  line-height: 1.6;
}

.ga-company-hero {
  position: relative;
  min-height: min(760px, calc(100vh - 84px));
  overflow: visible;
  padding: clamp(72px, 9vw, 124px) 0 clamp(58px, 7vw, 92px);
  background:
    linear-gradient(180deg, rgba(8, 12, 20, 0.38), rgba(6, 9, 15, 0.7) 72%, rgba(6, 9, 15, 0.92) 100%),
    linear-gradient(90deg, rgba(6, 9, 15, 0.92) 0%, rgba(6, 9, 15, 0.84) 22%, rgba(6, 9, 15, 0.62) 38%, rgba(6, 9, 15, 0.22) 56%, rgba(6, 9, 15, 0.06) 76%, rgba(6, 9, 15, 0) 100%),
    linear-gradient(180deg, var(--ga-bg-top) 0%, #070b12 36%, var(--ga-bg) 100%);
  border-bottom: 1px solid rgba(214, 227, 245, 0.1);
}

.ga-company-hero__visual {
  position: absolute;
  top: -120px;
  right: 0;
  bottom: 0;
  left: 0;
  pointer-events: none;
  isolation: isolate;
  background:
    linear-gradient(90deg, rgba(6, 9, 15, 0.96) 0%, rgba(6, 9, 15, 0.94) 18%, rgba(6, 9, 15, 0.86) 30%, rgba(6, 9, 15, 0.64) 40%, rgba(6, 9, 15, 0.28) 54%, rgba(6, 9, 15, 0.08) 72%, rgba(6, 9, 15, 0) 100%),
    url("../img/backgrounds/homepage_background.svg") 84% 44% / cover no-repeat;
  opacity: 1;
}

.ga-company-hero__visual::before,
.ga-company-hero__visual::after {
  content: "";
  position: absolute;
  pointer-events: none;
}

.ga-company-hero__visual::before {
  top: 4%;
  right: 8%;
  width: min(28vw, 320px);
  height: min(28vw, 320px);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(213, 231, 255, 0.16) 0%, rgba(173, 203, 250, 0.1) 32%, rgba(121, 166, 236, 0.06) 54%, transparent 76%);
  filter: blur(22px);
  opacity: 0.56;
}

.ga-company-hero__visual::after {
  right: 6%;
  bottom: 16%;
  width: min(44vw, 560px);
  height: 128px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(219, 230, 246, 0.15), rgba(219, 230, 246, 0.018) 60%, transparent 76%);
  filter: blur(30px);
  opacity: 0.24;
}

.ga-company-hero .ga-container {
  position: relative;
  z-index: 1;
}

.ga-company-hero__copy {
  max-width: 34rem;
}

.ga-company-hero h1,
.ga-company-section h2,
.ga-company-final h2 {
  margin: 0;
  color: #ffffff;
  font-family: var(--ga-display-font);
  font-weight: 500;
  letter-spacing: -0.038em;
}

.ga-company-hero h1 {
  max-width: 15ch;
  margin-top: 14px;
  font-size: clamp(2.2rem, 5.4vw, 4.25rem);
  line-height: 1.02;
}

.ga-company-hero p,
.ga-company-copy p,
.ga-company-two-up p,
.ga-company-checks li,
.ga-company-belief-grid p {
  color: rgba(226, 236, 249, 0.76);
  font-size: 0.92rem;
  line-height: 1.72;
}

.ga-company-hero p {
  margin: 18px 0 0;
}

.ga-company-hero__lead {
  color: rgba(244, 248, 255, 0.9);
  font-size: 1rem;
}

.ga-company-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.ga-company-section {
  padding: clamp(54px, 6vw, 78px) 0;
  border-bottom: 1px solid rgba(214, 227, 245, 0.1);
}

.ga-company-split,
.ga-company-two-up,
.ga-company-beliefs {
  display: grid;
  gap: clamp(28px, 5vw, 64px);
}

.ga-company-section__heading {
  display: grid;
  gap: 18px;
  align-content: start;
}

.ga-company-section__heading h2 {
  max-width: 16ch;
  font-size: clamp(1.35rem, 2.1vw, 1.95rem);
  line-height: 1.12;
}

.ga-company-section__heading i {
  display: block;
  width: 44px;
  height: 2px;
  margin-top: 18px;
  background: #5f8cff;
  box-shadow: 0 0 16px rgba(95, 140, 255, 0.48);
}

.ga-company-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 74px;
  height: 74px;
  border: 1px solid rgba(91, 132, 255, 0.18);
  border-radius: 50%;
  background:
    radial-gradient(circle at 38% 24%, rgba(124, 155, 255, 0.2), transparent 42%),
    rgba(12, 24, 43, 0.58);
  color: #8daaff;
}

.ga-company-icon svg {
  width: 32px;
  height: 32px;
}

.ga-company-icon path {
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.65;
}

.ga-company-copy {
  max-width: 48rem;
}

.ga-company-copy p,
.ga-company-two-up p {
  margin: 0;
}

.ga-company-copy p + p,
.ga-company-two-up p + p {
  margin-top: 18px;
}

.ga-company-copy strong,
.ga-company-checks strong {
  color: rgba(248, 251, 255, 0.94);
  font-weight: 700;
}

.ga-company-beliefs {
  grid-template-columns: 1fr;
}

.ga-company-belief-grid {
  display: grid;
  gap: 0;
}

.ga-company-belief-grid article {
  display: grid;
  gap: 14px;
  padding: 24px 0;
  border-bottom: 1px solid rgba(147, 169, 210, 0.12);
}

.ga-company-belief-grid .ga-company-icon {
  width: 48px;
  height: 48px;
  border-color: transparent;
  background: transparent;
}

.ga-company-belief-grid .ga-company-icon svg {
  width: 30px;
  height: 30px;
}

.ga-company-belief-grid h3 {
  margin: 0;
  color: #ffffff;
  font-size: 0.98rem;
  line-height: 1.35;
}

.ga-company-belief-grid p {
  margin: 0;
  font-size: 0.82rem;
}

.ga-company-copy .ga-button {
  width: fit-content;
  margin-top: 24px;
}

.ga-company-two-up article {
  display: grid;
  gap: 22px;
}

.ga-company-checks {
  display: grid;
  gap: 16px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.ga-company-checks li {
  position: relative;
  margin: 0;
  padding-left: 34px;
}

.ga-company-checks li::before {
  content: "";
  position: absolute;
  top: 4px;
  left: 0;
  width: 18px;
  height: 18px;
  border: 1px solid rgba(120, 153, 255, 0.72);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(120, 153, 255, 0.8) 0 3px, transparent 4px);
}

.ga-company-final .ga-platform-cta__band div > p:not(.ga-eyebrow) {
  max-width: 32rem;
  margin: 10px 0 0;
  color: rgba(226, 236, 249, 0.76);
  font-size: 0.9rem;
  line-height: 1.6;
}

.ga-legal-hero {
  padding: clamp(42px, 6vw, 72px) 0 clamp(42px, 6vw, 68px);
  border-bottom: 1px solid rgba(214, 227, 245, 0.1);
  background:
    radial-gradient(circle at 78% 10%, rgba(80, 124, 255, 0.12), transparent 30%),
    linear-gradient(180deg, rgba(7, 14, 26, 0.94), rgba(4, 13, 23, 0.96));
}

body.ga-page-privacy .ga-header,
body.ga-page-terms .ga-header {
  padding-bottom: clamp(18px, 3vw, 30px);
}

.ga-legal-hero h1 {
  margin: 0;
  max-width: 14ch;
  color: #ffffff;
  font-family: var(--ga-display-font);
  font-size: clamp(2.25rem, 5vw, 4.1rem);
  font-weight: 500;
  line-height: 1.02;
  letter-spacing: -0.04em;
}

.ga-legal-hero p:not(.ga-eyebrow) {
  margin: 18px 0 0;
  color: rgba(226, 236, 249, 0.72);
  font-size: 0.9rem;
}

.ga-legal-section {
  padding: clamp(42px, 6vw, 72px) 0;
  border-bottom: 1px solid rgba(214, 227, 245, 0.1);
}

.ga-legal-layout {
  display: grid;
  gap: clamp(34px, 5vw, 64px);
}

.ga-legal-sidebar {
  display: grid;
  gap: 18px;
  align-content: start;
  padding: 0 0 28px;
  border-bottom: 1px solid rgba(147, 169, 210, 0.12);
}

.ga-legal-sidebar h2 {
  margin: 0;
  color: #6e93ff;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.ga-legal-sidebar ol {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0 0 0 36px;
  color: rgba(226, 236, 249, 0.62);
  font-size: 0.78rem;
  line-height: 1.45;
  list-style-position: outside;
}

.ga-legal-sidebar li {
  padding-left: 4px;
  font-variant-numeric: tabular-nums;
}

.ga-legal-sidebar a {
  color: rgba(231, 239, 251, 0.76);
}

.ga-legal-sidebar a:hover,
.ga-legal-sidebar a:focus-visible,
.ga-legal-content a:hover,
.ga-legal-content a:focus-visible {
  color: #ffffff;
}

.ga-legal-print {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  min-height: 40px;
  padding: 0 14px;
  border: 1px solid rgba(126, 153, 255, 0.32);
  border-radius: 7px;
  background: rgba(70, 111, 244, 0.08);
  color: rgba(241, 246, 255, 0.9);
  font: inherit;
  font-size: 0.78rem;
  font-weight: 650;
  cursor: pointer;
}

.ga-legal-print:hover,
.ga-legal-print:focus-visible {
  border-color: rgba(126, 153, 255, 0.52);
  background: rgba(70, 111, 244, 0.14);
  color: #ffffff;
}

.ga-legal-content {
  max-width: 54rem;
}

.ga-legal-content > p,
.ga-legal-content section p {
  margin: 0;
  color: rgba(226, 236, 249, 0.76);
  font-size: 0.9rem;
  line-height: 1.72;
}

.ga-legal-content > p + p,
.ga-legal-content section p + p {
  margin-top: 14px;
}

.ga-legal-content ul {
  display: grid;
  gap: 7px;
  margin: 12px 0 0;
  padding-left: 20px;
  color: rgba(226, 236, 249, 0.76);
  font-size: 0.9rem;
  line-height: 1.62;
}

.ga-legal-content ul + p {
  margin-top: 14px;
}

.ga-legal-content section {
  scroll-margin-top: 32px;
  margin-top: 28px;
}

.ga-legal-content h2 {
  margin: 0 0 10px;
  color: #ffffff;
  font-family: var(--ga-display-font);
  font-size: clamp(1.2rem, 1.7vw, 1.48rem);
  font-weight: 500;
  line-height: 1.18;
  letter-spacing: -0.028em;
}

.ga-legal-content strong {
  color: rgba(248, 251, 255, 0.94);
}

.ga-legal-content a {
  color: #82a7ff;
}

.ga-legal-final {
  padding-top: clamp(34px, 5vw, 58px);
  padding-bottom: clamp(34px, 4.5vw, 56px);
}

.ga-legal-final .ga-platform-cta__band div > p:not(.ga-eyebrow) {
  max-width: 32rem;
  margin: 10px 0 0;
  color: rgba(226, 236, 249, 0.76);
  font-size: 0.9rem;
  line-height: 1.6;
}

body.ga-modal-open {
  overflow: hidden;
}

.ga-modal {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: grid;
  place-items: center;
  padding: clamp(12px, 2.4vw, 28px);
}

.ga-modal[aria-hidden="true"] {
  display: none;
}

.ga-modal__backdrop {
  position: fixed;
  inset: 0;
  background:
    radial-gradient(circle at 50% 18%, rgba(54, 92, 170, 0.24), transparent 34%),
    rgba(2, 7, 13, 0.78);
  backdrop-filter: blur(10px);
}

.ga-modal__dialog {
  position: relative;
  z-index: 1;
  width: min(100%, 900px);
  max-height: min(92vh, 900px);
  overflow: auto;
  padding: clamp(24px, 4vw, 38px);
  border: 1px solid rgba(89, 132, 214, 0.7);
  border-radius: 14px;
  background:
    radial-gradient(circle at 8% 8%, rgba(53, 90, 159, 0.24), transparent 28%),
    linear-gradient(150deg, rgba(9, 18, 31, 0.98), rgba(4, 11, 21, 0.98));
  box-shadow:
    0 34px 120px rgba(0, 0, 0, 0.62),
    inset 0 0 0 1px rgba(255, 255, 255, 0.04);
}

.ga-modal__dialog:focus {
  outline: none;
}

.ga-modal__close {
  position: absolute;
  top: 22px;
  right: 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  padding: 0;
  border: 0;
  background: transparent;
  color: rgba(233, 240, 249, 0.76);
  cursor: pointer;
}

.ga-modal__close:hover,
.ga-modal__close:focus-visible {
  color: #ffffff;
}

.ga-modal__close:focus-visible {
  outline: 2px solid rgba(241, 247, 255, 0.94);
  outline-offset: 4px;
}

.ga-modal__close svg {
  width: 30px;
  height: 30px;
}

.ga-modal__close path {
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
}

.ga-modal__header {
  max-width: 700px;
  padding-right: 44px;
}

.ga-modal__header h2 {
  margin: 0;
  color: #ffffff;
  font-family: var(--ga-display-font);
  font-size: clamp(2rem, 4vw, 3.05rem);
  font-weight: 500;
  line-height: 1.04;
  letter-spacing: -0.042em;
}

.ga-modal__header p {
  max-width: 46rem;
  margin: 12px 0 0;
  color: rgba(226, 236, 249, 0.74);
  font-size: clamp(0.94rem, 1.45vw, 1.04rem);
  line-height: 1.55;
}

.ga-modal__success {
  display: none;
}

.ga-modal--success .ga-modal__dialog {
  width: min(100%, 520px);
  min-height: 320px;
  display: grid;
  place-items: center;
}

.ga-modal--success .ga-modal__header,
.ga-modal--success .ga-demo-form {
  display: none;
}

.ga-modal--success .ga-modal__success {
  display: grid;
  justify-items: center;
  gap: 14px;
  max-width: 27rem;
  padding: 18px 12px 8px;
  text-align: center;
}

.ga-modal__success:focus {
  outline: none;
}

.ga-modal__success h2 {
  margin: 0;
  color: #ffffff;
  font-family: var(--ga-display-font);
  font-size: clamp(1.8rem, 4vw, 2.45rem);
  font-weight: 500;
  line-height: 1.08;
  letter-spacing: -0.036em;
}

.ga-modal__success p {
  max-width: 24rem;
  margin: 0;
  color: rgba(226, 236, 249, 0.78);
  font-size: 1rem;
  line-height: 1.6;
}

.ga-demo-form {
  display: grid;
  gap: 20px;
  margin-top: 26px;
}

.ga-demo-form__grid {
  display: grid;
  gap: 18px;
}

.ga-field {
  display: grid;
  gap: 8px;
  min-width: 0;
  margin: 0;
  padding: 0;
  border: 0;
}

.ga-field span,
.ga-field legend {
  color: rgba(247, 250, 255, 0.9);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: -0.01em;
}

.ga-field input,
.ga-field select {
  width: 100%;
  min-height: 48px;
  padding: 0 16px;
  border: 1px solid rgba(142, 159, 185, 0.42);
  border-radius: 8px;
  background: rgba(5, 13, 24, 0.72);
  color: #f7fbff;
  font: inherit;
  font-size: 0.94rem;
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.02),
    0 12px 28px rgba(0, 0, 0, 0.18);
}

.ga-field select {
  appearance: none;
  padding-right: 46px;
  background-image:
    linear-gradient(45deg, transparent 50%, rgba(226, 236, 249, 0.82) 50%),
    linear-gradient(135deg, rgba(226, 236, 249, 0.82) 50%, transparent 50%);
  background-position:
    calc(100% - 25px) 50%,
    calc(100% - 17px) 50%;
  background-size: 8px 8px, 8px 8px;
  background-repeat: no-repeat;
}

.ga-field input::placeholder {
  color: rgba(199, 209, 224, 0.58);
}

.ga-field input:focus,
.ga-field select:focus {
  border-color: rgba(126, 164, 255, 0.95);
  outline: none;
  box-shadow:
    0 0 0 3px rgba(82, 126, 241, 0.18),
    0 12px 28px rgba(0, 0, 0, 0.18);
}

.ga-choice-field {
  gap: 12px;
}

.ga-choice-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 28px;
}

.ga-check {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: rgba(244, 248, 255, 0.86);
  font-size: 0.92rem;
  font-weight: 500;
  cursor: pointer;
}

.ga-check input {
  width: 22px;
  height: 22px;
  margin: 0;
  accent-color: #4b78ff;
}

.ga-demo-form__status {
  min-height: 1.25rem;
  margin: -6px 0 0;
  color: #a9c4ff;
  font-size: 0.92rem;
  font-weight: 600;
}

.ga-demo-form__status[data-tone="success"] {
  color: #8fdcb3;
}

.ga-demo-form__status[data-tone="error"] {
  color: #ffb4b4;
}

.ga-demo-form__footer {
  display: grid;
  gap: 20px;
  align-items: center;
}

.ga-demo-form__notice {
  margin: 0;
  color: rgba(244, 248, 255, 0.86);
  font-size: 0.88rem;
  font-weight: 600;
  line-height: 1.5;
}

.ga-demo-form__submit-group {
  display: grid;
}

.ga-check--privacy {
  align-items: flex-start;
  color: rgba(244, 248, 255, 0.8);
  line-height: 1.45;
}

.ga-check--privacy input {
  margin-top: 1px;
}

.ga-check--privacy a {
  color: #a9c4ff;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.ga-check--privacy a:hover,
.ga-check--privacy a:focus-visible {
  color: #dbe7ff;
}

.ga-demo-form__submit {
  min-height: 54px;
  width: 100%;
  border-radius: 8px;
  color: #ffffff;
  background: linear-gradient(180deg, #5a83ff 0%, #3467ff 100%);
  box-shadow: 0 18px 42px rgba(39, 96, 255, 0.28);
}

.ga-demo-form__submit:hover,
.ga-demo-form__submit:focus-visible {
  background: linear-gradient(180deg, #6f92ff 0%, #4372ff 100%);
}

.ga-demo-form__submit:disabled {
  cursor: wait;
  opacity: 0.72;
  transform: none;
}

@media (min-width: 760px) {
  .ga-section__header--split {
    grid-template-columns: minmax(0, 1fr) auto;
  }

  .ga-model {
    grid-template-columns: minmax(230px, 0.72fr) minmax(0, 1.6fr);
  }

  .ga-model__steps {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 30px 34px;
  }

  .ga-use-cases {
    grid-template-columns: minmax(230px, 0.55fr) minmax(0, 1.45fr);
  }

  .ga-use-cases__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .ga-demo-form__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .ga-demo-form__footer {
    grid-template-columns: minmax(0, 1fr) minmax(280px, 0.7fr);
  }

  .ga-platform-console__metrics,
  .ga-platform-console__stats {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .ga-platform-console__charts {
    grid-template-columns: minmax(220px, 0.9fr) minmax(0, 1.35fr);
  }

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

  .ga-platform-feature-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .ga-asset-console {
    grid-template-columns: 130px minmax(0, 1fr);
  }

  .ga-asset-console--image {
    grid-template-columns: 1fr;
  }

  .ga-asset-console__sidebar {
    display: grid;
    gap: 8px;
    align-content: start;
    padding: 18px 10px;
    border-right: 1px solid rgba(157, 177, 216, 0.12);
    background: rgba(3, 12, 22, 0.42);
  }

  .ga-asset-console__sidebar strong,
  .ga-asset-console__sidebar span {
    border-radius: 5px;
    padding: 7px 8px;
    color: rgba(227, 236, 249, 0.72);
    font-size: 0.66rem;
  }

  .ga-asset-console__sidebar strong {
    color: #ffffff;
  }

  .ga-asset-console__sidebar .is-active {
    background: linear-gradient(90deg, rgba(70, 111, 244, 0.72), rgba(51, 86, 182, 0.42));
    color: #ffffff;
  }

  .ga-asset-console__metrics,
  .ga-asset-console__stats {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .ga-drift-metrics {
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }

  .ga-software-metrics {
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }

  .ga-identity-metrics,
  .ga-identity-stats {
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }

  .ga-migration-metrics,
  .ga-migration-status-grid {
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }

  .ga-exposure-metrics,
  .ga-exposure-stats {
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }

  .ga-asset-console__charts {
    grid-template-columns: minmax(240px, 0.95fr) minmax(0, 1.05fr);
  }

  .ga-solution-points,
  .ga-device-panel__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

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

  .ga-solution-steps {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .ga-solution-steps--five {
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }

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

  .ga-company-belief-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .ga-company-belief-grid article {
    padding: 26px 24px;
    border-right: 1px solid rgba(147, 169, 210, 0.12);
  }
}

@media (min-width: 960px) {
  .ga-card-grid--five {
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }

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

  .ga-model__steps {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 34px 46px;
  }

  .ga-action {
    grid-template-columns: minmax(260px, 0.55fr) minmax(0, 1.45fr);
  }

  .ga-integrations {
    grid-template-columns: minmax(240px, 0.48fr) minmax(0, 1.52fr);
    align-items: center;
    gap: clamp(42px, 6vw, 82px);
  }

  .ga-integrations__copy {
    max-width: 25rem;
  }

  .ga-logo-grid {
    grid-template-columns: repeat(3, minmax(132px, 1fr));
  }

  .ga-footer__inner {
    grid-template-columns: minmax(220px, 0.7fr) minmax(0, 1.5fr);
  }

  .ga-platform-hero__grid {
    grid-template-columns: minmax(370px, 0.7fr) minmax(0, 1.3fr);
  }

  .ga-platform-console {
    margin-right: clamp(-80px, -5vw, -34px);
  }

  .ga-platform-section__intro,
  .ga-platform-capabilities {
    grid-template-columns: minmax(260px, 0.55fr) minmax(0, 1.45fr);
    align-items: start;
  }

  .ga-platform-section--model .ga-platform-section__intro {
    grid-template-columns: minmax(320px, 0.72fr) minmax(0, 1.28fr);
  }

  .ga-platform-section--model .ga-platform-section__intro > p {
    margin-top: 33px;
  }

  .ga-platform-section--capabilities .ga-platform-section__intro {
    grid-template-columns: 1fr;
  }

  .ga-platform-section--capabilities .ga-platform-section__intro h2 span {
    white-space: nowrap;
  }

  .ga-platform-section--capabilities .ga-platform-feature-list {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .ga-platform-cta .ga-platform-cta__band {
    grid-template-columns: minmax(0, 1fr) auto;
  }

  .ga-platform-cta .ga-platform-cta__band > .ga-button {
    grid-column: 2;
    justify-self: end;
    margin-top: 0;
  }

  .ga-home-cta__band {
    grid-template-columns: minmax(0, 1fr) auto;
  }

  .ga-home-cta__band > .ga-button {
    grid-column: 2;
    justify-self: end;
    margin-top: 0;
  }

  .ga-solution-hero__grid {
    grid-template-columns: minmax(370px, 0.7fr) minmax(0, 1.3fr);
  }

  .ga-solution-hero .ga-asset-console {
    margin-right: clamp(-80px, -5vw, -34px);
  }

  .ga-solution-problem,
  .ga-solution-model,
  .ga-solution-action {
    grid-template-columns: minmax(260px, 0.55fr) minmax(0, 1.45fr);
    align-items: start;
  }

  .ga-solution-problem,
  .ga-solution-model {
    align-items: center;
  }

  .ga-solution-model {
    grid-template-columns: minmax(260px, 0.48fr) minmax(0, 1.52fr);
  }

  .ga-solution-final-cta .ga-platform-cta__band {
    grid-template-columns: minmax(0, 1fr) auto;
  }

  .ga-solution-final-cta .ga-platform-cta__band .ga-button {
    grid-column: 2;
    justify-self: end;
  }

  .ga-solution-section--questions .ga-question-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .ga-solution-model .ga-solution-steps {
    gap: clamp(24px, 3vw, 42px);
  }

  .ga-control-console .ga-asset-console__charts {
    grid-template-columns: minmax(220px, 1fr) minmax(180px, 0.8fr) minmax(190px, 0.9fr);
  }

  .ga-software-console .ga-asset-console__charts {
    grid-template-columns: minmax(190px, 0.82fr) minmax(170px, 0.72fr) minmax(190px, 0.9fr);
  }

  .ga-identity-console .ga-asset-console__charts {
    grid-template-columns: minmax(190px, 0.82fr) minmax(210px, 0.9fr) minmax(190px, 0.82fr);
  }

  .ga-migration-console .ga-asset-console__charts {
    grid-template-columns: minmax(0, 1.35fr) minmax(210px, 0.65fr);
  }

  .ga-exposure-console .ga-asset-console__charts {
    grid-template-columns: minmax(190px, 0.82fr) minmax(190px, 0.82fr) minmax(190px, 0.82fr);
  }

  .ga-control-panel__body {
    grid-template-columns: minmax(0, 1fr) minmax(180px, 0.36fr);
  }

  .ga-exposure-panel__body {
    grid-template-columns: minmax(0, 1fr) minmax(210px, 0.36fr);
  }

  .ga-drift-findings {
    grid-template-columns: minmax(0, 1fr) minmax(220px, 0.32fr);
  }

  .ga-drift-details {
    border-top: 0;
    border-left: 1px solid rgba(147, 169, 210, 0.13);
  }

  .ga-company-split {
    grid-template-columns: minmax(260px, 0.48fr) minmax(0, 1.52fr);
  }

  .ga-company-beliefs {
    grid-template-columns: minmax(190px, 0.32fr) minmax(0, 1.68fr);
  }

  .ga-company-belief-grid {
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }

  .ga-company-belief-grid article {
    min-height: 260px;
    padding: 4px 22px 0;
    border-bottom: 0;
  }

  .ga-company-belief-grid article:last-child {
    border-right: 0;
  }

  .ga-company-two-up {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: clamp(48px, 7vw, 92px);
  }

  .ga-legal-layout {
    grid-template-columns: minmax(190px, 0.36fr) minmax(0, 1.64fr);
  }

  .ga-legal-sidebar {
    position: sticky;
    top: 22px;
    max-height: calc(100vh - 44px);
    overflow: auto;
    padding: 0 38px 0 0;
    border-right: 1px solid rgba(147, 169, 210, 0.14);
    border-bottom: 0;
    scrollbar-width: thin;
  }

}

@media (min-width: 1180px) {
  .ga-platform-grid {
    grid-template-columns: repeat(6, minmax(0, 1fr));
  }

  .ga-model {
    grid-template-columns: 1fr;
    gap: 38px;
  }

  .ga-model__intro .ga-section__title {
    max-width: 24ch;
  }

  .ga-model__steps {
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 20px;
  }

  .ga-step p {
    max-width: 11.4rem;
    margin-right: auto;
    margin-left: auto;
    font-size: 0.86rem;
    line-height: 1.58;
  }

  .ga-step:not(:last-child)::after {
    content: "";
    position: absolute;
    top: 36px;
    right: -24px;
    width: 28px;
    height: 1px;
    background: linear-gradient(90deg, rgba(92, 132, 255, 0.7), rgba(92, 132, 255, 0.1));
  }

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

  .ga-logo-grid {
    grid-template-columns: repeat(5, minmax(118px, 1fr));
  }

  .ga-platform-cycle {
    grid-template-columns: repeat(6, minmax(0, 1fr));
  }

  .ga-platform-cycle article:not(:last-child)::after {
    content: "";
    position: absolute;
    top: 36px;
    right: -18px;
    width: 34px;
    height: 1px;
    background: linear-gradient(90deg, rgba(146, 172, 255, 0.58), rgba(146, 172, 255, 0.05));
  }

  .ga-solution-steps article:not(:last-child)::after {
    content: "";
    position: absolute;
    top: 29px;
    left: calc(50% + 50px);
    right: auto;
    width: calc(100% - 76px);
    height: 1px;
    background: linear-gradient(90deg, rgba(146, 172, 255, 0.58), rgba(146, 172, 255, 0.05));
  }

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

@media (max-width: 719px) {
  .ga-button {
    width: 100%;
  }

  .ga-hero__trust {
    display: flex;
  }

  .ga-hero__badges {
    gap: 10px 16px;
  }

  .ga-section {
    padding: 76px 0;
  }

  .ga-section__header--split .ga-button {
    width: auto;
    justify-self: start;
  }

  .ga-cta-band {
    grid-template-columns: 1fr;
  }

  .ga-cta-band h2 {
    max-width: 18rem;
  }

  .ga-platform-console {
    grid-template-columns: 1fr;
  }

  .ga-platform-console__sidebar {
    display: none;
  }

  .ga-platform-console__donut {
    grid-template-columns: 1fr;
  }

  .ga-platform-hero__actions .ga-button {
    width: 100%;
  }

  .ga-platform-cta__band {
    background:
      linear-gradient(180deg, rgba(4, 13, 23, 0.97), rgba(6, 19, 38, 0.7)),
      url("../img/backgrounds/homepage_background.svg") 60% 40% / 150% auto no-repeat;
  }

  .ga-company-hero {
    min-height: auto;
  }

  .ga-company-hero__visual {
    background:
      linear-gradient(90deg, rgba(6, 9, 15, 0.96) 0%, rgba(6, 9, 15, 0.9) 28%, rgba(6, 9, 15, 0.68) 54%, rgba(6, 9, 15, 0.24) 78%, rgba(6, 9, 15, 0.06) 100%),
      url("../img/backgrounds/homepage_background.svg") 92% 30% / cover no-repeat;
    opacity: 1;
  }

  .ga-company-hero__actions .ga-button,
  .ga-company-copy .ga-button {
    width: 100%;
  }
}
