
/* ============================================================
   SNC DESIGN SYSTEM v2 — foundational tokens
   Added 2026-05-22. Closes spacing/radius/shadow/focus gaps
   identified in the design-system audit. Existing token names
   preserved for backwards compatibility.
   ============================================================ */

:root {
  /* ── SPACING SCALE (8px base, with finer 4 step) ──────── */
  --s-1: 0.25rem;   /* 4px  — hairline gaps inside tokens */
  --s-2: 0.5rem;    /* 8px  — tight inline */
  --s-3: 0.75rem;   /* 12px — chip / pill spacing */
  --s-4: 1rem;      /* 16px — text rhythm */
  --s-5: 1.5rem;    /* 24px — small section gap */
  --s-6: 2rem;      /* 32px — block gap */
  --s-7: 3rem;      /* 48px — section gap */
  --s-8: 4.5rem;    /* 72px — major section gap */
  --s-9: 7rem;      /* 112px — page-hero breathing room */

  /* ── BORDER RADIUS SCALE ────────────────────────────── */
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 14px;
  --radius-pill: 999px;

  /* ── SHADOW SCALE (ink-tinted, low-key for editorial) ── */
  --shadow-sm: 0 1px 2px rgba(10, 14, 39, 0.08);
  --shadow-md: 0 4px 16px rgba(10, 14, 39, 0.12);
  --shadow-lg: 0 12px 40px rgba(10, 14, 39, 0.18);
  --shadow-lift-gold: 0 8px 28px rgba(255, 184, 0, 0.22);
  --shadow-lift-ink:  0 8px 28px rgba(10, 14, 39, 0.22);

  /* ── Z-INDEX SCALE ──────────────────────────────────── */
  --z-spine: 5;
  --z-topnav: 50;
  --z-overlay: 800;
  --z-modal: 900;
  --z-toast: 950;
  --z-chatbot: 9999;

  /* ── TYPE SCALE (Major Third, 1.25x ratio) ─────────── */
  --t-xs:   0.72rem;
  --t-sm:   0.86rem;
  --t-base: 1rem;
  --t-lg:   1.25rem;
  --t-xl:   1.563rem;
  --t-2xl:  1.953rem;
  --t-3xl:  2.441rem;
  --t-4xl:  3.052rem;
  --t-5xl:  3.815rem;
  --t-hero: clamp(2.5rem, 6vw, 4.8rem);
}

/* ── FOCUS-VISIBLE: site-wide keyboard focus ring ──────── */
*:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
  border-radius: var(--radius-sm);
}
button:focus-visible,
a:focus-visible {
  box-shadow: 0 0 0 4px rgba(255, 184, 0, 0.25);
}

/* ── DEPRECATED ALIASES (kept for compatibility) ───────
   Future cleanup: search-replace these to the canonical
   token name and delete from :root.
   --night, --char  →  --ink
   --ember          →  --gold
   --script         →  --display
   --rhythm, --heat →  unused; available for stream tags
   ──────────────────────────────────────────────────── */

/* end SNC system tokens v2 */
/* ============================================================
   SNC 2026 + IMPACT INITIATIVE — Shared Design System
   mongolia.aiesec.leadersinai.org
   ============================================================ */

:root {
  --ink:    #0A0E27;
  --night:  #0A0E27;
  --rhythm: #2D1B69;
  --heat:   #E63462;
  --ember:  #FFB800;
  --gold:   #FFB800;
  --cream:  #FFF6E3;
  --paper:  #FFFBF0;
  --char:   #1A1A2E;

  --soft-ink:    rgba(10, 14, 39, 0.86);
  --softer-ink:  rgba(10, 14, 39, 0.72);
  --line-ink:    rgba(10, 14, 39, 0.18);
  --soft-cream:  rgba(255, 246, 227, 0.94);
  --softer-cream:rgba(255, 246, 227, 0.82);
  --line-cream:  rgba(255, 246, 227, 0.28);
  --label-ink: #5A4B12;

  --display: "IBM Plex Serif", Georgia, "Times New Roman", serif;
  --script:  "IBM Plex Serif", Georgia, serif;
  --stamp:   "IBM Plex Sans", system-ui, sans-serif;
  --body:    "IBM Plex Sans", system-ui, -apple-system, "Segoe UI", sans-serif;

  --ease-out:   cubic-bezier(0.16, 1, 0.3, 1);
  --ease-quart: cubic-bezier(0.25, 1, 0.5, 1);
  --ease-io:    cubic-bezier(0.87, 0, 0.13, 1);

  --max:    1320px;
  --gutter: clamp(1.25rem, 4vw, 3.5rem);
  --spine:  40px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; scroll-padding-top: 70px; }
body {
  font-family: var(--body); font-size: 18px;
  color: var(--ink); background: var(--paper);
  line-height: 1.65; overflow-x: hidden;
  -webkit-font-smoothing: antialiased; text-rendering: optimizeLegibility;
  font-feature-settings: "kern" 1, "liga" 1, "calt" 1;
}
p, li { max-width: 66ch; }
.dark p, .dark li { max-width: 66ch; }
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: none; border: 0; background: none; }
::selection { background: var(--gold); color: var(--ink); }

/* custom cursor */
@media (pointer: fine) {
  body { cursor: none; }
  .cursor-dot {
    position: fixed; top: 0; left: 0; width: 10px; height: 10px;
    border-radius: 50%; background: var(--heat);
    pointer-events: none; z-index: 9999; transform: translate(-50%, -50%);
    transition: width .35s var(--ease-out), height .35s var(--ease-out), background .25s;
    mix-blend-mode: difference; will-change: transform;
  }
  .cursor-dot.hover { width: 56px; height: 56px; background: var(--gold); }
}
@media (pointer: coarse) { .cursor-dot { display: none; } }
@media (hover: none), (pointer: coarse), (max-width: 900px) {
  .cursor-dot { display: none; }
}

/* sticky top nav */
.topnav {
  position: fixed; top: 0; left: var(--spine); right: 0;
  z-index: 60;
  background: rgba(10, 14, 39, 0.92);
  backdrop-filter: blur(14px) saturate(140%);
  -webkit-backdrop-filter: blur(14px) saturate(140%);
  border-bottom: 1px solid var(--line-cream);
  transform: translateY(-100%);
  transition: transform 0.4s var(--ease-out);
}
.topnav.show { transform: translateY(0); }
.topnav-inner {
  max-width: var(--max); margin: 0 auto;
  padding: 0.75rem var(--gutter);
  display: flex; align-items: center; gap: 1.6rem;
}
.topnav-brand {
  font-family: var(--stamp); font-weight: 600;
  letter-spacing: 0.3em; font-size: 0.74rem;
  color: var(--gold); text-transform: uppercase;
  margin-right: auto; white-space: nowrap;
}
.topnav-links {
  display: flex; gap: 1.4rem; list-style: none; padding: 0; margin: 0;
}
@media (max-width: 1200px) {
  .spine { display: none; }
}

@media (max-width: 980px) {
  .topnav-links { overflow-x: auto; scrollbar-width: none; gap: 1rem; }
  .topnav-links::-webkit-scrollbar { display: none; }
}
.topnav-links a {
  font-family: var(--stamp); font-weight: 600;
  letter-spacing: 0.16em; font-size: 0.76rem;
  color: var(--soft-cream); text-transform: uppercase;
  padding: 0.4rem 0; border-bottom: 1px solid transparent;
  transition: color 0.2s, border-color 0.2s; white-space: nowrap;
}
.topnav-links a:hover,
.topnav-links a.active { color: var(--gold); border-bottom-color: var(--gold); }
.topnav-cta {
  background: var(--gold); color: var(--ink);
  padding: 0.55rem 1.1rem; font-family: var(--stamp);
  font-weight: 700; font-size: 0.78rem; letter-spacing: 0.18em;
  text-transform: uppercase; white-space: nowrap;
  transition: background 0.2s, color 0.2s;
}
.topnav-cta:hover { background: var(--heat); color: var(--cream); }

/* dropdowns */
.dropdown { position: relative; }
.dd-trigger {
  font-family: var(--stamp); font-weight: 600;
  letter-spacing: 0.16em; font-size: 0.76rem;
  color: var(--soft-cream); text-transform: uppercase;
  padding: 0.4rem 0; cursor: none;
  display: inline-flex; align-items: center; gap: 0.45rem;
  border-bottom: 1px solid transparent;
  transition: color 0.2s, border-color 0.2s;
}
.dd-trigger:hover, .dropdown.open .dd-trigger { color: var(--gold); border-bottom-color: var(--gold); }
.dd-caret { font-size: 0.7em; transition: transform 0.25s var(--ease-out); }
.dropdown.open .dd-caret { transform: rotate(180deg); }
.dd-menu {
  position: absolute; top: 100%; left: -0.8rem;
  background: rgba(10, 14, 39, 0.97);
  backdrop-filter: blur(14px) saturate(140%);
  -webkit-backdrop-filter: blur(14px) saturate(140%);
  border: 1px solid var(--line-cream);
  list-style: none; padding: 0.6rem 0; margin: 0;
  min-width: 200px;
  opacity: 0; visibility: hidden; transform: translateY(-6px);
  transition: opacity 0.25s var(--ease-out), visibility 0.25s, transform 0.25s var(--ease-out);
  z-index: 70;
}
.dropdown.open .dd-menu { opacity: 1; visibility: visible; transform: translateY(0); }
.dd-menu li { display: block; max-width: none; }
.dd-menu a {
  display: block; padding: 0.6rem 1.2rem;
  font-family: var(--stamp); font-weight: 600;
  font-size: 0.82rem; letter-spacing: 0.14em;
  color: var(--soft-cream); text-transform: uppercase; border-bottom: 0;
  transition: background 0.15s, color 0.15s;
}
.dd-menu a:hover { background: rgba(255, 184, 0, 0.12); color: var(--gold); }

@media (max-width: 880px) {
  .topnav-links { gap: 0.8rem; }
  .topnav-brand { display: none; }
}

/* spine */
.spine {
  position: fixed; left: 0; top: 0; bottom: 0; width: var(--spine);
  background: var(--ink); z-index: 50;
  display: flex; align-items: center; justify-content: center;
  border-right: 1px solid var(--line-cream);
}
.spine-text {
  writing-mode: vertical-rl; transform: rotate(180deg);
  font-family: var(--stamp); letter-spacing: 0.38em;
  color: var(--gold); font-size: 0.78rem; text-transform: uppercase;
  white-space: nowrap; text-shadow: 0 0 18px rgba(255,184,0,0.3);
}
.spine-mark {
  position: absolute; top: 1.4rem; left: 50%; transform: translateX(-50%);
  font-family: var(--display); font-weight: 900; color: var(--gold);
  font-size: 1.4rem; line-height: 1;
}
.spine-mark::before { content: "A"; }
.spine-foot {
  position: absolute; bottom: 1.2rem; left: 50%; transform: translateX(-50%);
  font-family: var(--stamp); color: var(--softer-cream); font-size: 0.7rem;
  letter-spacing: 0.22em;
}
main { margin-left: var(--spine); }

/* layout primitives */
.wrap     { max-width: var(--max); margin: 0 auto; padding-inline: var(--gutter); }
.block    { padding-block: clamp(3.5rem, 6vw, 6rem); position: relative; }
.block-sm { padding-block: clamp(2rem, 3.5vw, 3.5rem); position: relative; }

/* type system */
.eyebrow {
  font-family: var(--stamp); letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--label-ink); font-size: 0.86rem; font-weight: 600;
  display: inline-flex; align-items: center; gap: 0.8rem;
}
.eyebrow::before { content: ""; width: 36px; height: 1px; background: currentColor; }
.eyebrow.solo::before { display: none; }
.eyebrow.gold { color: var(--gold); }
.eyebrow.dark, .dark .eyebrow { color: var(--gold); }

.h2 {
  font-family: var(--display); font-weight: 800;
  font-size: clamp(2.2rem, 5.5vw, 4.5rem);
  line-height: 0.95; letter-spacing: -0.025em;
  font-variation-settings: "opsz" 144;
}
.h2 em { font-style: italic; font-weight: 300; color: var(--heat); }
.h2.dark em { color: var(--gold); }

.h3 {
  font-family: var(--display); font-weight: 800;
  font-size: clamp(1.4rem, 2.2vw, 2rem);
  line-height: 1.05; letter-spacing: -0.015em;
}

.script { font-family: var(--display); font-style: italic; font-weight: 400; line-height: 1.05; }
.stamp { font-family: var(--stamp); letter-spacing: 0.18em; text-transform: uppercase; font-weight: 600; font-size: 0.86rem; }

.lede {
  font-family: var(--display); font-weight: 400;
  font-size: clamp(1.15rem, 1.6vw, 1.4rem);
  line-height: 1.55; color: var(--soft-ink);
}
.lede.dark { color: var(--soft-cream); }
p { color: var(--soft-ink); }
.dark p { color: var(--soft-cream); }

/* Reveal animation */
.reveal { opacity: 1; transform: translateY(0); transition: transform 0.7s var(--ease-out); }
.js-on .reveal { transform: translateY(14px); }
.js-on .reveal.in { transform: translateY(0); }
.reveal[data-delay="1"].in { transition-delay: 0.08s; }
.reveal[data-delay="2"].in { transition-delay: 0.16s; }
.reveal[data-delay="3"].in { transition-delay: 0.24s; }
.reveal[data-delay="4"].in { transition-delay: 0.32s; }

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .marquee-track { animation: none !important; }
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  min-height: 92vh; background: var(--ink); color: var(--cream);
  position: relative; overflow: hidden;
  padding: clamp(1.2rem, 2.2vw, 1.8rem) var(--gutter) 0;
  display: flex; flex-direction: column;
}
.hero::before {
  content: ""; position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 80% 50% at 50% 0%, rgba(45,27,105,0.6), transparent 60%),
    radial-gradient(ellipse 50% 30% at 80% 100%, rgba(230,52,98,0.18), transparent 60%);
  pointer-events: none;
}
.hero-nav {
  display: flex; justify-content: space-between; align-items: center;
  position: relative; z-index: 2;
}
.hero-nav .brand {
  font-family: var(--stamp); letter-spacing: 0.36em;
  font-size: 0.82rem; color: var(--cream); text-transform: uppercase;
}
.hero-nav .meta {
  font-family: var(--body); font-size: 0.72rem; letter-spacing: 0.24em;
  text-transform: uppercase; color: var(--softer-cream);
}
.hero-stage {
  flex: 1; display: flex; flex-direction: column; justify-content: center;
  padding-block: clamp(2.5rem, 5vw, 5rem); position: relative; z-index: 2;
}
.hero-eyebrow {
  font-family: var(--stamp); letter-spacing: 0.32em;
  font-size: clamp(0.74rem, 1vw, 0.92rem);
  text-transform: uppercase; color: var(--gold);
  display: inline-flex; align-items: center; gap: 1rem;
  margin-bottom: clamp(1.5rem, 3vw, 2.4rem); flex-wrap: wrap;
}
.hero-eyebrow::before, .hero-eyebrow::after {
  content: ""; height: 1px; background: var(--gold);
  width: clamp(24px, 4vw, 56px);
}
.hero-title {
  font-family: var(--display); font-weight: 900;
  font-size: clamp(2.8rem, 9vw, 8.5rem);
  line-height: 0.92; letter-spacing: -0.035em;
  color: var(--cream); margin: 0;
  font-variation-settings: "opsz" 144;
  max-width: 18ch;
}
.hero-title .line { display: block; overflow: hidden; }
.hero-title .line span {
  display: block; transform: translateY(110%);
  transition: transform 1.1s var(--ease-out);
}
.hero-title.in .line:nth-child(1) span { transform: translateY(0); transition-delay: 0.05s; }
.hero-title.in .line:nth-child(2) span { transform: translateY(0); transition-delay: 0.16s; }
.hero-title.in .line:nth-child(3) span { transform: translateY(0); transition-delay: 0.26s; }
.hero-title em { font-style: italic; font-weight: 300; color: var(--gold); }

.hero-lede {
  margin-top: clamp(1.4rem, 2.5vw, 2rem);
  max-width: 56ch;
  font-family: var(--display); font-weight: 400;
  font-size: clamp(1rem, 1.35vw, 1.22rem);
  line-height: 1.55; color: var(--soft-cream);
  opacity: 0; transform: translateY(20px);
  transition: opacity 0.9s var(--ease-out) 0.55s, transform 0.9s var(--ease-out) 0.55s;
}
.hero-lede.in { opacity: 1; transform: translateY(0); }
.hero-lede b { color: var(--gold); font-weight: 600; }

.hero-cta {
  margin-top: clamp(1.6rem, 2.5vw, 2.2rem);
  display: flex; gap: 1rem; flex-wrap: wrap;
  opacity: 0; transform: translateY(20px);
  transition: opacity 0.9s var(--ease-out) 0.75s, transform 0.9s var(--ease-out) 0.75s;
}
.hero-cta.in { opacity: 1; transform: translateY(0); }

/* hero proof chips */
.hero-chips {
  margin-top: clamp(1.8rem, 3vw, 2.8rem);
  display: flex; gap: 0.7rem; flex-wrap: wrap;
  opacity: 0; transform: translateY(20px);
  transition: opacity 0.9s var(--ease-out) 0.9s, transform 0.9s var(--ease-out) 0.9s;
}
.hero-chips.in { opacity: 1; transform: translateY(0); }
.hero-chip {
  font-family: var(--stamp); font-size: 0.68rem; letter-spacing: 0.22em;
  text-transform: uppercase; color: var(--softer-cream);
  border: 1px solid var(--line-cream); padding: 0.4rem 0.85rem;
}
.hero-chip b { color: var(--gold); font-weight: 700; }

/* buttons */
.btn {
  display: inline-flex; align-items: center; gap: 0.7rem;
  font-family: var(--stamp); letter-spacing: 0.28em;
  text-transform: uppercase; font-size: 0.78rem;
  padding: 1rem 1.6rem; border: 1px solid currentColor;
  transition: all .3s var(--ease-out); cursor: none;
}
.btn-primary { background: var(--gold); color: var(--ink); border-color: var(--gold); }
.btn-primary:hover { background: var(--heat); border-color: var(--heat); color: var(--cream); }
.btn-ghost { background: transparent; color: var(--cream); border-color: var(--line-cream); }
.btn-ghost:hover { border-color: var(--gold); color: var(--gold); }
.btn-ink { background: var(--ink); color: var(--cream); border-color: var(--ink); }
.btn-ink:hover { background: var(--gold); color: var(--ink); border-color: var(--gold); }
.btn .arr { transition: transform .3s var(--ease-out); }
.btn:hover .arr { transform: translateX(6px); }

/* marquee */
.marquee {
  background: var(--gold); color: var(--ink);
  overflow: hidden; padding: 0.85rem 0;
  font-family: var(--stamp); letter-spacing: 0.22em;
  font-size: clamp(0.85rem, 1.05vw, 0.98rem);
  position: relative; z-index: 2;
}
.marquee-track {
  display: inline-flex; gap: 3.5rem; white-space: nowrap;
  animation: marquee 38s linear infinite; padding-left: 3.5rem;
  will-change: transform;
}
.marquee-track span { display: inline-flex; align-items: center; gap: 0.8em; }
.marquee-track .star { color: var(--heat); }
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* social proof / logo strip */
.proof { background: var(--cream); padding-block: clamp(3rem, 5vw, 5rem); border-block: 1px solid var(--line-ink); }
.proof-grid {
  display: grid; grid-template-columns: 1.1fr 1fr;
  gap: clamp(2rem, 5vw, 4rem); align-items: center;
}
.proof-quote {
  font-family: var(--display); font-style: italic; font-weight: 300;
  font-size: clamp(1.25rem, 2.2vw, 1.85rem);
  line-height: 1.35; color: var(--ink);
}
.proof-quote::before { content: "\201C"; color: var(--gold); margin-right: 0.1em; font-weight: 800; }
.proof-attr {
  margin-top: 1rem; font-family: var(--stamp);
  font-size: 0.76rem; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--softer-ink);
}
.logo-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--ink);
  border-left: 1px solid var(--ink);
}
.logo-cell {
  border-right: 1px solid var(--ink);
  border-bottom: 1px solid var(--ink);
  padding: 1.2rem 1rem;
  font-family: var(--display);
  font-weight: 600;
  font-size: clamp(0.92rem, 1.2vw, 1.05rem);
  letter-spacing: -0.005em;
  color: var(--ink);
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 96px;
  transition: background 0.3s, color 0.3s;
}
.logo-cell:hover { background: var(--ink); color: var(--gold); }
.logo-note {
  grid-column: 1 / -1;
  padding: 0.8rem;
  font-family: var(--stamp);
  font-size: 0.62rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--softer-ink);
  text-align: center;
}
/* Logo images inside .logo-cell — fixed visual height for uniform weight */
.logo-cell img {
  display: block;
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 36px;        /* default */
  object-fit: contain;
  filter: grayscale(100%) opacity(0.7);
  transition: filter 0.3s var(--ease-out);
}
.logo-cell:hover img { filter: grayscale(0%) opacity(1); }
.logo-cell:has(img):hover { background: transparent; }
/* Optical-balance per-logo */
.logo-cell img[alt="MCS Group"] { max-height: 22px; }
.logo-cell img[alt="Mobicom"]   { max-height: 46px; }
.logo-cell img[alt="Newcom"]    { max-height: 40px; }
.logo-row {
  display: flex; align-items: center; flex-wrap: wrap;
  gap: clamp(1.4rem, 3vw, 2.4rem); margin-top: 1rem;
}
.logo-row img {
  height: 36px; width: auto; max-width: 140px; object-fit: contain;
  filter: grayscale(100%) opacity(0.65);
  transition: filter 0.3s var(--ease-out), transform 0.3s var(--ease-out);
}
.logo-row img:hover { filter: grayscale(0%) opacity(1); transform: translateY(-2px); }
.logo-row.dark img { filter: grayscale(100%) brightness(2.2) opacity(0.7); }
.logo-row.dark img:hover { filter: grayscale(0%) brightness(1.1) opacity(1); }

/* stats */
.stats { background: var(--paper); padding-block: clamp(4rem, 7vw, 7rem); }
.stats-head { max-width: 760px; margin-bottom: clamp(2.5rem, 4vw, 4rem); }
.stats-row {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: clamp(1.5rem, 3vw, 2.5rem); align-items: start;
}
.stat-cell { border-left: 1px solid var(--line-ink); padding-left: 1.2rem; }
.stat-cell:first-child { border-left: 0; padding-left: 0; }
.stat-num {
  font-family: var(--display); font-weight: 900;
  font-size: clamp(2.6rem, 5vw, 4.2rem);
  line-height: 0.95; letter-spacing: -0.035em;
  color: var(--ink); margin-bottom: 0.5rem;
  font-variation-settings: "opsz" 144;
}
.stat-num.heat { color: var(--heat); }
.stat-num.gold { color: var(--gold); }
.stat-num.ember { color: var(--ember); }
.stat-label { font-size: 0.9rem; line-height: 1.5; color: var(--soft-ink); max-width: 28ch; }
.stat-mark {
  font-family: var(--stamp); font-size: 0.66rem;
  letter-spacing: 0.3em; text-transform: uppercase;
  color: var(--softer-ink); margin-bottom: 0.5rem;
}
@media (max-width: 880px) {
  .stats-row { grid-template-columns: 1fr 1fr; }
  .stat-cell:nth-child(3) { border-left: 0; padding-left: 0; }
}
@media (max-width: 540px) {
  .stats-row { grid-template-columns: 1fr; }
  .stat-cell { border-left: 0; padding-left: 0; border-top: 1px solid var(--line-ink); padding-top: 1.2rem; }
  .stat-cell:first-child { border-top: 0; padding-top: 0; }
}

/* outcomes */
.outcomes { background: var(--cream); padding-block: clamp(4rem, 8vw, 8rem); }
.outcomes-head { max-width: 760px; margin-bottom: clamp(2.5rem, 4vw, 4rem); }
.outcome-rows { display: flex; flex-direction: column; }
.outcome {
  display: grid; grid-template-columns: 180px 1fr 1fr;
  gap: clamp(1.5rem, 3vw, 3rem);
  padding: clamp(1.8rem, 3vw, 2.8rem) 0;
  border-top: 1px solid var(--ink); align-items: start;
  transition: background 0.4s var(--ease-out);
}
.outcome:last-child { border-bottom: 1px solid var(--ink); }
.outcome:hover { background: var(--paper); }
.outcome-num {
  font-family: var(--display); font-style: italic; font-weight: 300;
  font-size: clamp(2.8rem, 4vw, 3.6rem); line-height: 0.9;
  color: var(--ink); transition: color 0.3s;
}
.outcome:hover .outcome-num { color: var(--heat); }
.outcome-anchor {
  display: block; margin-top: 0.5rem; font-family: var(--stamp);
  font-size: 0.78rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--label-ink);
}
.outcome p { font-size: 0.98rem; line-height: 1.6; color: var(--soft-ink); }
@media (max-width: 880px) {
  .outcome { grid-template-columns: 100px 1fr; row-gap: 1rem; }
  .outcome p { grid-column: 2 / -1; }
}

/* combo */
.combo {
  background: var(--ink); color: var(--cream);
  padding-block: clamp(5rem, 8vw, 8rem); position: relative; overflow: hidden;
}
.combo::before {
  content: ""; position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 0% 0%, rgba(255,184,0,0.14), transparent 50%),
    radial-gradient(ellipse at 100% 100%, rgba(230,52,98,0.16), transparent 55%);
  pointer-events: none;
}
.combo .wrap { position: relative; z-index: 1; }
.combo-head { max-width: 760px; margin-bottom: clamp(3rem, 5vw, 4rem); }
.combo-split {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 0; border: 1px solid var(--line-cream);
  background: rgba(255,246,227,0.02);
}
.combo-side {
  padding: clamp(1.8rem, 3.5vw, 2.8rem); display: flex; flex-direction: column;
  position: relative;
}
.combo-side:first-child { border-right: 1px solid var(--line-cream); }
.combo-side-tag {
  font-family: var(--stamp); font-size: 0.7rem;
  letter-spacing: 0.32em; text-transform: uppercase; color: var(--gold); margin-bottom: 0.7rem;
}
.combo-side-name {
  font-family: var(--display); font-weight: 800;
  font-size: clamp(1.8rem, 3vw, 2.4rem); letter-spacing: -0.02em; line-height: 1.05;
  color: var(--cream); margin-bottom: 0.4rem;
}
.combo-side-meta {
  font-family: var(--display); font-style: italic; font-weight: 400;
  font-size: clamp(1rem, 1.4vw, 1.2rem); color: var(--soft-cream); margin-bottom: 1.6rem;
}
.combo-days {
  list-style: none; padding: 0; margin: 0 0 1.6rem;
  border-top: 1px dashed var(--line-cream);
}
.combo-days > li {
  display: block; padding: 1rem 0; border-bottom: 1px dashed var(--line-cream);
  font-size: 0.95rem; color: var(--soft-cream); max-width: none;
}
.combo-days > li:last-child { border-bottom: 0; }
.combo-days li b {
  font-family: var(--stamp); font-weight: 600; letter-spacing: 0.22em;
  font-size: 0.78rem; text-transform: uppercase; color: var(--gold); display: block;
}
.combo-days .day-theme {
  display: block; font-family: var(--display); font-weight: 700; font-style: italic;
  color: var(--cream); font-size: 1rem; margin-bottom: 0.4rem;
}
.combo-days ul {
  list-style: none; padding: 0; margin: 0.6rem 0 0;
  display: flex; flex-direction: column; gap: 0.55rem;
}
.combo-days ul li {
  display: block; padding: 0 0 0 0.9rem; border: 0;
  font-size: 0.9rem; color: var(--soft-cream); line-height: 1.55;
  position: relative; max-width: none;
}
.combo-days ul li::before { content: "•"; position: absolute; left: 0; color: var(--gold); font-weight: 700; }
.tier-badge {
  font-family: var(--stamp); font-size: 0.7rem; letter-spacing: 0.18em;
  text-transform: uppercase; color: var(--gold); font-weight: 600;
  margin-left: 0.4rem; white-space: nowrap;
}
.tier-badge.all { color: var(--softer-cream); }
.why {
  display: block; margin-top: 0.35rem; margin-left: -0.9rem;
  padding: 0.3rem 0 0.3rem 0.85rem;
  border-left: 2px solid var(--gold);
  font-family: var(--display); font-style: italic; font-weight: 400;
  font-size: 0.88rem; line-height: 1.45; color: var(--cream);
}
.why::before {
  content: "Why it matters: "; font-family: var(--stamp); font-style: normal; font-weight: 600;
  font-size: 0.66rem; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--gold); display: block; margin-bottom: 0.15rem;
}
.combo-buyer { margin-top: auto; padding-top: 1.2rem; border-top: 1px solid var(--line-cream); }
.combo-buyer .lbl {
  font-family: var(--stamp); font-size: 0.76rem;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 0.4rem; display: block;
}
.combo-buyer p { font-size: 0.92rem; color: var(--soft-cream); line-height: 1.55; }
.combo-credit {
  margin-top: clamp(1.6rem, 3vw, 2.2rem); font-size: 0.82rem; line-height: 1.55;
  color: var(--softer-cream); max-width: 80ch;
  border-left: 2px solid var(--gold); padding-left: 1rem;
}
.combo-credit b { color: var(--gold); font-weight: 600; }
@media (max-width: 760px) {
  .combo-split { grid-template-columns: 1fr; }
  .combo-side:first-child { border-right: 0; border-bottom: 1px solid var(--line-cream); }
}

/* tiers */
.tiers { background: var(--cream); padding-block: clamp(5rem, 8vw, 8rem); }
.tiers-head {
  display: grid; grid-template-columns: 1.2fr 1fr;
  gap: clamp(2rem, 5vw, 4rem); align-items: end;
  margin-bottom: clamp(3rem, 5vw, 4rem);
}
.tiers-head .h2 em { color: var(--gold); }
.tier-banner {
  background: var(--ink); color: var(--cream);
  padding: 1.2rem 1.4rem;
  display: grid; grid-template-columns: auto 1fr; gap: 1.4rem; align-items: center;
  margin-bottom: clamp(2.5rem, 4vw, 3rem);
}
.tier-banner .pill {
  background: var(--gold); color: var(--ink); padding: 0.36rem 0.85rem;
  font-family: var(--stamp); font-size: 0.76rem;
  letter-spacing: 0.2em; text-transform: uppercase; white-space: nowrap;
}
.tier-banner-body { font-size: 0.94rem; font-weight: 500; line-height: 1.45; color: var(--cream); }
.tier-banner-body b { color: var(--gold); font-weight: 700; }
.ticket-grid {
  display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 1.1rem;
}
.ticket {
  background: var(--paper); color: var(--ink);
  border: 1px solid var(--ink); position: relative;
  display: flex; flex-direction: column;
  transition: transform 0.4s var(--ease-out), background 0.4s var(--ease-out);
}
.ticket:hover { transform: translateY(-6px); background: #fff; }
.ticket::before {
  content: ""; position: absolute; top: 90px; left: -7px; right: -7px; height: 14px;
  background: radial-gradient(circle at 7px 7px, var(--cream) 6px, transparent 7px) repeat-x;
  background-size: 14px 14px; pointer-events: none;
}
.ticket-tag {
  position: absolute; top: 1rem; right: 1rem;
  font-family: var(--stamp); font-size: 0.62rem;
  letter-spacing: 0.28em; text-transform: uppercase;
  background: var(--heat); color: var(--cream); padding: 0.35rem 0.75rem; z-index: 2;
}
.ticket.featured .ticket-tag { background: var(--gold); color: var(--ink); }
.ticket.startup .ticket-tag { background: var(--ink); color: var(--gold); border: 1px solid var(--gold); }
.ticket-rank {
  font-family: var(--stamp); font-size: 0.66rem;
  letter-spacing: 0.3em; text-transform: uppercase; color: var(--softer-ink);
  padding: 1.6rem 1.4rem 0;
}
.ticket-name {
  font-family: var(--display); font-style: italic; font-weight: 700;
  font-size: clamp(2rem, 3.2vw, 2.6rem); line-height: 1; letter-spacing: -0.015em;
  color: var(--heat); padding: 0.4rem 1.4rem 0;
}
.ticket.featured .ticket-name { color: var(--gold); }
.ticket.startup .ticket-name { color: var(--ember); }
.ticket-price {
  padding: 0 1.4rem; margin-top: 1.4rem; padding-top: 1.4rem;
  font-family: var(--display); font-weight: 800;
  font-size: clamp(1.4rem, 2vw, 1.7rem); letter-spacing: -0.015em;
  line-height: 1.1; color: var(--ink);
}
.ticket-price small {
  display: block; margin-top: 0.4rem;
  font-family: var(--body); font-size: 0.7rem; font-weight: 400;
  color: var(--softer-ink); letter-spacing: 0.04em;
}
.ticket-eligibility { padding: 0 1.4rem; margin-top: 0.8rem; font-size: 0.74rem; line-height: 1.5; color: var(--soft-ink); font-style: italic; }
.ticket-divider { height: 1px; background: var(--line-ink); margin: 1.4rem 1.4rem 1rem; }
.ticket ul {
  list-style: none; padding: 0 1.4rem; margin: 0;
  display: flex; flex-direction: column; gap: 0.7rem;
  font-size: 0.94rem; line-height: 1.55;
}
.ticket li { padding-left: 1rem; position: relative; color: var(--soft-ink); }
.ticket li::before { content: "•"; position: absolute; left: 0; color: var(--softer-ink); font-weight: 700; }
.ticket li.bundle-line { color: var(--ink); font-weight: 600; }
.ticket li.bundle-line::before { content: "★"; color: var(--gold); }
.ticket.featured {
  background: var(--ink); color: var(--cream); border-color: var(--ink);
}
.ticket.featured .ticket-rank { color: var(--gold); }
.ticket.featured .ticket-price { color: var(--cream); }
.ticket.featured .ticket-price small { color: var(--softer-cream); }
.ticket.featured .ticket-divider { background: var(--line-cream); }
.ticket.featured ul li { color: var(--soft-cream); }
.ticket.featured ul li::before { color: var(--softer-cream); }
.ticket.featured li.bundle-line { color: var(--gold); }
.ticket.featured .ticket-foot { border-top: 1px dashed var(--line-cream); color: var(--softer-cream); }
.ticket-foot {
  margin-top: auto; padding: 1.2rem 1.4rem;
  border-top: 1px dashed var(--line-ink);
  font-family: var(--stamp); font-size: 0.64rem;
  letter-spacing: 0.26em; text-transform: uppercase; color: var(--softer-ink);
}
.tiers-footnote { margin-top: 2rem; font-size: 0.84rem; color: var(--softer-ink); max-width: 78ch; }
.tiers-footnote b { color: var(--ink); }
@media (max-width: 1080px) {
  .ticket-grid { grid-template-columns: 1fr 1fr; }
  .ticket.featured { grid-column: span 2; }
}
@media (max-width: 640px) {
  .ticket-grid { grid-template-columns: 1fr; }
  .ticket.featured, .ticket { grid-column: span 1; }
  .tiers-head { grid-template-columns: 1fr; }
}

/* LearnFast bundles */
.learnfast-bundles {
  background: var(--ink); color: var(--cream);
  padding-block: clamp(4rem, 7vw, 7rem); position: relative; overflow: hidden;
}
.learnfast-bundles::before {
  content: ""; position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 0% 0%, rgba(255,184,0,0.14), transparent 50%),
    radial-gradient(ellipse at 100% 100%, rgba(230,52,98,0.10), transparent 55%);
  pointer-events: none;
}
.learnfast-bundles .wrap { position: relative; z-index: 1; }
.lf-head { max-width: 760px; margin-bottom: clamp(2.5rem, 4vw, 3.5rem); }
.lf-bundle-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 1.1rem; margin-bottom: clamp(2.5rem, 4vw, 3rem);
}
.lf-bundle {
  background: rgba(255,246,227,0.04); border: 1px solid var(--line-cream);
  padding: 1.6rem 1.4rem 1.4rem; display: flex; flex-direction: column;
  position: relative; transition: transform 0.4s var(--ease-out), border-color 0.4s var(--ease-out);
}
.lf-bundle:hover { transform: translateY(-4px); border-color: var(--gold); }
.lf-bundle.featured {
  background: linear-gradient(135deg, rgba(255,184,0,0.12), rgba(230,52,98,0.06));
  border-color: var(--gold);
}
.lf-bundle-tag {
  font-family: var(--stamp); font-size: 0.62rem; letter-spacing: 0.3em; text-transform: uppercase;
  color: var(--gold); background: rgba(255,184,0,0.12);
  display: inline-block; padding: 0.3rem 0.7rem; margin-bottom: 1rem; align-self: flex-start;
}
.lf-bundle-id {
  font-family: var(--stamp); font-size: 0.68rem; letter-spacing: 0.3em;
  text-transform: uppercase; color: var(--softer-cream); margin-bottom: 0.4rem;
}
.lf-bundle-name {
  font-family: var(--display); font-weight: 800;
  font-size: clamp(1.4rem, 2.1vw, 1.7rem); line-height: 1.1; letter-spacing: -0.015em;
  color: var(--cream); margin-bottom: 0.8rem;
}
.lf-bundle-price {
  font-family: var(--display); font-weight: 800;
  font-size: clamp(1.5rem, 2.4vw, 1.9rem);
  letter-spacing: -0.02em; color: var(--gold);
  display: flex; flex-direction: column; gap: 0.2rem; margin-bottom: 0.6rem;
}
.lf-bundle-price span {
  font-family: var(--body); font-weight: 400; font-size: 0.78rem;
  color: var(--softer-cream); letter-spacing: 0.02em;
}
.lf-bundle-divider { height: 1px; background: var(--line-cream); margin: 0.8rem 0 1rem; }
.lf-bundle ul {
  list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column;
  gap: 0.6rem; font-size: 0.92rem; line-height: 1.55; flex: 1;
  color: var(--soft-cream); max-width: none;
}
.lf-bundle li { padding-left: 1rem; position: relative; color: var(--soft-cream); max-width: none; }
.lf-bundle li::before { content: "•"; position: absolute; left: 0; color: var(--gold); font-weight: 700; }
.lf-bundle li b { color: var(--cream); }
.lf-bundle-foot {
  margin-top: 1.2rem; padding-top: 0.9rem;
  border-top: 1px dashed var(--line-cream);
  font-family: var(--stamp); font-size: 0.66rem;
  letter-spacing: 0.22em; text-transform: uppercase; color: var(--gold);
}
.lf-byline {
  display: grid; grid-template-columns: 120px 1fr;
  gap: clamp(1.2rem, 3vw, 2rem); align-items: center;
  padding: clamp(1.4rem, 3vw, 2rem);
  background: rgba(255,246,227,0.03); border: 1px solid var(--line-cream);
  margin-bottom: 1.4rem;
}
.lf-byline img {
  width: 120px; height: 120px; border-radius: 50%;
  object-fit: cover; border: 2px solid var(--gold);
}
.lf-byline-name { font-family: var(--display); font-weight: 800; font-size: 1.3rem; color: var(--cream); margin-bottom: 0.2rem; }
.lf-byline-creds {
  font-family: var(--stamp); font-size: 0.66rem; letter-spacing: 0.22em;
  text-transform: uppercase; color: var(--gold); margin-bottom: 0.8rem;
}
.lf-byline-quote {
  font-family: var(--display); font-style: italic; font-weight: 300;
  font-size: 1rem; color: var(--soft-cream); margin-bottom: 0.8rem; max-width: 56ch;
}
.lf-byline-link {
  font-family: var(--stamp); font-size: 0.76rem;
  letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--gold); border-bottom: 1px solid var(--gold);
}
.lf-footnote { font-size: 0.82rem; line-height: 1.55; color: var(--softer-cream); max-width: 72ch; }
.lf-footnote b { color: var(--gold); }
@media (max-width: 880px) { .lf-bundle-grid { grid-template-columns: 1fr; } }
@media (max-width: 540px) {
  .lf-byline { grid-template-columns: 1fr; text-align: center; }
  .lf-byline img { margin: 0 auto; width: 100px; height: 100px; }
}

/* programme */
.programme { background: var(--paper); padding-block: clamp(5rem, 8vw, 8rem); }
.programme-head { max-width: 760px; margin-bottom: clamp(3rem, 5vw, 4rem); }
.prog-block { margin-top: clamp(2rem, 4vw, 3rem); }
.prog-block-title {
  font-family: var(--stamp); font-size: 0.82rem; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--label-ink); margin-bottom: 1.2rem; display: flex; align-items: center; gap: 1rem;
}
.prog-block-title::after { content: ""; flex: 1; height: 1px; background: var(--line-ink); }
.prog-list { display: flex; flex-direction: column; border-top: 1px solid var(--ink); }
.prog-row {
  display: grid; grid-template-columns: 80px 200px 1fr 1fr;
  gap: clamp(1rem, 2.5vw, 2rem); padding: clamp(1.4rem, 2.5vw, 2rem) 0;
  border-bottom: 1px solid var(--ink); align-items: center;
  transition: background 0.4s var(--ease-out);
}
.prog-row:hover { background: var(--cream); }
.prog-row:hover .prog-num { color: var(--heat); transform: translateX(6px); }
.prog-num {
  font-family: var(--display); font-style: italic; font-weight: 300;
  font-size: clamp(2.4rem, 3.5vw, 3.2rem); line-height: 0.85; color: var(--ink);
  transition: color 0.3s, transform 0.4s var(--ease-out);
}
.prog-meta {
  font-family: var(--stamp); font-size: 0.78rem;
  letter-spacing: 0.18em; text-transform: uppercase; color: var(--softer-ink); line-height: 1.5;
}
.prog-meta b { display: block; color: var(--ink); font-weight: 400; font-size: 0.88rem; margin-bottom: 0.2rem; }
.prog-theme {
  font-family: var(--display); font-weight: 800;
  font-size: clamp(1.2rem, 2vw, 1.5rem); letter-spacing: -0.015em; line-height: 1.1; color: var(--ink);
}
.prog-theme em { font-style: italic; font-weight: 300; color: var(--heat); }
.prog-sessions { font-size: 0.86rem; line-height: 1.55; color: var(--soft-ink); }
.prog-sessions .spot {
  display: block; margin-top: 0.4rem; font-family: var(--stamp); font-size: 0.76rem;
  letter-spacing: 0.18em; text-transform: uppercase; color: var(--label-ink);
}
.prog-sessions .spot::before { content: "★ "; color: var(--gold); }
@media (max-width: 1000px) {
  .prog-row { grid-template-columns: 60px 1fr; row-gap: 0.8rem; }
  .prog-theme { grid-column: 1 / -1; }
  .prog-sessions { grid-column: 1 / -1; }
}
.prog-footnote { margin-top: 1.4rem; font-size: 0.82rem; color: var(--softer-ink); }

/* about */
.about { background: var(--cream); padding-block: clamp(5rem, 8vw, 8rem); overflow: hidden; }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 6vw, 5rem); align-items: center; }
.about-body p { font-size: 1rem; line-height: 1.65; margin-bottom: 1rem; color: var(--soft-ink); }
.about-body p strong { color: var(--ink); }
.about-numbers {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 1rem; margin-top: 2rem; padding-top: 1.4rem; border-top: 1px solid var(--line-ink);
}
.about-num b {
  font-family: var(--display); font-weight: 800; font-size: clamp(1.3rem, 2vw, 1.8rem);
  display: block; line-height: 1; letter-spacing: -0.02em; color: var(--ink); margin-bottom: 0.2rem;
}
.about-num span { font-family: var(--stamp); font-size: 0.64rem; letter-spacing: 0.26em; text-transform: uppercase; color: var(--softer-ink); }
.about-frame {
  position: relative; aspect-ratio: 4/5;
  background: linear-gradient(135deg, var(--rhythm), var(--heat) 55%, var(--ember)); overflow: hidden;
}
.about-frame img { width: 100%; height: 100%; object-fit: cover; }
.about-frame-tag {
  position: absolute; bottom: 0; left: 0; right: 0;
  background: var(--ink); color: var(--cream); padding: 1.1rem 1.3rem;
  font-family: var(--display); font-style: italic; font-weight: 400; font-size: 1rem; line-height: 1.35;
  border-top: 4px solid var(--gold);
}
@media (max-width: 880px) {
  .about-grid { grid-template-columns: 1fr; }
  .about-frame { aspect-ratio: 4/3; }
}

/* CTA */
.cta {
  background: var(--ink); color: var(--cream);
  padding-block: clamp(5rem, 8vw, 8rem); position: relative; overflow: hidden;
}
.cta::before {
  content: ""; position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 50% 0%, rgba(255,184,0,0.16), transparent 55%),
    radial-gradient(ellipse at 80% 100%, rgba(230,52,98,0.16), transparent 50%);
  pointer-events: none;
}
.cta .wrap { position: relative; z-index: 1; }
.cta-head { text-align: center; margin-bottom: clamp(3rem, 5vw, 4rem); }
.cta-script {
  font-family: var(--display); font-style: italic; font-weight: 400;
  color: var(--gold); font-size: clamp(2.4rem, 5vw, 4rem); line-height: 1; letter-spacing: -0.015em;
  margin-bottom: 0.6rem;
}
.cta-title {
  font-family: var(--display); font-weight: 800;
  font-size: clamp(2.2rem, 5vw, 4rem); line-height: 0.95; letter-spacing: -0.025em;
  color: var(--cream); font-variation-settings: "opsz" 144;
}
.cta-title em { font-style: italic; font-weight: 300; color: var(--gold); }
.cta-lede {
  margin-top: 1.2rem; max-width: 60ch; margin-inline: auto;
  font-family: var(--display); font-weight: 400;
  font-size: clamp(1.05rem, 1.45vw, 1.25rem); line-height: 1.5; color: var(--soft-cream);
}
.cta-paths {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 1.1rem; max-width: 1100px; margin: 0 auto;
}
.cta-path {
  display: flex; flex-direction: column;
  background: transparent; border: 1px solid var(--line-cream);
  padding: clamp(1.6rem, 2.5vw, 2.2rem);
  transition: background 0.4s var(--ease-out), border-color 0.4s var(--ease-out), transform 0.4s var(--ease-out);
  color: var(--cream); position: relative;
}
.cta-path:hover { background: rgba(255,246,227,0.04); border-color: var(--gold); transform: translateY(-4px); }
.cta-path .num {
  font-family: var(--stamp); font-size: 0.76rem; letter-spacing: 0.18em;
  text-transform: uppercase; color: var(--gold); margin-bottom: 1rem;
}
.cta-path .title {
  font-family: var(--display); font-weight: 800;
  font-size: clamp(1.2rem, 1.7vw, 1.5rem); line-height: 1.1; letter-spacing: -0.01em;
  color: var(--cream); margin-bottom: 0.7rem;
}
.cta-path .sub { font-size: 0.88rem; line-height: 1.55; color: var(--soft-cream); flex: 1; margin-bottom: 1.4rem; }
.cta-path .arrow {
  font-family: var(--stamp); font-size: 0.78rem; letter-spacing: 0.18em;
  text-transform: uppercase; color: var(--gold);
  display: inline-flex; align-items: center; gap: 0.6rem;
  transition: color 0.2s, gap 0.3s var(--ease-out);
}
.cta-path:hover .arrow { color: var(--gold); gap: 1rem; }
.cta-contact {
  margin-top: clamp(3rem, 5vw, 4rem); border-top: 1px solid var(--line-cream); padding-top: 2rem;
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem;
}
.cta-contact > div em {
  font-style: normal; display: block; font-family: var(--stamp); font-size: 0.76rem;
  letter-spacing: 0.18em; text-transform: uppercase; color: var(--softer-cream); margin-bottom: 0.4rem;
}
.cta-contact > div b {
  font-family: var(--display); font-weight: 600; font-size: 1.05rem;
  color: var(--cream); letter-spacing: -0.01em;
}
@media (max-width: 880px) {
  .cta-paths { grid-template-columns: 1fr; }
  .cta-contact { grid-template-columns: 1fr; }
}

/* footer */
footer.foot {
  background: var(--ink); color: var(--softer-cream);
  padding: clamp(2.5rem, 4vw, 3.5rem) var(--gutter);
  border-top: 1px solid var(--line-cream); text-align: center;
}
footer.foot .display {
  font-family: var(--display); font-weight: 800;
  font-size: clamp(1.4rem, 2.2vw, 2rem); color: var(--cream);
}
footer.foot .display em { font-style: italic; font-weight: 300; color: var(--gold); }
footer.foot .star { color: var(--gold); margin: 0 0.4em; }
footer.foot .credit {
  margin-top: 1.4rem; font-family: var(--stamp); font-size: 0.76rem;
  letter-spacing: 0.18em; text-transform: uppercase; color: var(--softer-cream);
}
footer.foot .foot-links {
  display: flex; flex-wrap: wrap; justify-content: center; gap: 0.5rem 1.4rem;
  margin-top: 1.2rem;
}
footer.foot .foot-links a {
  font-family: var(--stamp); font-size: 0.76rem; letter-spacing: 0.16em;
  text-transform: uppercase; color: var(--softer-cream);
  border-bottom: 1px solid transparent;
  transition: color 0.2s, border-color 0.2s;
}
footer.foot .foot-links a:hover { color: var(--gold); border-bottom-color: var(--gold); }

/* urgency strip */
.urgency {
  background: var(--gold); color: var(--ink);
  padding: 1.2rem var(--gutter);
  display: flex; flex-wrap: wrap; justify-content: center; gap: 1.4rem 2rem;
  align-items: center; text-align: center;
  font-family: var(--body); font-weight: 600; font-size: 0.92rem;
  border-block: 2px solid var(--ink);
}
.urgency-pill {
  background: var(--ink); color: var(--gold);
  padding: 0.32rem 0.85rem; font-family: var(--stamp); font-size: 0.66rem;
  letter-spacing: 0.3em; text-transform: uppercase;
}
.urgency b { font-weight: 800; }

/* ============================================================
   PARTNER ROLE CHIPS
   ============================================================ */
.role-chips { display: flex; flex-wrap: wrap; gap: 0.4rem; margin-top: 1rem; }
.role-chip {
  font-family: var(--stamp); font-size: 0.6rem; letter-spacing: 0.22em;
  text-transform: uppercase; padding: 0.25rem 0.65rem;
  border: 1px solid; font-weight: 600; white-space: nowrap;
}
.role-chip--attend  { background: rgba(45,27,105,0.12); color: var(--rhythm); border-color: rgba(45,27,105,0.3); }
.role-chip--speak   { background: rgba(230,52,98,0.10); color: var(--heat);   border-color: rgba(230,52,98,0.3); }
.role-chip--sponsor { background: rgba(255,184,0,0.12); color: #8a6000;       border-color: rgba(255,184,0,0.4); }
.role-chip--promote { background: rgba(255,107,53,0.10); color: var(--ember); border-color: rgba(255,107,53,0.3); }
.role-chip--recruit { background: rgba(10,14,39,0.08);  color: var(--ink);   border-color: rgba(10,14,39,0.2); }
.role-chip--enable  { background: rgba(255,184,0,0.18); color: #6a4800;      border-color: rgba(255,184,0,0.5); }

/* dark context role chips */
.dark .role-chip--attend  { background: rgba(255,246,227,0.07); color: #b8a6f0; border-color: rgba(184,166,240,0.35); }
.dark .role-chip--speak   { background: rgba(230,52,98,0.15);   color: #ff7a9a; border-color: rgba(230,52,98,0.4); }
.dark .role-chip--sponsor { background: rgba(255,184,0,0.14);   color: var(--gold); border-color: rgba(255,184,0,0.4); }
.dark .role-chip--promote { background: rgba(255,107,53,0.14);  color: var(--ember); border-color: rgba(255,107,53,0.4); }
.dark .role-chip--recruit { background: rgba(255,246,227,0.06); color: var(--soft-cream); border-color: var(--line-cream); }
.dark .role-chip--enable  { background: rgba(255,184,0,0.16);   color: var(--gold); border-color: rgba(255,184,0,0.45); }

/* ============================================================
   PROMOTION SURFACE CHIPS
   ============================================================ */
.promo-chips { display: flex; flex-wrap: wrap; gap: 0.35rem; margin-top: 0.7rem; }
.promo-chip {
  font-family: var(--stamp); font-size: 0.58rem; letter-spacing: 0.18em;
  text-transform: uppercase; padding: 0.22rem 0.55rem;
  border: 1px solid var(--line-ink); color: var(--softer-ink);
  background: rgba(10,14,39,0.04);
}
.dark .promo-chip { border-color: var(--line-cream); color: var(--softer-cream); background: rgba(255,246,227,0.04); }

/* ============================================================
   SESSION CARDS
   ============================================================ */
.session-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.1rem;
}
.session-card {
  background: var(--paper); border: 1px solid var(--line-ink);
  display: flex; flex-direction: column;
  transition: transform 0.4s var(--ease-out), box-shadow 0.4s var(--ease-out), border-color 0.3s;
  position: relative; overflow: hidden;
}
.session-card::before {
  content: ""; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: var(--track-color, var(--ember));
}
.session-card:hover { transform: translateY(-4px); box-shadow: 0 16px 40px -16px rgba(10,14,39,0.18); border-color: var(--softer-ink); }
.session-card-inner { padding: clamp(1.4rem, 2.5vw, 1.8rem); display: flex; flex-direction: column; flex: 1; }
.session-card-track {
  font-family: var(--stamp); font-size: 0.6rem; letter-spacing: 0.3em;
  text-transform: uppercase; color: var(--track-color, var(--ember));
  margin-bottom: 0.5rem;
}
.session-card-title {
  font-family: var(--display); font-weight: 800;
  font-size: clamp(1.1rem, 1.5vw, 1.3rem); line-height: 1.1; letter-spacing: -0.01em;
  color: var(--ink); margin-bottom: 0.5rem;
}
.session-card-time {
  font-family: var(--stamp); font-size: 0.76rem; letter-spacing: 0.16em;
  text-transform: uppercase; color: var(--softer-ink); margin-bottom: 0.8rem;
}
.session-card-outcome {
  font-size: 0.9rem; line-height: 1.55; color: var(--soft-ink);
  flex: 1; margin-bottom: 1rem;
}
.session-card-footer {
  border-top: 1px dashed var(--line-ink); padding-top: 0.9rem; margin-top: auto;
}
.session-card-link {
  font-family: var(--stamp); font-size: 0.76rem; letter-spacing: 0.16em;
  text-transform: uppercase; color: var(--label-ink);
  display: inline-flex; align-items: center; gap: 0.5rem;
  transition: color 0.2s, gap 0.3s var(--ease-out);
}
.session-card-link:hover { color: var(--ink); gap: 0.9rem; }

/* dark session cards */
.dark .session-card { background: rgba(255,246,227,0.04); border-color: var(--line-cream); }
.dark .session-card:hover { border-color: var(--gold); box-shadow: 0 16px 40px -16px rgba(0,0,0,0.4); }
.dark .session-card-title { color: var(--cream); }
.dark .session-card-time { color: var(--softer-cream); }
.dark .session-card-outcome { color: var(--soft-cream); }
.dark .session-card-footer { border-top-color: var(--line-cream); }

/* track colors */
.track--leadership  { --track-color: #2D1B69; }
.track--sdg4        { --track-color: #1A7A4A; }
.track--ai-skills   { --track-color: #7B2FBE; }
.track--career      { --track-color: #FF6B35; }
.track--partner     { --track-color: #FFB800; }
.track--culture     { --track-color: #aaa; }

/* ============================================================
   PARTNER BADGE LABELS (agenda/session)
   ============================================================ */
.partner-badge {
  display: inline-flex; align-items: center; gap: 0.4rem;
  font-family: var(--stamp); font-size: 0.58rem; letter-spacing: 0.22em;
  text-transform: uppercase; padding: 0.22rem 0.6rem;
  border: 1px solid; font-weight: 700;
}
.badge--partner  { color: var(--gold);   border-color: rgba(255,184,0,0.6); background: rgba(255,184,0,0.12); }
.badge--observe  { color: var(--softer-ink); border-color: var(--line-ink);    background: rgba(10,14,39,0.04); }
.badge--internal { color: var(--softer-ink); border-color: var(--line-ink);    background: transparent; opacity: 0.6; }

.dark .badge--partner  { background: rgba(255,184,0,0.14); border-color: rgba(255,184,0,0.4); color: var(--gold); }
.dark .badge--observe  { background: rgba(255,246,227,0.05); border-color: var(--line-cream); color: var(--softer-cream); }

/* ============================================================
   AGENDA BLOCKS
   ============================================================ */
.agenda-wrapper { display: flex; flex-direction: column; gap: 2.5rem; }
.agenda-period-title {
  font-family: var(--stamp); font-size: 0.82rem; letter-spacing: 0.2em;
  text-transform: uppercase; color: var(--label-ink); margin-bottom: 1.4rem;
  display: flex; align-items: center; gap: 1rem;
}
.agenda-period-title::after { content: ""; flex: 1; height: 1px; background: var(--line-ink); }
.agenda-days { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0.8rem; }
.agenda-weeks { display: flex; flex-direction: column; gap: 0.6rem; }
.agenda-day-col { display: flex; flex-direction: column; gap: 0.6rem; }
.agenda-day-header {
  font-family: var(--stamp); font-size: 0.76rem; letter-spacing: 0.18em;
  text-transform: uppercase; color: var(--softer-ink); padding-bottom: 0.6rem;
  border-bottom: 1px solid var(--line-ink); margin-bottom: 0.4rem;
}
.agenda-block {
  padding: 0.85rem 0.9rem; border: 1px solid var(--line-ink);
  background: var(--paper); cursor: pointer; position: relative;
  transition: background 0.3s, border-color 0.3s;
  border-left: 3px solid var(--block-color, var(--line-ink));
}
.agenda-block.partner-space { border-left-color: var(--gold); }
.agenda-block.observe-space { border-left-color: #aaa; }
.agenda-block.internal-space { opacity: 0.5; pointer-events: none; }
.agenda-block:hover { background: var(--cream); border-color: var(--softer-ink); }
.agenda-block-label {
  font-family: var(--stamp); font-size: 0.72rem; letter-spacing: 0.16em;
  text-transform: uppercase; color: var(--softer-ink); margin-bottom: 0.3rem;
}
.agenda-block-title {
  font-family: var(--display); font-weight: 700;
  font-size: 0.9rem; line-height: 1.2; color: var(--ink); letter-spacing: -0.01em;
}
.agenda-block .partner-badge { margin-top: 0.5rem; }

/* ============================================================
   FAQ ACCORDION
   ============================================================ */
.faq-list { display: flex; flex-direction: column; border-top: 1px solid var(--line-ink); }
.faq-item { border-bottom: 1px solid var(--line-ink); }
.faq-q {
  width: 100%; display: flex; justify-content: space-between; align-items: center;
  gap: 1rem; padding: 1.2rem 0; background: none; border: 0;
  font-family: var(--display); font-weight: 700;
  font-size: clamp(1rem, 1.4vw, 1.2rem); line-height: 1.2; letter-spacing: -0.01em;
  color: var(--ink); text-align: left; cursor: none;
  transition: color 0.2s;
}
.faq-q:hover { color: var(--heat); }
.faq-q .faq-caret {
  flex-shrink: 0; width: 22px; height: 22px; border: 1px solid var(--line-ink);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.75rem; transition: transform 0.3s var(--ease-out), border-color 0.2s;
  color: var(--softer-ink);
}
.faq-item.open .faq-q .faq-caret { transform: rotate(180deg); border-color: var(--ink); color: var(--ink); }
.faq-a {
  max-height: 0; overflow: hidden;
  transition: max-height 0.45s var(--ease-out), padding 0.3s;
  font-size: 0.96rem; line-height: 1.65; color: var(--soft-ink);
}
.faq-item.open .faq-a { max-height: 600px; padding-bottom: 1.4rem; }

/* ============================================================
   PAGE HEADER (sub-pages)
   ============================================================ */
.page-header {
  background: var(--ink); color: var(--cream);
  padding: clamp(5rem, 9vw, 9rem) var(--gutter) clamp(3rem, 5vw, 5rem);
  position: relative; overflow: hidden;
}
.page-header::before {
  content: ""; position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 60% 40% at 20% 0%, rgba(45,27,105,0.5), transparent 60%),
    radial-gradient(ellipse 50% 30% at 85% 100%, rgba(230,52,98,0.15), transparent 60%);
  pointer-events: none;
}
.page-header .wrap { position: relative; z-index: 1; }
.page-header-back {
  display: inline-flex; align-items: center; gap: 0.5rem;
  font-family: var(--stamp); font-size: 0.66rem; letter-spacing: 0.22em;
  text-transform: uppercase; color: var(--softer-cream);
  border-bottom: 1px solid transparent;
  transition: color 0.2s, border-color 0.2s; margin-bottom: 1.4rem;
}
.page-header-back:hover { color: var(--gold); border-bottom-color: var(--gold); }
.page-header-eyebrow { margin-bottom: 1rem; }
.page-header-title {
  font-family: var(--display); font-weight: 900;
  font-size: clamp(2.4rem, 6vw, 5.5rem);
  line-height: 0.93; letter-spacing: -0.03em;
  color: var(--cream); max-width: 20ch;
  font-variation-settings: "opsz" 144;
}
.page-header-title em { font-style: italic; font-weight: 300; color: var(--gold); }
.page-header-lede {
  margin-top: 1.4rem; max-width: 58ch;
  font-family: var(--display); font-weight: 400;
  font-size: clamp(1rem, 1.4vw, 1.22rem);
  line-height: 1.55; color: var(--soft-cream);
}
.page-header-meta {
  margin-top: 1.6rem; display: flex; flex-wrap: wrap; gap: 0.6rem;
}

/* ============================================================
   SOCIAL PROOF (reach stats)
   ============================================================ */
.social-proof { background: var(--cream); padding-block: clamp(4rem, 7vw, 7rem); border-block: 1px solid var(--line-ink); }
.social-proof-head { max-width: 760px; margin-bottom: clamp(2.5rem, 4vw, 4rem); }
.social-stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: clamp(1.5rem, 3vw, 2.5rem); margin-bottom: clamp(2rem, 4vw, 3.5rem); }
.social-stat { border-left: 1px solid var(--line-ink); padding-left: 1.2rem; }
.social-stat:first-child { border-left: 0; padding-left: 0; }
.social-num {
  font-family: var(--display); font-weight: 900;
  font-size: clamp(2.6rem, 5vw, 4.2rem);
  line-height: 0.95; letter-spacing: -0.035em;
  color: var(--ink); margin-bottom: 0.5rem;
  font-variation-settings: "opsz" 144;
}
.social-num.heat { color: var(--heat); }
.social-num.gold { color: var(--gold); }
.social-num.ember { color: var(--ember); }
.social-label { font-size: 0.92rem; line-height: 1.55; color: var(--soft-ink); max-width: 28ch; }
@media (max-width: 880px) {
  .social-stats { grid-template-columns: 1fr 1fr; }
  .social-stat:nth-child(3) { border-left: 0; padding-left: 0; }
  .proof-grid { grid-template-columns: 1fr; }
}
@media (max-width: 540px) {
  .social-stats { grid-template-columns: 1fr; }
  .social-stat { border-left: 0; padding-left: 0; border-top: 1px solid var(--line-ink); padding-top: 1.2rem; }
  .social-stat:first-child { border-top: 0; padding-top: 0; }
}

/* ============================================================
   CALLOUT / HIGHLIGHT BOX
   ============================================================ */
.callout {
  background: rgba(255,184,0,0.08); border-left: 3px solid var(--gold);
  padding: 1.2rem 1.4rem; margin-block: 1.4rem;
  font-size: 0.96rem; line-height: 1.6; color: var(--ink);
}
.callout.dark { background: rgba(255,184,0,0.10); color: var(--cream); border-left-color: var(--gold); }
.callout b { color: var(--ink); font-weight: 600; }
.callout.dark b { color: var(--gold); }

/* ============================================================
   WORKSHOP CARDS (LearnFast 12-arc)
   ============================================================ */
.workshop-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); gap: 1rem; }
.workshop-card {
  background: rgba(255,246,227,0.04); border: 1px solid var(--line-cream);
  padding: 1.4rem 1.4rem 1.2rem; display: flex; flex-direction: column;
  transition: border-color 0.3s, transform 0.4s var(--ease-out);
}
.workshop-card:hover { border-color: var(--gold); transform: translateY(-3px); }
.workshop-num {
  font-family: var(--stamp); font-size: 0.64rem; letter-spacing: 0.3em;
  text-transform: uppercase; color: var(--gold); margin-bottom: 0.6rem;
}
.workshop-title {
  font-family: var(--display); font-weight: 800;
  font-size: clamp(1rem, 1.4vw, 1.2rem); line-height: 1.15; letter-spacing: -0.01em;
  color: var(--cream); margin-bottom: 0.5rem;
}
.workshop-phase {
  font-family: var(--stamp); font-size: 0.6rem; letter-spacing: 0.22em;
  text-transform: uppercase; color: var(--softer-cream); margin-bottom: 0.5rem;
}
.workshop-desc { font-size: 0.88rem; line-height: 1.55; color: var(--soft-cream); flex: 1; }
.workshop-output {
  margin-top: 0.9rem; padding-top: 0.7rem;
  border-top: 1px dashed var(--line-cream);
  font-family: var(--stamp); font-size: 0.6rem; letter-spacing: 0.2em;
  text-transform: uppercase; color: var(--gold);
}

/* ============================================================
   TOOL CARDS
   ============================================================ */
.tool-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); gap: 1rem; }
.tool-card {
  background: var(--paper); border: 1px solid var(--line-ink);
  padding: 1.4rem; display: flex; flex-direction: column;
  transition: border-color 0.3s, transform 0.3s var(--ease-out);
}
.tool-card:hover { border-color: var(--ink); transform: translateY(-3px); }
.tool-name {
  font-family: var(--display); font-weight: 800;
  font-size: 1.15rem; letter-spacing: -0.01em; color: var(--ink);
  margin-bottom: 0.3rem;
}
.tool-category {
  font-family: var(--stamp); font-size: 0.76rem; letter-spacing: 0.16em;
  text-transform: uppercase; color: var(--label-ink); margin-bottom: 0.7rem;
}
.tool-desc { font-size: 0.9rem; line-height: 1.55; color: var(--soft-ink); flex: 1; margin-bottom: 0.8rem; }
.tool-revops {
  border-top: 1px dashed var(--line-ink); padding-top: 0.7rem;
  font-family: var(--stamp); font-size: 0.6rem; letter-spacing: 0.2em;
  text-transform: uppercase; color: var(--softer-ink);
}

/* ============================================================
   SESSION DETAIL PAGE
   ============================================================ */
.session-detail-meta {
  display: flex; flex-wrap: wrap; gap: 0.5rem;
  margin-bottom: 1.2rem;
}
.session-why {
  background: rgba(255,246,227,0.04); border: 1px solid var(--line-cream);
  padding: 1.4rem; margin-top: 1.6rem;
}
.session-why h4 {
  font-family: var(--stamp); font-size: 0.68rem; letter-spacing: 0.22em;
  text-transform: uppercase; color: var(--gold); margin-bottom: 0.7rem;
}

/* ============================================================
   PATH CARDS (partner goal types)
   ============================================================ */
.path-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); gap: 1rem; }
.path-card {
  background: var(--cream); border: 1px solid var(--line-ink);
  padding: clamp(1.4rem, 2.5vw, 1.8rem);
  transition: transform 0.4s var(--ease-out), border-color 0.3s;
}
.path-card:hover { transform: translateY(-3px); border-color: var(--softer-ink); }
.path-card-icon {
  font-size: 1.5rem; margin-bottom: 0.6rem; line-height: 1;
}
.path-card-role {
  font-family: var(--stamp); font-size: 0.76rem; letter-spacing: 0.16em;
  text-transform: uppercase; color: var(--label-ink); margin-bottom: 0.4rem;
}
.path-card-title {
  font-family: var(--display); font-weight: 800;
  font-size: clamp(1.1rem, 1.5vw, 1.3rem); line-height: 1.1; letter-spacing: -0.01em;
  color: var(--ink); margin-bottom: 0.6rem;
}
.path-card-body { font-size: 0.9rem; line-height: 1.55; color: var(--soft-ink); }

/* ============================================================
   INLINE CTA STRIP
   ============================================================ */
.cta-strip {
  background: var(--ink); color: var(--cream);
  padding: clamp(2rem, 4vw, 3rem) var(--gutter);
  display: flex; flex-wrap: wrap; align-items: center;
  justify-content: space-between; gap: 1.4rem;
  border-block: 1px solid var(--line-cream);
}
.cta-strip-text { max-width: 56ch; }
.cta-strip-text h3 {
  font-family: var(--display); font-weight: 800;
  font-size: clamp(1.3rem, 2vw, 1.7rem); line-height: 1.05; letter-spacing: -0.01em;
  color: var(--cream); margin-bottom: 0.4rem;
}
.cta-strip-text p { font-size: 0.96rem; line-height: 1.55; color: var(--soft-cream); }
.cta-strip-actions { display: flex; gap: 0.7rem; flex-wrap: wrap; }

/* ============================================================
   PRINT
   ============================================================ */
@media print {
  body { font-size: 11pt; cursor: auto; background: #fff !important; color: #111 !important; }
  .cursor-dot, .spine, .marquee { display: none !important; }
  main { margin-left: 0; }
  .hero, .combo, .cta, footer.foot { background: #fff !important; color: #111 !important; }
  .hero::before, .combo::before, .cta::before { display: none !important; }
  section, .ticket { break-inside: avoid; }
  a { color: #111 !important; }
}

@media (max-width: 480px) { :root { --spine: 28px; } }


/* =========================================================
   SUBPAGE / SESSION-BRIEF SHARED STYLES
   These rules previously lived in each subpage's inline
   <style> block. Centralised 2026-05-22.
   ========================================================= */

.topnav.always-show { transform: translateY(0); }

.page-hero {
  background: var(--ink);
  color: var(--cream);
  padding: clamp(7rem, 12vw, 10rem) var(--gutter) clamp(3rem, 5vw, 4.5rem);
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 85% 55% at 50% 0%, var(--page-glow-top, rgba(45,27,105,0.5)), transparent 60%),
    radial-gradient(ellipse 45% 30% at 90% 100%, var(--page-glow-bottom, rgba(230,52,98,0.18)), transparent 60%);
  pointer-events: none;
}
.page-hero .wrap, .page-hero-inner { position: relative; z-index: 1; }

.page-kicker { color: var(--gold); margin-bottom: 1rem; }
.page-title  { color: var(--cream); max-width: 14ch; }
.page-intro  { color: var(--soft-cream); max-width: 62ch; margin-top: 1.2rem; font-weight: 400; }

.page-actions { display:flex; flex-wrap:wrap; gap:0.9rem; margin-top:1.4rem; }
.page-meta    { display:grid; grid-template-columns:repeat(auto-fit,minmax(180px,1fr)); gap:0.9rem; margin-top:2rem; }

.meta-card, .panel, .note-card {
  background: rgba(255,255,255,0.82);
  border: 1px solid var(--line-ink);
  border-radius: 1.2rem;
  padding: 1.2rem;
  box-shadow: 0 14px 30px -24px rgba(10,14,39,0.25);
}
.dark-panel {
  background: rgba(255,246,227,0.08);
  border: 1px solid var(--line-cream);
  border-radius: 1.2rem;
  padding: 1.2rem;
}

.panel-grid { display:grid; grid-template-columns:repeat(auto-fit,minmax(240px,1fr)); gap:1rem; }
.split-grid { display:grid; grid-template-columns:1.2fr 0.8fr; gap:1.2rem; }

.list-tight { padding-left: 1.1rem; color: var(--soft-ink); }
.list-tight li { margin-bottom: 0.55rem; line-height: 1.55; }
.dark .list-tight, .dark .list-tight li { color: var(--soft-cream); }

.mini-label {
  font-family: var(--stamp);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.76rem;
  font-weight: 600;
  color: var(--label-ink);
  display: block;
  margin-bottom: 0.55rem;
}
.dark .mini-label, .dark-panel .mini-label { color: var(--gold); }

.stat-row  { display:grid; grid-template-columns:repeat(auto-fit,minmax(140px,1fr)); gap:0.8rem; }
.stat-pill { background: var(--cream); border:1px solid var(--line-ink); border-radius:999px; padding:0.8rem 1rem; font-size:0.92rem; }
.dark .stat-pill { background: rgba(255,246,227,0.1); border-color: var(--line-cream); color: var(--cream); }

.callout      { border-left: 4px solid var(--gold); padding-left: 1rem; }
.consent-note { background: rgba(230,52,98,0.08); border-left: 4px solid var(--ember); padding: 1.1rem 1.2rem; border-radius: 0 1rem 1rem 0; margin-top: 1.4rem; }
.consent-note .mini-label { color: var(--ember); }

.route-links   { display:flex; flex-wrap:wrap; gap:0.7rem; margin-top:1.2rem; }
.route-links a { border:1px solid var(--line-ink); border-radius:999px; padding:0.55rem 0.9rem; font-size:0.86rem; background: rgba(255,255,255,0.78); }

.table-lite { display:grid; gap:0.8rem; }
.table-row  { display:grid; grid-template-columns:170px 1fr; gap:1rem; border-top:1px solid var(--line-ink); padding-top:0.9rem; }
.price      { font-family: var(--display); font-size: 2rem; line-height:1; color: var(--ink); }

.sticky-summary { position: sticky; top: 90px; }
.quote-line     { font-family: var(--display); font-size: clamp(1.35rem, 2vw, 1.8rem); line-height:1.25; }

@media (max-width: 900px) {
  .split-grid, .table-row { grid-template-columns:1fr; }
  .sticky-summary { position: static; }
}


.learnfast-offers-dark {
  background: var(--ink);
  color: var(--cream);
}
.learnfast-offers-dark .workshop-card,
.learnfast-offers-dark .offer-card {
  color: var(--cream);
  background: rgba(255,246,227,0.05);
  border: 1px solid var(--line-cream);
}
.learnfast-offers-dark .offer-card { text-decoration: none; }
.learnfast-offers-dark .workshop-title { color: var(--cream); }
.learnfast-offers-dark .workshop-desc { color: var(--soft-cream); }
.learnfast-offers-dark .mini-label,
.learnfast-offers-dark .workshop-num,
.learnfast-offers-dark .workshop-output { color: var(--gold); }
.offer-card { display:flex; }
.offer-card:hover { border-color: var(--gold); transform: translateY(-3px); }
.redirect-shell { min-height: 100vh; display:flex; align-items:center; background: var(--paper); }

/* ============================================================
   P0/P1 LAYOUT + AFFORDANCE FIXES (added 2026-05-22)
   Restores 9 missing classes referenced in HTML, plus button
   affordance polish across the site.
   ============================================================ */

/* ── Phase headers on live-workshops ─────────────────────── */
.phase-label {
  display: block;
  font-family: var(--stamp);
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 2.4rem 0 0.9rem;
}

/* ── Workshop card body (Problem/Build/Output rows) ─────── */
.ws-body {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  font-size: 0.88rem;
  line-height: 1.55;
  color: var(--soft-cream);
  margin-top: 0.5rem;
}
.ws-body p { margin: 0; }
.ws-body .lbl {
  display: inline-block;
  font-family: var(--stamp);
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-right: 0.55rem;
}

/* ── 5-phase arc grid ────────────────────────────────────── */
.arc-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
  gap: 1rem;
  margin-top: 1.8rem;
}
.arc-step {
  background: rgba(255, 246, 227, 0.05);
  border: 1px solid var(--line-cream);
  padding: 1.3rem 1.2rem;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}
.arc-step .num {
  font-family: var(--display);
  font-weight: 800;
  font-size: 1.7rem;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 0.3rem;
}
.arc-step h4 {
  font-family: var(--display);
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--cream);
  margin: 0;
}
.arc-step p {
  font-size: 0.86rem;
  line-height: 1.55;
  color: var(--soft-cream);
  margin: 0;
}

/* ── 'Who qualifies' 3-up grid ───────────────────────────── */
.qualify-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.1rem;
  margin-top: 1.6rem;
}

/* ── Tool note (italic disclaimer) ───────────────────────── */
.tool-note {
  margin-top: 1.6rem;
  font-size: 0.82rem;
  line-height: 1.55;
  color: var(--softer-cream);
  font-style: italic;
  max-width: 64ch;
}

/* ── Bottom CTA band (live-workshops finale) ─────────────── */
.cta-band {
  background: var(--ink);
  color: var(--cream);
  padding: clamp(3rem, 6vw, 5rem) 0;
  text-align: center;
}
.cta-band .eyebrow { color: var(--gold); }
.cta-band h2 { color: var(--cream); }
.cta-band .lede {
  color: var(--soft-cream);
  max-width: 60ch;
  margin: 1.1rem auto 1.7rem;
}
.cta-band .page-actions { justify-content: center; }

/* ── Workshop cards: cream text in any .dark context ─────── */
.dark .workshop-card,
.dark .workshop-title,
.dark .workshop-output {
  color: var(--cream);
}
.dark .workshop-desc {
  color: var(--soft-cream);
}

/* ── Partners ticket grid: equal-width modifier ──────────── */
.ticket-grid--equal {
  grid-template-columns: repeat(4, 1fr);
}
/* alias: ticket-kicker → ticket-rank, so existing partners HTML works  */
.ticket-kicker {
  font-family: var(--stamp);
  font-size: 0.66rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
}

/* ── .route-links: actually look clickable (affordance) ──── */
.route-links a {
  color: var(--ink);
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  text-decoration: none;
  transition: background .25s var(--ease-out), color .25s var(--ease-out), border-color .25s var(--ease-out), transform .25s var(--ease-out);
}
.route-links a::after {
  content: "→";
  color: var(--gold);
  font-weight: 600;
  transition: transform .25s var(--ease-out);
}
.route-links a:hover,
.route-links a:focus-visible {
  background: var(--ink);
  color: var(--cream);
  border-color: var(--ink);
  transform: translateY(-1px);
}
.route-links a:hover::after,
.route-links a:focus-visible::after {
  transform: translateX(3px);
  color: var(--gold);
}
.dark .route-links a,
.cta-band .route-links a,
section.block.dark .route-links a {
  color: var(--cream);
  background: rgba(255, 246, 227, 0.06);
  border-color: var(--line-cream);
}
.dark .route-links a:hover,
.dark .route-links a:focus-visible {
  background: var(--gold);
  color: var(--ink);
  border-color: var(--gold);
}
.dark .route-links a:hover::after { color: var(--ink); }

/* ── Path cards: hover-color signal beyond translateY ────── */
.path-card {
  transition: transform .25s var(--ease-out), border-color .25s var(--ease-out), box-shadow .25s var(--ease-out);
}
.path-card:hover,
.path-card:focus-within {
  border-color: var(--gold);
  box-shadow: 0 6px 24px rgba(212, 165, 51, 0.18);
}

/* ── Anchor (in-page) button modifier — use ↓ instead of → ─ */
.btn.btn--anchor .arr::before { content: "↓"; }
.btn.btn--anchor .arr { transform: none; }
.btn.btn--anchor:hover .arr { transform: translateY(2px); }

/* ── External-link cue for buttons that target="_blank" ──── */
.btn[target="_blank"] .arr::after { content: " ↗"; font-size: 0.85em; opacity: 0.9; }

/* end P0/P1 layout + affordance fixes */

/* ============================================================
   P3.2/P3.3: Video FAQ grid + Sources citation list
   (added 2026-05-22)
   ============================================================ */

.video-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.6rem;
  margin-top: 2rem;
}
.video-card {
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}
.video-embed {
  aspect-ratio: 16 / 9;
  background: var(--ink);
  border: 1px solid var(--line-ink);
  overflow: hidden;
  border-radius: 6px;
}
.video-embed iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}
.video-embed-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--soft-cream);
  font-size: 0.85rem;
  font-style: italic;
  padding: 1rem;
  text-align: center;
}
.video-card h3 {
  font-family: var(--display);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--ink);
  margin: 0;
}
.video-card p {
  font-size: 0.88rem;
  line-height: 1.5;
  color: var(--soft-ink);
  margin: 0;
}

.sources-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.4rem;
  margin-top: 2rem;
}
.source-card {
  background: rgba(10, 14, 39, 0.03);
  border: 1px solid var(--line-ink);
  padding: 1.2rem 1.3rem;
  border-radius: 4px;
}
.source-card h3 {
  font-family: var(--display);
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--ink);
  margin: 0 0 0.8rem;
  text-transform: uppercase;
}
.source-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}
.source-card li {
  font-size: 0.86rem;
  line-height: 1.55;
}
.source-card a {
  color: var(--ink);
  border-bottom: 1px solid rgba(212, 165, 51, 0.5);
  text-decoration: none;
  transition: border-color .2s ease, color .2s ease;
}
.source-card a:hover {
  color: var(--gold);
  border-bottom-color: var(--gold);
}
.source-card .source-cite {
  display: block;
  font-size: 0.76rem;
  color: var(--softer-ink);
  margin-top: 0.2rem;
  font-style: italic;
}

/* end P3.2/P3.3 video + sources */

/* ============================================================
   HOMEPAGE REDESIGN v2 — conversion + atmosphere
   Added 2026-05-22
   ============================================================ */

/* ── Hero gradient mesh — slow atmospheric movement ────── */
.hero {
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 12% 18%, rgba(255, 184, 0, 0.13), transparent 65%),
    radial-gradient(ellipse 50% 60% at 92% 80%, rgba(45, 27, 105, 0.10), transparent 60%),
    radial-gradient(ellipse 40% 40% at 75% 18%, rgba(230, 52, 98, 0.06), transparent 70%);
  pointer-events: none;
  z-index: 0;
  animation: heroMeshDrift 22s ease-in-out infinite alternate;
}
.hero > * { position: relative; z-index: 1; }
@keyframes heroMeshDrift {
  0%   { transform: translate3d(0, 0, 0) scale(1); }
  100% { transform: translate3d(-2%, 1%, 0) scale(1.04); }
}

/* ── Hero CTA: one primary button + secondary text link ── */
.hero-cta .btn-secondary-link {
  display: inline-flex;
  align-items: center;
  gap: var(--s-2);
  color: var(--soft-cream);
  font-family: var(--stamp);
  font-size: var(--t-sm);
  letter-spacing: 0.04em;
  text-decoration: none;
  border-bottom: 1px solid transparent;
  padding-bottom: 2px;
  transition: color .25s var(--ease-out), border-color .25s var(--ease-out);
}
.hero-cta .btn-secondary-link:hover,
.hero-cta .btn-secondary-link:focus-visible {
  color: var(--gold);
  border-bottom-color: var(--gold);
}

/* ── Trusted-by strip ──────────────────────────────────── */
.proof-strip {
  background: var(--paper);
  border-top: 1px solid var(--line-ink);
  border-bottom: 1px solid var(--line-ink);
  padding: var(--s-5) 0;
}
.proof-strip-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--s-4);
  text-align: center;
}
.proof-strip .proof-label {
  font-family: var(--stamp);
  font-size: var(--t-xs);
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--softer-ink);
}
.proof-strip .proof-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: var(--s-6);
}
.proof-strip .proof-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 130px;
}
.proof-strip .proof-stat-num {
  font-family: var(--display);
  font-weight: 800;
  font-size: var(--t-2xl);
  line-height: 1;
  color: var(--ink);
  letter-spacing: -0.02em;
}
.proof-strip .proof-stat-label {
  font-family: var(--stamp);
  font-size: var(--t-xs);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--softer-ink);
  margin-top: var(--s-2);
}
.proof-strip .proof-divider {
  width: 1px;
  height: 36px;
  background: var(--line-ink);
}
@media (max-width: 640px) {
  .proof-strip .proof-divider { display: none; }
  .proof-strip .proof-row { gap: var(--s-5); }
}

/* ── Sticky mobile CTA: appears on scroll past hero ────── */
.sticky-mobile-cta {
  position: fixed;
  bottom: var(--s-4);
  left: var(--s-4);
  right: calc(var(--s-4) + 80px); /* leaves room for chatbot button */
  z-index: var(--z-overlay);
  background: var(--ink);
  color: var(--cream);
  padding: var(--s-3) var(--s-4);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--s-3);
  font-family: var(--stamp);
  font-size: var(--t-sm);
  text-decoration: none;
  transform: translateY(120%);
  opacity: 0;
  transition: transform .35s var(--ease-out), opacity .35s var(--ease-out);
}
.sticky-mobile-cta.visible {
  transform: translateY(0);
  opacity: 1;
}
.sticky-mobile-cta .label { line-height: 1.2; }
.sticky-mobile-cta .label small {
  display: block;
  font-size: var(--t-xs);
  color: var(--softer-cream);
  margin-top: 2px;
  letter-spacing: 0.04em;
}
.sticky-mobile-cta .arr {
  color: var(--gold);
  font-size: var(--t-lg);
}
.sticky-mobile-cta:hover,
.sticky-mobile-cta:focus-visible {
  background: var(--gold);
  color: var(--ink);
}
.sticky-mobile-cta:hover .arr,
.sticky-mobile-cta:focus-visible .arr {
  color: var(--ink);
}
@media (min-width: 768px) {
  /* On desktop, hide sticky CTA — topnav CTA is always visible there */
  .sticky-mobile-cta { display: none; }
}

/* end homepage redesign v2 */

/* ============================================================
   PARTNERS + LEARNFAST + AGENDA REDESIGN
   Added 2026-05-22 — applies the new tokens to per-page polish
   ============================================================ */

/* ────────────────────────────────────────────────────────────
   /partners/  —  Gold tier dominance
   ──────────────────────────────────────────────────────────── */

.ticket.featured {
  position: relative;
  background: rgba(255, 184, 0, 0.06);
  border-color: var(--gold);
  border-width: 1px;
  box-shadow: var(--shadow-lift-gold), 0 1px 0 var(--gold) inset;
  transform: translateY(-4px);
}
.ticket.featured::before {
  content: "Recommended";
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gold);
  color: var(--ink);
  font-family: var(--stamp);
  font-size: var(--t-xs);
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: var(--radius-pill);
  white-space: nowrap;
}
.ticket.featured .ticket-rank {
  color: var(--gold);
}
.ticket.featured .ticket-divider {
  background: var(--gold);
  opacity: 0.4;
}

/* ────────────────────────────────────────────────────────────
   /learnfast/  —  problem callout + offer-card variants
   ──────────────────────────────────────────────────────────── */

.problem-callout {
  background: var(--ink);
  color: var(--cream);
  padding: var(--s-7) 0;
  position: relative;
  overflow: hidden;
}
.problem-callout::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 70% at 80% 40%, rgba(255, 184, 0, 0.08), transparent 70%);
  pointer-events: none;
}
.problem-callout .wrap { position: relative; z-index: 1; }
.problem-callout .problem-eyebrow {
  font-family: var(--stamp);
  font-size: var(--t-xs);
  font-weight: 600;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--gold);
}
.problem-callout h2 {
  font-family: var(--display);
  font-weight: 700;
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  line-height: 1.15;
  color: var(--cream);
  letter-spacing: -0.02em;
  margin-top: var(--s-3);
  max-width: 22ch;
}
.problem-callout h2 em {
  color: var(--gold);
  font-style: italic;
}
.problem-callout .problem-pains {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: var(--s-5);
  margin-top: var(--s-7);
}
.problem-callout .pain-item {
  border-left: 2px solid var(--gold);
  padding-left: var(--s-4);
}
.problem-callout .pain-item h3 {
  font-family: var(--display);
  font-size: var(--t-lg);
  font-weight: 600;
  color: var(--cream);
  margin: 0 0 var(--s-2);
}
.problem-callout .pain-item p {
  font-size: var(--t-sm);
  line-height: 1.6;
  color: var(--soft-cream);
  margin: 0;
}

/* Offer card variant: featured / lead offer */
.offer-card.featured {
  background: linear-gradient(180deg, var(--paper) 0%, rgba(255, 184, 0, 0.08) 100%);
  border-color: var(--gold);
  box-shadow: var(--shadow-lift-gold);
}
.offer-card.featured .offer-card-title { color: var(--ink); }
.offer-card.featured .workshop-output { color: var(--gold); font-weight: 600; }

/* ────────────────────────────────────────────────────────────
   /agenda/  —  stream color tags for cognitive sorting
   ──────────────────────────────────────────────────────────── */

.stream-tag {
  display: inline-flex;
  align-items: center;
  gap: var(--s-2);
  font-family: var(--stamp);
  font-size: var(--t-xs);
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 4px var(--s-3);
  border-radius: var(--radius-pill);
  border: 1px solid currentColor;
  background: transparent;
}
.stream-tag::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: currentColor;
  flex-shrink: 0;
}
.stream-tag.stream--ai            { color: #6B5CFF; }   /* future-skills lab */
.stream-tag.stream--leadership    { color: var(--gold); }
.stream-tag.stream--impact        { color: #2DBE7C; }   /* SDG 4 green */
.stream-tag.stream--career        { color: var(--heat); } /* recruitment */
.stream-tag.stream--keynote       { color: var(--rhythm); }
.stream-tag.stream--partner       { color: var(--ink); border-color: var(--gold); }

/* When dark background */
.dark .stream-tag.stream--ai       { color: #9D92FF; }
.dark .stream-tag.stream--leadership { color: var(--gold); }
.dark .stream-tag.stream--impact   { color: #5BD499; }
.dark .stream-tag.stream--career   { color: #FF6B8A; }
.dark .stream-tag.stream--keynote  { color: #B89FFF; }
.dark .stream-tag.stream--partner  { color: var(--cream); border-color: var(--gold); }

/* end pages redesign */


/* ============================================================
   AIESEC LOGO LOCKUP (2026-05-22)
   Adds the official AIESEC wordmark next to the SNC 2026
   event identifier in the navbar, and a mark in the footer.
   Asset source: https://logos.aiesec.org · primary blue #037EF3
   ============================================================ */

.topnav-brand {
  display: inline-flex !important;
  align-items: center;
  gap: 0.7rem;
  padding: 0.4rem 0;
}
.topnav-brand .brand-logo {
  height: 22px;
  width: auto;
  display: block;
}
.topnav-brand .brand-sep {
  color: var(--line-ink);
  font-weight: 300;
  letter-spacing: 0;
  font-size: 1.1rem;
  line-height: 1;
  opacity: 0.5;
}

@media (max-width: 768px) {
  .topnav-brand { display: inline-flex !important; gap: 0.5rem; }
  .topnav-brand .brand-sep,
  .topnav-brand .brand-event { display: none; }
  .topnav-brand .brand-logo { height: 20px; }
}

.foot-aiesec-mark {
  margin-top: var(--s-7);
  display: flex;
  justify-content: center;
  opacity: 0.85;
}
.foot-aiesec-mark img {
  height: 28px;
  width: auto;
}
/* end AIESEC logo lockup */


/* ============================================================
   DAY TIMELINE  (agenda 2026-05-22, full sessions + breaks)
   Sequence list inside each day panel — sessions, breaks, soft items.
   ============================================================ */

.day-timeline {
  list-style: none;
  padding: 0;
  margin: 1rem 0 0;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}
.day-timeline .ti {
  position: relative;
  padding: 0.35rem 0 0.35rem 1.2rem;
  font-size: 0.95rem;
  line-height: 1.45;
  border-left: 2px solid var(--line-ink);
  margin-left: 0.2rem;
}
.day-timeline .ti::before {
  content: "";
  position: absolute;
  left: -5px;
  top: 0.65rem;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--line-ink);
}
.day-timeline .ti--session a {
  color: var(--ink);
  text-decoration: none;
  border-bottom: 1px dashed var(--line-ink);
  transition: color 0.18s var(--ease-out), border-color 0.18s var(--ease-out);
}
.day-timeline .ti--session a:hover {
  color: var(--gold);
  border-color: var(--gold);
}
.day-timeline .ti--session::before {
  background: var(--ink);
}
.day-timeline .ti--break {
  color: var(--softer-ink);
  font-style: italic;
  font-size: 0.88rem;
}
.day-timeline .ti--break::before {
  background: transparent;
  border: 1px solid var(--line-ink);
  width: 7px;
  height: 7px;
  left: -4px;
  top: 0.7rem;
}
.day-timeline .ti--soft {
  color: var(--softer-ink);
  font-size: 0.9rem;
}
.day-timeline .ti--soft::before {
  background: transparent;
  border: 1px dashed var(--line-ink);
  width: 7px;
  height: 7px;
  left: -4px;
  top: 0.7rem;
}
.day-timeline .ti-flag {
  display: inline-block;
  margin-left: 0.5rem;
  font-family: var(--stamp);
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink);
  background: rgba(255, 184, 0, 0.18);
  border: 1px solid var(--gold);
  border-radius: var(--radius-pill);
  padding: 2px 8px;
  vertical-align: middle;
}

.agenda-note {
  margin-top: 1.8rem;
  font-size: 0.86rem;
  color: var(--softer-ink);
  font-style: italic;
  max-width: 70ch;
  padding-top: 1rem;
  border-top: 1px solid var(--line-ink);
}

/* ============================================================
   YOUTUBE EMBED — responsive 16:9 inside .video-card
   ============================================================ */

.video-embed {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border-radius: var(--radius-md);
  background: var(--ink);
}
.video-embed iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

/* end day timeline + youtube embed */


/* ============================================================
   FOOTER SOCIAL — external AIESEC linkage row
   ============================================================ */

.foot-social {
  margin-top: var(--s-5);
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--s-2) var(--s-4);
  font-family: var(--stamp);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.06em;
}
.foot-social a {
  color: var(--soft-ink);
  text-decoration: none;
  padding: 0.35rem 0.7rem;
  border: 1px solid var(--line-ink);
  border-radius: var(--radius-pill);
  transition: color 0.18s var(--ease-out), border-color 0.18s var(--ease-out), background 0.18s var(--ease-out);
}
.foot-social a:hover {
  color: var(--ink);
  border-color: var(--gold);
  background: rgba(255, 184, 0, 0.08);
}

/* end p0 build */


/* ============================================================
   P1 ADDITIONS (2026-05-22)
   · .track-grid — 2x2 photo grid on /resources/
   · .global-brands-figure — full-width photo on homepage
   · .venue-grid — 3-col practical-info grid on /agenda/
   ============================================================ */

/* track record */
.track-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--s-4);
}
.track-figure {
  position: relative;
  margin: 0;
  border-radius: var(--radius-md);
  overflow: hidden;
  background: var(--ink);
  aspect-ratio: 16 / 10;
}
.track-figure img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s var(--ease-out);
}
.track-figure:hover img { transform: scale(1.04); }
.track-figure figcaption {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: var(--s-3) var(--s-4);
  color: var(--cream);
  background: linear-gradient(180deg, transparent 0%, rgba(10, 14, 39, 0.92) 75%);
  font-size: 0.86rem;
  line-height: 1.45;
}
.track-figure figcaption strong {
  font-family: var(--display);
  font-weight: 600;
  display: block;
  margin-bottom: 0.2rem;
  color: var(--gold);
}

@media (max-width: 720px) {
  .track-grid { grid-template-columns: 1fr; }
}

/* global brands hero figure */
.global-brands-block {
  background: var(--ink);
}
.global-brands-figure {
  margin: 0;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--line-cream);
  background: var(--paper);
  aspect-ratio: 16 / 9;
}
.global-brands-figure img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

/* venue + travel */
.venue-block { background: var(--paper); }
.venue-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: var(--s-4);
}
.venue-card {
  padding: var(--s-5);
  border: 1px solid var(--line-ink);
  border-radius: var(--radius-md);
  background: #fff;
  transition: border-color 0.18s var(--ease-out), transform 0.18s var(--ease-out);
}
.venue-card:hover {
  border-color: var(--gold);
  transform: translateY(-2px);
}
.venue-card-label {
  font-family: var(--stamp);
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--label-ink);
}
.venue-card h3 {
  font-family: var(--display);
  font-size: 1.15rem;
  font-weight: 600;
  margin: 0.6rem 0 0.6rem;
  color: var(--ink);
  letter-spacing: -0.01em;
  line-height: 1.25;
}
.venue-card p {
  margin: 0;
  font-size: 0.92rem;
  line-height: 1.55;
  color: var(--soft-ink);
}
.venue-card--cta {
  background: linear-gradient(180deg, #fff 0%, rgba(255, 184, 0, 0.05) 100%);
  border-color: var(--gold);
  box-shadow: var(--shadow-lift-gold);
}
.venue-card--cta h3 { color: var(--ink); }

/* end p1 additions */


/* ============================================================
   GLOBAL BRANDS LOGO STRIP (2026-05-22 patch)
   6-up grid of AIESEC International global partner SVGs.
   Each logo gets a white plate (consistent dark-bg readability),
   muted at rest, full opacity on hover.
   ============================================================ */

.global-brands-strip {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: var(--s-3);
  margin-top: var(--s-6);
  align-items: stretch;
}
.brand-logo-cell {
  background: #fff;
  border-radius: var(--radius-md);
  padding: 22px 18px;
  min-height: 96px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.22s var(--ease-out), box-shadow 0.22s var(--ease-out);
}
.brand-logo-cell:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.18);
}
.brand-logo-cell img {
  display: block;
  width: auto;
  max-width: 100%;
  max-height: 38px;        /* default visual height */
  height: auto;
  object-fit: contain;
  filter: grayscale(15%);
  opacity: 0.92;
  transition: filter 0.22s var(--ease-out), opacity 0.22s var(--ease-out);
}
.brand-logo-cell:hover img {
  filter: grayscale(0%);
  opacity: 1;
}
/* Optical-balance per-logo heights — square logos taller, wide wordmarks shorter,
   so each lands at roughly the same visual weight regardless of native aspect. */
.brand-logo-cell img[alt="DHL"]                       { max-height: 28px; }
.brand-logo-cell img[alt="PwC"]                       { max-height: 52px; }
.brand-logo-cell img[alt="Tata Consultancy Services"] { max-height: 30px; }
.brand-logo-cell img[alt="Mastercard"]                { max-height: 48px; }
.brand-logo-cell img[alt="Henkel"]                    { max-height: 42px; }
.brand-logo-cell img[alt="Electrolux Group"]          { max-height: 22px; }
.brand-strip-note {
  margin-top: var(--s-4);
  font-size: 0.78rem;
  color: var(--softer-cream);
  font-style: italic;
  max-width: 60ch;
}

@media (max-width: 900px) {
  .global-brands-strip { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 480px) {
  .global-brands-strip { grid-template-columns: repeat(2, 1fr); }
}

/* end global brands logo strip */


/* ============================================================
   INSIDE AIESEC MONGOLIA — photo proof strip (rebuild 2026-05-22)
   Top: lead photo full-width, 16:9 (matches landscape source)
   Bottom: 3-up grid of supporting photos, 4:3 each (no empty quadrant)
   ============================================================ */

.inside-block { background: var(--paper); }

.inside-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--s-4);
}
.inside-figure {
  position: relative;
  margin: 0;
  border-radius: var(--radius-md);
  overflow: hidden;
  background: var(--ink);
}
.inside-figure img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s var(--ease-out);
}
.inside-figure:hover img { transform: scale(1.03); }
.inside-figure figcaption {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: var(--s-3) var(--s-4);
  font-family: var(--stamp);
  font-size: 0.78rem;
  line-height: 1.4;
  color: var(--cream);
  background: linear-gradient(180deg, transparent 0%, rgba(10, 14, 39, 0.88) 80%);
  letter-spacing: 0.01em;
}

/* Lead photo: full width on top, true landscape 16:9 */
.inside-figure--lead {
  grid-column: 1 / -1;
  aspect-ratio: 16 / 9;
}
.inside-grid .inside-figure:not(.inside-figure--lead) {
  aspect-ratio: 4 / 3;
}

@media (max-width: 720px) {
  .inside-grid { grid-template-columns: 1fr 1fr; }
  .inside-figure--lead { grid-column: 1 / -1; aspect-ratio: 16 / 9; }
}
@media (max-width: 480px) {
  .inside-grid { grid-template-columns: 1fr; }
  .inside-figure--lead { aspect-ratio: 16 / 10; }
  .inside-grid .inside-figure:not(.inside-figure--lead) { aspect-ratio: 16 / 10; }
}



/* ============================================================
   TEAM PAGE (/team/) — 2026-05-22
   ============================================================ */

.team-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--s-5);
}
.team-card {
  display: flex;
  gap: var(--s-4);
  align-items: flex-start;
  padding: var(--s-5);
  border: 1px solid var(--line-ink);
  border-radius: var(--radius-md);
  background: #fff;
  transition: border-color 0.22s var(--ease-out), transform 0.22s var(--ease-out), box-shadow 0.22s var(--ease-out);
}
.team-card:hover {
  border-color: var(--gold);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}
.team-photo {
  flex: 0 0 132px;
  width: 132px;
  height: 132px;
  border-radius: var(--radius-md);
  overflow: hidden;
  background: var(--ink);
}
.team-photo img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.team-photo--initials {
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--ink) 0%, #1A1F45 100%);
  color: var(--gold);
  font-family: var(--display);
  font-size: 2.6rem;
  font-weight: 700;
  letter-spacing: -0.02em;
}
.team-body { flex: 1; min-width: 0; }
.team-name {
  font-family: var(--display);
  font-weight: 700;
  font-size: 1.35rem;
  margin: 0 0 0.3rem;
  color: var(--ink);
  letter-spacing: -0.015em;
}
.team-role {
  font-family: var(--stamp);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--label-ink);
  margin-bottom: var(--s-3);
}
.team-bio {
  font-size: 0.93rem;
  line-height: 1.55;
  color: var(--soft-ink);
  margin: 0 0 var(--s-3);
}
.team-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem var(--s-3);
  font-family: var(--stamp);
  font-size: 0.78rem;
}
.team-links a {
  color: var(--ink);
  text-decoration: none;
  border-bottom: 1px dashed var(--line-ink);
  transition: color 0.18s var(--ease-out), border-color 0.18s var(--ease-out);
}
.team-links a:hover { color: var(--gold); border-color: var(--gold); }

@media (max-width: 900px) { .team-grid { grid-template-columns: 1fr; } }
@media (max-width: 480px) {
  .team-card { flex-direction: column; }
  .team-photo { width: 100%; aspect-ratio: 1; height: auto; flex: none; }
}

/* ============================================================
   CONTACT PAGE (/contact/) — 2026-05-22
   ============================================================ */

.contact-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--s-4);
}
.contact-card {
  display: block;
  padding: var(--s-5);
  border: 1px solid var(--line-ink);
  border-radius: var(--radius-md);
  background: #fff;
  color: inherit;
  text-decoration: none;
  transition: border-color 0.22s var(--ease-out), transform 0.22s var(--ease-out), box-shadow 0.22s var(--ease-out);
}
.contact-card:hover {
  border-color: var(--gold);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}
.contact-card--primary {
  background: linear-gradient(180deg, #fff 0%, rgba(255, 184, 0, 0.06) 100%);
  border-color: var(--gold);
  box-shadow: var(--shadow-lift-gold);
}
.contact-card-label {
  font-family: var(--stamp);
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--label-ink);
  margin-bottom: var(--s-2);
}
.contact-card--primary .contact-card-label { color: var(--gold); }
.contact-card h3 {
  font-family: var(--display);
  font-size: 1.3rem;
  font-weight: 600;
  margin: 0.4rem 0;
  color: var(--ink);
  letter-spacing: -0.01em;
}
.contact-card p {
  font-size: 0.93rem;
  line-height: 1.55;
  color: var(--soft-ink);
  margin: 0 0 var(--s-3);
}
.contact-card-meta {
  font-family: var(--stamp);
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  color: var(--ink);
  border-top: 1px solid var(--line-ink);
  padding-top: var(--s-3);
}

.contact-meta-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--s-4);
}
.contact-meta-card {
  padding: var(--s-5);
  border: 1px solid var(--line-cream);
  border-radius: var(--radius-md);
}
.contact-meta-label {
  font-family: var(--stamp);
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: var(--s-2);
}
.contact-meta-card h3 {
  font-family: var(--display);
  font-size: 1.25rem;
  font-weight: 600;
  margin: 0.4rem 0 var(--s-3);
  color: var(--cream);
  letter-spacing: -0.01em;
}
.contact-meta-card p {
  font-size: 0.92rem;
  line-height: 1.55;
  color: var(--soft-cream);
  margin: 0;
}

@media (max-width: 720px) {
  .contact-grid, .contact-meta-grid { grid-template-columns: 1fr; }
}

/* end team + contact */
