/* ═══════════════════════════════════════════
   GRC  |  Grants Research Center
   Stylesheet v1.0  —  Light + Warm Dark Mode
═══════════════════════════════════════════ */

@import url('https://fonts.googleapis.com/css2?family=Spectral:ital,wght@0,300;0,400;0,500;0,600;1,300;1,400&family=Inter:wght@400;500;600;700&display=swap');

/* ─── Tokens: Light ─────────────────────── */
:root {
  --paper:  #FAF6EE;
  --panel:  #F2EBDD;
  --line:   #E4DBCA;
  --ink:    #282828;
  --gold:   #FFBC0B;
  --signal: #FC8A17;
  --deep:   #ED601B;
  --burnt:  #D5531F;

  --ink-mid:  rgba(40,40,40,.55);
  --ink-dim:  rgba(40,40,40,.38);
  --ink-tint: rgba(40,40,40,.07);

  --shadow-sm: 0 1px 2px rgba(40,40,40,.06), 0 2px 8px rgba(40,40,40,.04);
  --shadow:    0 2px 4px rgba(40,40,40,.08), 0 6px 20px rgba(40,40,40,.07);

  --serif:  'Spectral', Georgia, serif;
  --sans:   'Inter', -apple-system, BlinkMacSystemFont, sans-serif;

  --max:    1280px;
  --nav-h:  72px;
  --r:      4px;
  --ease:   200ms ease;
}

/* ─── Tokens: Warm Dark ─────────────────── */
[data-theme="dark"] {
  --paper:  #1C1C1C;
  --panel:  #252525;
  --line:   #363636;
  --ink:    #F0EDE8;

  --ink-mid:  rgba(240,237,232,.72);
  --ink-dim:  rgba(240,237,232,.46);
  --ink-tint: rgba(240,237,232,.08);

  --shadow-sm: 0 1px 3px rgba(0,0,0,.4), 0 2px 10px rgba(0,0,0,.28);
  --shadow:    0 2px 6px rgba(0,0,0,.44), 0 8px 28px rgba(0,0,0,.36);

  --signal: #FF9D2A;
  --deep:   #F07232;
  --burnt:  #DC6020;
}

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

html {
  font-size: 17px;
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  line-height: 1.65;
  transition: background var(--ease), color var(--ease);
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button, input, textarea, select { font: inherit; }
button { cursor: pointer; border: none; background: none; }
ul, ol { list-style: none; }

/* ─── Typography ─────────────────────────── */
.t-display {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(1.9rem, 3.2vw, 2.9rem);
  line-height: 1.15;
  letter-spacing: -0.02em;
}

.t-h2 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(1.6rem, 2.8vw, 2.2rem);
  line-height: 1.25;
  letter-spacing: -0.01em;
}

.t-h3 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 1.15rem;
  line-height: 1.35;
}

.t-label {
  font-family: var(--sans);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-mid);
}

.accent-deep   { color: var(--deep); }
.accent-signal { color: var(--signal); }
.muted         { color: var(--ink-mid); }

/* ─── Layout ─────────────────────────────── */
.wrap {
  max-width: var(--max);
  margin-inline: auto;
  padding-inline: 48px;
}

.sec {
  padding-block: 80px;
  border-top: 1px solid var(--line);
}

.sec--tight { padding-block: 56px; }
.sec--no-top { border-top: none; }
.sec--panel { background: var(--panel); transition: background var(--ease); }

/* ─── Ribbon ─────────────────────────────── */
.ribbon {
  background: var(--panel);
  border-bottom: 1px solid var(--line);
  padding: 10px 48px 10px 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  font-size: 0.8rem;
  color: var(--ink-mid);
  position: relative;
  transition: background var(--ease), border-color var(--ease), max-height 0.22s ease, opacity 0.22s ease, padding 0.22s ease;
  overflow: hidden;
}

.ribbon a {
  color: var(--deep);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 3px;
}
.ribbon a:hover { color: var(--burnt); }

.ribbon__dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--signal);
  flex-shrink: 0;
  animation: dot-pulse 2.6s ease-in-out infinite;
}

@keyframes dot-pulse {
  0%, 100% { opacity: 1; }
  50%       { opacity: 0.35; }
}

.ribbon__dismiss {
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--ink-mid);
  transition: background var(--ease), color var(--ease);
}
.ribbon__dismiss:hover { background: var(--ink-tint); color: var(--ink); }

/* ─── Navigation ─────────────────────────── */
.site-nav {
  position: sticky;
  top: 0;
  z-index: 200;
  height: var(--nav-h);
  background: var(--paper);
  border-bottom: 1px solid var(--line);
  transition: background var(--ease), border-color var(--ease), box-shadow var(--ease);
}

.site-nav.scrolled { box-shadow: 0 1px 20px rgba(40,40,40,.09); }
[data-theme="dark"] .site-nav.scrolled { box-shadow: 0 1px 20px rgba(0,0,0,.4); }

.nav-inner {
  max-width: var(--max);
  margin-inline: auto;
  padding-inline: 40px;
  height: 100%;
  display: flex;
  align-items: center;
  gap: 0;
}

.nav-logo { flex-shrink: 0; margin-right: auto; }

.nav-logo-wrap {
  display: inline-flex;
  align-items: center;
  padding: 4px 0;
  border-radius: var(--r);
  transition: background var(--ease), padding var(--ease);
}

[data-theme="dark"] .nav-logo-wrap {
  background: none;
  padding: 4px 0;
}

/* Light mode: multiply blends the white PNG bg into the warm paper nav */
.nav-logo-wrap img {
  height: 52px;
  width: auto;
  mix-blend-mode: multiply;
}

/* Dark mode: swap to transparent PNG so orange renders perfectly; invert only lightens the dark text */
[data-theme="dark"] .nav-logo-wrap img {
  content: url("../brand_assets/LOGGOGRC-dark.png");
  mix-blend-mode: normal;
  filter: invert(1) hue-rotate(180deg);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2px;
  margin-right: 16px;
}

.nav-links a {
  font-size: 0.84rem;
  font-weight: 500;
  color: var(--ink-mid);
  padding: 6px 13px;
  border-radius: var(--r);
  transition: color var(--ease), background var(--ease);
  white-space: nowrap;
}
.nav-links a:hover         { color: var(--ink); background: var(--ink-tint); }
.nav-links a.active        { color: var(--ink); font-weight: 600; }

.nav-actions { display: flex; align-items: center; gap: 8px; }

.btn-register-nav {
  font-size: 0.8rem;
  font-weight: 700;
  color: #fff;
  background: var(--deep);
  padding: 8px 18px;
  border-radius: var(--r);
  letter-spacing: 0.01em;
  white-space: nowrap;
  transition: background var(--ease), transform var(--ease);
}
.btn-register-nav:hover { background: var(--burnt); transform: translateY(-1px); }

.btn-login-nav {
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--ink-mid);
  padding: 7px 14px;
  border: 1px solid var(--line);
  border-radius: var(--r);
  white-space: nowrap;
  transition: color var(--ease), border-color var(--ease);
}
.btn-login-nav:hover { color: var(--ink); border-color: var(--ink-mid); }

/* ─── Free CTA band ─── */
.free-cta-band {
  background: var(--signal);
  padding: 52px 0;
}
.free-cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}
.free-cta-band h2 {
  font-family: var(--serif);
  font-size: clamp(1.4rem, 2.2vw, 1.9rem);
  font-weight: 400;
  color: #fff;
  line-height: 1.25;
  margin-bottom: 8px;
}
.free-cta-band p {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.82);
  max-width: 480px;
  line-height: 1.7;
}
.free-cta-band .btn-free {
  background: #fff;
  color: var(--deep);
  font-size: 0.85rem;
  font-weight: 700;
  padding: 13px 28px;
  border-radius: var(--r);
  white-space: nowrap;
  flex-shrink: 0;
  transition: opacity var(--ease), transform var(--ease);
}
.free-cta-band .btn-free:hover { opacity: 0.92; transform: translateY(-1px); }

/* ─── Team photo placeholder ─── */
.team-photo-section { padding: 60px 0; }
.team-photo-placeholder {
  width: 100%;
  height: 420px;
  background: var(--panel);
  border: 2px dashed var(--line);
  border-radius: var(--r);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  color: var(--ink-dim);
}
.team-photo-placeholder svg { opacity: 0.4; }
.team-photo-placeholder p { font-size: 0.85rem; text-align: center; max-width: 280px; line-height: 1.6; }
.team-photo-placeholder strong { font-size: 1rem; color: var(--ink-mid); font-weight: 500; }

/* ─── News page ─── */
.news-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1px; background: var(--line); border: 1px solid var(--line); border-radius: var(--r); overflow: hidden; margin-top: 36px; }
.news-card { background: var(--paper); padding: 32px 28px; display: flex; flex-direction: column; gap: 10px; }
.news-card--featured { grid-column: 1 / -1; background: var(--panel); }
.news-tag { font-size: 0.65rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--deep); }
.news-card h3 { font-family: var(--serif); font-size: 1.05rem; font-weight: 500; color: var(--ink); line-height: 1.4; }
.news-card--featured h3 { font-size: 1.35rem; }
.news-card p { font-size: 0.82rem; color: var(--ink-mid); line-height: 1.7; flex: 1; }
.news-card-date { font-size: 0.72rem; color: var(--ink-dim); }
.news-card a.read-link { font-size: 0.78rem; font-weight: 600; color: var(--deep); display: inline-flex; align-items: center; gap: 5px; margin-top: auto; }

/* ─── Login page ─── */
.login-wrap { min-height: calc(100vh - var(--nav-h) - 80px); display: flex; align-items: center; justify-content: center; padding: 60px 20px; }
.login-card { background: var(--panel); border: 1px solid var(--line); border-radius: calc(var(--r) * 2); padding: 48px 44px; width: 100%; max-width: 440px; }
.login-card h1 { font-family: var(--serif); font-size: 1.7rem; font-weight: 400; color: var(--ink); margin-bottom: 6px; }
.login-card .login-sub { font-size: 0.82rem; color: var(--ink-mid); margin-bottom: 32px; line-height: 1.6; }
.login-divider { display: flex; align-items: center; gap: 12px; margin: 20px 0; }
.login-divider::before, .login-divider::after { content: ''; flex: 1; height: 1px; background: var(--line); }
.login-divider span { font-size: 0.72rem; color: var(--ink-dim); }
.login-footer { margin-top: 24px; text-align: center; font-size: 0.78rem; color: var(--ink-mid); }
.login-footer a { color: var(--deep); font-weight: 600; }

.theme-toggle {
  width: 36px;
  height: 36px;
  border-radius: var(--r);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--ink-mid);
  transition: background var(--ease), color var(--ease);
  flex-shrink: 0;
}
.theme-toggle:hover { background: var(--ink-tint); color: var(--ink); }

.icon-sun  { display: none; }
.icon-moon { display: block; }
[data-theme="dark"] .icon-sun  { display: block; }
[data-theme="dark"] .icon-moon { display: none; }

.nav-hamburger {
  display: none;
  width: 36px;
  height: 36px;
  align-items: center;
  justify-content: center;
  color: var(--ink);
  border-radius: var(--r);
  transition: background var(--ease);
}
.nav-hamburger:hover { background: var(--ink-tint); }

/* Mobile nav overlay */
.mobile-nav {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 300;
  background: var(--paper);
  padding: 80px 32px 40px;
  flex-direction: column;
  gap: 0;
  transition: background var(--ease);
}
.mobile-nav.open { display: flex; }

.mobile-nav__close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--ink-mid);
  border-radius: var(--r);
  transition: background var(--ease);
}
.mobile-nav__close:hover { background: var(--ink-tint); }

.mobile-nav a {
  font-family: var(--serif);
  font-size: 1.5rem;
  font-weight: 300;
  color: var(--ink);
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
  transition: color var(--ease);
}
.mobile-nav a:hover { color: var(--deep); }

.mobile-register {
  margin-top: 24px !important;
  background: var(--deep) !important;
  color: #fff !important;
  font-family: var(--sans) !important;
  font-size: 0.95rem !important;
  font-weight: 700 !important;
  text-align: center;
  padding: 16px !important;
  border-radius: var(--r);
  border-bottom: none !important;
  display: block;
}

/* ─── Hero ───────────────────────────────── */
.hero {
  padding-block: 64px 56px;
  border-top: none;
}

.hero__eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 36px;
}

.hero__eyebrow-bar {
  width: 28px;
  height: 2px;
  background: var(--signal);
}

.hero__headline { max-width: 840px; margin-bottom: 22px; }

.hero__sub {
  font-size: 1.05rem;
  color: var(--ink-mid);
  max-width: 520px;
  line-height: 1.75;
  margin-bottom: 44px;
}

.hero__actions { display: flex; align-items: center; gap: 20px; flex-wrap: wrap; }

/* Outcome callout band */
.outcome-callout { background: #2A2A2A; padding: 52px 0; }
[data-theme="dark"] .outcome-callout { background: #111111; }
.outcome-inner { display: flex; align-items: center; gap: 52px; }
.outcome-stat { font-family: var(--serif); font-size: 5.5rem; font-weight: 300; color: var(--deep); line-height: 1; flex-shrink: 0; letter-spacing: -2px; }
.outcome-pct { font-size: 3rem; vertical-align: super; letter-spacing: 0; }
.outcome-text strong { font-size: 1.15rem; color: #f5efe6; display: block; margin-bottom: 10px; font-weight: 400; line-height: 1.65; font-family: var(--serif); max-width: 560px; }
.outcome-text span { font-size: 0.72rem; color: rgba(245,239,230,0.42); letter-spacing: 0.02em; }

/* Stat strip */
.stat-strip { padding: 52px 0; border-bottom: 1px solid var(--line); }
.stat-grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.stat-grid--5 { grid-template-columns: repeat(5, 1fr); }
.stat-item { padding: 0 36px; border-right: 1px solid var(--line); }
.stat-item:first-child { padding-left: 0; }
.stat-item:last-child { border-right: none; }
.stat-number { font-family: var(--serif); font-size: 2.5rem; font-weight: 300; color: var(--ink); line-height: 1; margin-bottom: 10px; }
.stat-label { font-size: 0.8rem; color: var(--ink-mid); line-height: 1.55; }

/* Data section */
.data-section { background: var(--panel); }
.data-header { margin-bottom: 36px; }
.data-sub { font-size: 0.88rem; color: var(--ink-mid); line-height: 1.75; margin-top: 8px; max-width: 520px; }
.bar-chart { display: flex; flex-direction: column; gap: 14px; max-width: 780px; }
.bar-row { display: grid; grid-template-columns: 210px 1fr 44px; gap: 16px; align-items: center; }
.bar-label { font-size: 0.8rem; color: var(--ink); text-align: right; }
.bar-track { height: 7px; background: var(--line); border-radius: 4px; overflow: hidden; }
.bar-fill { height: 100%; width: 0; background: var(--deep); border-radius: 4px; transition: width 0.9s cubic-bezier(0.16, 1, 0.3, 1); }
.bar-fill.is-visible { width: var(--pct); }
.bar-pct { font-size: 0.75rem; color: var(--ink-mid); font-weight: 600; }
.chart-note { font-size: 0.71rem; color: var(--ink-dim); line-height: 1.65; margin-top: 24px; padding-top: 18px; border-top: 1px solid var(--line); max-width: 780px; }
.sector-header { margin: 56px 0 24px; }
.sector-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--line); border: 1px solid var(--line); border-radius: var(--r); overflow: hidden; }
.sector-card { background: var(--paper); padding: 24px 22px; display: flex; flex-direction: column; gap: 8px; }
.sector-icon { color: var(--deep); margin-bottom: 4px; }
.sector-name { font-family: var(--serif); font-size: 0.95rem; font-weight: 600; color: var(--ink); }
.sector-note { font-size: 0.78rem; color: var(--ink-mid); line-height: 1.6; }

/* Topics strip (below hero) */
.topics-strip { padding: 28px 0 32px; background: var(--panel); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.topics-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px 32px; }
.topic-item { display: flex; align-items: center; gap: 9px; font-size: 0.82rem; color: var(--ink-mid); font-family: var(--sans); line-height: 1.4; }
.topic-item svg { color: var(--deep); flex-shrink: 0; }
.topic-item--note { color: var(--ink-dim); font-size: 0.75rem; font-style: italic; padding-top: 2px; }

/* Video testimonials */
.video-testimonials { padding-block: 56px; }
.vt-header { text-align: center; margin-bottom: 32px; }
.vt-layout { display: grid; grid-template-columns: 1fr 280px; gap: 28px; align-items: start; }

.vt-player-frame {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: var(--r);
  overflow: hidden;
  background: linear-gradient(135deg, var(--panel), var(--line));
  border: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  padding: 0;
  transition: border-color var(--ease);
}
.vt-player-frame:hover { border-color: var(--ink-dim); }
.vt-play-btn {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--deep);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 24px rgba(237, 96, 27, 0.35);
  transition: transform var(--ease);
}
.vt-player-frame:hover .vt-play-btn { transform: scale(1.08); }
.vt-coming-soon-badge {
  position: absolute;
  top: 14px;
  right: 14px;
  background: rgba(20, 20, 20, 0.6);
  color: #fff;
  font-family: var(--sans);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 5px 10px;
  border-radius: 20px;
}
.vt-player-caption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  text-align: left;
  padding: 32px 18px 14px;
  background: linear-gradient(to top, rgba(15, 15, 15, 0.68), transparent);
  display: flex;
  flex-direction: column;
  gap: 1px;
}
.vt-quote-name { font-family: var(--sans); font-size: 0.85rem; font-weight: 700; color: #fff; }
.vt-quote-role { font-family: var(--sans); font-size: 0.72rem; color: rgba(255, 255, 255, 0.82); }
.vt-player-quote {
  font-family: var(--serif);
  font-style: italic;
  font-size: 0.95rem;
  color: var(--ink-mid);
  line-height: 1.65;
  margin-top: 16px;
}

.vt-thumbs { display: flex; flex-direction: column; gap: 10px; }
.vt-thumb {
  display: flex;
  align-items: center;
  gap: 10px;
  border: 1px solid var(--line);
  border-radius: var(--r);
  padding: 8px;
  background: var(--paper);
  cursor: pointer;
  text-align: left;
  transition: border-color var(--ease), background var(--ease);
}
.vt-thumb:hover { border-color: var(--ink-dim); }
.vt-thumb.is-active { border-color: var(--deep); background: var(--panel); }
.vt-thumb-frame {
  width: 64px;
  height: 42px;
  flex-shrink: 0;
  border-radius: 4px;
  background: linear-gradient(135deg, var(--panel), var(--line));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--deep);
}
.vt-thumb.is-active .vt-thumb-frame { background: linear-gradient(135deg, var(--line), var(--ink-dim)); }
.vt-thumb-info { display: flex; flex-direction: column; gap: 1px; min-width: 0; }
.vt-thumb-name { font-size: 0.78rem; font-weight: 700; color: var(--ink); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.vt-thumb-role { font-size: 0.68rem; color: var(--ink-dim); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }

/* ─── Buttons ─────────────────────────────── */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.88rem;
  font-weight: 700;
  color: #fff;
  background: var(--deep);
  padding: 13px 24px;
  border-radius: var(--r);
  letter-spacing: 0.01em;
  white-space: nowrap;
  transition: background var(--ease), transform var(--ease), box-shadow var(--ease);
}
.btn-primary:hover {
  background: var(--burnt);
  transform: translateY(-1px);
  box-shadow: 0 4px 14px rgba(237,96,27,.3);
}

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--ink-mid);
  transition: color var(--ease);
}
.btn-ghost:hover { color: var(--ink); }
.btn-ghost svg { transition: transform var(--ease); }
.btn-ghost:hover svg { transform: translateX(3px); }

.btn-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 0.84rem;
  font-weight: 700;
  color: var(--deep);
  border: 1.5px solid var(--deep);
  padding: 10px 20px;
  border-radius: var(--r);
  transition: background var(--ease), color var(--ease), transform var(--ease);
  white-space: nowrap;
}
.btn-outline:hover { background: var(--deep); color: #fff; transform: translateY(-1px); }

.btn-submit {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9rem;
  font-weight: 700;
  color: #fff;
  background: var(--deep);
  padding: 14px 28px;
  border-radius: var(--r);
  border: none;
  cursor: pointer;
  transition: background var(--ease), transform var(--ease), box-shadow var(--ease);
}
.btn-submit:hover {
  background: var(--burnt);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(237,96,27,.28);
}

/* ─── Featured Webinar ───────────────────── */
.featured-webinar {
  padding-block: 56px;
  background: var(--panel);
  border-top: 1px solid var(--line);
  transition: background var(--ease);
}

.fw-inner {
  max-width: var(--max);
  margin-inline: auto;
  padding-inline: 40px;
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 60px;
  align-items: start;
}

.fw-eyebrow { display: flex; align-items: center; gap: 10px; margin-bottom: 18px; }

.fw-badge {
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #fff;
  background: var(--signal);
  padding: 4px 10px;
  border-radius: 2px;
}

.fw-date-str { font-size: 0.8rem; font-weight: 600; color: var(--ink-mid); }

.fw-title {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  line-height: 1.2;
  letter-spacing: -0.01em;
  margin-bottom: 10px;
  color: var(--ink);
}

.fw-desc {
  font-size: 0.92rem;
  color: var(--ink-mid);
  line-height: 1.75;
  margin-bottom: 24px;
  max-width: 560px;
}

.fw-bullets {
  margin-bottom: 24px;
  display: flex;
  flex-direction: column;
  gap: 9px;
}

.fw-bullets li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.875rem;
  color: var(--ink-mid);
  line-height: 1.5;
}

.fw-bullets li::before {
  content: '';
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--signal);
  flex-shrink: 0;
  margin-top: 7px;
}

.fw-presenter {
  display: flex;
  align-items: center;
  gap: 10px;
}

/* Sidebar */
.fw-sidebar {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--r);
  padding: 28px;
  position: sticky;
  top: calc(var(--nav-h) + 20px);
  transition: background var(--ease), border-color var(--ease);
}

.fw-price-block {
  margin-bottom: 18px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--line);
}

.fw-price {
  font-family: var(--serif);
  font-size: 2rem;
  font-weight: 300;
  color: var(--ink);
  margin-bottom: 3px;
}

.fw-price-note { font-size: 0.72rem; color: var(--ink-dim); line-height: 1.55; }

.btn-register-full {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  font-size: 0.875rem;
  font-weight: 700;
  color: #fff;
  background: var(--deep);
  padding: 14px;
  border-radius: var(--r);
  letter-spacing: 0.01em;
  margin-bottom: 14px;
  transition: background var(--ease), transform var(--ease), box-shadow var(--ease);
}
.btn-register-full:hover {
  background: var(--burnt);
  transform: translateY(-1px);
  box-shadow: 0 4px 14px rgba(237,96,27,.28);
}

.fw-meta-list { display: flex; flex-direction: column; gap: 10px; margin-top: 4px; }

.fw-meta-item {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  font-size: 0.78rem;
  color: var(--ink-mid);
  line-height: 1.4;
}
.fw-meta-item svg { flex-shrink: 0; color: var(--signal); margin-top: 1px; }

.chargeable-callout {
  margin-top: 16px;
  background: var(--panel);
  border: 1px solid var(--line);
  border-left: 3px solid var(--gold);
  border-radius: var(--r);
  padding: 11px 13px;
  font-size: 0.72rem;
  color: var(--ink-mid);
  line-height: 1.6;
  transition: background var(--ease), border-color var(--ease);
}

.chargeable-callout strong {
  display: block;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink);
  margin-bottom: 3px;
}

/* ─── Section headers ─────────────────────── */
.sec-header {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.link-more {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--deep);
  white-space: nowrap;
  flex-shrink: 0;
  transition: color var(--ease);
}
.link-more:hover { color: var(--burnt); }
.link-more svg { transition: transform var(--ease); }
.link-more:hover svg { transform: translateX(3px); }

/* ─── Why different ──────────────────────── */
.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}

.why-left p { font-size: 0.95rem; color: var(--ink-mid); line-height: 1.8; margin-top: 14px; }

.why-pillars { display: flex; flex-direction: column; }

.why-pillar {
  display: grid;
  grid-template-columns: 28px 1fr;
  gap: 16px;
  padding: 22px 0;
  border-bottom: 1px solid var(--line);
}
.why-pillar:first-child { padding-top: 0; }
.why-pillar:last-child  { border-bottom: none; padding-bottom: 0; }

.why-num {
  font-family: var(--serif);
  font-style: italic;
  font-size: 0.9rem;
  font-weight: 300;
  color: var(--signal);
  padding-top: 2px;
}

.why-pillar-body h3 {
  font-family: var(--sans);
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 4px;
}

.why-pillar-body p { font-size: 0.84rem; color: var(--ink-mid); line-height: 1.65; }

/* ─── Webinar Card ───────────────────────── */
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }

.webinar-card {
  border: 1px solid var(--line);
  border-left: 3px solid var(--deep);
  border-radius: var(--r);
  background: var(--paper);
  padding: 22px 22px 22px 20px;
  display: flex;
  flex-direction: column;
  transition: box-shadow var(--ease), transform var(--ease), background var(--ease), border-color var(--ease);
}
.webinar-card:hover { box-shadow: var(--shadow); transform: translateY(-2px); }

.wc-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 12px;
}

.wc-date { font-size: 0.7rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--ink-mid); }

.wc-tier {
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 3px 8px;
  border-radius: 2px;
  flex-shrink: 0;
}
.wc-tier--free { background: rgba(252,138,23,.15); color: var(--signal); }
.wc-tier--paid { background: var(--ink-tint); color: var(--ink-mid); }

.wc-title {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 1.05rem;
  line-height: 1.35;
  color: var(--ink);
  margin-bottom: 6px;
}

.wc-desc { font-size: 0.82rem; color: var(--ink-mid); line-height: 1.65; flex-grow: 1; margin-bottom: 16px; }

.wc-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding-top: 14px;
  border-top: 1px solid var(--line);
  margin-top: auto;
}

.wc-presenter { display: flex; align-items: center; gap: 8px; }

.avatar {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--signal), var(--deep));
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  flex-shrink: 0;
}

.wc-presenter-name { font-size: 0.72rem; font-weight: 700; color: var(--ink); line-height: 1.2; }
.wc-presenter-role { font-size: 0.64rem; color: var(--ink-dim); }

.btn-register-sm {
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--deep);
  padding: 6px 12px;
  border: 1.5px solid var(--deep);
  border-radius: var(--r);
  white-space: nowrap;
  flex-shrink: 0;
  transition: background var(--ease), color var(--ease);
}
.btn-register-sm:hover { background: var(--deep); color: #fff; }

/* ─── Research Briefs ────────────────────── */
.research-list { display: flex; flex-direction: column; }

.research-brief {
  display: grid;
  grid-template-columns: 56px 1fr auto;
  gap: 0 20px;
  align-items: start;
  padding: 28px 0;
  border-bottom: 1px solid var(--line);
  text-decoration: none;
}
.research-brief:first-child { padding-top: 0; }
.research-brief:last-child  { border-bottom: none; }
.research-brief:hover .rb-title { color: var(--deep); }

.rb-num {
  font-family: var(--serif);
  font-style: italic;
  font-size: 2.6rem;
  font-weight: 300;
  color: var(--signal);
  opacity: 0.3;
  line-height: 1;
  padding-top: 4px;
  user-select: none;
}

.rb-title {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 1.05rem;
  color: var(--ink);
  line-height: 1.35;
  margin-bottom: 4px;
  transition: color var(--ease);
}

.rb-desc { font-size: 0.8rem; color: var(--ink-mid); line-height: 1.65; }

.rb-meta { text-align: right; padding-top: 4px; flex-shrink: 0; }
.rb-date { font-size: 0.7rem; color: var(--ink-dim); font-weight: 500; white-space: nowrap; display: block; margin-bottom: 6px; }

.rb-arrow { color: var(--deep); opacity: 0; transition: opacity var(--ease), transform var(--ease); }
.research-brief:hover .rb-arrow { opacity: 1; transform: translateX(3px); }

/* ─── Who it's for ───────────────────────── */
.for-who-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}

.for-who-left p { font-size: 0.95rem; color: var(--ink-mid); line-height: 1.8; margin-top: 14px; }

.for-who-list { margin-top: 24px; display: flex; flex-direction: column; gap: 11px; }

.for-who-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.9rem;
  color: var(--ink-mid);
  line-height: 1.5;
}
.for-who-list li::before {
  content: '';
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--deep);
  flex-shrink: 0;
  margin-top: 7px;
}

.chargeable-block {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--r);
  padding: 28px;
  transition: background var(--ease), border-color var(--ease);
}

.chargeable-block__icon {
  width: 38px;
  height: 38px;
  background: rgba(252,138,23,.15);
  border-radius: var(--r);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--signal);
  margin-bottom: 14px;
}

.chargeable-block h3 {
  font-family: var(--sans);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink);
  margin-bottom: 10px;
}

.chargeable-block p { font-size: 0.86rem; color: var(--ink-mid); line-height: 1.75; }
.chargeable-block cite { font-style: normal; color: var(--signal); font-weight: 600; }

/* ─── About ──────────────────────────────── */
.about-grid {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 56px;
  align-items: start;
}

.about-sidebar { position: sticky; top: calc(var(--nav-h) + 20px); }

.avatar-lg {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--signal), var(--deep));
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-family: var(--serif);
  font-size: 1.6rem;
  font-weight: 300;
  margin-bottom: 14px;
}

.about-name { font-family: var(--serif); font-weight: 500; font-size: 1.1rem; color: var(--ink); margin-bottom: 2px; }
.about-cred { font-size: 0.74rem; color: var(--ink-mid); font-weight: 500; }

.about-body p { font-size: 0.93rem; color: var(--ink-mid); line-height: 1.85; margin-bottom: 16px; }
.about-body p:last-child { margin-bottom: 0; }
.about-body strong { color: var(--ink); font-weight: 600; }

/* Instructor tabs (home page) */
.instructor-layout { display: grid; grid-template-columns: 260px 1fr; gap: 48px; align-items: start; }
.instructor-selector { display: flex; flex-direction: column; border: 1px solid var(--line); border-radius: var(--r); overflow: hidden; }
.instr-tab { display: flex; align-items: center; gap: 14px; padding: 18px 20px; background: var(--paper); border: none; border-bottom: 1px solid var(--line); cursor: pointer; text-align: left; transition: background var(--ease); width: 100%; }
.instr-tab:last-child { border-bottom: none; }
.instr-tab:hover { background: var(--panel); }
.instr-tab.is-active { background: var(--panel); border-left: 3px solid var(--deep); }
.instr-tab:not(.is-active) { border-left: 3px solid transparent; }
.instr-tab-name { font-size: 0.85rem; font-weight: 600; color: var(--ink); font-family: var(--sans); }
.instr-tab-role { font-size: 0.72rem; color: var(--ink-mid); margin-top: 2px; }
.instructor-panels { position: relative; }
.instr-panel { display: none; }
.instr-panel.is-active { display: block; }
.instr-panel p { font-size: 0.93rem; color: var(--ink-mid); line-height: 1.85; margin-bottom: 16px; }
.instr-panel p:last-of-type { margin-bottom: 0; }
.instr-panel strong { color: var(--ink); font-weight: 600; }
.avatar-md { width: 44px; height: 44px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-family: var(--serif); font-size: 0.78rem; font-weight: 500; color: #fff; flex-shrink: 0; }

/* Team */
.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 16px;
}

.team-card {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--r);
  padding: 22px;
  transition: background var(--ease), border-color var(--ease);
}

.avatar-md {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  margin-bottom: 12px;
}

.team-card h3 { font-family: var(--sans); font-size: 0.875rem; font-weight: 700; color: var(--ink); margin-bottom: 2px; }
.team-role { font-size: 0.68rem; color: var(--signal); font-weight: 700; text-transform: uppercase; letter-spacing: 0.09em; margin-bottom: 8px; display: block; }
.team-card p { font-size: 0.78rem; color: var(--ink-mid); line-height: 1.65; }

/* ─── Advisory block ─────────────────────── */
.advisory-block {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--r);
  padding: 48px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 48px;
  align-items: center;
  transition: background var(--ease), border-color var(--ease);
}

.advisory-block h2 { margin-bottom: 10px; }
.advisory-block p  { font-size: 0.93rem; color: var(--ink-mid); max-width: 460px; line-height: 1.75; }

.advisory-block__cta { flex-shrink: 0; text-align: center; }
.advisory-block__note { font-size: 0.7rem; color: var(--ink-dim); margin-top: 8px; }

/* ─── Newsletter ─────────────────────────── */
.newsletter__inner { max-width: 520px; margin-inline: auto; text-align: center; }
.newsletter__inner h2 { margin-bottom: 8px; }
.newsletter__inner p  { font-size: 0.88rem; color: var(--ink-mid); margin-bottom: 28px; }

.newsletter-form { display: flex; gap: 8px; max-width: 400px; margin-inline: auto; }

.newsletter-form input {
  flex: 1;
  padding: 11px 15px;
  background: var(--paper);
  border: 1.5px solid var(--line);
  border-radius: var(--r);
  color: var(--ink);
  font-size: 0.875rem;
  outline: none;
  transition: border-color var(--ease), background var(--ease);
}
.newsletter-form input::placeholder { color: var(--ink-dim); }
.newsletter-form input:focus { border-color: var(--signal); }

.newsletter-form button {
  padding: 11px 20px;
  background: var(--deep);
  color: #fff;
  font-size: 0.84rem;
  font-weight: 700;
  border-radius: var(--r);
  white-space: nowrap;
  transition: background var(--ease), transform var(--ease);
}
.newsletter-form button:hover { background: var(--burnt); transform: translateY(-1px); }

.newsletter-legal { font-size: 0.7rem; color: var(--ink-dim); margin-top: 12px; }

/* ─── Core values grid (Becker-style) ───── */
.core-values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  margin-top: 36px;
}
.core-value-card { background: var(--paper); padding: 36px 28px; transition: background var(--ease); }
.core-value-word {
  display: block;
  font-family: var(--serif);
  font-size: 1.9rem;
  font-weight: 600;
  color: var(--deep);
  line-height: 1.15;
  margin-bottom: 14px;
}
.core-value-card p { font-size: 0.85rem; color: var(--ink-mid); line-height: 1.75; margin: 0; }

/* ─── Inverted dark band ─────────────────── */
.sec--invert { background: var(--ink); transition: background var(--ease), color var(--ease); }
.sec--invert * { color: var(--paper); }
[data-theme="dark"] .sec--invert { background: #0e0b07; border-block: 1px solid var(--line); }
[data-theme="dark"] .sec--invert * { color: var(--ink); }

/* ─── Encourage / partnership columns ────── */
.encourage-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border: 1px solid var(--line);
  margin-top: 36px;
}
.encourage-item { padding: 32px 28px; border-right: 1px solid var(--line); }
.encourage-item:last-child { border-right: none; }
.encourage-item h3 { font-family: var(--serif); font-size: 1.05rem; font-weight: 600; color: var(--ink); margin-bottom: 10px; }
.encourage-item p { font-size: 0.83rem; color: var(--ink-mid); line-height: 1.75; margin: 0 0 16px; }

/* ─── Contact option tiles ───────────────── */
.contact-options-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  max-width: 700px;
  margin-top: 28px;
}
.contact-option {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 16px;
  padding: 22px;
  border: 2px solid var(--line);
  border-radius: var(--r);
  cursor: pointer;
  transition: border-color var(--ease), background var(--ease);
  background: var(--paper);
  text-decoration: none;
}
.contact-option:hover, .contact-option.is-active { border-color: var(--deep); background: var(--panel); }
.contact-option-icon {
  width: 38px; height: 38px; border-radius: var(--r);
  background: var(--panel); border: 1px solid var(--line);
  display: flex; align-items: center; justify-content: center;
  color: var(--deep); flex-shrink: 0;
  transition: background var(--ease), color var(--ease);
}
.contact-option:hover .contact-option-icon,
.contact-option.is-active .contact-option-icon { background: var(--deep); color: #fff; }
.contact-option h3 { font-size: 0.86rem; font-weight: 700; color: var(--ink); margin: 0 0 4px; line-height: 1.3; }
.contact-option p { font-size: 0.76rem; color: var(--ink-mid); line-height: 1.55; margin: 0; }

/* ─── Partners page ──────────────────────── */
.partner-type-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border: 1px solid var(--line);
  margin-top: 36px;
}
.partner-type-col {
  padding: 36px 28px;
  border-right: 1px solid var(--line);
  display: flex;
  flex-direction: column;
}
.partner-type-col:last-child { border-right: none; }
.partner-type-col h3 { font-family: var(--serif); font-size: 1.15rem; font-weight: 600; color: var(--ink); margin-bottom: 12px; line-height: 1.3; }
.partner-type-col p { font-size: 0.85rem; color: var(--ink-mid); line-height: 1.75; margin: 0 0 20px; }
.partner-type-col ul { list-style: none; padding: 0; margin: 0 0 24px; display: flex; flex-direction: column; gap: 6px; flex: 1; }
.partner-type-col ul li { font-size: 0.8rem; color: var(--ink-mid); padding-left: 16px; position: relative; line-height: 1.55; }
.partner-type-col ul li::before { content: "-"; position: absolute; left: 0; color: var(--deep); font-weight: 600; font-size: 0.75rem; top: 1px; }
.partner-type-col .btn-primary { margin-top: auto; align-self: flex-start; }

/* ─── The GRC Difference ─────────────────── */
.grc-diff-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 36px;
  margin-top: 40px;
}
.grc-diff-item { display: flex; flex-direction: column; gap: 14px; }
.grc-diff-icon {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--panel);
  border: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--deep);
  flex-shrink: 0;
}
.grc-diff-item h3 { font-family: var(--serif); font-size: 1rem; font-weight: 600; color: var(--ink); margin: 0; line-height: 1.3; }
.grc-diff-item p { font-size: 0.85rem; color: var(--ink-mid); line-height: 1.75; margin: 0; }

/* ─── Trusted logos band ─────────────────── */
.trusted-band { padding: 36px 0; text-align: center; }
.trusted-label { font-size: 0.68rem; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: var(--ink-dim); margin-bottom: 24px; }
.trusted-logos { display: flex; align-items: center; justify-content: center; flex-wrap: wrap; gap: 6px 40px; }
.trusted-org {
  font-family: var(--serif);
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--ink);
  opacity: 0.5;
  white-space: nowrap;
  transition: opacity var(--ease);
}
.trusted-org:hover { opacity: 0.85; }

/* ─── Partner audience cards ─────────────── */
.partner-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 36px; }
.partner-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-left: 3px solid var(--deep);
  border-radius: var(--r);
  padding: 24px;
  transition: box-shadow var(--ease);
}
.partner-card:hover { box-shadow: var(--shadow); }
.partner-card h3 { font-family: var(--serif); font-size: 1rem; font-weight: 600; color: var(--ink); margin-bottom: 10px; }
.partner-card p { font-size: 0.83rem; color: var(--ink-mid); line-height: 1.75; margin: 0; }

/* ─── Mission block ──────────────────────── */
.mission-block {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
  padding: 20px 0;
}
.mission-statement {
  font-family: var(--serif);
  font-size: clamp(1.25rem, 2.2vw, 1.75rem);
  font-weight: 400;
  font-style: italic;
  line-height: 1.55;
  color: var(--ink);
}

/* ─── Footer ─────────────────────────────── */
.site-footer {
  background: var(--panel);
  border-top: 1px solid var(--line);
  transition: background var(--ease), border-color var(--ease);
}

.footer-top {
  display: grid;
  grid-template-columns: 240px 1fr 1fr 1fr;
  gap: 48px;
  padding-block: 52px;
  border-bottom: 1px solid var(--line);
  margin-bottom: 0;
}

.footer-logo-wrap {
  display: inline-flex;
  border-radius: var(--r);
  transition: background var(--ease), padding var(--ease);
  margin-bottom: 14px;
}
[data-theme="dark"] .footer-logo-wrap { background: none; padding: 0; }
.footer-logo-wrap img { height: 26px; width: auto; mix-blend-mode: multiply; }
[data-theme="dark"] .footer-logo-wrap img { content: url("../brand_assets/LOGGOGRC-dark.png"); mix-blend-mode: normal; filter: invert(1) hue-rotate(180deg); }

.footer-tagline { font-size: 0.78rem; color: var(--ink-mid); line-height: 1.7; margin-bottom: 16px; }

.footer-social a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--ink-mid);
  transition: color var(--ease);
}
.footer-social a:hover { color: var(--deep); }

.footer-col h4 {
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-mid);
  margin-bottom: 16px;
}

.footer-col ul { display: flex; flex-direction: column; gap: 9px; }
.footer-col ul li a { font-size: 0.8rem; color: var(--ink-mid); transition: color var(--ease); }
.footer-col ul li a:hover { color: var(--deep); }

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding-block: 22px;
  flex-wrap: wrap;
}

.footer-bottom p { font-size: 0.73rem; color: var(--ink-dim); }

.footer-legal { display: flex; gap: 20px; }
.footer-legal a { font-size: 0.73rem; color: var(--ink-dim); transition: color var(--ease); }
.footer-legal a:hover { color: var(--ink-mid); }

/* GRC hex mark (pure CSS) */
.grc-mark {
  width: 28px;
  height: 28px;
  background: linear-gradient(135deg, var(--signal), var(--burnt));
  clip-path: polygon(50% 0%, 93% 25%, 93% 75%, 50% 100%, 7% 75%, 7% 25%);
}

/* ─── Inner page hero ─────────────────────── */
.page-hero { padding-block: 60px 52px; }

.page-hero .t-label { margin-bottom: 16px; }

/* ─── Webinars page ──────────────────────── */
.webinar-list { display: flex; flex-direction: column; gap: 12px; }

.webinar-row {
  display: grid;
  grid-template-columns: 88px 1fr auto;
  gap: 24px;
  align-items: center;
  border: 1px solid var(--line);
  border-left: 3px solid var(--deep);
  border-radius: var(--r);
  background: var(--paper);
  padding: 22px 24px;
  transition: box-shadow var(--ease), transform var(--ease), background var(--ease), border-color var(--ease);
}
.webinar-row:hover { box-shadow: var(--shadow); transform: translateY(-1px); }

.wr-date-block {
  text-align: center;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--r);
  padding: 10px;
  transition: background var(--ease), border-color var(--ease);
}
.wr-month { font-size: 0.6rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--signal); }
.wr-day { font-family: var(--serif); font-size: 1.8rem; font-weight: 300; line-height: 1; color: var(--ink); }
.wr-year { font-size: 0.6rem; color: var(--ink-dim); }

.wr-title { font-family: var(--serif); font-weight: 500; font-size: 1rem; color: var(--ink); margin-bottom: 4px; }
.wr-meta { font-size: 0.78rem; color: var(--ink-mid); }

.wr-actions { display: flex; flex-direction: column; align-items: flex-end; gap: 6px; flex-shrink: 0; }
.wr-price { font-family: var(--serif); font-size: 1.2rem; font-weight: 300; color: var(--ink); }

/* On-demand */
.on-demand-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }

.on-demand-card {
  border: 1px solid var(--line);
  border-radius: var(--r);
  overflow: hidden;
  background: var(--paper);
  transition: box-shadow var(--ease), transform var(--ease), background var(--ease), border-color var(--ease);
}
.on-demand-card:hover { box-shadow: var(--shadow); transform: translateY(-2px); }

.od-thumb {
  height: 140px;
  background: linear-gradient(135deg, var(--panel) 0%, var(--line) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.od-thumb-mark {
  width: 52px;
  height: 52px;
  background: linear-gradient(135deg, var(--signal), var(--deep));
  clip-path: polygon(50% 0%, 93% 25%, 93% 75%, 50% 100%, 7% 75%, 7% 25%);
  opacity: 0.5;
}

.od-thumb-duration {
  position: absolute;
  bottom: 8px;
  right: 8px;
  background: rgba(40,40,40,.75);
  color: #fff;
  font-size: 0.65rem;
  font-weight: 600;
  padding: 2px 7px;
  border-radius: 2px;
}

.od-body { padding: 18px; }
.od-title { font-family: var(--serif); font-weight: 500; font-size: 0.95rem; color: var(--ink); margin-bottom: 6px; line-height: 1.35; }
.od-meta  { font-size: 0.72rem; color: var(--ink-mid); margin-bottom: 14px; }

/* Pricing */
.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }

.pricing-card {
  border: 1px solid var(--line);
  border-radius: var(--r);
  padding: 28px;
  background: var(--paper);
  position: relative;
  transition: background var(--ease), border-color var(--ease), box-shadow var(--ease);
}
.pricing-card--featured { border-color: var(--deep); border-width: 2px; box-shadow: var(--shadow); }

.pricing-card__badge {
  position: absolute;
  top: -1px;
  right: 20px;
  background: var(--deep);
  color: #fff;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 0 0 var(--r) var(--r);
}

.pricing-card h3 { font-family: var(--sans); font-size: 0.8rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--ink-mid); margin-bottom: 12px; }
.pricing-price { font-family: var(--serif); font-size: 2.6rem; font-weight: 300; color: var(--ink); line-height: 1; margin-bottom: 4px; }
.pricing-price sup { font-size: 1.2rem; vertical-align: super; }
.pricing-period { font-size: 0.78rem; color: var(--ink-dim); margin-bottom: 20px; }

.pricing-features { display: flex; flex-direction: column; gap: 9px; margin-bottom: 24px; }
.pricing-features li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 0.82rem;
  color: var(--ink-mid);
  line-height: 1.4;
}
.pricing-features li::before {
  content: '';
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--signal);
  flex-shrink: 0;
  margin-top: 7px;
}

/* ─── Research page ──────────────────────── */
.research-page-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 0; }

.research-card {
  display: block;
  padding: 36px 40px 36px 0;
  border-bottom: 1px solid var(--line);
  transition: background var(--ease);
}
.research-card:nth-child(even) { padding: 36px 0 36px 40px; border-left: 1px solid var(--line); }
.research-card:hover .rc-title { color: var(--deep); }

.rc-num {
  font-family: var(--serif);
  font-style: italic;
  font-size: 3.6rem;
  font-weight: 300;
  color: var(--signal);
  opacity: 0.22;
  line-height: 1;
  margin-bottom: 10px;
}

.rc-title { font-family: var(--serif); font-weight: 500; font-size: 1.15rem; color: var(--ink); line-height: 1.3; margin-bottom: 8px; transition: color var(--ease); }
.rc-desc  { font-size: 0.84rem; color: var(--ink-mid); line-height: 1.75; margin-bottom: 16px; }

.rc-meta { display: flex; align-items: center; gap: 12px; }
.rc-date { font-size: 0.7rem; color: var(--ink-dim); font-weight: 500; }
.rc-tag  { font-size: 0.62rem; font-weight: 700; letter-spacing: 0.09em; text-transform: uppercase; color: var(--signal); background: rgba(252,138,23,.12); padding: 3px 8px; border-radius: 2px; }

/* ─── About page ─────────────────────────── */
.about-page-grid { display: grid; grid-template-columns: 240px 1fr; gap: 64px; align-items: start; }

/* ─── Advisory / Contact forms ───────────── */
.form-wrap { max-width: 600px; }

.form-field { margin-bottom: 18px; }

.form-field label {
  display: block;
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--ink-mid);
  margin-bottom: 6px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.form-field input,
.form-field textarea,
.form-field select {
  width: 100%;
  padding: 11px 15px;
  background: var(--panel);
  border: 1.5px solid var(--line);
  border-radius: var(--r);
  color: var(--ink);
  font-size: 0.88rem;
  outline: none;
  transition: border-color var(--ease), background var(--ease), box-shadow var(--ease);
}
.form-field input::placeholder,
.form-field textarea::placeholder { color: var(--ink-dim); }
.form-field input:focus,
.form-field textarea:focus,
.form-field select:focus {
  border-color: var(--signal);
  box-shadow: 0 0 0 3px rgba(252,138,23,.1);
}
.form-field textarea { resize: vertical; min-height: 120px; }

.form-grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

/* ─── Contact Wizard ─────────────────────── */
.contact-layout { display: grid; grid-template-columns: 1fr 280px; gap: 60px; align-items: start; }
.wizard-card { background: var(--paper); border: 1px solid var(--line); border-radius: var(--r); overflow: hidden; }
.wizard-progress { display: flex; align-items: flex-start; padding: 28px 32px 0; }
.wp-step { flex: none; display: flex; flex-direction: column; align-items: center; }
.wp-connector { flex: 1; height: 2px; background: var(--line); margin-top: 13px; transition: background var(--ease); }
.wp-connector.is-done { background: var(--deep); }
.wp-dot { width: 28px; height: 28px; border-radius: 50%; border: 2px solid var(--line); background: var(--paper); display: flex; align-items: center; justify-content: center; font-size: 0.7rem; font-weight: 700; color: var(--ink-dim); transition: all var(--ease); }
.wp-step.is-active .wp-dot { border-color: var(--deep); background: var(--deep); color: #fff; }
.wp-step.is-done .wp-dot { border-color: var(--deep); background: var(--deep); color: #fff; }
.wp-label { font-size: 0.68rem; font-weight: 500; color: var(--ink-dim); margin-top: 6px; text-align: center; white-space: nowrap; }
.wp-step.is-active .wp-label { color: var(--deep); font-weight: 600; }
.wp-step.is-done .wp-label { color: var(--ink-mid); }
.wizard-body { padding: 28px 32px; }
.wizard-panel { display: none; }
.wizard-panel.is-active { display: block; }
.wizard-nav-row { display: flex; align-items: center; justify-content: space-between; margin-top: 24px; padding-top: 20px; border-top: 1px solid var(--line); }
.wizard-back-btn { background: none; border: none; font-size: 0.82rem; color: var(--ink-mid); cursor: pointer; padding: 0; font-family: var(--sans); }
.wizard-back-btn:hover { color: var(--ink); }
.wizard-next-btn, .wizard-submit-btn { font-size: 0.85rem; padding: 11px 24px; background: var(--deep); color: #fff; border: none; border-radius: var(--r); cursor: pointer; font-family: var(--sans); font-weight: 600; transition: opacity var(--ease); }
.wizard-next-btn:hover, .wizard-submit-btn:hover { opacity: 0.85; }
.wizard-complete { text-align: center; padding: 40px 0; }
.wizard-complete-icon { width: 52px; height: 52px; border-radius: 50%; background: #edfbf1; border: 2px solid #4caf50; display: flex; align-items: center; justify-content: center; margin: 0 auto 18px; color: #2a9d4a; }

/* ─── Goal tiles (wizard step 1) ─── */
.goal-tiles { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-top: 18px; }
.goal-tile { display: flex; flex-direction: row; align-items: flex-start; gap: 12px; padding: 16px; border: 1.5px solid var(--line); border-radius: var(--r); cursor: pointer; transition: border-color var(--ease), background var(--ease); background: var(--paper); text-align: left; width: 100%; font-family: var(--sans); }
.goal-tile:hover { border-color: var(--deep); background: var(--panel); }
.goal-tile.is-selected { border-color: var(--deep); background: var(--panel); }
.goal-tile-icon { width: 34px; height: 34px; border-radius: 6px; background: var(--panel); border: 1px solid var(--line); display: flex; align-items: center; justify-content: center; color: var(--deep); flex-shrink: 0; transition: all var(--ease); }
.goal-tile.is-selected .goal-tile-icon, .goal-tile:hover .goal-tile-icon { background: var(--deep); color: #fff; border-color: var(--deep); }
.goal-tile h3 { font-size: 0.83rem; font-weight: 600; color: var(--ink); margin: 0 0 3px; line-height: 1.3; }
.goal-tile p { font-size: 0.73rem; color: var(--ink-mid); margin: 0; line-height: 1.5; }

/* ─── Trusted partner logo grid ─── */
.trusted-partner-section { padding: 56px 0; background: var(--panel); border-top: 1px solid var(--line); }
.trusted-partner-inner { display: grid; grid-template-columns: 320px 1fr; gap: 60px; align-items: center; }
.trusted-partner-left h2 { font-family: var(--serif); font-size: 1.35rem; font-weight: 500; color: var(--ink); margin-bottom: 12px; line-height: 1.35; }
.trusted-partner-left p { font-size: 0.85rem; color: var(--ink-mid); line-height: 1.75; margin-bottom: 20px; }
.trusted-logo-grid { display: grid; grid-template-columns: repeat(3, 1fr); }
.trusted-logo-cell { padding: 28px 20px; display: flex; align-items: center; justify-content: center; min-height: 90px; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.trusted-logo-cell:nth-child(3n) { border-right: none; }
.trusted-logo-cell:nth-child(4), .trusted-logo-cell:nth-child(5), .trusted-logo-cell:nth-child(6) { border-bottom: none; }
.trusted-logo-cell { overflow: hidden; }
.trusted-logo-cell svg { opacity: 0.55; transition: opacity var(--ease); max-width: 100%; height: auto; }
.trusted-logo-cell:hover svg { opacity: 0.85; }

/* ─── Testimonials carousel ─── */
.testimonials-section { border-top: 1px solid var(--line); }
.testimonials-header { display: flex; align-items: flex-end; justify-content: space-between; padding-bottom: 32px; border-bottom: 1px solid var(--line); }
.testimonial-slides { position: relative; }
.testimonial-slide { display: none; grid-template-columns: 180px 1fr; gap: 48px; align-items: center; padding: 48px 0 32px; }
.testimonial-slide.is-active { display: grid; }
.testimonial-photo { width: 160px; height: 160px; border-radius: 50%; background: var(--panel); border: 2px solid var(--line); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.testimonial-initials { font-family: var(--serif); font-size: 2.2rem; color: var(--ink-mid); font-weight: 300; }
.testimonial-stars { color: var(--deep); font-size: 1rem; letter-spacing: 3px; margin-bottom: 14px; }
.testimonial-quote { font-family: var(--serif); font-size: 1.08rem; line-height: 1.8; color: var(--ink); margin: 0 0 18px; font-style: italic; font-weight: 300; }
.testimonial-name { font-size: 0.85rem; font-weight: 700; color: var(--ink); display: block; }
.testimonial-title { font-size: 0.77rem; color: var(--ink-mid); display: block; margin-top: 2px; }
.testimonial-controls { display: flex; align-items: center; gap: 12px; }
.t-ctrl-btn { width: 34px; height: 34px; border-radius: 50%; border: 1.5px solid var(--line); background: var(--paper); display: flex; align-items: center; justify-content: center; cursor: pointer; color: var(--ink-mid); transition: all var(--ease); }
.t-ctrl-btn:hover { border-color: var(--deep); color: var(--deep); }
.t-dots { display: flex; gap: 6px; }
.t-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--line); cursor: pointer; transition: background var(--ease); border: none; padding: 0; }
.t-dot.is-active { background: var(--deep); }

/* ─── Accessibility ──────────────────────── */
:focus-visible { outline: 2px solid var(--signal); outline-offset: 3px; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); border: 0; }

/* ─── What we do ─────────────────────────── */
.wwd-grid {
  display: grid;
  grid-template-columns: 1fr 1px 1fr;
  gap: 0 48px;
  margin-bottom: 36px;
}
.wwd-divider {
  background: var(--line);
  width: 1px;
  min-height: 100%;
}
.wwd-col { padding: 8px 0; display: flex; flex-direction: column; }
.wwd-col p { flex: 1; }
.wwd-for {
  display: block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--deep);
  margin-bottom: 12px;
}
.wwd-col p { font-size: 0.95rem; color: var(--ink-mid); line-height: 1.75; }
.quick-links-bar {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  padding-top: 24px;
  border-top: 1px solid var(--line);
  font-size: 0.82rem;
}
.quick-links-bar .t-label { flex-shrink: 0; }
.quick-links-bar a { color: var(--ink-mid); font-weight: 500; transition: color var(--ease); }
.quick-links-bar a:hover { color: var(--deep); }
.ql-sep { color: var(--line); }

/* ─── Focus areas ────────────────────────── */
.focus-area-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: var(--r);
  overflow: hidden;
}
.focus-area-item {
  background: var(--paper);
  padding: 28px 24px 32px;
  display: flex;
  flex-direction: column;
}
.focus-area-icon {
  width: 44px;
  height: 44px;
  border-radius: var(--r);
  background: var(--panel);
  border: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--deep);
  margin-bottom: 16px;
  flex-shrink: 0;
}
.focus-area-name {
  font-family: var(--serif);
  font-size: 1.15rem;
  font-weight: 500;
  color: var(--ink);
  margin-bottom: 10px;
}
.focus-area-desc { font-size: 0.82rem; color: var(--ink-mid); line-height: 1.7; }

/* ─── Partner subscriber plans ───────────── */
.partner-plans-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 48px;
}
.partner-plan-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--r);
  padding: 28px;
  display: flex;
  flex-direction: column;
}
.partner-plan-card--featured {
  border-color: var(--deep);
  border-width: 2px;
  box-shadow: var(--shadow);
  position: relative;
}
.partner-plan-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--deep);
  color: #fff;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 4px 14px;
  border-radius: 20px;
  white-space: nowrap;
}
.partner-plan-card h3 {
  font-family: var(--sans);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-mid);
  margin-bottom: 12px;
}
.partner-plan-price {
  font-family: var(--serif);
  font-size: 2.4rem;
  font-weight: 300;
  color: var(--ink);
  line-height: 1;
  margin-bottom: 4px;
}
.partner-plan-price sup { font-size: 1.1rem; vertical-align: super; }
.partner-plan-period { font-size: 0.76rem; color: var(--ink-dim); margin-bottom: 20px; }
.partner-plan-features {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 24px;
  flex: 1;
}
.partner-plan-features li {
  display: flex;
  gap: 8px;
  align-items: flex-start;
  font-size: 0.82rem;
  color: var(--ink-mid);
  line-height: 1.5;
}
.partner-plan-features li::before {
  content: '';
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--deep);
  flex-shrink: 0;
  margin-top: 6px;
}
.become-partner-cta {
  background: var(--deep);
  border-radius: var(--r);
  padding: 40px 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}
.become-partner-cta h2 {
  font-family: var(--serif);
  font-size: clamp(1.3rem, 2vw, 1.7rem);
  font-weight: 400;
  color: #fff;
  margin-bottom: 8px;
}
.become-partner-cta p { font-size: 0.88rem; color: rgba(255,255,255,0.78); max-width: 480px; line-height: 1.7; }
.become-partner-cta .btn-white {
  background: #fff;
  color: var(--deep);
  font-size: 0.85rem;
  font-weight: 700;
  padding: 12px 28px;
  border-radius: var(--r);
  white-space: nowrap;
  display: inline-block;
  transition: transform var(--ease), box-shadow var(--ease);
  flex-shrink: 0;
}
.become-partner-cta .btn-white:hover { transform: translateY(-1px); box-shadow: 0 4px 16px rgba(0,0,0,.15); }

/* Ensure plan card buttons are always full-width */
.partner-plan-card .btn-outline,
.partner-plan-card .btn-primary { width: 100%; justify-content: center; }

/* ─── Reduced motion ─────────────────────── */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
}

/* ─── Responsive ─────────────────────────── */

/* Nav shrinks at medium widths to prevent Pricing tab from disappearing */
@media (max-width: 1180px) {
  .nav-links a { font-size: 0.78rem; padding: 6px 9px; }
  .btn-register-nav { padding: 8px 14px; font-size: 0.76rem; }
  .btn-login-nav { padding: 7px 10px; font-size: 0.74rem; }
}

@media (max-width: 1024px) {
  .nav-links, .btn-register-nav, .btn-login-nav { display: none; }
  .nav-hamburger { display: flex; }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .footer-col:nth-child(1) { grid-column: 1 / -1; }
}

@media (max-width: 900px) {
  .fw-inner { grid-template-columns: 1fr; gap: 32px; }
  .fw-sidebar { position: static; }
  .why-grid { grid-template-columns: 1fr; gap: 40px; }
  .for-who-grid { grid-template-columns: 1fr; gap: 36px; }
  .about-grid, .about-page-grid { grid-template-columns: 1fr; gap: 32px; }
  .about-sidebar { position: static; display: flex; align-items: center; gap: 16px; }
  .advisory-block { grid-template-columns: 1fr; padding: 32px; }
  .advisory-block p { max-width: 100%; }
  .advisory-block__cta { text-align: left; }
  .pricing-grid { grid-template-columns: 1fr 1fr; }
  .on-demand-grid { grid-template-columns: 1fr 1fr; }
  .grc-diff-grid { grid-template-columns: 1fr 1fr; }
  .partner-cards { grid-template-columns: 1fr; }
  .core-values-grid { grid-template-columns: repeat(2, 1fr); }
  .encourage-grid { grid-template-columns: 1fr; }
  .partner-type-grid { grid-template-columns: 1fr; }
  .encourage-item, .partner-type-col { border-right: none; border-bottom: 1px solid var(--line); }
  .encourage-item:last-child, .partner-type-col:last-child { border-bottom: none; }
  .contact-options-grid { grid-template-columns: 1fr; }
  .trusted-partner-inner { grid-template-columns: 1fr; gap: 28px; }
  .contact-layout { grid-template-columns: 1fr; }
  .goal-tiles { grid-template-columns: 1fr; }
  .testimonial-slide { grid-template-columns: 1fr; gap: 24px; }
  .testimonial-photo { width: 72px; height: 72px; }
  .testimonial-initials { font-size: 1.4rem; }
  .trusted-logo-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonials-header { flex-direction: column; align-items: flex-start; gap: 16px; }
  .topics-grid { grid-template-columns: repeat(2, 1fr); }
  .outcome-inner { flex-direction: column; gap: 24px; text-align: center; }
  .outcome-stat { font-size: 4rem; }
  .stat-grid, .stat-grid--5 { grid-template-columns: repeat(2, 1fr); gap: 32px 0; }
  .stat-item { border-right: none; padding: 0 0 0 0; }
  .stat-item:nth-child(odd) { padding-right: 24px; border-right: 1px solid var(--line); }
  .sector-grid { grid-template-columns: repeat(2, 1fr); }
  .bar-row { grid-template-columns: 140px 1fr 38px; gap: 12px; }
  .bar-label { font-size: 0.74rem; }
  .instructor-layout { grid-template-columns: 1fr; gap: 28px; }
  .instructor-selector { flex-direction: row; overflow-x: auto; border-radius: var(--r) var(--r) 0 0; -webkit-overflow-scrolling: touch; scroll-snap-type: x mandatory; }
  .instr-tab { flex-direction: column; align-items: center; text-align: center; min-width: 118px; border-bottom: none; border-right: 1px solid var(--line); padding: 14px 12px; scroll-snap-align: start; }
  .instr-tab:last-child { border-right: none; }
  .instr-tab.is-active { border-left: none; border-bottom: 3px solid var(--deep); background: var(--panel); }
  .instr-tab:not(.is-active) { border-left: none; border-bottom: 3px solid transparent; }
  .instr-tab-role { display: none; }
}

@media (max-width: 768px) {
  :root { --nav-h: 58px; }
  .wrap, .fw-inner, .footer-top, .footer-bottom { padding-inline: 20px; }
  .ribbon { padding-inline: 44px; font-size: 0.75rem; }

  .hero { padding-block: 64px 52px; }
  .sec { padding-block: 60px; }

  .grid-3 { grid-template-columns: 1fr; }
  .grc-diff-grid { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: 1fr 1fr; }
  .research-page-grid { grid-template-columns: 1fr; }
  .research-card:nth-child(even) { padding: 36px 0; border-left: none; }
  .research-brief { grid-template-columns: 44px 1fr auto; gap: 0 14px; }
  .rb-num { font-size: 2rem; }

  .webinar-row { grid-template-columns: 72px 1fr; }
  .wr-actions { grid-column: 1 / -1; flex-direction: row; align-items: center; justify-content: space-between; }

  .footer-top { grid-template-columns: 1fr 1fr; }
  .footer-col:nth-child(1) { grid-column: 1 / -1; }
  .footer-bottom { flex-direction: column; align-items: flex-start; gap: 10px; }

  .newsletter-form { flex-direction: column; }
  .newsletter-form button { width: 100%; text-align: center; }
  .free-cta-inner { flex-direction: column; gap: 24px; text-align: center; }
  .free-cta-band .btn-free { width: 100%; text-align: center; }
  .news-grid { grid-template-columns: 1fr; }
  .news-card--featured { grid-column: 1; }

  .pricing-grid { grid-template-columns: 1fr; }
  .on-demand-grid { grid-template-columns: 1fr; }
  .form-grid-2 { grid-template-columns: 1fr; }

  .vt-layout { grid-template-columns: 1fr; }
  .vt-thumbs { flex-direction: row; overflow-x: auto; -webkit-overflow-scrolling: touch; scroll-snap-type: x mandatory; padding-bottom: 2px; }
  .vt-thumb { min-width: 200px; scroll-snap-align: start; }
}

@media (max-width: 480px) {
  .t-display { font-size: 2.25rem; }
  .footer-top { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: 1fr; }
  .free-cta-inner { flex-direction: column; text-align: center; }
  .free-cta-band .btn-free { width: 100%; text-align: center; }
  .news-grid { grid-template-columns: 1fr; }
  .news-card--featured { grid-column: 1; }
  .team-photo-placeholder { height: 260px; }
  .login-card { padding: 32px 24px; }
  .focus-area-grid { grid-template-columns: 1fr; }
  .wwd-grid { grid-template-columns: 1fr; gap: 32px; }
  .wwd-divider { display: none; }
  .partner-plans-grid { grid-template-columns: 1fr; }
  .become-partner-cta { padding: 28px 24px; flex-direction: column; align-items: flex-start; }
}

/* Focus areas 2-col on tablet */
@media (max-width: 900px) {
  .focus-area-grid { grid-template-columns: repeat(2, 1fr); }
  .wwd-grid { grid-template-columns: 1fr; gap: 32px; }
  .wwd-divider { display: none; }
  .partner-plans-grid { grid-template-columns: 1fr; }
  .become-partner-cta { flex-direction: column; align-items: flex-start; }
}
