:root {
  --gsk-bg-void: #0A0D1A;
  --gsk-bg-silicon: #111527;
  --gsk-bg-lab: #F5F3EF;
  --gsk-bg-parchment: #EDE9E0;
  --gsk-bg-white: #FFFFFF;
  --gsk-photon-amber: #D4873A;
  --gsk-waveguide-blue: #7B9EC8;
  --gsk-text-light-primary: #EFF0F4;
  --gsk-text-light-muted: #8A98B0;
  --gsk-text-dark-primary: #1A2030;
  --gsk-text-dark-muted: #3D4A60;
  --gsk-accent-on-light: #8B5420;
  --gsk-container-max: 1240px;
  --gsk-container-pad: clamp(1.25rem, 5vw, 3rem);
  --gsk-radius: 6px;
  --gsk-radius-lg: 12px;
  --gsk-font-mono: 'JetBrains Mono', 'Courier New', monospace;
}

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

html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: 'Manrope', system-ui, -apple-system, sans-serif;
  font-weight: 400;
  font-size: 1.0625rem;
  line-height: 1.75;
  color: var(--gsk-text-dark-primary);
  background: var(--gsk-bg-void);
  -webkit-font-smoothing: antialiased;
}

.gsk-page--dark-top {
  background: var(--gsk-bg-void);
}

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

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

ul, ol {
  list-style: none;
}

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
}

input, textarea, select {
  font-family: inherit;
}

.gsk-container {
  max-width: var(--gsk-container-max);
  margin-inline: auto;
  padding-inline: var(--gsk-container-pad);
}

.gsk-section--dark {
  background: var(--gsk-bg-void);
  color: var(--gsk-text-light-primary);
}

.gsk-section--dark-alt {
  background: var(--gsk-bg-silicon);
  color: var(--gsk-text-light-primary);
}

.gsk-section--light {
  background: var(--gsk-bg-lab);
  color: var(--gsk-text-dark-primary);
}

.gsk-section--light-alt {
  background: var(--gsk-bg-parchment);
  color: var(--gsk-text-dark-primary);
}

.gsk-section {
  padding-block: clamp(4rem, 8vw, 7rem);
}

.gsk-section__eyebrow {
  font-family: 'Manrope', sans-serif;
  font-weight: 600;
  font-size: 0.75rem;
  line-height: 1;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gsk-photon-amber);
  margin-bottom: 1rem;
  display: block;
}

.gsk-section--light .gsk-section__eyebrow,
.gsk-section--light-alt .gsk-section__eyebrow {
  color: var(--gsk-accent-on-light);
}

.gsk-section__headline {
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 700;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.15;
  margin-bottom: 1.25rem;
}

.gsk-section--dark .gsk-section__headline,
.gsk-section--dark-alt .gsk-section__headline {
  color: var(--gsk-text-light-primary);
}

.gsk-section--light .gsk-section__headline,
.gsk-section--light-alt .gsk-section__headline {
  color: var(--gsk-text-dark-primary);
}

.gsk-section__subhead {
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 200;
  font-size: 1.25rem;
  line-height: 1.6;
  max-width: 52ch;
}

.gsk-section--dark .gsk-section__subhead,
.gsk-section--dark-alt .gsk-section__subhead {
  color: var(--gsk-text-light-muted);
}

.gsk-section--light .gsk-section__subhead,
.gsk-section--light-alt .gsk-section__subhead {
  color: var(--gsk-text-dark-muted);
}

.gsk-section__body {
  font-size: 1.0625rem;
  line-height: 1.75;
}

.gsk-section--dark .gsk-section__body,
.gsk-section--dark-alt .gsk-section__body {
  color: var(--gsk-text-light-muted);
}

.gsk-section--light .gsk-section__body,
.gsk-section--light-alt .gsk-section__body {
  color: var(--gsk-text-dark-muted);
}

.gsk-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: 'Manrope', sans-serif;
  font-weight: 600;
  font-size: 0.9375rem;
  line-height: 1;
  padding: 0.8125rem 1.625rem;
  border-radius: var(--gsk-radius);
  transition: opacity 0.18s, background 0.18s, color 0.18s, border-color 0.18s;
  text-decoration: none;
  border: 2px solid transparent;
  white-space: nowrap;
}

.gsk-btn--primary {
  background: var(--gsk-photon-amber);
  color: var(--gsk-text-dark-primary);
  border-color: var(--gsk-photon-amber);
}

.gsk-btn--primary:hover {
  opacity: 0.88;
}

.gsk-btn--outline-dark {
  background: transparent;
  color: var(--gsk-text-dark-primary);
  border-color: var(--gsk-text-dark-primary);
}

.gsk-btn--outline-dark:hover {
  background: var(--gsk-text-dark-primary);
  color: var(--gsk-bg-lab);
}

.gsk-btn--ghost-on-dark {
  background: transparent;
  color: var(--gsk-text-light-primary);
  border-color: transparent;
}

.gsk-btn--ghost-on-dark:hover {
  color: var(--gsk-photon-amber);
}

.gsk-btn--ghost-on-light {
  background: transparent;
  color: var(--gsk-text-dark-primary);
  border-color: transparent;
}

.gsk-btn--ghost-on-light:hover {
  color: var(--gsk-accent-on-light);
}

.gsk-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: transparent;
  transition: background 0.3s, box-shadow 0.3s;
}

.gsk-nav--scrolled {
  background: var(--gsk-bg-void);
  box-shadow: 0 1px 0 rgba(212, 135, 58, 0.15);
}

.gsk-nav__inner {
  max-width: var(--gsk-container-max);
  margin-inline: auto;
  padding-inline: var(--gsk-container-pad);
  height: 68px;
  display: flex;
  align-items: center;
  gap: 2rem;
}

.gsk-nav__logo {
  flex-shrink: 0;
  display: flex;
  align-items: center;
}

.gsk-nav__logo img {
  height: 28px;
  width: auto;
}

.gsk-nav__logo .gsk-logo--dark {
  display: none;
}

.gsk-nav__logo .gsk-logo--light {
  display: block;
}

.gsk-nav__links {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  margin-left: auto;
}

.gsk-nav__link {
  font-family: 'Manrope', sans-serif;
  font-weight: 400;
  font-size: 0.9375rem;
  color: var(--gsk-text-light-primary);
  padding: 0.4rem 0.75rem;
  border-radius: var(--gsk-radius);
  transition: color 0.18s;
  text-decoration: none;
}

.gsk-nav__link:hover {
  color: var(--gsk-photon-amber);
}

.gsk-nav__actions {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-left: 1rem;
}

.gsk-nav__signin {
  font-family: 'Manrope', sans-serif;
  font-weight: 600;
  font-size: 0.9375rem;
  color: var(--gsk-text-light-primary);
  padding: 0.4rem 0.75rem;
  border-radius: var(--gsk-radius);
  text-decoration: none;
  transition: color 0.18s;
  border: 1px solid rgba(239, 240, 244, 0.3);
}

.gsk-nav__signin:hover {
  color: var(--gsk-photon-amber);
  border-color: var(--gsk-photon-amber);
}

.gsk-nav__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 0.5rem;
  background: none;
  border: none;
  cursor: pointer;
  margin-left: auto;
}

.gsk-nav__bar {
  width: 24px;
  height: 2px;
  background: var(--gsk-text-light-primary);
  border-radius: 2px;
  transition: transform 0.25s, opacity 0.25s;
}

.gsk-nav__mobile {
  display: none;
  position: fixed;
  top: 68px;
  left: 0;
  right: 0;
  background: var(--gsk-bg-void);
  border-top: 1px solid rgba(212, 135, 58, 0.2);
  padding: 1.5rem var(--gsk-container-pad);
  flex-direction: column;
  gap: 0.25rem;
  z-index: 999;
}

.gsk-nav__mobile.gsk-nav__mobile--open {
  display: flex;
}

.gsk-nav__mobile .gsk-nav__link {
  display: block;
  padding: 0.75rem 0.5rem;
  font-size: 1rem;
  border-bottom: 1px solid rgba(138, 152, 176, 0.12);
  color: var(--gsk-text-light-primary);
}

.gsk-nav__mobile .gsk-nav__link:last-of-type {
  border-bottom: none;
}

.gsk-nav__mobile .gsk-nav__signin {
  display: block;
  margin-top: 0.75rem;
  text-align: center;
}

.gsk-nav__mobile .gsk-btn--primary {
  display: block;
  text-align: center;
  margin-top: 0.5rem;
}

.gsk-hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  padding-block: clamp(5rem, 10vw, 8rem);
  overflow: hidden;
}

.gsk-hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.gsk-hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.gsk-hero__bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(10, 13, 26, 0.88) 0%,
    rgba(10, 13, 26, 0.72) 50%,
    rgba(10, 13, 26, 0.55) 100%
  );
}

.gsk-hero__inner {
  position: relative;
  z-index: 2;
  max-width: var(--gsk-container-max);
  margin-inline: auto;
  padding-inline: var(--gsk-container-pad);
  padding-top: 68px;
  width: 100%;
}

.gsk-hero__kicker {
  font-family: 'Manrope', sans-serif;
  font-weight: 600;
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gsk-photon-amber);
  margin-bottom: 1.25rem;
  display: block;
}

.gsk-hero__h1 {
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 900;
  font-size: clamp(2.625rem, 6vw, 4.5rem);
  line-height: 1.05;
  color: var(--gsk-text-light-primary);
  max-width: 18ch;
  margin-bottom: 1.75rem;
}

.gsk-hero__sub {
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 200;
  font-size: clamp(1.0625rem, 1.8vw, 1.25rem);
  line-height: 1.65;
  color: var(--gsk-text-light-muted);
  max-width: 56ch;
  margin-bottom: 2.5rem;
}

.gsk-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
}

.gsk-subhero {
  position: relative;
  padding-block: clamp(5rem, 8vw, 7rem) clamp(3.5rem, 6vw, 5rem);
  overflow: hidden;
  background: var(--gsk-bg-void);
}

.gsk-subhero__inner {
  max-width: var(--gsk-container-max);
  margin-inline: auto;
  padding-inline: var(--gsk-container-pad);
  padding-top: 68px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 2rem;
  align-items: end;
}

.gsk-subhero__kicker {
  font-family: 'Manrope', sans-serif;
  font-weight: 600;
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gsk-photon-amber);
  margin-bottom: 0.875rem;
  display: block;
}

.gsk-subhero__h1 {
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 700;
  font-size: clamp(2rem, 4.5vw, 3.25rem);
  line-height: 1.1;
  color: var(--gsk-text-light-primary);
  margin-bottom: 1rem;
}

.gsk-subhero__sub {
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 200;
  font-size: 1.125rem;
  line-height: 1.6;
  color: var(--gsk-text-light-muted);
  max-width: 52ch;
}

.gsk-subhero__ornament {
  flex-shrink: 0;
}

.gsk-problem {
  padding-block: clamp(4rem, 8vw, 7rem);
}

.gsk-problem__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.gsk-problem__chart-wrap {
  background: var(--gsk-bg-parchment);
  border-radius: var(--gsk-radius-lg);
  padding: 2.5rem 2rem;
}

.gsk-problem__chart-label {
  font-family: 'Manrope', sans-serif;
  font-weight: 600;
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gsk-text-dark-muted);
  margin-bottom: 1.25rem;
}

.gsk-power-chart {
  width: 100%;
}

.gsk-problem__content {
  padding-left: 1rem;
}

.gsk-problem__body {
  font-size: 1.0625rem;
  line-height: 1.75;
  color: var(--gsk-text-dark-muted);
  margin-bottom: 1.5rem;
}

.gsk-principle {
  padding-block: clamp(4rem, 8vw, 7rem);
}

.gsk-principle__header {
  text-align: center;
  max-width: 52ch;
  margin-inline: auto;
  margin-bottom: 3.5rem;
}

.gsk-principle__steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.gsk-step {
  background: rgba(239, 240, 244, 0.04);
  border: 1px solid rgba(212, 135, 58, 0.2);
  border-radius: var(--gsk-radius-lg);
  padding: 2rem 1.75rem;
  position: relative;
}

.gsk-step__num {
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 900;
  font-size: 2.5rem;
  line-height: 1;
  color: var(--gsk-photon-amber);
  margin-bottom: 1.25rem;
}

.gsk-step__icon {
  margin-bottom: 1.25rem;
}

.gsk-step__title {
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 700;
  font-size: 1.25rem;
  line-height: 1.3;
  color: var(--gsk-text-light-primary);
  margin-bottom: 0.75rem;
}

.gsk-step__body {
  font-size: 0.9375rem;
  line-height: 1.7;
  color: var(--gsk-text-light-muted);
}

.gsk-system-fit {
  padding-block: clamp(4rem, 8vw, 7rem);
}

.gsk-system-fit__grid {
  display: grid;
  grid-template-columns: 3fr 2fr;
  gap: 4rem;
  align-items: center;
}

.gsk-system-fit__content .gsk-section__body {
  margin-bottom: 1.5rem;
}

.gsk-system-fit__list {
  margin-top: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.875rem;
}

.gsk-system-fit__item {
  display: flex;
  align-items: flex-start;
  gap: 0.875rem;
  font-size: 0.9375rem;
  line-height: 1.6;
  color: var(--gsk-text-dark-muted);
}

.gsk-system-fit__item-dot {
  flex-shrink: 0;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gsk-photon-amber);
  margin-top: 0.45em;
}

.gsk-block-diagram {
  width: 100%;
}

.gsk-team {
  padding-block: clamp(4rem, 8vw, 7rem);
}

.gsk-team__header {
  text-align: center;
  margin-bottom: 3.5rem;
}

.gsk-team__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
}

.gsk-person {
  text-align: center;
}

.gsk-person__portrait-wrap {
  width: 140px;
  height: 140px;
  border-radius: 50%;
  overflow: hidden;
  margin-inline: auto;
  margin-bottom: 1.25rem;
  border: 2px solid rgba(212, 135, 58, 0.3);
  background: var(--gsk-bg-silicon);
}

.gsk-person__portrait-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
}

.gsk-person__name {
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 700;
  font-size: 1.125rem;
  color: var(--gsk-text-light-primary);
  margin-bottom: 0.25rem;
}

.gsk-person__title {
  font-family: 'Manrope', sans-serif;
  font-weight: 600;
  font-size: 0.8125rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--gsk-photon-amber);
  margin-bottom: 0.75rem;
}

.gsk-person__bio {
  font-size: 0.9rem;
  line-height: 1.65;
  color: var(--gsk-text-light-muted);
}

.gsk-section--light-alt .gsk-person__name {
  color: var(--gsk-text-dark-primary);
}

.gsk-section--light-alt .gsk-person__bio {
  color: var(--gsk-text-dark-muted);
}

.gsk-section--light-alt .gsk-person__title {
  color: var(--gsk-accent-on-light);
}

.gsk-cta {
  padding-block: clamp(4rem, 8vw, 7rem);
}

.gsk-cta__inner {
  text-align: center;
  max-width: 48ch;
  margin-inline: auto;
}

.gsk-cta__inner .gsk-section__headline {
  margin-bottom: 1rem;
}

.gsk-cta__inner .gsk-section__body {
  margin-bottom: 2rem;
  max-width: 44ch;
  margin-inline: auto;
}

.gsk-cta__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
}

.gsk-footer {
  background: var(--gsk-bg-void);
  border-top: 1px solid rgba(212, 135, 58, 0.18);
  color: var(--gsk-text-light-primary);
}

.gsk-footer__main {
  max-width: var(--gsk-container-max);
  margin-inline: auto;
  padding-inline: var(--gsk-container-pad);
  padding-block: 3.5rem;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 3rem;
}

.gsk-footer__brand .gsk-footer__logo {
  margin-bottom: 1rem;
  height: 28px;
  width: auto;
}

.gsk-footer__tagline {
  font-size: 0.9375rem;
  line-height: 1.6;
  color: var(--gsk-text-light-muted);
  margin-bottom: 1.25rem;
  max-width: 32ch;
}

.gsk-footer__contact-item {
  font-size: 0.875rem;
  line-height: 1.6;
  color: var(--gsk-text-light-muted);
  display: block;
  margin-bottom: 0.25rem;
}

.gsk-footer__contact-item a {
  color: var(--gsk-text-light-muted);
  text-decoration: none;
  transition: color 0.18s;
}

.gsk-footer__contact-item a:hover {
  color: var(--gsk-photon-amber);
}

.gsk-footer__col-heading {
  font-family: 'Manrope', sans-serif;
  font-weight: 600;
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gsk-text-light-primary);
  margin-bottom: 1.25rem;
}

.gsk-footer__nav-list {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.gsk-footer__nav-link {
  font-size: 0.9375rem;
  color: var(--gsk-text-light-muted);
  text-decoration: none;
  transition: color 0.18s;
  line-height: 1.5;
}

.gsk-footer__nav-link:hover {
  color: var(--gsk-photon-amber);
}

.gsk-footer__bottom {
  border-top: 1px solid rgba(138, 152, 176, 0.12);
  max-width: var(--gsk-container-max);
  margin-inline: auto;
  padding-inline: var(--gsk-container-pad);
  padding-block: 1.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.gsk-footer__copy {
  font-size: 0.8125rem;
  color: var(--gsk-text-light-muted);
}

.gsk-footer__legal-links {
  display: flex;
  gap: 1.25rem;
  flex-wrap: wrap;
}

.gsk-footer__legal-link {
  font-size: 0.8125rem;
  color: var(--gsk-text-light-muted);
  text-decoration: none;
  transition: color 0.18s;
}

.gsk-footer__legal-link:hover {
  color: var(--gsk-photon-amber);
}

.gsk-footer__legal-link--cookie {
  cursor: pointer;
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9000;
  background: var(--gsk-bg-silicon);
  border-top: 1px solid rgba(212, 135, 58, 0.25);
  padding: 1.25rem var(--gsk-container-pad);
}

.cookie-banner__inner {
  max-width: var(--gsk-container-max);
  margin-inline: auto;
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.cookie-banner__text {
  flex: 1;
  font-size: 0.875rem;
  line-height: 1.6;
  color: var(--gsk-text-light-muted);
}

.cookie-banner__text a {
  color: var(--gsk-waveguide-blue);
  text-decoration: underline;
}

.cookie-banner__actions {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  flex-shrink: 0;
}

.cookie-banner__btn {
  font-family: 'Manrope', sans-serif;
  font-weight: 600;
  font-size: 0.875rem;
  padding: 0.6rem 1.25rem;
  border-radius: var(--gsk-radius);
  cursor: pointer;
  transition: opacity 0.18s;
  color: var(--gsk-text-light-primary);
  background: transparent;
  border: 1px solid rgba(138, 152, 176, 0.5);
}

.cookie-banner__btn--primary {
  background: var(--gsk-photon-amber);
  color: var(--gsk-text-dark-primary);
  border-color: var(--gsk-photon-amber);
}

.cookie-banner__btn:hover {
  opacity: 0.85;
}

.gsk-legal-page .gsk-subhero__inner {
  grid-template-columns: 1fr;
}

.gsk-legal-content {
  background: var(--gsk-bg-lab);
  color: var(--gsk-text-dark-primary);
  padding-block: clamp(3rem, 6vw, 5rem);
}

.gsk-legal-body {
  max-width: 800px;
  margin-inline: auto;
  padding-inline: var(--gsk-container-pad);
}

.gsk-legal-body h2 {
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 700;
  font-size: 1.5rem;
  color: var(--gsk-text-dark-primary);
  margin-top: 2.5rem;
  margin-bottom: 0.875rem;
}

.gsk-legal-body h3 {
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 700;
  font-size: 1.125rem;
  color: var(--gsk-text-dark-primary);
  margin-top: 1.75rem;
  margin-bottom: 0.625rem;
}

.gsk-legal-body p {
  color: var(--gsk-text-dark-muted);
  line-height: 1.75;
  margin-bottom: 1rem;
}

.gsk-legal-body ul, .gsk-legal-body ol {
  padding-left: 1.5rem;
  list-style: disc;
  margin-bottom: 1rem;
}

.gsk-legal-body ul li, .gsk-legal-body ol li {
  color: var(--gsk-text-dark-muted);
  line-height: 1.75;
  margin-bottom: 0.375rem;
}

.gsk-article-hero {
  background: var(--gsk-bg-void);
  padding-block: clamp(5rem, 8vw, 7rem) clamp(3rem, 5vw, 4.5rem);
  padding-top: clamp(7rem, 10vw, 9rem);
}

.gsk-article-hero__inner {
  max-width: var(--gsk-container-max);
  margin-inline: auto;
  padding-inline: var(--gsk-container-pad);
}

.gsk-article-hero__date {
  font-family: 'JetBrains Mono', 'Courier New', monospace;
  font-size: 0.8125rem;
  color: var(--gsk-text-light-muted);
  margin-bottom: 1rem;
  display: block;
}

.gsk-article-hero__title {
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 700;
  font-size: clamp(1.875rem, 4vw, 2.75rem);
  line-height: 1.15;
  color: var(--gsk-text-light-primary);
  max-width: 22ch;
  margin-bottom: 1rem;
}

.gsk-article-hero__author {
  font-family: 'Manrope', sans-serif;
  font-size: 0.9375rem;
  color: var(--gsk-text-light-muted);
}

.gsk-article-hero__cover {
  max-width: 900px;
  margin-inline: auto;
  margin-top: 2.5rem;
  border-radius: var(--gsk-radius-lg);
  overflow: hidden;
}

.gsk-article-hero__cover img {
  width: 100%;
  height: auto;
  aspect-ratio: 16/9;
  object-fit: cover;
  display: block;
}

.gsk-article-body {
  background: var(--gsk-bg-lab);
  color: var(--gsk-text-dark-primary);
  padding-block: clamp(3rem, 5vw, 4.5rem);
}

.gsk-article-prose {
  max-width: 720px;
  margin-inline: auto;
  padding-inline: var(--gsk-container-pad);
}

.gsk-article-prose h2 {
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 700;
  font-size: 1.625rem;
  color: var(--gsk-text-dark-primary);
  margin-top: 2.5rem;
  margin-bottom: 0.875rem;
  line-height: 1.25;
}

.gsk-article-prose h3 {
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--gsk-text-dark-primary);
  margin-top: 2rem;
  margin-bottom: 0.75rem;
}

.gsk-article-prose p {
  color: var(--gsk-text-dark-muted);
  line-height: 1.8;
  margin-bottom: 1.25rem;
  font-size: 1.0625rem;
}

.gsk-article-prose ul, .gsk-article-prose ol {
  padding-left: 1.75rem;
  list-style: disc;
  margin-bottom: 1.25rem;
}

.gsk-article-prose ul li, .gsk-article-prose ol li {
  color: var(--gsk-text-dark-muted);
  line-height: 1.75;
  margin-bottom: 0.5rem;
}

.gsk-article-prose blockquote {
  border-left: 3px solid var(--gsk-photon-amber);
  padding-left: 1.25rem;
  margin-block: 1.75rem;
  color: var(--gsk-text-dark-muted);
  font-style: italic;
}

.gsk-article-prose code {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.875rem;
  background: var(--gsk-bg-parchment);
  border-radius: 3px;
  padding: 0.15em 0.4em;
  color: var(--gsk-text-dark-primary);
}

.gsk-article-prose pre {
  background: var(--gsk-bg-silicon);
  border-radius: var(--gsk-radius);
  padding: 1.25rem 1.5rem;
  overflow-x: auto;
  margin-block: 1.5rem;
  line-height: 1.45;
}

.gsk-article-prose pre code {
  background: none;
  padding: 0;
  color: var(--gsk-text-light-primary);
  font-size: 0.875rem;
}

.gsk-article-cta {
  background: var(--gsk-bg-void);
  color: var(--gsk-text-light-primary);
  padding-block: clamp(3.5rem, 6vw, 5rem);
}

.gsk-article-cta__inner {
  max-width: var(--gsk-container-max);
  margin-inline: auto;
  padding-inline: var(--gsk-container-pad);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}

.gsk-article-cta__text {
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 700;
  font-size: 1.375rem;
  color: var(--gsk-text-light-primary);
}

.gsk-article-cta__links {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.gsk-blog-hero {
  background: var(--gsk-bg-void);
  padding-block: clamp(6rem, 10vw, 8rem) clamp(3rem, 5vw, 4rem);
  padding-top: clamp(8rem, 12vw, 10rem);
  text-align: center;
}

.gsk-blog-hero__inner {
  max-width: var(--gsk-container-max);
  margin-inline: auto;
  padding-inline: var(--gsk-container-pad);
}

.gsk-blog-hero__kicker {
  font-family: 'Manrope', sans-serif;
  font-weight: 600;
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gsk-photon-amber);
  margin-bottom: 1rem;
  display: block;
}

.gsk-blog-hero__title {
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 700;
  font-size: clamp(2rem, 4.5vw, 3rem);
  color: var(--gsk-text-light-primary);
  margin-bottom: 0.875rem;
}

.gsk-blog-hero__sub {
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 200;
  font-size: 1.125rem;
  color: var(--gsk-text-light-muted);
  max-width: 44ch;
  margin-inline: auto;
}

.gsk-blog-featured {
  background: var(--gsk-bg-lab);
  padding-block: clamp(3.5rem, 6vw, 5rem);
}

.gsk-blog-featured__inner {
  max-width: var(--gsk-container-max);
  margin-inline: auto;
  padding-inline: var(--gsk-container-pad);
}

.gsk-blog-featured__label {
  font-family: 'Manrope', sans-serif;
  font-weight: 600;
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gsk-accent-on-light);
  margin-bottom: 1.25rem;
  display: block;
}

.gsk-blog-featured__card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  background: var(--gsk-bg-white);
  border-radius: var(--gsk-radius-lg);
  overflow: hidden;
  border: 1px solid rgba(29, 32, 48, 0.1);
  text-decoration: none;
  color: inherit;
  transition: box-shadow 0.2s;
}

.gsk-blog-featured__card:hover {
  box-shadow: 0 8px 32px rgba(29, 32, 48, 0.12);
}

.gsk-blog-featured__img-wrap {
  aspect-ratio: 4/3;
  overflow: hidden;
}

.gsk-blog-featured__img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.gsk-blog-featured__content {
  padding: 2.5rem 2.5rem 2.5rem 0;
}

.gsk-blog-featured__date {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.8125rem;
  color: var(--gsk-text-dark-muted);
  margin-bottom: 0.75rem;
  display: block;
}

.gsk-blog-featured__title {
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 700;
  font-size: 1.625rem;
  color: var(--gsk-text-dark-primary);
  line-height: 1.25;
  margin-bottom: 0.875rem;
}

.gsk-blog-featured__excerpt {
  font-size: 0.9375rem;
  color: var(--gsk-text-dark-muted);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.gsk-blog-featured__readmore {
  font-family: 'Manrope', sans-serif;
  font-weight: 600;
  font-size: 0.875rem;
  color: var(--gsk-accent-on-light);
  text-decoration: none;
  letter-spacing: 0.04em;
}

.gsk-blog-grid-section {
  background: var(--gsk-bg-parchment);
  padding-block: clamp(3.5rem, 6vw, 5rem);
}

.gsk-blog-grid__inner {
  max-width: var(--gsk-container-max);
  margin-inline: auto;
  padding-inline: var(--gsk-container-pad);
}

.gsk-blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.gsk-blog-card {
  background: var(--gsk-bg-white);
  border-radius: var(--gsk-radius-lg);
  overflow: hidden;
  border: 1px solid rgba(29, 32, 48, 0.08);
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
  transition: box-shadow 0.2s;
}

.gsk-blog-card:hover {
  box-shadow: 0 6px 24px rgba(29, 32, 48, 0.1);
}

.gsk-blog-card__img-wrap {
  aspect-ratio: 16/9;
  overflow: hidden;
}

.gsk-blog-card__img-wrap img {
  width: 100%;
  height: 100%;
  height: auto;
  aspect-ratio: 16/9;
  object-fit: cover;
  display: block;
}

.gsk-blog-card__content {
  padding: 1.375rem 1.5rem 1.75rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.gsk-blog-card__date {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.75rem;
  color: var(--gsk-text-dark-muted);
  margin-bottom: 0.5rem;
  display: block;
}

.gsk-blog-card__title {
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 700;
  font-size: 1.0625rem;
  color: var(--gsk-text-dark-primary);
  line-height: 1.3;
  margin-bottom: 0.625rem;
}

.gsk-blog-card__excerpt {
  font-size: 0.875rem;
  color: var(--gsk-text-dark-muted);
  line-height: 1.65;
  flex: 1;
  margin-bottom: 1rem;
}

.gsk-blog-card__read {
  font-family: 'Manrope', sans-serif;
  font-weight: 600;
  font-size: 0.8125rem;
  color: var(--gsk-accent-on-light);
  letter-spacing: 0.04em;
  margin-top: auto;
}

.gsk-login-page {
  min-height: 100vh;
  background: var(--gsk-bg-void);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem var(--gsk-container-pad);
}

.gsk-login-card {
  background: var(--gsk-bg-silicon);
  border: 1px solid rgba(212, 135, 58, 0.25);
  border-radius: var(--gsk-radius-lg);
  padding: 2.75rem 2.5rem;
  width: 100%;
  max-width: 420px;
}

.gsk-login-card__logo {
  display: block;
  margin-inline: auto;
  margin-bottom: 2rem;
  height: 28px;
  width: auto;
}

.gsk-login-card__heading {
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 700;
  font-size: 1.625rem;
  color: var(--gsk-text-light-primary);
  text-align: center;
  margin-bottom: 0.5rem;
}

.gsk-login-card__sub {
  font-size: 0.9rem;
  color: var(--gsk-text-light-muted);
  text-align: center;
  margin-bottom: 2rem;
}

.gsk-form-group {
  margin-bottom: 1.125rem;
}

.gsk-form-label {
  display: block;
  font-family: 'Manrope', sans-serif;
  font-weight: 600;
  font-size: 0.8125rem;
  color: var(--gsk-text-light-muted);
  margin-bottom: 0.375rem;
  letter-spacing: 0.04em;
}

.gsk-form-input {
  width: 100%;
  padding: 0.75rem 1rem;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(138, 152, 176, 0.3);
  border-radius: var(--gsk-radius);
  color: var(--gsk-text-light-primary);
  font-family: 'Manrope', sans-serif;
  font-size: 0.9375rem;
  transition: border-color 0.18s;
  outline: none;
}

.gsk-form-input:focus {
  border-color: var(--gsk-photon-amber);
}

.gsk-form-input::placeholder {
  color: rgba(138, 152, 176, 0.5);
}

.gsk-login-submit {
  width: 100%;
  padding: 0.875rem;
  background: var(--gsk-photon-amber);
  color: var(--gsk-text-dark-primary);
  font-family: 'Manrope', sans-serif;
  font-weight: 600;
  font-size: 1rem;
  border-radius: var(--gsk-radius);
  border: none;
  cursor: pointer;
  margin-top: 0.5rem;
  margin-bottom: 1.25rem;
  transition: opacity 0.18s;
}

.gsk-login-submit:hover {
  opacity: 0.88;
}

.gsk-login-card__links {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 2rem;
}

.gsk-login-card__link {
  font-size: 0.875rem;
  color: var(--gsk-waveguide-blue);
  text-decoration: none;
  transition: color 0.18s;
}

.gsk-login-card__link:hover {
  color: var(--gsk-photon-amber);
}

.gsk-login-card__footer {
  border-top: 1px solid rgba(138, 152, 176, 0.12);
  padding-top: 1.25rem;
  display: flex;
  gap: 1.25rem;
  justify-content: center;
  flex-wrap: wrap;
}

.gsk-login-card__footer a {
  font-size: 0.8125rem;
  color: var(--gsk-text-light-muted);
  text-decoration: none;
  transition: color 0.18s;
}

.gsk-login-card__footer a:hover {
  color: var(--gsk-photon-amber);
}

.gsk-contact-form-section {
  background: var(--gsk-bg-lab);
  padding-block: clamp(4rem, 7vw, 6rem);
}

.gsk-contact-form-section__inner {
  max-width: var(--gsk-container-max);
  margin-inline: auto;
  padding-inline: var(--gsk-container-pad);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

.gsk-contact-form__title {
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 700;
  font-size: 1.5rem;
  color: var(--gsk-text-dark-primary);
  margin-bottom: 0.5rem;
}

.gsk-contact-form__sub {
  color: var(--gsk-text-dark-muted);
  font-size: 0.9375rem;
  line-height: 1.6;
  margin-bottom: 2rem;
}

.gsk-contact-direct {
  margin-top: 1.5rem;
}

.gsk-contact-direct__label {
  font-family: 'Manrope', sans-serif;
  font-weight: 600;
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gsk-text-dark-muted);
  margin-bottom: 0.75rem;
}

.gsk-contact-direct__item {
  font-size: 0.9375rem;
  color: var(--gsk-text-dark-muted);
  margin-bottom: 0.375rem;
}

.gsk-contact-direct__item a {
  color: var(--gsk-accent-on-light);
  text-decoration: none;
}

.gsk-contact-direct__item a:hover {
  text-decoration: underline;
}

.gsk-contact-form__form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.gsk-form-group--light .gsk-form-label {
  color: var(--gsk-text-dark-muted);
}

.gsk-form-input--light {
  width: 100%;
  padding: 0.75rem 1rem;
  background: var(--gsk-bg-white);
  border: 1px solid rgba(61, 74, 96, 0.25);
  border-radius: var(--gsk-radius);
  color: var(--gsk-text-dark-primary);
  font-family: 'Manrope', sans-serif;
  font-size: 0.9375rem;
  transition: border-color 0.18s;
  outline: none;
}

.gsk-form-input--light:focus {
  border-color: var(--gsk-photon-amber);
}

.gsk-form-input--light::placeholder {
  color: rgba(61, 74, 96, 0.4);
}

.gsk-form-textarea {
  resize: vertical;
  min-height: 120px;
}

.gsk-form-select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%233D4A60' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
}

.gsk-location-section {
  background: var(--gsk-bg-parchment);
  padding-block: clamp(4rem, 7vw, 6rem);
}

.gsk-location-section__inner {
  max-width: var(--gsk-container-max);
  margin-inline: auto;
  padding-inline: var(--gsk-container-pad);
}

.gsk-location-info {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 3rem;
  align-items: start;
}

.gsk-location-info__address {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--gsk-text-dark-muted);
}

.gsk-location-info__address strong {
  font-weight: 600;
  color: var(--gsk-text-dark-primary);
  display: block;
  margin-bottom: 0.25rem;
}

.gsk-location-info__address a {
  color: var(--gsk-accent-on-light);
  text-decoration: none;
}

.gsk-location-info__address a:hover {
  text-decoration: underline;
}

.gsk-location-info__context {
  font-size: 0.9375rem;
  line-height: 1.7;
  color: var(--gsk-text-dark-muted);
}

.gsk-careers-culture {
  background: var(--gsk-bg-lab);
  padding-block: clamp(4rem, 7vw, 6rem);
}

.gsk-careers-culture__inner {
  max-width: var(--gsk-container-max);
  margin-inline: auto;
  padding-inline: var(--gsk-container-pad);
}

.gsk-careers-culture__grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 2.5rem;
  margin-top: 2.5rem;
}

.gsk-culture-item__lead {
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--gsk-text-dark-primary);
  margin-bottom: 0.625rem;
}

.gsk-culture-item__body {
  font-size: 0.9375rem;
  color: var(--gsk-text-dark-muted);
  line-height: 1.7;
}

.gsk-roles-section {
  background: var(--gsk-bg-parchment);
  padding-block: clamp(4rem, 7vw, 6rem);
}

.gsk-roles-section__inner {
  max-width: var(--gsk-container-max);
  margin-inline: auto;
  padding-inline: var(--gsk-container-pad);
}

.gsk-roles-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
  margin-top: 2.5rem;
}

.gsk-role-card {
  background: var(--gsk-bg-white);
  border: 1px solid rgba(29, 32, 48, 0.1);
  border-radius: var(--gsk-radius-lg);
  padding: 2rem 1.75rem;
}

.gsk-role-card__title {
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 700;
  font-size: 1.125rem;
  color: var(--gsk-text-dark-primary);
  margin-bottom: 0.375rem;
}

.gsk-role-card__type {
  font-family: 'Manrope', sans-serif;
  font-weight: 600;
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gsk-accent-on-light);
  margin-bottom: 1.25rem;
}

.gsk-role-card__list {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.gsk-role-card__item {
  font-size: 0.875rem;
  color: var(--gsk-text-dark-muted);
  line-height: 1.55;
  padding-left: 1rem;
  position: relative;
}

.gsk-role-card__item::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--gsk-photon-amber);
}

.gsk-spec-table {
  width: 100%;
  border-collapse: collapse;
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.875rem;
}

.gsk-spec-table th {
  font-family: 'Manrope', sans-serif;
  font-weight: 600;
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gsk-text-dark-muted);
  text-align: left;
  padding: 0.75rem 1rem;
  border-bottom: 2px solid rgba(61, 74, 96, 0.2);
}

.gsk-spec-table td {
  padding: 0.875rem 1rem;
  border-bottom: 1px solid rgba(61, 74, 96, 0.12);
  color: var(--gsk-text-dark-primary);
  vertical-align: top;
}

.gsk-spec-table tr:last-child td {
  border-bottom: none;
}

.gsk-spec-table__param {
  color: var(--gsk-text-dark-muted);
  font-weight: 500;
}

.gsk-spec-table__val {
  color: var(--gsk-text-dark-primary);
  font-weight: 400;
}

.gsk-use-cases {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-top: 2.5rem;
}

.gsk-use-case {
  background: rgba(239, 240, 244, 0.04);
  border: 1px solid rgba(212, 135, 58, 0.2);
  border-radius: var(--gsk-radius-lg);
  padding: 2rem 1.75rem;
}

.gsk-use-case__title {
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--gsk-text-light-primary);
  margin-bottom: 0.75rem;
}

.gsk-use-case__body {
  font-size: 0.9375rem;
  line-height: 1.7;
  color: var(--gsk-text-light-muted);
}

.gsk-integration-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
  margin-top: 2.5rem;
}

.gsk-integration-steps {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.gsk-integration-step {
  display: flex;
  gap: 1.25rem;
}

.gsk-integration-step__num {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(212, 135, 58, 0.12);
  border: 1px solid rgba(212, 135, 58, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.8125rem;
  color: var(--gsk-photon-amber);
  font-weight: 500;
  margin-top: 0.1rem;
}

.gsk-integration-step__content {
  flex: 1;
}

.gsk-integration-step__title {
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 700;
  font-size: 1rem;
  color: var(--gsk-text-dark-primary);
  margin-bottom: 0.25rem;
}

.gsk-integration-step__body {
  font-size: 0.9rem;
  color: var(--gsk-text-dark-muted);
  line-height: 1.6;
}

.gsk-code-callout {
  background: var(--gsk-bg-silicon);
  border-radius: var(--gsk-radius-lg);
  overflow: hidden;
  border: 1px solid rgba(212, 135, 58, 0.15);
}

.gsk-code-callout__header {
  background: rgba(212, 135, 58, 0.08);
  border-bottom: 1px solid rgba(212, 135, 58, 0.15);
  padding: 0.75rem 1.25rem;
  font-family: 'Manrope', sans-serif;
  font-weight: 600;
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gsk-photon-amber);
}

.gsk-code-block {
  padding: 1.5rem;
  overflow-x: auto;
}

.gsk-code-block pre {
  margin: 0;
  line-height: 1.45;
}

.gsk-code-block code {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.875rem;
  color: var(--gsk-text-light-primary);
}

.gsk-code-block .gsk-tok-kw {
  color: var(--gsk-waveguide-blue);
}

.gsk-code-block .gsk-tok-fn {
  color: var(--gsk-photon-amber);
}

.gsk-code-block .gsk-tok-str {
  color: #9ACA74;
}

.gsk-code-block .gsk-tok-cm {
  color: var(--gsk-text-light-muted);
}

.gsk-pull-quote {
  border-left: 3px solid var(--gsk-photon-amber);
  padding: 1.5rem 2rem;
  margin-block: 2rem;
  background: rgba(212, 135, 58, 0.06);
  border-radius: 0 var(--gsk-radius) var(--gsk-radius) 0;
}

.gsk-pull-quote__text {
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 200;
  font-size: 1.25rem;
  line-height: 1.6;
  color: var(--gsk-text-light-primary);
  font-style: italic;
}

.gsk-about-story {
  background: var(--gsk-bg-lab);
  padding-block: clamp(4rem, 7vw, 6rem);
}

.gsk-about-story__inner {
  max-width: 720px;
  margin-inline: auto;
  padding-inline: var(--gsk-container-pad);
}

.gsk-about-story__title {
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 700;
  font-size: clamp(1.75rem, 3.5vw, 2.25rem);
  color: var(--gsk-text-dark-primary);
  margin-bottom: 1.25rem;
}

.gsk-about-story__body {
  color: var(--gsk-text-dark-muted);
  font-size: 1.0625rem;
  line-height: 1.8;
  margin-bottom: 1.25rem;
}

.gsk-about-story__note {
  font-family: 'Manrope', sans-serif;
  font-weight: 600;
  font-size: 0.875rem;
  color: var(--gsk-accent-on-light);
  letter-spacing: 0.04em;
}

.gsk-tech-physics {
  background: var(--gsk-bg-lab);
  padding-block: clamp(4rem, 7vw, 6rem);
}

.gsk-tech-physics__inner {
  max-width: 800px;
  margin-inline: auto;
  padding-inline: var(--gsk-container-pad);
}

.gsk-tech-physics__body {
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 200;
  font-size: 1.0625rem;
  line-height: 1.85;
  color: var(--gsk-text-dark-muted);
  margin-bottom: 1.5rem;
}

.gsk-tech-physics__h3 {
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 700;
  font-size: 1.375rem;
  color: var(--gsk-text-dark-primary);
  margin-top: 2.5rem;
  margin-bottom: 0.875rem;
}

.gsk-tech-arch {
  background: var(--gsk-bg-parchment);
  padding-block: clamp(4rem, 7vw, 6rem);
}

.gsk-tech-arch__inner {
  max-width: var(--gsk-container-max);
  margin-inline: auto;
  padding-inline: var(--gsk-container-pad);
}

.gsk-arch-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-top: 2.5rem;
}

.gsk-arch-card {
  background: var(--gsk-bg-white);
  border: 1px solid rgba(29, 32, 48, 0.1);
  border-radius: var(--gsk-radius-lg);
  padding: 1.75rem 1.5rem;
  position: relative;
}

.gsk-arch-card__step {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.75rem;
  color: var(--gsk-photon-amber);
  font-weight: 500;
  margin-bottom: 0.625rem;
}

.gsk-arch-card__title {
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 700;
  font-size: 1rem;
  color: var(--gsk-text-dark-primary);
  margin-bottom: 0.5rem;
}

.gsk-arch-card__body {
  font-size: 0.875rem;
  color: var(--gsk-text-dark-muted);
  line-height: 1.6;
}

.gsk-research-links {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  margin-top: 1.75rem;
}

.gsk-research-ref {
  padding: 1.25rem 1.5rem;
  background: var(--gsk-bg-parchment);
  border-radius: var(--gsk-radius);
  border-left: 3px solid var(--gsk-photon-amber);
}

.gsk-research-ref__title {
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 700;
  font-size: 0.9375rem;
  color: var(--gsk-text-dark-primary);
  margin-bottom: 0.25rem;
}

.gsk-research-ref__meta {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.8125rem;
  color: var(--gsk-text-dark-muted);
}

.gsk-fade-in {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}

.gsk-fade-in.gsk-visible {
  opacity: 1;
  transform: none;
}

@media (max-width: 1024px) {
  .gsk-problem__grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .gsk-system-fit__grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .gsk-contact-form-section__inner {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .gsk-blog-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .gsk-arch-cards {
    grid-template-columns: repeat(2, 1fr);
  }
  .gsk-footer__main {
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
  }
  .gsk-footer__main .gsk-footer__brand {
    grid-column: 1 / -1;
  }
}

@media (max-width: 768px) {
  .gsk-nav__links,
  .gsk-nav__actions {
    display: none;
  }
  .gsk-nav__hamburger {
    display: flex;
  }
  .gsk-hero__h1 {
    font-size: clamp(2rem, 8vw, 2.75rem);
  }
  .gsk-principle__steps {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }
  .gsk-team__grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .gsk-blog-featured__card {
    grid-template-columns: 1fr;
  }
  .gsk-blog-featured__content {
    padding: 1.75rem;
  }
  .gsk-blog-grid {
    grid-template-columns: 1fr;
  }
  .gsk-use-cases {
    grid-template-columns: 1fr;
  }
  .gsk-integration-grid {
    grid-template-columns: 1fr;
  }
  .gsk-careers-culture__grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  .gsk-roles-grid {
    grid-template-columns: 1fr;
  }
  .gsk-location-info {
    grid-template-columns: 1fr;
  }
  .gsk-footer__main {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .gsk-subhero__inner {
    grid-template-columns: 1fr;
  }
  .gsk-subhero__ornament {
    display: none;
  }
  .gsk-footer__bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
  }
  .gsk-arch-cards {
    grid-template-columns: 1fr;
  }
  .gsk-article-cta__inner {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 480px) {
  .gsk-hero__actions {
    flex-direction: column;
    align-items: flex-start;
  }
  .gsk-cta__actions {
    flex-direction: column;
    align-items: center;
  }
  .gsk-login-card {
    padding: 2rem 1.5rem;
  }
}

.gsk-team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
}

@media (max-width: 900px) {
  .gsk-team-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

.gsk-person__img-wrap {
  width: 140px;
  height: 140px;
  border-radius: 50%;
  overflow: hidden;
  margin-inline: auto;
  margin-bottom: 1.25rem;
  border: 2px solid rgba(212, 135, 58, 0.3);
  background: var(--gsk-bg-silicon);
}

.gsk-person__img-wrap img,
.gsk-person__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
}

.gsk-subhero__text {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.gsk-culture-item {
  background: var(--gsk-bg-white);
  border: 1px solid rgba(26, 32, 48, 0.08);
  border-radius: var(--gsk-radius);
  padding: 1.75rem;
}

.gsk-contact-form__left {
  display: flex;
  flex-direction: column;
}

.gsk-contact-direct__item-label {
  display: block;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--gsk-text-dark-muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 0.25rem;
}

.gsk-contact-direct__item-value {
  display: block;
  font-size: 0.9375rem;
  color: var(--gsk-text-dark-primary);
  line-height: 1.5;
}

.gsk-contact-direct__item-value a {
  color: var(--gsk-accent-on-light);
  text-decoration: none;
}

.gsk-contact-direct__item-value a:hover {
  text-decoration: underline;
}

.gsk-footer__col {
  display: flex;
  flex-direction: column;
}

.gsk-link--light {
  color: var(--gsk-waveguide-blue);
  text-decoration: underline;
  text-decoration-color: rgba(123, 158, 200, 0.4);
  text-underline-offset: 2px;
}

.gsk-link--light:hover {
  color: var(--gsk-text-light-primary);
  text-decoration-color: var(--gsk-text-light-primary);
}

.gsk-page--auth {
  overflow: hidden;
}

.gsk-auth-form {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  margin-top: 1.5rem;
}
