:root {
  --geo-color-ink: #2c3542;
  --geo-color-muted: #5f6c7b;
  --geo-color-line: #d9e0e8;
  --geo-color-surface: #ffffff;
  --geo-color-surface-alt: #f7f9fb;
  --geo-color-brand: #00184a;
  --geo-color-brand-dark: #001236;
  --geo-color-accent: #fcc836;
  --geo-color-deep: #00184a;
  --geo-radius-card: 6px;
  --geo-shadow-card: 0 12px 30px rgba(0, 24, 74, 0.08);
  --geo-content-width: 1240px;
  --geo-section-y: clamp(48px, 7vw, 96px);
}

body {
  color: var(--geo-color-ink);
  background: var(--geo-color-surface);
  text-rendering: optimizeLegibility;
  font-family: "Public Sans", "Helvetica Neue", Helvetica, Arial, sans-serif;
  margin: 0;
}

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

html,
body {
  max-width: 100%;
  overflow-x: clip;
}

img:not([src]),
img[src=""],
.ctf_lb-image[src=""] {
  display: none !important;
}

img.ctf_lb-image {
  display: none !important;
}

a {
  color: var(--geo-color-brand);
  text-underline-offset: 0.18em;
}

a:hover,
a:focus {
  color: var(--geo-color-brand-dark);
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 3px solid rgba(244, 176, 0, 0.7);
  outline-offset: 3px;
}

.geo-section {
  padding-block: var(--geo-section-y);
}

.geo-container {
  width: min(100% - 32px, var(--geo-content-width));
  margin-inline: auto;
}

.geo-kicker {
  position: relative;
  margin: 0 0 24px;
  padding-bottom: 18px;
  color: var(--geo-color-brand);
  font-family: "IBM Plex Mono", ui-monospace, "SFMono-Regular", Menlo, monospace;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.geo-kicker:after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 4px;
  width: 56px;
  height: 4px;
  background: var(--geo-color-accent);
  box-shadow: 0 8px 0 var(--geo-color-accent);
}

.geo-heading {
  margin: 0;
  color: var(--geo-color-ink);
  font-weight: 750;
  line-height: 1.08;
}

.geo-copy {
  color: var(--geo-color-muted);
  font-size: 1rem;
  line-height: 1.65;
}

.geo-button,
.elementor-button.geo-button {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 1px solid var(--geo-color-brand);
  border-radius: 4px;
  background: var(--geo-color-brand);
  color: #fff;
  font-weight: 700;
  line-height: 1;
  text-decoration: none;
}

.geo-button:hover,
.geo-button:focus,
.elementor-button.geo-button:hover,
.elementor-button.geo-button:focus {
  border-color: var(--geo-color-accent);
  background: var(--geo-color-accent);
  color: var(--geo-color-brand);
}

.geo-button--secondary {
  border-color: var(--geo-color-line);
  background: #fff;
  color: var(--geo-color-ink);
}

.geo-card {
  border: 1px solid var(--geo-color-line);
  border-radius: var(--geo-radius-card);
  background: var(--geo-color-surface);
  box-shadow: var(--geo-shadow-card);
}

.geo-card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.geo-inline-card {
  min-height: 100%;
  padding: 22px;
  border: 1px solid var(--geo-color-line);
  border-radius: var(--geo-radius-card);
  background: var(--geo-color-surface);
  box-shadow: var(--geo-shadow-card);
}

.geo-inline-card__kicker {
  margin: 0 0 10px;
  color: var(--geo-color-brand);
  font-size: 0.75rem;
  font-weight: 750;
  text-transform: uppercase;
}

.geo-inline-card h3 {
  margin: 0 0 10px;
  color: var(--geo-color-ink);
  font-size: 1.15rem;
  line-height: 1.25;
}

.geo-inline-card p {
  margin: 0 0 14px;
  color: var(--geo-color-muted);
  line-height: 1.55;
}

.geo-inline-card a {
  font-weight: 750;
}

.geo-media-card {
  overflow: hidden;
  border: 1px solid var(--geo-color-line);
  border-radius: var(--geo-radius-card);
  background: var(--geo-color-surface);
  box-shadow: var(--geo-shadow-card);
}

.geo-media-card img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.geo-media-card__body {
  padding: 22px;
}

.geo-media-card__body h3 {
  margin: 0 0 10px;
  color: var(--geo-color-ink);
  font-size: 1.15rem;
  line-height: 1.25;
}

.geo-media-card__body p {
  margin: 0 0 14px;
  color: var(--geo-color-muted);
  line-height: 1.55;
}

.geo-stat-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin: 28px 0;
}

.geo-stat {
  padding: 22px;
  border: 1px solid var(--geo-color-line);
  border-radius: var(--geo-radius-card);
  background: var(--geo-color-surface);
  box-shadow: var(--geo-shadow-card);
}

.geo-stat strong {
  display: block;
  color: var(--geo-color-brand);
  font-size: clamp(2rem, 4vw, 3.25rem);
  font-weight: 800;
  line-height: 1;
}

.geo-stat span {
  display: block;
  margin-top: 10px;
  color: var(--geo-color-muted);
  font-size: 0.95rem;
  font-weight: 700;
  line-height: 1.35;
}

.geo-document-list {
  display: grid;
  gap: 10px;
}

.geo-document-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 16px;
  align-items: center;
  padding: 16px;
  border: 1px solid var(--geo-color-line);
  border-radius: 6px;
  background: #fff;
}

.geo-document-row__title {
  margin: 0;
  font-weight: 700;
}

.geo-document-row__meta {
  margin: 4px 0 0;
  color: var(--geo-color-muted);
  font-size: 0.92rem;
}

.geo-leadership-intro {
  margin: 0 0 28px;
  padding: 24px;
  border-left: 4px solid var(--geo-color-accent);
  background: var(--geo-color-surface-alt);
}

.geo-leadership-intro p {
  margin: 0;
}

.geo-leadership-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin: 32px 0;
}

.geo-leadership-card {
  display: grid;
  grid-template-columns: 132px minmax(0, 1fr);
  gap: 20px;
  min-width: 0;
  padding: 20px;
  border: 1px solid var(--geo-color-line);
  border-radius: var(--geo-radius-card);
  background: #fff;
  box-shadow: var(--geo-shadow-card);
}

.geo-leadership-card__media {
  margin: 0;
}

.geo-leadership-card__media img {
  width: 132px;
  aspect-ratio: 4 / 5;
  height: auto;
  object-fit: cover;
  object-position: center top;
  border-radius: 3px;
}

.geo-leadership-card__body {
  min-width: 0;
}

.geo-leadership-card h2,
.geo-leadership-card h3 {
  margin: 0 0 6px;
  color: var(--geo-color-brand);
  font-size: 1.28rem;
  line-height: 1.18;
}

.geo-leadership-card__role {
  margin: 0 0 12px !important;
  color: var(--geo-color-ink) !important;
  font-size: 0.92rem !important;
  font-weight: 800;
  line-height: 1.35 !important;
}

.geo-leadership-card__email {
  display: inline-flex;
  margin: 0 0 12px;
  font-size: 0.9rem;
  font-weight: 750;
  overflow-wrap: anywhere;
}

.geo-leadership-card__bio {
  margin: 0 !important;
  color: var(--geo-color-muted) !important;
  font-size: 0.96rem !important;
  line-height: 1.65 !important;
}

body.page-id-102 .geo-page-hero--image:after {
  background: linear-gradient(90deg, rgba(0, 24, 74, 0.94), rgba(0, 24, 74, 0.76), rgba(0, 24, 74, 0.3));
}

body.page-id-102 .geo-page-hero__image {
  object-position: center 28%;
}

body.page-id-102 .geo-entry-content--wide {
  max-width: none;
}

body.page-id-102 .geo-leadership-intro {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(260px, 0.32fr);
  gap: clamp(24px, 5vw, 72px);
  align-items: end;
  margin: 0 0 clamp(28px, 4vw, 48px);
  padding: clamp(28px, 5vw, 56px);
  border: 0;
  border-radius: var(--geo-radius-card);
  background:
    linear-gradient(135deg, rgba(0, 24, 74, 0.98), rgba(0, 35, 92, 0.92)),
    repeating-linear-gradient(135deg, rgba(255, 255, 255, 0.06) 0 1px, transparent 1px 18px);
  color: #fff;
  overflow: hidden;
}

body.page-id-102 .geo-leadership-intro:after {
  content: "6";
  color: rgba(252, 200, 54, 0.16);
  font-size: clamp(8rem, 18vw, 16rem);
  font-weight: 900;
  line-height: 0.72;
  text-align: right;
}

body.page-id-102 .geo-leadership-intro p {
  max-width: 760px;
  color: rgba(255, 255, 255, 0.78) !important;
  font-size: clamp(1.08rem, 1.5vw, 1.28rem) !important;
  line-height: 1.65 !important;
}

body.page-id-102 .geo-leadership-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(18px, 2.5vw, 28px);
  margin: 0;
}

body.page-id-102 .geo-leadership-card {
  position: relative;
  grid-template-columns: minmax(150px, 0.36fr) minmax(0, 1fr);
  gap: 0;
  overflow: hidden;
  min-height: 100%;
  padding: 0;
  border-color: rgba(0, 24, 74, 0.1);
  border-radius: var(--geo-radius-card);
  background: #fff;
  box-shadow: 0 18px 44px rgba(0, 24, 74, 0.1);
}

body.page-id-102 .geo-leadership-card:first-child {
  grid-column: 1 / -1;
  grid-template-columns: minmax(260px, 0.38fr) minmax(0, 1fr);
}

body.page-id-102 .geo-leadership-card:last-child {
  grid-column: 1 / -1;
  grid-template-columns: minmax(220px, 0.28fr) minmax(0, 1fr);
}

body.page-id-102 .geo-leadership-card__media {
  min-height: 100%;
  background: var(--geo-color-surface-alt);
}

body.page-id-102 .geo-leadership-card__media img {
  width: 100%;
  height: 100%;
  min-height: 280px;
  aspect-ratio: auto;
  object-fit: cover;
  object-position: center top;
  border-radius: 0;
}

body.page-id-102 .geo-leadership-card:first-child .geo-leadership-card__media img {
  min-height: 430px;
}

body.page-id-102 .geo-leadership-card:last-child .geo-leadership-card__media img {
  min-height: 360px;
}

body.page-id-102 .geo-leadership-card__body {
  display: flex;
  min-width: 0;
  flex-direction: column;
  justify-content: center;
  padding: clamp(24px, 3.5vw, 42px);
}

body.page-id-102 .geo-leadership-card h2,
body.page-id-102 .geo-leadership-card h3 {
  margin: 0 0 10px;
  color: var(--geo-color-brand);
  font-size: clamp(1.65rem, 2.4vw, 2.65rem);
  letter-spacing: 0;
  line-height: 1.02;
  overflow-wrap: normal;
}

body.page-id-102 .geo-leadership-card:not(:first-child) h2,
body.page-id-102 .geo-leadership-card:not(:first-child) h3 {
  font-size: clamp(1.32rem, 1.7vw, 1.8rem);
  line-height: 1.08;
}

body.page-id-102 .geo-leadership-card__role {
  position: relative;
  margin: 0 0 18px !important;
  padding-bottom: 16px;
  color: var(--geo-color-ink) !important;
  font-size: 0.84rem !important;
  font-weight: 850;
  letter-spacing: 0.04em;
  line-height: 1.35 !important;
  text-transform: uppercase;
}

body.page-id-102 .geo-leadership-card__role:after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 46px;
  height: 4px;
  background: var(--geo-color-accent);
}

body.page-id-102 .geo-leadership-card__bio {
  color: #526070 !important;
  font-size: clamp(0.96rem, 1.05vw, 1.04rem) !important;
  line-height: 1.72 !important;
}

body.page-id-290 .geo-page-hero__inner {
  min-height: clamp(300px, 36vh, 430px);
  padding-block: 96px 64px;
}

.geo-testimonials-page {
  background:
    linear-gradient(180deg, #fff 0, #fff 62%, var(--geo-color-surface-alt) 62%, var(--geo-color-surface-alt) 100%);
}

.geo-testimonials-page__intro {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.42fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: end;
  margin-bottom: clamp(28px, 5vw, 56px);
}

.geo-testimonials-page__intro h2 {
  max-width: 900px;
  margin: 0;
  color: var(--geo-color-brand);
  font-size: clamp(2.35rem, 5vw, 4.8rem);
  font-weight: 900;
  line-height: 0.98;
}

.geo-testimonials-page__intro p:not(.geo-kicker) {
  max-width: 820px;
  margin: 24px 0 0;
  color: var(--geo-color-muted);
  font-size: clamp(1.02rem, 1.35vw, 1.2rem);
  line-height: 1.72;
}

.geo-testimonials-page__proof {
  display: grid;
  gap: 12px;
}

.geo-testimonials-page__proof div {
  padding: 20px;
  border: 1px solid rgba(0, 24, 74, 0.12);
  border-radius: var(--geo-radius-card);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(247, 249, 251, 0.98)),
    repeating-linear-gradient(135deg, rgba(0, 24, 74, 0.04) 0 12px, transparent 12px 24px);
  box-shadow: var(--geo-shadow-card);
}

.geo-testimonials-page__proof strong {
  display: block;
  color: var(--geo-color-brand);
  font-size: clamp(1.55rem, 2.4vw, 2.35rem);
  font-weight: 900;
  line-height: 1.05;
}

.geo-testimonials-page__proof span {
  display: block;
  margin-top: 8px;
  color: var(--geo-color-muted);
  font-family: "IBM Plex Mono", ui-monospace, "SFMono-Regular", Menlo, monospace;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  line-height: 1.35;
  text-transform: uppercase;
}

.geo-testimonial-feature {
  position: relative;
  overflow: hidden;
  margin-bottom: clamp(22px, 4vw, 42px);
  padding: clamp(28px, 5vw, 58px);
  border-radius: var(--geo-radius-card);
  background:
    linear-gradient(135deg, rgba(0, 24, 74, 0.98), rgba(0, 38, 96, 0.94)),
    repeating-linear-gradient(135deg, rgba(255, 255, 255, 0.055) 0 1px, transparent 1px 18px);
  color: #fff;
  box-shadow: 0 24px 60px rgba(0, 24, 74, 0.16);
}

.geo-testimonial-mark {
  position: absolute;
  right: clamp(20px, 6vw, 72px);
  top: clamp(8px, 2vw, 24px);
  color: rgba(252, 200, 54, 0.22);
  font-size: clamp(8rem, 20vw, 18rem);
  font-weight: 900;
  line-height: 1;
}

.geo-testimonial-feature blockquote,
.geo-testimonial-card blockquote {
  position: relative;
  z-index: 1;
  margin: 0;
}

.geo-testimonial-feature p {
  max-width: 980px;
  margin: 0;
  color: #fff;
  font-size: clamp(1.55rem, 3.2vw, 3.1rem);
  font-weight: 850;
  line-height: 1.1;
}

.geo-testimonial-feature cite,
.geo-testimonial-card cite {
  display: block;
  margin-top: 24px;
  font-style: normal;
}

.geo-testimonial-feature cite strong,
.geo-testimonial-card cite strong {
  display: block;
  color: inherit;
  font-size: 1rem;
  font-weight: 900;
  line-height: 1.25;
}

.geo-testimonial-feature cite span,
.geo-testimonial-card cite span {
  display: block;
  margin-top: 5px;
  color: currentColor;
  opacity: 0.7;
  font-size: 0.92rem;
  font-weight: 700;
  line-height: 1.45;
}

.geo-testimonials-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.geo-testimonial-card {
  position: relative;
  min-height: 100%;
  overflow: hidden;
  padding: clamp(22px, 2.5vw, 32px);
  border: 1px solid rgba(0, 24, 74, 0.12);
  border-radius: var(--geo-radius-card);
  background: #fff;
  box-shadow: var(--geo-shadow-card);
}

.geo-testimonial-card__mark {
  position: absolute;
  right: 18px;
  top: -12px;
  color: rgba(252, 200, 54, 0.42);
  font-size: 5.4rem;
  font-weight: 900;
  line-height: 1;
}

.geo-testimonial-card p {
  margin: 0;
  color: #3c4654;
  font-size: 1rem;
  font-weight: 650;
  line-height: 1.7;
}

.geo-testimonial-card cite {
  color: var(--geo-color-brand);
}

.geo-directors-showcase {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(260px, 0.75fr);
  gap: 24px;
  align-items: stretch;
  margin: 0 0 34px;
  padding: clamp(24px, 4vw, 36px);
  border: 1px solid rgba(0, 24, 74, 0.12);
  border-radius: 6px;
  background:
    linear-gradient(135deg, rgba(0, 24, 74, 0.96), rgba(0, 18, 54, 0.92)),
    linear-gradient(90deg, rgba(252, 200, 54, 0.18), transparent);
  color: #fff;
  overflow: hidden;
}

.geo-directors-showcase .geo-kicker {
  color: var(--geo-color-accent);
}

.geo-directors-showcase h2 {
  margin: 0 0 14px;
  color: #fff;
  font-size: clamp(2rem, 4vw, 3.25rem);
  line-height: 1;
}

.geo-directors-showcase p:not(.geo-kicker) {
  max-width: 760px;
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 1.03rem;
  line-height: 1.7;
}

.geo-directors-metrics {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}

.geo-directors-metric {
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 5px;
  background: rgba(255, 255, 255, 0.08);
}

.geo-directors-metric strong {
  display: block;
  color: var(--geo-color-accent);
  font-size: 1.8rem;
  line-height: 1;
}

.geo-directors-metric span {
  display: block;
  margin-top: 6px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.88rem;
  font-weight: 800;
  line-height: 1.35;
}

.geo-directors-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}

.geo-director-card {
  position: relative;
  display: grid;
  grid-template-columns: 150px minmax(0, 1fr);
  min-width: 0;
  overflow: hidden;
  border: 1px solid var(--geo-color-line);
  border-radius: 6px;
  background: #fff;
  box-shadow: var(--geo-shadow-card);
}

.geo-director-card--chair {
  border-color: rgba(252, 200, 54, 0.82);
}

.geo-director-card__media {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  margin: 0;
  padding: 18px;
  background:
    linear-gradient(180deg, rgba(0, 24, 74, 0.98), rgba(0, 18, 54, 0.94));
}

.geo-director-card__media img {
  width: 112px;
  height: 150px;
  object-fit: cover;
  object-position: center top;
  border: 3px solid rgba(255, 255, 255, 0.9);
  border-radius: 4px;
  background: #fff;
}

.geo-director-card__body {
  min-width: 0;
  padding: 20px;
}

.geo-director-card__eyebrow {
  display: inline-flex;
  margin: 0 0 10px;
  padding: 5px 9px;
  border-radius: 999px;
  background: rgba(252, 200, 54, 0.18);
  color: var(--geo-color-brand);
  font-size: 0.72rem;
  font-weight: 900;
  line-height: 1;
  text-transform: uppercase;
}

.geo-director-card h3 {
  margin: 0 0 6px;
  color: var(--geo-color-ink);
  font-size: 1.35rem;
  line-height: 1.12;
}

.geo-director-card__role {
  margin: 0 0 12px !important;
  color: var(--geo-color-brand) !important;
  font-size: 0.94rem !important;
  font-weight: 850;
  line-height: 1.35 !important;
}

.geo-director-card__summary {
  margin: 0 0 14px !important;
  color: var(--geo-color-muted) !important;
  font-size: 0.96rem !important;
  line-height: 1.6 !important;
}

.geo-director-card__email {
  display: inline-flex;
  min-height: 38px;
  align-items: center;
  margin: 0 0 14px;
  padding: 0 12px;
  border: 1px solid rgba(0, 24, 74, 0.14);
  border-radius: 4px;
  background: var(--geo-color-surface-alt);
  color: var(--geo-color-brand);
  font-size: 0.88rem;
  font-weight: 800;
  text-decoration: none;
  overflow-wrap: anywhere;
}

.geo-director-card__details {
  border-top: 1px solid var(--geo-color-line);
  padding-top: 12px;
}

.geo-director-card__details summary {
  cursor: pointer;
  color: var(--geo-color-brand);
  font-size: 0.9rem;
  font-weight: 900;
}

.geo-director-card__details p {
  margin: 12px 0 0 !important;
  color: var(--geo-color-muted) !important;
  font-size: 0.95rem !important;
  line-height: 1.7 !important;
}

body.page-id-291 .geo-page-hero__inner {
  min-height: clamp(240px, 30vh, 340px);
  padding-block: 72px 46px;
}

body.page-id-291 .geo-page-hero h1 {
  font-size: clamp(2.8rem, 5vw, 4.75rem);
}

body.page-id-291 .geo-site-main > .geo-section {
  padding-block: clamp(34px, 5vw, 60px) 76px;
}

body.page-id-291 .geo-content-layout {
  grid-template-columns: 1fr;
}

body.page-id-291 .geo-entry-content {
  max-width: none;
}

body.page-id-291 .geo-page-aside {
  display: none;
}

.geo-entry-content .geo-directors-showcase .geo-kicker {
  color: var(--geo-color-accent);
}

.geo-entry-content .geo-directors-showcase h2 {
  color: #fff;
}

.geo-entry-content .geo-directors-showcase p:not(.geo-kicker) {
  color: rgba(255, 255, 255, 0.78);
}

.geo-entry-content .geo-directors-metric span {
  color: rgba(255, 255, 255, 0.82);
}

body.page-id-291 .geo-page-hero {
  background: var(--geo-color-brand);
}

body.page-id-291 .geo-page-hero--image:before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: repeating-linear-gradient(135deg, #04265f 0 16px, #00184a 16px 32px);
  opacity: 0.28;
}

body.page-id-291 .geo-page-hero--image:after {
  z-index: 2;
  background: linear-gradient(180deg, rgba(0, 16, 43, 0.9) 0%, rgba(0, 16, 43, 0.72) 45%, rgba(0, 16, 43, 0.82) 100%);
}

body.page-id-291 .geo-page-hero__inner {
  z-index: 3;
  min-height: clamp(430px, 54vh, 640px);
  justify-content: center;
  padding-block: 72px 56px;
}

body.page-id-291 .geo-page-hero .geo-kicker {
  font-family: "IBM Plex Mono", ui-monospace, "SFMono-Regular", Menlo, monospace;
  color: var(--geo-color-accent);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.18em;
}

body.page-id-291 .geo-page-hero .geo-kicker:after {
  content: "";
  display: block;
  width: 56px;
  height: 4px;
  margin-top: 14px;
  background: var(--geo-color-accent);
  box-shadow: 0 8px 0 var(--geo-color-accent);
}

body.page-id-291 .geo-page-hero h1 {
  max-width: 820px;
  margin-top: 28px;
  font-size: clamp(3rem, 5vw, 4.3rem);
  font-weight: 800;
  line-height: 1.06;
}

body.page-id-291 .geo-page-hero p:not(.geo-kicker) {
  max-width: 640px;
  color: rgba(255, 255, 255, 0.66);
  font-size: clamp(1.05rem, 1.45vw, 1.18rem);
  line-height: 1.6;
}

body.page-id-291 .geo-site-main > .geo-section {
  padding-block: 0;
}

body.page-id-291 .geo-content-layout {
  display: block;
}

body.page-id-291 .geo-entry-content {
  max-width: none;
}

body.page-id-291 .geo-page-aside,
body.page-id-291 .geo-footer-cta {
  display: none;
}

.geo-board-stats {
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-top: -1px;
  padding: 0 0 44px;
  background: var(--geo-color-brand);
}

.geo-board-stats__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
  padding-top: 36px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
}

.geo-board-stat strong {
  display: flex;
  align-items: baseline;
  gap: 3px;
  color: #fff;
  font-size: clamp(2.2rem, 4vw, 3.25rem);
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.02em;
}

.geo-board-stat strong span {
  color: var(--geo-color-accent);
  font-size: 1.35rem;
  font-weight: 700;
}

.geo-board-stat em {
  display: block;
  width: 40px;
  height: 4px;
  margin: 12px 0 10px;
  background: var(--geo-color-accent);
  font-style: normal;
}

.geo-board-stat p {
  margin: 0;
  color: rgba(255, 255, 255, 0.66) !important;
  font-family: "IBM Plex Mono", ui-monospace, "SFMono-Regular", Menlo, monospace;
  font-size: 0.75rem !important;
  font-weight: 600;
  letter-spacing: 0.08em;
  line-height: 1.4 !important;
  text-transform: uppercase;
}

.geo-board-section {
  width: 100vw;
  margin-left: calc(50% - 50vw);
  padding: 88px 0;
  background: #fff;
}

.geo-board-section__header {
  max-width: 640px;
}

.geo-board-section__header .geo-kicker {
  font-family: "IBM Plex Mono", ui-monospace, "SFMono-Regular", Menlo, monospace;
  color: var(--geo-color-brand);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.18em;
}

.geo-board-section__header .geo-kicker:after,
.geo-board-governance__copy .geo-kicker:after {
  content: "";
  display: block;
  width: 56px;
  height: 4px;
  margin-top: 14px;
  background: var(--geo-color-accent);
  box-shadow: 0 8px 0 var(--geo-color-accent);
}

.geo-board-section__header h2 {
  margin: 28px 0 0;
  color: var(--geo-color-brand);
  font-size: clamp(2.2rem, 4vw, 3.4rem);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.02em;
}

.geo-board-section__header p {
  margin: 18px 0 0 !important;
  color: var(--geo-color-ink) !important;
  font-size: 1.06rem !important;
  line-height: 1.65 !important;
}

.geo-board-directors {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  margin-top: 48px;
}

.geo-board-card {
  display: flex;
  gap: 24px;
  min-width: 0;
  padding: 24px;
  border: 1px solid var(--geo-color-line);
  border-radius: var(--geo-radius-card);
  background: #fff;
  box-shadow: 0 10px 26px rgba(0, 24, 74, 0.07);
}

.geo-board-card__portrait,
.geo-board-card__monogram {
  width: 188px;
  height: 224px;
  flex: 0 0 188px;
  overflow: hidden;
  border: 1px solid var(--geo-color-line);
  border-radius: 8px;
  background: var(--geo-color-surface-alt);
  box-shadow: 0 6px 16px rgba(0, 24, 74, 0.08);
}

.geo-board-card__portrait img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 18%;
}

.geo-board-card__monogram {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  border-color: var(--geo-color-brand);
  background: linear-gradient(150deg, #04265f, #00184a);
}

.geo-board-card__monogram:before {
  content: "";
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0 12px, rgba(255, 255, 255, 0) 12px 24px);
}

.geo-board-card__monogram strong {
  position: relative;
  color: var(--geo-color-accent);
  font-size: 3.5rem;
  font-weight: 800;
  line-height: 1;
}

.geo-board-card__monogram span {
  position: absolute;
  right: 0;
  bottom: 14px;
  left: 0;
  color: rgba(255, 255, 255, 0.5);
  font-family: "IBM Plex Mono", ui-monospace, "SFMono-Regular", Menlo, monospace;
  font-size: 0.6rem;
  letter-spacing: 0.16em;
  text-align: center;
  text-transform: uppercase;
}

.geo-board-card__body {
  min-width: 0;
}

.geo-board-card h3 {
  margin: 0;
  color: var(--geo-color-brand);
  font-size: 1.38rem;
  font-weight: 800;
  line-height: 1.16;
  letter-spacing: -0.01em;
}

.geo-board-card__role {
  margin: 7px 0 0 !important;
  color: var(--geo-color-accent-deep) !important;
  font-family: "IBM Plex Mono", ui-monospace, "SFMono-Regular", Menlo, monospace;
  font-size: 0.75rem !important;
  font-weight: 700;
  letter-spacing: 0.04em;
  line-height: 1.35 !important;
  text-transform: uppercase;
}

.geo-board-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 12px;
}

.geo-board-tags span {
  display: inline-flex;
  padding: 4px 9px;
  border: 1px solid #e4ebf8;
  border-radius: 999px;
  background: #f2f6fc;
  color: #0c3576;
  font-family: "IBM Plex Mono", ui-monospace, "SFMono-Regular", Menlo, monospace;
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  line-height: 1;
  text-transform: uppercase;
}

.geo-board-card__bio {
  margin: 14px 0 0 !important;
  color: var(--geo-color-muted) !important;
  font-size: 0.9rem !important;
  line-height: 1.6 !important;
}

.geo-board-governance {
  width: 100vw;
  margin-left: calc(50% - 50vw);
  padding: 84px 0;
  background: var(--geo-color-brand);
}

.geo-board-governance__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 1fr);
  gap: 64px;
  align-items: center;
}

.geo-board-governance__copy .geo-kicker {
  color: var(--geo-color-accent);
  font-family: "IBM Plex Mono", ui-monospace, "SFMono-Regular", Menlo, monospace;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.18em;
}

.geo-board-governance__copy h2 {
  margin: 28px 0 0;
  color: #fff;
  font-size: clamp(2rem, 3vw, 2.6rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.02em;
}

.geo-board-governance__copy p {
  max-width: 500px;
  margin: 18px 0 0 !important;
  color: rgba(255, 255, 255, 0.66) !important;
  font-size: 1.02rem !important;
  line-height: 1.65 !important;
}

.geo-board-governance__cards {
  display: grid;
  gap: 14px;
}

.geo-board-principle {
  display: flex;
  gap: 16px;
  padding: 20px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--geo-radius-card);
  background: rgba(255, 255, 255, 0.05);
}

.geo-board-principle__icon {
  width: 44px;
  height: 44px;
  flex: 0 0 44px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.06);
  color: var(--geo-color-accent);
  font-weight: 900;
}

.geo-board-principle h3 {
  margin: 0;
  color: #fff;
  font-size: 1.05rem;
  font-weight: 750;
}

.geo-board-principle p {
  margin: 6px 0 0 !important;
  color: rgba(255, 255, 255, 0.66) !important;
  font-size: 0.9rem !important;
  line-height: 1.55 !important;
}

.geo-board-cta {
  width: 100vw;
  margin-left: calc(50% - 50vw);
  background: var(--geo-color-accent);
}

.geo-board-cta__inner {
  min-height: 132px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  padding-block: 32px;
}

.geo-board-cta h2 {
  margin: 0;
  color: var(--geo-color-brand);
  font-size: clamp(1.65rem, 3vw, 2.25rem);
  font-weight: 800;
  letter-spacing: -0.02em;
}

.geo-page-hero {
  position: relative;
  overflow: hidden;
  background: var(--geo-color-brand);
  color: #fff;
}

.geo-page-hero--image:after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0, 24, 74, .92), rgba(0, 24, 74, .62), rgba(0, 24, 74, .24));
}

.geo-page-hero__image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.geo-page-hero__inner {
  position: relative;
  z-index: 1;
  min-height: clamp(340px, 46vh, 520px);
  display: flex;
  flex-direction: column;
  justify-content: end;
  padding-block: 112px 72px;
}

.geo-page-hero .geo-kicker {
  color: var(--geo-color-accent);
}

.geo-page-hero h1 {
  max-width: 860px;
  margin: 0;
  color: #fff;
  font-size: clamp(3rem, 6vw, 5.8rem);
  font-weight: 900;
  line-height: .96;
}

.geo-page-hero p:not(.geo-kicker) {
  max-width: 680px;
  margin: 22px 0 0;
  color: rgba(255, 255, 255, .82);
  font-size: clamp(1.05rem, 1.5vw, 1.25rem);
  line-height: 1.55;
}

.geo-content-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 340px);
  gap: clamp(32px, 5vw, 72px);
  align-items: start;
}

.geo-content-layout > * {
  min-width: 0;
}

.geo-entry-content {
  max-width: 820px;
  min-width: 0;
  overflow-wrap: anywhere;
}

.geo-entry-content > *:first-child {
  margin-top: 0;
}

.geo-entry-content h2,
.geo-entry-content h3,
.geo-entry-content h4 {
  color: var(--geo-color-brand);
  line-height: 1.12;
}

.geo-entry-content h2 {
  margin: 1.7em 0 .55em;
  font-size: clamp(2rem, 3vw, 3rem);
}

.geo-entry-content h3 {
  margin: 1.45em 0 .5em;
  font-size: clamp(1.35rem, 2vw, 2rem);
}

.geo-entry-content p,
.geo-entry-content li {
  color: var(--geo-color-muted);
  font-size: 1.02rem;
  line-height: 1.75;
}

.geo-entry-content img {
  max-width: 100%;
  height: auto;
  border-radius: 3px;
}

.geo-entry-content iframe,
.geo-entry-content embed,
.geo-entry-content object,
.geo-entry-content video {
  max-width: 100%;
}

.geo-entry-content .vc_row,
.geo-entry-content .wpb_row,
.geo-entry-content .vc_column_container,
.geo-entry-content .vc_column-inner,
.geo-entry-content .wpb_wrapper {
  max-width: 100%;
  margin-left: 0 !important;
  margin-right: 0 !important;
  padding-left: 0 !important;
  padding-right: 0 !important;
  box-sizing: border-box;
}

.geo-entry-content table {
  width: 100%;
  border-collapse: collapse;
  margin: 28px 0;
  font-size: .95rem;
}

.geo-entry-content pre,
.geo-entry-content table {
  max-width: 100%;
  overflow-x: auto;
}

.geo-entry-content th,
.geo-entry-content td {
  padding: 14px;
  border: 1px solid var(--geo-color-line);
  text-align: left;
  vertical-align: top;
}

.geo-entry-content th {
  background: var(--geo-color-surface-alt);
  color: var(--geo-color-brand);
}

.geo-entry-meta {
  color: var(--geo-color-brand) !important;
  font-weight: 800;
}

.geo-page-aside {
  position: sticky;
  top: 128px;
  padding: 22px;
  border: 1px solid var(--geo-color-line);
  border-radius: 3px;
  background: var(--geo-color-surface-alt);
}

.geo-page-aside nav {
  display: grid;
  gap: 8px;
}

.geo-page-aside nav a {
  min-height: 42px;
  display: flex;
  align-items: center;
  border-bottom: 1px solid var(--geo-color-line);
  color: var(--geo-color-brand);
  font-weight: 800;
  text-decoration: none;
}

.geo-detail-meta {
  display: grid;
  gap: 10px;
  margin: 0 0 28px;
}

.geo-detail-meta div {
  display: grid;
  grid-template-columns: 160px minmax(0, 1fr);
  gap: 16px;
  padding: 14px;
  border: 1px solid var(--geo-color-line);
  background: #fff;
}

.geo-detail-meta dt {
  color: var(--geo-color-brand);
  font-weight: 900;
}

.geo-detail-meta dd {
  margin: 0;
  color: var(--geo-color-muted);
}

.geo-empty-state {
  padding: 24px;
  border: 1px solid var(--geo-color-line);
  background: #fff;
  color: var(--geo-color-muted);
}

.geo-skip-link {
  position: absolute;
  left: 16px;
  top: -80px;
  z-index: 1000;
  padding: 10px 14px;
  background: #fff;
  color: var(--geo-color-ink);
}

.geo-skip-link:focus {
  top: 16px;
}

.geo-site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid rgba(217, 222, 227, 0.86);
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 18px 50px rgba(23, 32, 42, 0.08);
  backdrop-filter: blur(16px);
}

.geo-topbar {
  background: var(--geo-color-brand);
  color: #fff;
}

.geo-topbar__inner,
.geo-header-main,
.geo-footer-cta,
.geo-footer-main,
.geo-footer-bottom {
  width: min(100% - 40px, var(--geo-content-width));
  margin-inline: auto;
}

.geo-topbar__inner {
  min-height: 38px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.geo-topbar__left,
.geo-topbar__links {
  display: flex;
  align-items: center;
  gap: 13px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.78rem;
  font-weight: 700;
}

.geo-topbar__links a {
  color: rgba(255, 255, 255, 0.76);
  text-decoration: none;
}

.geo-topbar__links a:hover,
.geo-topbar__links a:focus {
  color: #fff;
}

.geo-topbar .gd-market-bar {
  background: transparent;
  padding: 0;
}

.geo-header-main {
  min-height: 66px;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 24px;
}

.geo-brand {
  display: inline-flex;
  align-items: center;
}

.geo-brand img {
  width: 150px;
  height: auto;
  max-height: 58px;
  object-fit: contain;
}

.geo-primary-nav__list {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.geo-primary-nav__item {
  position: static;
}

.geo-primary-nav__link {
  min-height: 66px;
  display: inline-flex;
  align-items: center;
  padding: 0 11px;
  border-bottom: 3px solid transparent;
  color: var(--geo-color-ink);
  font-size: 0.82rem;
  font-weight: 800;
  text-decoration: none;
  white-space: nowrap;
}

.geo-primary-nav__item:hover .geo-primary-nav__link,
.geo-primary-nav__item:focus-within .geo-primary-nav__link {
  border-color: var(--geo-color-accent);
  color: var(--geo-color-brand);
}

.geo-mega-panel {
  position: absolute;
  top: calc(100% - 1px);
  left: 50%;
  width: min(100% - 56px, 1140px);
  display: none;
  grid-template-columns: minmax(230px, 0.75fr) minmax(420px, 1.25fr) minmax(260px, 0.8fr);
  gap: 30px;
  padding: 38px 32px 40px;
  border: 1px solid var(--geo-color-line);
  border-top: 0;
  border-radius: 0 0 6px 6px;
  background: #fff;
  box-shadow: 0 22px 46px rgba(0, 24, 74, 0.16);
  color: var(--geo-color-ink);
  transform: translateX(-50%);
}

.geo-mega-panel__rule {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--geo-color-accent);
}

.geo-primary-nav__item:hover .geo-mega-panel,
.geo-primary-nav__item:focus-within .geo-mega-panel {
  display: grid;
}

.geo-mega-panel__intro .geo-kicker {
  color: var(--geo-color-brand);
}

.geo-mega-panel__intro h2 {
  margin: 0;
  max-width: 360px;
  color: var(--geo-color-brand);
  font-size: 1.28rem;
  line-height: 1.22;
}

.geo-mega-panel__columns {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px;
}

.geo-mega-panel__group p {
  margin: 0 0 10px;
  color: var(--geo-color-brand);
  font-family: "IBM Plex Mono", ui-monospace, "SFMono-Regular", Menlo, monospace;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.geo-mega-panel__group a {
  min-height: 38px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-inline: -10px;
  padding: 0 10px;
  border-radius: 4px;
  color: var(--geo-color-ink);
  font-size: 0.92rem;
  font-weight: 700;
  text-decoration: none;
}

.geo-mega-panel__group a:after {
  content: "→";
  color: var(--geo-color-brand);
  opacity: 0;
  transition: opacity 0.18s ease;
}

.geo-mega-panel__group a:hover,
.geo-mega-panel__group a:focus {
  background: #f2f6fc;
  color: var(--geo-color-brand);
}

.geo-mega-panel__group a:hover:after,
.geo-mega-panel__group a:focus:after {
  opacity: 1;
}

.geo-mega-feature {
  position: relative;
  min-height: 196px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
  padding: 24px;
  border-radius: var(--geo-radius-card);
  background:
    linear-gradient(180deg, rgba(0, 24, 74, 0.12), rgba(0, 24, 74, 0.82)),
    repeating-linear-gradient(135deg, #1e448f 0 14px, #0c3576 14px 28px);
  color: #fff;
  text-decoration: none;
}

.geo-mega-feature span {
  color: var(--geo-color-accent);
  font-family: "IBM Plex Mono", ui-monospace, "SFMono-Regular", Menlo, monospace;
  font-size: 0.68rem;
  font-style: normal;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.geo-mega-feature strong {
  margin-top: 10px;
  color: #fff;
  font-size: 1.08rem;
  line-height: 1.2;
}

.geo-mega-feature em {
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.84rem;
  font-style: normal;
  line-height: 1.45;
}

.geo-mega-feature--stock {
  min-height: 0;
  justify-content: flex-start;
  border: 1px solid var(--geo-color-line);
  background: #f7f9fb;
  color: var(--geo-color-brand);
}

.geo-mega-feature--stock .gd-market-bar {
  margin: 0 0 18px;
  padding: 0;
  background: transparent;
}

.geo-mega-feature--stock strong {
  color: var(--geo-color-brand);
  font-size: 1.5rem;
}

.geo-mega-feature--stock span {
  color: var(--geo-color-muted);
  letter-spacing: 0.04em;
  text-transform: none;
}

.geo-header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.geo-header-actions__link {
  color: var(--geo-color-ink);
  font-weight: 800;
  text-decoration: none;
}

.geo-button--small {
  min-height: 34px;
  padding: 0 14px;
  font-size: 0.78rem;
  font-weight: 800;
}

.geo-button--light {
  border-color: rgba(255, 255, 255, 0.58);
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
}

.geo-menu-toggle {
  width: 46px;
  height: 46px;
  display: none;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  border: 1px solid var(--geo-color-line);
  border-radius: 4px;
  background: #fff;
}

.geo-menu-toggle span:not(.screen-reader-text) {
  width: 20px;
  height: 2px;
  background: var(--geo-color-ink);
}

.geo-mobile-drawer {
  border-top: 1px solid var(--geo-color-line);
  background: #fff;
}

.geo-mobile-drawer nav {
  width: min(100% - 32px, var(--geo-content-width));
  display: grid;
  gap: 2px;
  margin-inline: auto;
  padding: 14px 0 22px;
}

.geo-mobile-drawer a {
  min-height: 48px;
  display: flex;
  align-items: center;
  border-bottom: 1px solid var(--geo-color-line);
  color: var(--geo-color-ink);
  font-weight: 800;
  text-decoration: none;
}

.geo-fallback-hero {
  position: relative;
  min-height: clamp(640px, 82vh, 820px);
  display: grid;
  align-items: end;
  overflow: hidden;
  background: var(--geo-color-brand);
  color: #fff;
}

.geo-fallback-hero__media {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(0, 24, 74, 0.92), rgba(0, 24, 74, 0.66), rgba(0, 24, 74, 0.22)),
    url("/wp-content/uploads/2022/02/Drilling-drill-crew-working-at-Bibiani-Ghana.jpeg") center / cover no-repeat;
}

.geo-fallback-hero__content {
  position: relative;
  z-index: 1;
  width: min(100% - 40px, var(--geo-content-width));
  margin: 0 auto;
  padding: 150px 0 92px;
}

.geo-fallback-hero .geo-kicker,
.geo-fallback-hero h1,
.geo-fallback-hero p {
  color: #fff;
}

.geo-fallback-hero .geo-kicker {
  color: var(--geo-color-accent);
}

.geo-fallback-hero h1 {
  max-width: 820px;
  margin: 0;
  font-size: clamp(3rem, 7vw, 5.8rem);
  line-height: 0.96;
}

.geo-fallback-hero p:not(.geo-kicker) {
  max-width: 660px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: clamp(1.1rem, 2vw, 1.35rem);
  line-height: 1.5;
}

.geo-fallback-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.geo-market-strip {
  background: #fff;
  border-block: 1px solid var(--geo-color-line);
}

.geo-market-strip__inner {
  min-height: 118px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.geo-market-strip h2 {
  max-width: 560px;
  margin: 0;
  font-size: clamp(1.45rem, 3vw, 2.4rem);
  line-height: 1.1;
}

.geo-market-strip .gd-market-bar {
  border-radius: 4px;
  background: var(--geo-color-brand);
}

.geo-section-header {
  max-width: 780px;
  margin-bottom: 30px;
}

.geo-section-header--split {
  max-width: none;
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
}

.geo-section-header .geo-heading {
  font-size: clamp(2rem, 4vw, 3.6rem);
}

.geo-services-section {
  background: var(--geo-color-surface-alt);
}

.geo-solution-section {
  background: #fff;
}

.geo-solution-grid {
  display: grid;
  grid-template-columns: minmax(320px, 0.92fr) minmax(460px, 1.08fr);
  gap: clamp(36px, 6vw, 92px);
  align-items: center;
}

.geo-solution-section .geo-heading {
  max-width: 560px;
  font-size: clamp(2.1rem, 4.2vw, 4.05rem);
}

.geo-proof-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin: 28px 0;
  padding: 0;
  list-style: none;
  color: var(--geo-color-brand);
  font-size: .86rem;
  font-weight: 800;
}

.geo-proof-list li {
  position: relative;
  padding-left: 22px;
}

.geo-proof-list li:before {
  content: "";
  position: absolute;
  left: 0;
  top: .35em;
  width: 10px;
  height: 10px;
  border: 2px solid var(--geo-color-accent);
  border-radius: 50%;
}

.geo-solution-media {
  margin: 0;
}

.geo-solution-media img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 3px;
  box-shadow: var(--geo-shadow-card);
}

.geo-proof-section {
  background: var(--geo-color-brand);
  color: #fff;
}

.geo-proof-grid {
  display: grid;
  grid-template-columns: minmax(280px, 0.8fr) minmax(520px, 1.2fr);
  gap: 34px;
  align-items: center;
}

.geo-proof-section .geo-heading,
.geo-proof-section .geo-kicker {
  color: #fff;
}

.geo-proof-section .geo-kicker {
  color: var(--geo-color-accent);
}

.geo-proof-section .geo-stat {
  border-color: rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.08);
  box-shadow: none;
}

.geo-proof-section .geo-stat strong {
  color: var(--geo-color-accent);
}

.geo-proof-section .geo-stat span {
  color: rgba(255, 255, 255, 0.78);
}

.geo-fleet-section {
  background: #f8fafb;
}

.geo-card-grid--compact {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.geo-operations-section {
  background: #fff;
}

.geo-operations-grid {
  display: grid;
  grid-template-columns: minmax(300px, 0.8fr) minmax(480px, 1.2fr);
  gap: 44px;
  align-items: center;
}

.geo-operations-grid img {
  width: 100%;
  min-height: 320px;
  object-fit: cover;
  border: 1px solid var(--geo-color-line);
  border-radius: 8px;
  box-shadow: var(--geo-shadow-card);
}

.geo-investor-section {
  background: #f4f1ea;
}

.geo-investor-grid {
  display: grid;
  grid-template-columns: minmax(300px, 0.85fr) minmax(520px, 1.15fr);
  gap: 40px;
  align-items: start;
}

.geo-testimonial-section {
  background: #fff;
}

.geo-testimonial-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(320px, 0.8fr);
  gap: 48px;
  align-items: center;
}

.geo-testimonial-grid blockquote {
  margin: 0;
}

.geo-testimonial-grid blockquote p {
  margin: 0;
  color: var(--geo-color-brand);
  font-size: clamp(1.9rem, 4vw, 3.4rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.08;
}

.geo-testimonial-grid cite {
  display: block;
  margin-top: 24px;
  color: var(--geo-color-muted);
  font-style: normal;
  font-weight: 700;
}

.geo-testimonial-proof {
  display: grid;
  gap: 14px;
}

.geo-testimonial-proof div {
  padding: 22px;
  border: 1px solid var(--geo-color-line);
  border-radius: var(--geo-radius-card);
  background: #f7f9fb;
}

.geo-testimonial-proof strong {
  display: block;
  color: var(--geo-color-brand);
  font-size: 2rem;
  font-weight: 900;
  line-height: 1;
}

.geo-testimonial-proof span {
  display: block;
  margin-top: 8px;
  color: var(--geo-color-muted);
  font-family: "IBM Plex Mono", ui-monospace, "SFMono-Regular", Menlo, monospace;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.geo-social-section {
  border-top: 1px solid var(--geo-color-line);
  background: #fff;
}

.geo-social-grid {
  display: grid;
  grid-template-columns: minmax(280px, 0.8fr) minmax(420px, 1.2fr);
  gap: 48px;
  align-items: start;
}

.geo-social-grid .geo-button {
  margin-top: 18px;
}

.geo-social-feed {
  padding: 24px;
  border: 1px solid var(--geo-color-line);
  border-radius: var(--geo-radius-card);
  background: #f7f9fb;
}

.geo-social-feed .gd-x-feed__post {
  box-shadow: var(--geo-shadow-card);
}

.geo-news-section {
  background: #fff;
}

.geo-gold-rule {
  display: block;
  width: 56px;
  height: 4px;
  margin-top: 10px;
  background: var(--geo-color-accent);
  box-shadow: 0 8px 0 var(--geo-color-accent);
}

.geo-claude-section-heading {
  max-width: 760px;
  margin-bottom: 52px;
}

.geo-claude-section-heading--center {
  margin-inline: auto;
  text-align: center;
}

.geo-claude-section-heading--center .geo-gold-rule {
  margin-inline: auto;
}

.geo-claude-section-heading--split {
  max-width: none;
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
}

.geo-claude-section-heading .geo-heading {
  margin-top: 22px;
  font-size: clamp(2.1rem, 4.4vw, 3.9rem);
}

.geo-claude-section-heading .geo-copy {
  max-width: 660px;
  margin: 18px auto 0;
}

.geo-claude-intro {
  background: #fff;
}

.geo-claude-intro__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(420px, 1fr);
  gap: clamp(36px, 6vw, 64px);
  align-items: center;
}

.geo-claude-intro .geo-heading {
  max-width: 660px;
  margin-top: 24px;
  font-size: clamp(2.35rem, 5vw, 4.25rem);
}

.geo-claude-proof-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px 32px;
  margin: 34px 0 36px;
  padding: 0;
  list-style: none;
}

.geo-claude-proof-list li {
  position: relative;
  padding-left: 28px;
  color: var(--geo-color-ink);
  font-size: .95rem;
  font-weight: 800;
}

.geo-claude-proof-list li:before {
  content: "";
  position: absolute;
  left: 0;
  top: .1em;
  width: 18px;
  height: 18px;
  border: 2px solid var(--geo-color-accent);
  border-radius: 50%;
}

.geo-claude-placeholder {
  position: relative;
  margin: 0;
  overflow: hidden;
  border-radius: var(--geo-radius-card);
  background: var(--geo-color-brand);
  box-shadow: var(--geo-shadow-card);
}

.geo-claude-placeholder img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  filter: saturate(1.07) contrast(1.05) brightness(1.02);
}

.geo-claude-placeholder figcaption {
  position: absolute;
  left: 18px;
  bottom: 18px;
  max-width: calc(100% - 36px);
  padding: 9px 12px;
  border-radius: 3px;
  background: rgba(0, 24, 74, .86);
  color: #fff;
  font-family: "IBM Plex Mono", ui-monospace, "SFMono-Regular", Menlo, monospace;
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .07em;
  text-transform: uppercase;
}

.geo-claude-services {
  background: var(--geo-color-surface-alt);
  border-top: 1px solid var(--geo-color-line);
}

.geo-claude-service-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.geo-claude-service-card {
  display: flex;
  min-height: 100%;
  flex-direction: column;
  padding: 28px 26px;
  border: 1px solid var(--geo-color-line);
  border-radius: var(--geo-radius-card);
  background: #fff;
  color: inherit;
  text-decoration: none;
  box-shadow: var(--geo-shadow-card);
  transition: box-shadow 180ms ease, transform 180ms ease, border-color 180ms ease;
}

.geo-claude-service-card:hover,
.geo-claude-service-card:focus {
  border-color: rgba(252, 200, 54, .8);
  box-shadow: 0 20px 44px rgba(0, 24, 74, .14);
  transform: translateY(-3px);
}

.geo-claude-service-card__top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
}

.geo-claude-service-card__icon {
  display: inline-grid;
  width: 52px;
  height: 52px;
  place-items: center;
  border: 1px solid rgba(0, 66, 130, .16);
  border-radius: 4px;
  background: #eef5fb;
  color: var(--geo-color-brand);
  font-family: "IBM Plex Mono", ui-monospace, "SFMono-Regular", Menlo, monospace;
  font-size: .92rem;
  font-weight: 900;
}

.geo-claude-badge {
  padding: 6px 9px;
  border-radius: 999px;
  background: rgba(252, 200, 54, .2);
  color: #7a5a00;
  font-family: "IBM Plex Mono", ui-monospace, "SFMono-Regular", Menlo, monospace;
  font-size: .68rem;
  font-weight: 900;
  letter-spacing: .07em;
  text-transform: uppercase;
}

.geo-claude-service-card strong {
  margin-top: 18px;
  color: var(--geo-color-ink);
  font-size: 1.18rem;
  font-weight: 850;
  letter-spacing: 0;
  line-height: 1.24;
  text-transform: uppercase;
}

.geo-claude-service-card .geo-gold-rule {
  width: 40px;
  height: 4px;
  margin: 12px 0 14px;
  box-shadow: none;
}

.geo-claude-service-card em {
  color: var(--geo-color-muted);
  font-style: normal;
  line-height: 1.55;
}

.geo-claude-card-link {
  display: inline-flex;
  gap: 7px;
  margin-top: auto;
  padding-top: 18px;
  color: var(--geo-color-brand);
  font-family: "IBM Plex Mono", ui-monospace, "SFMono-Regular", Menlo, monospace;
  font-size: .76rem;
  font-weight: 900;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.geo-claude-proof-band {
  position: relative;
  overflow: hidden;
  background: var(--geo-color-brand);
  color: #fff;
}

.geo-claude-proof-band:before {
  content: "";
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(135deg, rgba(255,255,255,.025) 0 16px, rgba(255,255,255,0) 16px 32px);
  pointer-events: none;
}

.geo-claude-proof-band__grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(420px, 1fr);
  gap: clamp(38px, 6vw, 64px);
  align-items: center;
}

.geo-claude-proof-band .geo-heading {
  max-width: 560px;
  margin-top: 22px;
  color: #fff;
  font-size: clamp(2rem, 4vw, 3.4rem);
}

.geo-claude-proof-band .geo-kicker {
  color: var(--geo-color-accent);
}

.geo-claude-proof-band .geo-copy {
  max-width: 520px;
  color: rgba(255, 255, 255, .78);
}

.geo-claude-stat-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 34px 32px;
}

.geo-claude-stat-grid div {
  min-width: 0;
}

.geo-claude-stat-grid strong {
  display: block;
  color: #fff;
  font-size: clamp(2.4rem, 5vw, 4.2rem);
  font-weight: 900;
  line-height: 1;
}

.geo-claude-stat-grid strong:after {
  content: "";
  display: block;
  width: 44px;
  height: 4px;
  margin-top: 10px;
  background: var(--geo-color-accent);
}

.geo-claude-stat-grid strong span {
  font-size: .52em;
}

.geo-claude-stat-grid em {
  display: block;
  margin-top: 11px;
  color: rgba(255, 255, 255, .74);
  font-family: "IBM Plex Mono", ui-monospace, "SFMono-Regular", Menlo, monospace;
  font-size: .75rem;
  font-style: normal;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.geo-claude-news-tabs__nav {
  display: flex;
  justify-content: flex-end;
  gap: 26px;
  border-bottom: 1px solid var(--geo-color-line);
}

.geo-claude-news-tabs__nav button {
  position: relative;
  padding: 0 0 12px;
  border: 0;
  background: none;
  color: var(--geo-color-muted);
  cursor: pointer;
  font: inherit;
  font-weight: 800;
}

.geo-claude-news-tabs__nav button.is-active {
  color: var(--geo-color-ink);
}

.geo-claude-news-tabs__nav button.is-active:after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  height: 4px;
  background: var(--geo-color-accent);
}

.geo-claude-news-panel {
  margin-top: 36px;
  border-top: 1px solid var(--geo-color-line);
}

.geo-claude-news-row {
  display: grid;
  grid-template-columns: 150px minmax(0, 1fr) 24px;
  gap: 24px;
  align-items: center;
  padding: 22px 8px;
  border-bottom: 1px solid var(--geo-color-line);
  color: inherit;
  text-decoration: none;
  transition: background 180ms ease;
}

.geo-claude-news-row:hover,
.geo-claude-news-row:focus {
  background: var(--geo-color-surface-alt);
}

.geo-claude-news-row span {
  color: #9a7200;
  font-family: "IBM Plex Mono", ui-monospace, "SFMono-Regular", Menlo, monospace;
  font-size: .82rem;
  font-weight: 800;
  letter-spacing: .03em;
}

.geo-claude-news-row strong {
  color: var(--geo-color-ink);
  font-size: 1.05rem;
  line-height: 1.4;
}

.geo-claude-news-row em {
  color: var(--geo-color-brand);
  font-style: normal;
  text-align: right;
}

.geo-claude-text-link {
  color: var(--geo-color-brand);
  font-family: "IBM Plex Mono", ui-monospace, "SFMono-Regular", Menlo, monospace;
  font-size: .78rem;
  font-weight: 900;
  letter-spacing: .05em;
  text-decoration: none;
  text-transform: uppercase;
}

.geo-claude-social {
  border-top: 1px solid var(--geo-color-line);
  background: #fff;
}

.geo-claude-social__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.55fr) minmax(320px, 1fr);
  gap: 32px;
  align-items: start;
}

.geo-claude-mini-heading {
  display: flex;
  align-items: center;
  gap: 9px;
  margin: 0 0 18px;
  color: var(--geo-color-muted);
  font-family: "IBM Plex Mono", ui-monospace, "SFMono-Regular", Menlo, monospace;
  font-size: .75rem;
  font-weight: 900;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.geo-claude-mini-heading--center {
  justify-content: center;
}

.geo-claude-video-frame {
  overflow: hidden;
  border: 1px solid var(--geo-color-line);
  border-radius: var(--geo-radius-card);
  background: var(--geo-color-surface-alt);
  box-shadow: var(--geo-shadow-card);
}

.geo-claude-video-frame img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.geo-claude-video-frame + .geo-button {
  margin-top: 24px;
}

.geo-claude-testimonial-section {
  border-top: 1px solid var(--geo-color-line);
  background: var(--geo-color-surface-alt);
}

.geo-claude-testimonials {
  position: relative;
  margin-top: 30px;
  text-align: center;
}

.geo-claude-testimonials__viewport {
  min-height: 250px;
  padding: 0 62px;
}

.geo-claude-testimonial > span {
  display: inline-block;
  color: var(--geo-color-accent);
  font-size: 3.2rem;
  font-weight: 900;
  line-height: 1;
}

.geo-claude-testimonial blockquote {
  margin: 0;
}

.geo-claude-testimonial p {
  margin: 10px 0 0;
  color: var(--geo-color-brand);
  font-size: clamp(1.45rem, 3vw, 2rem);
  font-weight: 650;
  line-height: 1.5;
}

.geo-claude-testimonial cite {
  display: block;
  margin-top: 24px;
  color: var(--geo-color-muted);
  font-style: normal;
  line-height: 1.45;
}

.geo-claude-testimonial cite strong {
  color: var(--geo-color-ink);
}

.geo-claude-testimonials__arrow {
  position: absolute;
  z-index: 2;
  top: 50%;
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border: 1px solid var(--geo-color-line);
  border-radius: 50%;
  background: #fff;
  color: var(--geo-color-brand);
  cursor: pointer;
  font-size: 1.55rem;
  line-height: 1;
  transform: translateY(-50%);
}

.geo-claude-testimonials__arrow:first-child {
  left: 0;
}

.geo-claude-testimonials__arrow:nth-of-type(2) {
  right: 0;
}

.geo-claude-testimonials__dots {
  display: flex;
  justify-content: center;
  gap: 9px;
  margin-top: 28px;
}

.geo-claude-testimonials__dots button {
  width: 9px;
  height: 9px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: #cbd3dd;
  cursor: pointer;
  transition: width 180ms ease, background 180ms ease;
}

.geo-claude-testimonials__dots button.is-active {
  width: 26px;
  background: var(--geo-color-accent);
}

.geo-site-footer {
  background: #000f2b;
  color: #fff;
}

.geo-footer-gold-rule {
  height: 4px;
  background: var(--geo-color-accent);
}

.geo-footer-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 56px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.geo-footer-cta h2 {
  max-width: 740px;
  margin: 0;
  color: #fff;
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1.05;
}

.geo-footer-cta .geo-kicker {
  color: var(--geo-color-accent);
}

.geo-footer-main {
  display: grid;
  grid-template-columns: minmax(260px, 1.25fr) repeat(3, minmax(160px, 1fr));
  gap: 40px;
  padding: 64px 0 0;
}

.geo-footer-brand img {
  width: 180px;
  max-width: 100%;
}

.geo-footer-brand p {
  max-width: 300px;
  color: rgba(255, 255, 255, 0.74);
  line-height: 1.6;
}

.geo-footer-social {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 22px;
  font-family: "IBM Plex Mono", ui-monospace, "SFMono-Regular", Menlo, monospace;
  font-size: 0.76rem;
}

.geo-footer-social a {
  color: rgba(255, 255, 255, 0.72);
  text-decoration: none;
}

.geo-footer-social a:hover,
.geo-footer-social a:focus {
  color: #fff;
}

.geo-footer-links {
  display: contents;
}

.geo-footer-links__column h2 {
  margin: 0 0 16px;
  color: var(--geo-color-accent);
  font-family: "IBM Plex Mono", ui-monospace, "SFMono-Regular", Menlo, monospace;
  font-size: 0.74rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.geo-footer-links__column a {
  min-height: 30px;
  display: flex;
  align-items: center;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.9rem;
  font-weight: 600;
  text-decoration: none;
}

.geo-footer-links__column a:hover,
.geo-footer-links__column a:focus {
  color: #fff;
}

.geo-footer-offices {
  width: min(100% - 40px, var(--geo-content-width));
  margin-inline: auto;
  margin-top: 48px;
  padding-top: 36px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.geo-footer-offices .geo-kicker {
  color: rgba(255, 255, 255, 0.68);
}

.geo-footer-offices__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 40px;
}

.geo-footer-office-region h2 {
  display: inline-block;
  margin: 0 0 16px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--geo-color-accent);
  color: #fff;
  font-size: 0.98rem;
}

.geo-footer-office-region ul {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.geo-footer-office-region a {
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.9rem;
  font-weight: 600;
  text-decoration: none;
}

.geo-footer-office-region a:hover,
.geo-footer-office-region a:focus {
  color: #fff;
}

.geo-footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding: 18px 0 30px;
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.86rem;
}

.geo-footer-bottom p {
  margin: 0;
}

.screen-reader-text {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.geo-service-explorer {
  display: grid;
  grid-template-columns: minmax(280px, 0.76fr) minmax(0, 1.24fr);
  gap: clamp(28px, 5vw, 56px);
  align-items: start;
  min-width: 0;
}

.geo-service-explorer > *,
.geo-service-tabs,
.geo-service-tab,
.geo-service-panels,
.geo-service-panel,
.geo-fleet-browser,
.geo-fleet-grid,
.geo-rig-card {
  min-width: 0;
}

.geo-service-explorer__sidebar {
  position: sticky;
  top: 128px;
}

.geo-service-explorer__sidebar h2,
.geo-fleet-browser__header h2,
.geo-detail-copy h2,
.geo-rig-detail__copy h2 {
  margin: 0;
  color: var(--geo-color-brand);
  font-size: clamp(2rem, 4vw, 3.6rem);
  font-weight: 850;
  line-height: 1.05;
}

.geo-service-tabs {
  display: grid;
  gap: 10px;
  margin-top: 28px;
}

.geo-service-tab {
  width: 100%;
  min-height: 76px;
  display: grid;
  gap: 6px;
  padding: 16px 18px;
  border: 1px solid var(--geo-color-line);
  border-left: 4px solid transparent;
  border-radius: 4px;
  background: #fff;
  color: var(--geo-color-ink);
  text-align: left;
  cursor: pointer;
  box-shadow: 0 8px 20px rgba(0, 24, 74, 0.05);
}

.geo-service-tab span,
.geo-service-panel__label,
.geo-rig-card__type {
  color: var(--geo-color-brand);
  font-family: "IBM Plex Mono", ui-monospace, "SFMono-Regular", Menlo, monospace;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.geo-service-tab strong {
  color: inherit;
  font-size: 1rem;
  line-height: 1.25;
  overflow-wrap: anywhere;
}

.geo-service-tab.is-active,
.geo-service-tab:hover,
.geo-service-tab:focus {
  border-left-color: var(--geo-color-accent);
  background: var(--geo-color-brand);
  color: #fff;
}

.geo-service-tab.is-active span,
.geo-service-tab:hover span,
.geo-service-tab:focus span {
  color: var(--geo-color-accent);
}

.geo-service-panels {
  min-width: 0;
}

.geo-service-panel {
  overflow: hidden;
  border: 1px solid var(--geo-color-line);
  border-radius: var(--geo-radius-card);
  background: #fff;
  box-shadow: var(--geo-shadow-card);
}

.geo-service-panel[hidden],
.geo-rig-card[hidden] {
  display: none !important;
}

.geo-service-panel__media {
  margin: 0;
  background:
    repeating-linear-gradient(135deg, rgba(0, 24, 74, 0.08) 0 14px, rgba(0, 24, 74, 0.02) 14px 28px),
    #e8edf3;
}

.geo-service-panel__media img {
  width: 100%;
  max-height: 460px;
  aspect-ratio: 16 / 10;
  object-fit: contain;
  object-position: center bottom;
}

.geo-service-panel__body {
  padding: clamp(24px, 4vw, 40px);
}

.geo-service-panel h3 {
  max-width: 720px;
  margin: 10px 0 14px;
  color: var(--geo-color-brand);
  font-size: clamp(2rem, 4vw, 3.25rem);
  font-weight: 850;
  line-height: 1.02;
  overflow-wrap: anywhere;
}

.geo-service-panel p:not(.geo-service-panel__label) {
  max-width: 760px;
  margin: 0;
  color: var(--geo-color-muted);
  font-size: 1.05rem;
  line-height: 1.7;
}

.geo-service-panel ul,
.geo-detail-panel ul {
  display: grid;
  gap: 10px;
  margin: 24px 0;
  padding: 0;
  list-style: none;
}

.geo-service-panel li,
.geo-detail-panel li {
  position: relative;
  padding-left: 24px;
  color: var(--geo-color-ink);
  font-size: 0.96rem;
  font-weight: 650;
  line-height: 1.5;
}

.geo-service-panel li:before,
.geo-detail-panel li:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.45em;
  width: 10px;
  height: 10px;
  border: 2px solid var(--geo-color-accent);
  border-radius: 50%;
}

.geo-fleet-browser {
  display: grid;
  gap: 32px;
}

.geo-fleet-browser__header {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 0.65fr);
  gap: 30px;
  align-items: end;
}

.geo-fleet-filters {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 8px;
}

.geo-fleet-filters button {
  min-height: 38px;
  padding: 0 14px;
  border: 1px solid var(--geo-color-line);
  border-radius: 999px;
  background: #fff;
  color: var(--geo-color-brand);
  font-size: 0.8rem;
  font-weight: 850;
  cursor: pointer;
}

.geo-fleet-filters button.is-active,
.geo-fleet-filters button:hover,
.geo-fleet-filters button:focus {
  border-color: var(--geo-color-brand);
  background: var(--geo-color-brand);
  color: #fff;
}

.geo-fleet-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.geo-rig-card {
  min-width: 0;
  overflow: hidden;
  border: 1px solid var(--geo-color-line);
  border-radius: var(--geo-radius-card);
  background: #fff;
  box-shadow: var(--geo-shadow-card);
}

.geo-rig-card__media {
  min-height: 250px;
  display: grid;
  place-items: end center;
  margin: 0;
  background:
    linear-gradient(180deg, rgba(247, 249, 251, 0.3), rgba(231, 237, 244, 0.98)),
    repeating-linear-gradient(135deg, rgba(0, 24, 74, 0.08) 0 14px, transparent 14px 28px);
}

.geo-rig-card__media img {
  width: 100%;
  height: 250px;
  object-fit: contain;
  object-position: center bottom;
}

.geo-rig-card__body {
  padding: 22px;
}

.geo-rig-card h3 {
  margin: 10px 0;
  color: var(--geo-color-brand);
  font-size: 1.28rem;
  font-weight: 850;
  line-height: 1.16;
}

.geo-rig-card p {
  margin: 0;
  color: var(--geo-color-muted);
  font-size: 0.94rem;
  line-height: 1.62;
}

.geo-rig-card dl,
.geo-rig-specs {
  display: grid;
  gap: 8px;
  margin: 20px 0;
}

.geo-rig-card dl div,
.geo-rig-specs div {
  display: grid;
  grid-template-columns: 94px minmax(0, 1fr);
  gap: 10px;
  padding: 10px;
  border: 1px solid var(--geo-color-line);
  border-radius: 4px;
  background: var(--geo-color-surface-alt);
}

.geo-rig-card dt,
.geo-rig-specs dt {
  color: var(--geo-color-brand);
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
}

.geo-rig-card dd,
.geo-rig-specs dd {
  margin: 0;
  color: var(--geo-color-ink);
  font-size: 0.88rem;
  font-weight: 700;
}

.geo-rig-card a {
  font-weight: 850;
}

.geo-detail-shell,
.geo-rig-detail {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 420px);
  gap: clamp(32px, 5vw, 70px);
  align-items: start;
}

.geo-detail-copy {
  min-width: 0;
}

.geo-detail-copy > .geo-entry-content {
  max-width: none;
  margin-top: 28px;
}

.geo-detail-panel {
  position: sticky;
  top: 128px;
  overflow: hidden;
  padding: 24px;
  border: 1px solid rgba(0, 24, 74, 0.12);
  border-radius: var(--geo-radius-card);
  background: #fff;
  box-shadow: var(--geo-shadow-card);
}

.geo-detail-panel--light {
  background: #fff;
}

.geo-detail-panel img {
  width: calc(100% + 48px);
  max-width: none;
  height: 300px;
  margin: -24px -24px 24px;
  object-fit: contain;
  object-position: center bottom;
  background: var(--geo-color-surface-alt);
}

.geo-detail-panel h3 {
  margin: 0;
  color: var(--geo-color-brand);
  font-size: 1.3rem;
  font-weight: 850;
  line-height: 1.18;
}

.geo-rig-detail {
  grid-template-columns: minmax(300px, 0.8fr) minmax(0, 1fr);
  align-items: center;
}

.geo-rig-detail__media {
  margin: 0;
  border: 1px solid var(--geo-color-line);
  border-radius: var(--geo-radius-card);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.38), rgba(231, 237, 244, 0.96)),
    repeating-linear-gradient(135deg, rgba(0, 24, 74, 0.08) 0 14px, transparent 14px 28px);
  box-shadow: var(--geo-shadow-card);
}

.geo-rig-detail__media img {
  width: 100%;
  max-height: 560px;
  object-fit: contain;
  object-position: center bottom;
}

.geo-rig-detail__copy > p:not(.geo-kicker) {
  max-width: 680px;
  margin: 18px 0 0;
  color: var(--geo-color-muted);
  font-size: 1.06rem;
  line-height: 1.7;
}

.geo-auto-page {
  background: #fff;
}

.geo-auto-page--esg,
.geo-auto-page--investors,
.geo-auto-page--contact {
  background: var(--geo-color-surface-alt);
}

.geo-auto-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.62fr);
  gap: clamp(32px, 5vw, 72px);
  align-items: start;
}

.geo-auto-layout--text {
  grid-template-columns: minmax(0, 920px);
}

.geo-auto-copy {
  min-width: 0;
}

.geo-auto-copy > h2 {
  max-width: 860px;
  margin: 0;
  color: var(--geo-color-brand);
  font-size: clamp(2.2rem, 4.6vw, 4.2rem);
  font-weight: 850;
  line-height: 1.04;
}

.geo-auto-lede {
  max-width: 720px;
  margin: 22px 0 0;
  color: var(--geo-color-muted);
  font-size: clamp(1.05rem, 1.55vw, 1.24rem);
  line-height: 1.65;
}

.geo-auto-copy .geo-entry-content {
  max-width: 820px;
  margin-top: 30px;
}

.geo-entry-content--wide {
  max-width: none;
}

.geo-auto-media {
  position: sticky;
  top: 128px;
  overflow: hidden;
  margin: 0;
  border: 1px solid var(--geo-color-line);
  border-radius: var(--geo-radius-card);
  background:
    linear-gradient(180deg, rgba(247, 249, 251, 0.18), rgba(231, 237, 244, 0.94)),
    repeating-linear-gradient(135deg, rgba(0, 24, 74, 0.08) 0 14px, transparent 14px 28px);
  box-shadow: var(--geo-shadow-card);
}

.geo-auto-media img {
  width: 100%;
  min-height: 360px;
  max-height: 560px;
  object-fit: cover;
}

.geo-entry-content .geo-card-grid {
  margin-top: 26px;
}

.geo-entry-content a.geo-card,
.geo-entry-content .geo-card-grid > a {
  display: grid;
  gap: 10px;
  min-height: 100%;
  padding: 22px;
  border: 1px solid var(--geo-color-line);
  border-radius: var(--geo-radius-card);
  background: #fff;
  color: var(--geo-color-ink);
  text-decoration: none;
  box-shadow: var(--geo-shadow-card);
}

.geo-entry-content a.geo-card h2,
.geo-entry-content .geo-card-grid > a h2 {
  margin: 0;
  color: var(--geo-color-brand);
  font-size: 1.18rem;
  line-height: 1.18;
}

.geo-entry-content a.geo-card p,
.geo-entry-content .geo-card-grid > a p {
  margin: 0;
  color: var(--geo-color-muted);
  font-size: 0.95rem;
  line-height: 1.55;
}

.geo-auto-related {
  border-top: 1px solid var(--geo-color-line);
  background: #fff;
}

.geo-auto-related--dark {
  background: var(--geo-color-brand);
  color: #fff;
}

.geo-auto-related--dark .geo-kicker {
  color: var(--geo-color-accent);
}

.geo-auto-related--dark .geo-heading {
  color: #fff;
}

.geo-auto-card-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.geo-auto-card {
  min-width: 0;
  min-height: 188px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 22px;
  border: 1px solid var(--geo-color-line);
  border-radius: var(--geo-radius-card);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(247, 249, 251, 0.98)),
    repeating-linear-gradient(135deg, rgba(0, 24, 74, 0.04) 0 12px, transparent 12px 24px);
  color: var(--geo-color-ink);
  text-decoration: none;
  box-shadow: var(--geo-shadow-card);
}

.geo-auto-related--dark .geo-auto-card {
  border-color: rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.07);
  box-shadow: none;
}

.geo-auto-card span {
  color: var(--geo-color-brand);
  font-family: "IBM Plex Mono", ui-monospace, "SFMono-Regular", Menlo, monospace;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.geo-auto-related--dark .geo-auto-card span {
  color: var(--geo-color-accent);
}

.geo-auto-card strong {
  margin-top: 10px;
  color: var(--geo-color-brand);
  font-size: 1.12rem;
  font-weight: 850;
  line-height: 1.2;
  overflow-wrap: anywhere;
}

.geo-auto-related--dark .geo-auto-card strong {
  color: #fff;
}

.geo-auto-card em {
  margin-top: 10px;
  color: var(--geo-color-muted);
  font-size: 0.9rem;
  font-style: normal;
  line-height: 1.5;
}

.geo-auto-related--dark .geo-auto-card em {
  color: rgba(255, 255, 255, 0.68);
}

.geo-auto-card:hover,
.geo-auto-card:focus {
  border-color: var(--geo-color-accent);
  transform: translateY(-2px);
}

.geo-location-browser {
  display: grid;
  gap: 34px;
}

.geo-location-browser__header {
  max-width: 860px;
}

.geo-location-browser__header h2,
.geo-location-detail__copy h2 {
  margin: 0;
  color: var(--geo-color-brand);
  font-size: clamp(2.2rem, 4.6vw, 4.25rem);
  font-weight: 850;
  line-height: 1.04;
}

.geo-location-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.geo-location-card {
  min-height: 220px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 24px;
  border: 1px solid var(--geo-color-line);
  border-radius: var(--geo-radius-card);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(247, 249, 251, 0.98)),
    repeating-linear-gradient(135deg, rgba(0, 24, 74, 0.04) 0 12px, transparent 12px 24px);
  color: var(--geo-color-ink);
  text-decoration: none;
  box-shadow: var(--geo-shadow-card);
}

.geo-location-card span,
.geo-location-card small {
  color: var(--geo-color-brand);
  font-family: "IBM Plex Mono", ui-monospace, "SFMono-Regular", Menlo, monospace;
  font-size: 0.68rem;
  font-weight: 850;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.geo-location-card strong {
  margin-top: 10px;
  color: var(--geo-color-brand);
  font-size: 1.35rem;
  font-weight: 850;
  line-height: 1.12;
}

.geo-location-card em {
  margin-top: 12px;
  color: var(--geo-color-muted);
  font-size: 0.94rem;
  font-style: normal;
  line-height: 1.55;
}

.geo-location-card small {
  margin-top: 20px;
  color: var(--geo-color-muted);
}

.geo-location-card:hover,
.geo-location-card:focus {
  border-color: var(--geo-color-accent);
  transform: translateY(-2px);
}

.geo-location-detail {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 430px);
  gap: clamp(32px, 5vw, 72px);
  align-items: start;
}

.geo-location-detail__copy > p:not(.geo-kicker) {
  max-width: 700px;
  margin: 18px 0 0;
  color: var(--geo-color-muted);
  font-size: 1.08rem;
  line-height: 1.7;
}

.geo-location-meta {
  display: grid;
  gap: 10px;
  margin: 28px 0;
}

.geo-location-meta div {
  display: grid;
  grid-template-columns: 128px minmax(0, 1fr);
  gap: 14px;
  padding: 14px;
  border: 1px solid var(--geo-color-line);
  border-radius: 4px;
  background: var(--geo-color-surface-alt);
}

.geo-location-meta dt {
  color: var(--geo-color-brand);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.geo-location-meta dd {
  margin: 0;
  color: var(--geo-color-ink);
  font-weight: 700;
  overflow-wrap: anywhere;
}

.geo-location-detail__panel {
  position: sticky;
  top: 128px;
  padding: 24px;
  border: 1px solid var(--geo-color-line);
  border-radius: var(--geo-radius-card);
  background: #fff;
  box-shadow: var(--geo-shadow-card);
}

.geo-location-media-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
  margin: -8px -8px 22px;
}

.geo-location-media-grid img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 4px;
  background: var(--geo-color-surface-alt);
}

.geo-location-media-grid img:first-child:last-child {
  grid-column: 1 / -1;
  aspect-ratio: 16 / 10;
}

.geo-location-detail__panel h3 {
  margin: 0;
  color: var(--geo-color-brand);
  font-size: 1.28rem;
  font-weight: 850;
}

.geo-location-detail__panel ul {
  display: grid;
  gap: 10px;
  margin: 20px 0 0;
  padding: 0;
  list-style: none;
}

.geo-location-detail__panel li {
  position: relative;
  padding-left: 24px;
  color: var(--geo-color-ink);
  font-weight: 700;
  line-height: 1.5;
}

.geo-location-detail__panel li:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.45em;
  width: 10px;
  height: 10px;
  border: 2px solid var(--geo-color-accent);
  border-radius: 50%;
}

.geo-location-map {
  overflow: hidden;
  border: 1px solid var(--geo-color-line);
  border-radius: var(--geo-radius-card);
  background: #fff;
  box-shadow: var(--geo-shadow-card);
}

.geo-location-map iframe {
  display: block;
  width: 100%;
  min-height: 360px;
  border: 0;
}

.geo-component-page,
.geo-gallery-page,
.geo-investor-hub {
  background:
    linear-gradient(180deg, #fff 0, #fff 64%, var(--geo-color-surface-alt) 64%, var(--geo-color-surface-alt) 100%);
}

.geo-component-intro {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.38fr);
  gap: clamp(28px, 5vw, 76px);
  align-items: end;
  margin-bottom: clamp(30px, 5vw, 64px);
}

.geo-component-intro h2 {
  max-width: 900px;
  margin: 0;
  color: var(--geo-color-brand);
  font-size: clamp(2.35rem, 5vw, 4.85rem);
  font-weight: 900;
  line-height: 0.98;
}

.geo-component-intro p:not(.geo-kicker) {
  max-width: 760px;
  margin: 24px 0 0;
  color: var(--geo-color-muted);
  font-size: clamp(1.03rem, 1.3vw, 1.2rem);
  line-height: 1.72;
}

.geo-component-proof {
  display: grid;
  gap: 12px;
}

.geo-component-proof div,
.geo-investor-market-panel {
  padding: 20px;
  border: 1px solid rgba(0, 24, 74, 0.12);
  border-radius: var(--geo-radius-card);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(247, 249, 251, 0.98)),
    repeating-linear-gradient(135deg, rgba(0, 24, 74, 0.04) 0 12px, transparent 12px 24px);
  box-shadow: var(--geo-shadow-card);
}

.geo-component-proof strong {
  display: block;
  color: var(--geo-color-brand);
  font-size: clamp(1.45rem, 2.4vw, 2.25rem);
  font-weight: 900;
  line-height: 1.05;
}

.geo-component-proof span,
.geo-resource-card span,
.geo-component-card span,
.geo-investor-market-panel span {
  display: block;
  margin-top: 8px;
  color: var(--geo-color-muted);
  font-family: "IBM Plex Mono", ui-monospace, "SFMono-Regular", Menlo, monospace;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  line-height: 1.35;
  text-transform: uppercase;
}

.geo-feature-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.geo-component-statement {
  max-width: 920px;
  margin: 0 0 clamp(26px, 4vw, 46px);
  padding: 24px 28px;
  border-left: 5px solid var(--geo-color-accent);
  background: #fff;
  box-shadow: var(--geo-shadow-card);
}

.geo-component-statement p {
  margin: 0;
  color: #3f4c5c;
  font-size: clamp(1.02rem, 1.35vw, 1.18rem);
  font-weight: 650;
  line-height: 1.7;
}

.geo-feature-card {
  min-height: 260px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: clamp(22px, 3vw, 34px);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--geo-radius-card);
  background:
    linear-gradient(135deg, rgba(0, 24, 74, 0.98), rgba(0, 38, 96, 0.94)),
    repeating-linear-gradient(135deg, rgba(255, 255, 255, 0.055) 0 1px, transparent 1px 18px);
  color: #fff;
  box-shadow: 0 22px 55px rgba(0, 24, 74, 0.14);
}

.geo-feature-card span {
  color: var(--geo-color-accent);
  font-family: "IBM Plex Mono", ui-monospace, "SFMono-Regular", Menlo, monospace;
  font-size: 0.7rem;
  font-weight: 850;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.geo-feature-card h3 {
  margin: 14px 0 12px;
  color: #fff;
  font-size: clamp(1.35rem, 2vw, 2rem);
  font-weight: 900;
  line-height: 1.08;
}

.geo-feature-card p {
  margin: 0;
  color: rgba(255, 255, 255, 0.74);
  font-weight: 650;
  line-height: 1.62;
}

.geo-component-band {
  padding-block: var(--geo-section-y);
}

.geo-component-band--soft {
  background: #f4f1ea;
}

.geo-component-lede {
  max-width: 420px;
  margin: 0;
  color: var(--geo-color-muted);
  line-height: 1.65;
}

.geo-resource-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.geo-resource-card,
.geo-component-card {
  min-width: 0;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 188px;
  padding: 22px;
  border: 1px solid var(--geo-color-line);
  border-radius: var(--geo-radius-card);
  background: #fff;
  color: var(--geo-color-ink);
  text-decoration: none;
  box-shadow: var(--geo-shadow-card);
}

.geo-resource-card strong,
.geo-component-card strong {
  display: block;
  margin-top: 18px;
  color: var(--geo-color-brand);
  font-size: 1.14rem;
  font-weight: 900;
  line-height: 1.2;
  overflow-wrap: anywhere;
}

.geo-resource-card em,
.geo-component-card em {
  display: block;
  margin-top: 16px;
  color: var(--geo-color-muted);
  font-size: 0.92rem;
  font-style: normal;
  font-weight: 650;
  line-height: 1.5;
}

.geo-resource-card:hover,
.geo-resource-card:focus,
.geo-component-card:hover,
.geo-component-card:focus {
  border-color: var(--geo-color-accent);
  transform: translateY(-2px);
}

.geo-component-card-grid,
.geo-investor-resource-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.geo-gallery-feature {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) repeat(2, minmax(0, 0.7fr));
  grid-auto-rows: clamp(150px, 18vw, 240px);
  gap: 14px;
  margin-bottom: 16px;
}

.geo-gallery-feature a,
.geo-gallery-grid a {
  display: block;
  overflow: hidden;
  border-radius: var(--geo-radius-card);
  background: var(--geo-color-surface-alt);
  box-shadow: var(--geo-shadow-card);
}

.geo-gallery-feature a.is-large {
  grid-row: span 2;
}

.geo-gallery-feature img,
.geo-gallery-grid img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 180ms ease;
}

.geo-gallery-feature a:hover img,
.geo-gallery-feature a:focus img,
.geo-gallery-grid a:hover img,
.geo-gallery-grid a:focus img {
  transform: scale(1.035);
}

.geo-gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.geo-gallery-grid a {
  aspect-ratio: 4 / 3;
}

.geo-investor-hub {
  background:
    linear-gradient(180deg, #fff 0, #fff 54%, var(--geo-color-surface-alt) 54%, var(--geo-color-surface-alt) 100%);
}

.geo-investor-market-panel {
  align-self: stretch;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 220px;
}

.geo-investor-market-panel .gd-market-bar {
  display: grid;
  gap: 10px;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--geo-color-brand);
}

.geo-investor-market-panel .gd-market-bar * {
  color: inherit;
}

.geo-investor-resource-grid .geo-component-card {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(247, 249, 251, 0.98)),
    linear-gradient(135deg, rgba(252, 200, 54, 0.16), transparent 45%);
}

@media (max-width: 1100px) {
  .geo-primary-nav,
  .geo-header-actions__link,
  .geo-header-actions .geo-button {
    display: none;
  }

  .geo-header-main {
    grid-template-columns: auto auto;
    justify-content: space-between;
  }

  .geo-menu-toggle {
    display: flex;
  }

  .geo-topbar__inner {
    justify-content: center;
  }

  .geo-topbar p {
    display: none;
  }
}

@media (max-width: 900px) {
	  .geo-proof-grid,
	  .geo-solution-grid,
	  .geo-operations-grid,
	  .geo-investor-grid,
	  .geo-testimonial-grid,
	  .geo-social-grid,
	  .geo-claude-intro__grid,
	  .geo-claude-proof-band__grid,
	  .geo-claude-social__grid,
	  .geo-content-layout,
	  .geo-service-explorer,
	  .geo-fleet-browser__header,
  .geo-detail-shell,
  .geo-rig-detail,
  .geo-auto-layout,
  .geo-component-intro,
  .geo-location-detail,
  .geo-footer-main {
    grid-template-columns: 1fr;
  }

  .geo-service-explorer__sidebar,
  .geo-detail-panel,
  .geo-auto-media,
  .geo-location-detail__panel {
    position: static;
  }

  .geo-fleet-filters {
    justify-content: flex-start;
  }

  .geo-footer-links {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
  }

  .geo-footer-offices__grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

	  .geo-section-header--split,
	  .geo-claude-section-heading--split,
	  .geo-footer-cta,
	  .geo-footer-bottom,
	  .geo-market-strip__inner {
    align-items: flex-start;
    flex-direction: column;
  }

	  .geo-card-grid,
	  .geo-card-grid--compact,
	  .geo-claude-service-grid,
	  .geo-fleet-grid,
	  .geo-auto-card-grid,
	  .geo-location-grid,
  .geo-feature-grid,
  .geo-resource-list,
  .geo-component-card-grid,
  .geo-investor-resource-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .geo-gallery-feature {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-auto-rows: 220px;
  }

  .geo-gallery-feature a.is-large {
    grid-column: span 2;
    grid-row: span 1;
  }

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

  .geo-leadership-grid {
    grid-template-columns: 1fr;
  }

  body.page-id-102 .geo-leadership-grid {
    grid-template-columns: 1fr;
  }

  body.page-id-102 .geo-leadership-intro,
  body.page-id-102 .geo-leadership-card,
  body.page-id-102 .geo-leadership-card:first-child {
    grid-template-columns: 1fr;
  }

  body.page-id-102 .geo-leadership-card:first-child {
    grid-column: auto;
  }

  body.page-id-102 .geo-leadership-card__media img,
  body.page-id-102 .geo-leadership-card:first-child .geo-leadership-card__media img {
    min-height: 360px;
    max-height: 440px;
  }

  .geo-testimonials-page__intro,
  .geo-testimonials-list {
    grid-template-columns: 1fr;
  }

  .geo-directors-showcase,
  .geo-directors-grid,
  .geo-board-directors,
  .geo-board-governance__grid {
    grid-template-columns: 1fr;
  }

  .geo-board-stats__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 767px) {
  .geo-container {
    width: min(100% - 24px, var(--geo-content-width));
  }

  .geo-card-grid {
    grid-template-columns: 1fr;
  }

  .geo-stat-grid {
    grid-template-columns: 1fr;
  }

  .geo-component-page,
  .geo-gallery-page,
  .geo-investor-hub {
    background: #fff;
  }

  .geo-component-intro {
    gap: 24px;
    margin-bottom: 30px;
  }

  .geo-component-intro h2 {
    font-size: clamp(2rem, 11vw, 3.25rem);
  }

  .geo-component-proof {
    grid-template-columns: 1fr;
  }

  .geo-feature-grid,
  .geo-resource-list,
  .geo-component-card-grid,
  .geo-investor-resource-grid,
  .geo-gallery-feature,
  .geo-gallery-grid {
    grid-template-columns: 1fr;
  }

  .geo-feature-card,
  .geo-resource-card,
  .geo-component-card {
    min-height: 0;
    padding: 22px;
  }

  .geo-gallery-feature {
    grid-auto-rows: auto;
  }

  .geo-gallery-feature a,
  .geo-gallery-feature a.is-large,
  .geo-gallery-grid a {
    grid-column: auto;
    grid-row: auto;
    aspect-ratio: 4 / 3;
  }

  .geo-investor-market-panel {
    min-height: 0;
  }

  .geo-document-row {
    grid-template-columns: 1fr;
  }

  .geo-leadership-card {
    grid-template-columns: 96px minmax(0, 1fr);
    gap: 14px;
    padding: 16px;
  }

  .geo-leadership-card__media img {
    width: 96px;
  }

  body.page-id-102 .geo-page-hero__inner {
    min-height: 390px;
  }

  body.page-id-102 .geo-page-hero h1 {
    font-size: clamp(2.55rem, 14vw, 4rem);
  }

  body.page-id-102 .geo-leadership-intro {
    padding: 24px;
  }

  body.page-id-102 .geo-leadership-intro:after {
    display: none;
  }

  body.page-id-102 .geo-leadership-card {
    display: flex;
    flex-direction: column;
    padding: 0;
  }

  body.page-id-102 .geo-leadership-card__media img,
  body.page-id-102 .geo-leadership-card:first-child .geo-leadership-card__media img {
    width: 100%;
    min-height: 260px;
    max-height: 320px;
  }

  body.page-id-102 .geo-leadership-card__body {
    padding: 22px;
  }

  body.page-id-102 .geo-leadership-card h2,
  body.page-id-102 .geo-leadership-card h3,
  body.page-id-102 .geo-leadership-card:not(:first-child) h2,
  body.page-id-102 .geo-leadership-card:not(:first-child) h3 {
    font-size: clamp(1.45rem, 8vw, 2rem);
  }

  body.page-id-290 .geo-page-hero__inner {
    min-height: 340px;
  }

  body.page-id-290 .geo-page-hero h1 {
    font-size: clamp(2.6rem, 14vw, 4.1rem);
  }

  .geo-testimonials-page__intro h2 {
    font-size: clamp(2.1rem, 11vw, 3.2rem);
  }

  .geo-testimonial-feature,
  .geo-testimonial-card {
    padding: 24px;
  }

  .geo-testimonial-feature p {
    font-size: clamp(1.32rem, 7vw, 2rem);
  }

  .geo-testimonial-mark {
    right: 16px;
    top: 0;
    font-size: 8rem;
  }

  .geo-directors-showcase {
    padding: 22px;
  }

  .geo-director-card {
    grid-template-columns: 96px minmax(0, 1fr);
  }

  .geo-director-card__media {
    padding: 14px 10px;
  }

  .geo-director-card__media img {
    width: 76px;
    height: 102px;
    border-width: 2px;
  }

  .geo-director-card__body {
    padding: 16px 14px;
  }

  .geo-director-card h3 {
    font-size: 1.12rem;
  }

  body.page-id-291 .geo-page-hero__inner {
    min-height: 540px;
  }

  body.page-id-291 .geo-page-hero h1 {
    font-size: 2.45rem;
  }

  .geo-board-stats {
    padding-bottom: 34px;
  }

  .geo-board-stats__grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .geo-board-section,
  .geo-board-governance {
    padding: 56px 0;
  }

  .geo-board-card {
    flex-direction: column;
  }

  .geo-board-card__portrait,
  .geo-board-card__monogram {
    width: 100%;
    height: 220px;
    flex-basis: auto;
  }

  .geo-board-card__portrait img {
    object-position: center 16%;
  }

  .geo-board-cta__inner {
    align-items: flex-start;
    flex-direction: column;
  }

  .geo-topbar__inner,
  .geo-header-main,
  .geo-footer-cta,
  .geo-footer-main,
  .geo-footer-bottom,
  .geo-fallback-hero__content {
    width: min(100% - 28px, var(--geo-content-width));
  }

  .geo-brand img {
    width: 148px;
  }

  .geo-fallback-hero {
    min-height: 680px;
  }

  .geo-fallback-hero__media {
    background:
      linear-gradient(180deg, rgba(8, 26, 34, 0.2), rgba(8, 26, 34, 0.94)),
      url("/wp-content/uploads/2022/03/WhatsApp-Image-2022-03-05-at-11.03.43-AM-1-768x432.jpeg") center / cover no-repeat;
  }

  .geo-fallback-hero h1 {
    font-size: 2.7rem;
  }

	  .geo-card-grid,
	  .geo-card-grid--compact,
	  .geo-claude-service-grid,
	  .geo-fleet-grid,
	  .geo-auto-card-grid,
	  .geo-location-grid,
	  .geo-stat-grid,
	  .geo-claude-stat-grid,
	  .geo-footer-links {
	    grid-template-columns: 1fr;
	  }

  .geo-claude-news-row {
    grid-template-columns: 1fr;
    gap: 8px;
    padding-inline: 0;
  }

  .geo-claude-news-row em {
    display: none;
  }

  .geo-claude-news-tabs__nav {
    justify-content: flex-start;
    overflow-x: auto;
  }

  .geo-claude-testimonials__viewport {
    min-height: 0;
    padding: 0;
  }

  .geo-claude-testimonials__arrow {
    display: none;
  }

  .geo-service-explorer__sidebar h2,
  .geo-fleet-browser__header h2,
  .geo-detail-copy h2,
  .geo-rig-detail__copy h2,
  .geo-auto-copy > h2,
  .geo-location-browser__header h2,
  .geo-location-detail__copy h2 {
    font-size: 2.15rem;
  }

  .geo-auto-media img {
    min-height: 240px;
    max-height: 340px;
  }

  .geo-service-tabs {
    grid-template-columns: 1fr;
  }

  .geo-service-panel h3 {
    font-size: 2.05rem;
  }

  .geo-service-panel__media img,
  .geo-rig-card__media img,
  .geo-rig-detail__media img,
  .geo-detail-panel img {
    max-height: 320px;
  }

  .geo-rig-card dl div,
  .geo-rig-specs div,
  .geo-location-meta div {
    grid-template-columns: 1fr;
  }

  .geo-location-card {
    min-height: 190px;
  }

  .geo-location-map iframe {
    min-height: 280px;
  }

  .geo-operations-grid img {
    min-height: 220px;
  }

  .geo-proof-list {
    grid-template-columns: 1fr;
  }

  .geo-page-aside {
    position: static;
  }

  .geo-detail-meta div {
    grid-template-columns: 1fr;
  }

  .geo-page-hero__inner {
    min-height: 360px;
    padding-block: 96px 54px;
  }

  .geo-page-hero h1 {
    font-size: 2.7rem;
  }
}
