/* ============================================================
   Federal Employee Institute — feduniversity.com
   Brand: navy #1a2b43 · red #c41e3a · white / cool-light
   Design: bright, clean bordered boxes, myfeduniversity-style
   ============================================================ */
:root {
  --navy: #1a2b43;
  --navy-deep: #12203a;
  --navy-mid: #24344f;
  --red: #c41e3a;
  --red-dark: #9b1830;
  --paper: #ffffff;
  --mist: #f6f8fb;          /* cool light alternate section */
  --ink: #1b2534;
  --text: #2a3648;
  --text-dim: #5c6675;
  --line: #e6e9ef;
  --line-2: #eef1f6;

  --serif: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  --sans: "Manrope", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;

  --container: 1180px;
  --radius: 14px;
  --radius-sm: 9px;
  --shadow-soft: 0 1px 2px rgba(20, 32, 58, 0.04), 0 10px 30px -18px rgba(20, 32, 58, 0.16);
  --shadow-hover: 0 20px 44px -22px rgba(20, 32, 58, 0.3);
}

* { box-sizing: border-box; min-width: 0; }
html { scroll-behavior: smooth; }
body {
  margin: 0; background: var(--paper); color: var(--text);
  font-family: var(--sans); font-size: 17px; line-height: 1.65;
  -webkit-font-smoothing: antialiased; overflow-x: hidden;
}
h1, h2, h3, h4 { font-family: var(--serif); font-weight: 600; line-height: 1.08; margin: 0; color: var(--navy); text-wrap: balance; }
p { margin: 0; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
.container { max-width: var(--container); margin: 0 auto; padding: 0 26px; }
.eyebrow { font-family: var(--sans); font-size: 0.74rem; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase; color: var(--red); }
.rule { width: 44px; height: 3px; background: var(--red); border-radius: 2px; }

/* ---------- Buttons ---------- */
.btn { display: inline-flex; align-items: center; gap: 0.5rem; font-family: var(--sans);
  font-weight: 700; font-size: 0.94rem; padding: 0.8rem 1.55rem; border-radius: 9px;
  cursor: pointer; border: 1.5px solid transparent; transition: transform 0.15s ease, box-shadow 0.2s ease, background 0.2s ease, color 0.2s ease; }
.btn:hover { transform: translateY(-1px); }
.btn-red { background: var(--red); color: #fff; box-shadow: 0 10px 22px -12px rgba(196, 30, 58, 0.8); }
.btn-red:hover { background: var(--red-dark); }
.btn-navy { background: var(--navy); color: #fff; }
.btn-navy:hover { background: var(--navy-mid); }
.btn-outline-navy { border-color: #cdd4df; color: var(--navy); background: #fff; }
.btn-outline-navy:hover { border-color: var(--navy); }
.btn-outline-white { border-color: rgba(255, 255, 255, 0.7); color: #fff; }
.btn-outline-white:hover { background: rgba(255, 255, 255, 0.12); }
.btn-lg { font-size: 1rem; padding: 0.92rem 1.85rem; }

/* ---------- Utility bar ---------- */
.utilbar { background: var(--navy-deep); color: #c4cfdf; font-size: 0.82rem; }
.utilbar .container { display: flex; align-items: center; justify-content: space-between; gap: 14px; height: 42px; }
.utilbar .u-left { display: inline-flex; align-items: center; gap: 8px; font-weight: 700; letter-spacing: 0.07em; text-transform: uppercase; font-size: 0.72rem; color: #aeb9ca; }
.utilbar .usflag { width: 22px; height: 15px; border-radius: 2px; box-shadow: 0 0 0 1px rgba(255,255,255,0.28); opacity: 1; flex: none; }
.utilbar .u-right { display: flex; gap: 24px; }
.utilbar a { color: #dbe3ef; display: inline-flex; align-items: center; gap: 7px; font-weight: 600; }
.utilbar a:hover { color: #fff; }
.utilbar svg { width: 13px; height: 13px; fill: currentColor; opacity: 0.85; flex: none; }
@media (max-width: 720px) {
  .utilbar .container { flex-direction: column; height: auto; gap: 5px; padding: 7px 0; justify-content: center; }
  .utilbar .u-left { font-size: 0.68rem; }
  .utilbar .u-right { gap: 18px; }
}

/* ---------- Navigation (stacked logo) ---------- */
.nav { position: sticky; top: 0; z-index: 60; background: #fff; border-bottom: 1px solid var(--line); }
.nav .container { display: flex; align-items: center; justify-content: space-between; gap: 16px; height: 92px; }
.brand { display: flex; align-items: center; }
.brand img { height: 50px; width: auto; }
.nav-links { display: flex; align-items: center; gap: 27px; }
.nav-links a { font-size: 0.95rem; font-weight: 600; color: #3c4a63; }
.nav-links a:hover { color: var(--red); }
.nav-links .btn-red, .nav-links .btn-navy { color: #fff; font-size: 0.98rem; padding: 0.82rem 1.75rem; margin-left: 4px; }
.nav-links .btn-red:hover, .nav-links .btn-navy:hover { color: #fff; }
/* Dropdown menus */
.nav-item { position: relative; display: flex; align-items: center; }
.has-drop > a { display: inline-flex; align-items: center; gap: 5px; }
.has-drop > a::after { content: ""; width: 6px; height: 6px; border-right: 2px solid currentColor; border-bottom: 2px solid currentColor; transform: rotate(45deg); margin: -3px 0 0 3px; opacity: 0.55; }
.drop { position: absolute; top: 100%; left: -10px; background: #fff; border: 1px solid var(--line); border-radius: 12px; box-shadow: var(--shadow-soft); padding: 8px; min-width: 210px; display: none; flex-direction: column; z-index: 70; }
.has-drop:hover > .drop, .has-drop:focus-within > .drop { display: flex; }
.drop a { padding: 9px 12px; border-radius: 8px; font-size: 0.9rem; color: #3c4a63; white-space: nowrap; }
.drop a:hover { color: var(--red); background: var(--mist); }
.nav-toggle { display: none; background: none; border: 0; cursor: pointer; flex-direction: column; gap: 5px; padding: 6px; }
.nav-toggle span { width: 24px; height: 2px; background: var(--navy); display: block; }
@media (max-width: 1024px) {
  .nav .container { height: 78px; }
  .brand img { height: 40px; }
  .nav-links { position: fixed; inset: 116px 0 auto 0; background: #fff; flex-direction: column; gap: 0;
    padding: 8px 26px 20px; border-bottom: 1px solid var(--line); transform: translateY(-150%); transition: transform 0.3s ease; box-shadow: var(--shadow-soft); }
  .nav-links.open { transform: translateY(0); }
  .nav-links a { width: 100%; padding: 15px 0; border-bottom: 1px solid var(--line); }
  .nav-links .btn { width: 100%; justify-content: center; margin-top: 12px; }
  .nav-item { flex-direction: column; align-items: stretch; width: 100%; }
  .has-drop > a::after { display: none; }
  .drop { position: static; display: flex; border: none; box-shadow: none; padding: 0 0 8px 14px; min-width: 0; }
  .drop a { padding: 11px 0; font-size: 0.9rem; color: var(--text-dim); border-bottom: 1px solid var(--line-2); }
  .nav-toggle { display: flex; }
}

/* ---------- Hero ---------- */
.hero { position: relative; overflow: hidden; padding: 0; display: flex; flex-direction: column; justify-content: center; min-height: 560px; }
.hero-bg { position: absolute; inset: 0; z-index: 0;
  background:
    radial-gradient(120% 95% at 80% 18%, rgba(43,90,170,0.50) 0%, rgba(20,34,58,0) 56%),
    radial-gradient(90% 120% at 10% 105%, rgba(200,164,86,0.12) 0%, rgba(20,34,58,0) 52%),
    linear-gradient(135deg, #16283a 0%, #1a2b43 46%, #0f1b32 100%); }
.hero-arch { position: absolute; z-index: 2; top: 50%; left: 63%; transform: translate(-50%, -50%); height: 98%; width: auto; opacity: 0.32; pointer-events: none; }
.hero-arch rect, .hero-arch line, .hero-arch path { vector-effect: non-scaling-stroke; }
@media (max-width: 820px) { .hero-arch { left: 52%; height: 68%; opacity: 0.4; } }
.hero-scrim { position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(90deg, rgba(16,28,52,0.82) 0%, rgba(16,28,52,0.55) 40%, rgba(16,28,52,0.15) 74%, rgba(16,28,52,0) 100%),
              linear-gradient(0deg, rgba(16,28,52,0.3), transparent 44%); }
.hero .container { position: relative; z-index: 2; width: 100%; padding-top: 48px; padding-bottom: 48px; }
.hero-inner { max-width: 640px; }
.hero .eyebrow { color: #fff; opacity: 0.9; }
.hero h1 { color: #fff; font-size: clamp(2.4rem, 5.4vw, 3.9rem); margin-top: 0.8rem; line-height: 1.03; text-shadow: 0 2px 26px rgba(0,0,0,0.3); }
.hero .sub { color: #dbe1ec; font-size: 1.12rem; margin-top: 1.1rem; max-width: 46ch; text-shadow: 0 1px 12px rgba(0,0,0,0.3); }
.hero .cta { display: flex; gap: 12px; margin-top: 1.8rem; flex-wrap: wrap; }
.trust { margin-top: 2.1rem; display: flex; align-items: center; gap: 13px; flex-wrap: wrap; }
.trust .tl { letter-spacing: 0.14em; text-transform: uppercase; font-weight: 700; font-size: 0.66rem; color: #aab6c9; }
.chips { display: flex; gap: 8px; flex-wrap: wrap; }
.chip { border: 1px solid rgba(255,255,255,0.32); border-radius: 999px; padding: 0.26rem 0.68rem; color: #fff; font-size: 0.72rem; font-weight: 600; background: rgba(255,255,255,0.07); }

/* ---------- Section scaffolding ---------- */
section { padding: 60px 0; }
@media (max-width: 640px) { section { padding: 44px 0; } }
.sec-mist { background: var(--mist); }
.sec-head { text-align: center; max-width: 640px; margin: 0 auto 2.1rem; display: flex; flex-direction: column; align-items: center; gap: 0.8rem; }
.sec-head h2 { font-size: clamp(1.9rem, 3.4vw, 2.6rem); }
.sec-head p { color: var(--text-dim); font-size: 1.04rem; max-width: 54ch; }
.sec-head .rule { margin: 0 auto; }

/* ---------- Cards (shared clean box) ---------- */
.card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); box-shadow: var(--shadow-soft); transition: transform 0.18s ease, box-shadow 0.2s ease; }
.card:hover { transform: translateY(-3px); box-shadow: var(--shadow-hover); }

/* ---------- Pillars ---------- */
.pillars { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
@media (max-width: 820px) { .pillars { grid-template-columns: 1fr; } }
.pillar { padding: 32px 28px; border-top: 3px solid var(--red); }
.pillar .ic { width: 52px; height: 52px; border-radius: 13px; background: rgba(196,30,58,0.09); display: flex; align-items: center; justify-content: center; margin-bottom: 18px; }
.pillar .ic svg { width: 26px; height: 26px; stroke: var(--red); fill: none; stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; }
.pillar h3 { font-size: 1.4rem; }
.pillar p { color: var(--text-dim); font-size: 0.96rem; margin-top: 0.55rem; }

/* ---------- Events ---------- */
.event-list { max-width: 840px; margin: 0 auto; display: flex; flex-direction: column; gap: 14px; }
.event { display: flex; align-items: center; gap: 22px; padding: 22px 26px; }
.event .date { text-align: center; flex: none; width: 60px; }
.event .date .mo { font-size: 0.66rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--red); }
.event .date .dy { font-family: var(--serif); font-size: 2rem; color: var(--navy); line-height: 1; }
.event .info { flex: 1; }
.event .info .badge { font-size: 0.65rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--red); }
.event .info h3 { font-size: 1.3rem; margin-top: 2px; }
.event .info .meta { color: var(--text-dim); font-size: 0.9rem; margin-top: 3px; }
.event .btn { flex: none; }
@media (max-width: 640px) { .event { flex-wrap: wrap; gap: 14px; } .event .btn { width: 100%; justify-content: center; } }
.events-note { text-align: center; color: var(--text-dim); font-size: 0.9rem; margin-top: 1.8rem; }

/* ---------- Educators (bright) ---------- */
.people { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }
@media (max-width: 820px) { .people { grid-template-columns: 1fr; } }
/* Single-educator feature tile (photo left of text) */
.educator-feature { display: flex; gap: 44px; align-items: center; background: #f1f4f9; border-top: 3px solid var(--navy); padding: 44px; }
.educator-photo { width: 310px; height: 390px; object-fit: cover; object-position: center 18%; border-radius: var(--radius); flex: none; box-shadow: 0 14px 34px rgba(16,28,52,0.14); background: #fff; }
.educator-body { flex: 1; min-width: 0; }
.educator-body .role { font-size: 0.68rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--red); }
.educator-body h3 { color: var(--navy); font-size: 2.1rem; margin-top: 5px; }
.educator-body .cred { color: var(--text); font-size: 1.04rem; line-height: 1.6; margin-top: 0.85rem; max-width: 52ch; }
.educator-body ul { list-style: none; padding: 0; margin: 1.25rem 0 0; display: flex; flex-direction: column; gap: 0.6rem; }
.educator-body li { display: flex; gap: 10px; align-items: flex-start; font-size: 0.98rem; color: var(--text-dim); }
.educator-body li::before { content: "\2713"; color: var(--red); font-weight: 800; font-size: 0.85rem; flex: none; margin-top: 0.2rem; }
@media (max-width: 700px) { .educator-feature { flex-direction: column; align-items: flex-start; padding: 28px; gap: 26px; } .educator-photo { width: 100%; height: 340px; } }
.person { padding: 32px; border-top: 3px solid var(--navy); background: #f1f4f9; }
.person .role { font-size: 0.66rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--red); }
.person h3 { color: var(--navy); font-size: 1.7rem; margin-top: 4px; }
.person .cred { color: var(--text); font-size: 0.98rem; margin-top: 0.8rem; }
.person ul { list-style: none; padding: 0; margin: 1.15rem 0 0; display: flex; flex-direction: column; gap: 0.55rem; }
.person li { display: flex; gap: 10px; align-items: flex-start; font-size: 0.92rem; color: var(--text-dim); }
.person li::before { content: "\2713"; color: var(--red); font-weight: 800; font-size: 0.85rem; flex: none; margin-top: 0.15rem; }

/* ---------- Free resource library (member-style, dots on the left) ---------- */
.memres { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 52px; align-items: center; }
@media (max-width: 860px) { .memres { grid-template-columns: 1fr; gap: 30px; } }
.memres-copy .eyebrow { color: var(--red); }
.memres-copy h2 { font-size: clamp(1.9rem, 3.4vw, 2.5rem); margin-top: 0.7rem; }
.memres-copy p { color: var(--text-dim); margin-top: 0.9rem; font-size: 1.04rem; max-width: 46ch; }
.dotlist { list-style: none; padding: 0; margin: 1.5rem 0 0; display: flex; flex-direction: column; gap: 0.85rem; }
.dotlist li { position: relative; padding-left: 1.7rem; font-size: 1rem; color: var(--text); font-weight: 500; }
.dotlist li::before { content: ""; position: absolute; left: 0; top: 0.5rem; width: 9px; height: 9px; border-radius: 50%; background: var(--red); box-shadow: 0 0 0 4px rgba(196, 30, 58, 0.12); }

/* ---------- Contact ---------- */
.contact-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; max-width: 940px; margin: 0 auto; }
@media (max-width: 780px) { .contact-grid { grid-template-columns: 1fr; } }
.contact-card { padding: 20px 22px; text-align: left; display: flex; flex-direction: row; align-items: center; gap: 16px; }
.contact-card .ic { width: 48px; height: 48px; border-radius: 12px; background: rgba(196, 30, 58, 0.09); display: flex; align-items: center; justify-content: center; flex: none; }
.contact-card .ic svg { width: 24px; height: 24px; fill: var(--red); }
.contact-card .ct-body { min-width: 0; }
.contact-card .k { font-size: 0.68rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--text-dim); }
.contact-card .v { font-family: var(--serif); font-size: 1.18rem; color: var(--navy); margin-top: 3px; line-height: 1.2; }
.contact-card .s { font-size: 0.82rem; color: var(--text-dim); margin-top: 4px; }
.contact-card.is-static { cursor: default; }
.contact-card.is-static:hover { transform: none; box-shadow: var(--shadow-soft); }

/* ---------- Lead / free guide (bright) ---------- */
.lead-wrap { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }
@media (max-width: 860px) { .lead-wrap { grid-template-columns: 1fr; gap: 30px; } }
.lead-copy .eyebrow { color: var(--red); }
.lead-copy h2 { font-size: clamp(1.9rem, 3.4vw, 2.5rem); margin-top: 0.7rem; }
.lead-copy p { color: var(--text-dim); margin-top: 0.95rem; font-size: 1.05rem; }
.lead-form { padding: 32px; }
.lead-form h3 { color: var(--navy); font-size: 1.5rem; }
.lead-form .ff { margin-top: 14px; }
.lead-form label { display: block; font-size: 0.74rem; font-weight: 700; letter-spacing: 0.03em; text-transform: uppercase; color: var(--text-dim); margin-bottom: 5px; }
.lead-form input { width: 100%; padding: 0.8rem 0.9rem; border: 1px solid var(--line); border-radius: var(--radius-sm); font-family: var(--sans); font-size: 0.98rem; color: var(--ink); background: var(--mist); }
.lead-form input:focus { outline: 2px solid var(--red); outline-offset: 1px; background: #fff; }
.lead-form .btn { width: 100%; justify-content: center; margin-top: 18px; }
.lead-form .fine { font-size: 0.76rem; color: var(--text-dim); margin-top: 12px; text-align: center; }
.hp { position: absolute; left: -9999px; opacity: 0; }
.form-msg { margin-top: 12px; font-size: 0.9rem; text-align: center; }
.form-msg.ok { color: #1a7d4b; }
.form-msg.err { color: var(--red); }

/* ---------- Footer ---------- */
.footer { background: var(--navy-deep); color: #aeb9ca; font-size: 0.9rem; }
.footer-top { padding: 52px 0 32px; display: grid; grid-template-columns: 1.9fr 1fr 1.2fr; gap: 40px; }
@media (max-width: 760px) { .footer-top { grid-template-columns: 1fr 1fr; gap: 30px 24px; } .footer .fbrand { grid-column: 1 / -1; } }
.footer .fbrand img { height: 48px; margin-bottom: 16px; }
.footer .fbrand p { max-width: 40ch; color: #93a1b6; font-size: 0.86rem; }
.footer h4 { color: #fff; font-family: var(--sans); font-size: 0.72rem; letter-spacing: 0.14em; text-transform: uppercase; margin-bottom: 14px; }
.footer ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 0.6rem; }
.footer a:hover { color: #fff; }
.footer-legal { border-top: 1px solid rgba(255,255,255,0.1); padding: 22px 0 40px; font-size: 0.76rem; color: #8493a9; line-height: 1.7; }
.footer-legal .reg { color: #c6d0df; font-weight: 600; letter-spacing: 0.03em; }
.footer-legal p { margin-bottom: 8px; }

/* ---------- Educator headshots ---------- */
.person-head { display: flex; align-items: center; gap: 18px; margin-bottom: 6px; }
.person-photo { width: 94px; height: 94px; border-radius: 50%; object-fit: cover; object-position: center 22%; border: 3px solid #fff; box-shadow: 0 0 0 1px var(--line); background: #fff; flex: none; }
.person-id .role { margin-bottom: 3px; }
.person-id h3 { margin-top: 0; }
@media (max-width: 420px) { .person-head { gap: 14px; } .person-photo { width: 76px; height: 76px; } }

/* ---------- Resource library — contained blue panel on light grey ---------- */
.res-panel { position: relative; overflow: hidden; display: grid; grid-template-columns: 1.05fr 0.9fr;
  grid-template-areas: "intro form" "list form"; column-gap: 48px; row-gap: 8px; align-items: start;
  background: linear-gradient(135deg, #223a61 0%, #14263f 100%); border-radius: 24px; padding: 44px 48px;
  box-shadow: 0 34px 70px -34px rgba(16, 28, 52, 0.55); }
@media (max-width: 820px) { .res-panel { grid-template-columns: 1fr; grid-template-areas: "intro" "form" "list"; row-gap: 22px; padding: 32px 24px; border-radius: 20px; } }
.res-panel::after { content: ""; position: absolute; right: -90px; top: -90px; width: 280px; height: 280px; border-radius: 50%;
  background: radial-gradient(circle, rgba(200, 164, 86, 0.16), transparent 70%); pointer-events: none; }
.res-panel-intro { grid-area: intro; position: relative; z-index: 1; }
.res-panel-list { grid-area: list; }
.res-panel-intro .eyebrow { color: #e0b968; }
.res-panel-intro h2 { color: #fff; font-size: clamp(1.75rem, 3vw, 2.35rem); margin-top: 0.6rem; }
.res-panel-intro p { color: #b7c3d6; margin-top: 0.8rem; font-size: 1.02rem; max-width: 44ch; }
.res-panel .dotlist { margin-top: 0.2rem; }
.res-panel .dotlist li { color: #e9eef6; font-weight: 500; }
.res-panel .dotlist li::before { background: var(--red); box-shadow: 0 0 0 4px rgba(196, 30, 58, 0.28); }
.res-panel-form { grid-area: form; align-self: center; position: relative; z-index: 1; background: #fff; border-radius: 16px; padding: 28px 30px;
  box-shadow: 0 22px 46px -26px rgba(0, 0, 0, 0.45); }
@media (max-width: 820px) { .res-panel-form { align-self: stretch; } }
.res-panel-form h3 { color: var(--navy); font-size: 1.4rem; }
.res-panel-form .ff { margin-top: 13px; }
.res-panel-form label { display: block; font-size: 0.72rem; font-weight: 700; letter-spacing: 0.03em; text-transform: uppercase; color: var(--text-dim); margin-bottom: 5px; }
.res-panel-form input { width: 100%; padding: 0.78rem 0.9rem; border: 1px solid var(--line); border-radius: var(--radius-sm); font-family: var(--sans); font-size: 0.96rem; color: var(--ink); background: var(--mist); }
.res-panel-form input:focus { outline: 2px solid var(--red); outline-offset: 1px; background: #fff; }
.res-panel-form .btn { width: 100%; justify-content: center; margin-top: 16px; }
.res-panel-form .fine { font-size: 0.74rem; color: var(--text-dim); margin-top: 11px; text-align: center; }

/* ---------- Events: photo left, list right ---------- */
.events-wrap { display: flex; flex-direction: column; gap: 30px; align-items: stretch; }
.events-photo { border-radius: var(--radius); overflow: hidden; border: 1px solid var(--line); box-shadow: var(--shadow-soft); aspect-ratio: 3.24 / 1; }
.events-photo img { width: 100%; height: 100%; object-fit: cover; object-position: center; }
@media (max-width: 860px) { .events-photo { aspect-ratio: 3.24 / 1; } }
.events-col { display: flex; flex-direction: column; }
.events-col .event-list { max-width: none; margin: 0; }
.events-col .events-note { text-align: left; margin-top: 1.4rem; }

/* ---------- Mobile refinements ---------- */
.nowrap { white-space: nowrap; }
@media (max-width: 600px) {
  /* Hero CTAs side by side instead of stacked */
  .hero .cta { flex-wrap: nowrap; gap: 10px; }
  .hero .cta .btn { flex: 1 1 0; justify-content: center; text-align: center; padding: 0.82rem 0.7rem; font-size: 0.92rem; }
  /* "Covers" label on its own line so the chips wrap cleanly (no lone chip under 4) */
  .hero { min-height: 440px; }
  .hero .container { padding-top: 36px; padding-bottom: 36px; }
  .trust { flex-direction: column; align-items: center; text-align: center; gap: 8px; margin-top: 1.3rem; }
  .chips { gap: 6px; justify-content: center; flex-wrap: wrap; }
  .chip { font-size: 0.64rem; padding: 0.26rem 0.58rem; }
  /* Educator cards: tighten + let bullet text breathe */
  .person { padding: 26px 22px; }
  .person li { font-size: 0.9rem; }
}

.event .date .dy-tba { font-size: 1.15rem; letter-spacing: 0.03em; }

/* Hero: stronger, even navy wash on mobile/tablet so text stays legible full-width */
@media (max-width: 820px) {
  .hero-scrim { background: linear-gradient(180deg, rgba(16, 28, 52, 0.70) 0%, rgba(16, 28, 52, 0.86) 100%); }
}

/* ---------- Inner-page header band (reused across migrated pages) ---------- */
.pagehead { background: linear-gradient(135deg, #1f3355 0%, var(--navy-deep) 100%); color: #dbe3ef; text-align: center; padding: 64px 0 56px; }
.pagehead .eyebrow { color: #e0b968; }
.pagehead h1 { color: #fff; font-size: clamp(2rem, 4vw, 3rem); margin-top: 0.6rem; }
.pagehead p { color: #b7c3d6; max-width: 60ch; margin: 0.9rem auto 0; font-size: 1.05rem; }
.pagehead .rule { margin: 0.9rem auto 0; }
@media (max-width: 640px) { .pagehead { padding: 44px 0 40px; } }

/* Benefit hub grid (6 cards) */
.benefits-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
@media (max-width: 900px) { .benefits-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 620px) { .benefits-grid { grid-template-columns: 1fr; } }

/* Anchored sections clear the sticky nav on (cross-page) hash jumps */
section[id] { scroll-margin-top: 104px; }

/* ---------- Guide pages (shared) ---------- */
.gp-hero { position: relative; overflow: hidden; color: #fff; padding: 4.25rem 0 3.25rem;
  background:
    radial-gradient(120% 95% at 82% 12%, rgba(43,90,170,0.5) 0%, rgba(20,34,58,0) 56%),
    radial-gradient(90% 120% at 8% 108%, rgba(200,164,86,0.12) 0%, rgba(20,34,58,0) 52%),
    linear-gradient(135deg, #16283a 0%, #1a2b43 46%, #0f1b32 100%); }
.gp-hero .eyebrow { color: #e0b968; }
.gp-hero h1 { color: #fff; font-size: clamp(2.1rem, 4.4vw, 3rem); margin-top: 0.7rem; line-height: 1.07; max-width: 22ch; }
.gp-hero p { max-width: 60ch; margin: 1rem 0 0; color: rgba(255,255,255,0.8); font-size: 1.08rem; line-height: 1.6; }
.gp-body { background: var(--mist); padding: 3.5rem 0 4rem; }
.gp-prose { max-width: 780px; margin: 0 auto; }
.gp-prose h2 { color: var(--navy); font-size: 1.4rem; margin: 2rem 0 0.7rem; }
.gp-prose > h2:first-child { margin-top: 0; }
.gp-prose p { color: var(--text); font-size: 1.03rem; line-height: 1.7; margin-bottom: 1rem; }
.gp-prose .lead { font-size: 1.12rem; color: var(--text); }
.gp-prose ul { margin: 0 0 1.2rem; padding: 0; list-style: none; display: flex; flex-direction: column; gap: 0.6rem; }
.gp-prose li { display: flex; gap: 0.6rem; color: var(--text); font-size: 1rem; line-height: 1.55; }
.gp-prose li::before { content: "\2713"; color: #c8a456; font-weight: 800; flex: none; }
.gp-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); box-shadow: var(--shadow-soft); padding: 1.4rem 1.6rem; margin: 0 0 1.1rem; }
.gp-card h3 { color: var(--navy); font-size: 1.12rem; margin-bottom: 0.35rem; }
.gp-card p { color: var(--text-dim); font-size: 0.97rem; line-height: 1.6; margin: 0; }
.gp-cta { max-width: 780px; margin: 2.5rem auto 0; background: #fff; border: 1px solid var(--line); border-left: 4px solid #c8a456; border-radius: var(--radius); padding: 1.6rem 1.8rem; }
.gp-cta h3 { color: var(--navy); font-size: 1.3rem; }
.gp-cta p { color: var(--text-dim); margin: 0.3rem 0 1rem; }
.gp-cta .btn-row { display: flex; gap: 0.7rem; flex-wrap: wrap; }
