:root {
  --black: #000000;
  --jet: #0a0a0c;
  --graphite: #1d1d1f;
  --slate: #86868b;
  --line: rgba(255,255,255,0.08);
  --line-dark: rgba(0,0,0,0.08);
  --white: #ffffff;
  --paper: #f5f5f7;
  --paper-2: #fbfbfd;
  --blue: #2e6fb5;
  --blue-hover: #3a7fc7;
  --un-blue: #4b92db;
  --un-blue-light: #6ba9e8;
  --font: 'Geist', -apple-system, BlinkMacSystemFont, 'SF Pro Display', system-ui, sans-serif;
  --serif: 'Instrument Serif', 'Times New Roman', serif;
  --ease: cubic-bezier(0.42, 0, 0.21, 1);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --nav-h: 52px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html {
  scroll-behavior: smooth;
  background: #000;
  scroll-padding-top: 76px;
}
body {
  background: var(--white);
  color: var(--graphite);
  font-family: var(--font);
  font-size: 17px;
  line-height: 1.47;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  letter-spacing: -0.01em;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
::selection { background: var(--graphite); color: var(--white); }

/* NAV */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: rgba(10,10,12,0.72);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
  backdrop-filter: saturate(180%) blur(20px);
  border-bottom: 1px solid rgba(255,255,255,0.05);
  height: var(--nav-h); display: flex; align-items: center;
  transition: background 0.4s var(--ease);
}
.nav-inner {
  width: 100%; max-width: 1100px; margin: 0 auto;
  padding: 0 22px; display: flex; align-items: center;
  justify-content: space-between; gap: 8px;
}
.nav-brand {
  display: flex; align-items: center; gap: 9px;
  color: var(--white);
}
.nav-brand img { height: 32px; width: auto; display: block; }
.nav-links { display: flex; list-style: none; gap: 0; }
.nav-links a {
  color: rgba(245,245,247,0.85); font-size: 12px; font-weight: 400;
  letter-spacing: -0.005em; padding: 0 10px; transition: color 0.3s;
}
.nav-links a:hover, .nav-links a.is-active { color: var(--white); }
.nav-cta {
  display: inline-flex; align-items: center; gap: 5px;
  color: var(--white); font-size: 12px; font-weight: 400;
  padding: 4px 11px; border-radius: 980px;
  background: var(--blue); transition: background 0.3s;
}
.nav-cta:hover { background: var(--blue-hover); }
@media (max-width: 820px) { .nav-links { display: none; } }

/* STRIP */
.strip {
  background: #1d1d1f; color: rgba(245,245,247,0.92);
  text-align: center; padding: 14px 22px; font-size: 14px;
  letter-spacing: -0.005em; position: relative; z-index: 50;
  margin-top: var(--nav-h);
}
.strip a { color: var(--un-blue); margin-left: 6px; font-weight: 400; }
.strip a:hover { text-decoration: underline; }
.strip .arrow { display: inline-block; margin-left: 2px; transition: transform 0.3s; }
.strip a:hover .arrow { transform: translateX(3px); }

/* PAGE HEADER (for sub-pages) */
.page-header {
  background: var(--black); color: var(--white);
  padding: 130px 22px 90px;
  border-bottom: 1px solid var(--line);
  position: relative; overflow: hidden;
}
.page-header.has-bg { padding-bottom: 130px; }
.page-header-bg {
  position: absolute; inset: 0; z-index: 0;
}
.page-header-bg img {
  width: 100%; height: 100%; object-fit: cover;
  opacity: 0.32; filter: contrast(1.04) saturate(0.9);
}
.page-header-bg::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.55) 0%, rgba(0,0,0,0.4) 50%, rgba(0,0,0,0.85) 100%);
}
.page-header-inner {
  position: relative; z-index: 2;
  max-width: 1024px; margin: 0 auto;
}
.page-header .eyebrow,
.page-header .h1 { color: var(--white); }
.page-header .eyebrow { color: rgba(245,245,247,0.7); }
.page-header .eyebrow span { color: var(--un-blue); }
.h1 {
  font-size: clamp(48px, 8vw, 96px);
  font-weight: 600; line-height: 1.04;
  letter-spacing: -0.045em;
  margin-top: 8px;
}
.h1 .it {
  font-family: var(--serif); font-style: italic;
  font-weight: 400; letter-spacing: -0.025em;
}
.page-header .lede {
  margin-top: 28px;
  color: rgba(245,245,247,0.78);
  max-width: 720px;
}

/* HERO */
.hero {
  position: relative; min-height: 100vh;
  background: var(--black); color: var(--white);
  overflow: hidden; display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  text-align: center; padding: 100px 22px 60px;
}
.hero-bg { position: absolute; inset: 0; z-index: 0; }
.hero-bg img {
  width: 100%; height: 100%; object-fit: cover;
  object-position: center 30%;
  opacity: 0.55; filter: contrast(1.05) saturate(0.92);
  transform: scale(1.05); animation: heroZoom 14s ease-out forwards;
}
@keyframes heroZoom { to { transform: scale(1.0); } }
.hero-bg::after {
  content: ''; position: absolute; inset: 0;
  background:
    linear-gradient(to bottom, rgba(0,0,0,0.55) 0%, rgba(0,0,0,0.2) 35%, rgba(0,0,0,0.4) 70%, rgba(0,0,0,0.95) 100%),
    radial-gradient(ellipse at center, transparent 0%, rgba(0,0,0,0.4) 100%);
}
.hero-inner { position: relative; z-index: 2; max-width: 1100px; }
.hero-brand-mark {
  width: clamp(96px, 12vw, 140px);
  height: auto;
  margin: 0 auto 32px;
  opacity: 0;
  animation: rise 0.9s var(--ease-out) 0.1s forwards;
  filter: drop-shadow(0 8px 24px rgba(0,0,0,0.4));
}
.hero-eyebrow {
  font-size: 19px; font-weight: 500; letter-spacing: -0.01em;
  color: #f5f5f7; margin-bottom: 6px; opacity: 0;
  animation: rise 0.9s var(--ease-out) 0.2s forwards;
}
.hero-eyebrow span { color: var(--un-blue); }
.hero-title {
  font-size: clamp(56px, 10vw, 128px);
  font-weight: 600; line-height: 1.04;
  letter-spacing: -0.045em; color: var(--white);
  opacity: 0; animation: rise 1.1s var(--ease-out) 0.35s forwards;
}
.hero-title .it {
  font-family: var(--serif); font-style: italic;
  font-weight: 400; letter-spacing: -0.025em;
}
.hero-sub {
  margin-top: 26px; font-size: clamp(20px, 2.4vw, 28px);
  font-weight: 400; line-height: 1.28; letter-spacing: -0.015em;
  color: rgba(245,245,247,0.78); max-width: 680px;
  margin-left: auto; margin-right: auto;
  opacity: 0; animation: rise 1.1s var(--ease-out) 0.55s forwards;
}
.hero-actions {
  margin-top: 40px; display: flex; gap: 14px;
  justify-content: center; flex-wrap: wrap;
  opacity: 0; animation: rise 1.1s var(--ease-out) 0.75s forwards;
}
.btn {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 17px; font-weight: 400; letter-spacing: -0.01em;
  padding: 12px 24px; border-radius: 980px;
  transition: all 0.3s var(--ease); white-space: nowrap;
}
.btn-fill { background: var(--blue); color: var(--white); }
.btn-fill:hover { background: var(--blue-hover); }
.btn-line { background: transparent; color: var(--white); border: 1px solid rgba(255,255,255,0.4); }
.btn-line:hover { background: rgba(255,255,255,0.08); border-color: rgba(255,255,255,0.6); }
.btn-line.on-light { color: var(--graphite); border-color: var(--graphite); }
.btn-line.on-light:hover { background: var(--graphite); color: var(--white); }
.btn .chev { font-size: 0.85em; transition: transform 0.3s var(--ease); display: inline-block; }
.btn:hover .chev { transform: translateX(3px); }
.hero-meta {
  position: absolute; bottom: 32px; left: 22px; right: 22px; z-index: 2;
  display: flex; justify-content: space-between;
  font-size: 12px; color: rgba(245,245,247,0.55);
  letter-spacing: -0.005em; opacity: 0;
  animation: rise 1.1s var(--ease-out) 1s forwards;
}
.hero-scroll {
  position: absolute; bottom: 70px; left: 50%;
  transform: translateX(-50%); z-index: 2;
  width: 1px; height: 50px;
  background: rgba(255,255,255,0.15);
  overflow: hidden; opacity: 0;
  animation: rise 1.1s var(--ease-out) 1s forwards;
}
.hero-scroll::before {
  content: ''; position: absolute; top: -50px; left: 0;
  width: 100%; height: 50%; background: var(--white);
  animation: scrollLine 2.4s ease-in-out infinite;
}
@keyframes scrollLine {
  0% { transform: translateY(0); }
  100% { transform: translateY(200px); }
}
@keyframes rise {
  from { opacity: 0; transform: translateY(28px); }
  to { opacity: 1; transform: translateY(0); }
}
@media (max-width: 740px) {
  .hero { padding: 90px 18px 80px; }
  .hero-meta { font-size: 11px; flex-direction: column; gap: 4px; bottom: 22px; }
  .hero-scroll { display: none; }
}

/* SECTIONS */
section { position: relative; }
.frame { max-width: 1100px; margin: 0 auto; padding: 130px 22px; }
.frame-tight { max-width: 1024px; margin: 0 auto; padding: 110px 22px; }
.frame-wide { max-width: 1440px; margin: 0 auto; padding: 130px 22px; }
.eyebrow {
  font-size: 17px; font-weight: 600; letter-spacing: -0.012em;
  margin-bottom: 8px; color: var(--graphite);
  text-transform: none;
}
.eyebrow.on-dark { color: rgba(245,245,247,0.85); }
.eyebrow span { color: var(--blue); }
.eyebrow.on-dark span { color: var(--un-blue); }
.h2 {
  font-size: clamp(42px, 6.5vw, 80px);
  font-weight: 600; line-height: 1.05;
  letter-spacing: -0.04em; color: var(--graphite);
}
.h2.on-dark { color: var(--white); }
.h2 .it {
  font-family: var(--serif); font-style: italic;
  font-weight: 400; letter-spacing: -0.025em;
}
.h2 .mute { color: var(--slate); }
.h3 {
  font-size: clamp(28px, 3.4vw, 40px);
  font-weight: 600; line-height: 1.1;
  letter-spacing: -0.03em; color: var(--graphite);
}
.h3.on-dark { color: var(--white); }
.h3 .it {
  font-family: var(--serif); font-style: italic;
  font-weight: 400; letter-spacing: -0.015em;
}
.lede {
  font-size: clamp(20px, 2.3vw, 28px);
  font-weight: 400; line-height: 1.32;
  letter-spacing: -0.015em; color: var(--graphite);
  max-width: 760px;
}
.lede.on-dark { color: rgba(245,245,247,0.85); }
.prose {
  font-size: 17px; line-height: 1.55;
  color: var(--graphite);
  max-width: 720px;
}
.prose.on-dark { color: rgba(245,245,247,0.78); }
.prose p + p { margin-top: 18px; }
@media (max-width: 740px) {
  .frame, .frame-wide, .frame-tight { padding: 90px 18px; }
  .page-header { padding: 110px 18px 70px; }
}

/* STATS */
.stats-section {
  background: var(--black); color: var(--white);
  border-bottom: 1px solid var(--line);
}
.stats-section .frame { padding-top: 110px; padding-bottom: 110px; }
.stats-grid {
  margin-top: 80px;
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 20px; border-top: 1px solid var(--line);
}
.stat {
  padding: 40px 0 20px;
  border-right: 1px solid var(--line);
  padding-right: 20px;
}
.stat:last-child { border-right: none; padding-right: 0; }
.stat-num {
  font-size: clamp(56px, 7vw, 96px);
  font-weight: 500; line-height: 0.95;
  letter-spacing: -0.04em; color: var(--white);
  display: flex; align-items: baseline; gap: 4px;
}
.stat-num small {
  font-size: 0.4em; font-weight: 400;
  color: var(--un-blue); letter-spacing: -0.02em;
}
.stat-label {
  margin-top: 14px; font-size: 14px; font-weight: 400;
  color: var(--slate); letter-spacing: -0.005em; line-height: 1.4;
}
@media (max-width: 900px) {
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .stat:nth-child(2) { border-right: none; padding-right: 0; }
  .stat:nth-child(1), .stat:nth-child(2) { border-bottom: 1px solid var(--line); padding-bottom: 40px; }
}
@media (max-width: 480px) {
  .stats-grid { grid-template-columns: 1fr; gap: 0; }
  .stat { border-right: none; border-bottom: 1px solid var(--line); padding: 32px 0; }
  .stat:last-child { border-bottom: none; }
}

/* FEATURE */
.feature {
  position: relative; min-height: 80vh;
  display: flex; align-items: center;
  overflow: hidden; padding: 120px 22px;
}
.feature-bg { position: absolute; inset: 0; z-index: 0; }
.feature-bg img {
  width: 100%; height: 100%; object-fit: cover;
  filter: contrast(1.04) saturate(0.95);
}
.feature-bg::after { content: ''; position: absolute; inset: 0; }
.feature-dark .feature-bg::after {
  background: linear-gradient(to right,
    rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.6) 40%,
    rgba(0,0,0,0.15) 100%);
}
.feature-light { background: var(--paper); }
.feature-inner {
  position: relative; z-index: 2;
  max-width: 1100px; margin: 0 auto; width: 100%;
}
.feature-inner.on-image { max-width: 580px; margin: 0; }
.feature-eyebrow {
  font-size: 17px; font-weight: 500; letter-spacing: -0.012em;
  margin-bottom: 12px; color: rgba(245,245,247,0.7);
}
.feature-light .feature-eyebrow { color: var(--slate); }
.feature-eyebrow span { color: var(--un-blue); }
.feature-light .feature-eyebrow span { color: var(--blue); }
.feature-title {
  font-size: clamp(40px, 6vw, 76px);
  font-weight: 600; line-height: 1.04;
  letter-spacing: -0.04em; color: var(--white); margin-bottom: 22px;
}
.feature-light .feature-title { color: var(--graphite); }
.feature-title .it {
  font-family: var(--serif); font-style: italic;
  font-weight: 400; letter-spacing: -0.025em;
}
.feature-prose {
  font-size: clamp(18px, 1.7vw, 21px);
  font-weight: 400; line-height: 1.45;
  color: rgba(245,245,247,0.82); letter-spacing: -0.01em;
  max-width: 560px;
}
.feature-light .feature-prose { color: var(--graphite); }
.feature-actions { margin-top: 32px; display: flex; gap: 14px; flex-wrap: wrap; }

.feature-split { background: var(--paper); padding: 0; min-height: auto; }
.feature-split .feature-inner {
  max-width: 1440px;
  display: grid; grid-template-columns: 1fr 1fr;
  align-items: stretch; min-height: 720px;
}
.feature-split .feature-text {
  padding: 100px 60px;
  display: flex; flex-direction: column; justify-content: center;
}
.feature-split .feature-image { position: relative; overflow: hidden; }
.feature-split .feature-image img { width: 100%; height: 100%; object-fit: cover; }
.feature-split.reverse .feature-text { order: 2; }
.feature-split.reverse .feature-image { order: 1; }
@media (max-width: 900px) {
  .feature-split .feature-inner { grid-template-columns: 1fr; min-height: auto; }
  .feature-split .feature-text { padding: 80px 22px; order: 2; }
  .feature-split .feature-image { min-height: 500px; order: 1; }
  .feature-split.reverse .feature-text { order: 2; }
  .feature-split.reverse .feature-image { order: 1; }
  .feature { padding: 80px 22px; min-height: auto; }
}

/* PILLARS — generic numbered card grid (training pillars, what-you-leave-with, recognition) */
.pillars { background: var(--white); }
.pillars.on-dark { background: var(--black); color: var(--white); }
.pillars-head { text-align: center; max-width: 820px; margin: 0 auto; }
.pillars-head .lede { margin: 24px auto 0; }
.pillars-grid {
  margin-top: 72px;
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.pillars-grid.cols-2 { grid-template-columns: repeat(2, 1fr); }
.pillars-grid.cols-5 { grid-template-columns: repeat(5, 1fr); }
.pillar-card {
  background: var(--paper);
  border-radius: 22px;
  padding: 36px 32px 40px;
  display: flex; flex-direction: column;
  min-height: 240px;
  transition: transform 0.4s var(--ease), background 0.4s var(--ease);
}
.pillars.on-dark .pillar-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.06);
}
.pillar-card:hover { transform: translateY(-4px); }
.pillar-num {
  font-family: var(--serif); font-style: italic;
  font-size: 28px; color: var(--blue);
  letter-spacing: -0.01em; margin-bottom: 18px;
}
.pillars.on-dark .pillar-num { color: var(--un-blue); }
.pillar-title {
  font-size: 22px; font-weight: 500; letter-spacing: -0.02em;
  color: var(--graphite); line-height: 1.2;
  margin-bottom: 10px;
}
.pillars.on-dark .pillar-title { color: var(--white); }
.pillar-body {
  font-size: 15px; line-height: 1.5;
  color: var(--slate); letter-spacing: -0.005em;
}
.pillars.on-dark .pillar-body { color: rgba(245,245,247,0.65); }
@media (max-width: 900px) {
  .pillars-grid, .pillars-grid.cols-2, .pillars-grid.cols-5 { grid-template-columns: 1fr; }
}

/* COMMITTEE FEATURE — single UNGA card */
.committee-single { background: var(--white); }
.committee-card {
  margin-top: 64px;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  background: var(--graphite); color: var(--white);
  border-radius: 28px; overflow: hidden;
  min-height: 520px;
  box-shadow: 0 40px 100px -40px rgba(0,0,0,0.3);
}
.committee-card-text {
  padding: 64px 56px;
  display: flex; flex-direction: column; justify-content: center;
}
.committee-card-eyebrow {
  font-size: 14px; color: var(--un-blue);
  letter-spacing: 0.05em; text-transform: uppercase;
  margin-bottom: 16px;
}
.committee-card-title {
  font-size: clamp(36px, 4.5vw, 56px);
  font-weight: 600; letter-spacing: -0.035em;
  line-height: 1.05; color: var(--white);
}
.committee-card-title .it { font-family: var(--serif); font-style: italic; font-weight: 400; }
.committee-card-prose {
  margin-top: 24px; font-size: 17px; line-height: 1.55;
  color: rgba(245,245,247,0.78); max-width: 460px;
}
.committee-card-meta {
  margin-top: 36px;
  display: grid; grid-template-columns: repeat(2, auto);
  gap: 18px 36px; max-width: 420px;
}
.committee-card-meta .k { font-size: 11px; color: var(--slate); letter-spacing: 0.06em; text-transform: uppercase; }
.committee-card-meta .v { font-size: 17px; color: var(--white); margin-top: 4px; letter-spacing: -0.01em; }
.committee-card-image { position: relative; overflow: hidden; }
.committee-card-image img { width: 100%; height: 100%; object-fit: cover; }
@media (max-width: 900px) {
  .committee-card { grid-template-columns: 1fr; }
  .committee-card-text { padding: 48px 32px; }
  .committee-card-image { min-height: 320px; }
}

/* GALLERY */
.gallery-section {
  background: var(--black); color: var(--white);
  padding: 130px 0 0; overflow: hidden;
}
.gallery-section .frame { padding-top: 0; padding-bottom: 80px; text-align: center; }
.gallery-section .h2 { margin-left: auto; margin-right: auto; }
.gallery-section .lede { margin-left: auto; margin-right: auto; margin-top: 20px; }
.gallery-marquee {
  margin-top: 40px;
  display: flex; gap: 20px; width: max-content;
  animation: marquee 60s linear infinite;
  padding-bottom: 80px;
}
.gallery-marquee:hover { animation-play-state: paused; }
.gallery-tile {
  width: 380px; height: 540px; flex-shrink: 0;
  position: relative; overflow: hidden; border-radius: 18px;
}
.gallery-tile img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.8s var(--ease-out);
}
.gallery-tile:hover img { transform: scale(1.06); }
.gallery-tile::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, transparent 50%);
  pointer-events: none;
}
.gallery-tile-cap {
  position: absolute; bottom: 24px; left: 24px; right: 24px;
  z-index: 2; color: var(--white);
}
.gallery-tile-cap .t {
  font-size: 21px; font-weight: 500;
  letter-spacing: -0.02em; line-height: 1.2;
}
.gallery-tile-cap .s {
  margin-top: 4px; font-size: 13px; color: rgba(255,255,255,0.7);
}
@keyframes marquee { to { transform: translateX(-50%); } }
@media (max-width: 740px) {
  .gallery-tile { width: 280px; height: 400px; }
}

/* TESTIMONIAL */
.testimonial {
  position: relative; min-height: 90vh;
  background: var(--black); color: var(--white);
  display: flex; align-items: center; justify-content: center;
  text-align: center; padding: 130px 22px; overflow: hidden;
}
.testimonial-bg { position: absolute; inset: 0; z-index: 0; }
.testimonial-bg img {
  width: 100%; height: 100%; object-fit: cover;
  opacity: 0.4; filter: blur(2px);
}
.testimonial-bg::after {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse at center, rgba(0,0,0,0.5), rgba(0,0,0,0.95));
}
.testimonial-watermark-wrap {
  position: absolute; inset: 0; z-index: 1;
  display: flex; align-items: center; justify-content: center;
  pointer-events: none;
}
.testimonial-watermark {
  width: clamp(400px, 60vw, 900px);
  height: auto;
  opacity: 0.05;
  animation: spin 80s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }
.testimonial-inner { position: relative; z-index: 2; max-width: 1100px; }
.testimonial-quote {
  font-size: clamp(32px, 5vw, 64px);
  font-weight: 400; line-height: 1.18;
  letter-spacing: -0.025em; color: var(--white);
}
.testimonial-quote .it { font-family: var(--serif); font-style: italic; font-weight: 400; }
.testimonial-author {
  margin-top: 48px; display: flex; flex-direction: column;
  align-items: center; gap: 6px;
}
.testimonial-author .n { font-size: 18px; font-weight: 500; letter-spacing: -0.01em; color: var(--white); }
.testimonial-author .r { font-size: 14px; color: var(--slate); }

/* SCHEDULE / TIMELINE — used on home highlights and program page */
.schedule { background: var(--paper); }
.schedule-list { margin-top: 64px; max-width: 920px; margin-left: auto; margin-right: auto; }
.schedule-row {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 36px;
  padding: 36px 0;
  border-top: 1px solid rgba(0,0,0,0.1);
}
.schedule-row:last-child { border-bottom: 1px solid rgba(0,0,0,0.1); }
.schedule-day {
  font-family: var(--serif); font-style: italic;
  font-size: 28px; color: var(--blue);
  letter-spacing: -0.015em; line-height: 1.1;
}
.schedule-day .d { display: block; font-family: var(--font); font-style: normal;
  font-size: 13px; color: var(--slate); margin-top: 4px;
  letter-spacing: 0.04em; text-transform: uppercase; }
.schedule-items { display: flex; flex-direction: column; gap: 14px; }
.schedule-item {
  display: grid; grid-template-columns: 90px 1fr;
  gap: 20px; align-items: baseline;
}
.schedule-time {
  font-size: 13px; color: var(--slate);
  letter-spacing: 0.02em; font-variant-numeric: tabular-nums;
}
.schedule-name {
  font-size: 19px; color: var(--graphite); letter-spacing: -0.015em;
  font-weight: 500;
}
.schedule-name .desc { display: block; font-weight: 400; color: var(--slate); font-size: 14px; margin-top: 2px; letter-spacing: -0.005em; }
@media (max-width: 740px) {
  .schedule-row { grid-template-columns: 1fr; gap: 16px; padding: 28px 0; }
  .schedule-item { grid-template-columns: 80px 1fr; gap: 14px; }
}

/* VENUE CARDS — used on home + venue page */
.venues { background: var(--white); }
.venues-grid {
  margin-top: 64px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.venue-card {
  position: relative;
  overflow: hidden;
  border-radius: 22px;
  background: var(--paper);
  display: flex; flex-direction: column;
  min-height: 460px;
}
.venue-card-img {
  position: relative;
  height: 280px;
  overflow: hidden;
}
.venue-card-img img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.8s var(--ease-out);
}
.venue-card:hover .venue-card-img img { transform: scale(1.06); }
.venue-card-body { padding: 28px 28px 32px; flex: 1; display: flex; flex-direction: column; }
.venue-card-tag {
  font-size: 12px; color: var(--blue); letter-spacing: 0.05em;
  text-transform: uppercase; margin-bottom: 10px;
}
.venue-card-title {
  font-size: 24px; font-weight: 500; color: var(--graphite);
  letter-spacing: -0.02em; line-height: 1.15;
}
.venue-card-title .it { font-family: var(--serif); font-style: italic; font-weight: 400; }
.venue-card-prose {
  margin-top: 12px; font-size: 15px; color: var(--slate);
  line-height: 1.5;
}
@media (max-width: 900px) {
  .venues-grid { grid-template-columns: 1fr; }
}

/* LEAVE-WITH — checklist style */
.leave-with { background: var(--paper); }
.leave-list {
  margin-top: 56px; max-width: 920px; margin-left: auto; margin-right: auto;
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px 32px;
}
.leave-item {
  display: flex; align-items: flex-start; gap: 16px;
  padding: 18px 0;
  border-top: 1px solid rgba(0,0,0,0.08);
}
.leave-item:nth-child(1), .leave-item:nth-child(2) { border-top: 1px solid rgba(0,0,0,0.18); }
.leave-check {
  flex-shrink: 0;
  width: 22px; height: 22px;
  border-radius: 50%;
  background: var(--blue);
  color: var(--white);
  display: flex; align-items: center; justify-content: center;
  margin-top: 2px;
}
.leave-check svg { width: 12px; height: 12px; }
.leave-text {
  font-size: 17px; color: var(--graphite);
  letter-spacing: -0.01em; line-height: 1.4;
}
@media (max-width: 740px) {
  .leave-list { grid-template-columns: 1fr; }
}

/* RECOGNITION — small inline section */
.recognition {
  background: var(--graphite); color: var(--white);
  padding: 100px 22px; text-align: center;
}
.recognition-inner { max-width: 920px; margin: 0 auto; }
.recognition .h3 { color: var(--white); margin-bottom: 18px; }
.recognition-tracks {
  margin-top: 48px;
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px;
}
.track {
  text-align: left;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 18px; padding: 32px 28px;
}
.track-tag { font-size: 12px; color: var(--un-blue); letter-spacing: 0.06em; text-transform: uppercase; }
.track-title {
  margin-top: 8px; font-size: 24px; font-weight: 500;
  letter-spacing: -0.02em;
}
.track-prose {
  margin-top: 10px; font-size: 15px; color: rgba(245,245,247,0.7); line-height: 1.5;
}
@media (max-width: 740px) { .recognition-tracks { grid-template-columns: 1fr; } }

/* FAQ — accordion */
.faq-list {
  margin-top: 56px; max-width: 920px; margin-left: auto; margin-right: auto;
  border-top: 1px solid rgba(0,0,0,0.1);
}
.faq-item {
  border-bottom: 1px solid rgba(0,0,0,0.1);
}
.faq-item summary {
  list-style: none; cursor: pointer;
  padding: 26px 0;
  display: flex; align-items: center; justify-content: space-between;
  gap: 24px;
  font-size: 19px; font-weight: 500; color: var(--graphite);
  letter-spacing: -0.018em;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+';
  font-size: 24px; color: var(--blue);
  font-weight: 400;
  transition: transform 0.3s var(--ease);
  line-height: 1; flex-shrink: 0;
}
.faq-item[open] summary::after {
  transform: rotate(45deg);
}
.faq-item .a {
  padding: 0 0 28px;
  color: var(--slate); font-size: 16px; line-height: 1.6;
  max-width: 760px;
}
.faq-item .a p + p { margin-top: 12px; }

/* CTA */
.cta { background: var(--paper); padding: 130px 22px; text-align: center; }
.cta-inner { max-width: 900px; margin: 0 auto; }
.cta-title {
  font-size: clamp(48px, 7vw, 88px);
  font-weight: 600; line-height: 1;
  letter-spacing: -0.045em; color: var(--graphite);
}
.cta-title .it {
  font-family: var(--serif); font-style: italic;
  font-weight: 400; letter-spacing: -0.025em; color: var(--blue);
}
.cta-sub {
  margin-top: 22px; font-size: clamp(19px, 2vw, 22px);
  color: var(--slate); font-weight: 400; letter-spacing: -0.01em;
  max-width: 600px; margin-left: auto; margin-right: auto;
}
.cta-card {
  margin-top: 56px; background: var(--white);
  border-radius: 24px; padding: 56px 48px;
  box-shadow: 0 30px 90px -30px rgba(0,0,0,0.18);
  text-align: left;
}
.cta-card-head {
  display: flex; justify-content: space-between;
  align-items: center; flex-wrap: wrap; gap: 16px;
  padding-bottom: 28px; border-bottom: 1px solid rgba(0,0,0,0.08);
}
.cta-card-head .head-mark img { height: 44px; width: auto; }
.cta-card-head .l1 { font-size: 12px; color: var(--slate); letter-spacing: -0.005em; margin-bottom: 4px; }
.cta-card-head .l2 { font-size: 22px; font-weight: 500; letter-spacing: -0.02em; color: var(--graphite); }
.cta-form {
  margin-top: 28px;
  display: grid; grid-template-columns: 1fr 1fr; gap: 16px;
}
.cta-form .full { grid-column: 1 / -1; }
.field-group { display: flex; flex-direction: column; gap: 6px; }
.field-group label { font-size: 12px; color: var(--slate); letter-spacing: -0.005em; }
.field-group input,
.field-group select,
.field-group textarea {
  font-family: inherit; font-size: 16px; color: var(--graphite);
  background: var(--paper-2); border: 1px solid transparent;
  border-radius: 12px; padding: 14px 16px; outline: none;
  transition: all 0.3s; letter-spacing: -0.005em; appearance: none;
}
.field-group textarea { min-height: 120px; resize: vertical; line-height: 1.5; }
.field-group input:focus,
.field-group select:focus,
.field-group textarea:focus {
  background: var(--white); border-color: var(--blue);
  box-shadow: 0 0 0 4px rgba(46, 111, 181, 0.18);
}
.cta-form button {
  grid-column: 1 / -1; margin-top: 12px;
  background: var(--blue); color: var(--white);
  font-size: 17px; font-weight: 400; letter-spacing: -0.01em;
  padding: 16px; border-radius: 980px;
  transition: background 0.3s;
}
.cta-form button:hover { background: var(--blue-hover); }
.cta-disclaim { margin-top: 20px; font-size: 12px; color: var(--slate); text-align: center; line-height: 1.5; }
@media (max-width: 600px) {
  .cta-card { padding: 36px 24px; border-radius: 20px; }
  .cta-form { grid-template-columns: 1fr; }
}

/* FOOTER */
footer {
  background: var(--paper);
  border-top: 1px solid rgba(0,0,0,0.08);
  color: var(--slate); font-size: 12px; letter-spacing: -0.005em;
}
.footer-mark {
  max-width: 1100px; margin: 0 auto;
  padding: 80px 22px 24px;
  display: flex; align-items: center; gap: 24px;
  border-bottom: 1px solid rgba(0,0,0,0.08);
  flex-wrap: wrap;
}
.footer-mark img { height: 84px; width: auto; }
.footer-mark .footer-tag {
  font-family: var(--serif); font-style: italic; font-weight: 400;
  font-size: clamp(24px, 3vw, 38px); color: var(--graphite);
  letter-spacing: -0.02em; line-height: 1.1;
}
.footer-mark .footer-tag span { color: var(--blue); }
@media (max-width: 600px) {
  .footer-mark { padding: 56px 18px 20px; gap: 16px; }
  .footer-mark img { height: 64px; }
}
.footer-top {
  max-width: 1100px; margin: 0 auto;
  padding: 48px 22px 24px;
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 40px;
}
.footer-col h4 {
  font-size: 12px; font-weight: 600; color: var(--graphite);
  margin-bottom: 12px; letter-spacing: -0.005em;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.footer-col a { color: var(--slate); font-size: 12px; transition: color 0.3s; }
.footer-col a:hover { color: var(--graphite); }
.footer-bottom {
  max-width: 1100px; margin: 0 auto;
  padding: 24px 22px 32px;
  border-top: 1px solid rgba(0,0,0,0.08);
  display: flex; justify-content: space-between;
  align-items: center; flex-wrap: wrap; gap: 16px;
}
@media (max-width: 740px) {
  .footer-top { grid-template-columns: 1fr 1fr; padding: 36px 18px 20px; gap: 28px; }
  .footer-bottom { flex-direction: column; align-items: flex-start; padding: 20px 18px 28px; }
}

/* REVEAL */
.reveal { opacity: 0; transform: translateY(32px); transition: opacity 1.2s var(--ease-out), transform 1.2s var(--ease-out); }
.reveal.in { opacity: 1; transform: translateY(0); }
.reveal-stagger > * { opacity: 0; transform: translateY(28px); transition: opacity 1s var(--ease-out), transform 1s var(--ease-out); }
.reveal-stagger.in > * { opacity: 1; transform: translateY(0); }
.reveal-stagger.in > *:nth-child(1) { transition-delay: 0.05s; }
.reveal-stagger.in > *:nth-child(2) { transition-delay: 0.15s; }
.reveal-stagger.in > *:nth-child(3) { transition-delay: 0.25s; }
.reveal-stagger.in > *:nth-child(4) { transition-delay: 0.35s; }
.reveal-stagger.in > *:nth-child(5) { transition-delay: 0.45s; }
.reveal-stagger.in > *:nth-child(6) { transition-delay: 0.55s; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
  .reveal, .reveal-stagger > * { opacity: 1; transform: none; }
  .gallery-marquee, .testimonial-watermark { animation: none !important; }
}

/* ============================================================
   BLOG / INSIGHTS
   ============================================================ */

/* Blog index landing */
.blog-index { padding: 160px 22px 80px; max-width: 1200px; margin: 0 auto; }
.blog-index-head { max-width: 820px; margin-bottom: 80px; }
.blog-index-head .h1 {
  font-size: clamp(48px, 7vw, 96px);
  letter-spacing: -0.045em; line-height: 0.95;
  color: var(--graphite); font-weight: 600;
}
.blog-index-head .h1 .it { font-family: var(--serif); font-style: italic; font-weight: 400; color: var(--blue); }
.blog-index-head .lede { color: var(--slate); margin-top: 28px; font-size: clamp(17px, 1.8vw, 22px); line-height: 1.5; max-width: 640px; }

.blog-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 56px 48px;
}
@media (max-width: 900px) { .blog-grid { grid-template-columns: 1fr; gap: 48px; } }

.blog-card {
  display: flex; flex-direction: column;
  text-decoration: none; color: inherit;
  border-top: 1px solid rgba(0,0,0,0.12);
  padding-top: 28px;
  transition: transform 0.5s var(--ease-out);
}
.blog-card:hover { transform: translateY(-4px); }
.blog-card-img {
  position: relative; width: 100%; aspect-ratio: 16/10;
  overflow: hidden; margin-bottom: 26px; background: var(--paper);
}
.blog-card-img img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 1.4s var(--ease-out);
}
.blog-card:hover .blog-card-img img { transform: scale(1.04); }
.blog-card-tag {
  font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--slate); font-weight: 500; margin-bottom: 14px;
}
.blog-card-title {
  font-size: clamp(24px, 2.4vw, 32px);
  font-weight: 600; letter-spacing: -0.025em; line-height: 1.1;
  color: var(--graphite); margin-bottom: 14px;
}
.blog-card-title .it { font-family: var(--serif); font-style: italic; font-weight: 400; color: var(--blue); }
.blog-card-prose {
  color: var(--slate); font-size: 16px; line-height: 1.55; margin-bottom: 18px;
}
.blog-card-meta {
  display: flex; gap: 12px; font-size: 12px;
  color: var(--slate); letter-spacing: 0.02em;
  margin-top: auto;
}
.blog-card-meta .dot { opacity: 0.5; }

/* Article header */
.article-header {
  position: relative; padding: 160px 22px 80px;
  background: var(--graphite); color: var(--white);
  overflow: hidden;
}
.article-header-bg { position: absolute; inset: 0; z-index: 0; opacity: 0.35; }
.article-header-bg img { width: 100%; height: 100%; object-fit: cover; }
.article-header-bg::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.2), rgba(0,0,0,0.6));
}
.article-header-inner {
  position: relative; z-index: 1; max-width: 920px; margin: 0 auto;
}
.article-eyebrow {
  font-size: 12px; letter-spacing: 0.22em; text-transform: uppercase;
  color: rgba(255,255,255,0.65); font-weight: 500; margin-bottom: 26px;
}
.article-eyebrow span { color: var(--un-blue); }
.article-title {
  font-size: clamp(40px, 6vw, 72px);
  font-weight: 600; letter-spacing: -0.04em; line-height: 1.02;
  color: var(--white);
}
.article-title .it {
  font-family: var(--serif); font-style: italic; font-weight: 400;
  color: var(--un-blue);
}
.article-meta {
  display: flex; gap: 16px; flex-wrap: wrap;
  margin-top: 40px;
  font-size: 13px; color: rgba(255,255,255,0.7);
  letter-spacing: 0.04em;
}
.article-meta .sep { opacity: 0.4; }

/* Article body */
.article-body {
  max-width: 720px; margin: 0 auto;
  padding: 80px 22px 60px;
  color: var(--graphite);
}
.article-body .lede {
  font-family: var(--serif); font-style: italic; font-weight: 400;
  font-size: clamp(22px, 2.4vw, 28px); line-height: 1.4;
  color: var(--graphite); margin-bottom: 56px;
  letter-spacing: -0.015em;
}
.article-body h2 {
  font-size: clamp(28px, 3vw, 38px);
  font-weight: 600; letter-spacing: -0.03em; line-height: 1.15;
  color: var(--graphite); margin-top: 64px; margin-bottom: 20px;
}
.article-body h2 .it { font-family: var(--serif); font-style: italic; font-weight: 400; color: var(--blue); }
.article-body h3 {
  font-size: clamp(20px, 2vw, 24px);
  font-weight: 600; letter-spacing: -0.02em;
  color: var(--graphite); margin-top: 40px; margin-bottom: 14px;
}
.article-body p {
  font-size: 18px; line-height: 1.65;
  color: var(--graphite); margin-bottom: 22px;
}
.article-body p.muted { color: var(--slate); }
.article-body strong { color: var(--graphite); font-weight: 600; }
.article-body em { font-family: var(--serif); font-style: italic; }
.article-body a { color: var(--blue); text-decoration: underline; text-underline-offset: 3px; text-decoration-thickness: 1px; }
.article-body a:hover { color: var(--blue-hover); }
.article-body ul, .article-body ol {
  margin: 0 0 28px 22px; padding: 0;
  font-size: 18px; line-height: 1.65; color: var(--graphite);
}
.article-body li { margin-bottom: 10px; }
.article-body ul li::marker { color: var(--blue); }
.article-body blockquote {
  border-left: 3px solid var(--blue);
  padding: 8px 0 8px 28px; margin: 36px 0;
  font-family: var(--serif); font-style: italic;
  font-size: clamp(20px, 2.2vw, 26px); line-height: 1.4;
  color: var(--graphite);
}
.article-body figure {
  margin: 48px -22px;
}
.article-body figure img { width: 100%; height: auto; display: block; }
.article-body figcaption {
  font-size: 13px; color: var(--slate); margin-top: 12px; padding: 0 22px;
  letter-spacing: 0.02em;
}
.article-body .callout {
  background: var(--paper);
  border-left: 3px solid var(--blue);
  padding: 28px 32px; margin: 36px 0;
  border-radius: 2px;
}
.article-body .callout h3 {
  margin-top: 0; margin-bottom: 12px;
  font-size: 14px; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--blue); font-weight: 600;
}
.article-body .callout p { font-size: 16px; margin-bottom: 0; }
.article-body .callout p + p { margin-top: 12px; }
.article-body pre, .article-body code.block {
  display: block;
  background: #f7f7f8;
  border: 1px solid rgba(0,0,0,0.08);
  border-radius: 6px;
  padding: 22px 26px;
  font-family: ui-monospace, SF Mono, Menlo, Consolas, monospace;
  font-size: 14px; line-height: 1.6;
  color: var(--graphite);
  overflow-x: auto; margin: 24px 0;
  white-space: pre-wrap;
}
.article-toc {
  background: var(--paper);
  padding: 28px 32px;
  margin: 0 0 48px;
  border-radius: 2px;
}
.article-toc-title {
  font-size: 12px; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--slate); font-weight: 500; margin-bottom: 14px;
}
.article-toc ol {
  list-style: none; padding: 0; margin: 0;
  counter-reset: toc;
  font-size: 15px; line-height: 1.5;
}
.article-toc li {
  counter-increment: toc;
  margin-bottom: 8px;
  display: flex; gap: 12px;
}
.article-toc li::before {
  content: counter(toc, decimal-leading-zero);
  color: var(--blue); font-variant-numeric: tabular-nums;
  font-weight: 500;
}
.article-toc a {
  color: var(--graphite); text-decoration: none;
  border-bottom: 1px solid transparent; transition: border-color 0.2s;
}
.article-toc a:hover { border-bottom-color: var(--blue); }

/* FAQ block */
.article-faq { margin: 48px 0; }
.article-faq details {
  border-top: 1px solid rgba(0,0,0,0.1);
  padding: 22px 0;
}
.article-faq details:last-child { border-bottom: 1px solid rgba(0,0,0,0.1); }
.article-faq summary {
  cursor: pointer; font-weight: 600; font-size: 18px;
  letter-spacing: -0.01em; list-style: none;
  display: flex; justify-content: space-between; align-items: center;
  color: var(--graphite);
}
.article-faq summary::-webkit-details-marker { display: none; }
.article-faq summary::after {
  content: "+"; font-size: 24px; color: var(--blue);
  font-weight: 300; transition: transform 0.3s;
}
.article-faq details[open] summary::after { transform: rotate(45deg); }
.article-faq details[open] summary { margin-bottom: 12px; }
.article-faq details p {
  color: var(--slate); font-size: 16px; line-height: 1.6; margin: 0;
}

/* Article CTA */
.article-cta {
  max-width: 920px; margin: 40px auto 0;
  padding: 64px 40px;
  background: var(--graphite); color: var(--white);
  border-radius: 2px;
  text-align: center;
}
.article-cta h2 {
  font-size: clamp(28px, 3.2vw, 40px);
  font-weight: 600; letter-spacing: -0.03em; line-height: 1.1;
  color: var(--white); margin-bottom: 16px;
}
.article-cta h2 .it { font-family: var(--serif); font-style: italic; font-weight: 400; color: var(--un-blue); }
.article-cta p {
  color: rgba(255,255,255,0.72); font-size: 17px;
  max-width: 560px; margin: 0 auto 28px; line-height: 1.55;
}
.article-cta .btn-fill { background: var(--white); color: var(--graphite); }
.article-cta .btn-fill:hover { background: var(--paper); }

/* Related posts */
.article-related {
  max-width: 1100px; margin: 100px auto 80px;
  padding: 0 22px;
}
.article-related-head {
  display: flex; justify-content: space-between; align-items: baseline;
  margin-bottom: 32px;
  border-bottom: 1px solid rgba(0,0,0,0.1); padding-bottom: 18px;
}
.article-related-head .eyebrow { margin: 0; }
.article-related-head a {
  font-size: 13px; color: var(--blue);
  letter-spacing: 0.04em; text-decoration: none;
}
.article-related-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px;
}
@media (max-width: 900px) { .article-related-grid { grid-template-columns: 1fr; } }
.article-related-item { text-decoration: none; color: inherit; }
.article-related-item .blog-card-tag { margin-bottom: 8px; font-size: 10px; }
.article-related-item .blog-card-title { font-size: 20px; line-height: 1.2; }

/* ============================================================
   TRAINING PROGRAM — CURRICULUM, MODULES, SELF-ASSESSMENT
   ============================================================ */

/* Curriculum landing */
.curriculum {
  max-width: 1200px; margin: 0 auto;
  padding: 160px 22px 100px;
}
.curriculum-head { max-width: 880px; margin-bottom: 16px; }
.curriculum-head .program-tag {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--blue); font-weight: 600;
  border: 1px solid var(--blue); padding: 8px 14px;
  border-radius: 999px; margin-bottom: 32px;
}
.curriculum-head .program-tag::before {
  content: ""; width: 6px; height: 6px; background: var(--blue);
  border-radius: 50%;
}
.curriculum-head .h1 {
  font-size: clamp(48px, 7vw, 96px);
  letter-spacing: -0.045em; line-height: 0.95;
  color: var(--graphite); font-weight: 600;
}
.curriculum-head .h1 .it { font-family: var(--serif); font-style: italic; font-weight: 400; color: var(--blue); }
.curriculum-head .lede {
  color: var(--slate); margin-top: 28px;
  font-size: clamp(17px, 1.8vw, 22px); line-height: 1.5;
  max-width: 720px;
}

.curriculum-meta {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 24px; max-width: 880px;
  border-top: 1px solid rgba(0,0,0,0.12);
  border-bottom: 1px solid rgba(0,0,0,0.12);
  padding: 28px 0; margin: 56px 0 80px;
}
.curriculum-meta-item .k {
  font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--slate); font-weight: 500; margin-bottom: 8px;
}
.curriculum-meta-item .v {
  font-size: 18px; color: var(--graphite); letter-spacing: -0.01em;
  font-weight: 500;
}
@media (max-width: 740px) {
  .curriculum-meta { grid-template-columns: repeat(2, 1fr); gap: 20px; padding: 22px 0; }
  .curriculum-meta-item .v { font-size: 16px; }
}

/* Track / module list */
.track {
  margin-bottom: 80px;
}
.track-head {
  display: flex; justify-content: space-between; align-items: baseline;
  border-top: 1px solid rgba(0,0,0,0.12);
  padding-top: 28px; margin-bottom: 28px;
}
.track-head h2 {
  font-family: var(--font);
  font-size: clamp(28px, 3vw, 38px);
  font-weight: 600; letter-spacing: -0.03em;
  color: var(--graphite);
}
.track-head h2 .it {
  font-family: var(--serif); font-style: italic; font-weight: 400;
  color: var(--blue);
}
.track-head .track-tag {
  font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--slate); font-weight: 600;
}

.module-list { display: flex; flex-direction: column; }
.module-row {
  display: grid;
  grid-template-columns: 80px 1fr 220px;
  gap: 32px; align-items: center;
  padding: 28px 0;
  border-bottom: 1px solid rgba(0,0,0,0.08);
  text-decoration: none; color: inherit;
  transition: padding 0.4s var(--ease-out);
}
.module-row:hover { padding-left: 8px; }
.module-row:hover .module-arrow { transform: translateX(6px); color: var(--blue); }
.module-num {
  font-family: ui-monospace, SF Mono, Menlo, monospace;
  font-size: 13px; color: var(--slate);
  letter-spacing: 0.04em; font-weight: 500;
  font-variant-numeric: tabular-nums;
}
.module-body .module-title {
  font-size: clamp(20px, 2.2vw, 26px);
  font-weight: 600; letter-spacing: -0.02em;
  color: var(--graphite); line-height: 1.2;
  margin-bottom: 8px;
}
.module-body .module-title .it {
  font-family: var(--serif); font-style: italic; font-weight: 400;
  color: var(--blue);
}
.module-body .module-summary {
  color: var(--slate); font-size: 15px; line-height: 1.5;
  max-width: 640px;
}
.module-meta-side {
  display: flex; flex-direction: column; align-items: flex-end;
  gap: 6px;
}
.module-meta-side .module-meta-line {
  font-size: 12px; letter-spacing: 0.04em; color: var(--slate);
  font-variant-numeric: tabular-nums;
}
.module-meta-side .module-meta-level {
  font-size: 10px; letter-spacing: 0.18em; text-transform: uppercase;
  font-weight: 600; color: var(--blue);
  border: 1px solid var(--blue); padding: 4px 9px; border-radius: 999px;
}
.module-meta-side .module-meta-level.foundational { color: var(--slate); border-color: var(--slate); }
.module-meta-side .module-meta-level.advanced { color: var(--graphite); border-color: var(--graphite); }
.module-arrow {
  font-size: 22px; color: var(--slate);
  transition: transform 0.3s var(--ease-out), color 0.3s;
  display: none;
}
@media (max-width: 740px) {
  .module-row { grid-template-columns: 50px 1fr; gap: 16px; padding: 22px 0; }
  .module-meta-side { display: none; }
  .module-body .module-title { font-size: 18px; }
}

/* Module page header */
.module-header {
  position: relative; padding: 150px 22px 60px;
  background: var(--graphite); color: var(--white);
  overflow: hidden;
}
.module-header-bg { position: absolute; inset: 0; z-index: 0; opacity: 0.30; }
.module-header-bg img { width: 100%; height: 100%; object-fit: cover; }
.module-header-bg::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.3), rgba(0,0,0,0.7));
}
.module-header-inner {
  position: relative; z-index: 1; max-width: 920px; margin: 0 auto;
}
.module-breadcrumb {
  display: flex; align-items: center; gap: 12px;
  font-size: 12px; letter-spacing: 0.18em; text-transform: uppercase;
  color: rgba(255,255,255,0.6); margin-bottom: 22px; font-weight: 500;
}
.module-breadcrumb a { color: var(--un-blue); text-decoration: none; }
.module-breadcrumb a:hover { color: var(--white); }
.module-breadcrumb .sep { opacity: 0.5; }
.module-id {
  display: inline-flex; align-items: center; gap: 14px;
  font-family: ui-monospace, SF Mono, Menlo, monospace;
  font-size: 13px; color: var(--un-blue);
  letter-spacing: 0.06em; margin-bottom: 22px;
  font-weight: 500;
}
.module-id::before {
  content: ""; width: 24px; height: 1px; background: var(--un-blue);
}
.module-title-h1 {
  font-size: clamp(40px, 6vw, 72px);
  font-weight: 600; letter-spacing: -0.04em; line-height: 1.02;
  color: var(--white);
}
.module-title-h1 .it {
  font-family: var(--serif); font-style: italic; font-weight: 400;
  color: var(--un-blue);
}
.module-meta-strip {
  display: flex; gap: 24px; flex-wrap: wrap;
  margin-top: 36px;
  font-size: 13px; color: rgba(255,255,255,0.65);
  letter-spacing: 0.04em;
}
.module-meta-strip .pill {
  display: inline-flex; align-items: center; gap: 8px;
  border: 1px solid rgba(255,255,255,0.25);
  padding: 6px 14px; border-radius: 999px;
  font-size: 12px; letter-spacing: 0.08em;
}
.module-meta-strip .pill::before {
  content: ""; width: 5px; height: 5px; border-radius: 50%;
  background: var(--un-blue);
}

/* Learning objectives card */
.learning-card {
  background: var(--paper);
  border: 1px solid rgba(0,0,0,0.06);
  padding: 36px 40px;
  margin: 0 0 56px;
  border-radius: 4px;
  position: relative;
}
.learning-card::before {
  content: ""; position: absolute; top: 0; left: 0;
  width: 4px; height: 100%; background: var(--blue);
  border-radius: 4px 0 0 4px;
}
.learning-card-tag {
  font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--blue); font-weight: 600; margin-bottom: 16px;
}
.learning-card-title {
  font-size: 20px; font-weight: 600; letter-spacing: -0.015em;
  color: var(--graphite); margin-bottom: 14px;
}
.learning-card ul {
  list-style: none; margin: 0; padding: 0;
  display: flex; flex-direction: column; gap: 10px;
}
.learning-card ul li {
  position: relative; padding-left: 26px;
  font-size: 16px; line-height: 1.5; color: var(--graphite);
}
.learning-card ul li::before {
  content: ""; position: absolute; left: 0; top: 9px;
  width: 14px; height: 1.5px; background: var(--blue);
}

/* Self-assessment */
.assessment {
  margin: 60px 0 0;
  background: var(--graphite);
  color: var(--white);
  padding: 48px 44px 48px;
  border-radius: 4px;
}
.assessment-tag {
  font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--un-blue); font-weight: 600; margin-bottom: 18px;
}
.assessment-title {
  font-size: clamp(24px, 2.6vw, 30px);
  font-weight: 600; letter-spacing: -0.025em; line-height: 1.15;
  color: var(--white); margin-bottom: 12px;
}
.assessment-title .it {
  font-family: var(--serif); font-style: italic; font-weight: 400;
  color: var(--un-blue);
}
.assessment-intro {
  color: rgba(255,255,255,0.72); font-size: 16px; line-height: 1.55;
  margin-bottom: 32px; max-width: 640px;
}
.assessment-list {
  list-style: none; margin: 0; padding: 0;
  counter-reset: assessment;
  display: flex; flex-direction: column; gap: 22px;
}
.assessment-list li {
  counter-increment: assessment;
  display: grid; grid-template-columns: 36px 1fr; gap: 16px;
  font-size: 16px; line-height: 1.55;
  color: rgba(255,255,255,0.85);
}
.assessment-list li::before {
  content: counter(assessment, decimal-leading-zero);
  font-family: ui-monospace, SF Mono, Menlo, monospace;
  color: var(--un-blue); font-size: 12px;
  letter-spacing: 0.04em; padding-top: 4px;
  font-weight: 500;
}
.assessment-list li strong { color: var(--white); font-weight: 600; }
.assessment-rubric {
  margin-top: 32px; padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.12);
  font-size: 14px; line-height: 1.6;
  color: rgba(255,255,255,0.6);
}
.assessment-rubric strong { color: var(--un-blue); font-weight: 600; }
@media (max-width: 740px) {
  .assessment { padding: 36px 28px; margin-left: -22px; margin-right: -22px; border-radius: 0; }
}

/* Home — section split (training + blog) */
.home-section {
  padding: 130px 22px;
  background: var(--white);
}
.home-section.alt { background: var(--paper); }
.home-section .frame {
  max-width: 1200px; margin: 0 auto;
}
.home-section-head {
  display: flex; justify-content: space-between; align-items: flex-end;
  flex-wrap: wrap; gap: 28px;
  margin-bottom: 56px;
  border-bottom: 1px solid rgba(0,0,0,0.12); padding-bottom: 28px;
}
.home-section-head .text { max-width: 720px; }
.home-section-head h2 {
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 600; letter-spacing: -0.04em; line-height: 1;
  color: var(--graphite);
}
.home-section-head h2 .it { font-family: var(--serif); font-style: italic; font-weight: 400; color: var(--blue); }
.home-section-head p {
  color: var(--slate); margin-top: 16px;
  font-size: clamp(15px, 1.5vw, 18px); line-height: 1.5;
}
.home-section-head .all-link {
  font-size: 13px; color: var(--blue); text-decoration: none;
  letter-spacing: 0.04em;
  border: 1px solid var(--blue); padding: 10px 18px; border-radius: 999px;
  transition: background 0.3s, color 0.3s;
}
.home-section-head .all-link:hover { background: var(--blue); color: var(--white); }

.home-modules {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}
@media (max-width: 900px) { .home-modules { grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px) { .home-modules { grid-template-columns: 1fr; } }
.home-module-card {
  text-decoration: none; color: inherit;
  background: var(--paper);
  padding: 32px 28px;
  border-radius: 4px;
  display: flex; flex-direction: column;
  min-height: 220px;
  transition: transform 0.4s var(--ease-out), background 0.3s;
}
.home-section.alt .home-module-card { background: var(--white); }
.home-module-card:hover { transform: translateY(-4px); background: var(--graphite); color: var(--white); }
.home-module-card:hover .home-module-num { color: var(--un-blue); }
.home-module-card:hover .home-module-title .it { color: var(--un-blue); }
.home-module-num {
  font-family: ui-monospace, SF Mono, Menlo, monospace;
  font-size: 12px; color: var(--blue); letter-spacing: 0.04em;
  margin-bottom: 16px; font-weight: 500;
}
.home-module-title {
  font-size: 20px; font-weight: 600; letter-spacing: -0.02em;
  line-height: 1.2; margin-bottom: 12px;
}
.home-module-title .it { font-family: var(--serif); font-style: italic; font-weight: 400; color: var(--blue); }
.home-module-desc {
  font-size: 14px; line-height: 1.5; opacity: 0.7;
  margin-bottom: 20px; flex: 1;
}
.home-module-tag {
  font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase;
  font-weight: 500; opacity: 0.6;
}

/* Home blog section — image-led cards */
.home-blog {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
@media (max-width: 900px) { .home-blog { grid-template-columns: 1fr; } }
.home-blog-card {
  text-decoration: none; color: inherit;
  display: flex; flex-direction: column;
  transition: transform 0.4s var(--ease-out);
}
.home-blog-card:hover { transform: translateY(-4px); }
.home-blog-card-img {
  width: 100%; aspect-ratio: 4/3; overflow: hidden;
  margin-bottom: 18px; background: var(--paper);
}
.home-blog-card-img img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 1.2s var(--ease-out);
}
.home-blog-card:hover .home-blog-card-img img { transform: scale(1.04); }
.home-blog-card-tag {
  font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--blue); font-weight: 500; margin-bottom: 10px;
}
.home-blog-card-title {
  font-size: 22px; font-weight: 600; letter-spacing: -0.02em;
  line-height: 1.2; color: var(--graphite); margin-bottom: 10px;
}
.home-blog-card-title .it { font-family: var(--serif); font-style: italic; font-weight: 400; color: var(--blue); }
.home-blog-card-meta {
  font-size: 12px; color: var(--slate); letter-spacing: 0.02em;
}

/* Blog index — editorial style */
.editorial {
  max-width: 1200px; margin: 0 auto;
  padding: 160px 22px 100px;
}
.editorial-head { max-width: 880px; margin-bottom: 64px; }
.editorial-head .h1 {
  font-size: clamp(48px, 7vw, 96px);
  letter-spacing: -0.045em; line-height: 0.95;
  color: var(--graphite); font-weight: 600;
}
.editorial-head .h1 .it { font-family: var(--serif); font-style: italic; font-weight: 400; color: var(--blue); }
.editorial-head .lede {
  color: var(--slate); margin-top: 28px;
  font-size: clamp(17px, 1.8vw, 22px); line-height: 1.5; max-width: 640px;
}

.editorial-feature {
  display: grid; grid-template-columns: 1.2fr 1fr;
  gap: 56px; align-items: center;
  border-top: 1px solid rgba(0,0,0,0.12);
  padding: 56px 0; margin-bottom: 0;
  border-bottom: 1px solid rgba(0,0,0,0.12);
}
@media (max-width: 900px) { .editorial-feature { grid-template-columns: 1fr; gap: 32px; } }
.editorial-feature-img { aspect-ratio: 4/3; overflow: hidden; }
.editorial-feature-img img { width: 100%; height: 100%; object-fit: cover; }
.editorial-feature-text .editorial-tag {
  font-size: 12px; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--blue); font-weight: 600; margin-bottom: 18px;
}
.editorial-feature-text h2 {
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 600; letter-spacing: -0.03em; line-height: 1.05;
  color: var(--graphite); margin-bottom: 18px;
}
.editorial-feature-text h2 .it { font-family: var(--serif); font-style: italic; font-weight: 400; color: var(--blue); }
.editorial-feature-text h2 a { color: inherit; text-decoration: none; }
.editorial-feature-text p {
  color: var(--slate); font-size: 17px; line-height: 1.55;
}
.editorial-feature-text .editorial-meta {
  margin-top: 22px;
  font-size: 12px; color: var(--slate); letter-spacing: 0.04em;
}

.editorial-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 56px 36px;
  padding-top: 56px;
}
@media (max-width: 900px) { .editorial-grid { grid-template-columns: 1fr; } }
.editorial-card {
  text-decoration: none; color: inherit;
  display: flex; flex-direction: column;
  transition: transform 0.4s var(--ease-out);
}
.editorial-card:hover { transform: translateY(-3px); }
.editorial-card .editorial-card-img {
  width: 100%; aspect-ratio: 4/3; overflow: hidden;
  margin-bottom: 20px;
}
.editorial-card .editorial-card-img img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 1.2s var(--ease-out);
}
.editorial-card:hover .editorial-card-img img { transform: scale(1.04); }
.editorial-card .editorial-tag {
  font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--blue); font-weight: 600; margin-bottom: 10px;
}
.editorial-card h3 {
  font-size: 22px; font-weight: 600; letter-spacing: -0.02em;
  line-height: 1.2; color: var(--graphite); margin-bottom: 10px;
}
.editorial-card h3 .it { font-family: var(--serif); font-style: italic; font-weight: 400; color: var(--blue); }
.editorial-card p {
  color: var(--slate); font-size: 15px; line-height: 1.5;
}
.editorial-card .editorial-meta {
  margin-top: 14px; font-size: 12px; color: var(--slate); letter-spacing: 0.04em;
}

