/* GrowthOps page styles — extends design-system tokens in assets/colors_and_type.css */

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  background: #fff;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
a { color: inherit; text-decoration: none; }
em { font-style: normal; }

/* ─── shared scaffolding ─── */

/* Side padding is a CSS variable so every section follows the same
   centred-content rule. It expands on big desktops (calc keeps content max
   1280px wide), holds the design floor on laptops, and is overridden by
   media queries below for tablet/mobile. */
:root {
  --ecl-side-pad: max(116px, calc((100% - 1280px) / 2));
}

/* Page wrapper — full viewport width; content inside is capped via gx-pad below.
   Typography scoped here (not on body) so Elementor editor chrome is unaffected. */
.gx-page {
  width: 100%;
  margin: 0;
  font-family: var(--ecl-font-display);
  color: var(--ecl-fg-1);
}

.gx-pad {
  padding-top: 100px;
  padding-bottom: 100px;
  padding-left: var(--ecl-side-pad);
  padding-right: var(--ecl-side-pad);
}

.gx-h1 {
  font-family: var(--ecl-font-display);
  font-weight: 500;
  font-size: 64px;
  line-height: 1.05;
  letter-spacing: -0.018em;
  color: var(--ecl-fg-1);
  margin: 0;
  text-wrap: balance;
}
.gx-h2 {
  font-family: var(--ecl-font-display);
  font-weight: 500;
  font-size: 44px;
  line-height: 1.08;
  letter-spacing: -0.012em;
  color: var(--ecl-fg-1);
  margin: 0;
  text-wrap: balance;
}
.gx-h3 {
  font-family: var(--ecl-font-display);
  font-weight: 500;
  font-size: 28px;
  line-height: 1.15;
  letter-spacing: -0.008em;
  color: var(--ecl-fg-1);
  margin: 0;
}
.gx-h4 {
  font-family: var(--ecl-font-display);
  font-weight: 500;
  font-size: 18px;
  line-height: 1.3;
  margin: 0;
  color: var(--ecl-fg-1);
}
.gx-body {
  font-family: var(--ecl-font-display);
  font-weight: 400;
  font-size: 15px;
  line-height: 1.55;
  color: var(--ecl-fg-3);
  margin: 0;
}

/* ─── pill ─── */
.gx-pill {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  gap: 8px;
  padding: 7px 16px;
  border-radius: 20px;
  background: rgba(92, 225, 230, 0.04);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: inset 0 -4px 52px 0 rgba(212, 158, 255, 0.12);
  border: 1px solid rgba(13, 17, 23, 0.06);
  font-family: var(--ecl-font-display);
  font-weight: 400;
  font-size: 12px;
  line-height: 1.4;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ecl-fg-1);
  white-space: nowrap;
}
.gx-pill__mobile { display: none; }
.gx-pill .dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--ecl-cyan);
  box-shadow: 0 0 8px rgba(42, 191, 203, 0.5);
  animation: gx-pulse 1.6s ease-in-out infinite;
  flex-shrink: 0;
}
.gx-pill--on-dark {
  color: rgba(255,255,255,0.92);
  border: 1px solid rgba(255,255,255,0.10);
  background: rgba(255,255,255,0.03);
}
@keyframes gx-pulse { 0%, 100% { opacity: 0.85; transform: scale(1); } 50% { opacity: 1; transform: scale(1.15); } }

.gx-badge-num {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  gap: 8px;
  padding: 5px 12px 5px 9px;
  border-radius: 20px;
  background: rgba(42, 191, 203, 0.10);
  font-family: var(--ecl-font-display);
  font-weight: 500;
  font-size: 12px;
  letter-spacing: 0.14em;
  color: var(--ecl-cyan);
  text-transform: uppercase;
}
.gx-badge-num .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--ecl-cyan); flex-shrink: 0; }

/* ─── buttons ─── */
.gx-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  height: 52px;
  padding: 0 22px;
  border: none;
  border-radius: 6px;
  font-family: var(--ecl-font-display);
  font-weight: 500;
  font-size: 15px;
  line-height: 1;
  letter-spacing: -0.005em;
  cursor: pointer;
  transition: transform .12s ease, filter .15s ease, background .15s ease;
  white-space: nowrap;
}
.gx-btn:active { transform: translateY(1px) scale(0.99); }
.gx-btn--primary {
  background: var(--ecl-cyan-bright);
  color: var(--ecl-ink);
}
.gx-btn--primary:hover { filter: brightness(0.96); }
.gx-btn--primary .arrow {
  width: 22px; height: 22px; border-radius: 50%;
  background: var(--ecl-ink); color: var(--ecl-cyan-bright);
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 12px;
}
.gx-btn--secondary {
  background: rgb(245, 245, 245);
  color: var(--ecl-ink);
  box-shadow: inset 0 -15px 20px 0 rgba(255,255,255,0.20), inset 0 1px 0 rgba(255,255,255,0.4);
  border: 1px solid rgba(0,0,0,0.06);
}
.gx-btn--secondary:hover { background: rgb(238,238,238); }
.gx-btn--ghost-on-dark {
  background: rgba(255,255,255,0.06);
  color: #fff;
  border: 1px solid rgba(255,255,255,0.16);
}
.gx-btn--ghost-on-dark:hover { background: rgba(255,255,255,0.10); }

/* ─── topbar / nav ─── */
.gx-topbar {
  height: 36px;
  background: var(--ecl-ink);
  color: rgba(255,255,255,0.86);
  display: flex; align-items: center; justify-content: center; gap: 14px;
  font-family: var(--ecl-font-display);
  font-weight: 400;
  font-size: 12px;
  letter-spacing: 0.02em;
}
.gx-topbar .sep { color: rgba(255,255,255,0.3); }
.gx-topbar a { color: var(--ecl-cyan-bright); }

.gx-nav {
  position: sticky; top: 0; z-index: 30;
  height: 76px;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(0,0,0,0.06);
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 var(--ecl-side-pad);
}
.gx-nav__logo { height: 28px; width: auto; }
.gx-nav__pill {
  display: flex; align-items: center; gap: 4px;
  padding: 6px;
  border-radius: 999px;
  background: var(--ecl-paper-soft, #fafbfc);
  border: 1px solid rgba(0,0,0,0.07);
  height: 48px;
}
.gx-nav__link {
  padding: 8px 14px;
  font-family: var(--ecl-font-display);
  font-weight: 500;
  font-size: 13px;
  color: var(--ecl-fg-2);
  border-radius: 999px;
  transition: color .15s, background .15s;
}
.gx-nav__link:hover { color: var(--ecl-fg-1); }
.gx-nav__link--active { color: var(--ecl-fg-1); background: rgba(42,191,203,0.10); }
.gx-nav__divider { width: 1px; height: 22px; background: rgba(0,0,0,0.08); margin: 0 4px; }
.gx-nav__cta {
  display: inline-flex; align-items: center; gap: 10px;
  height: 36px; padding: 0 14px;
  background: var(--ecl-ink); color: #fff;
  border-radius: 999px;
  font-family: var(--ecl-font-display);
  font-weight: 500;
  font-size: 13px;
}
.gx-nav__cta .arrow {
  width: 18px; height: 18px; border-radius: 50%;
  background: var(--ecl-cyan-bright); color: var(--ecl-ink);
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 11px;
}

/* ─── section heads ─── */
.gx-section { width: 100%; }
.gx-section--mist { background: var(--ecl-mist); }
.gx-section-head {
  display: flex; flex-direction: column; align-items: center; gap: 18px;
  margin-bottom: 64px;
  text-align: center;
}
.gx-section-head--start { align-items: flex-start; text-align: left; }
.gx-section-head .gx-h2 { max-width: 920px; }

/* ─── HERO ─── */
.gx-hero {
  position: relative;
  overflow: hidden;
  padding: 64px var(--ecl-side-pad) 110px;
  background: #fff;
}
.gx-hero__blobs {
  position: absolute; inset: -10% -8% auto auto;
  width: 70%; height: 110%;
  pointer-events: none;
  filter: blur(60px);
  opacity: 0.85;
}
.gx-hero__blobs::before {
  content: '';
  position: absolute; right: -6%; top: -12%;
  width: 540px; height: 540px;
  background: radial-gradient(closest-side, rgba(92,225,230,0.55), rgba(92,225,230,0) 70%);
}
.gx-hero__blobs::after {
  content: '';
  position: absolute; right: 14%; top: 40%;
  width: 480px; height: 480px;
  background: radial-gradient(closest-side, rgba(212,158,255,0.45), rgba(212,158,255,0) 70%);
}
.gx-hero__blobs span {
  position: absolute; left: 24%; top: 22%;
  width: 380px; height: 380px;
  background: radial-gradient(closest-side, rgba(255,180,150,0.30), rgba(255,180,150,0) 70%);
  display: block;
}
.gx-hero__noise {
  position: absolute; inset: 0;
  background: url('../assets/noise-texture.png');
  opacity: 0.18;
  mix-blend-mode: multiply;
  pointer-events: none;
}
.gx-hero__inner {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr);
  gap: 80px;
  align-items: center;
  z-index: 1;
}
.gx-hero__copy { display: flex; flex-direction: column; gap: 26px; align-items: flex-start; min-width: 0; }
.gx-hero__visual { min-width: 0; }
.gx-hero__copy .gx-pill { width: auto; max-width: 100%; }
.gx-hero__copy .gx-h1 { margin-top: 4px; }
.gx-hero__copy .gx-h1 em { color: var(--ecl-cyan); }
.gx-hero__sub {
  font-family: var(--ecl-font-ui);
  font-size: 17px; line-height: 1.6;
  color: var(--ecl-fg-3);
  max-width: 580px;
  margin: 0;
}
.gx-hero__ctas { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 6px; }
.gx-hero__scarcity {
  display: inline-flex; align-items: center; gap: 10px;
  flex-wrap: wrap;
  font-family: var(--ecl-font-display);
  font-size: 13px;
  color: var(--ecl-fg-4);
  margin-top: 4px;
}
.gx-hero__scarcity .pulse {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--ecl-success);
  box-shadow: 0 0 0 4px rgba(52,211,153,0.15);
  animation: gx-pulse 1.6s ease-in-out infinite;
}

.gx-hero__visual {
  position: relative;
  height: 460px;
  display: flex; align-items: center; justify-content: center;
}
.gx-hero__gauge {
  width: 100%;
  max-width: 480px;
  background: rgba(255,255,255,0.7);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,0.6);
  border-radius: 16px;
  padding: 28px 32px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 18px 24px;
  align-items: center;
  box-shadow: 0 24px 60px -20px rgba(13,17,23,0.18);
}
.gx-hero__gauge .label {
  font-family: var(--ecl-font-display);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ecl-fg-4);
  margin-bottom: 6px;
}
.gx-hero__gauge .val {
  font-family: var(--ecl-font-display);
  font-weight: 500;
  font-size: 38px;
  letter-spacing: -0.018em;
  color: var(--ecl-fg-1);
  line-height: 1;
}
.gx-hero__gauge .bar {
  grid-column: 1 / -1;
  height: 8px; border-radius: 999px;
  background: rgba(13,17,23,0.06);
  overflow: hidden;
  margin: 4px 0 6px;
  position: relative;
}
.gx-hero__gauge .bar i {
  display: block; height: 100%;
  background: linear-gradient(90deg, var(--ecl-cyan), var(--ecl-cyan-bright));
  border-radius: 999px;
}

.gx-hero__ticker {
  position: absolute;
  left: -12px;
  bottom: -28px;
  display: flex; gap: 0;
  background: var(--ecl-ink);
  border-radius: 12px;
  padding: 16px 4px;
  box-shadow: 0 24px 60px -20px rgba(13,17,23,0.40);
}
.gx-hero__ticker > div {
  padding: 4px 24px;
  border-right: 1px solid rgba(255,255,255,0.08);
  display: flex; flex-direction: column; gap: 6px;
}
.gx-hero__ticker > div:last-child { border-right: none; }
.gx-hero__ticker .v {
  font-family: var(--ecl-font-display);
  font-weight: 500;
  font-size: 22px;
  color: var(--ecl-cyan-bright);
  letter-spacing: -0.012em;
  line-height: 1;
}
.gx-hero__ticker .l {
  font-family: var(--ecl-font-display);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
}

/* ─── comparison cards ─── */
.gx-comparison {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.gx-card {
  display: flex; flex-direction: column; gap: 18px;
  padding: 36px 36px 36px;
  border-radius: 8px;
  background: #fff;
  border: 1px solid var(--ecl-line-light);
}
.gx-card__rule {
  height: 1px;
  background: rgba(0,0,0,0.07);
  margin: 4px 0;
}
.gx-card__rule--bad { background: linear-gradient(90deg, rgba(255,107,107,0.5), transparent); }
.gx-card__rule--good { background: linear-gradient(90deg, rgba(42,191,203,0.6), transparent); }
.gx-card__check-grid { display: flex; flex-direction: column; gap: 12px; }
.gx-check {
  display: flex; align-items: flex-start; gap: 12px;
  font-family: var(--ecl-font-display);
  font-size: 14px;
  line-height: 1.45;
  color: var(--ecl-fg-2);
  padding: 10px 14px;
  background: rgba(13,17,23,0.025);
  border-radius: 7px;
  border: 1px solid rgba(13,17,23,0.04);
}
.gx-check--good { color: var(--ecl-fg-1); border-color: rgba(42,191,203,0.15); background: rgba(42,191,203,0.05); }
.gx-check--bad  { color: var(--ecl-fg-3); }
.gx-card__pill-row { display: flex; }

/* ─── formula vertical / timeline / flywheel ─── */
.gx-step__num {
  width: 36px; height: 36px; border-radius: 50%;
  background: rgba(42,191,203,0.12);
  color: var(--ecl-cyan);
  display: inline-flex; align-items: center; justify-content: center;
  font-family: var(--ecl-font-display);
  font-weight: 500;
  font-size: 13px;
  letter-spacing: 0.04em;
}
.gx-step__time {
  font-family: var(--ecl-font-display);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ecl-fg-4);
}

.gx-formula { display: grid; grid-template-columns: 380px 1fr; gap: 80px; align-items: center; }
.gx-flywheel {
  position: relative;
  width: 380px; height: 380px;
  margin: 0 auto;
}
.gx-flywheel svg { width: 100%; height: 100%; }
.gx-flywheel__center {
  position: absolute;
  inset: 0;
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 4px;
}
.gx-flywheel__center .v {
  font-family: var(--ecl-font-display);
  font-weight: 500;
  font-size: 56px;
  color: var(--ecl-cyan);
  line-height: 1;
}
.gx-flywheel__center .label {
  font-family: var(--ecl-font-display);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ecl-fg-4);
}
.gx-flywheel__node {
  position: absolute;
  transform: translate(-50%, -50%);
  background: #fff;
  border: 1px solid rgba(42,191,203,0.3);
  padding: 8px 14px;
  border-radius: 999px;
  display: inline-flex; align-items: center; gap: 8px;
  white-space: nowrap;
  box-shadow: 0 8px 20px -10px rgba(13,17,23,0.15);
}
.gx-flywheel__node .n {
  font-family: var(--ecl-font-display);
  font-weight: 500;
  font-size: 11px;
  color: var(--ecl-cyan);
  letter-spacing: 0.04em;
}
.gx-flywheel__node .t {
  font-family: var(--ecl-font-display);
  font-weight: 500;
  font-size: 13px;
  color: var(--ecl-fg-1);
}
.gx-steps { display: flex; flex-direction: column; gap: 20px; }
.gx-step {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 22px;
  align-items: flex-start;
  padding: 22px 4px;
  border-bottom: 1px solid rgba(0,0,0,0.07);
}
.gx-step:last-child { border-bottom: none; }
.gx-step__copy h4 { font-size: 19px; margin-bottom: 6px; }
.gx-step__copy p {
  font-family: var(--ecl-font-display);
  font-size: 14px;
  line-height: 1.55;
  color: var(--ecl-fg-3);
  margin: 0;
  max-width: 540px;
}

/* ─── why ─── */
.gx-why { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.gx-why__card {
  padding: 36px 32px 32px;
  background: #fff;
  border: 1px solid rgba(0,0,0,0.05);
  border-radius: 8px;
  display: flex; flex-direction: column; gap: 16px;
  min-height: 280px;
}
.gx-why__num {
  font-family: var(--ecl-font-display);
  font-weight: 500;
  font-size: 16px;
  color: var(--ecl-cyan);
  letter-spacing: 0.04em;
  display: flex; align-items: center; gap: 10px;
}
.gx-why__num::before {
  content: '';
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--ecl-cyan);
}

/* ─── dark sections ─── */
.gx-section--ink { background: var(--ecl-ink); color: #fff; position: relative; overflow: hidden; }
.gx-section--ink :where(.gx-h2:not(.gx-h2--gradient), .gx-h3, .gx-h4) { color: #fff; }
.gx-section--ink .gx-body { color: rgba(255, 255, 255, 0.65); }
.gx-section--ink .gx-section-head .gx-h2 { color: #fff; }
.gx-h2--gradient {
  background: radial-gradient(ellipse at center, #b8bcc4 0%, #d8dbe0 45%, #ffffff 100%);
  -webkit-background-clip: text;
          background-clip: text;
  -webkit-text-fill-color: transparent;
          color: transparent !important;
}
.gx-section--ink .gx-pill {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.10);
  color: rgba(255,255,255,0.92);
  box-shadow: inset 0 -4px 52px 0 rgba(212,158,255,0.08);
}
.gx-cost-glow {
  position: absolute;
  left: 50%; top: 0;
  transform: translateX(-50%);
  width: 1100px; height: 600px;
  background: radial-gradient(closest-side, rgba(92,225,230,0.16), transparent 70%);
  pointer-events: none;
  z-index: 0;
}
.gx-section--cost .gx-section-head, .gx-section--formula-dark .gx-section-head { position: relative; z-index: 1; }

/* ─── hidden cost ─── */
.gx-cost {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 56px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.gx-cost h3 { color: #fff; font-size: 32px; line-height: 1.18; max-width: 540px; }

/* Formula cards (Figma-faithful) */
.gx-formula-grid {
  position: relative; z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.gx-fcard {
  position: relative;
  display: flex; flex-direction: column;
  padding: 32px 30px 30px;
  border-radius: 12px;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.04) 0%, rgba(255,255,255,0.01) 100%);
  border: 1px solid rgba(255,255,255,0.10);
  backdrop-filter: blur(40px);
  -webkit-backdrop-filter: blur(40px);
  box-shadow: inset 0 -1px 1px rgba(255,255,255,0.03);
  overflow: hidden;
}
.gx-fcard__glow {
  position: absolute; top: -60px; right: -60px;
  width: 220px; height: 220px;
  background: radial-gradient(closest-side, rgba(92,225,230,0.18), transparent 70%);
  pointer-events: none;
}
.gx-fcard__num {
  position: relative; z-index: 1;
  font-family: var(--ecl-font-display);
  font-weight: 500;
  font-size: 14px;
  color: var(--ecl-cyan-bright);
  letter-spacing: 0.04em;
}
.gx-fcard__time {
  position: relative; z-index: 1;
  display: inline-flex; align-self: flex-start;
  align-items: center;
  height: 26px;
  padding: 0 14px;
  margin-top: 14px;
  border-radius: 100px;
  background: rgba(92,225,230,0.12);
  font-family: var(--ecl-font-display);
  font-weight: 500;
  font-size: 11px;
  letter-spacing: 0.10em;
  color: var(--ecl-cyan-bright);
}
.gx-fcard__t {
  position: relative; z-index: 1;
  margin-top: 18px;
  font-family: var(--ecl-font-display);
  font-weight: 500;
  font-size: 22px;
  line-height: 1.15;
  letter-spacing: -0.008em;
  color: #fff;
}
.gx-fcard__d {
  position: relative; z-index: 1;
  margin-top: 14px;
  font-family: var(--ecl-font-display);
  font-weight: 400;
  font-size: 14px;
  line-height: 1.6;
  color: rgba(255,255,255,0.62);
}
.gx-fcard__rule {
  position: relative; z-index: 1;
  height: 1px;
  background: rgba(255,255,255,0.10);
  margin: 22px 0 18px;
}
.gx-fcard__list {
  position: relative; z-index: 1;
  list-style: none;
  margin: 0; padding: 0;
  display: flex; flex-direction: column;
  gap: 14px;
  flex: 1;
}
.gx-fcard__li {
  position: relative;
  display: grid;
  grid-template-columns: 14px 1fr;
  gap: 10px;
  align-items: flex-start;
}
.gx-fcard__bullet {
  display: inline-block;
  width: 6px; height: 6px;
  margin-top: 7px;
  border-radius: 50%;
  background: var(--ecl-cyan-bright);
  box-shadow: 0 0 10px rgba(92,225,230,0.5);
}
.gx-fcard__litext {
  font-family: var(--ecl-font-ui), var(--ecl-font-display);
  font-weight: 400;
  font-size: 13.5px;
  line-height: 1.55;
  color: rgba(255,255,255,0.72);
}
.gx-fcard__litext strong {
  font-weight: 600;
  color: #fff;
}
.gx-fcard__chip {
  position: relative; z-index: 1;
  align-self: flex-start;
  margin-top: 22px;
  padding: 0;
  background: none;
  border: none;
  font-family: var(--ecl-font-display);
  font-weight: 500;
  font-size: 12px;
  letter-spacing: 0.04em;
  color: var(--ecl-cyan-bright);
  opacity: 0.9;
}

/* dark formula cards */
.gx-fstep-dark {
  position: relative;
  padding: 32px 30px 30px;
  background: linear-gradient(180deg, rgba(255,255,255,0.04) 0%, rgba(255,255,255,0.015) 100%);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 12px;
  display: flex; flex-direction: column; gap: 14px;
  overflow: hidden;
  backdrop-filter: blur(40px);
  -webkit-backdrop-filter: blur(40px);
  box-shadow: inset 0 -1px 1px rgba(255,255,255,0.03);
}
.gx-fstep-dark__glow {
  position: absolute; top: -40px; right: -40px;
  width: 200px; height: 200px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(92,225,230,0.18), transparent 65%);
  pointer-events: none;
}
.gx-fstep-dark__head { display: flex; align-items: center; justify-content: space-between; position: relative; z-index: 1; }
.gx-fstep-dark__num {
  width: 40px; height: 40px; border-radius: 50%;
  background: rgba(92,225,230,0.14);
  border: 1px solid rgba(92,225,230,0.25);
  color: var(--ecl-cyan-bright);
  display: inline-flex; align-items: center; justify-content: center;
  font-family: var(--ecl-font-display);
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 0.04em;
}
.gx-cost__calc {
  position: relative;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.06) 0%, rgba(255,255,255,0.02) 100%);
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: 14px;
  padding: 24px 26px 22px;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.06), 0 24px 60px -28px rgba(92,225,230,0.20);
  overflow: hidden;
}
.gx-cost__calc::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(120% 60% at 100% 0%, rgba(92,225,230,0.10), transparent 60%);
  pointer-events: none;
}
.gx-cost__calc-head {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 16px;
  margin-bottom: 4px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.gx-cost__calc-label {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--ecl-font-display);
  font-weight: 500;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ecl-cyan-bright);
}
.gx-cost__calc-label .dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--ecl-cyan-bright);
  box-shadow: 0 0 10px rgba(92,225,230,0.7);
  animation: gx-pulse 1.6s ease-in-out infinite;
  flex-shrink: 0;
}
.gx-cost__calc-sub {
  font-family: var(--ecl-font-display);
  font-size: 11px;
  letter-spacing: 0.04em;
  color: rgba(255,255,255,0.45);
}

.gx-cost__rows {
  position: relative;
  display: flex;
  flex-direction: column;
}
.gx-cost__row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 16px;
  padding: 12px 0;
  font-family: var(--ecl-font-display);
}
.gx-cost__row-label {
  font-weight: 400;
  font-size: 13px;
  letter-spacing: 0.04em;
  color: rgba(255,255,255,0.62);
  display: inline-flex; align-items: center; gap: 8px;
}
.gx-cost__row-label .op {
  display: inline-flex; align-items: center; justify-content: center;
  width: 18px; height: 18px;
  border-radius: 4px;
  background: rgba(92,225,230,0.16);
  color: var(--ecl-cyan-bright);
  font-weight: 500;
  font-size: 12px;
  line-height: 1;
}
.gx-cost__row-val {
  font-family: var(--ecl-font-display);
  font-weight: 500;
  font-size: 22px;
  letter-spacing: -0.012em;
  color: #fff;
  font-variant-numeric: tabular-nums;
}
.gx-cost__row-val .unit {
  font-size: 14px;
  color: rgba(255,255,255,0.55);
  margin-left: 1px;
}
.gx-cost__row-val--cyan { color: var(--ecl-cyan-bright); }
.gx-cost__row-val--big {
  font-size: 38px;
  color: var(--ecl-cyan-bright);
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-shadow: 0 0 24px rgba(92,225,230,0.35);
}
.gx-cost__row-val--big .trend { color: var(--ecl-cyan-bright); display: inline-flex; opacity: 0.8; }

.gx-cost__row--op { padding: 12px 0 14px; }
.gx-cost__row--total { padding-top: 16px; }
.gx-cost__row--total .gx-cost__row-label {
  color: rgba(255,255,255,0.85);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.10em;
  text-transform: uppercase;
}

.gx-cost__divider {
  height: 1px;
  background: linear-gradient(90deg, rgba(92,225,230,0.5), rgba(255,255,255,0.05));
  margin: 4px 0 0;
}

.gx-cost__compound {
  position: relative;
  margin-top: 18px;
  padding: 12px 16px;
  border-radius: 8px;
  background: rgba(92,225,230,0.06);
  border: 1px dashed rgba(92,225,230,0.32);
  display: flex; justify-content: space-between; align-items: center;
  font-family: var(--ecl-font-display);
}
.gx-cost__compound span {
  font-size: 12px;
  letter-spacing: 0.04em;
  color: rgba(255,255,255,0.62);
}
.gx-cost__compound strong {
  font-weight: 500;
  font-size: 16px;
  color: #fff;
  letter-spacing: -0.008em;
  font-variant-numeric: tabular-nums;
}

/* ─── risk cards ─── */
.gx-risk { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.gx-risk__card {
  background: #fff;
  border: 1px solid rgba(0,0,0,0.07);
  border-radius: 10px;
  padding: 36px 36px 32px;
  display: flex; flex-direction: column; gap: 16px;
  min-height: 320px;
  position: relative;
  overflow: hidden;
}
.gx-risk__card::before {
  content: '';
  position: absolute; right: -40px; top: -40px;
  width: 200px; height: 200px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(42,191,203,0.10), transparent 65%);
  pointer-events: none;
}
.gx-risk__bullets { display: flex; flex-direction: column; gap: 10px; margin-top: auto; padding-top: 8px; }
.gx-risk__bullet {
  display: flex; align-items: flex-start; gap: 12px;
  font-family: var(--ecl-font-display);
  font-size: 14px;
  line-height: 1.5;
  color: var(--ecl-fg-2);
}
.gx-risk__bullet i {
  display: inline-flex; align-items: center; justify-content: center;
  width: 20px; height: 20px; border-radius: 50%;
  background: rgba(42,191,203,0.15);
  color: var(--ecl-cyan);
  font-style: normal;
  font-size: 11px;
  flex-shrink: 0;
  margin-top: 1px;
}

/* ─── cases ─── */
.gx-cases { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.gx-case {
  display: flex; flex-direction: column;
  border: 1px solid rgba(0,0,0,0.07);
  border-radius: 10px;
  overflow: hidden;
  background: #fff;
}
.gx-case__media {
  background: var(--ecl-mist);
  aspect-ratio: 4 / 3;
  display: flex; align-items: center; justify-content: center;
  position: relative;
  border-bottom: 1px solid rgba(0,0,0,0.07);
}
.gx-case__media .placeholder {
  font-family: var(--ecl-font-display);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ecl-fg-4);
}
.gx-case__body { padding: 28px 28px 30px; display: flex; flex-direction: column; gap: 12px; }
.gx-case__tag {
  display: inline-flex; align-self: flex-start;
  align-items: center;
  height: 22px;
  padding: 0 10px;
  border-radius: 6px;
  background: rgba(42,191,203,0.12);
  font-family: var(--ecl-font-display);
  font-weight: 500;
  font-size: 11px;
  letter-spacing: 0.04em;
  color: var(--ecl-cyan);
}
.gx-case__brand-name {
  font-family: var(--ecl-font-display);
  font-weight: 500;
  font-size: 22px;
  line-height: 1.1;
  letter-spacing: -0.006em;
  color: var(--ecl-fg-1);
  margin-top: 2px;
}
.gx-case__challenge-label {
  font-family: var(--ecl-font-display);
  font-weight: 500;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ecl-fg-4);
  margin-top: 6px;
}
.gx-case__stats {
  display: flex; gap: 24px;
  margin-top: auto;
  padding-top: 18px;
}
.gx-case__stat .v {
  font-family: var(--ecl-font-display);
  font-weight: 500;
  font-size: 22px;
  line-height: 1.1;
  letter-spacing: -0.01em;
  color: var(--ecl-cyan);
  font-variant-numeric: tabular-nums;
}
.gx-case__stat .l {
  font-family: var(--ecl-font-display);
  font-size: 12px;
  letter-spacing: 0.04em;
  color: var(--ecl-fg-3);
  margin-top: 4px;
}
.gx-case__brand { display: flex; justify-content: space-between; align-items: baseline; gap: 10px; }
.gx-case__brand .tag {
  font-family: var(--ecl-font-display);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ecl-fg-4);
}
.gx-case__metric {
  font-family: var(--ecl-font-display);
  font-weight: 500;
  font-size: 38px;
  color: var(--ecl-cyan);
  letter-spacing: -0.014em;
  line-height: 1;
  margin: 4px 0 2px;
}
.gx-case__metric small {
  font-size: 12px;
  color: var(--ecl-fg-3);
  margin-left: 6px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.gx-case__copy {
  font-family: var(--ecl-font-display);
  font-size: 14px;
  line-height: 1.55;
  color: var(--ecl-fg-3);
  margin: 0;
}
.gx-case__chips { display: flex; gap: 8px; flex-wrap: wrap; margin-top: 4px; }
.gx-case__chips span {
  display: inline-flex;
  padding: 4px 10px;
  border: 1px solid rgba(0,0,0,0.08);
  border-radius: 999px;
  font-family: var(--ecl-font-display);
  font-size: 11px;
  letter-spacing: 0.04em;
  color: var(--ecl-fg-3);
  background: #fff;
}

/* ─── fit split (axis-comparison) ─── */
.gx-fit2 {
  display: grid;
  grid-template-columns: 1fr 200px 1fr;
  background: #fff;
  border: 1px solid rgba(0,0,0,0.07);
  border-radius: 8px;
  overflow: hidden;
}
.gx-fit2__head {
  padding: 18px 28px;
  font-family: var(--ecl-font-display);
  font-weight: 500;
  font-size: 13px;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  display: flex; align-items: center; gap: 10px;
  border-bottom: 1px solid rgba(0,0,0,0.07);
}
.gx-fit2__head .ico {
  display: inline-flex; align-items: center; justify-content: center;
  width: 22px; height: 22px; border-radius: 50%;
  font-size: 12px; font-weight: 600;
}
.gx-fit2__head--good { background: rgba(42,191,203,0.06); color: var(--ecl-cyan); }
.gx-fit2__head--good .ico { background: rgba(42,191,203,0.18); }
.gx-fit2__head--axis {
  background: var(--ecl-ink);
  color: rgba(255,255,255,0.7);
  font-size: 11px; letter-spacing: 0.18em;
  justify-content: center;
}
.gx-fit2__head--bad  { background: rgba(255,107,107,0.06); color: rgb(220, 70, 70); justify-content: flex-end; }
.gx-fit2__head--bad .ico { background: rgba(255,107,107,0.18); }
.gx-fit2__cell {
  padding: 26px 32px 28px;
  border-bottom: 1px solid rgba(0,0,0,0.06);
  display: flex; flex-direction: column; gap: 8px;
  position: relative;
}
.gx-fit2__cell:nth-last-child(-n+3) { border-bottom: none; }
.gx-fit2__cell h5 {
  font-family: var(--ecl-font-display);
  font-weight: 500;
  font-size: 17px;
  line-height: 1.2;
  letter-spacing: -0.006em;
  color: var(--ecl-fg-1);
  margin: 0;
}
.gx-fit2__cell p {
  font-family: var(--ecl-font-display);
  font-size: 13.5px;
  line-height: 1.55;
  color: var(--ecl-fg-3);
  margin: 0;
}
.gx-fit2__cell--good { box-shadow: inset 4px 0 0 var(--ecl-cyan); }
.gx-fit2__cell--bad  { box-shadow: inset -4px 0 0 rgba(255,107,107,0.7); text-align: right; align-items: flex-end; }
.gx-fit2__cell--bad p { max-width: 38ch; }
.gx-fit2__axis {
  background: var(--ecl-ink);
  color: #fff;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: 8px;
  padding: 24px 12px;
  position: relative;
}
.gx-fit2__axis::before {
  content: '';
  position: absolute; left: 50%; top: 12px; bottom: 12px;
  width: 1px; background: rgba(92,225,230,0.20);
  transform: translateX(-0.5px);
}
.gx-fit2__axis .num {
  position: relative; z-index: 1;
  font-family: var(--ecl-font-display);
  font-weight: 500;
  font-size: 11px;
  letter-spacing: 0.18em;
  color: var(--ecl-cyan-bright);
  background: var(--ecl-ink);
  padding: 0 10px;
}
.gx-fit2__axis .t {
  position: relative; z-index: 1;
  font-family: var(--ecl-font-display);
  font-weight: 500;
  font-size: 14px;
  letter-spacing: -0.006em;
  color: #fff;
  text-align: center;
  background: var(--ecl-ink);
  padding: 0 10px;
}
.gx-fit2__axis:nth-last-child(-n+1) { border-bottom: none; }

/* ─── final CTA ─── */
.gx-final {
  position: relative;
  background: var(--ecl-ink);
  color: #fff;
  padding: 110px var(--ecl-side-pad) 110px;
  overflow: hidden;
}
.gx-final__blobs {
  position: absolute; inset: 0;
  pointer-events: none;
  opacity: 0.55;
  filter: blur(70px);
}
.gx-final__blobs::before {
  content: '';
  position: absolute; right: -8%; top: -20%;
  width: 600px; height: 600px;
  background: radial-gradient(closest-side, rgba(92,225,230,0.5), transparent 70%);
}
.gx-final__blobs::after {
  content: '';
  position: absolute; right: 18%; top: 40%;
  width: 460px; height: 460px;
  background: radial-gradient(closest-side, rgba(212,158,255,0.45), transparent 70%);
}
.gx-final__noise {
  position: absolute; inset: 0;
  background: url('../assets/noise-texture.png');
  opacity: 0.18;
  mix-blend-mode: overlay;
  pointer-events: none;
}
.gx-final__inner {
  position: relative; z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  max-width: 1280px;
  margin: 0 auto;
  align-items: end;
}
.gx-final h2 { color: #fff; font-size: 50px; line-height: 1.05; max-width: 520px; }
.gx-final__ctas { display: flex; gap: 14px; flex-wrap: wrap; align-items: center; }
.gx-final__note {
  font-family: var(--ecl-font-display);
  font-size: 13px;
  line-height: 1.5;
  color: rgba(255,255,255,0.5);
  margin: 0;
  max-width: 460px;
}

/* ─── footer ─── */
.gx-footer {
  background: var(--ecl-ink);
  color: rgba(255,255,255,0.7);
  padding: 56px var(--ecl-side-pad) 28px;
  border-top: 1px solid rgba(255,255,255,0.06);
  position: relative;
}
.gx-footer__top {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1.4fr;
  gap: 64px;
  padding-bottom: 36px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  align-items: start;
}
.gx-footer__brand p {
  font-family: var(--ecl-font-display);
  font-size: 13.5px;
  line-height: 1.6;
  color: rgba(255,255,255,0.55);
  margin: 0;
  max-width: 360px;
}
.gx-footer__col, .gx-footer__trust {
  display: flex; flex-direction: column;
}
.gx-footer__col h6, .gx-footer__trust h6 {
  font-family: var(--ecl-font-display);
  font-weight: 500;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.40);
  margin: 0 0 14px;
}
.gx-footer__col { gap: 10px; }
.gx-footer__col a {
  font-family: var(--ecl-font-display);
  font-weight: 500;
  font-size: 14px;
  color: rgba(255,255,255,0.85);
  text-decoration: none;
  transition: color .15s ease;
}
.gx-footer__col a:hover { color: var(--ecl-cyan-bright); }

/* Trust column */
.gx-footer__trust { gap: 12px; }
.gx-footer__trust-line {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--ecl-font-display);
  font-size: 13.5px;
  color: rgba(255,255,255,0.85);
}
.gx-footer__trust-stars {
  color: var(--ecl-cyan-bright);
  letter-spacing: 1px;
  font-size: 12px;
}
.gx-footer__trust-dot {
  display: inline-block;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--ecl-cyan-bright);
  box-shadow: 0 0 8px rgba(92,225,230,0.5);
}
.gx-footer__clutch-widget {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  margin-top: 4px;
}
.gx-footer__clutch-widget .clutch-widget,
.gx-footer__clutch-widget iframe {
  background: #fff;
  border-radius: 4px;
}
.gx-footer__clutch-badges {
  display: flex;
  gap: 10px;
  align-items: center;
  flex-wrap: wrap;
  margin-top: 6px;
}
.gx-footer__clutch-badge {
  display: inline-block;
  line-height: 0;
  opacity: 0.85;
  transition: opacity .25s ease;
}
.gx-footer__clutch-badge:hover { opacity: 1; }
.gx-footer__clutch-badge img,
.gx-footer__clutch-badge .gx-responsive-img {
  width: auto;
  max-width: 100%;
  height: auto;
  display: block;
}

.gx-footer__bottom {
  display: flex; justify-content: space-between; align-items: center;
  padding-top: 28px;
  font-family: var(--ecl-font-display);
  font-size: 12px;
  color: rgba(255,255,255,0.45);
}
.gx-footer__bottom .star { color: var(--ecl-cyan-bright); margin-right: 4px; }

/* ─── TRUST BAND ─── */
.gx-trust {
  position: relative;
  background: #fff;
  padding: 0 var(--ecl-side-pad) 28px;
}
.gx-trust__inner {
  display: flex;
  flex-direction: column;
  gap: 22px;
  padding: 28px 40px 32px;
  border: 1px solid var(--ecl-line-light);
  border-radius: 8px;
  background: linear-gradient(180deg, #fff 0%, #fafbfc 100%);
}

.gx-trust__credentials {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
  justify-content: center;
}
.gx-trust__stars {
  display: inline-flex;
  gap: 2px;
  color: var(--ecl-cyan);
}
.gx-trust__text {
  display: inline-flex;
  align-items: baseline;
  gap: 8px;
  font-family: var(--ecl-font-display);
  font-size: 14px;
  letter-spacing: -0.005em;
  color: var(--ecl-fg-1, var(--ecl-ink));
}
.gx-trust__text strong {
  font-weight: 500;
}
.gx-trust__text span {
  font-weight: 400;
  color: var(--ecl-fg-3);
  font-size: 13px;
}
.gx-trust__platforms {
  display: inline-flex;
  align-items: center;
  gap: 22px;
  flex-wrap: wrap;
}
.gx-trust__platform {
  width: auto;
  display: block;
  object-fit: contain;
  filter: saturate(0.96);
}
.gx-trust__sep {
  display: inline-block;
  width: 1px;
  height: 18px;
  background: var(--ecl-line-light);
  margin: 0 2px;
}

.gx-trust__rule {
  height: 1px;
  background: var(--ecl-line-light);
  width: 100%;
}

.gx-trust__marquee-wrap {
  display: flex;
  flex-direction: column;
  gap: 14px;
  align-items: center;
}
.gx-trust__eyebrow {
  font-family: var(--ecl-font-display);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ecl-fg-4);
}
.gx-trust__marquee {
  position: relative;
  width: 100%;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 8%, #000 92%, transparent 100%);
          mask-image: linear-gradient(90deg, transparent 0, #000 8%, #000 92%, transparent 100%);
}
.gx-trust__track {
  display: flex;
  align-items: center;
  gap: 80px;
  width: max-content;
  animation: gx-trust-slide 48s linear infinite;
}
.gx-trust:hover .gx-trust__track {
  animation-play-state: paused;
}
.gx-trust__client {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 44px;
}
.gx-trust__client img {
  width: auto;
  max-height: 44px;
  object-fit: contain;
  filter: grayscale(1) brightness(0) opacity(0.55);
  transition: filter .25s ease, opacity .25s ease;
}
.gx-trust__client:hover img {
  filter: grayscale(1) brightness(0) opacity(0.9);
}
@keyframes gx-trust-slide {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ============================================================
   HOMEPAGE-SPECIFIC SECTIONS
   ============================================================ */

/* ─── Hero (extends gx-hero) ─── */
.gx-hero__inner--centered {
  grid-template-columns: 1fr;
  text-align: center;
  align-items: center;
  justify-items: center;
}
.gx-hero__inner--centered .gx-pill { align-self: center; }
.gx-hero__inner--centered .gx-hero__sub { margin: 0 auto; }

.gx-hero__checks {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  margin-top: 8px;
}
.gx-hero__check {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--ecl-font-display);
  font-size: 13px;
  color: var(--ecl-fg-3);
}
.gx-hero__check i {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 18px; height: 18px;
  border-radius: 50%;
  background: rgba(42,191,203,0.12);
  color: var(--ecl-cyan);
  font-style: normal;
  font-size: 11px;
  font-weight: 600;
}

.gx-hero em {
  font-style: normal;
  color: var(--ecl-cyan);
  position: relative;
  white-space: nowrap;
}

/* ─── Stats bar ─── */
.gx-stats {
  background: #fff;
  padding: 0 var(--ecl-side-pad) 28px;
}
.gx-stats__inner {
  display: grid;
  grid-template-columns: 1fr 1px 1fr 1px 1fr 1px 1fr;
  align-items: center;
  border: 1px solid var(--ecl-line-light);
  border-radius: 8px;
  padding: 28px 16px;
  background: linear-gradient(180deg, #fff 0%, #fafbfc 100%);
}
.gx-stats__cell {
  display: flex; flex-direction: column; align-items: center; gap: 6px;
}
.gx-stats__v {
  font-family: var(--ecl-font-display);
  font-weight: 500;
  font-size: 32px;
  line-height: 1;
  letter-spacing: -0.014em;
  color: var(--ecl-fg-1);
  font-variant-numeric: tabular-nums;
}
.gx-stats__l {
  font-family: var(--ecl-font-display);
  font-size: 12px;
  letter-spacing: 0.04em;
  color: var(--ecl-fg-3);
  text-align: center;
}
.gx-stats__sep {
  width: 1px;
  height: 36px;
  background: var(--ecl-line-light);
  align-self: center;
  justify-self: center;
}

/* ─── Problem section cards ─── */
.gx-problem-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.gx-problem-card {
  background: #fff;
  border: 1px solid var(--ecl-line-light);
  border-radius: 10px;
  padding: 30px;
  display: flex; flex-direction: column;
  gap: 14px;
  position: relative;
  overflow: hidden;
}
.gx-problem-card::before {
  content: '';
  position: absolute; top: -60px; right: -60px;
  width: 200px; height: 200px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(42,191,203,0.10), transparent 65%);
  pointer-events: none;
}
.gx-problem-card__num {
  font-family: var(--ecl-font-display);
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 0.06em;
  color: var(--ecl-cyan);
  position: relative;
}
.gx-problem-card__t {
  font-size: 22px;
  line-height: 1.15;
  color: var(--ecl-fg-1);
  margin: 4px 0 0;
  position: relative;
}
.gx-problem-card__lead {
  font-family: var(--ecl-font-display);
  font-size: 13.5px;
  color: var(--ecl-fg-3);
  margin: 4px 0 0;
}
.gx-problem-card__bullets {
  margin: 0; padding: 0;
  list-style: none;
  display: flex; flex-direction: column; gap: 8px;
}
.gx-problem-card__bullets li {
  font-family: var(--ecl-font-display);
  font-size: 14px;
  line-height: 1.5;
  color: var(--ecl-fg-2);
}
.gx-problem-card__bullets li span {
  color: var(--ecl-cyan);
  margin-right: 8px;
}
.gx-problem-card__body {
  font-family: var(--ecl-font-display);
  font-size: 14px;
  line-height: 1.6;
  color: var(--ecl-fg-3);
  margin: 0;
}
.gx-problem-card__callout {
  margin-top: auto;
  padding: 10px 14px;
  border-radius: 100px;
  background: rgba(42,191,203,0.08);
  border: 1px solid rgba(42,191,203,0.3);
  font-family: var(--ecl-font-display);
  font-weight: 500;
  font-size: 12.5px;
  line-height: 1.4;
  color: var(--ecl-cyan);
  text-align: center;
}

/* ─── Bridge banner (dark tight) ─── */
.gx-bridge {
  position: relative;
  background: var(--ecl-ink);
  color: #fff;
  padding: 56px var(--ecl-side-pad);
  overflow: hidden;
}
.gx-bridge__blobs {
  position: absolute; inset: 0;
  opacity: 0.45;
  pointer-events: none;
  filter: blur(60px);
}
.gx-bridge__blobs::before,
.gx-bridge__blobs::after {
  content: ''; position: absolute; border-radius: 50%;
}
.gx-bridge__blobs::before {
  width: 540px; height: 540px;
  left: 20%; top: -200px;
  background: radial-gradient(closest-side, rgba(212,158,255,0.5), transparent 65%);
}
.gx-bridge__blobs::after {
  width: 540px; height: 540px;
  right: 18%; top: -200px;
  background: radial-gradient(closest-side, rgba(42,191,203,0.45), transparent 65%);
}
.gx-bridge__inner {
  position: relative;
  text-align: center;
  max-width: 1080px;
  margin: 0 auto;
}
.gx-bridge__h {
  font-family: var(--ecl-font-display);
  font-weight: 500;
  font-size: 32px;
  line-height: 1.2;
  letter-spacing: -0.012em;
  color: #fff;
  margin: 0;
}

/* ─── 5-Step System ─── */
.gx-sys5 { display: flex; flex-direction: column; gap: 0; }
.gx-sys5__row {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 48px;
  padding: 32px 0;
  border-bottom: 1px solid var(--ecl-line-light);
}
.gx-sys5__row:first-child { padding-top: 0; }
.gx-sys5__row:last-child { border-bottom: none; padding-bottom: 0; }
.gx-sys5__num {
  position: relative;
}
.gx-sys5__num span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 80px; height: 80px;
  border-radius: 50%;
  background: rgba(42,191,203,0.10);
  color: var(--ecl-cyan);
  font-family: var(--ecl-font-display);
  font-weight: 500;
  font-size: 28px;
  letter-spacing: -0.01em;
}
.gx-sys5__content { display: flex; flex-direction: column; gap: 12px; }
.gx-sys5__t {
  font-size: 26px;
  letter-spacing: -0.008em;
}
.gx-sys5__body {
  font-size: 15px;
  line-height: 1.6;
  max-width: 760px;
}
.gx-sys5__checks {
  display: flex;
  flex-wrap: wrap;
  gap: 16px 28px;
  margin-top: 4px;
}
.gx-sys5__check {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--ecl-font-display);
  font-size: 13.5px;
  color: var(--ecl-fg-2);
}
.gx-sys5__check i {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 18px; height: 18px;
  border-radius: 50%;
  background: rgba(42,191,203,0.15);
  color: var(--ecl-cyan);
  font-style: normal;
  font-size: 11px;
}

/* ─── Growth Formula 6 ─── */
.gx-formula6 {
  position: relative; z-index: 1;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 16px;
}
.gx-formula6__node {
  position: relative;
  padding: 24px 20px;
  background: linear-gradient(180deg, rgba(255,255,255,0.04), rgba(255,255,255,0.01));
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: 10px;
  display: flex; flex-direction: column;
  gap: 10px;
}
.gx-formula6__num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px; height: 36px;
  border-radius: 50%;
  background: rgba(92,225,230,0.14);
  border: 1px solid rgba(92,225,230,0.25);
  color: var(--ecl-cyan-bright);
  font-family: var(--ecl-font-display);
  font-weight: 500;
  font-size: 12px;
  letter-spacing: 0.04em;
}
.gx-formula6__t {
  font-family: var(--ecl-font-display);
  font-weight: 500;
  font-size: 18px;
  color: #fff;
  margin: 0;
  letter-spacing: -0.006em;
}
.gx-formula6__d {
  font-family: var(--ecl-font-display);
  font-size: 13px;
  line-height: 1.5;
  color: rgba(255,255,255,0.62);
  margin: 0;
}
.gx-formula6__arrow {
  position: absolute;
  right: -14px; top: 36px;
  width: 14px; height: 14px;
  color: rgba(92,225,230,0.55);
  z-index: 2;
}

/* ─── Anatomy tabs + panel ─── */
.gx-anatomy { display: grid; grid-template-columns: 280px 1fr; gap: 32px; }
.gx-anatomy__tabs {
  display: flex; flex-direction: column;
  border: 1px solid var(--ecl-line-light);
  border-radius: 8px;
  overflow: hidden;
  background: #fff;
}
.gx-anatomy__tab {
  display: flex; flex-direction: column; gap: 4px;
  padding: 18px 20px;
  background: #fff;
  border: none;
  border-bottom: 1px solid var(--ecl-line-light);
  text-align: left;
  cursor: pointer;
  transition: background .15s ease;
  font-family: inherit;
}
.gx-anatomy__tab:last-child { border-bottom: none; }
.gx-anatomy__tab:hover { background: var(--ecl-paper-soft); }
.gx-anatomy__tab.is-active {
  background: var(--ecl-ink);
  color: #fff;
}
.gx-anatomy__tab-page {
  font-family: var(--ecl-font-display);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ecl-fg-4);
}
.gx-anatomy__tab.is-active .gx-anatomy__tab-page { color: var(--ecl-cyan-bright); }
.gx-anatomy__tab-h {
  font-family: var(--ecl-font-display);
  font-weight: 500;
  font-size: 12px;
  color: var(--ecl-cyan);
}
.gx-anatomy__tab.is-active .gx-anatomy__tab-h { color: var(--ecl-cyan-bright); }
.gx-anatomy__tab-name {
  font-family: var(--ecl-font-display);
  font-weight: 500;
  font-size: 15px;
  color: var(--ecl-fg-1);
  letter-spacing: -0.006em;
}
.gx-anatomy__tab.is-active .gx-anatomy__tab-name { color: #fff; }

.gx-anatomy__panel {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  border: 1px solid var(--ecl-line-light);
  border-radius: 8px;
  background: #fff;
  padding: 36px;
  animation: gx-anatomy-fade .35s ease;
}
@keyframes gx-anatomy-fade {
  from { opacity: 0; transform: translateY(8px); }
  to   { opacity: 1; transform: none; }
}
.gx-anatomy__copy { display: flex; flex-direction: column; gap: 16px; }
.gx-anatomy__title { font-size: 26px; letter-spacing: -0.008em; }
.gx-anatomy__row { display: flex; gap: 12px; }
.gx-anatomy__bar {
  flex: 0 0 3px;
  width: 3px;
  border-radius: 2px;
}
.gx-anatomy__row--issue .gx-anatomy__bar { background: var(--ecl-danger); }
.gx-anatomy__row--fix   .gx-anatomy__bar { background: var(--ecl-cyan); }
.gx-anatomy__label {
  display: block;
  font-family: var(--ecl-font-display);
  font-weight: 500;
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ecl-fg-4);
  margin-bottom: 4px;
}
.gx-anatomy__row p {
  font-family: var(--ecl-font-display);
  font-size: 15px;
  line-height: 1.55;
  color: var(--ecl-fg-3);
  margin: 0;
}
.gx-anatomy__law {
  display: inline-flex;
  align-self: flex-start;
  align-items: center;
  height: 28px;
  padding: 0 12px;
  border-radius: 6px;
  background: rgb(255,225,225);
  color: var(--ecl-danger);
  font-family: var(--ecl-font-display);
  font-weight: 500;
  font-size: 13px;
}
.gx-anatomy__results {
  margin-top: 6px;
  display: flex; flex-direction: column; gap: 10px;
}
.gx-anatomy__result {
  font-family: var(--ecl-font-display);
  font-weight: 500;
  font-size: 16px;
  color: var(--ecl-cyan);
  letter-spacing: -0.006em;
}
.gx-anatomy__visual {
  border-radius: 8px;
  overflow: hidden;
  background: var(--ecl-mist);
  min-height: 320px;
  display: flex; align-items: center; justify-content: center;
}
.gx-anatomy__visual-placeholder {
  font-family: var(--ecl-font-display);
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ecl-fg-4);
}

/* ─── Services (3 pricing tiers, dark) ─── */
.gx-services {
  position: relative; z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: stretch;
}
.gx-service {
  position: relative;
  display: flex; flex-direction: column;
  gap: 22px;
  padding: 32px 30px 30px;
  border-radius: 16px;
  background: linear-gradient(180deg, rgba(255,255,255,0.04), rgba(255,255,255,0.01));
  border: 1px solid rgba(255,255,255,0.10);
  backdrop-filter: blur(20px);
}
.gx-service--popular {
  background: var(--ecl-cyan);
  border-color: var(--ecl-cyan-bright);
  color: var(--ecl-ink);
  transform: translateY(-12px);
  box-shadow: 0 24px 60px -20px rgba(42,191,203,0.50);
}
.gx-service__badge {
  position: absolute;
  top: 16px; right: 16px;
  padding: 5px 10px;
  border-radius: 6px;
  background: var(--ecl-ink);
  color: #fff;
  font-family: var(--ecl-font-display);
  font-weight: 500;
  font-size: 11px;
  letter-spacing: 0.10em;
  text-transform: uppercase;
}
.gx-service__head { display: flex; flex-direction: column; gap: 6px; }
.gx-service__eyebrow {
  font-family: var(--ecl-font-display);
  font-weight: 500;
  font-size: 12px;
  color: var(--ecl-cyan-bright);
}
.gx-service--popular .gx-service__eyebrow { color: var(--ecl-ink); opacity: 0.7; }
.gx-service__title {
  font-family: var(--ecl-font-display);
  font-weight: 500;
  font-size: 22px;
  line-height: 1.2;
  letter-spacing: -0.008em;
  color: #fff;
  margin: 0;
}
.gx-service--popular .gx-service__title { color: var(--ecl-ink); }
.gx-service__price {
  font-family: var(--ecl-font-display);
  font-weight: 500;
  font-size: 32px;
  line-height: 1;
  letter-spacing: -0.014em;
  color: #fff;
}
.gx-service--popular .gx-service__price { color: var(--ecl-ink); }
.gx-service__desc {
  font-family: var(--ecl-font-display);
  font-size: 14px;
  line-height: 1.6;
  color: rgba(255,255,255,0.7);
  margin: 0;
}
.gx-service--popular .gx-service__desc { color: rgba(13,17,23,0.75); }
.gx-service__rule {
  height: 1px;
  background: rgba(255,255,255,0.10);
}
.gx-service--popular .gx-service__rule { background: rgba(13,17,23,0.10); }
.gx-service__bullets {
  list-style: none; margin: 0; padding: 0;
  display: flex; flex-direction: column; gap: 12px;
}
.gx-service__bullets li {
  display: flex; align-items: flex-start; gap: 10px;
  font-family: var(--ecl-font-display);
  font-size: 14px;
  line-height: 1.5;
  color: rgba(255,255,255,0.85);
}
.gx-service--popular .gx-service__bullets li { color: var(--ecl-ink); }
.gx-service__bullets i {
  display: inline-flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  width: 18px; height: 18px;
  border-radius: 50%;
  background: rgba(92,225,230,0.18);
  color: var(--ecl-cyan-bright);
  font-style: normal;
  font-size: 11px;
  margin-top: 1px;
}
.gx-service--popular .gx-service__bullets i {
  background: rgba(13,17,23,0.12);
  color: var(--ecl-ink);
}
.gx-service__timing {
  font-family: var(--ecl-font-display);
  font-size: 14px;
  color: rgba(255,255,255,0.7);
  margin-top: auto;
}
.gx-service--popular .gx-service__timing { color: var(--ecl-ink); }
.gx-service__gift {
  font-family: var(--ecl-font-display);
  font-size: 11px;
  color: rgba(255,255,255,0.7);
}
.gx-service--popular .gx-service__gift { color: var(--ecl-ink); }
.gx-service__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 50px;
  padding: 0 22px;
  border-radius: 8px;
  font-family: var(--ecl-font-display);
  font-weight: 500;
  font-size: 14px;
  text-decoration: none;
  transition: filter .15s ease, background .15s ease;
}
.gx-service__cta--outline {
  background: transparent;
  color: #fff;
  border: 1px solid rgba(255,255,255,0.5);
}
.gx-service__cta--outline:hover { background: rgba(255,255,255,0.06); }
.gx-service__cta--filled {
  background: var(--ecl-ink);
  color: #fff;
}
.gx-service__cta--filled:hover { filter: brightness(1.1); }

/* ─── Results grid (homepage case studies) ─── */
.gx-results {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  align-items: stretch;
}
.gx-result {
  display: flex; flex-direction: column;
  gap: 16px;
  padding: 30px;
  background: #fff;
  border: 1px solid var(--ecl-line-light);
  border-radius: 8px;
  overflow: hidden;
}
.gx-result__head { display: flex; flex-direction: column; gap: 12px; }
.gx-result__brand {
  font-size: 22px;
  margin: 0;
  letter-spacing: -0.006em;
}
.gx-result__stats {
  display: flex; gap: 32px;
  margin-bottom: 4px;
}
.gx-result__stat .v {
  font-family: var(--ecl-font-display);
  font-weight: 500;
  font-size: 26px;
  color: var(--ecl-cyan);
  letter-spacing: -0.014em;
  line-height: 1;
  font-variant-numeric: tabular-nums;
}
.gx-result__stat .l {
  font-family: var(--ecl-font-display);
  font-size: 12px;
  color: var(--ecl-fg-3);
  margin-top: 4px;
}
.gx-result__media {
  flex: 1;
  min-height: 120px;
  border-radius: 8px;
  background: var(--ecl-mist);
  display: flex; align-items: center; justify-content: center;
}
.gx-result__media .placeholder {
  font-family: var(--ecl-font-display);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ecl-fg-4);
}

/* ─── Is This Right (simpler 2-col homepage version) ─── */
.gx-fit-home {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border: 1px solid var(--ecl-line-light);
  border-radius: 8px;
  overflow: hidden;
  background: #fff;
}
.gx-fit-home__col {
  padding: 32px;
  display: flex; flex-direction: column;
  gap: 0;
}
.gx-fit-home__col--good { background: linear-gradient(180deg, rgba(42,191,203,0.04), #fff); }
.gx-fit-home__col--bad {
  background: linear-gradient(180deg, rgba(255,107,107,0.03), #fff);
  border-left: 1px solid var(--ecl-line-light);
}
.gx-fit-home__head {
  display: inline-flex;
  align-self: flex-start;
  align-items: center;
  gap: 10px;
  padding: 10px 18px;
  border-radius: 100px;
  background: rgba(42,191,203,0.10);
  color: var(--ecl-cyan);
  font-family: var(--ecl-font-display);
  font-weight: 500;
  font-size: 13px;
  letter-spacing: 0.04em;
  margin-bottom: 14px;
}
.gx-fit-home__head--bad {
  background: rgba(255,107,107,0.10);
  color: rgb(220, 70, 70);
}
.gx-fit-home__head .ico {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 20px; height: 20px;
  border-radius: 50%;
  background: rgba(42,191,203,0.18);
  font-size: 12px;
  font-weight: 600;
}
.gx-fit-home__head--bad .ico { background: rgba(255,107,107,0.18); }
.gx-fit-home__row {
  display: flex; flex-direction: column; gap: 6px;
  padding: 18px 0;
  border-bottom: 1px solid rgba(0,0,0,0.06);
}
.gx-fit-home__row:last-child { border-bottom: none; padding-bottom: 0; }
.gx-fit-home__row:first-of-type { padding-top: 0; }
.gx-fit-home__row h5 {
  font-family: var(--ecl-font-display);
  font-weight: 500;
  font-size: 17px;
  letter-spacing: -0.006em;
  color: var(--ecl-fg-1);
  margin: 0;
}
.gx-fit-home__row p {
  font-family: var(--ecl-font-display);
  font-size: 14px;
  line-height: 1.55;
  color: var(--ecl-fg-3);
  margin: 0;
}

/* ─── Founders (Meet Laura & Conal) ─── */
.gx-founders {
  position: relative;
  display: grid;
  grid-template-columns: 5fr 7fr;
  gap: 48px;
  align-items: stretch;
  padding: 32px;
  border-radius: 12px;
  background: #fff;
  border: 1px solid var(--ecl-line-light);
}
.gx-founders__glow {
  position: absolute;
  inset: -100px auto auto -200px;
  width: 800px; height: 800px;
  background: radial-gradient(circle, rgba(92,225,230,0.10), transparent 65%);
  pointer-events: none;
}
.gx-founders__media {
  border-radius: 8px;
  overflow: hidden;
  background: var(--ecl-mist);
  min-height: 380px;
  display: flex; align-items: center; justify-content: center;
}
.gx-founders__media-inner {
  font-family: var(--ecl-font-display);
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ecl-fg-4);
  text-align: center;
}
.gx-founders__copy {
  display: flex; flex-direction: column;
  gap: 18px;
  padding: 10px 12px;
}
.gx-founders__subtitle {
  font-size: 24px;
  letter-spacing: -0.008em;
  color: var(--ecl-fg-1);
  margin: 0 0 4px;
}
.gx-founders__p {
  font-size: 15px;
  line-height: 1.65;
}
.gx-founders__checks {
  margin-top: 8px;
  display: flex; gap: 16px;
  flex-wrap: wrap;
}
.gx-founders__check {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  border-radius: 100px;
  background: rgba(42,191,203,0.08);
  border: 1px solid rgba(42,191,203,0.25);
  font-family: var(--ecl-font-display);
  font-size: 13px;
  color: var(--ecl-fg-1);
}
.gx-founders__check i {
  color: var(--ecl-cyan);
  font-style: normal;
  font-weight: 600;
}

/* ─── Final CTA bullets (homepage) ─── */
.gx-final__bullets {
  list-style: none; margin: 0; padding: 0;
  display: flex; flex-direction: column;
  gap: 10px;
}
.gx-final__bullets li {
  display: flex; align-items: flex-start; gap: 10px;
  font-family: var(--ecl-font-display);
  font-size: 15px;
  line-height: 1.5;
  color: rgba(255,255,255,0.85);
}
.gx-final__bullets i {
  display: inline-flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  width: 20px; height: 20px;
  border-radius: 50%;
  background: rgba(92,225,230,0.18);
  color: var(--ecl-cyan-bright);
  font-style: normal;
  font-size: 11px;
  margin-top: 1px;
}

/* Nav logo wrapper (a > img) */
.gx-nav__home { display: inline-flex; line-height: 0; }
.gx-footer__logo { height: 26px; margin-bottom: 12px; }

/* ============================================================
   RESPONSIVE
   ============================================================ */

/* Tablet (≤ 1280px) — soften paddings, drop 3-col grids to 2 or 1 */
@media (max-width: 1280px) {
  :root { --ecl-side-pad: 64px; }
  .gx-pad { padding-top: 80px; padding-bottom: 80px; }
  .gx-hero__inner { grid-template-columns: 1fr; }
  .gx-hero__visual { height: 360px; margin-top: 40px; }
  .gx-formula { grid-template-columns: 1fr; gap: 48px; }
  .gx-final__inner { grid-template-columns: 1fr; gap: 32px; }
  .gx-cost { padding: 48px 36px; grid-template-columns: 1fr; gap: 32px; }
  .gx-h1 { font-size: 50px; }
  .gx-h2 { font-size: 36px; }
  .gx-final h2 { font-size: 40px; }
  .gx-cases, .gx-why, .gx-problem-cards, .gx-results { grid-template-columns: 1fr 1fr; }
  .gx-comparison, .gx-risk { grid-template-columns: 1fr; }
  .gx-fit2, .gx-fit-home { grid-template-columns: 1fr; }
  .gx-fit-home__col--bad { border-left: none; border-top: 1px solid var(--ecl-line-light); }
  .gx-footer__top { grid-template-columns: 1fr 1fr; }
  .gx-footer__clutch-badge img,
  .gx-footer__clutch-badge .gx-responsive-img { max-height: 40px; }
  .gx-services { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }
  .gx-service--popular { transform: none; }
  .gx-formula6 { grid-template-columns: repeat(3, 1fr); }
  .gx-formula6__node:nth-child(3n) .gx-formula6__arrow { display: none; }
  .gx-anatomy { grid-template-columns: 1fr; }
  .gx-anatomy__tabs { flex-direction: row; overflow-x: auto; }
  .gx-anatomy__tab { border-bottom: none; border-right: 1px solid var(--ecl-line-light); min-width: 220px; }
  .gx-anatomy__panel { grid-template-columns: 1fr; }
  .gx-founders { grid-template-columns: 1fr; gap: 32px; }
  .gx-founders__media { min-height: 280px; }
}

/* Mobile (≤ 768px) — single column, tighter scales */
@media (max-width: 768px) {
  :root { --ecl-side-pad: 20px; }
  /* Allow pills/badges to wrap on mobile so they can't push container width */
  .gx-pill, .gx-badge-num { white-space: normal; }
  .gx-pill__desktop { display: none; }
  .gx-pill__mobile { display: inline; }
  .gx-hero__gauge { max-width: 100%; }
  .gx-pad,
  .gx-nav, .gx-hero, .gx-final, .gx-footer, .gx-trust, .gx-stats, .gx-bridge {
    padding-left: 20px; padding-right: 20px;
  }
  .gx-pad { padding-top: 56px; padding-bottom: 56px; }
  .gx-hero { padding-top: 32px; padding-bottom: 56px; }

  /* Topbar wraps small */
  .gx-topbar { height: auto; padding: 8px 12px; font-size: 11px; flex-wrap: wrap; gap: 8px; }
  .gx-topbar .sep { display: none; }

  /* Nav: stack logo + pill, drop nav links to overflow into CTA-only */
  .gx-nav {
    height: auto; padding-top: 12px; padding-bottom: 12px;
    flex-direction: column; gap: 12px; align-items: stretch;
  }
  .gx-nav__pill { padding: 6px; height: auto; flex-wrap: wrap; justify-content: center; }
  .gx-nav__link { padding: 8px 10px; font-size: 13px; }
  .gx-nav__divider { display: none; }
  .gx-nav__cta { width: 100%; justify-content: center; }

  /* Type */
  .gx-h1 { font-size: 38px; line-height: 1.06; }
  .gx-h2 { font-size: 28px; line-height: 1.12; }
  .gx-h3 { font-size: 22px; }
  .gx-bridge__h { font-size: 22px; }
  .gx-final h2 { font-size: 30px; }

  /* Section heads */
  .gx-section-head { margin-bottom: 36px; }

  /* Hero */
  .gx-hero__visual { height: 280px; margin-top: 24px; }
  .gx-hero__gauge { padding: 18px; }
  .gx-hero__gauge .val { font-size: 28px; }
  .gx-hero__ticker { left: 0; bottom: -20px; padding: 12px 0; }
  .gx-hero__ticker > div { padding: 4px 14px; }
  .gx-hero__ticker .v { font-size: 18px; }
  .gx-hero__checks { gap: 10px; }
  .gx-hero__check { font-size: 12px; }

  /* Trust band — wrap credentials, smaller marquee */
  .gx-trust { padding-bottom: 20px; }
  .gx-trust__inner { padding: 22px 24px; }
  .gx-trust__credentials { flex-direction: column; align-items: center; text-align: center; gap: 12px; }
  .gx-trust__text { justify-content: center; align-items: center; flex-wrap: wrap; }
  .gx-trust__platforms { justify-content: center; gap: 14px; }
  .gx-trust__track { gap: 48px; }
  .gx-trust__client { height: 32px; }
  .gx-trust__client img { max-height: 32px; }

  /* Stats bar */
  .gx-stats__inner { grid-template-columns: 1fr 1fr; padding: 24px 12px; gap: 20px 0; }
  .gx-stats__sep { display: none; }
  .gx-stats__v { font-size: 24px; }

  /* Cards / grids — all stack */
  .gx-problem-cards,
  .gx-cases, .gx-why,
  .gx-comparison, .gx-risk,
  .gx-formula6,
  .gx-services, .gx-results { grid-template-columns: 1fr; gap: 16px; }
  .gx-problem-card__callout { text-align: left; }

  /* Formula 6 — kill arrows on stacked mobile */
  .gx-formula6__arrow { display: none; }

  /* 5-step system: stack number above content */
  .gx-sys5__row { grid-template-columns: 1fr; gap: 16px; padding: 24px 0; }
  .gx-sys5__num span { width: 56px; height: 56px; font-size: 20px; }

  /* Anatomy tabs scrollable horizontally */
  .gx-anatomy__tab { min-width: 180px; padding: 14px 16px; }
  .gx-anatomy__tab-name { display: none; }
  .gx-anatomy__panel { padding: 24px; }
  .gx-anatomy__visual { min-height: auto; }

  /* Service card popular doesn't lift on mobile, badge flows statically */
  .gx-service__badge { position: static; align-self: flex-start; margin-bottom: -6px; }

  /* Final CTA */
  .gx-final { padding-top: 64px; padding-bottom: 64px; }
  .gx-final__inner { gap: 24px; }
  .gx-final__ctas { flex-direction: column; align-items: stretch; }
  .gx-final__ctas .gx-btn { width: 100%; }

  /* Footer stacks */
  .gx-footer { padding-top: 40px; padding-bottom: 24px; }
  .gx-footer__top { grid-template-columns: 1fr; gap: 24px; padding-bottom: 32px; }
  .gx-footer__nav { justify-content: flex-start; gap: 16px 22px; }
  .gx-footer__clutch { padding: 16px 0; gap: 14px; justify-content: center; }
  .gx-footer__clutch-badges { gap: 10px; }
  .gx-footer__clutch-badge img,
  .gx-footer__clutch-badge .gx-responsive-img { max-height: 40px; }
  .gx-footer__bottom { flex-direction: column; gap: 8px; text-align: center; }

  /* Founders stack */
  .gx-founders { padding: 16px; gap: 20px; }
  .gx-founders__media { min-height: 220px; }
  .gx-founders__subtitle { font-size: 20px; }

  /* Service card popular doesn't lift on mobile */
  .gx-service--popular { transform: none; box-shadow: none; }

  /* Compare/Fit/Risk cards padding */
  .gx-card, .gx-risk__card, .gx-problem-card, .gx-fit-home__col { padding: 24px; }
  .gx-result { padding: 22px; }
}

