@import url("/tokens.css");

:root {
  color-scheme: dark;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
}

body.gh-site {
  background:
    radial-gradient(60% 48% at 50% 0%, color-mix(in srgb, var(--blue) 14%, transparent), transparent 72%),
    var(--bg);
}

.gh-site a {
  color: inherit;
  text-decoration: none;
}

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

.gh-page {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
}

.gh-shell {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}

.gh-nav {
  position: sticky;
  top: 16px;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-4);
  min-height: 72px;
  margin-top: var(--space-4);
  padding: var(--space-3) var(--space-4);
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.gh-brand {
  display: inline-flex;
  align-items: center;
  gap: var(--space-3);
  min-width: 0;
}

.gh-brand__mark {
  width: 48px;
  height: 48px;
  flex: none;
  display: grid;
  place-items: center;
  border-radius: var(--radius-md);
  background: var(--bg-elev);
  border: 1px solid var(--border-2);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
}

.gh-brand__mark img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 5px;
}

.gh-brand__word {
  display: grid;
  gap: 1px;
  font-family: var(--font-display);
  line-height: 1.05;
}

.gh-brand__word strong {
  color: var(--text);
  font-size: 17px;
}

.gh-brand__word span {
  color: var(--muted);
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 600;
}

.gh-nav__links {
  display: flex;
  align-items: center;
  gap: var(--space-1);
}

.gh-nav__links a,
.gh-menu {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-sm);
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
  padding: 0 var(--space-3);
  transition: color var(--dur-fast) var(--ease), background var(--dur-fast) var(--ease);
}

.gh-nav__links a:hover,
.gh-nav__links a:focus-visible,
.gh-menu:hover,
.gh-menu:focus-visible {
  color: var(--text);
  background: var(--surface-2);
  outline: none;
}

.gh-nav__cta,
.gh-primary,
.gh-submit {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  border: 0;
  border-radius: var(--radius-sm);
  background: var(--grad-brand);
  color: var(--bg);
  box-shadow: var(--shadow-glow);
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 800;
  padding: 0 var(--space-5);
  cursor: pointer;
  transition: transform var(--dur-fast) var(--ease), filter var(--dur-fast) var(--ease);
}

.gh-nav__cta:hover,
.gh-primary:hover,
.gh-submit:hover {
  filter: brightness(1.05);
  transform: translateY(-1px);
}

.gh-secondary {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  background: var(--surface);
  color: var(--text);
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 700;
  padding: 0 var(--space-5);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  transition: transform var(--dur-fast) var(--ease), background var(--dur-fast) var(--ease), border-color var(--dur-fast) var(--ease);
}

.gh-secondary:hover {
  transform: translateY(-1px);
  background: var(--surface-2);
  border-color: var(--border-2);
}

.gh-menu {
  display: none;
  border: 1px solid var(--border);
  background: var(--surface);
  cursor: pointer;
  font-family: var(--font-display);
}

.gh-hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.03fr) minmax(360px, 0.78fr);
  gap: var(--space-8);
  align-items: center;
  min-height: calc(100vh - 104px);
  padding: 64px 0 40px;
}

.gh-hero::before {
  content: "";
  position: absolute;
  inset: 6% 36% auto auto;
  width: 320px;
  height: 320px;
  border-radius: var(--radius-pill);
  background: var(--grad-soft);
  filter: blur(58px);
  opacity: 0.55;
  pointer-events: none;
}

.gh-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  margin: 0 0 var(--space-4);
  color: var(--cyan);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.gh-eyebrow::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: var(--radius-pill);
  background: var(--cyan);
  box-shadow: 0 0 24px color-mix(in srgb, var(--cyan) 70%, transparent);
}

.gh-hero h1 {
  max-width: 880px;
  margin: 0;
  font-size: clamp(48px, 7vw, 92px);
  line-height: 0.98;
  letter-spacing: 0;
}

.gh-hero h1 span {
  background: var(--grad-text);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.gh-hero__copy {
  max-width: 680px;
  margin: var(--space-6) 0 0;
  color: var(--muted);
  font-size: 19px;
  line-height: 1.65;
}

.gh-actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-3);
  margin-top: var(--space-8);
}

.gh-proof {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: var(--space-3);
  margin-top: var(--space-8);
  max-width: 760px;
}

.gh-proof__item {
  padding: var(--space-4);
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.gh-proof__item strong {
  display: block;
  color: var(--text);
  font-family: var(--font-display);
  font-size: 26px;
  line-height: 1;
}

.gh-proof__item span {
  display: block;
  margin-top: var(--space-2);
  color: var(--muted);
  font-size: 13px;
  line-height: 1.35;
}

.gh-dashboard {
  position: relative;
  display: grid;
  gap: var(--space-4);
  padding: var(--space-5);
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-md);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.gh-dashboard::before {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  padding: 1px;
  background: var(--grad-brand);
  opacity: 0.45;
  -webkit-mask: linear-gradient(var(--text) 0 0) content-box, linear-gradient(var(--text) 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}

.gh-dashboard__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-3);
}

.gh-dashboard__top h2,
.gh-card h3,
.gh-section h2,
.gh-contact h2 {
  margin: 0;
  font-size: 18px;
  letter-spacing: 0;
}

.gh-live {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  color: var(--success);
  background: color-mix(in srgb, var(--success) 13%, transparent);
  border: 1px solid color-mix(in srgb, var(--success) 24%, transparent);
  border-radius: var(--radius-pill);
  font-size: 12px;
  font-weight: 800;
  padding: 5px 10px;
}

.gh-live::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: var(--radius-pill);
  background: var(--success);
}

.gh-ai-score {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: var(--space-1) var(--space-4);
  align-items: center;
  padding: var(--space-4);
  background:
    linear-gradient(115deg, color-mix(in srgb, var(--cyan) 12%, transparent), color-mix(in srgb, var(--indigo) 14%, transparent)),
    var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
}

.gh-ai-score span,
.gh-ai-score small {
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
}

.gh-ai-score strong {
  grid-row: span 2;
  color: var(--text);
  font-family: var(--font-display);
  font-size: 46px;
  line-height: 1;
}

.gh-ai-engine {
  position: relative;
}

.gh-ai-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(360px, 0.96fr);
  gap: var(--space-5);
  align-items: stretch;
}

.gh-ai-console,
.gh-ai-capability,
.gh-system-card,
.gh-case-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.gh-ai-console {
  position: relative;
  min-height: 520px;
  padding: var(--space-5);
  border-radius: var(--radius-xl);
  overflow: hidden;
}

.gh-ai-console::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(60% 48% at 74% 18%, color-mix(in srgb, var(--cyan) 20%, transparent), transparent 70%),
    linear-gradient(135deg, transparent 0 54%, color-mix(in srgb, var(--blue) 13%, transparent) 54% 55%, transparent 55%);
  pointer-events: none;
}

.gh-ai-console > * {
  position: relative;
  z-index: 1;
}

.gh-console__bar {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  min-height: 42px;
  padding: 0 var(--space-3);
  background: var(--bg-elev);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
}

.gh-console__bar span {
  width: 9px;
  height: 9px;
  border-radius: var(--radius-pill);
  background: var(--blue);
}

.gh-console__bar span:nth-child(2) {
  background: var(--cyan);
}

.gh-console__bar span:nth-child(3) {
  background: var(--amber);
}

.gh-console__bar strong {
  margin-left: var(--space-2);
  color: var(--text);
  font-family: var(--font-display);
  font-size: 13px;
}

.gh-console__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: var(--space-3);
  margin-top: var(--space-4);
}

.gh-console__panel {
  min-height: 150px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: var(--space-4);
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
}

.gh-console__panel--wide {
  grid-column: 1 / -1;
}

.gh-console__panel small {
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.gh-console__panel strong {
  color: var(--text);
  font-family: var(--font-display);
  font-size: 42px;
  line-height: 1;
}

.gh-console__panel p {
  margin: var(--space-6) 0 0;
  color: var(--text);
  font-size: 20px;
  line-height: 1.35;
}

.gh-timeline {
  display: grid;
  gap: var(--space-3);
  margin-top: var(--space-8);
}

.gh-timeline span {
  display: block;
  width: var(--value);
  height: 14px;
  border-radius: var(--radius-pill);
  background: var(--grad-brand);
  box-shadow: var(--shadow-sm);
}

.gh-ai-capabilities {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: var(--space-4);
}

.gh-ai-capability {
  min-height: 246px;
  padding: var(--space-5);
}

.gh-ai-capability span,
.gh-system-card span,
.gh-case-card span {
  display: inline-flex;
  width: fit-content;
  margin-bottom: var(--space-4);
  color: var(--cyan);
  background: color-mix(in srgb, var(--cyan) 14%, transparent);
  border: 1px solid color-mix(in srgb, var(--cyan) 24%, transparent);
  border-radius: var(--radius-pill);
  font-size: 12px;
  font-weight: 800;
  padding: 4px 10px;
}

.gh-ai-capability h3,
.gh-case-card h3 {
  margin: 0;
  color: var(--text);
  font-size: 20px;
}

.gh-ai-capability p,
.gh-case-card p {
  margin: var(--space-3) 0 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.55;
}

.gh-pipeline {
  display: grid;
  gap: var(--space-3);
}

.gh-lead {
  display: grid;
  gap: var(--space-3);
  padding: var(--space-4);
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
}

.gh-lead__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-3);
}

.gh-lead b {
  font-family: var(--font-display);
  font-size: 15px;
}

.gh-lead small,
.gh-flow small {
  color: var(--muted);
  font-size: 12px;
}

.gh-bars {
  display: grid;
  gap: var(--space-2);
}

.gh-bar {
  height: 10px;
  border-radius: var(--radius-pill);
  background: var(--surface-2);
  overflow: hidden;
}

.gh-bar span {
  display: block;
  width: var(--value);
  height: 100%;
  border-radius: inherit;
  background: var(--grad-brand);
}

.gh-flow {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: var(--space-3);
}

.gh-flow div {
  min-height: 88px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: var(--space-3);
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
}

.gh-flow strong {
  color: var(--text);
  font-family: var(--font-display);
  font-size: 22px;
}

.gh-section {
  padding: 56px 0;
}

.gh-trust {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(0, 1fr);
  gap: var(--space-5);
  align-items: center;
  padding: var(--space-6);
  margin-bottom: var(--space-8);
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.gh-trust h2 {
  margin: 0;
  max-width: 620px;
  color: var(--text);
  font-size: clamp(24px, 3vw, 36px);
  line-height: 1.08;
}

.gh-logo-strip {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: var(--space-3);
}

.gh-logo-tile {
  min-height: 86px;
  display: grid;
  place-items: center;
  padding: var(--space-3);
  color: var(--text);
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
}

.gh-logo-tile img {
  max-width: 100%;
  max-height: 46px;
  object-fit: contain;
  filter: saturate(0.92) brightness(1.05);
}

.gh-logo-tile--text {
  color: var(--muted);
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 800;
  text-align: center;
}

.gh-section__head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: var(--space-6);
  margin-bottom: var(--space-6);
}

.gh-section h2,
.gh-contact h2 {
  max-width: 760px;
  font-size: clamp(30px, 4.4vw, 52px);
  line-height: 1.04;
}

.gh-section__head p {
  max-width: 420px;
  margin: 0;
  color: var(--muted);
  font-size: 16px;
}

.gh-platform {
  position: relative;
}

.gh-preview-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: var(--space-4);
}

.gh-preview-card {
  min-height: 390px;
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
  padding: var(--space-4);
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.gh-preview-card__screen {
  position: relative;
  min-height: 190px;
  padding: var(--space-4);
  background:
    radial-gradient(60% 50% at 70% 20%, color-mix(in srgb, var(--blue) 20%, transparent), transparent 70%),
    var(--bg-elev);
  border: 1px solid var(--border-2);
  border-radius: var(--radius-md);
  overflow: hidden;
}

.gh-window-bar {
  display: block;
  width: 72px;
  height: 8px;
  border-radius: var(--radius-pill);
  background: var(--grad-brand);
  opacity: 0.8;
}

.gh-preview-chart {
  position: absolute;
  left: var(--space-4);
  right: var(--space-4);
  bottom: var(--space-4);
  height: 98px;
  display: flex;
  align-items: end;
  gap: var(--space-2);
}

.gh-preview-chart span {
  flex: 1;
  height: var(--h);
  border-radius: var(--radius-sm) var(--radius-sm) 3px 3px;
  background: var(--grad-brand);
}

.gh-preview-lines {
  position: absolute;
  left: var(--space-4);
  right: var(--space-4);
  top: 54px;
  display: grid;
  gap: var(--space-2);
}

.gh-preview-lines i,
.gh-preview-report span {
  display: block;
  height: 9px;
  border-radius: var(--radius-pill);
  background: var(--surface-2);
}

.gh-preview-lines i:nth-child(1) {
  width: 82%;
}

.gh-preview-lines i:nth-child(2) {
  width: 64%;
}

.gh-preview-lines i:nth-child(3) {
  width: 72%;
}

.gh-preview-calendar,
.gh-preview-inventory {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: var(--space-2);
  margin-top: var(--space-5);
}

.gh-preview-calendar i,
.gh-preview-inventory i {
  min-height: 48px;
  border-radius: var(--radius-sm);
  background: var(--surface-2);
  border: 1px solid var(--border);
}

.gh-preview-calendar i:nth-child(2),
.gh-preview-calendar i:nth-child(5),
.gh-preview-inventory i:nth-child(1) {
  background: var(--grad-soft);
}

.gh-preview-report {
  display: grid;
  gap: var(--space-3);
  margin-top: var(--space-5);
}

.gh-preview-report strong {
  color: var(--text);
  font-family: var(--font-display);
  font-size: 54px;
  line-height: 1;
}

.gh-preview-report span:nth-child(2) {
  width: 92%;
}

.gh-preview-report span:nth-child(3) {
  width: 72%;
}

.gh-preview-report span:nth-child(4) {
  width: 84%;
}

.gh-preview-card h3 {
  margin: 0;
  color: var(--text);
  font-size: 18px;
}

.gh-preview-card p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.5;
}

.gh-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: var(--space-4);
}

.gh-services {
  position: relative;
}

.gh-services::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 132px;
  width: min(1180px, calc(100% - 40px));
  height: 72%;
  transform: translateX(-50%) skewY(-2deg);
  border-radius: var(--radius-xl);
  background:
    linear-gradient(135deg, color-mix(in srgb, var(--bg-elev) 82%, transparent), transparent 64%),
    var(--grad-soft);
  opacity: 0.42;
  pointer-events: none;
}

.gh-services__layout {
  position: relative;
  display: grid;
  grid-template-columns: minmax(320px, 0.72fr) minmax(0, 1fr);
  gap: var(--space-5);
  align-items: start;
}

.gh-package {
  position: sticky;
  top: 112px;
  min-height: 680px;
  display: flex;
  flex-direction: column;
  gap: var(--space-5);
  padding: var(--space-6);
  background:
    linear-gradient(145deg, color-mix(in srgb, var(--surface-2) 92%, transparent), color-mix(in srgb, var(--bg-elev) 88%, transparent)),
    var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-md);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  overflow: hidden;
}

.gh-package::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(115deg, transparent 0 54%, color-mix(in srgb, var(--blue) 16%, transparent) 54% 55%, transparent 55%),
    radial-gradient(70% 42% at 18% 18%, color-mix(in srgb, var(--cyan) 20%, transparent), transparent 70%),
    radial-gradient(80% 54% at 95% 0%, color-mix(in srgb, var(--amber) 16%, transparent), transparent 72%);
  pointer-events: none;
}

.gh-package > * {
  position: relative;
  z-index: 1;
}

.gh-package__halo {
  width: min(100%, 440px);
  aspect-ratio: 1.45;
  margin: 0 auto;
  border-radius: var(--radius-xl);
  background:
    linear-gradient(180deg, color-mix(in srgb, var(--text) 11%, transparent), transparent),
    radial-gradient(70% 80% at 50% 100%, color-mix(in srgb, var(--amber) 42%, transparent), transparent 72%),
    linear-gradient(135deg, color-mix(in srgb, var(--blue) 72%, var(--bg-elev)), var(--bg-elev));
  border: 1px solid var(--border-2);
  box-shadow: var(--shadow-glow);
  position: relative;
  overflow: hidden;
}

.gh-package__halo::before {
  content: "";
  position: absolute;
  left: 10%;
  right: 10%;
  bottom: 18%;
  height: 28%;
  border-radius: var(--radius-md) var(--radius-md) var(--radius-sm) var(--radius-sm);
  background:
    linear-gradient(90deg, color-mix(in srgb, var(--cyan) 64%, transparent), color-mix(in srgb, var(--blue) 48%, transparent)),
    var(--surface-2);
  border: 1px solid var(--border-2);
  box-shadow: 0 18px 44px color-mix(in srgb, var(--bg) 80%, transparent);
}

.gh-package__halo::after {
  content: "";
  position: absolute;
  left: 19%;
  right: 19%;
  bottom: 9%;
  height: 18%;
  border-radius: var(--radius-lg) var(--radius-lg) var(--radius-sm) var(--radius-sm);
  background:
    radial-gradient(circle at 18% 50%, var(--bg) 0 18%, transparent 19%),
    radial-gradient(circle at 82% 50%, var(--bg) 0 18%, transparent 19%),
    var(--grad-brand);
}

.gh-package__label {
  margin: 0;
  color: var(--amber);
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.gh-package h3 {
  margin: 0;
  max-width: 10ch;
  color: var(--text);
  font-size: clamp(34px, 4vw, 54px);
  line-height: 0.98;
  letter-spacing: 0;
}

.gh-package p:not(.gh-package__label) {
  margin: 0;
  color: var(--muted);
  font-size: 16px;
}

.gh-package__metrics {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: var(--space-3);
  margin-top: auto;
}

.gh-package__metrics div,
.gh-investment,
.gh-services__promise div {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.gh-package__metrics div {
  min-height: 96px;
  display: flex;
  flex-direction: column;
  justify-content: end;
  padding: var(--space-4);
}

.gh-package__metrics strong {
  color: var(--text);
  font-family: var(--font-display);
  font-size: 22px;
  line-height: 1;
}

.gh-package__metrics span {
  margin-top: var(--space-2);
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.gh-investment {
  display: grid;
  gap: var(--space-2);
  padding: var(--space-5);
  background:
    linear-gradient(115deg, color-mix(in srgb, var(--amber) 30%, transparent), color-mix(in srgb, var(--blue) 16%, transparent)),
    var(--surface);
}

.gh-investment span {
  color: var(--text);
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.gh-investment strong {
  color: var(--text);
  font-family: var(--font-display);
  font-size: 54px;
  line-height: 0.95;
}

.gh-investment small {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.4;
}

.gh-service-list {
  display: grid;
  gap: var(--space-3);
}

.gh-service-card {
  position: relative;
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: var(--space-4);
  align-items: start;
  min-height: 128px;
  padding: var(--space-4);
  background:
    linear-gradient(90deg, color-mix(in srgb, var(--surface-2) 86%, transparent), var(--surface)),
    var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  overflow: hidden;
  transition: transform var(--dur) var(--ease), border-color var(--dur) var(--ease), background var(--dur) var(--ease);
}

.gh-service-card::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 3px;
  background: var(--grad-brand);
  opacity: 0.8;
}

.gh-service-card:hover {
  transform: translateY(-2px);
  border-color: var(--border-2);
  background: var(--surface-2);
}

.gh-service-card__icon {
  width: 64px;
  height: 64px;
  display: grid;
  place-items: center;
  border-radius: var(--radius-md);
  color: var(--cyan);
  background:
    radial-gradient(circle at 30% 18%, color-mix(in srgb, var(--text) 18%, transparent), transparent 40%),
    var(--bg-elev);
  border: 1px solid var(--border-2);
  box-shadow: var(--shadow-sm);
}

.gh-service-card__icon svg {
  width: 30px;
  height: 30px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.gh-service-card h3 {
  margin: 0;
  color: var(--amber);
  font-size: 18px;
  line-height: 1.25;
  text-transform: uppercase;
}

.gh-service-card p {
  margin: var(--space-2) 0 0;
  color: var(--text);
  font-size: 15px;
  line-height: 1.45;
}

.gh-services__promise {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: var(--space-3);
  margin-top: var(--space-5);
}

.gh-service-visuals {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(260px, 0.75fr);
  grid-auto-rows: minmax(220px, auto);
  gap: var(--space-4);
  margin-top: var(--space-6);
}

.gh-visual-card {
  position: relative;
  min-height: 260px;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: var(--surface);
  box-shadow: var(--shadow-md);
  overflow: hidden;
  isolation: isolate;
}

.gh-visual-card--large {
  grid-row: span 2;
  min-height: 540px;
}

.gh-visual-card img {
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
  transform: scale(1.02);
  filter: saturate(1.05) contrast(1.04);
  transition: transform 420ms var(--ease), filter 420ms var(--ease);
}

.gh-visual-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg, transparent 0 35%, color-mix(in srgb, var(--bg) 72%, transparent) 100%),
    linear-gradient(90deg, color-mix(in srgb, var(--bg) 40%, transparent), transparent 54%);
  pointer-events: none;
}

.gh-visual-card::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  border-radius: inherit;
  box-shadow:
    inset 0 0 0 1px color-mix(in srgb, var(--text) 6%, transparent),
    inset 0 -90px 120px color-mix(in srgb, var(--bg) 88%, transparent);
  pointer-events: none;
}

.gh-visual-card:hover img {
  transform: scale(1.06);
  filter: saturate(1.14) contrast(1.08);
}

.gh-visual-card div {
  position: absolute;
  left: var(--space-5);
  right: var(--space-5);
  bottom: var(--space-5);
  z-index: 2;
  display: grid;
  gap: var(--space-2);
}

.gh-visual-card span {
  width: fit-content;
  color: var(--cyan);
  background: color-mix(in srgb, var(--cyan) 14%, transparent);
  border: 1px solid color-mix(in srgb, var(--cyan) 24%, transparent);
  border-radius: var(--radius-pill);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  padding: 5px 10px;
  text-transform: uppercase;
}

.gh-visual-card strong {
  max-width: 18ch;
  color: var(--text);
  font-family: var(--font-display);
  font-size: clamp(20px, 2.4vw, 32px);
  line-height: 1.08;
}

.gh-services__promise div {
  min-height: 112px;
  display: flex;
  flex-direction: column;
  justify-content: end;
  padding: var(--space-4);
}

.gh-services__promise strong {
  color: var(--amber);
  font-family: var(--font-display);
  font-size: 15px;
  line-height: 1.2;
  text-transform: uppercase;
}

.gh-services__promise span {
  margin-top: var(--space-2);
  color: var(--muted);
  font-size: 13px;
  line-height: 1.4;
}

.gh-system-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: var(--space-4);
  margin-bottom: var(--space-5);
}

.gh-system-card {
  min-height: 190px;
  padding: var(--space-5);
  position: relative;
  overflow: hidden;
}

.gh-system-card::after {
  content: "";
  position: absolute;
  inset: auto var(--space-5) 0 var(--space-5);
  height: 3px;
  border-radius: var(--radius-pill);
  background: var(--grad-brand);
  opacity: 0.9;
}

.gh-system-card span {
  color: var(--amber);
  background: color-mix(in srgb, var(--amber) 14%, transparent);
  border-color: color-mix(in srgb, var(--amber) 24%, transparent);
}

.gh-system-card strong {
  display: block;
  color: var(--text);
  font-family: var(--font-display);
  font-size: 18px;
  line-height: 1.35;
}

.gh-card {
  position: relative;
  min-height: 300px;
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
  padding: var(--space-5);
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  overflow: hidden;
  transition: transform var(--dur) var(--ease), border-color var(--dur) var(--ease), background var(--dur) var(--ease);
}

.gh-card:hover {
  transform: translateY(-3px);
  border-color: var(--border-2);
  background: var(--surface-2);
}

.gh-card__icon {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: var(--radius-md);
  color: var(--blue);
  background: var(--grad-soft);
  border: 1px solid var(--border-2);
}

.gh-card__icon svg,
.gh-link svg,
.gh-primary svg,
.gh-secondary svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.gh-card p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
}

.gh-card ul {
  display: grid;
  gap: var(--space-2);
  margin: auto 0 0;
  padding: 0;
  list-style: none;
}

.gh-card li {
  display: flex;
  gap: var(--space-2);
  color: var(--text);
  font-size: 14px;
}

.gh-card li::before {
  content: "";
  width: 7px;
  height: 7px;
  margin-top: 9px;
  flex: none;
  border-radius: var(--radius-pill);
  background: var(--cyan);
}

.gh-showcase {
  display: grid;
  grid-template-columns: 0.72fr 1fr;
  gap: var(--space-5);
  align-items: stretch;
}

.gh-panel {
  padding: var(--space-6);
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.gh-panel h3 {
  margin: 0 0 var(--space-3);
  font-size: 22px;
}

.gh-panel p {
  margin: 0;
  color: var(--muted);
}

.gh-stack {
  display: grid;
  gap: var(--space-3);
  margin-top: var(--space-5);
}

.gh-stack__row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-4);
  padding: var(--space-4);
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
}

.gh-stack__row b {
  font-family: var(--font-display);
  color: var(--text);
}

.gh-stack__row span {
  color: var(--muted);
  font-size: 13px;
}

.gh-command {
  display: grid;
  gap: var(--space-3);
}

.gh-command__item {
  display: grid;
  grid-template-columns: 44px 1fr auto;
  gap: var(--space-3);
  align-items: center;
  padding: var(--space-4);
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
}

.gh-command__num {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: var(--radius-sm);
  background: var(--bg-elev);
  border: 1px solid var(--border-2);
  color: var(--cyan);
  font-family: var(--font-display);
  font-weight: 800;
}

.gh-command__item strong {
  display: block;
  font-family: var(--font-display);
}

.gh-command__item p {
  margin: var(--space-1) 0 0;
  color: var(--muted);
  font-size: 14px;
}

.gh-tag {
  display: inline-flex;
  align-items: center;
  border-radius: var(--radius-pill);
  background: color-mix(in srgb, var(--blue) 14%, transparent);
  border: 1px solid color-mix(in srgb, var(--blue) 24%, transparent);
  color: var(--blue);
  font-size: 12px;
  font-weight: 800;
  padding: 5px 10px;
  white-space: nowrap;
}

.gh-results {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: var(--space-4);
}

.gh-result {
  padding: var(--space-5);
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.gh-result strong {
  display: block;
  color: var(--text);
  font-family: var(--font-display);
  font-size: 28px;
  line-height: 1;
}

.gh-result span {
  display: block;
  margin-top: var(--space-2);
  color: var(--muted);
  font-size: 13px;
  line-height: 1.4;
}

.gh-case-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: var(--space-4);
  margin-top: var(--space-5);
}

.gh-case-card {
  min-height: 240px;
  padding: var(--space-5);
  background:
    linear-gradient(145deg, color-mix(in srgb, var(--surface-2) 72%, transparent), var(--surface)),
    var(--surface);
}

.gh-final-cta {
  position: relative;
  min-height: 520px;
  display: grid;
  align-items: end;
  margin: 56px auto 16px;
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-md);
  overflow: hidden;
  isolation: isolate;
}

.gh-final-cta img {
  position: absolute;
  inset: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gh-final-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg, color-mix(in srgb, var(--bg) 92%, transparent) 0%, color-mix(in srgb, var(--bg) 64%, transparent) 52%, color-mix(in srgb, var(--bg) 22%, transparent) 100%),
    linear-gradient(180deg, transparent 0%, color-mix(in srgb, var(--bg) 84%, transparent) 100%);
}

.gh-final-cta__content {
  max-width: 720px;
  padding: 56px;
}

.gh-final-cta h2 {
  margin: 0;
  color: var(--text);
  font-size: clamp(34px, 5vw, 64px);
  line-height: 1;
}

.gh-final-cta p:not(.gh-eyebrow) {
  max-width: 580px;
  margin: var(--space-5) 0 var(--space-6);
  color: var(--muted);
  font-size: 17px;
}

.gh-contact {
  display: grid;
  grid-template-columns: 0.88fr 1fr;
  gap: var(--space-6);
  align-items: start;
  padding: 64px 0 80px;
}

.gh-contact__copy p {
  max-width: 560px;
  color: var(--muted);
  font-size: 17px;
}

.gh-contact__points {
  display: grid;
  gap: var(--space-3);
  margin-top: var(--space-6);
}

.gh-contact__points span {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  color: var(--text);
  font-weight: 700;
}

.gh-contact__points span::before {
  content: "";
  width: 9px;
  height: 9px;
  border-radius: var(--radius-pill);
  background: var(--grad-brand);
}

.gh-form {
  display: grid;
  gap: var(--space-4);
  padding: var(--space-5);
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.gh-field {
  display: grid;
  gap: var(--space-2);
}

.gh-field label {
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

.gh-field input,
.gh-field select,
.gh-field textarea {
  width: 100%;
  min-height: 48px;
  padding: 12px 14px;
  border: 1px solid var(--border-2);
  border-radius: var(--radius-sm);
  background: var(--surface);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 15px;
  outline: none;
}

.gh-field textarea {
  min-height: 124px;
  resize: vertical;
}

.gh-field input:focus,
.gh-field select:focus,
.gh-field textarea:focus,
.gh-submit:focus-visible,
.gh-primary:focus-visible,
.gh-secondary:focus-visible,
.gh-nav__cta:focus-visible {
  outline: none;
  box-shadow: 0 0 0 3px color-mix(in srgb, var(--blue) 25%, transparent);
}

.gh-form__status {
  min-height: 22px;
  color: var(--success);
  font-size: 13px;
  font-weight: 700;
}

.gh-footer {
  border-top: 1px solid var(--border);
  padding: var(--space-6) 0;
  color: var(--muted);
}

.gh-footer .gh-shell {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-4);
}

.gh-footer__links {
  display: flex;
  gap: var(--space-4);
  flex-wrap: wrap;
}

.gh-reveal {
  opacity: 1;
  transform: none;
  transition: opacity 420ms var(--ease), transform 420ms var(--ease);
}

.gh-reveal.is-visible {
  opacity: 1;
  transform: none;
}

@media (max-width: 980px) {
  .gh-nav {
    align-items: flex-start;
    flex-wrap: wrap;
  }

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

  .gh-nav__links {
    width: 100%;
    display: none;
    flex-direction: column;
    align-items: stretch;
  }

  .gh-nav[data-open="true"] .gh-nav__links {
    display: flex;
  }

  .gh-nav__links a,
  .gh-nav__links .gh-nav__cta {
    justify-content: flex-start;
    width: 100%;
  }

  .gh-hero,
  .gh-showcase,
  .gh-contact,
  .gh-services__layout,
  .gh-ai-layout {
    grid-template-columns: 1fr;
  }

  .gh-dashboard {
    max-width: 620px;
  }

  .gh-package {
    position: relative;
    top: auto;
    min-height: auto;
  }

  .gh-grid,
  .gh-results,
  .gh-services__promise,
  .gh-service-visuals,
  .gh-system-grid,
  .gh-case-grid,
  .gh-preview-grid,
  .gh-logo-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .gh-trust {
    grid-template-columns: 1fr;
  }

  .gh-ai-console {
    min-height: auto;
  }

  .gh-visual-card--large {
    grid-column: 1 / -1;
    grid-row: auto;
    min-height: 360px;
  }

  .gh-section__head {
    display: grid;
  }
}

@media (max-width: 680px) {
  .gh-shell {
    width: min(100% - 32px, 1180px);
  }

  .gh-brand__word span {
    display: none;
  }

  .gh-hero {
    min-height: auto;
    padding: 48px 0 32px;
  }

  .gh-hero h1 {
    font-size: clamp(42px, 15vw, 62px);
  }

  .gh-hero__copy {
    font-size: 17px;
  }

  .gh-proof,
  .gh-grid,
  .gh-flow,
  .gh-results,
  .gh-package__metrics,
  .gh-services__promise,
  .gh-service-visuals,
  .gh-system-grid,
  .gh-case-grid,
  .gh-preview-grid,
  .gh-logo-strip,
  .gh-ai-capabilities,
  .gh-console__grid {
    grid-template-columns: 1fr;
  }

  .gh-trust {
    padding: var(--space-5);
  }

  .gh-logo-tile {
    min-height: 72px;
  }

  .gh-preview-card {
    min-height: auto;
  }

  .gh-final-cta {
    min-height: 620px;
  }

  .gh-final-cta::before {
    background:
      linear-gradient(180deg, color-mix(in srgb, var(--bg) 58%, transparent), color-mix(in srgb, var(--bg) 94%, transparent) 72%),
      linear-gradient(90deg, color-mix(in srgb, var(--bg) 74%, transparent), transparent);
  }

  .gh-final-cta__content {
    padding: var(--space-5);
  }

  .gh-ai-score {
    grid-template-columns: 1fr;
  }

  .gh-ai-score strong {
    grid-row: auto;
  }

  .gh-console__panel {
    min-height: 132px;
  }

  .gh-console__panel p {
    font-size: 16px;
  }

  .gh-ai-capability,
  .gh-system-card,
  .gh-case-card {
    min-height: auto;
  }

  .gh-visual-card,
  .gh-visual-card--large {
    min-height: 280px;
  }

  .gh-visual-card div {
    left: var(--space-4);
    right: var(--space-4);
    bottom: var(--space-4);
  }

  .gh-service-card {
    grid-template-columns: 52px 1fr;
    min-height: auto;
    padding: var(--space-3);
  }

  .gh-service-card__icon {
    width: 52px;
    height: 52px;
  }

  .gh-service-card__icon svg {
    width: 24px;
    height: 24px;
  }

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

  .gh-service-card p {
    font-size: 14px;
  }

  .gh-investment strong {
    font-size: 44px;
  }

  .gh-command__item {
    grid-template-columns: 44px 1fr;
  }

  .gh-tag {
    grid-column: 1 / -1;
    width: fit-content;
  }

  .gh-footer .gh-shell {
    align-items: flex-start;
    flex-direction: column;
  }
}

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

  .gh-reveal,
  .gh-card,
  .gh-primary,
  .gh-secondary,
  .gh-submit,
  .gh-nav__cta {
    transition: none;
  }

  .gh-reveal,
  .gh-card:hover,
  .gh-primary:hover,
  .gh-secondary:hover,
  .gh-submit:hover,
  .gh-nav__cta:hover {
    transform: none;
  }
}
