/* GraMedica website framework — shell styles
 * Wireframe-fidelity layout only. Visual refinement per section comes later.
 */

/* ========== Choice cards — bullet citations + strategic frame ========== */

/* ========== Type II moat band — distributor signal above the fold ========== */
.gm-moat {
  max-width: 960px;
  margin: 40px auto 24px;
  padding: 24px 32px;
  border: 1px solid rgba(39, 177, 250, 0.28);
  border-left: 3px solid var(--gm-digital-blue, #27B1FA);
  background: rgba(39, 177, 250, 0.05);
  border-radius: 2px;
}
.gm-moat-eb {
  display: block;
  font: 600 11px/1 var(--gm-font-body);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gm-digital-blue, #27B1FA);
  margin-bottom: 10px;
}
.gm-moat-copy {
  margin: 0;
  font: 400 18px/1.5 var(--gm-font-body);
  color: rgba(255, 255, 255, 0.86);
  text-wrap: pretty;
}
.gm-moat-copy strong {
  color: #fff;
  font-weight: 600;
}
@media (max-width: 720px) {
  .gm-moat { padding: 18px 20px; }
  .gm-moat-copy { font-size: 16px; }
}

.gm-choice-frame {
  max-width: 960px;
  margin: 8px auto 28px;
  padding: 20px 28px;
  border-left: 2px solid var(--gm-digital-blue, #27B1FA);
  font: 400 17px/1.55 var(--gm-font-body);
  color: rgba(255, 255, 255, 0.82);
  letter-spacing: 0.005em;
  text-wrap: pretty;
}
.gm-choice-frame strong {
  color: #fff;
  font-weight: 600;
}
.gm-choice-attrs .txt {
  display: block;
  color: rgba(255, 255, 255, 0.88);
}
.gm-choice-attrs .txt strong {
  color: #fff;
  font-weight: 600;
}
.gm-choice-attrs .txt cite {
  display: block;
  margin-top: 4px;
  font: 500 11px/1.35 var(--gm-font-body);
  font-style: normal;
  letter-spacing: 0.01em;
  color: rgba(255, 255, 255, 0.48);
}
.gm-choice-card.is-primary .gm-choice-attrs .txt cite {
  color: rgba(255, 255, 255, 0.55);
}

@media (max-width: 900px) {
  .gm-choice-frame {
    font-size: 15px;
    padding: 16px 20px;
    margin-bottom: 20px;
  }
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  font-family: var(--gm-font-body);
  color: var(--gm-navy);
  background: var(--gm-white);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
a { color: inherit; text-decoration: none; }
button { font: inherit; }

.gm-container { max-width: var(--gm-container); margin: 0 auto; padding: 0 32px; }
.gm-container-narrow { max-width: var(--gm-container-narrow); margin: 0 auto; padding: 0 32px; }

/* ========== Credibility strip (persistent, above nav) ========== */
.gm-cred {
  background: var(--gm-navy);
  color: rgba(255,255,255,0.86);
  font-size: 12px;
  letter-spacing: 0.02em;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.gm-cred-inner {
  max-width: var(--gm-container);
  margin: 0 auto;
  padding: 8px 32px;
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: center;
}
.gm-cred-item {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  white-space: nowrap;
}
.gm-cred-item strong {
  color: var(--gm-white);
  font-weight: 600;
}
.gm-cred-dot {
  width: 4px; height: 4px; border-radius: 50%;
  background: rgba(255,255,255,0.28);
  display: inline-block;
}
.gm-cred-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-left: auto;
  padding: 4px 10px 4px 12px;
  font-weight: 600;
  color: var(--gm-digital-blue, #27B1FA);
  border-left: 1px solid rgba(255,255,255,0.14);
  white-space: nowrap;
  transition: color var(--gm-dur-base) var(--gm-ease-standard);
}
.gm-cred-link:hover { color: #fff; }
.gm-cred-link svg {
  width: 12px; height: 12px;
  fill: none; stroke: currentColor; stroke-width: 2;
  stroke-linecap: round; stroke-linejoin: round;
}
@media (max-width: 760px) {
  .gm-cred-inner { gap: 12px; justify-content: flex-start; padding: 8px 20px; }
  .gm-cred-link { margin-left: 0; border-left: 0; padding-left: 0; }
}

/* ========== Nav ========== */
.gm-nav {
  position: sticky; top: 0; z-index: 50;
  background: var(--gm-white);
  border-bottom: 1px solid var(--gm-border);
  height: 96px;
}
.gm-nav-inner {
  max-width: none;
  margin: 0;
  padding: 0 40px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}
.gm-nav-logo {
  display: flex;
  align-items: center;
  height: 96px;
}
.gm-nav-logo img { height: 52px; width: auto; display: block; }

.gm-nav-links {
  display: flex;
  align-items: center;
  gap: 6px;
  list-style: none;
  margin: 0; padding: 0;
}
.gm-nav-link {
  padding: 12px 18px;
  font: 500 17px/1 var(--gm-font-body);
  color: var(--gm-navy);
  border-radius: var(--gm-radius-md);
  cursor: pointer;
  transition: background var(--gm-dur-base) var(--gm-ease-standard);
  background: transparent; border: 0;
}
.gm-nav-link:hover { background: var(--gm-light-section); }
.gm-nav-link.is-active { color: var(--gm-primary-blue); }

.gm-nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 24px;
  font: 600 16px/1 var(--gm-font-body);
  color: var(--gm-white);
  background: var(--gm-primary-blue);
  border: 0;
  border-radius: var(--gm-radius-md);
  cursor: pointer;
  transition: background var(--gm-dur-base) var(--gm-ease-standard);
}
.gm-nav-cta:hover { background: #005FA8; }
.gm-nav-cta svg { width: 18px; height: 18px; stroke: currentColor; fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }

/* ========== Page sections ========== */
.gm-section {
  padding: var(--gm-section-y) 0;
  border-bottom: 1px solid var(--gm-border);
}
.gm-section:last-of-type { border-bottom: 0; }
.gm-section.alt { background: var(--gm-light-section); }
.gm-section.dark {
  background: var(--gm-navy);
  color: var(--gm-white);
  border-bottom: 0;
}
.gm-section.dark .gm-section-label { color: var(--gm-digital-blue); }

.gm-section-label {
  display: inline-block;
  font: 600 12px/1 var(--gm-font-body);
  letter-spacing: var(--gm-tracking-eyebrow);
  text-transform: uppercase;
  color: var(--gm-primary-blue);
  margin-bottom: 16px;
}
.gm-section-title {
  font-family: var(--gm-font-heading);
  font-weight: 700;
  font-size: clamp(32px, 4vw, 48px);
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin: 0 0 16px;
  text-wrap: balance;
}
.gm-section-lead {
  font: 400 18px/1.6 var(--gm-font-body);
  color: var(--gm-text-muted);
  max-width: 640px;
  margin: 0 0 48px;
  text-wrap: pretty;
}
.gm-section.dark .gm-section-lead { color: rgba(255,255,255,0.78); }

/* ========== Wireframe placeholders ========== */
.gm-wf {
  background: repeating-linear-gradient(
    45deg,
    rgba(0,113,202,0.03),
    rgba(0,113,202,0.03) 10px,
    rgba(0,113,202,0.06) 10px,
    rgba(0,113,202,0.06) 20px
  );
  border: 1px dashed var(--gm-border-strong);
  border-radius: var(--gm-radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 4px;
  color: var(--gm-text-subtle);
  font: 500 13px/1.4 var(--gm-font-body);
  text-align: center;
  padding: 24px;
  min-height: 120px;
}
.gm-wf-title {
  font: 600 14px/1.2 var(--gm-font-body);
  color: var(--gm-navy);
  letter-spacing: 0.02em;
}
.gm-wf-note {
  font: 400 12px/1.4 var(--gm-font-body);
  color: var(--gm-text-subtle);
  max-width: 360px;
  text-wrap: pretty;
}

/* ============================================================
 * HI-FI: Hero
 * ============================================================ */

.gm-hero {
  position: relative;
  overflow: hidden;
  padding: 96px 0 112px;
}
.gm-hero-inner { position: relative; z-index: 1; }

.gm-hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font: 600 12px/1 var(--gm-font-body);
  letter-spacing: var(--gm-tracking-eyebrow);
  text-transform: uppercase;
  color: var(--gm-digital-blue);
  margin-bottom: 24px;
}
.gm-hero-eyebrow::before {
  content: '';
  width: 24px; height: 1px;
  background: var(--gm-digital-blue);
}

.gm-hero-headline {
  font-family: var(--gm-font-heading);
  font-weight: 700;
  font-size: clamp(40px, 5.6vw, 68px);
  line-height: 1.05;
  letter-spacing: -0.025em;
  color: #fff;
  max-width: 1000px;
  margin: 0 0 28px;
  text-wrap: balance;
}
.gm-hero-headline em {
  font-style: normal;
  color: var(--gm-digital-blue);
  font-weight: 700;
}
.gm-hero-lead {
  font: 400 19px/1.6 var(--gm-font-body);
  color: rgba(255,255,255,0.78);
  max-width: 680px;
  margin: 0 0 44px;
  text-wrap: pretty;
}
.gm-hero-lead strong { color: #fff; font-weight: 600; }

/* --- CTA cluster --- */
.gm-cta-row { display: flex; flex-wrap: wrap; gap: 12px; align-items: center; }
.gm-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 22px;
  font: 600 15px/1 var(--gm-font-body);
  border-radius: var(--gm-radius-md);
  border: 1px solid transparent;
  cursor: pointer;
  white-space: nowrap;
  transition: background var(--gm-dur-base) var(--gm-ease-standard),
              border-color var(--gm-dur-base) var(--gm-ease-standard),
              transform var(--gm-dur-fast) var(--gm-ease-standard);
}
.gm-btn svg { width: 16px; height: 16px; stroke: currentColor; fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }

.gm-btn-primary {
  background: var(--gm-primary-blue);
  color: #fff;
}
.gm-btn-primary:hover { background: #005FA8; }

.gm-btn-primary.on-dark {
  background: var(--gm-digital-blue);
  color: var(--gm-navy);
}
.gm-btn-primary.on-dark:hover { background: #4EC0FB; }

.gm-btn-ghost {
  background: transparent;
  color: var(--gm-navy);
  border-color: var(--gm-border-strong);
}
.gm-btn-ghost:hover { background: var(--gm-light-section); }

.gm-btn-ghost.on-dark {
  color: #fff;
  border-color: rgba(255,255,255,0.24);
}
.gm-btn-ghost.on-dark:hover { background: rgba(255,255,255,0.06); border-color: rgba(255,255,255,0.4); }

.gm-btn-text {
  padding: 14px 4px;
  background: transparent;
  color: var(--gm-digital-blue);
  border: 0;
  font: 600 15px/1 var(--gm-font-body);
  cursor: pointer;
  display: inline-flex; align-items: center; gap: 8px;
}
.gm-btn-text svg { width: 14px; height: 14px; stroke: currentColor; fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; transition: transform var(--gm-dur-base) var(--gm-ease-standard); }
.gm-btn-text:hover svg { transform: translateX(3px); }

/* --- Hero split: copy left, proof right --- */
.gm-hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 64px;
  align-items: start;
}
@media (max-width: 960px) {
  .gm-hero-grid { grid-template-columns: 1fr; gap: 40px; }
}

/* --- 1-in-4 silhouette grid --- */
.gm-onein4 {
  margin-top: 56px;
  padding: 28px 32px;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--gm-radius-xl);
  background: rgba(255,255,255,0.03);
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 32px;
  align-items: center;
}
@media (max-width: 720px) { .gm-onein4 { grid-template-columns: 1fr; gap: 20px; } }

.gm-onein4-figures {
  display: grid;
  grid-template-columns: repeat(8, 14px);
  gap: 8px;
}
.gm-onein4-fig {
  width: 14px; height: 28px;
  background: rgba(255,255,255,0.22);
  clip-path: polygon(50% 0, 70% 18%, 70% 42%, 100% 70%, 85% 100%, 15% 100%, 0 70%, 30% 42%, 30% 18%);
}
.gm-onein4-fig.is-hit { background: var(--gm-digital-blue); }

.gm-onein4-copy {
  font: 400 14px/1.55 var(--gm-font-body);
  color: rgba(255,255,255,0.78);
}
.gm-onein4-copy strong {
  display: block;
  color: #fff;
  font-weight: 600;
  font-size: 16px;
  margin-bottom: 4px;
}
.gm-onein4-copy .gm-footnote {
  display: block;
  margin-top: 6px;
  color: rgba(255,255,255,0.5);
  font-size: 12px;
}

/* --- Proof photo card (right side of hero) --- */
.gm-proof-card {
  position: relative;
  border-radius: var(--gm-radius-xl);
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.12);
  background: #000;
  aspect-ratio: 4 / 5;
}
.gm-proof-card img,
.gm-proof-stage {
  width: 100%; height: 100%; display: block;
}
.gm-proof-stage {
  position: absolute; inset: 0;
}
.gm-proof-img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 38%;
  opacity: 0;
  transition: opacity 900ms ease-in-out;
  will-change: opacity;
}
.gm-proof-img.is-active { opacity: 1; }

.gm-proof-dots {
  position: absolute;
  top: 16px; right: 16px;
  display: flex;
  gap: 6px;
  z-index: 2;
}
.gm-proof-dots span {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: rgba(255,255,255,0.45);
  transition: background 300ms ease, width 300ms ease;
}
.gm-proof-dots span.is-active {
  background: #fff;
  width: 18px;
  border-radius: 3px;
}
.gm-proof-card-chrome {
  position: absolute;
  inset: auto 16px 16px 16px;
  background: rgba(13,27,42,0.78);
  backdrop-filter: blur(6px);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--gm-radius-lg);
  padding: 14px 16px;
  color: #fff;
}
.gm-proof-card-chrome .eb {
  font: 600 10px/1 var(--gm-font-body);
  letter-spacing: var(--gm-tracking-eyebrow);
  text-transform: uppercase;
  color: var(--gm-digital-blue);
  margin-bottom: 6px;
  display: block;
}
.gm-proof-card-chrome .hd {
  font: 600 15px/1.3 var(--gm-font-heading);
  margin-bottom: 2px;
}
.gm-proof-card-chrome .sub {
  font: 400 13px/1.3 var(--gm-font-body);
  color: rgba(255,255,255,0.7);
}

/* --- Choice comparison (three columns: Orthotics / HyProCure / Fusion) --- */
.gm-choice {
  margin-top: 36px;
  display: grid;
  grid-template-columns: 1fr 1.18fr 1fr;
  align-items: center;
  gap: 16px;
  position: relative;
}
@media (max-width: 860px) { .gm-choice { grid-template-columns: 1fr; } }

.gm-choice-card {
  position: relative;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--gm-radius-xl);
  padding: 22px 22px 24px;
  color: #fff;
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: opacity 0.3s ease;
}
.gm-choice-card:not(.is-primary) {
  opacity: 0.78;
}
.gm-choice-card:not(.is-primary):hover {
  opacity: 0.95;
}
.gm-choice-card:not(.is-primary) .gm-choice-media {
  filter: saturate(0.88) contrast(1.02);
}
.gm-choice-card.is-primary {
  background:
    radial-gradient(120% 80% at 50% 0%, rgba(52,199,89,0.22) 0%, rgba(52,199,89,0.06) 48%, rgba(52,199,89,0.02) 100%),
    linear-gradient(180deg, rgba(10,27,50,0.85), rgba(10,27,50,0.55));
  border: 1.5px solid rgba(52,199,89,0.78);
  box-shadow:
    0 0 0 1px rgba(52,199,89,0.35),
    0 0 56px -8px rgba(52,199,89,0.55),
    0 32px 64px -16px rgba(52,199,89,0.30),
    0 48px 96px -24px rgba(0,0,0,0.6);
  transform: translateY(-8px) scale(1.03);
  transform-origin: center top;
  padding: 26px 24px 28px;
  z-index: 2;
}
.gm-choice-card.is-primary .gm-choice-head .name {
  font-size: 24px;
}
.gm-choice-card-tag {
  position: absolute;
  top: -14px; left: 50%;
  transform: translateX(-50%);
  font: 700 11px/1 var(--gm-font-body);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gm-navy);
  background: var(--gm-digital-blue);
  padding: 8px 14px;
  border-radius: var(--gm-radius-full);
  white-space: nowrap;
  box-shadow: 0 8px 24px -6px rgba(52,199,89,0.55);
}
.gm-choice-head {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 12px;
}
.gm-choice-head .name {
  font: 700 22px/1.1 var(--gm-font-heading);
  letter-spacing: -0.01em;
  color: #fff;
  white-space: nowrap;
}
.gm-choice-head .kind {
  font: 500 11px/1 var(--gm-font-body);
  letter-spacing: var(--gm-tracking-eyebrow);
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
}
.gm-choice-card.is-primary .kind { color: var(--gm-digital-blue); }

.gm-choice-tagline {
  font: 400 14px/1.5 var(--gm-font-body);
  color: rgba(255,255,255,0.7);
  margin: 0;
}
.gm-choice-card.is-primary .gm-choice-tagline { color: rgba(255,255,255,0.86); }

/* Verdict callout — the "what a 6-year-old sees in 3 seconds" element.
 * A bright light-island lifted out of the dark card — stark contrast, no muddy tints. */
.gm-choice-verdict {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 2px;
  padding: 18px 20px 0;
  margin: 0 -8px;
  background: #fff;
  border-radius: 14px;
  overflow: hidden;
  box-shadow:
    0 12px 32px -12px rgba(0,0,0,0.45),
    0 2px 0 rgba(255,255,255,0.04) inset;
}
.gm-choice-verdict .n {
  font: 700 52px/0.95 var(--gm-font-heading);
  color: var(--gm-navy);
  letter-spacing: -0.03em;
  font-variant-numeric: tabular-nums;
  font-feature-settings: 'tnum';
}
.gm-choice-verdict .n .unit {
  font-size: 26px;
  font-weight: 600;
  margin-left: 4px;
  color: var(--gm-text-subtle);
}
.gm-choice-verdict .l {
  font: 500 13px/1.35 var(--gm-font-body);
  color: var(--gm-text-subtle);
  letter-spacing: 0.01em;
  padding-bottom: 12px;
}
.gm-choice-verdict .stamp {
  margin-top: 4px;
  align-self: stretch;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 11px 12px;
  background: #B8350F;
  color: #fff;
  font: 700 11px/1 var(--gm-font-body);
  text-transform: uppercase;
  letter-spacing: 0.14em;
}

/* Primary verdict — HyProCure card: navy stat block with blue accent stamp */
.gm-choice-verdict.is-primary {
  background: #fff;
}
.gm-choice-verdict.is-primary .n { color: var(--gm-navy); }
.gm-choice-verdict.is-primary .n .unit { color: #2FA84F; }
.gm-choice-verdict.is-primary .stamp {
  background: #2FA84F;
  color: #fff;
}

.gm-choice-attrs {
  list-style: none; padding: 0; margin: auto 0 0;
  display: flex; flex-direction: column; gap: 8px;
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 14px;
}
.gm-choice-attrs li {
  display: grid;
  grid-template-columns: 18px 1fr;
  gap: 10px;
  font: 500 13px/1.4 var(--gm-font-body);
  color: rgba(255,255,255,0.86);
}
.gm-choice-attrs .ico {
  display: inline-flex; align-items: center; justify-content: center;
  width: 18px; height: 18px;
  border-radius: var(--gm-radius-full);
  font: 700 11px/1 var(--gm-font-body);
}
.gm-choice-attrs .ico.is-no  { background: rgba(255,255,255,0.08); color: rgba(255,255,255,0.55); }
.gm-choice-attrs .ico.is-yes { background: rgba(39,177,250,0.22); color: var(--gm-digital-blue); }
.gm-choice-attrs .ico.is-warn { background: rgba(242,101,34,0.18); color: #F9A66A; }

/* ============================================================
   Inline citations — author/year/journal short-form
   ============================================================ */
.gm-inline-cite {
  display: block;
  margin-top: 4px;
  font: 500 11px/1.4 var(--gm-font-body);
  letter-spacing: 0.02em;
  color: rgba(255,255,255,0.52);
}
.gm-inline-cite em { font-style: italic; color: rgba(255,255,255,0.62); }

.gm-cite-sup {
  font-size: 0.65em;
  vertical-align: super;
  margin-left: 2px;
  color: rgba(255,255,255,0.72);
  font-weight: 500;
}

.gm-cite-footnote {
  background: #fff;
  border-top: 1px solid rgba(0,0,0,0.06);
  padding: 18px 0 22px;
}
.gm-cite-footnote p {
  margin: 0;
  font: 400 12px/1.55 var(--gm-font-body);
  color: rgba(0,0,0,0.52);
  max-width: 820px;
}
.gm-cite-footnote sup { color: rgba(0,0,0,0.72); font-weight: 500; margin-right: 2px; }

/* Evidence card cite — italicize journal abbreviations */
.gm-as-cite em,
.gm-reveal-cite em,
.gm-recovery-cite em,
.gm-evidence-landmark-cite em,
.gm-choice-verdict .stamp em { font-style: italic; }

/* ============================================================
 * HI-FI: Partnerships
 * ============================================================ */

.gm-partner-header {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 32px;
  align-items: end;
  margin-bottom: 48px;
}
@media (max-width: 860px) { .gm-partner-header { grid-template-columns: 1fr; align-items: start; } }

.gm-partner-meta {
  display: flex; flex-direction: column; gap: 4px;
  text-align: right;
  font: 500 13px/1.4 var(--gm-font-body);
  color: var(--gm-text-muted);
}
@media (max-width: 860px) { .gm-partner-meta { text-align: left; } }
.gm-partner-meta strong {
  font-family: var(--gm-font-heading);
  font-weight: 700;
  font-size: 28px;
  letter-spacing: -0.02em;
  color: var(--gm-navy);
}

.gm-paths {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 48px;
}
@media (max-width: 960px) { .gm-paths { grid-template-columns: 1fr; } }

.gm-path {
  background: #fff;
  border: 1px solid var(--gm-border);
  border-radius: var(--gm-radius-xl);
  padding: 32px 28px 28px;
  display: flex; flex-direction: column;
  box-shadow: var(--gm-shadow-sm);
  transition: box-shadow var(--gm-dur-base) var(--gm-ease-standard),
              border-color var(--gm-dur-base) var(--gm-ease-standard),
              transform var(--gm-dur-base) var(--gm-ease-standard);
  position: relative;
}
.gm-path:hover {
  border-color: var(--gm-border-strong);
  box-shadow: var(--gm-shadow-md);
}

.gm-path-num {
  display: flex; align-items: baseline; justify-content: space-between;
  margin-bottom: 20px;
}
.gm-path-num .n {
  font: 700 14px/1 var(--gm-font-body);
  color: var(--gm-primary-blue);
  letter-spacing: 0.08em;
}
.gm-path-num .ico {
  width: 40px; height: 40px;
  border-radius: var(--gm-radius-md);
  background: rgba(0,113,202,0.08);
  color: var(--gm-primary-blue);
  display: flex; align-items: center; justify-content: center;
}
.gm-path-num .ico svg { width: 20px; height: 20px; stroke: currentColor; fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }

.gm-path h3 {
  font: 700 22px/1.2 var(--gm-font-heading);
  letter-spacing: -0.015em;
  margin: 0 0 8px;
  color: var(--gm-navy);
}
.gm-path .audience {
  font: 600 12px/1 var(--gm-font-body);
  letter-spacing: var(--gm-tracking-eyebrow);
  text-transform: uppercase;
  color: var(--gm-text-subtle);
  margin-bottom: 16px;
}
.gm-path .pitch {
  font: 400 15px/1.55 var(--gm-font-body);
  color: var(--gm-text-muted);
  margin: 0 0 24px;
  flex: 1;
  text-wrap: pretty;
}

.gm-path-targets {
  border-top: 1px solid var(--gm-border);
  padding-top: 18px;
}
.gm-path-targets-label {
  font: 600 11px/1 var(--gm-font-body);
  letter-spacing: var(--gm-tracking-eyebrow);
  text-transform: uppercase;
  color: var(--gm-text-subtle);
  margin-bottom: 10px;
  display: block;
}
.gm-chip-row { display: flex; flex-wrap: wrap; gap: 6px; }
.gm-chip {
  display: inline-flex;
  align-items: center;
  padding: 5px 10px;
  font: 500 12px/1.2 var(--gm-font-body);
  color: var(--gm-navy);
  background: var(--gm-light-section);
  border: 1px solid var(--gm-border);
  border-radius: var(--gm-radius-full);
  white-space: nowrap;
}
.gm-chip.is-region {
  background: #fff;
  color: var(--gm-text-muted);
}

/* Inquiry block */
.gm-inquiry {
  background: var(--gm-navy);
  color: #fff;
  border-radius: var(--gm-radius-xl);
  padding: 40px 48px;
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 40px;
  align-items: center;
}
@media (max-width: 860px) { .gm-inquiry { grid-template-columns: 1fr; padding: 32px; } }

.gm-inquiry h3 {
  font: 700 28px/1.15 var(--gm-font-heading);
  letter-spacing: -0.02em;
  color: #fff;
  margin: 0 0 10px;
  text-wrap: balance;
}
.gm-inquiry p {
  font: 400 15px/1.6 var(--gm-font-body);
  color: rgba(255,255,255,0.72);
  margin: 0 0 24px;
  max-width: 520px;
}
.gm-inquiry-contacts {
  display: flex; flex-direction: column; gap: 16px;
}
.gm-inquiry-contact {
  display: grid;
  grid-template-columns: 36px 1fr;
  gap: 14px;
  align-items: center;
}
.gm-inquiry-contact .ico {
  width: 36px; height: 36px;
  border-radius: var(--gm-radius-md);
  background: rgba(39,177,250,0.14);
  color: var(--gm-digital-blue);
  display: flex; align-items: center; justify-content: center;
}
.gm-inquiry-contact .ico svg { width: 18px; height: 18px; stroke: currentColor; fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.gm-inquiry-contact .lbl {
  font: 600 11px/1 var(--gm-font-body);
  letter-spacing: var(--gm-tracking-eyebrow);
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
  display: block;
  margin-bottom: 3px;
}
.gm-inquiry-contact .val {
  font: 500 15px/1.3 var(--gm-font-body);
  color: #fff;
}
.gm-inquiry-contact .val small {
  display: block;
  font-weight: 400;
  color: rgba(255,255,255,0.6);
  font-size: 12px;
  margin-top: 2px;
}

.gm-inquiry-actions {
  display: flex; flex-wrap: wrap; gap: 12px;
  margin-top: 28px;
}

/* ============================================================
 * HI-FI: Audience toggle + proof bar
 * ============================================================ */

.gm-aud {
  display: inline-flex;
  gap: 4px;
  padding: 4px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--gm-radius-full);
  margin-bottom: 28px;
}
.gm-aud-btn {
  padding: 8px 16px;
  font: 600 13px/1 var(--gm-font-body);
  color: rgba(255,255,255,0.7);
  background: transparent;
  border: 0;
  border-radius: var(--gm-radius-full);
  cursor: pointer;
  transition: background var(--gm-dur-base) var(--gm-ease-standard),
              color var(--gm-dur-base) var(--gm-ease-standard);
  white-space: nowrap;
}
.gm-aud-btn:hover { color: #fff; }
.gm-aud-btn.is-active {
  background: var(--gm-digital-blue);
  color: var(--gm-navy);
}

.gm-proofbar {
  margin-top: 64px;
  padding: 28px 32px;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--gm-radius-xl);
  background: rgba(255,255,255,0.03);
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  gap: 0;
}
.gm-proofbar-stat {
  flex: 1 1 160px;
  min-width: 0;
  padding: 4px 18px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.gm-proofbar-stat .n {
  font: 700 38px/1 var(--gm-font-heading);
  letter-spacing: -0.03em;
  color: var(--gm-digital-blue);
}
.gm-proofbar-stat .n .plus {
  font-size: 0.55em;
  margin-left: 2px;
  letter-spacing: 0;
}
.gm-proofbar-stat .l {
  font: 500 13px/1.45 var(--gm-font-body);
  color: rgba(255,255,255,0.82);
}
.gm-proofbar-stat .l small {
  display: block;
  font-weight: 400;
  color: rgba(255,255,255,0.52);
  font-size: 12px;
  margin-top: 4px;
  letter-spacing: 0;
}
.gm-proofbar-div {
  width: 1px;
  background: rgba(255,255,255,0.1);
  align-self: stretch;
}
@media (max-width: 860px) {
  .gm-proofbar { flex-direction: column; }
  .gm-proofbar-div { width: 100%; height: 1px; }
}

/* ============================================================
 * HI-FI: Products section
 * ============================================================ */

.gm-products-header {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 32px;
  align-items: end;
  margin-bottom: 48px;
}
@media (max-width: 860px) { .gm-products-header { grid-template-columns: 1fr; } }

/* Flagship row */
.gm-flagship {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 24px;
  margin-bottom: 28px;
  background: var(--gm-navy);
  border-radius: var(--gm-radius-xl);
  overflow: hidden;
  color: #fff;
  min-height: 460px;
}
@media (max-width: 860px) { .gm-flagship { grid-template-columns: 1fr; } }

.gm-flagship-copy {
  padding: 44px 44px 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.gm-flagship-eyebrow {
  font: 600 11px/1 var(--gm-font-body);
  letter-spacing: var(--gm-tracking-eyebrow);
  text-transform: uppercase;
  color: var(--gm-digital-blue);
  margin-bottom: 14px;
}
.gm-flagship-copy h3 {
  font: 700 40px/1.05 var(--gm-font-heading);
  letter-spacing: -0.025em;
  color: #fff;
  margin: 0 0 16px;
  text-wrap: balance;
}
.gm-flagship-copy h3 em {
  font-style: normal;
  color: var(--gm-digital-blue);
}
.gm-flagship-copy .sub {
  font: 400 16px/1.6 var(--gm-font-body);
  color: rgba(255,255,255,0.72);
  margin: 0 0 28px;
  max-width: 440px;
  text-wrap: pretty;
}
.gm-flagship-specs {
  list-style: none; padding: 0; margin: 0 0 28px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px 20px;
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 22px;
}
.gm-flagship-specs li {
  display: flex; flex-direction: column; gap: 2px;
}
.gm-flagship-specs .k {
  font: 600 10px/1 var(--gm-font-body);
  letter-spacing: var(--gm-tracking-eyebrow);
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
}
.gm-flagship-specs .v {
  font: 500 14px/1.3 var(--gm-font-body);
  color: #fff;
}
.gm-flagship-image {
  position: relative;
  background: #000;
}
.gm-flagship-image img {
  width: 100%; height: 100%; object-fit: cover; display: block;
}

/* Catalog grid */
.gm-catalog {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
@media (max-width: 1040px) { .gm-catalog { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px)  { .gm-catalog { grid-template-columns: 1fr; } }

.gm-pcard {
  background: #fff;
  border: 1px solid var(--gm-border);
  border-radius: var(--gm-radius-lg);
  overflow: hidden;
  display: flex; flex-direction: column;
  transition: box-shadow var(--gm-dur-base) var(--gm-ease-standard),
              border-color var(--gm-dur-base) var(--gm-ease-standard);
  text-align: left;
  padding: 0;
  font: inherit;
  color: inherit;
}
.gm-pcard:hover {
  border-color: var(--gm-border-strong);
  box-shadow: var(--gm-shadow-md);
}
.gm-pcard-img {
  aspect-ratio: 4 / 3;
  background: var(--gm-light-section);
  overflow: hidden;
}
.gm-pcard-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 600ms cubic-bezier(0.2, 0.7, 0.2, 1);
}
.gm-pcard:hover .gm-pcard-img img {
  transform: scale(1.06);
}
.gm-pcard-img img {
  width: 100%; height: 100%; object-fit: cover; display: block;
  transition: transform var(--gm-dur-slow) var(--gm-ease-out);
}
.gm-pcard:hover .gm-pcard-img img { transform: scale(1.03); }

.gm-pcard-body {
  padding: 18px 20px 20px;
  display: flex; flex-direction: column; gap: 6px;
  flex: 1;
}
.gm-pcard-kind {
  font: 600 10px/1 var(--gm-font-body);
  letter-spacing: var(--gm-tracking-eyebrow);
  text-transform: uppercase;
  color: var(--gm-text-subtle);
}
.gm-pcard-name {
  font: 700 18px/1.2 var(--gm-font-heading);
  letter-spacing: -0.01em;
  color: var(--gm-navy);
}
.gm-pcard-sub {
  font: 400 13px/1.45 var(--gm-font-body);
  color: var(--gm-text-muted);
  margin-top: 2px;
}
.gm-pcard-foot {
  margin-top: auto;
  padding-top: 14px;
  font: 600 13px/1 var(--gm-font-body);
  color: var(--gm-primary-blue);
  display: inline-flex; align-items: center; gap: 6px;
}
.gm-pcard-foot svg { width: 14px; height: 14px; stroke: currentColor; fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; transition: transform var(--gm-dur-base) var(--gm-ease-standard); }
.gm-pcard:hover .gm-pcard-foot svg { transform: translateX(3px); }

/* ============================================================
 * HI-FI: Footer cache-bust v35
 * ============================================================ */

.gm-footer {
  background: var(--gm-navy);
  color: rgba(255,255,255,0.72);
  padding: 56px 0 28px;
  border-top: 0;
}
.gm-footer-grid {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 40px;
  margin-bottom: 32px;
}
@media (max-width: 640px) {
  .gm-footer-grid {
    grid-template-columns: 1fr;
    gap: 20px;
    align-items: start;
  }
}

.gm-footer-brand {
  display: flex;
  align-items: center;
  gap: 20px;
}
.gm-footer-brand img {
  height: 28px;
  width: auto;
  display: block;
  margin: 0;
}
.gm-footer-tagline {
  margin: 0;
  padding-left: 20px;
  border-left: 1px solid rgba(255,255,255,0.14);
  font: 500 14px/1.3 var(--gm-font-heading);
  color: rgba(255,255,255,0.86);
  letter-spacing: -0.005em;
  max-width: none;
  text-wrap: nowrap;
  white-space: nowrap;
}
@media (max-width: 640px) {
  .gm-footer-tagline {
    padding-left: 0;
    border-left: 0;
    white-space: normal;
  }
}
.gm-footer-addr {
  grid-column: 2;
  justify-self: end;
  margin: 0;
  font: 400 13px/1.5 var(--gm-font-body);
  color: rgba(255,255,255,0.6);
  text-align: right;
}
@media (max-width: 640px) {
  .gm-footer-addr {
    grid-column: 1;
    justify-self: start;
    text-align: left;
  }
}
.gm-footer-addr a { color: rgba(255,255,255,0.8); }
.gm-footer-addr a:hover { color: #fff; }

.gm-footer-col h4 {
  font: 600 11px/1 var(--gm-font-body);
  letter-spacing: var(--gm-tracking-eyebrow);
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  margin: 0 0 16px;
}
.gm-footer-col ul {
  list-style: none; padding: 0; margin: 0;
  display: flex; flex-direction: column; gap: 10px;
}
.gm-footer-col a {
  font: 400 14px/1.35 var(--gm-font-body);
  color: rgba(255,255,255,0.78);
  transition: color var(--gm-dur-base) var(--gm-ease-standard);
}
.gm-footer-col a:hover { color: #fff; }

.gm-footer-compliance {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 20px;
  display: flex;
  justify-content: flex-end;
}

.gm-footer-marks {
  display: flex; flex-wrap: wrap; gap: 8px 16px;
  font: 500 12px/1.4 var(--gm-font-body);
  color: rgba(255,255,255,0.58);
}
.gm-footer-marks span { display: inline-flex; align-items: center; gap: 6px; white-space: nowrap; }
.gm-footer-marks span::before {
  content: ''; width: 4px; height: 4px; border-radius: 50%;
  background: var(--gm-digital-blue);
}

.gm-footer-legal {
  font: 400 12px/1.5 var(--gm-font-body);
  color: rgba(255,255,255,0.4);
  text-align: right;
  margin: 0;
}
@media (max-width: 640px) { .gm-footer-legal { text-align: left; } }
.gm-footer-legal a { color: rgba(255,255,255,0.62); margin-left: 16px; }
@media (max-width: 640px) { .gm-footer-legal a { margin: 0 16px 0 0; } }

/* ========== Roadmap chip ========== */
.gm-roadmap {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 3px 9px 3px 8px;
  font: 600 10px/1 var(--gm-font-body);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: #FFF4E6;
  color: #7A4A00;
  border-radius: var(--gm-radius-full);
  border: 1px solid #F0D8A8;
}
.gm-roadmap::before {
  content: ''; display: inline-block;
  width: 5px; height: 5px; border-radius: 50%;
  background: #C47A00;
}

/* ========== About section (narrative) ========== */.gm-about-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 340px;
  gap: 64px;
  align-items: start;
}
.gm-about-narrative { min-width: 0; }
.gm-about-h2 {
  font-family: var(--gm-font-heading);
  font-weight: 700;
  font-size: clamp(32px, 4vw, 48px);
  line-height: 1.1;
  letter-spacing: var(--gm-tracking-tight);
  color: var(--gm-navy);
  margin: 8px 0 32px;
  max-width: 720px;
  text-wrap: balance;
}
.gm-about-body {
  font-family: var(--gm-font-body);
  font-size: var(--gm-text-md);
  line-height: 1.65;
  color: var(--gm-text-muted);
  max-width: 680px;
}
.gm-about-body p { margin: 0 0 20px; }
.gm-about-body p:last-child { margin-bottom: 0; }
.gm-about-body strong { color: var(--gm-navy); font-weight: 600; }

.gm-about-break {
  font-family: var(--gm-font-heading);
  font-size: var(--gm-text-xl);
  color: var(--gm-navy) !important;
  padding: 8px 0 8px 20px;
  border-left: 3px solid var(--gm-primary-blue);
}
.gm-about-break strong { font-weight: 700; }

.gm-about-mission {
  font-family: var(--gm-font-heading);
  font-size: var(--gm-text-lg);
  color: var(--gm-navy) !important;
  line-height: 1.4;
  padding-top: 20px;
  border-top: 1px solid var(--gm-border);
}
.gm-about-mission em {
  font-style: italic;
  color: var(--gm-primary-blue);
}

.gm-about-sig {
  display: flex;
  align-items: center;
  gap: 16px;
  margin: 40px 0 0;
}
.gm-about-sig-mark {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gm-navy) 0%, #1a2f47 100%);
  color: #fff;
  display: grid; place-items: center;
  font-family: var(--gm-font-heading);
  font-weight: 700;
  font-size: 18px;
  letter-spacing: 0.02em;
  flex: 0 0 56px;
}
.gm-about-sig figcaption {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.gm-about-sig .name {
  font-family: var(--gm-font-heading);
  font-weight: 600;
  font-size: var(--gm-text-md);
  color: var(--gm-navy);
}
.gm-about-sig .title {
  font-family: var(--gm-font-body);
  font-size: var(--gm-text-sm);
  color: var(--gm-text-muted);
}

/* ---- About sidebar ---- */
.gm-about-side {
  display: flex;
  flex-direction: column;
  gap: 24px;
  position: sticky;
  top: calc(var(--gm-nav-height) + 24px);
}
.gm-about-stats {
  background: #fff;
  border: 1px solid var(--gm-border);
  border-radius: var(--gm-radius-lg);
  padding: 24px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px 16px;
}
.gm-about-stat {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.gm-about-stat .n {
  font-family: var(--gm-font-heading);
  font-weight: 700;
  font-size: 28px;
  line-height: 1;
  letter-spacing: var(--gm-tracking-tight);
  color: var(--gm-navy);
  font-variant-numeric: tabular-nums;
}
.gm-about-stat .n .plus {
  color: var(--gm-primary-blue);
  font-weight: 600;
}
.gm-about-stat .l {
  font-family: var(--gm-font-body);
  font-size: 12px;
  line-height: 1.35;
  color: var(--gm-text-muted);
}

.gm-about-creds {
  background: #fff;
  border: 1px solid var(--gm-border);
  border-radius: var(--gm-radius-lg);
  padding: 20px 24px;
}
.gm-about-creds-label {
  display: block;
  font-family: var(--gm-font-body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: var(--gm-tracking-eyebrow);
  text-transform: uppercase;
  color: var(--gm-text-subtle);
  margin-bottom: 14px;
}
.gm-about-creds ul {
  list-style: none;
  margin: 0; padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.gm-about-creds li {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 12px;
  font-family: var(--gm-font-body);
  font-size: 13px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--gm-border);
}
.gm-about-creds li:last-child { border-bottom: none; padding-bottom: 0; }
.gm-about-creds li strong {
  color: var(--gm-navy);
  font-weight: 600;
  flex: 0 0 auto;
}
.gm-about-creds li span {
  color: var(--gm-text-subtle);
  font-size: 12px;
  text-align: right;
}

.gm-about-hq {
  background: var(--gm-navy);
  color: #fff;
  border-radius: var(--gm-radius-lg);
  padding: 24px;
}
.gm-about-hq-label {
  display: block;
  font-family: var(--gm-font-body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: var(--gm-tracking-eyebrow);
  text-transform: uppercase;
  color: var(--gm-digital-blue);
  margin-bottom: 12px;
}
.gm-about-hq address {
  font-family: var(--gm-font-heading);
  font-style: normal;
  font-size: var(--gm-text-md);
  font-weight: 500;
  line-height: 1.45;
  color: #fff;
  margin: 0 0 16px;
}
.gm-about-hq-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--gm-font-body);
  font-size: 13px;
  font-weight: 600;
  color: var(--gm-digital-blue);
  padding-top: 12px;
  border-top: 1px solid rgba(255,255,255,0.12);
}
.gm-about-hq-link svg {
  width: 14px; height: 14px;
  stroke: currentColor; stroke-width: 2; fill: none;
  transition: transform var(--gm-dur-fast) var(--gm-ease-standard);
}
.gm-about-hq-link:hover svg { transform: translateX(2px); }

@media (max-width: 980px) {
  .gm-about-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .gm-about-side { position: static; }
  .gm-about-stats { grid-template-columns: 1fr 1fr 1fr 1fr; }
}
@media (max-width: 600px) {
  .gm-about-stats { grid-template-columns: 1fr 1fr; }
}

/* ========== Recovery close (§4 move 5) ========== */
.gm-recovery { padding-top: 88px; padding-bottom: 88px; }
.gm-recovery-head {
  max-width: 880px;
  margin: 0 0 56px;
}
.gm-section-label.on-dark {
  color: var(--gm-digital-blue);
}
.gm-recovery-h2 {
  font-family: var(--gm-font-heading);
  font-size: clamp(34px, 4.6vw, 52px);
  font-weight: 500;
  line-height: 1.08;
  letter-spacing: -0.015em;
  color: #fff;
  margin: 12px 0 0;
  text-wrap: balance;
}
.gm-recovery-h2 em {
  font-style: normal;
  color: var(--gm-digital-blue);
  font-weight: 500;
}

.gm-recovery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.gm-recovery-step {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.09);
  border-radius: var(--gm-radius-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform var(--gm-dur-base) var(--gm-ease-standard),
              border-color var(--gm-dur-base) var(--gm-ease-standard);
}
.gm-recovery-step:hover {
  transform: translateY(-2px);
  border-color: rgba(39,177,250,0.35);
}
.gm-recovery-img {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
}
.gm-recovery-img::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(0,20,48,0) 45%, rgba(0,20,48,0.45) 100%);
  pointer-events: none;
}
.gm-recovery-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  filter: saturate(0.92);
}
.gm-recovery-body {
  padding: 28px 28px 32px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  position: relative;
}
.gm-recovery-n {
  position: absolute;
  top: -28px;
  left: 24px;
  width: 52px; height: 52px;
  display: grid; place-items: center;
  background: var(--gm-digital-blue);
  color: var(--gm-navy);
  border: 3px solid var(--gm-navy);
  border-radius: 50%;
  font-family: var(--gm-font-heading);
  font-size: 22px;
  font-weight: 600;
  line-height: 1;
}
.gm-recovery-when {
  font-family: var(--gm-font-body);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: var(--gm-tracking-eyebrow);
  text-transform: uppercase;
  color: var(--gm-digital-blue);
  margin: 4px 0 4px;
}
.gm-recovery-title {
  font-family: var(--gm-font-heading);
  font-size: 24px;
  font-weight: 500;
  line-height: 1.2;
  color: #fff;
  margin: 0;
}
.gm-recovery-copy {
  font-family: var(--gm-font-body);
  font-size: 15px;
  line-height: 1.55;
  color: rgba(255,255,255,0.78);
  margin: 6px 0 0;
  text-wrap: pretty;
}
.gm-recovery-cite {
  font-family: var(--gm-font-body);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.015em;
  color: rgba(255,255,255,0.42);
  margin-top: 10px;
}
.gm-recovery-foot {
  font-family: var(--gm-font-body);
  font-size: 13px;
  line-height: 1.55;
  color: rgba(255,255,255,0.52);
  margin: 40px 0 0;
  max-width: 640px;
}

@media (max-width: 960px) {
  .gm-recovery-grid { grid-template-columns: 1fr; gap: 40px; }
  .gm-recovery { padding-top: 64px; padding-bottom: 64px; }
  .gm-recovery-head { margin-bottom: 40px; }
}

/* ========== Evidence section (§4 move 4) ========== */
.gm-evidence { padding-top: 96px; padding-bottom: 96px; }
.gm-evidence-head {
  max-width: 820px;
  margin: 0 0 56px;
}
.gm-evidence-h2 {
  font-family: var(--gm-font-heading);
  font-size: clamp(32px, 4.2vw, 48px);
  font-weight: 500;
  line-height: 1.08;
  letter-spacing: -0.015em;
  color: var(--gm-navy);
  margin: 12px 0 20px;
  text-wrap: balance;
}
.gm-evidence-h2 em {
  font-style: italic;
  color: var(--gm-primary-blue);
  font-weight: 500;
}
.gm-evidence-lead {
  font-family: var(--gm-font-body);
  font-size: 17px;
  line-height: 1.55;
  color: var(--gm-text-subtle, #475872);
  margin: 0;
  text-wrap: pretty;
  max-width: 680px;
}

/* Audience signal at top of Evidence */
.gm-evidence-audience {
  margin: 20px 0 0;
  padding: 14px 18px;
  background: rgba(39, 177, 250, 0.08);
  border-left: 2px solid var(--gm-digital-blue, #27B1FA);
  border-radius: 4px;
  font-family: var(--gm-font-body);
  font-size: 13.5px;
  line-height: 1.5;
  color: var(--gm-text-subtle, #475872);
  max-width: 680px;
}
.gm-evidence-audience strong {
  color: var(--gm-navy);
  font-weight: 600;
}

/* =========================================================
   HERO — vivid full-bleed photo, single statement (Intuitive-inspired)
   ========================================================= */
.gm-hero-photo {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  overflow: hidden;
  background: var(--gm-navy);
  color: #fff;
  isolation: isolate;
  text-align: left;
}
.gm-hero-photo-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.gm-hero-photo-bg img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  display: block;
  opacity: 0;
  transition: opacity 900ms ease-in-out;
}
.gm-hero-photo-bg img.is-active {
  opacity: 1;
}
.gm-hero-photo-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg,
      rgba(10, 27, 50, 0.28) 0%,
      rgba(10, 27, 50, 0.12) 40%,
      rgba(10, 27, 50, 0.55) 100%),
    linear-gradient(90deg,
      rgba(10, 27, 50, 0.55) 0%,
      rgba(10, 27, 50, 0.25) 45%,
      rgba(10, 27, 50, 0.00) 78%);
}
.gm-hero-photo-inner {
  position: relative;
  z-index: 1;
  width: 100%;
  padding-top: 140px;
  padding-bottom: 120px;
  max-width: 1280px;
  text-align: left;
}

.gm-hero-lede {
  max-width: 820px;
  display: flex;
  flex-direction: column;
  gap: 28px;
  margin-bottom: 44px;
}

.gm-hero-patient {
  font-family: var(--gm-font-heading);
  font-weight: 600;
  font-size: clamp(44px, 6.2vw, 88px);
  line-height: 0.98;
  letter-spacing: -0.025em;
  color: #fff;
  margin: 0;
  max-width: 900px;
  text-wrap: balance;
  text-shadow: 0 2px 24px rgba(10,27,50,0.55);
}
.gm-hero-patient em {
  font-style: italic;
  font-weight: 600;
  color: #fff;
}

.gm-hero-subline {
  font-family: var(--gm-font-heading);
  font-weight: 500;
  font-size: clamp(19px, 1.85vw, 25px);
  line-height: 1.4;
  letter-spacing: -0.005em;
  color: rgba(255,255,255,0.98);
  margin: 0;
  max-width: 680px;
  text-wrap: pretty;
  text-shadow: 0 1px 14px rgba(10,27,50,0.6);
}

.gm-hero-proof {
  display: inline-flex;
  align-items: center;
  gap: 24px;
  padding: 26px 32px 26px 30px;
  background: rgba(4, 14, 30, 0.72);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-left: 3px solid #27B1FA;
  border-radius: 2px;
  margin-bottom: 80px;
  max-width: 660px;
  box-shadow: 0 14px 50px -14px rgba(0,0,0,0.55);
}
.gm-hero-proof-stat {
  font-family: var(--gm-font-heading);
  font-weight: 700;
  font-size: 40px;
  line-height: 1;
  letter-spacing: -0.025em;
  color: #27B1FA;
  flex: none;
}
.gm-hero-proof-text {
  font-family: var(--gm-font-body);
  font-weight: 400;
  font-size: 16px;
  line-height: 1.4;
  color: rgba(255,255,255,0.92);
}

.gm-hero-cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
  margin-bottom: 44px;
}

.gm-hero-tagline {
  font-family: var(--gm-font-heading);
  font-weight: 500;
  font-size: 15px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.92);
  margin: 0;
  padding-top: 22px;
  border-top: 1px solid rgba(255,255,255,0.18);
  max-width: 520px;
  text-shadow: 0 1px 12px rgba(0,0,0,0.55);
}
.gm-hero-tagline em {
  font-style: italic;
  color: rgba(255,255,255,0.78);
  font-weight: 400;
}

@media (max-width: 820px) {
  .gm-hero-photo-inner {
    padding-top: 120px;
    padding-bottom: 80px;
  }
  .gm-hero-lede { gap: 22px; margin-bottom: 32px; }
  .gm-hero-cta-row { margin-bottom: 32px; }
  .gm-hero-proof { margin-bottom: 48px; padding: 20px 20px; gap: 16px; }
  .gm-hero-proof-stat { font-size: 30px; }
  .gm-hero-proof-text { font-size: 14px; }
}

.gm-evidence-foot {
  margin-top: 40px;
  padding: 20px 24px;
  background: #fff;
  border: 1px solid var(--gm-border);
  border-radius: 10px;
  font-family: var(--gm-font-body);
  font-size: 14px;
  line-height: 1.55;
  color: var(--gm-text-subtle, #475872);
  text-align: center;
}
.gm-evidence-foot a {
  color: var(--gm-primary-blue, #0071CA);
  font-weight: 600;
  text-decoration: none;
  white-space: nowrap;
  margin-left: 6px;
}
.gm-evidence-foot a:hover { text-decoration: underline; }

/* =========================================================
   Contact — Take Control close (two primary CTAs)
   ========================================================= */
.gm-contact-primary {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 56px;
}
.gm-contact-primary-cta {
  display: grid;
  grid-template-columns: 1fr auto;
  grid-template-rows: auto auto auto;
  grid-template-areas:
    "eb arrow"
    "hd arrow"
    "sub arrow";
  gap: 4px 20px;
  align-items: start;
  padding: 32px 32px 32px 36px;
  border-radius: 14px;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
  border: 1px solid transparent;
}
.gm-contact-primary-cta .eb {
  grid-area: eb;
  font-family: var(--gm-font-body);
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  opacity: 0.7;
  margin-bottom: 4px;
}
.gm-contact-primary-cta .hd {
  grid-area: hd;
  font-family: var(--gm-font-heading);
  font-size: clamp(22px, 2.2vw, 28px);
  font-weight: 500;
  line-height: 1.15;
  letter-spacing: -0.01em;
  margin-bottom: 8px;
}
.gm-contact-primary-cta .sub {
  grid-area: sub;
  font-family: var(--gm-font-body);
  font-size: 14.5px;
  line-height: 1.5;
  max-width: 36ch;
}
.gm-contact-primary-cta .arrow {
  grid-area: arrow;
  align-self: center;
  width: 44px;
  height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: transform 0.2s ease, background 0.2s ease;
}
.gm-contact-primary-cta .arrow svg {
  width: 20px; height: 20px;
  fill: none; stroke: currentColor; stroke-width: 2.2;
  stroke-linecap: round; stroke-linejoin: round;
}

/* Patient variant — light surface, navy text, blue accent */
.gm-contact-primary-cta.is-patient {
  background: #fff;
  color: var(--gm-navy);
  border-color: var(--gm-border);
}
.gm-contact-primary-cta.is-patient .arrow {
  background: rgba(0, 113, 202, 0.1);
  color: var(--gm-primary-blue, #0071CA);
}
.gm-contact-primary-cta.is-patient:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(15, 42, 68, 0.08);
  border-color: var(--gm-primary-blue, #0071CA);
}
.gm-contact-primary-cta.is-patient:hover .arrow {
  background: var(--gm-primary-blue, #0071CA);
  color: #fff;
  transform: translateX(4px);
}

/* Commercial variant — dark navy, digital-blue accent */
.gm-contact-primary-cta.is-commercial {
  background: var(--gm-navy);
  color: #fff;
}
.gm-contact-primary-cta.is-commercial .sub {
  color: rgba(255,255,255,0.74);
}
.gm-contact-primary-cta.is-commercial .eb {
  color: var(--gm-digital-blue, #27B1FA);
  opacity: 1;
}
.gm-contact-primary-cta.is-commercial .arrow {
  background: rgba(39, 177, 250, 0.18);
  color: var(--gm-digital-blue, #27B1FA);
}
.gm-contact-primary-cta.is-commercial:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 34px rgba(15, 42, 68, 0.22);
}
.gm-contact-primary-cta.is-commercial:hover .arrow {
  background: var(--gm-digital-blue, #27B1FA);
  color: var(--gm-navy);
  transform: translateX(4px);
}

/* Secondary — small row of tertiary contact routes */
.gm-contact-secondary {
  border-top: 1px solid var(--gm-border);
  padding-top: 32px;
}
.gm-contact-secondary-h {
  font-family: var(--gm-font-body);
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gm-text-subtle, #475872);
  margin: 0 0 20px;
}
.gm-contact-secondary-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.gm-contact-mini {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.gm-contact-mini .eb {
  font-family: var(--gm-font-body);
  font-size: 13px;
  font-weight: 600;
  color: var(--gm-navy);
}
.gm-contact-mini .sub {
  font-family: var(--gm-font-body);
  font-size: 13px;
  color: var(--gm-text-subtle, #475872);
  line-height: 1.45;
}
.gm-contact-mini a {
  font-family: var(--gm-font-body);
  font-size: 14px;
  font-weight: 500;
  color: var(--gm-primary-blue, #0071CA);
  text-decoration: none;
  margin-top: 4px;
}
.gm-contact-mini a:hover { text-decoration: underline; }

@media (max-width: 820px) {
  .gm-contact-primary { grid-template-columns: 1fr; }
  .gm-contact-secondary-grid { grid-template-columns: 1fr; gap: 18px; }
}

/* Tier badge */
.gm-evidence-tier {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 3px 10px 3px 8px;
  font-family: var(--gm-font-body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  border-radius: 999px;
  white-space: nowrap;
}
.gm-evidence-tier .dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  flex: 0 0 auto;
}
.gm-evidence-tier.is-green {
  color: #1f6a3a;
  background: rgba(31, 106, 58, 0.08);
}
.gm-evidence-tier.is-green .dot { background: #2aa05a; }
.gm-evidence-tier.is-amber {
  color: #8a5a00;
  background: rgba(194, 130, 0, 0.1);
}
.gm-evidence-tier.is-amber .dot { background: #e0a23a; }
.gm-evidence-tier.inline {
  margin-left: 4px;
  vertical-align: 2px;
}

/* Landmark Fu card — white-paper treatment */
.gm-evidence-landmark {
  background: #fff;
  color: var(--gm-navy);
  border: 1px solid var(--gm-border);
  border-radius: var(--gm-radius-lg);
  padding: 44px 48px;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 48px;
  align-items: center;
  margin-bottom: 56px;
  position: relative;
  overflow: hidden;
  box-shadow: var(--gm-shadow-sm);
}
.gm-evidence-landmark::before {
  content: '';
  position: absolute; inset: 0;
  border-radius: inherit;
  pointer-events: none;
}
.gm-evidence-landmark-eb {
  display: inline-block;
  font-family: var(--gm-font-body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: var(--gm-tracking-eyebrow);
  text-transform: uppercase;
  color: var(--gm-primary-blue);
  margin-bottom: 12px;
}
.gm-evidence-landmark-title {
  font-family: var(--gm-font-heading);
  font-size: clamp(24px, 2.6vw, 32px);
  font-weight: 500;
  line-height: 1.15;
  letter-spacing: -0.01em;
  color: var(--gm-navy);
  margin-bottom: 20px;
  text-wrap: balance;
}
.gm-evidence-landmark-cite {
  font-family: var(--gm-font-body);
  font-size: 13px;
  line-height: 1.6;
  color: var(--gm-text-subtle, #475872);
}
.gm-evidence-landmark-cite em {
  font-style: italic;
  color: var(--gm-navy);
}

.gm-evidence-landmark-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  padding-left: 48px;
  border-left: 1px solid var(--gm-border);
}
.gm-evidence-landmark-stat {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.gm-evidence-landmark-stat .n {
  font-family: var(--gm-font-heading);
  font-size: clamp(44px, 5vw, 64px);
  font-weight: 500;
  line-height: 1;
  letter-spacing: -0.02em;
  color: var(--gm-navy);
  font-variant-numeric: tabular-nums;
}
.gm-evidence-landmark-stat .n .u {
  font-size: 0.55em;
  font-weight: 500;
  color: var(--gm-primary-blue);
  margin-left: 2px;
  letter-spacing: 0;
}
.gm-evidence-landmark-stat .l {
  font-family: var(--gm-font-body);
  font-size: 13px;
  line-height: 1.45;
  color: var(--gm-text-subtle, #475872);
}
.gm-evidence-landmark-stat.is-soft .n {
  color: #8a97ab;
}
.gm-evidence-landmark-stat.is-soft .n .u {
  color: #b4bdc9;
}
.gm-evidence-landmark-note {
  grid-column: 1 / -1;
  margin: 28px 0 0;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.12);
  font-family: var(--gm-font-body);
  font-size: 14px;
  line-height: 1.55;
  color: rgba(255,255,255,0.66);
  text-wrap: pretty;
  max-width: 780px;
}

/* AS-framework grid */
.gm-evidence-as {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 1px solid var(--gm-border);
  border-left: 1px solid var(--gm-border);
  background: var(--gm-white);
  border-radius: var(--gm-radius-lg);
  overflow: hidden;
}
.gm-as-card {
  position: relative;
  padding: 36px 32px 32px;
  border-right: 1px solid var(--gm-border);
  border-bottom: 1px solid var(--gm-border);
  display: flex;
  flex-direction: column;
  gap: 12px;
  background: var(--gm-white);
  transition: background var(--gm-dur-base) var(--gm-ease-standard);
}
.gm-as-card:hover {
  background: #fafbfd;
}
.gm-as-eb {
  font-family: var(--gm-font-body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #8a97ab;
}
.gm-as-stat {
  font-family: var(--gm-font-heading);
  line-height: 1;
  margin: 4px 0 8px;
}
.gm-as-stat .n {
  display: inline-block;
  font-size: clamp(48px, 5vw, 64px);
  font-weight: 500;
  letter-spacing: -0.025em;
  color: var(--gm-navy);
  font-variant-numeric: tabular-nums;
}
.gm-as-stat .n.is-word {
  font-size: clamp(38px, 4vw, 52px);
  letter-spacing: -0.015em;
}
.gm-as-stat .n .u {
  font-size: 0.42em;
  font-weight: 500;
  color: var(--gm-text-subtle, #475872);
  margin-left: 4px;
  letter-spacing: 0;
}
.gm-as-claim {
  font-family: var(--gm-font-heading);
  font-size: 20px;
  font-weight: 500;
  line-height: 1.25;
  letter-spacing: -0.005em;
  color: var(--gm-navy);
  margin: 0;
  text-wrap: balance;
}
.gm-as-detail {
  font-family: var(--gm-font-body);
  font-size: 14px;
  line-height: 1.55;
  color: var(--gm-text-subtle, #475872);
  margin: 0;
  text-wrap: pretty;
}
.gm-as-detail strong {
  color: var(--gm-navy);
  font-weight: 600;
}
.gm-as-cite {
  margin-top: auto;
  padding-top: 14px;
  border-top: 1px solid var(--gm-border);
  font-family: var(--gm-font-body);
  font-size: 12px;
  line-height: 1.5;
  color: var(--gm-text-subtle, #475872);
  display: flex;
  flex-wrap: wrap;
  gap: 8px 12px;
  align-items: center;
  justify-content: space-between;
}
.gm-as-cite em {
  font-style: italic;
  color: var(--gm-navy);
}

/* Evidence footer: Cochrane note + legend + library link */
.gm-evidence-footer {
  margin-top: 40px;
  padding-top: 32px;
  border-top: 1px solid var(--gm-border);
}
.gm-evidence-note {
  font-family: var(--gm-font-body);
  font-size: 13px;
  line-height: 1.6;
  color: var(--gm-text-subtle, #475872);
  margin: 0 0 10px;
  max-width: 780px;
}
.gm-evidence-note-label {
  color: var(--gm-navy);
  font-weight: 600;
}
.gm-evidence-note em {
  font-style: italic;
  color: var(--gm-navy);
}
.gm-evidence-explore {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 20px;
  padding: 12px 20px;
  font-family: var(--gm-font-body);
  font-size: 14px;
  font-weight: 600;
  color: var(--gm-primary-blue);
  border: 1px solid var(--gm-primary-blue);
  border-radius: var(--gm-radius-md);
  transition: background var(--gm-dur-base) var(--gm-ease-standard),
              color var(--gm-dur-base) var(--gm-ease-standard);
}
.gm-evidence-explore:hover {
  background: var(--gm-primary-blue);
  color: #fff;
}
.gm-evidence-explore svg {
  width: 14px; height: 14px;
  fill: none; stroke: currentColor; stroke-width: 2;
  stroke-linecap: round; stroke-linejoin: round;
}

@media (max-width: 1080px) {
  .gm-evidence-as { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 880px) {
  .gm-evidence { padding-top: 64px; padding-bottom: 64px; }
  .gm-evidence-head { margin-bottom: 40px; }
  .gm-evidence-landmark {
    grid-template-columns: 1fr;
    padding: 32px 28px;
    gap: 32px;
  }
  .gm-evidence-landmark-stats {
    padding-left: 0;
    padding-top: 32px;
    border-left: 0;
    border-top: 1px solid rgba(255,255,255,0.14);
  }
  .gm-evidence-landmark-note {
    padding-top: 20px;
    margin-top: 20px;
  }
  .gm-evidence-as { grid-template-columns: 1fr; }
}



/* =========================================================
   Proof strip — credibility band between choices and recovery
   ========================================================= */
.gm-proofstrip {
  padding: 72px 0;
  background: #FAF9F6;
  border-top: 1px solid var(--gm-border);
  border-bottom: 1px solid var(--gm-border);
}
.gm-proofstrip .gm-proofbar {
  background: transparent;
  border: 0;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr;
  align-items: center;
  gap: 28px 36px;
  box-shadow: none;
}
.gm-proofstrip .gm-proofbar-stat {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.gm-proofstrip .gm-proofbar-stat .n {
  font-family: var(--gm-font-heading);
  font-weight: 700;
  font-size: clamp(34px, 3.6vw, 48px);
  line-height: 1;
  letter-spacing: -0.02em;
  color: var(--gm-primary-blue, #0071CA);
  font-variant-numeric: tabular-nums;
}
.gm-proofstrip .gm-proofbar-stat .n .plus {
  font-family: var(--gm-font-body);
  font-weight: 500;
  font-size: 0.5em;
  color: var(--gm-primary-blue, #0071CA);
  margin-left: 2px;
  letter-spacing: 0;
  vertical-align: 0.15em;
}
.gm-proofstrip .gm-proofbar-stat .l {
  font-family: var(--gm-font-body);
  font-size: 13.5px;
  font-weight: 500;
  line-height: 1.45;
  color: var(--gm-navy);
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.gm-proofstrip .gm-proofbar-stat .l small {
  font-size: 11.5px;
  font-weight: 400;
  color: var(--gm-text-subtle, #475872);
}
.gm-proofstrip .gm-proofbar-div {
  width: 1px;
  height: 52px;
  background: var(--gm-border);
  display: block;
}
@media (max-width: 860px) {
  .gm-proofstrip .gm-proofbar {
    grid-template-columns: 1fr 1fr;
    gap: 28px;
  }
  .gm-proofstrip .gm-proofbar-div { display: none; }
}

/* =========================================================
   The three paths — dedicated section below Problem
   ========================================================= */
.gm-choice-section {
  padding: 64px 0 72px;
  background: var(--gm-navy);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.gm-choice-section-head {
  max-width: 760px;
  margin: 0 auto 28px;
  text-align: center;
}
.gm-choice-thesis {
  font-family: var(--gm-font-heading);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(18px, 1.7vw, 22px);
  line-height: 1.45;
  letter-spacing: -0.005em;
  color: rgba(255,255,255,0.78);
  margin: 0 auto 44px;
  max-width: 680px;
  padding-bottom: 28px;
  border-bottom: 1px solid rgba(255,255,255,0.14);
  text-wrap: pretty;
}
.gm-choice-thesis strong {
  font-style: normal;
  font-weight: 600;
  color: var(--gm-accent-blue, #27B1FA);
}
.gm-choice-section-h2 {
  font-family: var(--gm-font-heading);
  font-weight: 500;
  font-size: clamp(30px, 3.4vw, 40px);
  line-height: 1.08;
  letter-spacing: -0.015em;
  color: #fff;
  margin: 10px 0 14px;
  text-wrap: balance;
}
.gm-choice-section-h2 em {
  font-style: italic;
  color: var(--gm-accent-blue, #27B1FA);
  font-weight: 500;
}
.gm-choice-section-lead {
  font-family: var(--gm-font-body);
  font-size: 15px;
  line-height: 1.55;
  color: rgba(255,255,255,0.72);
  margin: 0 auto;
  max-width: 680px;
  text-wrap: pretty;
}
.gm-choice-section-lead strong {
  color: #fff;
  font-weight: 600;
}
.gm-choice-section .gm-section-label {
  color: var(--gm-accent-blue, #27B1FA);
}

/* =========================================================
   Hero choice card — image slot
   ========================================================= */
.gm-choice-media {
  aspect-ratio: 16 / 10;
  margin: -22px -22px 4px;
  overflow: hidden;
  background: #0d1b2a;
  border-radius: var(--gm-radius-xl) var(--gm-radius-xl) 0 0;
  position: relative;
}
.gm-choice-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
/* Orthotics card — anchor low so ankles and feet show, not just calves */
.gm-choice-card:nth-child(1) .gm-choice-media img {
  object-position: center 85%;
}
/* Fusion card — drill is the subject, anchor to upper-left where it lives */
.gm-choice-card:nth-child(3) .gm-choice-media img {
  object-position: 35% 40%;
}
/* Subtle navy wash on outer cards to unify with card chrome without losing subject legibility */
.gm-choice-card:not(.is-primary) .gm-choice-media::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(10,27,50,0.0) 55%, rgba(10,27,50,0.35) 100%);
  pointer-events: none;
}
/* Primary (HyProCure) card — photo fills the slot naturally; implant framed near top */
.gm-choice-card.is-primary .gm-choice-media {
  margin: -22px -22px 4px;
  background: #0d1b2a;
  background-image:
    radial-gradient(140% 80% at 50% 0%, rgba(52,199,89,0.16) 0%, rgba(52,199,89,0.04) 55%, rgba(13,27,42,0) 100%),
    linear-gradient(180deg, #eef2f7 0%, #dde3ec 100%);
}
.gm-choice-card.is-primary .gm-choice-media img {
  object-fit: cover;
  /* Gloved-hand photo: anchor near top of source so the implant sits lower in the visible frame. */
  object-position: center 8%;
  transform: scale(1.1);
  transform-origin: center 8%;
  padding: 0;
  mix-blend-mode: multiply;
}
.gm-choice-media-crop { position: relative; }
.gm-choice-crop-left {
  /* crop to left panel (orthotics) of three-paths-v3-bold */
  width: 300% !important;
  height: 100% !important;
  object-fit: cover;
  object-position: 0 center;
  transform: translateX(0);
}
.gm-choice-card.is-primary .gm-choice-card-tag {
  top: 14px;
  z-index: 2;
}

/* =========================================================
   3-second story strip — Problem → Choices → Our fix
   ========================================================= */
.gm-story3-media-crop { position: relative; overflow: hidden; }
.gm-story3-crop-middle {
  /* crop to HyProCure panel (middle third of three-paths-v1-minimal) */
  width: 300% !important;
  height: 100% !important;
  object-fit: cover;
  object-position: 50% center;
  transform: translateX(-33.33%);
}
.gm-story3 {
  padding: 96px 0 104px;
  background: var(--gm-light-section, #F6F8FB);
  border-bottom: 1px solid var(--gm-border);
}
.gm-story3-head {
  max-width: 820px;
  margin: 0 0 48px;
}
.gm-story3-h2 {
  font-family: var(--gm-font-heading);
  font-size: clamp(32px, 4.2vw, 48px);
  font-weight: 500;
  line-height: 1.08;
  letter-spacing: -0.015em;
  color: var(--gm-navy);
  margin: 12px 0 0;
  text-wrap: balance;
}
.gm-story3-h2 em {
  font-style: italic;
  color: var(--gm-primary-blue);
  font-weight: 500;
}
.gm-story3-grid {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  counter-reset: story3;
}
.gm-story3-step {
  background: #fff;
  border: 1px solid var(--gm-border);
  border-radius: var(--gm-radius-lg, 14px);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: border-color 200ms ease, box-shadow 200ms ease, transform 200ms ease;
}
.gm-story3-step:hover {
  border-color: var(--gm-border-strong, #c7cdd6);
  box-shadow: 0 12px 32px -18px rgba(11, 31, 58, 0.18);
  transform: translateY(-2px);
}
.gm-story3-step.is-primary {
  border-color: rgba(0, 113, 202, 0.35);
  box-shadow: 0 0 0 1px rgba(0, 113, 202, 0.18), 0 12px 32px -18px rgba(0, 113, 202, 0.25);
  background: linear-gradient(180deg, #fff 72%, rgba(0, 113, 202, 0.04) 100%);
}
.gm-story3-media {
  aspect-ratio: 3 / 2;
  background: #f3f5f8;
  overflow: hidden;
  border-bottom: 1px solid var(--gm-border);
}
.gm-story3-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.gm-story3-body {
  padding: 24px 26px 28px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
}
.gm-story3-eb {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--gm-font-body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gm-text-subtle, #475872);
}
.gm-story3-eb .n {
  font-family: var(--gm-font-heading);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.04em;
  color: var(--gm-primary-blue);
  background: rgba(0, 113, 202, 0.1);
  border-radius: 999px;
  padding: 3px 8px;
}
.gm-story3-step.is-primary .gm-story3-eb .n {
  background: var(--gm-primary-blue);
  color: #fff;
}
.gm-story3-body h3 {
  font-family: var(--gm-font-heading);
  font-weight: 600;
  font-size: 22px;
  line-height: 1.2;
  letter-spacing: -0.01em;
  color: var(--gm-navy);
  margin: 2px 0 0;
  text-wrap: balance;
}
.gm-story3-body p {
  font-family: var(--gm-font-body);
  font-size: 14.5px;
  line-height: 1.55;
  color: var(--gm-text-subtle, #475872);
  margin: 0;
  text-wrap: pretty;
}
.gm-story3-cite {
  margin-top: auto;
  padding-top: 14px;
  border-top: 1px solid var(--gm-border);
  font-family: var(--gm-font-body);
  font-size: 12px;
  line-height: 1.45;
  color: var(--gm-text-subtle, #475872);
}
.gm-story3-foot {
  margin: 32px 0 0;
  font-family: var(--gm-font-body);
  font-size: 14px;
  color: var(--gm-text-muted);
}
.gm-story3-foot a {
  color: var(--gm-primary-blue);
  font-weight: 600;
}
.gm-story3-foot a:hover { text-decoration: underline; }

@media (max-width: 1040px) {
  .gm-story3-grid { grid-template-columns: 1fr; }
  .gm-story3 { padding: 72px 0 80px; }
}

/* =========================================================
   Publish-ready additions — CTAs, hero CTA row, contact grid
   ========================================================= */

/* Generic button system */
.gm-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--gm-font-body);
  font-size: 15px;
  font-weight: 600;
  letter-spacing: -0.005em;
  padding: 14px 22px;
  border-radius: var(--gm-radius-md, 8px);
  cursor: pointer;
  text-decoration: none;
  transition: background 180ms ease, border-color 180ms ease, color 180ms ease, transform 120ms ease;
  border: 1px solid transparent;
  white-space: nowrap;
}
.gm-btn svg {
  width: 16px;
  height: 16px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.gm-btn:active { transform: translateY(1px); }

.gm-btn-primary {
  background: var(--gm-primary-blue, #0071CA);
  color: #fff;
  border-color: var(--gm-primary-blue, #0071CA);
}
.gm-btn-primary:hover { background: #005CA8; border-color: #005CA8; }
.gm-btn-primary.on-dark {
  background: var(--gm-digital-blue, #27B1FA);
  color: var(--gm-navy, #0B1F3A);
  border-color: var(--gm-digital-blue, #27B1FA);
}
.gm-btn-primary.on-dark:hover { background: #5EC5FB; border-color: #5EC5FB; }

.gm-btn-ghost {
  background: transparent;
  color: var(--gm-navy, #0B1F3A);
  border-color: var(--gm-border-strong, #c7cdd6);
}
.gm-btn-ghost:hover {
  background: var(--gm-light-section, #F6F8FB);
  border-color: var(--gm-navy, #0B1F3A);
}
.gm-btn-ghost.on-dark {
  color: #fff;
  border-color: rgba(255,255,255,0.26);
}
.gm-btn-ghost.on-dark:hover {
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.55);
}

/* Hero CTA row */
.gm-hero-ctas {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 28px;
}

/* Contact grid */
.gm-contact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 40px;
}
.gm-contact-card {
  background: #fff;
  border: 1px solid var(--gm-border, #e1e5eb);
  border-radius: var(--gm-radius-lg, 14px);
  padding: 28px 28px 32px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition: border-color 200ms ease, box-shadow 200ms ease, transform 200ms ease;
}
.gm-contact-card:hover {
  border-color: var(--gm-border-strong, #c7cdd6);
  box-shadow: 0 6px 28px -12px rgba(11,31,58,0.14);
  transform: translateY(-1px);
}
.gm-contact-eb {
  display: inline-block;
  font-family: var(--gm-font-body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gm-primary-blue, #0071CA);
}
.gm-contact-card h3 {
  font-family: var(--gm-font-heading);
  font-weight: 600;
  font-size: 22px;
  line-height: 1.2;
  letter-spacing: -0.01em;
  color: var(--gm-navy, #0B1F3A);
  margin: 0;
}
.gm-contact-title {
  font-family: var(--gm-font-body);
  font-size: 14px;
  font-weight: 500;
  color: var(--gm-text-muted, #516173);
}
.gm-contact-card p {
  font-family: var(--gm-font-body);
  font-size: 14.5px;
  line-height: 1.55;
  color: var(--gm-text-subtle, #475872);
  margin: 6px 0 8px;
  text-wrap: pretty;
  flex: 1;
}
.gm-contact-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--gm-font-body);
  font-size: 14.5px;
  font-weight: 600;
  color: var(--gm-primary-blue, #0071CA);
  text-decoration: none;
  margin-top: auto;
}
.gm-contact-link svg {
  width: 14px;
  height: 14px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  transition: transform 180ms ease;
}
.gm-contact-link:hover { text-decoration: underline; text-underline-offset: 3px; }
.gm-contact-link:hover svg { transform: translateX(3px); }

.gm-contact-meta {
  display: grid;
  grid-template-columns: 1.3fr 1fr 2fr;
  gap: 32px;
  padding: 28px 32px;
  background: #fff;
  border: 1px solid var(--gm-border, #e1e5eb);
  border-radius: var(--gm-radius-lg, 14px);
  font-family: var(--gm-font-body);
  font-size: 14px;
  line-height: 1.5;
}
.gm-contact-meta-label {
  display: block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gm-text-muted, #516173);
  margin-bottom: 6px;
}
.gm-contact-meta address {
  font-style: normal;
  color: var(--gm-navy, #0B1F3A);
}
.gm-contact-meta a {
  color: var(--gm-navy, #0B1F3A);
  font-weight: 600;
  text-decoration: none;
}
.gm-contact-meta a:hover { color: var(--gm-primary-blue, #0071CA); }

@media (max-width: 900px) {
  .gm-contact-grid { grid-template-columns: 1fr; }
  .gm-contact-meta { grid-template-columns: 1fr; gap: 18px; padding: 24px; }
}


/* =============================================================
   Journey strip — the 3 stages before "the three paths"
   Compresses CLAUDE.md §2 patient journey into emotional setup.
   Intentionally quiet — narrative, not a comparison chart.
   ============================================================= */
/* =========================================================
   Beat 1 — Recognition (compounding spine)
   Three conversations, increasing weight down the page.
   ========================================================= */
.gm-recog {
  background: #FAF9F6;
  padding: 128px 0 112px;
  border-top: 1px solid var(--gm-border);
  position: relative;
}
.gm-recog-head {
  max-width: 760px;
  margin: 0 0 96px;
}
.gm-recog-eyebrow {
  display: inline-block;
  font-family: var(--gm-font-body);
  font-weight: 600;
  font-size: 11.5px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gm-text-subtle);
  margin-bottom: 22px;
}
.gm-recog-h2 {
  font-family: var(--gm-font-heading);
  font-weight: 500;
  font-size: clamp(32px, 3.8vw, 48px);
  line-height: 1.1;
  letter-spacing: -0.018em;
  color: var(--gm-navy);
  margin: 0;
  text-wrap: balance;
}
.gm-recog-h2 em {
  font-style: italic;
  font-weight: 500;
  color: var(--gm-navy);
}

/* The spine — single vertical line, weight increases top-to-bottom */
.gm-recog-spine {
  list-style: none;
  padding: 0;
  margin: 0;
  position: relative;
  max-width: 780px;
  padding-left: 44px;
}
.gm-recog-spine::before {
  content: "";
  position: absolute;
  left: 0;
  top: 10px;
  bottom: 10px;
  width: 1px;
  background: linear-gradient(
    to bottom,
    color-mix(in oklab, var(--gm-navy) 18%, transparent) 0%,
    color-mix(in oklab, var(--gm-navy) 38%, transparent) 50%,
    color-mix(in oklab, var(--gm-navy) 80%, transparent) 100%
  );
}
.gm-recog-step {
  position: relative;
  padding-bottom: 72px;
}
.gm-recog-step:last-child { padding-bottom: 0; }

/* Tick marks grow heavier as we descend */
.gm-recog-tick {
  position: absolute;
  left: -49px;
  top: 6px;
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: var(--gm-navy);
  opacity: 0.35;
  box-shadow: 0 0 0 4px #FAF9F6;
}
.is-step-2 .gm-recog-tick { opacity: 0.6; width: 13px; height: 13px; left: -50px; }
.is-step-3 .gm-recog-tick { opacity: 1;   width: 15px; height: 15px; left: -51px; }

.gm-recog-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 6px 14px;
  margin-bottom: 14px;
}
.gm-recog-when {
  font-family: var(--gm-font-heading);
  font-weight: 600;
  font-size: 12.5px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gm-text-subtle);
  white-space: nowrap;
}
.gm-recog-who {
  font-family: var(--gm-font-body);
  font-weight: 500;
  font-size: 13.5px;
  color: var(--gm-text-muted);
}

/* Quote: the typographic protagonist. Scales up, step by step. */
.gm-recog-quote {
  font-family: var(--gm-font-heading);
  font-style: italic;
  font-weight: 500;
  color: var(--gm-navy);
  letter-spacing: -0.02em;
  line-height: 1.1;
  margin: 0 0 14px;
  text-wrap: balance;
}
.is-step-1 .gm-recog-quote { font-size: clamp(24px, 2.6vw, 32px); }
.is-step-2 .gm-recog-quote { font-size: clamp(30px, 3.4vw, 42px); }
.is-step-3 .gm-recog-quote { font-size: clamp(40px, 4.8vw, 60px); line-height: 1.04; }

.gm-recog-desc {
  font-family: var(--gm-font-body);
  font-size: 15.5px;
  line-height: 1.6;
  color: var(--gm-text-muted);
  margin: 0;
  max-width: 560px;
  text-wrap: pretty;
}
.is-step-3 .gm-recog-desc {
  font-size: 16.5px;
  color: var(--gm-text-subtle);
  max-width: 600px;
}

/* Breathing room accumulates downward — the section runs out of room */
.is-step-1 { padding-bottom: 60px; }
.is-step-2 { padding-bottom: 84px; }
.is-step-3 { padding-bottom: 16px; }

@media (max-width: 720px) {
  .gm-recog { padding: 88px 0 80px; }
  .gm-recog-head { margin-bottom: 64px; }
  .gm-recog-spine { padding-left: 28px; }
  .gm-recog-tick { left: -33px; box-shadow: 0 0 0 3px #FAF9F6; }
  .is-step-2 .gm-recog-tick { left: -34px; }
  .is-step-3 .gm-recog-tick { left: -35px; }
  .is-step-1 { padding-bottom: 44px; }
  .is-step-2 { padding-bottom: 60px; }
}

/* =========================================================
   Beat 2 — Revelation (figure-led)
   The image carries the explanation. Copy attaches to it.
   ========================================================= */
.gm-reveal {
  background: #0A1B32;
  padding: 144px 0 152px;
  color: #fff;
}
.gm-reveal-head {
  max-width: 900px;
  margin: 0 0 88px;
}
.gm-reveal-h2 {
  font-family: var(--gm-font-heading);
  font-weight: 500;
  font-size: clamp(40px, 5.2vw, 72px);
  line-height: 1.02;
  letter-spacing: -0.024em;
  color: #fff;
  margin: 0 0 28px;
  text-wrap: balance;
  max-width: 820px;
}
.gm-reveal-h2 em {
  font-style: italic;
  font-weight: 500;
  color: var(--gm-accent-blue, #27B1FA);
}
.gm-reveal-lead {
  font-family: var(--gm-font-body);
  font-size: 18px;
  line-height: 1.6;
  color: rgba(255,255,255,0.74);
  margin: 0;
  max-width: 640px;
  text-wrap: pretty;
}
.gm-reveal-body {
  display: grid;
  grid-template-columns: minmax(360px, 1fr) minmax(360px, 1fr);
  gap: 96px;
  align-items: center;
}
.gm-reveal-statblock {
  max-width: 460px;
}
.gm-reveal-bignum {
  font-family: var(--gm-font-heading);
  font-weight: 700;
  font-size: clamp(120px, 16vw, 220px);
  line-height: 0.88;
  letter-spacing: -0.04em;
  color: var(--gm-accent-blue, #27B1FA);
  font-variant-numeric: tabular-nums;
  display: flex;
  align-items: flex-start;
  margin: 0 0 28px;
}
.gm-reveal-bignum .unit {
  font-size: 0.34em;
  font-weight: 500;
  letter-spacing: 0;
  padding-top: 0.38em;
  margin-left: 0.06em;
}
.gm-reveal-statlead {
  font-family: var(--gm-font-body);
  font-size: 19px;
  line-height: 1.45;
  font-weight: 400;
  color: rgba(255,255,255,0.92);
  margin: 0 0 24px;
  max-width: 420px;
  text-wrap: pretty;
}
.gm-reveal-cite {
  font-family: var(--gm-font-body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
  margin: 0;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,0.14);
  max-width: 340px;
}
.gm-reveal-figure {
  margin: 0;
}
.gm-reveal-img {
  width: 100%;
  height: auto;
  display: block;
  background: #F6F7F9;
  border-radius: 4px;
}
.gm-reveal-figcap {
  font-family: var(--gm-font-body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.48);
  margin-top: 18px;
}
@media (max-width: 960px) {
  .gm-reveal { padding: 96px 0 104px; }
  .gm-reveal-head { margin-bottom: 48px; }
  .gm-reveal-body {
    grid-template-columns: 1fr;
    gap: 56px;
  }
  .gm-reveal-bignum { font-size: clamp(96px, 22vw, 160px); }
}

/* =========================================================
   Three-paths: per-card tagline + word-based verdict
   Added with the 98.96% / Non-reversible rework.
   ========================================================= */
.gm-choice-tagline {
  font-family: var(--gm-font-heading);
  font-weight: 600;
  font-size: 17px;
  line-height: 1.35;
  letter-spacing: -0.005em;
  color: rgba(255,255,255,0.92);
  margin: 16px 0 0;
  text-wrap: balance;
}
.gm-choice-card.is-primary .gm-choice-tagline {
  color: var(--gm-navy, #0B1F3A);
}

/* Word-based verdict (Non-reversible) — replaces the big number but holds the same vertical rhythm */
.gm-choice-verdict .n.gm-choice-n-word {
  font-size: 36px;
  line-height: 1.02;
  font-weight: 600;
  letter-spacing: -0.015em;
}

/* Equal-height verdict islands across all three cards — keeps stat blocks aligned
   regardless of stamp/label copy length. */
.gm-choice-verdict {
  min-height: 188px;
}
