/* ============================================
   Grid & Haven V2 — Design System (Redesign)
   ============================================
   Editorial. Cinematic. Structured. Interactive.
   ============================================ */

/* --- Reset & Base --- */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  /* Warm Neutrals */
  --gh-50:  #FAFAF8;
  --gh-100: #F5F3EF;
  --gh-200: #EAE6DF;
  --gh-300: #D4CFC6;
  --gh-400: #B5AEA5;
  --gh-500: #918A82;
  --gh-600: #6B6560;
  --gh-700: #4A4540;
  --gh-800: #33302C;
  --gh-900: #1A1917;

  /* Pillar Accent Colors — Signal Clarity:
     Teal, Sage Green, Deep Navy, Charcoal */
  --pillar-connection:   #2E8E9E;
  --pillar-growth:       #6BA368;
  --pillar-independence: #2C4A6E;
  --pillar-privacy:      #5C5C5C;

  /* Pillar backgrounds */
  --pillar-connection-bg:   rgba(46, 142, 158, 0.12);
  --pillar-growth-bg:       rgba(107, 163, 104, 0.12);
  --pillar-independence-bg: rgba(44, 74, 110, 0.12);
  --pillar-privacy-bg:      rgba(92, 92, 92, 0.12);

  /* Functional */
  --bg-primary:   #FFFFFF;
  --bg-alt:       var(--gh-50);
  --bg-dark:      var(--gh-900);
  --bg-dark-elevated: var(--gh-800);
  --text-primary: var(--gh-900);
  --text-body:    var(--gh-700);
  --text-subtle:  var(--gh-500);
  --text-on-dark: rgba(255, 255, 255, 0.92);
  --text-on-dark-muted: rgba(255, 255, 255, 0.75);
  --border:       var(--gh-200);
  --accent:       var(--pillar-connection);

  /* Gradient */
  --gradient-pillars: linear-gradient(135deg, var(--pillar-connection), var(--pillar-growth), var(--pillar-independence), var(--pillar-privacy));

  /* Typography */
  --font-serif: 'DM Serif Display', Georgia, 'Times New Roman', serif;
  --font-sans:  'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-accent: 'Raleway', 'Inter', -apple-system, sans-serif;
  --font-display: 'DM Serif Display', Georgia, 'Times New Roman', serif;

  /* Spacing */
  --space-xs:  0.25rem;
  --space-sm:  0.5rem;
  --space-md:  1rem;
  --space-lg:  1.5rem;
  --space-xl:  2rem;
  --space-2xl: 3rem;
  --space-3xl: 4rem;
  --space-4xl: 6rem;
  --space-5xl: 8rem;
  --space-6xl: 10rem;

  /* Layout */
  --container:        72rem;
  --container-narrow: 42rem;

  /* Border Radius */
  --radius-sm: 6px;
  --radius-md: 8px;
  --radius-lg: 12px;
  --radius-xl: 16px;

  /* Transitions */
  --ease: cubic-bezier(0.25, 0.1, 0.25, 1);
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
  --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
}

html {
  font-size: 112.5%;            /* 18px base — senior-friendly */
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-sans);
  font-size: 1.0625rem;
  line-height: 1.7;
  color: var(--text-body);
  background: var(--bg-primary);
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }


/* --- Container --- */
.gh-container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--space-xl);
}

.gh-container-narrow {
  max-width: var(--container-narrow);
  margin: 0 auto;
  padding: 0 var(--space-xl);
}


/* --- Typography --- */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-serif);
  color: var(--text-primary);
  line-height: 1.2;
  font-weight: 400;
}

h1 { font-size: clamp(2.25rem, 5vw, 3.5rem); letter-spacing: -0.02em; }
h2 { font-size: clamp(1.75rem, 4vw, 2.5rem); letter-spacing: -0.01em; }
h3 { font-size: clamp(1.125rem, 2.5vw, 1.375rem); }

/* Display scale (editorial) */
.gh-display-xl {
  font-size: clamp(1.75rem, 3.8vw, 2.75rem);
  letter-spacing: -0.03em;
  line-height: 1.15;
}

.gh-display-lg {
  font-size: clamp(2rem, 5vw, 3.25rem);
  letter-spacing: -0.02em;
  line-height: 1.15;
}

.gh-prose p {
  font-size: 1.125rem;
  line-height: 1.8;
  margin-bottom: var(--space-lg);
  color: var(--text-body);
}
.gh-prose p:last-child { margin-bottom: 0; }

.gh-prose ul, .gh-prose ol {
  margin-bottom: var(--space-lg);
  padding-left: var(--space-xl);
}
.gh-prose li {
  margin-bottom: var(--space-sm);
  line-height: 1.7;
  font-size: 1.125rem;
}

.gh-lead {
  font-size: 1.25rem;
  line-height: 1.7;
  color: var(--text-primary);
  font-weight: 400;
}

.gh-text-subtle {
  color: var(--text-subtle);
  font-size: 1rem;
}

/* Pull quote */
.gh-pullquote {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: clamp(1.375rem, 3vw, 1.75rem);
  line-height: 1.5;
  padding: var(--space-xl) 0 var(--space-xl) var(--space-xl);
  border-left: 3px solid var(--pillar-growth);
  margin: var(--space-xl) 0;
  color: var(--gh-300);
}


/* ============================================
   NAVIGATION
   ============================================ */
.gh-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(26, 25, 23, 0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  transition: background 0.3s var(--ease);
}

.gh-nav.is-light {
  background: rgba(255, 255, 255, 0.95);
  border-bottom-color: var(--gh-200);
}
.gh-nav.is-light .gh-wordmark,
.gh-nav.is-light .gh-nav-links a,
.gh-nav.is-light .gh-menu-toggle { color: var(--text-primary); }
.gh-nav.is-light .gh-nav-cta {
  background: var(--gh-900);
  color: #fff !important;
}
.gh-nav.is-light .gh-nav-cta:hover {
  background: var(--gh-700);
}

.gh-nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 4rem;
}

.gh-wordmark {
  font-family: var(--font-serif);
  font-size: 1.375rem;
  color: #fff;
  letter-spacing: -0.01em;
  text-decoration: none;
}

.gh-amp {
  color: var(--accent);
  font-style: italic;
}

.gh-nav-links {
  display: none;
  align-items: center;
  gap: var(--space-xl);
}

.gh-nav-links a {
  position: relative;
  font-family: var(--font-accent);
  font-size: 0.8125rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.7);
  transition: color 0.2s var(--ease);
  letter-spacing: 0.02em;
}
.gh-nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--gradient-pillars);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.25s var(--ease);
}
.gh-nav-links a:hover,
.gh-nav-links a.is-active { color: #fff; }
.gh-nav-links a:hover::after,
.gh-nav-links a.is-active::after { transform: scaleX(1); }

.gh-nav-cta {
  display: inline-flex;
  align-items: center;
  padding: 0.5rem 1.25rem;
  background: #FFFFFF;
  color: var(--text-primary) !important;
  border-radius: var(--radius-md);
  font-family: var(--font-accent);
  font-size: 0.8125rem;
  font-weight: 600;
  transition: background 0.2s var(--ease), transform 0.15s var(--ease);
}
.gh-nav-cta::after { display: none; }
.gh-nav-cta:hover {
  background: var(--gh-100);
  transform: translateY(-1px);
}

.gh-menu-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  background: none;
  border: none;
  cursor: pointer;
  color: #fff;
}

@media (min-width: 768px) {
  .gh-nav-links { display: flex; }
  .gh-menu-toggle { display: none; }
}


/* --- Mobile Menu --- */
.gh-mobile-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 200;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s var(--ease);
}
.gh-mobile-backdrop.is-visible {
  opacity: 1;
  pointer-events: auto;
}

.gh-mobile-menu {
  position: fixed;
  top: 0; right: 0; bottom: 0;
  width: min(85vw, 320px);
  background: var(--bg-primary);
  z-index: 300;
  transform: translateX(100%);
  transition: transform 0.3s var(--ease);
  display: flex;
  flex-direction: column;
  overflow-y: auto;
}
.gh-mobile-menu.is-open { transform: translateX(0); }

.gh-mobile-menu-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--space-md) var(--space-xl);
  height: 4rem;
  border-bottom: 1px solid var(--gh-200);
}
.gh-mobile-menu-header .gh-wordmark { color: var(--text-primary); }

.gh-mobile-close {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--text-primary);
}

.gh-mobile-menu-links {
  display: flex;
  flex-direction: column;
  padding: var(--space-xl);
  gap: var(--space-sm);
}
.gh-mobile-menu-links a {
  font-size: 1rem;
  font-weight: 500;
  color: var(--text-body);
  padding: var(--space-sm) 0;
  border-bottom: 1px solid var(--gh-100);
  transition: color 0.2s var(--ease);
}
.gh-mobile-menu-links a:hover { color: var(--text-primary); }
.gh-mobile-menu-links .gh-btn { margin-top: var(--space-lg); border-bottom: none; }


/* ============================================
   BUTTONS
   ============================================ */
.gh-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-accent);
  font-weight: 600;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: all 0.2s var(--ease);
}

.gh-btn-primary {
  background: var(--text-primary);
  color: #FFFFFF;
  padding: 0.875rem 2rem;
  border-radius: var(--radius-md);
  font-size: 0.9375rem;
}
.gh-btn-primary:hover {
  background: var(--gh-800);
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
}

.gh-btn-secondary {
  background: transparent;
  color: #fff;
  padding: 0.875rem 2rem;
  border-radius: var(--radius-md);
  font-size: 0.9375rem;
  border: 1.5px solid rgba(255, 255, 255, 0.3);
}
.gh-btn-secondary:hover {
  border-color: #fff;
  background: rgba(255, 255, 255, 0.08);
  transform: translateY(-1px);
}

.gh-btn-lg {
  padding: 1rem 2.5rem;
  font-size: 1rem;
}

.gh-btn-full { width: 100%; text-align: center; }

.gh-btn:focus-visible {
  outline: 3px solid var(--accent);
  outline-offset: 2px;
}


/* ============================================
   SECTIONS
   ============================================ */
.gh-section {
  padding: var(--space-4xl) 0;
}
.gh-section-alt {
  background: var(--bg-alt);
}
.gh-section-dark {
  background: var(--bg-dark-elevated);
  color: var(--text-on-dark);
}
.gh-section-dark h2,
.gh-section-dark h3 { color: #fff; }
.gh-section-dark p { color: var(--text-on-dark-muted); }
.gh-section-dark .gh-section-label { color: var(--pillar-connection); }

.gh-section-header {
  text-align: center;
  margin-bottom: var(--space-3xl);
  max-width: 40rem;
  margin-left: auto;
  margin-right: auto;
}

.gh-section-label {
  font-family: var(--font-accent);
  font-size: 0.8125rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--accent);
  margin-bottom: var(--space-md);
}

/* Rotate label colors per section */
.gh-label-connection  { color: var(--pillar-connection); }
.gh-label-growth      { color: var(--pillar-growth); }
.gh-label-independence { color: var(--pillar-independence); }
.gh-label-privacy      { color: var(--pillar-privacy); }

.gh-section-header h2 { margin-bottom: var(--space-lg); }

.gh-section-intro {
  font-size: 1.125rem;
  line-height: 1.7;
  color: var(--text-body);
}

.gh-section-closing {
  text-align: center;
  font-size: 1rem;
  color: var(--text-subtle);
  margin-top: var(--space-3xl);
  max-width: 36rem;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.7;
}

/* Gradient divider */
.gh-gradient-rule {
  height: 2px;
  background: var(--gradient-pillars);
  opacity: 0.4;
}

@media (min-width: 768px) {
  .gh-section { padding: var(--space-5xl) 0; }
}


/* ============================================
   HERO (Dark, Split Layout)
   ============================================ */
.gh-hero {
  position: relative;
  padding: calc(4rem + var(--space-4xl)) 0 var(--space-4xl);
  background: var(--bg-dark);
  color: var(--text-on-dark);
  overflow: hidden;
  min-height: 100vh;
  display: flex;
  align-items: center;
}

.gh-hero-grid-bg {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 4rem 4rem;
  opacity: 1;
  pointer-events: none;
}

.gh-hero-split {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-3xl);
  align-items: center;
}

.gh-hero-text {
  text-align: left;
}

.gh-hero-label {
  font-family: var(--font-accent);
  font-size: 0.8125rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--pillar-connection);
  margin-bottom: var(--space-xl);
}

.gh-hero h1 {
  color: #fff;
  margin-bottom: var(--space-xl);
}

.gh-hero-body {
  font-size: 1.125rem;
  line-height: 1.7;
  color: var(--text-on-dark-muted);
  max-width: 34rem;
  margin-bottom: var(--space-lg);
}

.gh-hero-promise {
  font-family: var(--font-display);
  font-size: 1.375rem;
  font-style: italic;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: var(--space-2xl);
  max-width: 34rem;
}

.gh-pillar-row {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm);
  margin-bottom: var(--space-2xl);
}

.gh-pillar-chip {
  font-family: var(--font-accent);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  padding: 0.375rem 1rem;
  border-radius: 100px;
  border: 1.5px solid;
  transition: background 0.2s ease, border-color 0.2s ease;
  cursor: pointer;
}
.gh-pillar-chip:hover {
  opacity: 0.7;
}

.gh-pillar-connection {
  color: rgba(255, 255, 255, 0.9);
  border-color: var(--pillar-connection);
  background: transparent;
}
.gh-pillar-growth {
  color: rgba(255, 255, 255, 0.9);
  border-color: var(--pillar-growth);
  background: transparent;
}
.gh-pillar-independence {
  color: rgba(255, 255, 255, 0.9);
  border-color: var(--pillar-independence);
  background: transparent;
}
.gh-pillar-privacy {
  color: rgba(255, 255, 255, 0.9);
  border-color: var(--pillar-privacy);
  background: transparent;
}

.gh-hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-md);
}

.gh-hero .gh-btn-primary {
  background: #fff;
  color: var(--text-primary);
}
.gh-hero .gh-btn-primary:hover {
  background: var(--gh-100);
}

.gh-compliance {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.3);
  margin-top: var(--space-3xl);
  line-height: 1.6;
}

/* Hero Quadrant Visual */
.gh-hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
}

.gh-hero-quadrant {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3px;
  width: 100%;
  max-width: 38rem;
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.gh-hq-cell {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: var(--space-md);
  padding: var(--space-3xl) var(--space-xl);
  text-align: center;
  transition: all 0.3s var(--ease);
}

.gh-hq-connection    { background: #1f6e7c; }
.gh-hq-growth        { background: #4a7a48; }
.gh-hq-independence  { background: #223a56; }
.gh-hq-privacy       { background: #3a3a3a; }

.gh-hq-cell:hover {
  transform: scale(1.03);
  box-shadow: 0 0 30px rgba(212, 185, 60, 0.6), 0 0 60px rgba(212, 185, 60, 0.2), inset 0 0 0 2px rgba(212, 185, 60, 0.5);
}
.gh-hq-connection:hover    { background: #278490; }
.gh-hq-growth:hover        { background: #568e54; }
.gh-hq-independence:hover  { background: #2c4a6e; }
.gh-hq-privacy:hover       { background: #4a4a4a; }

.gh-hq-cell svg {
  width: 40px;
  height: 40px;
  opacity: 1;
  color: #fff;
}

.gh-hq-label {
  font-family: var(--font-accent);
  font-size: 1.125rem;
  font-weight: 600;
  color: #fff;
  letter-spacing: 0.02em;
}

.gh-hq-center {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  width: 7.5rem;
  height: 7.5rem;
  background: var(--gh-800);
  border: 3px solid rgba(255, 255, 255, 0.4);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.gh-hq-center span {
  font-family: var(--font-accent);
  font-size: 0.6875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: rgba(255, 255, 255, 0.85);
  text-align: center;
  line-height: 1.3;
}

@media (min-width: 900px) {
  .gh-hero-split {
    grid-template-columns: 1.2fr 0.8fr;
  }
  .gh-hero-quadrant {
    max-width: 40rem;
  }
}

@media (max-width: 600px) {
  .gh-hero { min-height: auto; padding-top: calc(4rem + var(--space-2xl)); }
  .gh-hero h1 br { display: none; }
  .gh-hero-visual { margin-top: var(--space-lg); }
  .gh-hero-quadrant { max-width: 24rem; margin: 0 auto; }
}


/* ============================================
   SECTION 2: RECOGNITION (Asymmetric)
   ============================================ */
/* Section 2 subtle background — warm gradient with texture */
#recognition {
  position: relative;
  background: linear-gradient(180deg, var(--gh-50) 0%, #FFFFFF 40%, var(--gh-50) 100%);
  overflow: hidden;
}
#recognition::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 50% at 20% 40%, rgba(46, 142, 158, 0.04), transparent),
    radial-gradient(ellipse 60% 40% at 80% 60%, rgba(107, 163, 104, 0.04), transparent);
  pointer-events: none;
}

.gh-recognition-layout {
  position: relative;
  text-align: center;
  max-width: none;
  margin: 0 auto;
}

.gh-recognition-headline h2 {
  line-height: 1.15;
  margin-bottom: var(--space-2xl);
}

.gh-recognition-content {
  padding: 0;
  background: none;
  border: none;
  border-image: none;
}

.gh-question-list {
  list-style: none;
  padding: 0;
  margin: 0 calc(-1 * var(--space-xl)) var(--space-2xl);
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 0.6rem 0.5rem;
}
.gh-question-list li {
  position: relative;
  padding: 0.5rem 1.1rem 0.5rem 1.4rem;
  font-family: var(--font-display);
  font-size: 0.9375rem;
  font-style: italic;
  line-height: 1.4;
  color: var(--text-body);
  background: rgba(255, 255, 255, 0.45);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: none;
  border-radius: 100px;
  transition: opacity 0.3s ease, transform 0.3s ease, background 0.3s ease;
}
/* F: Pillar color dot */
.gh-question-list li::after {
  content: '';
  position: absolute;
  left: 0.55rem;
  top: 50%;
  transform: translateY(-50%);
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gh-300);
}
.gh-question-list li[data-pillar="connection"]::after { background: #2E8E9E; }
.gh-question-list li[data-pillar="growth"]::after { background: #6BA368; }
.gh-question-list li[data-pillar="independence"]::after { background: #2c4a6e; }
.gh-question-list li[data-pillar="privacy"]::after { background: #7a7a7a; }
/* A: Subtle pillar tint when filtered */
.gh-question-list.is-filtered li[data-pillar="connection"] { background: rgba(46, 142, 158, 0.08); }
.gh-question-list.is-filtered li[data-pillar="growth"] { background: rgba(107, 163, 104, 0.08); }
.gh-question-list.is-filtered li[data-pillar="independence"] { background: rgba(44, 74, 110, 0.08); }
.gh-question-list.is-filtered li[data-pillar="privacy"] { background: rgba(92, 92, 92, 0.08); }
/* Varied sizes for organic cloud feel */
.gh-question-list li:nth-child(3n+1) { font-size: 1.1rem; padding: 0.55rem 1.3rem 0.55rem 1.5rem; }
.gh-question-list li:nth-child(5n+2) { font-size: 0.8rem; padding: 0.3rem 0.8rem 0.3rem 1.2rem; }
.gh-question-list li:nth-child(7n+3) { font-size: 1.2rem; padding: 0.6rem 1.4rem 0.6rem 1.6rem; }
.gh-question-list li:nth-child(4n)   { font-size: 0.85rem; padding: 0.35rem 0.9rem 0.35rem 1.3rem; }
/* E: Mixed font weights for emphasis */
.gh-question-list li:nth-child(5n+1) { font-weight: 700; font-style: normal; }
.gh-question-list li:nth-child(3n+2) { font-weight: 300; }
/* Staggered vertical offsets for organic scatter */
.gh-question-list li:nth-child(3n)   { transform: translateY(-3px); }
.gh-question-list li:nth-child(5n+1) { transform: translateY(4px); }
.gh-question-list li:nth-child(7n+2) { transform: translateY(-5px); }
.gh-question-list li:nth-child(4n+3) { transform: translateY(3px); }
/* Varied opacity for depth */
.gh-question-list li:nth-child(6n+1) { opacity: 0.7; }
.gh-question-list li:nth-child(6n+4) { opacity: 0.85; }
.gh-question-list li::before {
  display: none;
}

/* Kicker line — the payoff */
.gh-recognition-content .gh-text-subtle {
  font-family: var(--font-serif);
  font-size: clamp(1rem, 2vw, 1.125rem);
  font-style: italic;
  color: var(--text-subtle);
  line-height: 1.5;
  margin-top: var(--space-xl);
  padding-top: var(--space-xl);
  position: relative;
}
.gh-recognition-content .gh-text-subtle::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 3rem;
  height: 2px;
  background: var(--gradient-pillars);
  opacity: 0.6;
}
.gh-recognition-content .gh-text-subtle strong {
  display: block;
  font-family: var(--font-serif);
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  font-style: normal;
  font-weight: 400;
  color: var(--text-primary);
  letter-spacing: -0.02em;
  margin-top: var(--space-md);
  background: var(--gradient-pillars);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Bridge line — connects kicker to next section */
.gh-kicker-bridge {
  font-family: var(--font-accent);
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-subtle);
  margin-top: var(--space-xl);
  opacity: 0.55;
}

.gh-question-filters {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--space-sm);
  margin-bottom: var(--space-xl);
}

.gh-question-filter {
  font-family: var(--font-accent);
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  padding: 0.65rem 1.75rem;
  border-radius: 100px;
  border: 2px solid var(--gh-300);
  background: transparent;
  color: var(--text-body);
  cursor: pointer;
  transition: all 0.25s ease;
  animation: pillBounce 3s ease-in-out infinite;
}

.gh-question-filter:nth-child(2) { animation-delay: 0.3s; }
.gh-question-filter:nth-child(3) { animation-delay: 0.6s; }
.gh-question-filter:nth-child(4) { animation-delay: 0.9s; }
.gh-question-filter:nth-child(5) { animation-delay: 1.2s; }

@keyframes pillBounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-4px); }
}

.gh-question-filter:hover {
  opacity: 0.85;
}

.gh-question-filter.is-active {
  background: var(--gh-800);
  border-color: var(--gh-800);
  color: #fff;
}

.gh-question-filter[data-filter="connection"] {
  border-color: #2E8E9E;
  color: #2E8E9E;
}
.gh-question-filter[data-filter="growth"] {
  border-color: #6BA368;
  color: #6BA368;
}
.gh-question-filter[data-filter="independence"] {
  border-color: #4a6fa5;
  color: #4a6fa5;
}
.gh-question-filter[data-filter="privacy"] {
  border-color: #7a7a7a;
  color: #7a7a7a;
}

.gh-question-filter[data-filter="connection"].is-active {
  background: #2E8E9E;
  border-color: #2E8E9E;
  color: #fff;
}
.gh-question-filter[data-filter="growth"].is-active {
  background: #6BA368;
  border-color: #6BA368;
  color: #fff;
}
.gh-question-filter[data-filter="independence"].is-active {
  background: #2c4a6e;
  border-color: #2c4a6e;
  color: #fff;
}
.gh-question-filter[data-filter="privacy"].is-active {
  background: #5C5C5C;
  border-color: #5C5C5C;
  color: #fff;
}

/* Smooth filter transition instead of instant hide */
.gh-question-list li.is-hidden {
  opacity: 0;
  transform: scale(0.85) translateY(8px);
  pointer-events: none;
  position: absolute;
  width: 0;
  height: 0;
  padding: 0;
  margin: 0;
  overflow: hidden;
}
.gh-question-list li.is-fading {
  opacity: 0;
  transform: scale(0.92) translateY(4px);
}

/* Question pill hover — gentle lift + pillar glow */
.gh-question-list li:hover {
  transform: translateY(-3px) scale(1.04);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
  opacity: 1 !important;
  z-index: 1;
}
.gh-question-list li[data-pillar="connection"]:hover {
  box-shadow: 0 4px 20px rgba(46, 142, 158, 0.2);
}
.gh-question-list li[data-pillar="growth"]:hover {
  box-shadow: 0 4px 20px rgba(107, 163, 104, 0.2);
}
.gh-question-list li[data-pillar="independence"]:hover {
  box-shadow: 0 4px 20px rgba(44, 74, 110, 0.2);
}
.gh-question-list li[data-pillar="privacy"]:hover {
  box-shadow: 0 4px 20px rgba(92, 92, 92, 0.15);
}

/* Staggered entrance animation for question cloud */
@keyframes questionFadeIn {
  from {
    opacity: 0;
    transform: translateY(12px) scale(0.9);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}
.gh-question-list.is-animating li {
  opacity: 0;
  animation: questionFadeIn 0.5s var(--ease-out-expo) forwards;
}
.gh-question-list.is-animating li:nth-child(1) { animation-delay: 0.02s; }
.gh-question-list.is-animating li:nth-child(2) { animation-delay: 0.05s; }
.gh-question-list.is-animating li:nth-child(3) { animation-delay: 0.08s; }
.gh-question-list.is-animating li:nth-child(4) { animation-delay: 0.11s; }
.gh-question-list.is-animating li:nth-child(5) { animation-delay: 0.14s; }
.gh-question-list.is-animating li:nth-child(6) { animation-delay: 0.17s; }
.gh-question-list.is-animating li:nth-child(7) { animation-delay: 0.20s; }
.gh-question-list.is-animating li:nth-child(8) { animation-delay: 0.23s; }
.gh-question-list.is-animating li:nth-child(9) { animation-delay: 0.26s; }
.gh-question-list.is-animating li:nth-child(10) { animation-delay: 0.29s; }
.gh-question-list.is-animating li:nth-child(n+11) { animation-delay: 0.32s; }
.gh-question-list.is-animating li:nth-child(n+16) { animation-delay: 0.38s; }
.gh-question-list.is-animating li:nth-child(n+21) { animation-delay: 0.44s; }
.gh-question-list.is-animating li:nth-child(n+26) { animation-delay: 0.50s; }
.gh-question-list.is-animating li:nth-child(n+31) { animation-delay: 0.56s; }
.gh-question-list.is-animating li:nth-child(n+36) { animation-delay: 0.62s; }


/* ============================================
   SECTION 3: PILLAR CARDS
   ============================================ */
.gh-pillar-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-lg);
  max-width: 56rem;
  margin: 0 auto;
}

.gh-pillar-card {
  background: var(--bg-primary);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: var(--space-2xl);
  transition: all 0.3s var(--ease);
  border-top: 4px solid transparent;
  position: relative;
  overflow: hidden;
}
.gh-pillar-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--gradient-pillars);
  transform: scaleX(0);
  transition: transform 0.3s var(--ease);
}
.gh-pillar-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.08);
}
.gh-pillar-card:hover::after { transform: scaleX(1); }

.gh-pillar-card-connection  { border-top-color: var(--pillar-connection); }
.gh-pillar-card-growth      { border-top-color: var(--pillar-growth); }
.gh-pillar-card-independence { border-top-color: var(--pillar-independence); }
.gh-pillar-card-privacy      { border-top-color: var(--pillar-privacy); }

.gh-pillar-card-connection:hover  { background: rgba(122, 158, 142, 0.04); }
.gh-pillar-card-growth:hover      { background: rgba(181, 168, 130, 0.04); }
.gh-pillar-card-independence:hover { background: rgba(196, 146, 154, 0.04); }
.gh-pillar-card-privacy:hover      { background: rgba(138, 127, 118, 0.04); }

.gh-pillar-icon {
  width: 3rem;
  height: 3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-lg);
  transition: transform 0.3s var(--ease-spring);
}
.gh-pillar-card:hover .gh-pillar-icon { transform: translateY(-3px); }

.gh-pillar-card-connection .gh-pillar-icon  { color: var(--pillar-connection); }
.gh-pillar-card-growth .gh-pillar-icon      { color: var(--pillar-growth); }
.gh-pillar-card-independence .gh-pillar-icon { color: var(--pillar-independence); }
.gh-pillar-card-privacy .gh-pillar-icon      { color: var(--pillar-privacy); }

.gh-pillar-card h3 { margin-bottom: var(--space-sm); }
.gh-pillar-card p { font-size: 1rem; line-height: 1.7; color: var(--text-body); }

@media (min-width: 600px) { .gh-pillar-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 900px) {
  .gh-pillar-grid { grid-template-columns: repeat(4, 1fr); }
  .gh-pillar-card { padding: var(--space-xl); }
}


/* ============================================
   SECTION 4: INTERACTIVE FRAMEWORK
   ============================================ */
.gh-fw-interactive {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3px;
  max-width: 36rem;
  margin: 0 auto;
  border-radius: var(--radius-xl);
  overflow: hidden;
  background: var(--gh-200);
}

.gh-fw-quadrant {
  padding: var(--space-2xl) var(--space-lg);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-xs);
  cursor: pointer;
  transition: all 0.3s var(--ease);
  outline: none;
}

.gh-fw-connection    { background: rgba(122, 158, 142, 0.08); }
.gh-fw-growth        { background: rgba(181, 168, 130, 0.08); }
.gh-fw-independence  { background: rgba(196, 146, 154, 0.08); }
.gh-fw-privacy       { background: rgba(138, 127, 118, 0.08); }

.gh-fw-quadrant:hover,
.gh-fw-quadrant:focus-visible {
  z-index: 1;
}
.gh-fw-connection:hover, .gh-fw-connection.is-active    { background: rgba(122, 158, 142, 0.18); }
.gh-fw-growth:hover, .gh-fw-growth.is-active            { background: rgba(181, 168, 130, 0.18); }
.gh-fw-independence:hover, .gh-fw-independence.is-active { background: rgba(196, 146, 154, 0.18); }
.gh-fw-privacy:hover, .gh-fw-privacy.is-active          { background: rgba(138, 127, 118, 0.18); }

.gh-fw-icon {
  margin-bottom: var(--space-xs);
  color: var(--text-subtle);
  transition: transform 0.3s var(--ease-spring);
}
.gh-fw-connection .gh-fw-icon    { color: var(--pillar-connection); }
.gh-fw-growth .gh-fw-icon        { color: var(--pillar-growth); }
.gh-fw-independence .gh-fw-icon  { color: var(--pillar-independence); }
.gh-fw-privacy .gh-fw-icon       { color: var(--pillar-privacy); }

.gh-fw-quadrant:hover .gh-fw-icon { transform: scale(1.15); }

.gh-fw-label {
  font-family: var(--font-accent);
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text-primary);
  letter-spacing: 0.02em;
}

.gh-fw-desc {
  font-size: 0.75rem;
  color: var(--text-subtle);
}

.gh-fw-detail {
  font-size: 0.8125rem;
  line-height: 1.6;
  color: var(--text-body);
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transition: max-height 0.4s var(--ease), opacity 0.3s var(--ease), margin 0.3s var(--ease);
  margin-top: 0;
}
.gh-fw-quadrant.is-active .gh-fw-detail {
  max-height: 6rem;
  opacity: 1;
  margin-top: var(--space-sm);
}

.gh-fw-center-label {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  width: 4.5rem;
  height: 4.5rem;
  background: var(--bg-primary);
  border: 2px solid var(--gh-300);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
}
.gh-fw-center-label span {
  font-family: var(--font-accent);
  font-size: 0.5625rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--text-subtle);
  text-align: center;
  line-height: 1.3;
}


/* ============================================
   SECTION 5: STEPS
   ============================================ */
.gh-steps {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-xl);
  max-width: 56rem;
  margin: 0 auto;
}

.gh-step {
  background: var(--bg-primary);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: var(--space-2xl);
  transition: all 0.3s var(--ease);
}
.gh-step:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
}

.gh-step-number {
  font-family: var(--font-serif);
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  margin-bottom: var(--space-md);
  line-height: 1;
  transition: transform 0.4s var(--ease-spring);
}
/* Colored step numbers */
.gh-step:nth-child(1) .gh-step-number { color: var(--pillar-connection); }
.gh-step:nth-child(2) .gh-step-number { color: var(--pillar-growth); }
.gh-step:nth-child(3) .gh-step-number { color: var(--pillar-independence); }

.gh-step h3 { margin-bottom: var(--space-md); }
.gh-step p {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text-body);
  margin-bottom: var(--space-md);
}
.gh-step p:last-child { margin-bottom: 0; }
.gh-step ul { padding-left: var(--space-lg); margin: 0; }
.gh-step li {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text-body);
  margin-bottom: var(--space-xs);
}

@media (min-width: 768px) {
  .gh-steps { grid-template-columns: repeat(3, 1fr); }
}


/* --- Next-Move Map --- */
/* --- Next-Move Map Infographic --- */
/* ---- Next-Move Map Infographic ---- */
.gh-next-move-map {
  max-width: 44rem;
  margin: var(--space-4xl) auto 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--bg-primary);
  box-shadow:
    0 1px 3px rgba(0,0,0,0.04),
    0 8px 32px rgba(0,0,0,0.07),
    0 24px 48px rgba(0,0,0,0.04);
  border: 1px solid var(--gh-200);
}

/* Header */
.gh-nmm-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--space-md) var(--space-xl);
  background: var(--gh-900);
  color: var(--text-on-dark);
}
.gh-nmm-header-text {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  font-size: 0.9375rem;
}
.gh-nmm-header-sub {
  font-family: var(--font-accent);
  font-size: 0.6875rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(255,255,255,0.45);
}
.gh-nmm-badge {
  display: inline-block;
  font-family: var(--font-accent);
  font-size: 0.625rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 0.15rem 0.55rem;
  border-radius: 100px;
  background: rgba(255,255,255,0.12);
  color: rgba(255,255,255,0.65);
  border: 1px solid rgba(255,255,255,0.1);
}

/* Situation */
.gh-nmm-situation {
  padding: var(--space-xl) var(--space-2xl);
  background: var(--gh-50);
  border-bottom: 1px solid var(--gh-100);
  text-align: center;
}
.gh-nmm-situation-label {
  display: block;
  font-family: var(--font-accent);
  font-size: 0.6875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--text-subtle);
  margin-bottom: var(--space-sm);
}
.gh-nmm-situation p {
  font-family: var(--font-serif);
  font-size: 1.1875rem;
  color: var(--text-primary);
  letter-spacing: -0.01em;
  line-height: 1.5;
}

/* Analysis section */
.gh-nmm-analysis {
  padding: var(--space-xl) var(--space-2xl) var(--space-lg);
}
.gh-nmm-section-label {
  display: block;
  font-family: var(--font-accent);
  font-size: 0.6875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--text-subtle);
  margin-bottom: var(--space-lg);
}

/* Pillar rows — vertical stack */
.gh-nmm-pillar-row {
  display: grid;
  grid-template-columns: 9rem 1fr 3.5rem;
  align-items: center;
  gap: var(--space-md);
  padding: var(--space-md) 0;
  border-top: 1px solid var(--gh-100);
  position: relative;
}
.gh-nmm-pillar-row:last-child {
  border-bottom: 1px solid var(--gh-100);
}

/* Pillar-colored left accent */
.gh-nmm-pillar-row::before {
  content: '';
  position: absolute;
  left: calc(var(--space-2xl) * -1);
  top: 0;
  bottom: 0;
  width: 3px;
}
.gh-nmm-pillar-row[data-pillar="connection"]::before   { background: var(--pillar-connection); }
.gh-nmm-pillar-row[data-pillar="growth"]::before        { background: var(--pillar-growth); }
.gh-nmm-pillar-row[data-pillar="independence"]::before  { background: var(--pillar-independence); }
.gh-nmm-pillar-row[data-pillar="privacy"]::before       { background: var(--pillar-privacy); }

.gh-nmm-pillar-info {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}
.gh-nmm-pillar-name {
  font-family: var(--font-accent);
  font-size: 0.8125rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--text-primary);
}
.gh-nmm-pillar-note {
  font-size: 0.8125rem;
  color: var(--text-subtle);
  line-height: 1.3;
}

/* Gauge bar — prominent */
.gh-nmm-gauge {
  width: 100%;
}
.gh-nmm-gauge-track {
  width: 100%;
  height: 8px;
  background: var(--gh-100);
  border-radius: 4px;
  overflow: hidden;
}
.gh-nmm-gauge-fill {
  height: 100%;
  width: var(--fill);
  border-radius: 4px;
  transition: width 1s var(--ease-out-expo);
}
.gh-nmm-pillar-row[data-pillar="connection"] .gh-nmm-gauge-fill   { background: var(--pillar-connection); }
.gh-nmm-pillar-row[data-pillar="growth"] .gh-nmm-gauge-fill       { background: var(--pillar-growth); }
.gh-nmm-pillar-row[data-pillar="independence"] .gh-nmm-gauge-fill { background: var(--pillar-independence); }
.gh-nmm-pillar-row[data-pillar="privacy"] .gh-nmm-gauge-fill      { background: var(--pillar-privacy); }

.gh-nmm-gauge-label {
  font-family: var(--font-accent);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  text-align: right;
}
.gh-nmm-pillar-row[data-pillar="connection"] .gh-nmm-gauge-label   { color: var(--pillar-connection); }
.gh-nmm-pillar-row[data-pillar="growth"] .gh-nmm-gauge-label       { color: var(--pillar-growth); }
.gh-nmm-pillar-row[data-pillar="independence"] .gh-nmm-gauge-label { color: var(--pillar-independence); }
.gh-nmm-pillar-row[data-pillar="privacy"] .gh-nmm-gauge-label      { color: var(--pillar-privacy); }

/* Paths Forward */
.gh-nmm-paths {
  padding: var(--space-lg) var(--space-2xl) var(--space-2xl);
}
.gh-nmm-path-cards {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}
.gh-nmm-path-card {
  display: flex;
  align-items: flex-start;
  gap: var(--space-md);
  padding: var(--space-md) var(--space-lg);
  border-radius: var(--radius-md);
  border: 1px solid var(--gh-200);
  background: var(--bg-primary);
  transition: border-color 0.2s, box-shadow 0.2s;
}
.gh-nmm-path-card:hover {
  border-color: var(--gh-300);
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}
.gh-nmm-path-num {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 1.75rem;
  height: 1.75rem;
  border-radius: 50%;
  background: var(--gh-100);
  color: var(--text-primary);
  font-family: var(--font-accent);
  font-size: 0.8125rem;
  font-weight: 700;
  margin-top: 0.1rem;
}
.gh-nmm-path-card strong {
  display: block;
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--text-primary);
  line-height: 1.3;
}
.gh-nmm-path-card p {
  font-size: 0.8125rem;
  color: var(--text-subtle);
  line-height: 1.4;
  margin-top: 0.15rem;
}
.gh-nmm-disclaimer {
  font-size: 0.75rem;
  color: var(--text-subtle);
  text-align: center;
  margin-top: var(--space-lg);
  font-style: italic;
  opacity: 0.7;
}

/* Gauge animation on scroll */
.gh-next-move-map:not(.is-visible) .gh-nmm-gauge-fill {
  width: 0;
}

/* Mobile responsive */
@media (max-width: 600px) {
  .gh-nmm-header {
    flex-direction: column;
    align-items: flex-start;
    gap: var(--space-xs);
  }
  .gh-nmm-situation { padding: var(--space-lg) var(--space-lg); }
  .gh-nmm-analysis { padding: var(--space-lg) var(--space-lg) var(--space-md); }
  .gh-nmm-paths { padding: var(--space-md) var(--space-lg) var(--space-xl); }
  .gh-nmm-pillar-row {
    grid-template-columns: 1fr 3rem;
    gap: var(--space-xs) var(--space-sm);
  }
  .gh-nmm-pillar-info {
    grid-column: 1 / -1;
  }
  .gh-nmm-gauge {
    grid-column: 1;
  }
  .gh-nmm-pillar-row::before { left: calc(var(--space-lg) * -1); }
  .gh-next-move-map {
    margin-left: calc(var(--space-md) * -1);
    margin-right: calc(var(--space-md) * -1);
    border-radius: var(--radius-md);
  }
}


/* ============================================
   SECTION 6: SITUATIONS
   ============================================ */
.gh-situation-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-lg);
  max-width: 64rem;
  margin: 0 auto;
}

.gh-situation-card {
  background: var(--bg-primary);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: var(--space-xl);
  transition: all 0.3s var(--ease);
  border-left: 3px solid transparent;
}

/* Cycle pillar colors on left border */
.gh-situation-card:nth-child(6n+1) { border-left-color: var(--pillar-connection); }
.gh-situation-card:nth-child(6n+2) { border-left-color: var(--pillar-growth); }
.gh-situation-card:nth-child(6n+3) { border-left-color: var(--pillar-independence); }
.gh-situation-card:nth-child(6n+4) { border-left-color: var(--pillar-privacy); }
.gh-situation-card:nth-child(6n+5) { border-left-color: var(--pillar-connection); }
.gh-situation-card:nth-child(6n+6) { border-left-color: var(--pillar-growth); }

.gh-situation-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.06);
  border-left-width: 5px;
}

.gh-situation-icon {
  width: 2.5rem;
  height: 2.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  margin-bottom: var(--space-md);
  transition: transform 0.3s var(--ease-spring);
}
.gh-situation-card:hover .gh-situation-icon {
  transform: rotate(-5deg) scale(1.1);
}

.gh-situation-card h3 { margin-bottom: var(--space-sm); font-size: 1.125rem; }
.gh-situation-card p { font-size: 0.9375rem; line-height: 1.7; color: var(--text-body); }

@media (min-width: 600px) { .gh-situation-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 900px) { .gh-situation-grid { grid-template-columns: repeat(3, 1fr); } }


/* ============================================
   SECTION 7: SOCIAL PROOF (in dark section)
   ============================================ */
.gh-social-proof {
  font-weight: 500;
  color: var(--pillar-connection);
  font-style: italic;
  margin-top: var(--space-lg);
}


/* ============================================
   SECTION 8: ABOUT (Split Layout)
   ============================================ */
.gh-about-split {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-3xl);
  align-items: start;
}

.gh-about-photo {
  display: flex;
  justify-content: center;
}

.gh-photo-placeholder {
  position: relative;
  width: 100%;
  max-width: 20rem;
  aspect-ratio: 4 / 5;
  background: var(--gh-100);
  border-radius: var(--radius-xl);
  overflow: hidden;
}
.gh-photo-frame {
  position: absolute;
  inset: 12px;
  border: 2px solid var(--pillar-connection);
  border-radius: calc(var(--radius-xl) - 4px);
  opacity: 0.2;
  transition: inset 0.3s var(--ease);
}
.gh-photo-placeholder:hover .gh-photo-frame { inset: 8px; }

.gh-photo-silhouette {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gh-400);
}
.gh-photo-silhouette svg {
  width: 60%;
  height: auto;
}

.gh-about-content .gh-section-label {
  text-align: left;
}
.gh-about-content h2 {
  margin-bottom: var(--space-xl);
}

.gh-about-credentials {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm);
  margin-top: var(--space-xl);
}
.gh-credential {
  font-family: var(--font-accent);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  padding: 0.375rem 1rem;
  border-radius: 100px;
  border: 1px solid var(--gh-200);
  color: var(--text-subtle);
}

@media (min-width: 768px) {
  .gh-about-split {
    grid-template-columns: 5fr 7fr;
    align-items: center;
  }
}

@media (max-width: 767px) {
  .gh-photo-placeholder {
    max-width: 100%;
    aspect-ratio: 16 / 9;
  }
}


/* ============================================
   SECTION 8.5: GUIDE DOWNLOAD (Dark)
   ============================================ */
.gh-guide-section {
  position: relative;
  background: linear-gradient(135deg, var(--gh-900) 0%, #243028 100%);
  overflow: hidden;
}

.gh-guide-grid-bg {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 3rem 3rem;
  pointer-events: none;
}

.gh-guide-card {
  position: relative;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-xl);
  padding: var(--space-3xl);
  text-align: center;
}

.gh-guide-card .gh-section-label { color: var(--pillar-connection); }
.gh-guide-card h3 { color: #fff; margin-bottom: var(--space-lg); }
.gh-guide-card > .gh-guide-content > p {
  font-size: 1.0625rem;
  line-height: 1.7;
  color: var(--text-on-dark-muted);
  max-width: 32rem;
  margin: 0 auto var(--space-xl);
}

.gh-guide-form {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--space-sm);
  max-width: 28rem;
  margin: 0 auto var(--space-md);
}

.gh-guide-form input[type="email"] {
  flex: 1;
  min-width: 200px;
  padding: 0.875rem 1.25rem;
  border: 1.5px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius-md);
  font-family: var(--font-sans);
  font-size: 0.9375rem;
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
  transition: border-color 0.2s var(--ease);
}
.gh-guide-form input[type="email"]::placeholder {
  color: rgba(255, 255, 255, 0.4);
}
.gh-guide-form input[type="email"]:focus-visible {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(122, 158, 142, 0.2);
}

.gh-form-label {
  display: block;
  width: 100%;
  font-size: 0.875rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: var(--space-xs);
  text-align: left;
}
.gh-form-error {
  display: block;
  width: 100%;
  font-size: 0.8125rem;
  color: #e8a0a0;
  min-height: 1.25rem;
  text-align: left;
}
.gh-guide-form input[type="email"][aria-invalid="true"] {
  border-color: #e8a0a0;
}

.gh-guide-form .gh-btn-primary {
  background: #fff;
  color: var(--text-primary);
}
.gh-guide-form .gh-btn-primary:hover {
  background: var(--gh-100);
}

.gh-guide-note {
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.6);
  text-align: center;
}


/* ============================================
   SECTION 9: CTA
   ============================================ */
.gh-cta-section {
  padding: var(--space-5xl) 0;
  text-align: center;
  background: var(--text-primary);
  color: #FFFFFF;
}
.gh-cta-section h2 { color: #FFFFFF; margin-bottom: var(--space-lg); }
.gh-cta-section p {
  font-size: 1.125rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: var(--space-2xl);
}
.gh-cta-section .gh-btn-primary { background: #FFFFFF; color: var(--text-primary); }
.gh-cta-section .gh-btn-primary:hover { background: rgba(255, 255, 255, 0.9); }

.gh-cta-subtext {
  font-size: 0.9375rem;
  color: rgba(255, 255, 255, 0.5);
  margin-top: var(--space-md);
  font-style: italic;
}


/* ============================================
   FOOTER
   ============================================ */
.gh-footer {
  background: var(--gh-900);
  color: rgba(255, 255, 255, 0.6);
  padding: var(--space-3xl) 0 var(--space-xl);
}

.gh-footer-inner {
  display: flex;
  flex-direction: column;
  gap: var(--space-2xl);
  padding-bottom: var(--space-2xl);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.gh-wordmark-light { color: #FFFFFF; }

.gh-footer-tagline {
  font-family: var(--font-accent);
  font-size: 0.875rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.5);
  margin-top: var(--space-sm);
  letter-spacing: 0.02em;
}
.gh-footer-desc {
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.4);
  margin-top: var(--space-xs);
  line-height: 1.6;
}
.gh-footer-geo {
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.45);
  margin-top: var(--space-sm);
  font-weight: 500;
}

.gh-footer-links { display: flex; flex-wrap: wrap; gap: var(--space-lg); }
.gh-footer-links a {
  font-family: var(--font-accent);
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.5);
  transition: color 0.2s var(--ease);
  letter-spacing: 0.01em;
}
.gh-footer-links a:hover { color: #FFFFFF; }

.gh-footer-compliance {
  padding: var(--space-xl) 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.gh-footer-compliance p {
  font-size: 0.75rem;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.35);
}
.gh-footer-disclaimer {
  margin-top: var(--space-sm);
  font-style: italic;
}

.gh-footer-bottom { padding-top: var(--space-lg); }
.gh-footer-bottom p { font-size: 0.75rem; color: rgba(255, 255, 255, 0.5); }

@media (min-width: 768px) {
  .gh-footer-inner {
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
  }
}


/* ============================================
   SCROLL REVEAL ANIMATIONS
   ============================================ */
.gh-reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s var(--ease-out-expo), transform 0.7s var(--ease-out-expo);
}
.gh-reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Stagger cards */
.gh-pillar-card.gh-reveal:nth-child(1) { transition-delay: 0ms; }
.gh-pillar-card.gh-reveal:nth-child(2) { transition-delay: 100ms; }
.gh-pillar-card.gh-reveal:nth-child(3) { transition-delay: 200ms; }
.gh-pillar-card.gh-reveal:nth-child(4) { transition-delay: 300ms; }

.gh-step.gh-reveal:nth-child(1) { transition-delay: 0ms; }
.gh-step.gh-reveal:nth-child(2) { transition-delay: 120ms; }
.gh-step.gh-reveal:nth-child(3) { transition-delay: 240ms; }

.gh-situation-card.gh-reveal:nth-child(1) { transition-delay: 0ms; }
.gh-situation-card.gh-reveal:nth-child(2) { transition-delay: 60ms; }
.gh-situation-card.gh-reveal:nth-child(3) { transition-delay: 120ms; }
.gh-situation-card.gh-reveal:nth-child(4) { transition-delay: 180ms; }
.gh-situation-card.gh-reveal:nth-child(5) { transition-delay: 240ms; }
.gh-situation-card.gh-reveal:nth-child(6) { transition-delay: 300ms; }


/* ============================================
   ACCESSIBILITY
   ============================================ */
a:focus-visible,
button:focus-visible,
[tabindex]:focus-visible {
  outline: 3px solid var(--accent);
  outline-offset: 2px;
  border-radius: 2px;
}

@media (prefers-reduced-motion: reduce) {
  .gh-reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
  html { scroll-behavior: auto; }
  .gh-hero-grid-bg { transform: none !important; }
  .gh-step-number { transition: none; }
  .gh-fw-detail { transition: none; }
  .gh-hq-cell { transition: none; }
}

/* Skip link */
.gh-skip-link {
  position: absolute;
  top: -100%;
  left: var(--space-md);
  background: var(--text-primary);
  color: #fff;
  padding: var(--space-sm) var(--space-md);
  border-radius: var(--radius-sm);
  z-index: 999;
  font-size: 0.875rem;
}
.gh-skip-link:focus { top: var(--space-md); }


/* ============================================
   SUBPAGE COMPONENTS
   ============================================ */

/* Page Header (dark banner for subpages) */
.gh-page-header {
  background: var(--bg-dark);
  color: var(--text-on-dark);
  padding: calc(4rem + var(--space-3xl)) 0 var(--space-3xl);
  text-align: left;
}
.gh-page-header h1 {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 5vw, 3.25rem);
  font-weight: 400;
  color: #fff;
  margin-bottom: var(--space-md);
}
.gh-page-header p {
  color: var(--text-on-dark-muted);
  max-width: 36rem;
}
.gh-page-header .gh-section-label {
  color: var(--pillar-connection);
}

/* Pillar-tinted page headers */
.gh-page-header-connection { background: linear-gradient(135deg, var(--gh-900), #12343a); }
.gh-page-header-growth { background: linear-gradient(135deg, var(--gh-900), #1a2e1a); }
.gh-page-header-independence { background: linear-gradient(135deg, var(--gh-900), #141e2a); }
.gh-page-header-privacy { background: linear-gradient(135deg, var(--gh-900), #222222); }

/* Breadcrumb */
.gh-breadcrumb {
  font-size: 0.8125rem;
  font-family: var(--font-accent);
  color: var(--text-on-dark-muted);
  margin-bottom: var(--space-lg);
}
.gh-breadcrumb a {
  color: var(--text-on-dark-muted);
  transition: color 0.2s var(--ease);
}
.gh-breadcrumb a:hover { color: #fff; }
.gh-breadcrumb .gh-breadcrumb-sep {
  margin: 0 0.5rem;
  opacity: 0.4;
}

/* Prose enhancements for long-form content */
.gh-prose h3 {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--text-primary);
  margin: var(--space-2xl) 0 var(--space-md);
}
.gh-prose h4 {
  font-family: var(--font-sans);
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--text-primary);
  margin: var(--space-xl) 0 var(--space-sm);
}
.gh-prose ol {
  list-style: decimal;
  padding-left: 1.5rem;
  margin: var(--space-md) 0;
}
.gh-prose ol li {
  padding-left: 0.5rem;
  margin-bottom: var(--space-sm);
}
.gh-prose blockquote {
  border-left: 3px solid var(--pillar-growth);
  padding-left: var(--space-lg);
  margin: var(--space-xl) 0;
  font-style: italic;
  color: var(--text-subtle);
}
.gh-prose strong { color: var(--text-primary); }
.gh-prose a {
  color: var(--pillar-connection);
  text-decoration: underline;
  text-underline-offset: 2px;
}
.gh-prose a:hover { color: var(--gh-900); }

/* Legal page styling */
.gh-legal-meta {
  font-size: 0.875rem;
  color: var(--text-subtle);
  margin-bottom: var(--space-2xl);
  font-family: var(--font-accent);
}

/* FAQ Accordion */
.gh-accordion {
  border-bottom: 1px solid var(--border);
}
.gh-accordion summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--space-lg) 0;
  font-family: var(--font-sans);
  font-size: 1.0625rem;
  font-weight: 500;
  color: var(--text-primary);
  cursor: pointer;
  list-style: none;
  border-top: 1px solid var(--border);
  transition: color 0.2s var(--ease);
}
.gh-accordion summary::-webkit-details-marker { display: none; }
.gh-accordion summary::after {
  content: '+';
  font-size: 1.25rem;
  font-weight: 300;
  color: var(--text-subtle);
  transition: transform 0.3s var(--ease);
  flex-shrink: 0;
  margin-left: var(--space-md);
}
.gh-accordion[open] summary::after {
  content: '−';
}
.gh-accordion summary:hover { color: var(--accent); }
.gh-accordion .gh-accordion-body {
  padding: 0 0 var(--space-lg);
  color: var(--text-body);
  line-height: 1.7;
}
.gh-accordion .gh-accordion-body p + p {
  margin-top: var(--space-md);
}
.gh-faq-category {
  font-family: var(--font-accent);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
  margin: var(--space-3xl) 0 var(--space-md);
}
.gh-faq-category:first-child { margin-top: 0; }

/* Article Card (Blog) */
.gh-article-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-xl);
}
@media (min-width: 600px) {
  .gh-article-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 900px) {
  .gh-article-grid { grid-template-columns: repeat(3, 1fr); }
}
.gh-article-card {
  background: var(--bg-primary);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: var(--space-xl);
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
  display: flex;
  flex-direction: column;
}
.gh-article-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0,0,0,0.08);
}
.gh-article-tag {
  font-family: var(--font-accent);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.25rem 0.625rem;
  border-radius: 100px;
  display: inline-block;
  margin-bottom: var(--space-md);
}
.gh-article-tag-connection { background: var(--pillar-connection-bg); color: var(--pillar-connection); }
.gh-article-tag-growth { background: var(--pillar-growth-bg); color: var(--pillar-growth); }
.gh-article-tag-independence { background: var(--pillar-independence-bg); color: var(--pillar-independence); }
.gh-article-tag-privacy { background: var(--pillar-privacy-bg); color: var(--pillar-privacy); }

.gh-article-card h3 {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 400;
  color: var(--text-primary);
  margin-bottom: var(--space-sm);
  line-height: 1.35;
}
.gh-article-card p {
  color: var(--text-body);
  font-size: 0.9375rem;
  line-height: 1.6;
  flex: 1;
}
.gh-article-meta {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  margin-top: var(--space-lg);
  padding-top: var(--space-md);
  border-top: 1px solid var(--border);
  font-size: 0.8125rem;
  color: var(--text-subtle);
  font-family: var(--font-accent);
}

/* Article page */
.gh-article-header {
  text-align: left;
  margin-bottom: var(--space-3xl);
}
.gh-article-header h1 {
  font-family: var(--font-serif);
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  font-weight: 400;
  color: var(--text-primary);
  margin-bottom: var(--space-md);
  line-height: 1.2;
}
.gh-page-header .gh-article-header {
  margin-bottom: 0;
}
.gh-page-header .gh-article-header h1 {
  color: #fff;
}

/* Blog post: reduce gap between header and body */
.gh-page-header + article.gh-section {
  padding-top: var(--space-2xl);
}

/* CTA Banner (inline within content) */
.gh-cta-banner {
  background: var(--bg-dark);
  color: var(--text-on-dark);
  border-radius: var(--radius-lg);
  padding: var(--space-2xl);
  margin: var(--space-3xl) 0;
  text-align: center;
}
.gh-cta-banner h3 {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 400;
  color: #fff;
  margin-bottom: var(--space-sm);
}
.gh-cta-banner p {
  color: var(--text-on-dark-muted);
  margin-bottom: var(--space-lg);
}

/* Related Articles */
.gh-related-articles {
  border-top: 1px solid var(--border);
  padding-top: var(--space-3xl);
  margin-top: var(--space-4xl);
}
.gh-related-articles h2 {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 400;
  margin-bottom: var(--space-xl);
}

/* Thank You page */
.gh-thankyou-hero {
  background: var(--bg-dark);
  color: var(--text-on-dark);
  padding: calc(4rem + var(--space-4xl)) 0 var(--space-4xl);
  text-align: center;
  min-height: 50vh;
  display: flex;
  align-items: center;
}
.gh-thankyou-hero h1 {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 5vw, 3.25rem);
  font-weight: 400;
  color: #fff;
  margin-bottom: var(--space-md);
}
.gh-thankyou-hero p {
  color: var(--text-on-dark-muted);
  max-width: 32rem;
  margin: 0 auto;
}
.gh-thankyou-check {
  width: 4rem;
  height: 4rem;
  border-radius: 50%;
  background: rgba(122, 158, 142, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--space-xl);
}
.gh-thankyou-check svg { color: var(--pillar-connection); }

/* Subpage nav variant (links to pages, not hashes) */
.gh-nav-subpage .gh-nav-links a.is-current {
  color: #fff;
}
.gh-nav-subpage.is-light .gh-nav-links a.is-current {
  color: var(--text-primary);
}

/* Pillar example cards */
.gh-example-card {
  background: var(--bg-primary);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: var(--space-xl);
  margin-bottom: var(--space-lg);
}
.gh-example-card h4 {
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 1rem;
  color: var(--text-primary);
  margin-bottom: var(--space-sm);
}
.gh-example-card p {
  color: var(--text-body);
  font-size: 0.9375rem;
}

/* Pillar connection grid */
.gh-pillar-connections {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-md);
  margin: var(--space-xl) 0;
}
@media (max-width: 600px) {
  .gh-pillar-connections { grid-template-columns: 1fr; }
}
.gh-pillar-connection-item {
  text-align: center;
  padding: var(--space-lg);
  border-radius: var(--radius-md);
  background: var(--bg-alt);
}
.gh-pillar-connection-item h4 {
  font-size: 0.9375rem;
  font-weight: 600;
  margin-bottom: var(--space-xs);
}
.gh-pillar-connection-item p {
  font-size: 0.8125rem;
  color: var(--text-subtle);
}

/* Footer secondary links */
.gh-footer-secondary {
  display: flex;
  gap: var(--space-lg);
  margin-top: var(--space-md);
  font-size: 0.8125rem;
}
.gh-footer-secondary a {
  color: var(--text-on-dark-muted);
  transition: color 0.2s var(--ease);
}
.gh-footer-secondary a:hover { color: #fff; }


/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 600px) {
  .gh-section { padding: var(--space-3xl) 0; }
  .gh-step { padding: var(--space-xl); }
  .gh-guide-card { padding: var(--space-xl); }
  .gh-page-header { padding: calc(4rem + var(--space-2xl)) 0 var(--space-2xl); }
  .gh-thankyou-hero { min-height: 40vh; }
  .gh-cta-banner { padding: var(--space-xl); }
}


/* ============================================
   ACCESSIBILITY — HIGH CONTRAST
   ============================================ */

/* Windows High Contrast Mode */
@media (forced-colors: active) {
  a:focus-visible,
  button:focus-visible,
  [tabindex]:focus-visible {
    outline: 3px solid LinkText;
  }
  .gh-btn {
    border: 2px solid ButtonText;
  }
  .gh-nav-cta {
    border: 2px solid LinkText;
  }
  .gh-accordion summary {
    border-color: ButtonText;
  }
}

/* Users who prefer higher contrast */
@media (prefers-contrast: more) {
  :root {
    --text-body:    var(--gh-900);
    --text-subtle:  var(--gh-700);
    --text-on-dark-muted: rgba(255, 255, 255, 0.9);
    --border:       var(--gh-400);
  }
  .gh-footer-bottom p {
    color: rgba(255, 255, 255, 0.7);
  }
  .gh-btn-secondary {
    border-width: 2px;
  }
  .gh-accordion summary {
    border-color: var(--gh-400);
  }
}

/* Ensure content is not clipped at 200% zoom */
.gh-prose {
  max-width: 65ch;
  overflow-wrap: break-word;
  word-break: break-word;
}
