/* ==========================================================================
   GenEdSys Public Design System — shared chrome + components
   Source of truth: ~/EducationMediaOS/GenEdSys/public-site/shared/
   Deployed identically to genedsys.online (plugin) and courses.genedsys.online (child theme).
   Tokens from "GenEdSys Course Studio UI mockups" design handoff (Sept 2026).
   ========================================================================== */

:root {
  --ged-ink: #231043;
  --ged-cyan: #56C9F8;
  --ged-cyan-hover: #7FD6F5;
  --ged-cyan-link: #1BA3D6;
  --ged-cyan-link-hover: #0F86B4;
  --ged-cyan-pale: #BDEBFB;
  --ged-cyan-tint: #F0FAFE;
  --ged-cta-text: #062230;
  --ged-magenta: #A2268F;
  --ged-amber: #E59A2B;
  --ged-green: #2E9E6B;
  --ged-text: #1A1D21;
  --ged-text-2: #4B5563;
  --ged-muted: #6B7280;
  --ged-placeholder: #9CA3AF;
  --ged-white: #FFFFFF;
  --ged-wash: #F7F8FA;
  --ged-hairline: #EBEDF0;
  --ged-border: #DDE1E6;
  --ged-tint-build: #EAF1FE;
  --ged-tint-polish: #FBF1DF;
  --ged-tint-enhance: #FDECE8;
  --ged-serif: 'Newsreader', Georgia, 'Times New Roman', serif;
  --ged-sans: 'Figtree', system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
  --ged-container: 1180px;
  --ged-gutter: 28px;
  --ged-ease: cubic-bezier(.4,0,.2,1);
}

/* ---- Reset (scoped to standalone public pages) ---- */
html.ged-page { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
html.ged-page, html.ged-page body { margin: 0; padding: 0; }
body.ged-body { background: var(--ged-white); color: var(--ged-text); font-family: var(--ged-sans); font-size: 17px; line-height: 1.62; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; }
.ged-body *, .ged-body *::before, .ged-body *::after { box-sizing: border-box; }
.ged-body img { max-width: 100%; height: auto; display: block; }
.ged-body a { color: var(--ged-cyan-link); text-decoration: none; transition: color .18s var(--ged-ease), border-color .18s var(--ged-ease), background-color .18s var(--ged-ease); }
.ged-body a:hover { color: var(--ged-cyan-link-hover); text-decoration: underline; }
.ged-body h1, .ged-body h2, .ged-body h3, .ged-body p { margin: 0; text-wrap: pretty; }
.ged-body button { font: inherit; }
.ged-wrap { width: 100%; overflow-x: hidden; }
.ged-container { max-width: var(--ged-container); margin: 0 auto; padding-left: var(--ged-gutter); padding-right: var(--ged-gutter); }
.ged-sr { position: absolute !important; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; }
.ged-skip { position: absolute; left: -999px; top: 8px; background: var(--ged-white); color: var(--ged-ink); padding: 10px 16px; border-radius: 999px; z-index: 1000; }
.ged-skip:focus { left: 12px; }

/* ---- Typography ---- */
.ged-h1 { font-family: var(--ged-serif); font-weight: 400; font-size: clamp(40px, 6.2vw, 76px); line-height: 1.04; letter-spacing: -.015em; max-width: 17ch; }
.ged-h1 em { font-style: italic; color: var(--ged-cyan-hover); }
.ged-h2 { font-family: var(--ged-serif); font-weight: 400; font-size: clamp(30px, 3.9vw, 46px); line-height: 1.12; letter-spacing: -.012em; }
.ged-h2--cta { font-size: clamp(28px, 3.5vw, 42px); line-height: 1.14; }
.ged-h2--xl { font-size: clamp(30px, 4.4vw, 52px); line-height: 1.1; max-width: 20ch; }
.ged-h3 { font-size: 21px; font-weight: 700; letter-spacing: -.01em; }
.ged-lede { font-size: clamp(17px, 1.6vw, 20px); line-height: 1.55; max-width: 58ch; }
.ged-body-copy { font-size: 17px; line-height: 1.62; color: var(--ged-text-2); }
.ged-card-copy { font-size: 15px; line-height: 1.6; color: var(--ged-text-2); }
.ged-fine { font-size: 13.5px; line-height: 1.6; color: var(--ged-muted); }
.ged-eyebrow { font-size: 11px; font-weight: 700; letter-spacing: .18em; text-transform: uppercase; color: var(--ged-cyan-link); }
.ged-eyebrow--magenta { color: var(--ged-magenta); }
.ged-eyebrow--on-dark { color: var(--ged-cyan); }
.ged-eyebrow-row { display: flex; align-items: center; gap: 12px; flex-wrap: wrap; }
.ged-eyebrow-row .ged-dot { width: 4px; height: 4px; border-radius: 999px; background: rgba(255,255,255,.35); }
.ged-eyebrow-row .ged-eyebrow--meta { font-weight: 600; letter-spacing: .14em; color: rgba(255,255,255,.6); }
.ged-numeral { font-family: var(--ged-serif); font-size: 15px; color: var(--ged-placeholder); }

/* ---- Buttons ---- */
.ged-btn { display: inline-flex; align-items: center; justify-content: center; gap: 8px; border-radius: 999px; font-weight: 600; font-size: 15px; line-height: 1.2; padding: 14px 28px; border: 1px solid transparent; cursor: pointer; text-decoration: none !important; white-space: nowrap; transition: background-color .18s var(--ged-ease), border-color .18s var(--ged-ease), color .18s var(--ged-ease); }
.ged-btn--primary { background: var(--ged-cyan); color: var(--ged-cta-text) !important; font-weight: 700; padding: 15px 28px; }
.ged-btn--primary:hover { background: var(--ged-cyan-hover); }
.ged-btn--ghost { color: var(--ged-white) !important; border-color: rgba(255,255,255,.34); background: transparent; }
.ged-btn--ghost:hover { border-color: var(--ged-white); }
.ged-btn--outline { color: var(--ged-text) !important; border-color: var(--ged-border); background: var(--ged-white); font-size: 14.5px; padding: 13px 24px; }
.ged-btn--outline:hover { border-color: var(--ged-text); }
.ged-btn--white { background: var(--ged-white); color: var(--ged-ink) !important; font-size: 14px; padding: 10px 18px; }
.ged-btn--white:hover { background: var(--ged-cyan-pale); }
.ged-btn--sm { font-size: 14px; padding: 11px 20px; }
.ged-btn:focus-visible, .ged-body a:focus-visible, .ged-body button:focus-visible, .ged-body input:focus-visible { outline: 2px solid var(--ged-cyan); outline-offset: 3px; }

/* ---- Chips ---- */
.ged-chips { display: flex; flex-wrap: wrap; gap: 8px; }
.ged-chip { font-size: 13px; font-weight: 500; color: var(--ged-text-2); background: var(--ged-wash); border: 1px solid var(--ged-hairline); border-radius: 999px; padding: 7px 14px; }
.ged-chip--on-dark { font-size: 12.5px; font-weight: 600; color: var(--ged-white); background: transparent; border-color: rgba(255,255,255,.22); }
.ged-chip--link:hover { border-color: var(--ged-cyan-link); color: var(--ged-cyan-link-hover); text-decoration: none; }
.ged-tags { display: flex; flex-wrap: wrap; gap: 10px 28px; font-size: 13px; color: rgba(255,255,255,.5); }

/* ---- Global public header ---- */
.ged-header { background: var(--ged-ink); color: var(--ged-white); position: relative; z-index: 50; }
.ged-header__row { display: flex; align-items: center; justify-content: space-between; gap: 24px; padding-top: 22px; padding-bottom: 22px; }
.ged-brand { display: flex; align-items: center; gap: 12px; color: var(--ged-white) !important; text-decoration: none !important; flex: none; }
.ged-brand__mark { width: 52px; height: auto; flex: none; }
.ged-brand__text { display: flex; flex-direction: column; line-height: 1; }
.ged-brand__word { font-family: var(--ged-serif); font-size: 21px; letter-spacing: .01em; color: var(--ged-white); }
.ged-brand__sub { font-size: 10.5px; letter-spacing: .16em; text-transform: uppercase; color: rgba(255,255,255,.62); margin-top: 4px; font-family: var(--ged-sans); }
.ged-nav { display: flex; align-items: center; gap: 28px; flex-wrap: wrap; justify-content: flex-end; }
.ged-nav a { font-size: 14px; font-weight: 500; color: rgba(255,255,255,.78); }
.ged-nav a:hover { color: var(--ged-white); text-decoration: none; }
.ged-nav a.is-current { color: var(--ged-white); font-weight: 600; box-shadow: inset 0 -1px 0 var(--ged-cyan); padding-bottom: 2px; }
.ged-nav a.ged-nav__signin { font-weight: 600; color: var(--ged-ink); background: var(--ged-white); padding: 10px 18px; border-radius: 999px; }
.ged-nav a.ged-nav__signin:hover { background: var(--ged-cyan-pale); color: var(--ged-ink); }
.ged-nav-toggle { display: none; background: transparent; border: 1px solid rgba(255,255,255,.28); color: var(--ged-white); border-radius: 999px; padding: 9px 16px; font-size: 14px; font-weight: 600; cursor: pointer; }
.ged-nav-toggle[aria-expanded="true"] { background: rgba(255,255,255,.1); }

/* Page-level secondary nav (sits inside the hero band, under the global header) */
.ged-subnav { background: var(--ged-ink); border-top: 1px solid rgba(255,255,255,.08); }
.ged-subnav__row { display: flex; align-items: center; justify-content: flex-start; gap: 8px 28px; flex-wrap: wrap; padding-top: 12px; padding-bottom: 12px; }
.ged-subnav__label { font-size: 10.5px; letter-spacing: .16em; text-transform: uppercase; color: rgba(255,255,255,.45); margin-right: 4px; }
.ged-subnav a { font-size: 13.5px; font-weight: 500; color: rgba(255,255,255,.72); }
.ged-subnav a:hover { color: var(--ged-white); text-decoration: none; }
.ged-subnav a.ged-subnav__cta { margin-left: auto; font-weight: 600; color: var(--ged-ink); background: var(--ged-white); padding: 8px 16px; border-radius: 999px; font-size: 13.5px; }
.ged-subnav a.ged-subnav__cta:hover { background: var(--ged-cyan-pale); color: var(--ged-ink); }

@media (max-width: 860px) {
  .ged-nav-toggle { display: inline-flex; }
  .ged-nav { display: none; width: 100%; flex-direction: column; align-items: stretch; gap: 4px; padding: 8px 0 12px; border-top: 1px solid rgba(255,255,255,.1); }
  .ged-nav.is-open { display: flex; }
  .ged-nav a { padding: 12px 4px; font-size: 16px; }
  .ged-nav a.is-current { box-shadow: none; border-left: 2px solid var(--ged-cyan); padding-left: 12px; }
  .ged-nav a.ged-nav__signin { align-self: flex-start; margin-top: 8px; }
  .ged-header__row { flex-wrap: wrap; }
  .ged-subnav a.ged-subnav__cta { margin-left: 0; }
}

/* ---- Sections ---- */
.ged-section { padding: clamp(64px, 8vw, 104px) 0; scroll-margin-top: 20px; }
.ged-section--white { background: var(--ged-white); border-bottom: 1px solid var(--ged-hairline); }
.ged-section--wash { background: var(--ged-wash); border-bottom: 1px solid var(--ged-hairline); }
.ged-section--ink { background: var(--ged-ink); color: var(--ged-white); padding: clamp(64px, 8vw, 108px) 0; }
.ged-section--ink .ged-h2, .ged-section--ink .ged-h3 { color: var(--ged-white); }
.ged-section--ink .ged-body-copy { color: rgba(255,255,255,.72); }
.ged-stack { display: flex; flex-direction: column; gap: 16px; }
.ged-stack--lg { gap: 20px; }
.ged-stack--section { gap: clamp(36px, 4.5vw, 56px); }
.ged-max-62 { max-width: 62ch; } .ged-max-60 { max-width: 60ch; } .ged-max-56 { max-width: 56ch; } .ged-max-52 { max-width: 52ch; } .ged-max-50 { max-width: 50ch; } .ged-max-46 { max-width: 46ch; } .ged-max-64 { max-width: 64ch; }
.ged-two-col { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: clamp(32px, 5vw, 72px); align-items: start; }
.ged-two-col--center { align-items: center; }
.ged-two-col > .ged-col-pad { padding-top: 8px; display: flex; flex-direction: column; gap: 24px; }

/* ---- Hero ---- */
.ged-hero { background: var(--ged-ink); color: var(--ged-white); position: relative; overflow: hidden; }
.ged-hero__bg { position: absolute; inset: 0; opacity: .28; background-size: cover; background-position: center; }
.ged-hero__scrim { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(35,16,67,.72) 0%, rgba(35,16,67,.88) 55%, #231043 100%); pointer-events: none; }
.ged-hero__inner { position: relative; display: grid; grid-template-columns: minmax(0, 1fr); gap: 28px; padding-top: clamp(56px, 9vw, 116px); padding-bottom: clamp(72px, 10vw, 132px); }
.ged-hero__inner--short { padding-top: clamp(40px, 6vw, 72px); padding-bottom: clamp(40px, 6vw, 80px); }
.ged-hero .ged-lede { color: rgba(255,255,255,.76); }
.ged-hero__actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 6px; }

/* ---- Cards ---- */
.ged-grid { display: grid; gap: 20px; }
.ged-grid--3 { grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); }
.ged-grid--4 { grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); }
.ged-grid--eco { grid-template-columns: repeat(auto-fit, minmax(190px, 1fr)); gap: 14px; }
.ged-grid--platform { grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); gap: 14px; }
.ged-grid--media { grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); }
.ged-card { background: var(--ged-white); border: 1px solid var(--ged-hairline); border-radius: 16px; box-shadow: 0 1px 3px rgba(16,24,40,.06); overflow: hidden; display: flex; flex-direction: column; }
.ged-card__well { height: 150px; position: relative; display: flex; align-items: flex-end; justify-content: flex-end; padding: 14px 18px; overflow: hidden; }
.ged-card__well-numeral { font-family: var(--ged-serif); font-size: 96px; line-height: 1; color: rgba(35,16,67,.08); user-select: none; }
.ged-card__body { padding: 26px 26px 30px; display: flex; flex-direction: column; gap: 12px; }
.ged-card__meta { display: flex; align-items: center; gap: 10px; }
.ged-card__label { font-size: 12px; font-weight: 700; letter-spacing: .16em; text-transform: uppercase; }
.ged-card--pad { padding: 30px 28px 32px; gap: 12px; }
.ged-card__bignum { font-family: var(--ged-serif); font-size: 38px; line-height: 1; }
.ged-eco { border: 1px solid var(--ged-hairline); background: var(--ged-wash); border-radius: 14px; padding: 22px 20px; display: flex; flex-direction: column; gap: 8px; }
.ged-eco--active { border-color: var(--ged-cyan-link); background: var(--ged-cyan-tint); }
.ged-eco__eyebrow { font-size: 11px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: var(--ged-muted); }
.ged-eco--active .ged-eco__eyebrow { color: var(--ged-cyan-link-hover); }
.ged-eco__title { font-size: 17px; font-weight: 700; letter-spacing: -.01em; color: var(--ged-text); }
.ged-eco__copy { font-size: 13.5px; line-height: 1.5; color: var(--ged-text-2); }
.ged-eco__link { font-size: 13.5px; font-weight: 600; margin-top: 4px; }
.ged-eco--platform { padding: 24px 22px; }
.ged-eco--platform .ged-eco__copy { font-size: 14px; line-height: 1.55; }
.ged-color-build { color: var(--ged-cyan-link); } .ged-color-polish { color: var(--ged-amber); } .ged-color-enhance { color: var(--ged-magenta); } .ged-color-green { color: var(--ged-green); }
.ged-well-build { background: var(--ged-tint-build); } .ged-well-polish { background: var(--ged-tint-polish); } .ged-well-enhance { background: var(--ged-tint-enhance); }

/* ---- Chain panel (dark) ---- */
.ged-chain { display: flex; flex-direction: column; background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.12); border-radius: 20px; padding: clamp(20px, 3vw, 32px); }
.ged-chain__row { display: flex; align-items: center; gap: 16px; padding: 14px 4px; }
.ged-chain__num { font-family: var(--ged-serif); font-size: 13px; color: var(--ged-cyan); width: 26px; flex: none; }
.ged-chain__label { font-size: clamp(16px, 2vw, 19px); font-weight: 600; letter-spacing: -.01em; }
.ged-chain__link { height: 18px; border-left: 1px solid rgba(86,201,248,.45); margin-left: 30px; }
.ged-chain__row--end { background: rgba(86,201,248,.12); border: 1px solid rgba(86,201,248,.3); border-radius: 12px; margin-top: 6px; }
.ged-chain__row--end .ged-chain__num { padding-left: 8px; }
.ged-chain__row--end .ged-chain__label { font-weight: 700; color: var(--ged-cyan-pale); }
/* Chain panel (light, For Schools) */
.ged-chain--light { background: var(--ged-white); border: 1px solid var(--ged-hairline); box-shadow: 0 1px 3px rgba(16,24,40,.06); padding: clamp(24px, 3vw, 36px); }
.ged-chain--light .ged-chain__row { gap: 14px; padding: 12px 4px; }
.ged-chain--light .ged-chain__link { height: 20px; border-left: 1px solid var(--ged-border); margin-left: 8px; }
.ged-chain__dot { width: 9px; height: 9px; border-radius: 999px; flex: none; }
.ged-chain--light .ged-chain__label { font-weight: 700; letter-spacing: .02em; color: var(--ged-text); }
.ged-chain__foot { margin-top: 20px; padding-top: 20px; border-top: 1px solid var(--ged-hairline); font-size: 15px; font-weight: 600; color: var(--ged-text); }

/* ---- CTA panel + forms ---- */
.ged-panel { background: var(--ged-white); border: 1px solid var(--ged-hairline); border-radius: 24px; box-shadow: 0 4px 12px rgba(16,24,40,.08); padding: clamp(32px, 5vw, 64px); display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: clamp(28px, 4vw, 56px); align-items: center; }
.ged-section--cta { background: var(--ged-wash); padding: clamp(64px, 8vw, 110px) 0; }
.ged-form { display: flex; flex-direction: column; gap: 12px; }
.ged-form__label { font-size: 12.5px; font-weight: 600; letter-spacing: .04em; text-transform: uppercase; color: var(--ged-muted); }
.ged-form__row { display: flex; flex-wrap: wrap; gap: 10px; }
.ged-input { flex: 1 1 220px; min-width: 0; border: 1px solid var(--ged-border); border-radius: 999px; padding: 14px 20px; font-size: 15px; font-family: var(--ged-sans); color: var(--ged-text); background: var(--ged-white); }
.ged-input::placeholder { color: var(--ged-placeholder); }
.ged-input:focus { border-color: var(--ged-cyan-link); outline: none; box-shadow: 0 0 0 3px rgba(86,201,248,.3); }
.ged-form__after { display: flex; align-items: center; gap: 14px; margin-top: 10px; flex-wrap: wrap; }
.ged-form__hint { font-size: 13px; color: var(--ged-placeholder); }
.ged-hp { position: absolute; left: -9999px; width: 1px; height: 1px; opacity: 0; }
.ged-notice { border-radius: 12px; padding: 12px 16px; font-size: 14.5px; line-height: 1.5; }
.ged-notice--ok { background: #EAF8F1; border: 1px solid #BFE6D2; color: #14532D; }
.ged-notice--err { background: #FDECE8; border: 1px solid #F5C3B8; color: #7F1D1D; }

/* ---- Media / video cards (Instructor Network) ---- */
.ged-media { background: var(--ged-white); border: 1px solid var(--ged-hairline); border-radius: 16px; overflow: hidden; display: flex; flex-direction: column; box-shadow: 0 1px 3px rgba(16,24,40,.06); }
.ged-media__thumb { position: relative; aspect-ratio: 16 / 9; background: linear-gradient(135deg, #2A1554 0%, #231043 60%, #1A0B33 100%); display: flex; align-items: center; justify-content: center; overflow: hidden; }
.ged-media__thumb iframe, .ged-media__thumb img { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; object-fit: cover; }
.ged-media__play { width: 52px; height: 52px; border-radius: 999px; background: rgba(255,255,255,.14); border: 1px solid rgba(255,255,255,.34); display: flex; align-items: center; justify-content: center; color: var(--ged-white); }
.ged-media__badge { position: absolute; top: 12px; left: 12px; font-size: 10.5px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: var(--ged-white); background: rgba(35,16,67,.75); border: 1px solid rgba(255,255,255,.2); border-radius: 999px; padding: 5px 10px; }
.ged-media__badge--lock { background: rgba(162,38,143,.85); border-color: transparent; }
.ged-media__body { padding: 18px 20px 20px; display: flex; flex-direction: column; gap: 6px; }
.ged-media__title { font-size: 16px; font-weight: 700; letter-spacing: -.01em; color: var(--ged-text); }
.ged-media__meta { font-size: 13px; color: var(--ged-muted); }
.ged-media--locked .ged-media__thumb::after { content: ""; position: absolute; inset: 0; background: repeating-linear-gradient(135deg, rgba(255,255,255,.03) 0 10px, transparent 10px 20px); }
.ged-person { display: flex; gap: 16px; align-items: flex-start; background: var(--ged-white); border: 1px solid var(--ged-hairline); border-radius: 16px; padding: 22px; box-shadow: 0 1px 3px rgba(16,24,40,.06); }
.ged-person__avatar { width: 56px; height: 56px; border-radius: 999px; flex: none; background: linear-gradient(135deg, var(--ged-cyan) 0%, var(--ged-magenta) 100%); display: flex; align-items: center; justify-content: center; color: var(--ged-white); font-family: var(--ged-serif); font-size: 22px; }
.ged-person__name { font-size: 16px; font-weight: 700; color: var(--ged-text); }
.ged-person__role { font-size: 13px; color: var(--ged-muted); margin-top: 2px; }
.ged-person__bio { font-size: 14px; line-height: 1.55; color: var(--ged-text-2); margin-top: 8px; }
.ged-section-head { display: flex; align-items: flex-end; justify-content: space-between; gap: 16px 28px; flex-wrap: wrap; }
.ged-section-head .ged-more { font-size: 14px; font-weight: 600; white-space: nowrap; }
.ged-tile { display: flex; flex-direction: column; gap: 8px; border: 1px solid var(--ged-hairline); background: var(--ged-wash); border-radius: 14px; padding: 22px 20px; color: var(--ged-text) !important; text-decoration: none !important; transition: border-color .18s var(--ged-ease), background-color .18s var(--ged-ease); }
.ged-tile:hover { border-color: var(--ged-cyan-link); background: var(--ged-cyan-tint); }
.ged-tile__title { font-size: 17px; font-weight: 700; letter-spacing: -.01em; }
.ged-tile__copy { font-size: 13.5px; line-height: 1.5; color: var(--ged-text-2); }
.ged-tile__status { font-size: 11px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: var(--ged-muted); }
.ged-tile--active { border-color: var(--ged-cyan-link); background: var(--ged-cyan-tint); }
.ged-gate { background: var(--ged-ink); color: var(--ged-white); border-radius: 24px; padding: clamp(32px, 5vw, 56px); display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: clamp(24px, 4vw, 48px); align-items: center; }
.ged-gate .ged-h2 { color: var(--ged-white); }
.ged-gate .ged-body-copy { color: rgba(255,255,255,.72); }
.ged-gate__list { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 10px; }
.ged-gate__list li { display: flex; gap: 12px; align-items: flex-start; font-size: 15px; color: rgba(255,255,255,.85); }
.ged-gate__list li::before { content: ""; width: 8px; height: 8px; border-radius: 999px; background: var(--ged-cyan); flex: none; margin-top: 8px; }
.ged-role { display: flex; flex-direction: column; gap: 12px; background: var(--ged-white); border: 1px solid var(--ged-hairline); border-radius: 16px; padding: 28px 26px 30px; box-shadow: 0 1px 3px rgba(16,24,40,.06); }
.ged-role__verb { font-size: 11px; font-weight: 700; letter-spacing: .16em; text-transform: uppercase; color: var(--ged-cyan-link); }
.ged-role .ged-btn { align-self: flex-start; margin-top: 6px; }
.ged-band { background: var(--ged-cyan-tint); border: 1px solid #CBE9F6; border-radius: 20px; padding: clamp(24px, 4vw, 40px); display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 24px; align-items: center; }

/* ---- Footer ---- */
.ged-footer { background: var(--ged-ink); color: rgba(255,255,255,.6); padding: 44px 0 36px; }
.ged-footer__top { display: flex; flex-wrap: wrap; gap: 20px; align-items: center; justify-content: space-between; }
.ged-footer__brand { display: flex; align-items: center; gap: 12px; color: var(--ged-white) !important; text-decoration: none !important; }
.ged-footer__brand img { width: 44px; height: auto; flex: none; }
.ged-footer__brand span { font-family: var(--ged-serif); font-size: 18px; color: var(--ged-white); }
.ged-footer__tag { font-size: 13px; }
.ged-footer__links { display: flex; flex-wrap: wrap; gap: 8px 24px; margin-top: 28px; padding-top: 22px; border-top: 1px solid rgba(255,255,255,.1); }
.ged-footer__links a { font-size: 13px; color: rgba(255,255,255,.72); }
.ged-footer__links a:hover { color: var(--ged-white); text-decoration: none; }
.ged-footer__legal { margin-top: 18px; font-size: 12.5px; line-height: 1.6; color: rgba(255,255,255,.5); max-width: 84ch; }
.ged-footer__legal a { color: rgba(255,255,255,.7); }

@media print {
  @page { margin: 0; }
  .ged-body section, .ged-body article, .ged-body footer { break-inside: avoid; page-break-inside: avoid; }
  .ged-body * { -webkit-print-color-adjust: exact; print-color-adjust: exact; }
  .ged-nav-toggle { display: none !important; }
}

/* ---- Hardening against host-theme base styles (Redux/Kirki inline CSS, Bootstrap) ---- */
.ged-body, .ged-body p, .ged-body span, .ged-body a, .ged-body li, .ged-body label, .ged-body input, .ged-body button, .ged-body div { font-family: var(--ged-sans); }
.ged-body p, .ged-body li { font-size: inherit; line-height: inherit; font-weight: inherit; }
.ged-body h1, .ged-body h2, .ged-body h3 { font-family: var(--ged-serif); font-weight: 400; color: var(--ged-text); }
.ged-body .ged-h3, .ged-body .ged-media__title, .ged-body .ged-eco__title, .ged-body .ged-tile__title, .ged-body .ged-person__name { font-family: var(--ged-sans); font-weight: 700; }
.ged-body .ged-h1, .ged-body .ged-h2, .ged-body .ged-h3 { line-height: inherit; }
.ged-hero h1, .ged-hero h2, .ged-hero p, .ged-section--ink h1, .ged-section--ink h2, .ged-section--ink h3, .ged-gate h2, .ged-gate p, .ged-gate li { color: var(--ged-white); }
.ged-hero .ged-lede, .ged-section--ink .ged-body-copy, .ged-gate .ged-body-copy { color: rgba(255,255,255,.76); }
.ged-body .ged-body-copy { color: var(--ged-text-2); font-size: 17px; line-height: 1.62; }
.ged-section--ink .ged-body-copy, .ged-gate .ged-body-copy { color: rgba(255,255,255,.72); }
.ged-body .ged-card-copy { color: var(--ged-text-2); font-size: 15px; line-height: 1.6; }
.ged-body .ged-fine { color: var(--ged-muted); font-size: 13.5px; line-height: 1.6; }
.ged-body .ged-eyebrow { font-family: var(--ged-sans); }
.ged-body .ged-numeral, .ged-body .ged-chain__num, .ged-body .ged-card__bignum, .ged-body .ged-card__well-numeral, .ged-body .ged-brand__word, .ged-body .ged-footer__brand span, .ged-body .ged-person__avatar { font-family: var(--ged-serif); }
.ged-body .ged-h1 { font-size: clamp(40px, 6.2vw, 76px); line-height: 1.04; }
.ged-body .ged-h2 { font-size: clamp(30px, 3.9vw, 46px); line-height: 1.12; }
.ged-body .ged-h2--cta { font-size: clamp(28px, 3.5vw, 42px); line-height: 1.14; }
.ged-body .ged-h2--xl { font-size: clamp(30px, 4.4vw, 52px); line-height: 1.1; }
.ged-body .ged-btn, .ged-body .ged-nav a, .ged-body .ged-subnav a { text-decoration: none; }
.ged-body input.ged-input { height: auto; margin: 0; box-shadow: none; }
.ged-body button.ged-btn { background-image: none; text-shadow: none; box-shadow: none; }
#trp-floater-ls, .trp-language-switcher, .trp-floater-ls-names { display: none !important; }
