/* =========================================================
   CATIS Center – Global Stylesheet
   Theme: Navy Blue (#003366) & White
   ========================================================= */

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

:root {
  --navy:       #100c1c;
  --navy-dark:  #051224;
  --navy-light: #00417e;
  --white:      #ffffff;
  --off-white:  #f0f4f8;
  --text:       #051224;
  --muted:      #3a4a5c;
  --border:     #c8d4e0;
  --accent:     #b11107;
  --radius:     12px;
  --max-width:  1100px;
  --font:       'Play', 'Segoe UI', system-ui, sans-serif;
  --font-title: 'Play', sans-serif;
  --font-brand: 'Bruno Ace', sans-serif;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  color: var(--text);
  background: var(--white);
  line-height: 1.7;
  font-size: 22px;
}

a { color: var(--navy-light); text-decoration: underline; transition: color .2s; }
a:hover { color: var(--navy); }

img { max-width: 100%; display: block; }

/* ── NAVIGATION ──────────────────────────────────────────── */

nav {
  background: var(--navy);
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 8px rgba(0,0,0,.25);
}

.nav-inner {
  max-width: calc(var(--max-width) + 100px);
  margin: 0 auto;
  padding: 0 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 75px;
  gap: 1.5rem;
}

.nav-brand {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  text-decoration: none;
  font-family: var(--font-brand);
  font-size: 1.6rem;
  font-weight: 400;
  color: var(--white);
  letter-spacing: .15em;
  gap: .6rem;
}

.nav-brand:hover { text-decoration: none; color: var(--white); }

.nav-brand-logo {
  height: 100px;
  width: auto;
}

.nav-links {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: .3rem 1rem;
  align-items: center;
}

.nav-links a {
  color: rgba(255,255,255,.82);
  font-family: var(--font-title);
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  transition: color .2s;
  text-decoration: none;
  white-space: nowrap;
  padding: .25rem 0;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--white);
  text-decoration: none;
  border-bottom: 2px solid var(--accent);
  padding-bottom: 2px;
}

/* ── HAMBURGER TOGGLE ─────────────────────────────────────── */

.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: .5rem;
  flex-direction: column;
  gap: 5px;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: transform .3s, opacity .3s;
}

.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 768px) {
  .nav-toggle { display: flex; }

  .nav-links {
    display: none;
    flex-direction: column;
    width: 100%;
    gap: .25rem;
    padding: .5rem 0;
  }

  .nav-links.open { display: flex; }

  .nav-inner {
    flex-wrap: wrap;
    min-height: auto;
    padding: .5rem 1rem;
  }

  .nav-brand-logo { height: 60px; }
  .nav-brand { font-size: 1.2rem; gap: .4rem; }
}

@media (max-width: 480px) {
  .nav-brand-logo { height: 45px; }
  .nav-brand { font-size: 1rem; }
}

/* ── HERO ─────────────────────────────────────────────────── */

.hero {
  background: linear-gradient(180deg, var(--navy) 0%, var(--navy-light) 100%);
  background-size: cover;
  background-position: center;
  color: var(--white);
  padding: 3rem 2rem 2.5rem;
  min-height: 320px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
}

.hero.hero-bg {
  background: linear-gradient(rgba(5,18,36,.55), rgba(0,65,126,.62)), var(--hero-img);
  background-size: cover;
  background-position: center;
}

.hero-inner {
  max-width: 800px;
  margin: 0 auto;
}

.hero-logo {
  height: 90px;
  width: auto;
  margin: 0 auto 1.5rem;
}

.hero h1 {
  font-family: var(--font-title);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 700;
  line-height: 1.25;
  margin-bottom: 1.25rem;
}

.hero p {
  font-size: 1.15rem;
  opacity: .88;
  max-width: 680px;
  margin: 0 auto;
}

/* ── SECTION COMMONS ─────────────────────────────────────── */

.section {
  padding: 3rem 2rem;
}

.section-alt {
  background: var(--off-white);
}

.section-inner {
  max-width: var(--max-width);
  margin: 0 auto;
}

.section-label {
  font-size: .82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .12em;
  color: var(--navy-light);
  margin-bottom: .5rem;
}

.section-title {
  font-size: clamp(1.4rem, 3vw, 2rem);
  font-weight: 700;
  color: var(--navy-dark);
  margin-bottom: .75rem;
}

.section-lead {
  color: var(--muted);
  max-width: 700px;
  margin-bottom: 2.5rem;
  font-size: 1rem;
}

/* ── PROSE TEXT ────────────────────────────────────────────── */

.prose {
  color: var(--muted);
  max-width: 760px;
  font-size: 1.05rem;
  line-height: 1.8;
}

.prose p { margin-bottom: 1rem; }
.prose p:last-child { margin-bottom: 0; }

.prose ul, .prose ol {
  margin: .75rem 0 1rem 1.5rem;
}

.prose li {
  margin-bottom: .4rem;
}

/* ── CARD GRID ────────────────────────────────────────────── */

.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
}

.card-grid-3 {
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

.card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem 1.75rem;
  transition: transform .3s ease, box-shadow .3s ease;
  box-shadow: 0 4px 12px rgba(0,0,0,.04);
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 24px rgba(0,0,0,.08);
}

.card-icon {
  width: 42px;
  height: 42px;
  background: var(--navy);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}

.card-icon svg { width: 22px; height: 22px; fill: none; stroke: var(--white); stroke-width: 2; }

.card h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--navy-dark);
  margin-bottom: .5rem;
}

.card p {
  font-size: 1rem;
  color: var(--muted);
}

.card ul {
  list-style: none;
  padding: 0;
  margin: .75rem 0 0;
}

.card ul li {
  font-size: 1rem;
  color: var(--muted);
  padding: .3rem 0;
  padding-left: 1rem;
  position: relative;
}

.card ul li::before {
  content: "\2013";
  position: absolute;
  left: 0;
  color: var(--navy-light);
}

/* ── NUMBERED LIST CARDS ──────────────────────────────────── */

.card-grid { counter-reset: numbered; }

.numbered-card {
  counter-increment: numbered;
  position: relative;
  padding-left: 4rem;
}

.numbered-card::before {
  content: counter(numbered);
  position: absolute;
  left: 1.5rem;
  top: 1.75rem;
  width: 28px;
  height: 28px;
  background: var(--navy);
  color: var(--white);
  border-radius: 50%;
  font-size: .88rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ── NEWS / PUBLICATIONS ──────────────────────────────────── */

.news-list {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.news-item {
  display: flex;
  gap: 1.25rem;
  padding: 1.5rem;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--white);
  align-items: flex-start;
  transition: transform .3s ease, box-shadow .3s ease;
  box-shadow: 0 4px 12px rgba(0,0,0,.04);
}

.news-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 24px rgba(0,0,0,.08);
}

.news-date {
  flex-shrink: 0;
  background: var(--navy);
  color: var(--white);
  border-radius: var(--radius);
  padding: .5rem .85rem;
  text-align: center;
  font-size: .85rem;
  font-weight: 700;
  line-height: 1.3;
}

.news-date span { display: block; font-size: 1.2rem; font-weight: 700; }

.news-content h4 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--navy-dark);
  margin-bottom: .3rem;
}

.news-content p { font-size: 1rem; color: var(--muted); }

.news-sub-list { margin: .5rem 0 0 1.25rem; font-size: .92rem; color: var(--muted); }

.news-tag {
  display: inline-block;
  font-size: .8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .08em;
  background: var(--off-white);
  color: var(--navy-light);
  padding: .2rem .5rem;
  border-radius: 3px;
  margin-bottom: .4rem;
}

/* ── TEAM ─────────────────────────────────────────────────── */

.leader-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 1.5rem;
}

.leader-grid-2col {
  grid-template-columns: repeat(2, 1fr);
}

.leader-card {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  align-items: stretch;
  padding: 2.5rem 2rem;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--white);
  transition: transform .3s ease, box-shadow .3s ease;
  box-shadow: 0 4px 12px rgba(0,0,0,.04);
}

.leader-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 24px rgba(0,0,0,.08);
}

.leader-header {
  display: flex;
  gap: 1.25rem;
  align-items: center;
}

.leader-avatar {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  background: var(--navy);
  object-fit: cover;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  color: var(--white);
  font-weight: 700;
}

.leader-info h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--navy-dark);
  margin-bottom: .2rem;
}

.leader-info .role {
  font-size: .85rem;
  font-weight: 600;
  color: var(--navy-light);
  text-transform: uppercase;
  letter-spacing: .06em;
}

.leader-bio p {
  font-size: 1rem;
  color: var(--muted);
  line-height: 1.6;
}

/* ── PARTNER BLOCK ────────────────────────────────────────── */

.partner-block {
  display: flex;
  gap: 2rem;
  padding: 2rem;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--white);
  margin-bottom: 1.5rem;
  align-items: flex-start;
}

.partner-block:last-child { margin-bottom: 0; }

.partner-logo {
  flex-shrink: 0;
  width: 120px;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding-top: .25rem;
}

.partner-logo img {
  max-width: 100%;
  max-height: 120px;
  object-fit: contain;
}

.partner-text h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--navy-dark);
  margin-bottom: .6rem;
}

.partner-text p {
  font-size: .92rem;
  color: var(--muted);
  line-height: 1.7;
}

/* ── TIMELINE ─────────────────────────────────────────────── */

.timeline {
  display: flex;
  gap: 0;
  align-items: stretch;
  max-width: 500px;
}

.timeline-step {
  flex: 1;
  text-align: center;
  padding: 1.25rem 1rem;
  position: relative;
}

.timeline-step::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  width: 40px;
  height: 2px;
  background: var(--border);
  transform: translateX(50%);
}

.timeline-step:last-child::after { display: none; }

.timeline-dot {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--border);
  margin: 0 auto .75rem;
  border: 3px solid var(--white);
  box-shadow: 0 0 0 2px var(--border);
}

.timeline-dot.active {
  background: var(--accent);
  box-shadow: 0 0 0 2px var(--accent);
}

.timeline-step strong {
  display: block;
  font-size: .9rem;
  color: var(--navy-dark);
  margin-bottom: .15rem;
}

.timeline-step span {
  font-size: .85rem;
  color: var(--muted);
}

/* ── HORIZONTAL TIMELINE ──────────────────────────────────── */

.timeline-h {
  position: relative;
  display: flex;
  justify-content: space-between;
  padding-top: 1.5rem;
  padding-bottom: 6rem;
}

.timeline-h-line {
  position: absolute;
  top: calc(1.5rem + 6px);
  left: 0;
  right: 0;
  height: 2px;
  background: var(--border);
}

.timeline-h-item {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  flex: 1;
}

.timeline-h-dot {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--border);
  border: 3px solid var(--white);
  box-shadow: 0 0 0 2px var(--border);
  z-index: 1;
  flex-shrink: 0;
}

.timeline-h-dot.active {
  background: var(--accent);
  box-shadow: 0 0 0 2px var(--accent);
}

.timeline-h-dot.done {
  background: var(--navy-light);
  box-shadow: 0 0 0 2px var(--navy-light);
}

.timeline-h-label {
  position: absolute;
  top: 2rem;
  left: 50%;
  transform-origin: top left;
  transform: rotate(35deg);
  white-space: nowrap;
}

.timeline-h-label strong {
  display: block;
  font-size: .9rem;
  color: var(--navy-dark);
}

.timeline-h-label span {
  font-size: .85rem;
  color: var(--muted);
}

/* ── FUNDING LOGOS ────────────────────────────────────────── */

.funding-logo {
  max-height: 70px;
  width: auto;
  object-fit: contain;
  margin-top: 1rem;
}

/* ── MEMBERSHIP TIERS ─────────────────────────────────────── */

.tier-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
}

.tier-card {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--white);
  overflow: hidden;
  transition: transform .3s ease, box-shadow .3s ease;
  box-shadow: 0 4px 12px rgba(0,0,0,.04);
}

.tier-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 24px rgba(0,0,0,.08);
}

.tier-card.featured {
  border-color: var(--navy);
  box-shadow: 0 4px 20px rgba(0,51,102,.12);
}

.tier-header {
  background: var(--off-white);
  padding: 1.25rem 1.5rem;
  border-bottom: 1px solid var(--border);
}

.tier-card.featured .tier-header {
  background: var(--navy);
  color: var(--white);
  border-bottom-color: var(--navy);
}

.tier-header h3 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: .15rem;
}

.tier-card.featured .tier-header h3 { color: var(--white); }

.tier-header .price {
  font-size: .9rem;
  color: var(--muted);
}

.tier-card.featured .tier-header .price {
  color: rgba(255,255,255,.75);
}

.tier-body {
  padding: 1.5rem;
}

.tier-body ul {
  list-style: none;
  padding: 0;
}

.tier-body li {
  font-size: 1rem;
  color: var(--muted);
  padding: .4rem 0;
  padding-left: 1.25rem;
  position: relative;
}

.tier-body li::before {
  content: "\2713";
  position: absolute;
  left: 0;
  color: var(--navy-light);
  font-weight: 700;
}

/* ── FAQ ACCORDION ────────────────────────────────────────── */

.faq-list {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  margin-bottom: .75rem;
  background: var(--white);
  overflow: hidden;
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 1.15rem 1.5rem;
  padding-right: 3rem;
  text-align: left;
  font-family: var(--font);
  font-size: 1rem;
  font-weight: 700;
  color: var(--navy-dark);
  cursor: pointer;
  position: relative;
  transition: background .15s;
}

.faq-question:hover { background: var(--off-white); }

.faq-question::after {
  content: "+";
  position: absolute;
  right: 1.5rem;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.2rem;
  font-weight: 400;
  color: var(--muted);
  transition: transform .2s;
}

.faq-item.open .faq-question::after {
  content: "\2212";
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height .3s ease;
}

.faq-answer-inner {
  padding: 0 1.5rem 1.25rem;
  font-size: 1rem;
  color: var(--muted);
  line-height: 1.7;
}

.faq-answer-inner p { margin-bottom: .75rem; }
.faq-answer-inner p:last-child { margin-bottom: 0; }

.faq-answer-inner ul {
  margin: .5rem 0 .75rem 1.25rem;
}

.faq-answer-inner li {
  margin-bottom: .3rem;
}

/* ── PAGE HERO (inner pages) ──────────────────────────────── */

.page-hero {
  background: linear-gradient(180deg, var(--navy) 0%, var(--navy-light) 100%);
  background-size: cover;
  background-position: center;
  color: var(--white);
  padding: 2.5rem 2rem 2rem;
  min-height: 320px;
  display: flex;
  align-items: center;
}

.page-hero-inner,
.hero-inner { width: 100%; }

.page-hero.hero-bg {
  background: linear-gradient(rgba(5,18,36,.55), rgba(0,65,126,.62)), var(--hero-img);
  background-size: cover;
  background-position: center;
}

.page-hero-inner {
  max-width: var(--max-width);
  margin: 0 auto;
}

.page-hero h1 {
  font-family: var(--font-title);
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  font-weight: 700;
  margin-bottom: .5rem;
}

.page-hero p {
  opacity: .82;
  font-size: 1.1rem;
  max-width: 600px;
}

/* ── CONTACT ──────────────────────────────────────────────── */

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 2.5rem;
  align-items: start;
}

.reg-grid {
  grid-template-columns: 1fr 1.4fr;
}

.reg-why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  align-items: start;
}

.reg-section-spacing { margin-top: 2rem; }

.contact-info h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--navy-dark);
  margin-bottom: 1rem;
}

.contact-detail {
  display: flex;
  gap: .75rem;
  margin-bottom: 1.1rem;
  align-items: flex-start;
}

.contact-detail svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  stroke: var(--navy);
  fill: none;
  stroke-width: 2;
  margin-top: 3px;
}

.contact-detail p {
  font-size: 1rem;
  color: var(--muted);
  line-height: 1.5;
}

.contact-detail strong {
  display: block;
  font-size: .9rem;
  color: var(--navy-dark);
  margin-bottom: .1rem;
}

.contact-detail a {
  color: var(--navy-light);
}

.form-wrapper {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}

.form-wrapper iframe {
  width: 100%;
  border: none;
  display: block;
}

/* ── REGISTRATION CENTERED FORM ───────────────────────────── */

.reg-form-wrapper {
  max-width: 720px;
  margin: 0 auto;
}

/* ── FOOTER ───────────────────────────────────────────────── */

footer {
  background: var(--navy-dark);
  padding: 2.5rem 2rem;
  border-top: 3px solid var(--accent);
  margin-top: 2rem;
}

.footer-inner {
  max-width: var(--max-width);
  margin: 0 auto;
}

.footer-cols {
  display: flex;
  gap: 2rem;
  justify-content: space-around;
  flex-wrap: wrap;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(255,255,255,.12);
  margin-bottom: 1.5rem;
}

.footer-col {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 1rem;
  min-width: 220px;
  flex: 1;
}

.footer-col img {
  height: 200px;
  width: auto;
  object-fit: contain;
  max-width: 250px;
}

.footer-col img:hover { opacity: 0.9; }

.footer-col-text {
  font-size: .92rem;
  color: rgba(255,255,255,.55);
  line-height: 1.7;
}

.footer-col-text a {
  color: rgba(255,255,255,.55);
  text-decoration: none;
  transition: color .2s;
}

.footer-col-text a:hover { color: var(--white); text-decoration: none; }

.footer-nsf {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 1rem;
  min-width: 220px;
  flex: 1;
}

.footer-nsf img {
  height: 150px;
  width: auto;
  object-fit: contain;
  max-width: 200px;
}

.footer-nsf-text {
  font-size: .92rem;
  color: rgba(255,255,255,.55);
  line-height: 1.6;
  max-width: 300px;
}

.footer-nsf-text a {
  color: rgba(255,255,255,.55);
  text-decoration: none;
  transition: color .2s;
}

.footer-nsf-text a:hover { color: var(--white); text-decoration: none; }

.footer-bottom {
  text-align: center;
  font-size: .82rem;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: .03em;
}

.footer-bottom a { color: rgba(255,255,255,.35); text-decoration: none; }
.footer-bottom a:hover { color: var(--white); }

.footer-highlight { color: rgba(255,255,255,.75); }
.footer-highlight-block { display: block; margin-bottom: .35rem; }

/* ── STAT CARDS ───────────────────────────────────────────── */

.stat-row {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}

.stat-card {
  flex: 1;
  text-align: center;
  padding: 1.5rem 1rem;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--white);
}

.stat-number {
  display: block;
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--navy-light);
  line-height: 1;
  margin-bottom: .5rem;
}

.stat-label {
  font-size: .92rem;
  color: var(--muted);
}

/* ── COMPACT ICON CARDS ──────────────────────────────────── */

.card-compact {
  text-align: center;
  padding: 1.5rem 1rem;
}

.card-compact .card-icon {
  margin: 0 auto 1rem;
  width: 44px;
  height: 44px;
  background: none;
  border-radius: 0;
}

.card-compact .card-icon svg {
  width: 100%;
  height: 100%;
  stroke: var(--navy-light);
  stroke-width: 1.5;
  fill: none;
}

.card-compact h3 {
  font-size: .95rem;
}

.card-grid-5col {
  grid-template-columns: repeat(5, 1fr);
}

/* ── CTA BANNER ──────────────────────────────────────────── */

.cta-banner {
  background: var(--navy-light);
  color: var(--white);
  padding: 3rem 2rem;
  text-align: center;
}

.cta-banner h2 {
  font-size: clamp(1.4rem, 3vw, 2rem);
  font-weight: 700;
  margin-bottom: .75rem;
}

.cta-banner p {
  font-size: 1.05rem;
  opacity: .88;
  max-width: 700px;
  margin: 0 auto .5rem;
}

.cta-banner-link {
  display: inline-block;
  margin-top: 1rem;
  color: var(--white);
  font-weight: 700;
  text-decoration: underline;
  font-size: 1.05rem;
}

.cta-banner-link:hover { color: var(--accent); }

/* ── TAG CLOUD ───────────────────────────────────────────── */

.tag-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: .75rem;
}

.tag {
  display: inline-block;
  padding: .6rem 1.25rem;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 2rem;
  font-size: .95rem;
  color: var(--navy-dark);
  font-weight: 600;
}

/* ── UTILITY ─────────────────────────────────────────────── */

.prose-mt { margin-top: 1.5rem; }
.prose-mb { margin-bottom: 2rem; }

.card-grid-2col {
  grid-template-columns: repeat(2, 1fr);
}


.figure-md { margin-top: 2rem; max-width: 800px; }
.figure-lg { margin-top: 2rem; max-width: 900px; }
.figure-img { width: 100%; border-radius: var(--radius); border: 1px solid var(--border); }

.iframe-embed { border: none; max-width: 100%; max-height: 100vh; }

.subsection-title {
  font-size: 1rem;
  color: var(--navy-dark);
  margin-bottom: 1rem;
  font-weight: 700;
}

/* ── FIGURES ──────────────────────────────────────────────── */

figure { margin: 0; }

figcaption {
  font-size: .88rem;
  color: var(--muted);
  text-align: center;
  margin-top: .5rem;
}

/* ── RESPONSIVE ───────────────────────────────────────────── */

@media (max-width: 700px) {
  .contact-grid { grid-template-columns: 1fr; }
  .reg-grid { grid-template-columns: 1fr; }
  .reg-why-grid { grid-template-columns: 1fr; }
  .partner-block { flex-direction: column; align-items: center; text-align: center; }
  .partner-logo { width: 80px; }
  .leader-card { flex-direction: column; text-align: center; }
  .leader-grid-2col { grid-template-columns: 1fr; }
  .card-grid-2col { grid-template-columns: 1fr; }
  .card-grid-5col { grid-template-columns: repeat(2, 1fr); }
  .stat-row { flex-direction: column; }

  .timeline-h {
    flex-direction: column;
    padding-bottom: 1rem;
    gap: 1.25rem;
    align-items: flex-start;
    padding-left: 2rem;
  }
  .timeline-h-line {
    top: 0;
    bottom: 0;
    left: 6px;
    right: auto;
    width: 2px;
    height: auto;
  }
  .timeline-h-item {
    flex-direction: row;
    align-items: center;
    gap: .75rem;
  }
  .timeline-h-dot {
    margin-left: -2rem;
  }
  .timeline-h-label {
    position: static;
    transform: none;
    white-space: normal;
  }
}

@media (max-width: 640px) {
  .hero { padding: 3rem 1.25rem 2.5rem; }
  .section { padding: 2.5rem 1.25rem; }
  .page-hero { padding: 2rem 1.25rem; }
  .card-grid-5col { grid-template-columns: 1fr; }
}
