/* ============================================================
   IRC 2026 — Main Stylesheet
   Fonts:  Outfit  (Buenos Aires substitute) — headings
           DM Sans — body
   Colors: from Figma/TRIF brand guide
   ============================================================ */

/* ── RESET ──────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
img  { display: block; max-width: 100%; }
a    { text-decoration: none; color: inherit; }
button { border: none; background: none; cursor: pointer; font: inherit; }

/* ============================================================
   MOBILE DRAWER & BURGER
   ============================================================ */

/* Overlay */
#drawer-overlay {
  display: none;
  position: fixed; inset: 0;
  background: rgba(18, 19, 26, .55);
  backdrop-filter: blur(4px);
  z-index: 500;
  opacity: 0;
  transition: opacity .3s;
}
#drawer-overlay.open { display: block; opacity: 1; }

/* Drawer panel */
#drawer {
  position: fixed;
  top: 0; right: 0;
  width: min(320px, 85vw);
  height: 100dvh;
  background: var(--indigo);
  z-index: 600;
  display: flex; flex-direction: column;
  padding: 0 0 32px;
  transform: translateX(100%);
  transition: transform .35s cubic-bezier(.16, 1, .3, 1);
  overflow-y: auto;
}
#drawer.open { transform: translateX(0); }

.drawer-head {
  display: flex; align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  border-bottom: 1px solid rgba(255,255,255,.08);
  margin-bottom: 8px;
}
.drawer-logo { height: 36px; width: auto; }
#drawer-close {
  width: 36px; height: 36px; border-radius: 50%;
  background: rgba(255,255,255,.08);
  display: flex; align-items: center; justify-content: center;
  color: var(--white); cursor: pointer;
  transition: background .2s;
}
#drawer-close:hover { background: rgba(255,255,255,.16); }

.drawer-nav {
  display: flex; flex-direction: column;
  padding: 8px 24px; flex: 1;
}
.drawer-link {
  font-family: 'DM Sans', sans-serif;
  font-size: 17px; font-weight: 500;
  color: rgba(255,255,255,.72);
  padding: 14px 0;
  border-bottom: 1px solid rgba(255,255,255,.06);
  transition: color .2s, padding-left .2s;
}
.drawer-link:hover,
.drawer-link-active { color: var(--white); padding-left: 6px; }
.drawer-link-active { color: var(--gold); }

.drawer-cta {
  margin: 16px 24px 0;
  display: flex; align-items: center; justify-content: center;
  padding: 14px; font-size: 15px;
}

/* Burger button */
#burger {
  display: none;
  flex-direction: column; gap: 5px;
  padding: 6px; cursor: pointer;
  background: none; border: none;
}
.burger-bar {
  display: block;
  width: 24px; height: 2px;
  background: currentColor;
  border-radius: 2px;
  transition: transform .3s, opacity .3s;
}

/* Show burger on mobile, hide desktop nav */
@media (max-width: 860px) {
  #nav-desktop      { display: none; }
  .nav-cta-desktop  { display: none; }
  #burger           { display: flex; }

  /* Burger color matches header state */
  #hdr #burger           { color: var(--indigo); }
  #hdr.hdr-home #burger  { color: var(--white); }
  #hdr.hdr-home.scrolled #burger { color: var(--indigo); }
}

/* ── BRAND TOKENS (Figma exact) ────────────────────────── */
:root {
  /* Primary */
  --maroon:   #712416;   /* TRI Red Soil */
  --taupe:    #F3EEE7;   /* TRI Taupe    */
  --taupe2:   #F4EFE8;
  /* Secondary */
  --ochre:    #FFA002;   /* TRI Ochre    */
  --indigo:   #27213F;   /* TRI Indigo Night */
  /* Supporting */
  --gold:     #E9A43A;
  --ink:      #12131A;
  --mid:      #5D5B63;
  --white:    #FFFFFF;
  --navy:     #16304A;
  /* Backgrounds */
  --bg:       #F4EFE8;
  --bg2:      #F3EEE7;
  /* Aliases (used by registration page template) */
  --primary:  #FFA002;   /* = ochre  */
  --fg:       #12131A;   /* = ink    */
  --muted:    #5D5B63;   /* = mid    */
}

/* ── BASE ───────────────────────────────────────────────── */
body {
  font-family: 'DM Sans', sans-serif;
  background: var(--bg);
  color: var(--ink);
  overflow-x: hidden;
  cursor: none;
}

/* ── CUSTOM CURSOR ──────────────────────────────────────── */
#cur {
  position: fixed;
  width: 10px; height: 10px;
  background: var(--ochre);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition: width .2s, height .2s, background .2s;
}
#cur-ring {
  position: fixed;
  width: 36px; height: 36px;
  border: 1.5px solid rgba(255, 160, 2, .4);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9998;
  transform: translate(-50%, -50%);
  transition: left .1s, top .1s;
}
body.lh #cur { width: 20px; height: 20px; background: var(--gold); }

/* ── SCROLL PROGRESS ────────────────────────────────────── */
#prog {
  position: fixed;
  top: 0; left: 0;
  height: 3px; width: 0;
  background: linear-gradient(90deg, var(--maroon), var(--ochre));
  z-index: 9997;
  transition: width .08s linear;
}

/* ── REVEAL ANIMATION ───────────────────────────────────── */
/* Default: visible. JS marks below-fold items with .off to hide them */
.rv {
  opacity: 1;
  transform: none;
  transition: opacity .8s cubic-bezier(.16, 1, .3, 1),
              transform .8s cubic-bezier(.16, 1, .3, 1);
}
.rv.off             { opacity: 0; transform: translateY(28px); }
.rv.off.rv-scale    { transform: scale(.94); }
.rv.off.rv-left     { transform: translateX(-36px); }
.rv.off.rv-right    { transform: translateX(36px); }
.d1 { transition-delay: .08s; }
.d2 { transition-delay: .16s; }
.d3 { transition-delay: .24s; }
.d4 { transition-delay: .32s; }
.d5 { transition-delay: .40s; }
.d6 { transition-delay: .48s; }

/* ── LAYOUT ─────────────────────────────────────────────── */
.wrap {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 60px;
}
@media (max-width: 900px) { .wrap { padding: 0 20px; } }

/* ── SHARED TYPE ────────────────────────────────────────── */
.section-label {
  font-family: 'DM Sans', sans-serif;
  font-size: 10px; font-weight: 700;
  letter-spacing: .18em; text-transform: uppercase;
  color: var(--ochre); display: block;
}

/*
  Figma: Buenos Aires Regular, -2.9px letter-spacing
  58px = large section headings
  36px = sub-headings (sponsors, success, agenda card)
  Highlight color = --gold (#E9A43A), not ochre
*/
.h2 {
  font-family: 'Outfit', sans-serif;
  font-size: 58px; font-weight: 400;
  letter-spacing: -0.025em; line-height: 1.05;
  color: var(--ink);
}
.h3 {
  font-family: 'Outfit', sans-serif;
  font-size: 36px; font-weight: 400;
  letter-spacing: -0.025em; line-height: 1.28;
  color: var(--ink);
}
/* Gold highlight for heading spans */
.h2 .oc, .h3 .oc { color: var(--gold); }
.h2 .wh, .h3 .wh { color: var(--white); }
.body-text  { font-size: 15px; line-height: 1.74; color: var(--mid); }
.body-sm    { font-size: 14px; line-height: 1.72; color: var(--mid); }
.section-center {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 52px;
  display: flex; flex-direction: column;
  align-items: center; gap: 14px;
}

/* ── SHARED BUTTONS ─────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center;
  justify-content: center; gap: 8px;
  font-family: 'DM Sans', sans-serif;
  font-weight: 700; cursor: none;
  transition: transform .25s cubic-bezier(.16, 1, .3, 1),
              box-shadow .25s;
  border-radius: 10px;
}
.btn:hover { transform: translateY(-2px); }
/* Hero primary CTA — ochre with dark text (matches Figma exactly) */
.btn-primary {
  padding: 13px 26px;
  background: var(--ochre); color: var(--indigo);
  font-size: 14px; font-weight: 700;
}
.btn-primary:hover { box-shadow: 0 10px 28px rgba(255, 160, 2, .45); }

/* Hero secondary CTA — warm semi-transparent tan on ochre bg */
.btn-secondary {
  padding: 12px 22px;
  background: rgba(255, 248, 220, .22);
  border: 1.5px solid rgba(255, 248, 220, .50);
  color: var(--indigo);
  font-size: 14px; font-weight: 600;
  backdrop-filter: blur(6px);
}
.btn-secondary:hover { background: rgba(255, 248, 220, .36); box-shadow: none; }

/* Ochre button used in header / CTA band */
.btn-ochre {
  padding: 10px 22px;
  background: var(--ochre); color: var(--indigo);
  font-size: 13px; font-weight: 700;
}
.btn-ochre:hover { box-shadow: 0 8px 22px rgba(255,160,2,.38); }

/* ── SECTION WRAPPERS ───────────────────────────────────── */
.sec       { padding: 90px 0; position: relative; }
.sec-taupe { padding: 90px 0; background: var(--bg2); }
.sec-white { padding: 90px 0; background: var(--white); }
.sec-dark  { padding: 90px 0; background: var(--indigo); color: var(--white); }

/* ============================================================
   HEADER
   ============================================================ */
/* ── Default header: inner pages — fixed, white ── */
#hdr {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 200;
  background: var(--white);
  border-bottom: 1px solid rgba(18, 19, 26, .07);
  transition: box-shadow .3s;
}
#hdr .nav-link { color: var(--indigo); }
#hdr .nav-link:hover { color: var(--ochre); }
#hdr.scrolled { box-shadow: 0 2px 20px rgba(18, 19, 26, .08); }

/* ── Homepage header: absolute, transparent over hero ── */
#hdr.hdr-home {
  position: absolute;
  background: transparent;
  border-bottom: none;
  box-shadow: none;
}
/* Nav links white on transparent hero */
#hdr.hdr-home .nav-link { color: var(--white); }
#hdr.hdr-home .nav-link::after { background: var(--white); }
#hdr.hdr-home .nav-link:hover { color: rgba(255,255,255,.7); }

/* When scrolled — fixed white header, links switch to dark */
#hdr.hdr-home.scrolled {
  position: fixed;
  background: rgba(255, 255, 255, .96);
  backdrop-filter: blur(12px);
  box-shadow: 0 2px 20px rgba(18, 19, 26, .08);
  border-bottom: 1px solid rgba(18, 19, 26, .07);
}
#hdr.hdr-home.scrolled .nav-link { color: var(--indigo); }
#hdr.hdr-home.scrolled .nav-link::after { background: var(--ochre); }
#hdr.hdr-home.scrolled .nav-link:hover { color: var(--ochre); }

.hdr-inner {
  display: flex; align-items: center;
  justify-content: space-between; gap: 24px;
  height: 62px;
}

/* Header logo */
#logo-link img {
  height: 42px; width: auto;
  display: block;
}

/* Default (inner pages, white header): show dark logo only */
#logo-link .logo-white { display: none; }
#logo-link .logo-dark  { display: block; }

/* Homepage transparent header: show white logo only */
#hdr.hdr-home #logo-link .logo-white { display: block; }
#hdr.hdr-home #logo-link .logo-dark  { display: none; }

/* Homepage scrolled (white header): switch back to dark logo */
#hdr.hdr-home.scrolled #logo-link .logo-white { display: none; }
#hdr.hdr-home.scrolled #logo-link .logo-dark  { display: block; }

nav { display: flex; align-items: center; gap: 28px; }
.nav-link {
  font-family: 'DM Sans', sans-serif;
  font-size: 13px; font-weight: 500;
  color: var(--ink); letter-spacing: .01em;
  position: relative; transition: color .2s;
}
.nav-link::after {
  content: '';
  position: absolute; bottom: -3px; left: 0; right: 0;
  height: 1.5px; background: var(--ochre);
  transform: scaleX(0); transform-origin: left;
  transition: transform .28s cubic-bezier(.16, 1, .3, 1);
}
.nav-link:hover { color: var(--ochre); }
.nav-link:hover::after { transform: scaleX(1); }

/* ============================================================
   HERO
   ============================================================ */
#hero {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
  display: flex; align-items: center;
}

/* Background image layer */
#hero-bg {
  position: absolute; inset: 0;
  background-image: url('../images/hero-bg.jpg');
  background-size: cover;
  background-position: center;
  z-index: 0;
}
/* Subtle dark vignette so text stays legible on the photo */
#hero-bg::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(
    108deg,
    rgba(113, 36, 22, .55) 0%,
    rgba(200, 90, 0, .38) 55%,
    rgba(0, 0, 0, .18) 100%
  );
}

/* Content layer */
.hero-inner {
  position: relative; z-index: 2;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
  padding: 56px 0 60px;
}

/* ── Left column: copy ── */
.hero-copy {}

/* Big "6th India Rural Colloquy" title using the SVG */
.hero-title-svg {
  display: block;
  width: 100%;
  max-width: 500px;
  height: auto;
  margin-bottom: 22px;
}

.hero-tagline {
  font-family: 'DM Sans', sans-serif;
  font-size: 16px; font-weight: 400;
  color: rgba(255, 255, 255, .88);
  margin-bottom: 28px;
}
.hero-tagline-main {
  display: block;
  font-family: 'Outfit', sans-serif;
  font-size: 24px; font-weight: 700;
  letter-spacing: -0.02em; line-height: 1.15;
  color: #fff;
}
.hero-tagline-sub {
  display: block;
  font-size: 16px; font-weight: 400;
  margin-top: 4px;
  color: rgba(255, 255, 255, .82);
}

/* Stats row */
.hero-stats {
  display: flex;
  align-items: stretch;
  gap: 0;
  margin-bottom: 24px;
}
.h-stat {
  display: flex; flex-direction: column;
  padding-right: 32px; margin-right: 32px;
  border-right: 1.5px solid rgba(255, 255, 255, .3);
}
.h-stat:last-child { border-right: none; margin-right: 0; padding-right: 0; }
.h-stat-num {
  font-family: 'Outfit', sans-serif;
  font-size: 52px; font-weight: 900;
  line-height: 1; letter-spacing: -.05em;
  color: var(--white);
}
.h-stat-lbl {
  font-family: 'DM Sans', sans-serif;
  font-size: 13px; font-weight: 400;
  color: rgba(255, 255, 255, .72);
  margin-top: 3px;
}

/* Date pill */
.hero-date-pill {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 9px 16px;
  border: 1.5px solid rgba(255, 255, 255, .35);
  border-radius: 100px;
  background: rgba(255, 255, 255, .12);
  backdrop-filter: blur(8px);
  font-family: 'DM Sans', sans-serif;
  font-size: 12px; font-weight: 600;
  color: var(--white);
  margin-bottom: 28px;
  flex-wrap: wrap;
  width: fit-content;
}
.date-dot {
  width: 5px; height: 5px; border-radius: 50%;
  background: rgba(255, 255, 255, .6); flex: 0 0 auto;
}
.date-cal-icon { flex: 0 0 auto; opacity: .8; }

/* Buttons */
.hero-btns { display: flex; align-items: center; gap: 12px; }

/* ── Right: 5-image mosaic — 4 equal-width columns, flex-based ── */
/*
   Figma dimensions (all cols 138px wide, base height 584px):
   Col 1 hero-1:  412px tall = 70.5%  → centered vertically
   Col 2 hero-4:  584px tall = 100%   → full height
   Col 3 hero-3:  ~44.5% each          → two stacked
       hero-2:  ~44.5% each
   Col 4 hero-5:  304px tall = 52.1% → centered vertically
*/
.hero-mosaic {
  display: flex;
  gap: 10px;
  height: 560px;       /* responsive base; scales with viewport via % on parent */
  align-self: center;
  flex: 1;
  min-width: 0;
}

.hm-col {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 10px;
  min-width: 0;
}

.hm {
  position: relative;
  border-radius: 14px;
  overflow: hidden;
  flex-shrink: 0;
}
.hm img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover; display: block;
}
/* Second photo crossfades in/out over the first */
.hm .hm-b { opacity: 0; animation: hmCross 9s ease-in-out infinite; }
@keyframes hmCross {
  0%, 42%  { opacity: 0; }   /* photo A visible */
  50%, 92% { opacity: 1; }   /* photo B visible */
  100%     { opacity: 0; }   /* back to A */
}
@media (prefers-reduced-motion: reduce) {
  .hm .hm-b { animation: none; }
}

/* Col 1 — hero-1: 70.5% height, centered */
.hm-col-1 { justify-content: center; }
.hm-col-1 .hm { height: 70.5%; }

/* Col 2 — hero-4: full height */
.hm-col-2 .hm { height: 100%; }

/* Col 3 — hero-3 + hero-2: two equal stacked (each ~44.5%) */
.hm-col-3 { justify-content: center; }
.hm-col-3 .hm { flex: 1; }

/* Col 4 — hero-5: 52% height, centered */
.hm-col-4 { justify-content: center; }
.hm-col-4 .hm { height: 52%; }

/* ============================================================
   MARQUEE STRIP
   ============================================================ */
#mq-strip {
  background: var(--indigo);
  padding: 13px 0;
  overflow: hidden;
}
.mq-track {
  display: flex;
  width: max-content;
  animation: marquee 26s linear infinite;
}
.mq-item {
  display: inline-flex; align-items: center; gap: 12px;
  padding: 0 30px;
  font-family: 'DM Sans', sans-serif;
  font-size: 11px; font-weight: 700;
  letter-spacing: .1em; text-transform: uppercase;
  color: rgba(255, 255, 255, .82);
}
.mq-dot {
  width: 5px; height: 5px; border-radius: 50%;
  background: var(--ochre); flex: 0 0 auto;
}
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ============================================================
   AGENDA AT A GLANCE
   ============================================================ */
.agenda-intro-head {
  text-align: center; max-width: 680px;
  margin: 0 auto 48px;
}
.agenda-sub {
  font-family: 'Outfit', sans-serif;
  font-size: 20px; font-weight: 400;
  color: var(--ochre); letter-spacing: -.02em;
  margin-bottom: 12px;
}

/* Agenda card */
.agenda-card {
  background: var(--white);
  border: 1px solid rgba(18, 19, 26, .07);
  border-radius: 20px;
  padding: 44px;
  box-shadow: 0 8px 40px rgba(18, 19, 26, .06);
}
.agenda-card-label {
  font-family: 'DM Sans', sans-serif;
  font-size: 10px; font-weight: 700;
  letter-spacing: .2em; text-transform: uppercase;
  color: var(--ochre); text-align: center;
  display: block; margin-bottom: 14px;
}
.agenda-card .h2 {
  text-align: center; margin-bottom: 10px;
}
.agenda-card .body-sm { text-align: center; margin-bottom: 28px; }

/* Agenda card heading — 36px, gold highlight */
.agenda-heading {
  font-family: 'Outfit', sans-serif;
  font-size: 36px; font-weight: 400;
  letter-spacing: -0.025em; line-height: 1.28;
  text-align: center; margin-bottom: 10px;
  color: var(--ink);
}
.agenda-heading-bold {
  color: var(--gold);
}
.agenda-heading-reg {
  color: var(--ink);
}

/* Day tabs */
.ag-tabs { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 24px; }
.ag-tab {
  padding: 9px 20px; border-radius: 100px;
  background: var(--bg); color: var(--mid);
  font-family: 'DM Sans', sans-serif;
  font-size: 13px; font-weight: 600;
  border: 1px solid rgba(18, 19, 26, .08);
  cursor: none;
  transition: all .25s cubic-bezier(.16, 1, .3, 1);
}
.ag-tab:hover { background: var(--bg2); color: var(--ink); }
.ag-tab.active {
  background: var(--indigo); color: var(--white);
  border-color: var(--indigo);
  box-shadow: 0 4px 14px rgba(39, 33, 63, .22);
}

/* Agenda list */
.ag-list { display: flex; flex-direction: column; gap: 10px; min-height: 160px; }
.ag-item {
  display: grid; grid-template-columns: 120px 1fr;
  gap: 20px; padding: 20px 22px;
  border-radius: 14px;
  background: var(--bg);
  border: 1px solid rgba(18, 19, 26, .05);
  transition: transform .25s cubic-bezier(.16, 1, .3, 1), box-shadow .25s;
}
.ag-item:hover {
  transform: translateX(4px);
  box-shadow: 0 6px 24px rgba(18, 19, 26, .07);
}
.ag-time strong {
  display: block;
  font-family: 'Outfit', sans-serif;
  font-size: 18px; font-weight: 800;
  color: var(--indigo); letter-spacing: -.02em; margin-bottom: 4px;
}
.ag-time small {
  font-size: 10px; font-weight: 600;
  letter-spacing: .1em; text-transform: uppercase; color: var(--mid);
}
.ag-title {
  font-family: 'Outfit', sans-serif;
  font-size: 18px; font-weight: 700;
  color: var(--ink); letter-spacing: -0.025em; margin-bottom: 6px;
}
.ag-desc { font-size: 13px; line-height: 1.65; color: var(--mid); margin-bottom: 12px; }
.ag-speaker { display: flex; align-items: center; gap: 8px; }
.ag-speaker img {
  width: 28px; height: 28px; border-radius: 50%;
  object-fit: cover; flex: 0 0 auto;
}
.ag-speaker span { font-size: 12px; font-weight: 600; color: var(--ink); }

/* ============================================================
   PAST SPEAKERS
   ============================================================ */
.spk-copy { max-width: 820px; margin-bottom: 44px; }
.spk-copy .h2 { margin-top: 12px; }
.spk-copy .body-text { margin-top: 16px; }

.spk-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

/* Card: white container with shadow, flex column */
.spk-card {
  border-radius: 20px; overflow: hidden;
  cursor: default;
  display: flex; flex-direction: column;
  box-shadow: 0 6px 28px rgba(18, 19, 26, .10);
  background: var(--white);
  aspect-ratio: 3 / 4;
  transition: transform .3s cubic-bezier(.16, 1, .3, 1), box-shadow .3s;
}
.spk-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(18, 19, 26, .15);
}

/* Photo fills the card, shrinks to leave room for bottom panel */
.spk-card img {
  width: 100%; flex: 1; min-height: 0;
  object-fit: cover; display: block;
  object-position: top center;
  filter: grayscale(100%);
  transition: transform .4s cubic-bezier(.16, 1, .3, 1), filter .4s ease;
}
.spk-card:hover img { transform: scale(1.03); filter: grayscale(0); }
/* Touch devices (no hover) — show full colour */
@media (hover: none) {
  .spk-card img { filter: none; }
}

/* Bottom info panel — fixed height so all cards are equal */
.spk-overlay {
  padding: 14px 16px 16px;
  background: var(--indigo);
  flex: 0 0 auto;
  text-align: center;
  min-height: 80px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* Hover state — all cards switch to ochre/gold panel */
.spk-card:hover .spk-overlay {
  background: linear-gradient(135deg, var(--ochre) 0%, var(--gold) 100%);
}
.spk-card:hover .spk-name { color: var(--indigo); }
.spk-card:hover .spk-role { color: rgba(39, 33, 63, .72); }

.spk-overlay { transition: background .3s ease; }
.spk-name {
  font-family: 'Outfit', sans-serif;
  font-size: 14px; font-weight: 800;
  color: var(--white);
  letter-spacing: -0.025em; margin-bottom: 4px;
  transition: color .3s ease;
}
.spk-role {
  font-size: 11px; color: rgba(255,255,255,.72);
  line-height: 1.45;
  transition: color .3s ease;
}

/* ============================================================
   WHY ATTEND
   ============================================================ */
.why-card {
  border-radius: 20px; overflow: hidden;
  display: grid; grid-template-columns: 1fr 1fr;
  min-height: 340px;
  background: linear-gradient(135deg, var(--ochre) 0%, #c07010 100%);
  box-shadow: 0 16px 56px rgba(200, 100, 0, .22);
  position: relative;
}
.why-card::before {
  content: '';
  position: absolute; inset: 0;
  background: url("data:image/svg+xml,%3Csvg viewBox='0 0 400 400' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.04'/%3E%3C/svg%3E");
  pointer-events: none; opacity: .35;
}
.why-img-col {
  display: flex; align-items: center; justify-content: center;
  padding: 36px;
}
.why-diamond {
  overflow: hidden;
}
.why-diamond img { width: 100%; display: block; transition: opacity .18s ease; }
.why-text-col {
  padding: 44px 40px;
  position: relative; z-index: 1;
  display: flex; flex-direction: column; justify-content: center;
}
.why-big-num {
  position: absolute; top: 24px; right: 32px;
  font-family: 'Outfit', sans-serif;
  font-size: 88px; font-weight: 900;
  color: rgba(255,255,255,.12);
  line-height: 1; letter-spacing: -.06em;
  pointer-events: none;
}
.why-lbl {
  font-size: 10px; font-weight: 700;
  letter-spacing: .18em; text-transform: uppercase;
  color: rgba(255,255,255,.68); margin-bottom: 12px;
}
.why-title {
  font-family: 'Outfit', sans-serif;
  font-size: 36px; font-weight: 400;
  color: var(--white); letter-spacing: -0.025em;
  line-height: 1.28; margin-bottom: 14px;
}
.why-desc {
  font-size: 14px; line-height: 1.7;
  color: rgba(255,255,255,.78); margin-bottom: 28px;
}
.why-dots { display: flex; gap: 7px; margin-bottom: 18px; }
.w-dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: rgba(255,255,255,.32);
  cursor: none; transition: background .25s, width .25s;
}
.w-dot.on { background: var(--white); width: 20px; border-radius: 4px; }
.why-nav { display: flex; gap: 8px; }
.why-nav-btn {
  width: 36px; height: 36px; border-radius: 50%;
  background: rgba(255,255,255,.16);
  border: 1px solid rgba(255,255,255,.3);
  display: flex; align-items: center; justify-content: center;
  color: var(--white); cursor: none;
  transition: background .25s;
}
.why-nav-btn:hover { background: rgba(255,255,255,.3); }

/* ============================================================
   VIDEO / MEMORABLE MOMENTS
   ============================================================ */
.video-wrap {
  border-radius: 20px; overflow: hidden;
  position: relative;
  aspect-ratio: 1257.6 / 652;  /* exact Figma ratio */
  cursor: none;
}
.video-wrap img {
  width: 100%; height: 100%; object-fit: cover;
  opacity: .65; transition: opacity .3s;
}
.video-wrap:hover img { opacity: .5; }
.video-overlay {
  position: absolute; inset: 0;
  display: flex; flex-direction: column;
  align-items: center; justify-content: flex-end;
  padding: 32px;
  background: linear-gradient(transparent 25%, rgba(39,33,63,.68) 100%);
}
.play-btn {
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%,-50%);
  width: 56px; height: 56px; border-radius: 50%;
  background: rgba(255,255,255,.9);
  display: flex; align-items: center; justify-content: center;
  transition: transform .3s cubic-bezier(.16,1,.3,1), box-shadow .3s;
}
.video-wrap:hover .play-btn {
  transform: translate(-50%,-50%) scale(1.1);
  box-shadow: 0 10px 30px rgba(0,0,0,.3);
}
.video-title {
  font-family: 'Outfit', sans-serif;
  font-size: 57px; font-weight: 800;
  color: var(--white); text-align: center;
  letter-spacing: -0.025em; line-height: 1.04;
  margin-bottom: 12px;
}
.video-credits {
  display: flex; gap: 16px; flex-wrap: wrap;
  justify-content: center; align-items: center;
}
.video-name  { font-size: 12px; font-weight: 600; color: rgba(255,255,255,.72); }
.video-divider { width: 1px; height: 12px; background: rgba(255,255,255,.28); }

/* ============================================================
   SUCCESS STORIES
   ============================================================ */
.stories-title {
  font-family: 'Outfit', sans-serif;
  font-size: 36px; font-weight: 400;
  letter-spacing: -0.025em; line-height: 1.28;
  text-align: center; margin-bottom: 32px;
}
.stories-title .oc { color: var(--gold); }
.stories-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.story-img {
  border-radius: 16px; overflow: hidden;
  aspect-ratio: 4 / 3;
}
.story-img img {
  width: 100%; height: 100%;
  object-fit: cover; display: block;
  transition: transform .4s cubic-bezier(.16,1,.3,1);
}
.story-img:hover img { transform: scale(1.04); }

/* ============================================================
   SPONSORS
   ============================================================ */
.sponsors-head { text-align: center; margin-bottom: 44px; }
.sponsors-head .h2 { font-size: 36px; text-align: center; margin-bottom: 12px; }
.sponsors-head .body-sm { text-align: center; max-width: 520px; margin: 0 auto; }
.sponsor-row {
  display: flex; flex-wrap: wrap;
  align-items: center; justify-content: center;
  gap: 40px;
}
.sponsor-item {
  display: flex; align-items: center; gap: 8px;
  font-family: 'DM Sans', sans-serif;
  font-size: 16px; font-weight: 700;
  color: var(--mid); opacity: .75;
  transition: opacity .25s, color .25s;
}
.sponsor-item:hover { opacity: 1; color: var(--ink); }
.sponsor-item iconify-icon { font-size: 22px; }

/* ============================================================
   CTA
   ============================================================ */
.cta-shell {
  padding: 44px 52px;
  border-radius: 20px;
  background: linear-gradient(108deg, var(--indigo) 0%, #3d3060 55%, var(--maroon) 130%);
  display: grid; grid-template-columns: 1fr auto;
  gap: 32px; align-items: center;
  box-shadow: 0 20px 56px rgba(39, 33, 63, .2);
  position: relative; overflow: hidden;
}
.cta-shell::before {
  content: '';
  position: absolute; right: -60px; top: -60px;
  width: 280px; height: 280px; border-radius: 50%;
  background: rgba(255,255,255,.04);
  pointer-events: none;
}
.cta-title {
  font-family: 'Outfit', sans-serif;
  font-size: 36px; font-weight: 400;
  color: var(--white); letter-spacing: -0.025em; line-height: 1.28;
  margin-bottom: 10px;
}
.cta-body { font-size: 14px; line-height: 1.7; color: rgba(255,255,255,.7); max-width: 500px; }

/* ============================================================
   FOOTER
   ============================================================ */
#footer {
  background: var(--indigo);
  padding: 56px 0 28px;
  color: var(--white);
}
.ft-top {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr;
  gap: 48px; margin-bottom: 44px;
  padding-bottom: 44px;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.ft-logo-wrap img {
  height: 44px; width: auto;
  margin-bottom: 16px;
}
.ft-copy {
  font-size: 13px; line-height: 1.72;
  color: rgba(255,255,255,.48); max-width: 280px;
}
.ft-col-title {
  font-size: 10px; font-weight: 700;
  letter-spacing: .12em; text-transform: uppercase;
  color: var(--white); margin-bottom: 14px;
}
.ft-links { display: flex; flex-direction: column; gap: 10px; }
.ft-link {
  font-size: 13px; color: rgba(255,255,255,.48);
  transition: color .2s, transform .2s; display: inline-block;
}
.ft-link:hover { color: rgba(255,255,255,.88); transform: translateX(4px); }
.ft-text { font-size: 13px; color: rgba(255,255,255,.48); line-height: 1.6; }
.ft-bottom {
  display: flex; align-items: center;
  justify-content: space-between; gap: 14px; flex-wrap: wrap;
}
.ft-copy-small { font-size: 11px; color: rgba(255,255,255,.38); }
.ft-socials { display: flex; gap: 8px; }
.soc-btn {
  width: 32px; height: 32px; border-radius: 50%;
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.1);
  display: flex; align-items: center; justify-content: center;
  cursor: none; transition: background .2s, transform .2s;
}
.soc-btn:hover { background: rgba(255,255,255,.15); transform: translateY(-2px); }

/* ============================================================
   RESPONSIVE — HOME PAGE
   ============================================================ */

/* Large tablet — mosaic shrinks */
@media (max-width: 1100px) {
  .hero-inner       { grid-template-columns: 1fr; }
  .hero-mosaic      { height: 320px; gap: 8px; }
  .hero-title-svg   { max-width: 100%; }
  .hero-copy        { max-width: 600px; }
}

/* Tablet */
@media (max-width: 860px) {
  .hero-mosaic      { display: none; }
  .hero-inner       { padding: 48px 0 52px; }
  .hero-title-svg   { max-width: 480px; }
  .sec, .sec-taupe, .sec-white { padding: 64px 0; }
  .spk-grid         { grid-template-columns: 1fr 1fr; }
  .why-card         { grid-template-columns: 1fr; }
  .why-img-col      { display: none; }
  .cta-shell        { grid-template-columns: 1fr; text-align: center; }
  .cta-shell .btn-ochre { align-self: center; }
  .ft-top           { grid-template-columns: 1fr 1fr; gap: 32px; }
  .stories-grid     { grid-template-columns: 1fr 1fr; }
  .spk-copy         { max-width: 100%; }
  .agenda-card      { padding: 28px 24px; }
}

/* Mobile */
@media (max-width: 600px) {
  .wrap             { padding: 0 20px; }
  .h2               { font-size: 36px; letter-spacing: -0.025em; }
  .h3               { font-size: 26px; }
  .h-stat-num       { font-size: 36px; }
  .hero-date-pill   { font-size: 10px; gap: 5px; padding: 7px 12px; }
  .hero-btns        { flex-direction: column; align-items: flex-start; gap: 10px; }
  .hero-btns .btn   { width: 100%; justify-content: center; }
  .spk-grid         { grid-template-columns: 1fr 1fr; gap: 12px; }
  .spk-name         { font-size: 12px; }
  .spk-role         { font-size: 10px; }
  .stories-grid     { grid-template-columns: 1fr; }
  .ft-top           { grid-template-columns: 1fr; gap: 28px; }
  .ft-bottom        { flex-direction: column; align-items: flex-start; gap: 16px; }
  .video-title      { font-size: 32px; }
  .video-credits    { flex-direction: column; gap: 6px; }
  .video-divider    { display: none; }
  .agenda-heading   { font-size: 26px; }
  .ag-tabs          { overflow-x: auto; flex-wrap: nowrap; padding-bottom: 4px; }
  .ag-item          { grid-template-columns: 90px 1fr; gap: 12px; padding: 14px 16px; }
  .sponsor-row      { gap: 24px; }
  .cta-shell        { padding: 32px 24px; }
  .cta-title        { font-size: 26px; }
  .why-text-col     { padding: 32px 24px; }
  .why-title        { font-size: 26px; }
}

@media (max-width: 400px) {
  .spk-grid         { grid-template-columns: 1fr; }
  .h2               { font-size: 30px; }
  .h-stat-num       { font-size: 30px; }
  .h-stat           { padding-right: 16px; margin-right: 16px; }
}

/* ============================================================
   ABOUT PAGE
   ============================================================ */

/* Hero */
.about-hero {
  position: relative;
  background: var(--indigo);
  padding: 100px 0 72px;
  overflow: hidden;
  margin-top: 62px;
}
.about-hero-glow {
  position: absolute; inset: 0; pointer-events: none;
  background:
    radial-gradient(ellipse at 5% 70%, rgba(113,36,22,.50) 0%, transparent 50%),
    radial-gradient(ellipse at 90% 20%, rgba(255,160,2,.10) 0%, transparent 50%);
}
.about-hero-inner {
  position: relative; z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}
.about-hero-title {
  font-family: 'Outfit', sans-serif;
  font-size: 58px; font-weight: 400;
  letter-spacing: -0.025em; line-height: 1.05;
  color: var(--white); margin: 0 0 20px;
}
.about-hero-title em { font-style: normal; color: var(--gold); }
.about-hero-desc {
  font-size: 16px; line-height: 1.72;
  color: rgba(255,255,255,.68); max-width: 520px;
  margin-bottom: 24px;
}

/* ── About page mosaic — 3-image asymmetric (distinct from home 4-col) ── */
.about-mosaic {
  display: flex;
  gap: 12px;
  height: 520px;
  flex: 1;
  min-width: 0;
}
.am-col {
  display: flex;
  flex-direction: column;
  gap: 12px;
  min-width: 0;
}
.am-col-1 {
  flex: 1.1;
  justify-content: center; /* vertically center the single tall image */
}
.am-col-2 {
  flex: 0.9;
}
.am-img {
  border-radius: 16px;
  overflow: hidden;
}
.am-img img {
  width: 100%; height: 100%;
  object-fit: cover; display: block;
}
/* Col 1: single image at 80% height, centered */
.am-col-1 .am-img {
  height: 80%;
}
/* Col 2 top: shorter (38% of total height) */
.am-img-top  { flex: 0 0 38%; }
/* Col 2 bottom: taller (58% of total height) */
.am-img-bottom { flex: 1; }

/* Hero stats strip (same style as homepage but white) */
.about-hero-stats {
  display: flex; align-items: stretch;
  gap: 0; margin-bottom: 28px;
}
.ah-stat {
  display: flex; flex-direction: column;
  padding-right: 28px; margin-right: 28px;
  border-right: 1.5px solid rgba(255,255,255,.2);
}
.ah-stat:last-child { border-right: none; margin-right: 0; padding-right: 0; }
.ah-stat-num {
  font-family: 'Outfit', sans-serif;
  font-size: 40px; font-weight: 400;
  line-height: 1; letter-spacing: -.05em;
  color: var(--white);
}
.ah-stat-lbl {
  font-size: 12px; font-weight: 400;
  color: rgba(255,255,255,.62); margin-top: 3px;
}

/* Hero — text only (no mosaic) */
.about-hero-copy-only {
  position: relative; z-index: 2;
  max-width: 720px;
  padding-bottom: 12px;
}

/* About body — copy left, 3-image collage right */
.about-body-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px; align-items: center;
}

/* 3-image collage */
.about-collage {
  display: flex;
  gap: 12px;
  height: 420px;
}
.about-collage-left {
  flex: 1.1;
}
.about-collage-right {
  flex: 0.9;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.about-collage-main {
  position: relative;
  height: 100%;
  border-radius: 16px;
  overflow: hidden;
}
.about-collage-main img {
  width: 100%; height: 100%;
  object-fit: cover; display: block;
}
/* 900M+ stat card overlaid on main image */
.about-collage-stat {
  position: absolute;
  bottom: 16px; left: 16px; right: 16px;
  background: rgba(39, 33, 63, .88);
  backdrop-filter: blur(8px);
  border-radius: 12px;
  padding: 14px 18px;
}
.about-collage-stat strong {
  display: block;
  font-family: 'Outfit', sans-serif;
  font-size: 36px; font-weight: 400;
  letter-spacing: -.05em; color: var(--gold);
  line-height: 1;
}
.about-collage-stat span {
  font-size: 12px; color: rgba(255,255,255,.65);
  margin-top: 3px; display: block;
}
.about-collage-img-top,
.about-collage-img-bottom {
  flex: 1;
  border-radius: 16px;
  overflow: hidden;
}
.about-collage-img-top img,
.about-collage-img-bottom img {
  width: 100%; height: 100%;
  object-fit: cover; display: block;
}

/* Join Us — ochre background */
.about-join-section { padding: 0 0 90px; }
.about-join-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-radius: 20px; overflow: hidden;
  background: var(--ochre);
  min-height: 360px;
  box-shadow: 0 20px 56px rgba(255,160,2,.22);
}
.about-join-copy {
  padding: 52px 48px;
  display: flex; flex-direction: column;
  justify-content: center; gap: 16px;
}
.about-join-title {
  font-family: 'Outfit', sans-serif;
  font-size: 28px; font-weight: 400;
  letter-spacing: -0.025em; line-height: 1.25;
  color: var(--indigo); margin: 0;
}
.about-join-text {
  font-size: 14px; line-height: 1.72;
  color: rgba(39, 33, 63, .72);
}
.about-join-btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 11px 22px; border-radius: 10px;
  background: var(--indigo); color: var(--white);
  font-family: 'DM Sans', sans-serif;
  font-size: 14px; font-weight: 700;
  align-self: flex-start;
  transition: box-shadow .25s, transform .25s;
}
.about-join-btn:hover {
  box-shadow: 0 8px 24px rgba(39,33,63,.3);
  transform: translateY(-2px);
}
.about-join-img img {
  width: 100%; height: 100%;
  object-fit: cover; display: block;
}

/* August Kranti — two column */
.about-kranti-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px; align-items: start;
}
.about-kranti-left .h2 { margin-top: 12px; }

/* Become a Changemaker */
.about-changemaker-section { padding: 0 0 90px; }
.about-changemaker-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-radius: 20px; overflow: hidden;
  background: var(--maroon);
  box-shadow: 0 20px 56px rgba(113,36,22,.2);
  min-height: 420px;
}
.about-changemaker-copy {
  padding: 60px 52px;
  display: flex; flex-direction: column; justify-content: center;
}
.about-changemaker-img img {
  width: 100%; height: 100%;
  object-fit: cover; display: block;
}

/* Previous Colloquies */
.past-editions-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
}
.past-edition-card {
  border-radius: 16px; padding: 28px 24px;
  display: flex; flex-direction: column; gap: 6px;
  cursor: pointer;
  transition: transform .25s cubic-bezier(.16,1,.3,1);
}
.past-edition-card:hover { transform: translateY(-4px); }
.past-edition-label {
  font-size: 10px; font-weight: 700;
  letter-spacing: .14em; text-transform: uppercase;
}
.past-edition-year {
  font-family: 'Outfit', sans-serif;
  font-size: 48px; font-weight: 900;
  letter-spacing: -.05em; line-height: 1;
}
.past-edition-light  { background: var(--white); border: 1.5px solid rgba(18,19,26,.1); }
.past-edition-light  .past-edition-label { color: var(--mid); }
.past-edition-light  .past-edition-year  { color: var(--ink); }
.past-edition-ochre  { background: var(--ochre); }
.past-edition-ochre  .past-edition-label { color: rgba(39,33,63,.7); }
.past-edition-ochre  .past-edition-year  { color: var(--indigo); }
.past-edition-maroon { background: var(--maroon); }
.past-edition-maroon .past-edition-label { color: rgba(255,255,255,.6); }
.past-edition-maroon .past-edition-year  { color: var(--white); }
.past-edition-dark   { background: var(--indigo); }
.past-edition-dark   .past-edition-label { color: rgba(255,255,255,.6); }
.past-edition-dark   .past-edition-year  { color: var(--white); }
.past-edition-navy   { background: var(--navy); }
.past-edition-navy   .past-edition-label { color: rgba(255,255,255,.6); }
.past-edition-navy   .past-edition-year  { color: var(--white); }

/* About page responsive */
@media (max-width: 860px) {
  .about-hero             { padding: 80px 0 52px; }
  .about-body-grid        { grid-template-columns: 1fr; gap: 40px; }
  .about-collage          { height: 300px; }
  .about-kranti-inner     { grid-template-columns: 1fr; gap: 28px; }
  .about-join-card        { grid-template-columns: 1fr; }
  .about-join-img         { height: 240px; }
  .about-changemaker-card { grid-template-columns: 1fr; }
  .about-changemaker-img  { height: 260px; }
  .past-editions-grid     { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .about-hero-title       { font-size: 34px; }
  .about-hero-desc        { font-size: 14px; }
  .about-collage          { height: 240px; gap: 8px; }
  .past-editions-grid     { grid-template-columns: 1fr 1fr; }
  .past-edition-year      { font-size: 36px; }
  .about-join-copy        { padding: 28px 22px; }
  .about-join-title       { font-size: 22px; }
  .about-changemaker-copy { padding: 32px 22px; }
  .about-collage-stat strong { font-size: 28px; }
}

/* ============================================================
   INNER PAGE COMPATIBILITY + COMPONENT STYLES
   Maps old IRC-2025 class names to new 2026 design tokens
   ============================================================ */

/* Layout aliases */
.container {
  width: 100%; max-width: 1280px;
  margin: 0 auto; padding: 0 60px;
}
@media (max-width: 900px) { .container { padding: 0 20px; } }

.section       { padding: 90px 0; position: relative; }
.section-soft  { padding: 90px 0; background: var(--bg2); }
.section-dark  {
  padding: 90px 0;
  background: var(--indigo); color: var(--white);
  position: relative; overflow: hidden;
}
.section-dark::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 70% 50%, rgba(113,36,22,.18) 0%, transparent 70%);
  pointer-events: none;
}

/* Typography aliases */
.section-label {
  font-family: 'DM Sans', sans-serif;
  font-size: 10px; font-weight: 700;
  letter-spacing: .18em; text-transform: uppercase;
  color: var(--ochre); display: block;
}
.section-title {
  font-family: 'Outfit', sans-serif;
  font-size: 58px; font-weight: 400;
  letter-spacing: -0.025em; line-height: 1.05;
  color: var(--ink); margin: 0;
}
.section-title em { font-style: normal; color: var(--gold); }
.section-dark .section-title { color: var(--white); }
.section-copy {
  font-size: 15px; line-height: 1.74; color: var(--mid);
}
.section-dark .section-copy { color: rgba(255,255,255,.7); }

.section-head {
  text-align: center; max-width: 700px;
  margin: 0 auto 52px;
  display: flex; flex-direction: column;
  align-items: center; gap: 14px;
}

/* Reveal animation aliases */
.reveal        { opacity: 1; transform: none;
  transition: opacity .8s cubic-bezier(.16,1,.3,1), transform .8s cubic-bezier(.16,1,.3,1); }
.reveal.off    { opacity: 0; transform: translateY(28px); }
.reveal-left   { opacity: 1; transform: none;
  transition: opacity .8s cubic-bezier(.16,1,.3,1), transform .8s cubic-bezier(.16,1,.3,1); }
.reveal-left.off  { opacity: 0; transform: translateX(-36px); }
.reveal-right  { opacity: 1; transform: none;
  transition: opacity .8s cubic-bezier(.16,1,.3,1), transform .8s cubic-bezier(.16,1,.3,1); }
.reveal-right.off { opacity: 0; transform: translateX(36px); }
.reveal-scale  { opacity: 1; transform: none;
  transition: opacity .8s cubic-bezier(.16,1,.3,1), transform .8s cubic-bezier(.16,1,.3,1); }
.reveal-scale.off { opacity: 0; transform: scale(.94); }

/* Delay helpers (kept for inner pages) */
.delay-1 { transition-delay: .08s; }
.delay-2 { transition-delay: .16s; }
.delay-3 { transition-delay: .24s; }
.delay-4 { transition-delay: .32s; }

/* Shared button aliases for inner pages */
.btn-primary  { background: var(--ochre); color: var(--indigo); }
.btn-outline {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 12px 24px; border-radius: 10px;
  border: 1.5px solid var(--indigo); color: var(--indigo);
  font-family: 'DM Sans', sans-serif; font-size: 14px; font-weight: 700;
  transition: background .25s, color .25s;
}
.btn-outline:hover { background: var(--indigo); color: var(--white); }
.btn-nav {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 10px 22px; border-radius: 10px;
  background: var(--ochre); color: var(--indigo);
  font-family: 'DM Sans', sans-serif; font-size: 13px; font-weight: 700;
}

/* ── Inner Page Hero ─────────────────────────────────────── */
.page-hero {
  position: relative;
  background: var(--indigo);
  padding: 100px 0 64px;
  overflow: hidden;
  margin-top: 62px;
}
.page-hero-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.03) 1px, transparent 1px);
  background-size: 48px 48px;
}
.page-hero-overlay {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 20% 60%, rgba(113,36,22,.35) 0%, transparent 60%),
              radial-gradient(ellipse at 80% 30%, rgba(255,160,2,.12) 0%, transparent 55%);
}
.page-hero-orb {
  position: absolute; top: -80px; right: -80px;
  width: 360px; height: 360px; border-radius: 50%;
  background: radial-gradient(circle, rgba(255,160,2,.12) 0%, transparent 70%);
  pointer-events: none;
}
.page-hero-content {
  position: relative; z-index: 2;
  max-width: 760px;
}
.page-hero-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: 'DM Sans', sans-serif;
  font-size: 11px; font-weight: 700;
  letter-spacing: .14em; text-transform: uppercase;
  color: var(--ochre); margin-bottom: 14px;
}
.page-hero-eyebrow-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--ochre); flex: 0 0 auto;
}
.page-hero-title {
  font-family: 'Outfit', sans-serif;
  font-size: 58px; font-weight: 400;
  letter-spacing: -0.025em; line-height: 1.05;
  color: var(--white); margin: 0 0 18px;
}
.page-hero-title em { font-style: normal; color: var(--ochre); }
.page-hero-desc {
  font-size: 16px; line-height: 1.72;
  color: rgba(255,255,255,.68); max-width: 620px;
}

/* Breadcrumb */
.breadcrumb {
  display: flex; align-items: center; gap: 6px;
  font-size: 12px; margin-bottom: 20px;
}
.breadcrumb a { color: rgba(255,255,255,.5); transition: color .2s; }
.breadcrumb a:hover { color: var(--ochre); }
.breadcrumb-sep { color: rgba(255,255,255,.25); }
.breadcrumb-current { color: rgba(255,255,255,.82); }

/* ── Inner page common components ───────────────────────── */

/* Stat/count cards */
.stat-card {
  background: var(--white);
  border: 1px solid rgba(18,19,26,.06);
  border-radius: 16px; padding: 28px 24px;
  display: flex; flex-direction: column; gap: 6px;
  box-shadow: 0 4px 20px rgba(18,19,26,.06);
}
.stat-card strong {
  font-family: 'Outfit', sans-serif;
  font-size: 44px; font-weight: 900;
  letter-spacing: -.05em; color: var(--indigo);
  line-height: 1;
}
.stat-card span { font-size: 13px; color: var(--mid); font-weight: 500; }

/* Theme / feature cards */
.theme-card {
  background: var(--white);
  border: 1px solid rgba(18,19,26,.06);
  border-radius: 16px; padding: 28px 24px;
  box-shadow: 0 4px 20px rgba(18,19,26,.05);
  transition: transform .25s cubic-bezier(.16,1,.3,1), box-shadow .25s;
}
.theme-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 36px rgba(18,19,26,.1);
}
.theme-card .icon-wrap {
  width: 44px; height: 44px; border-radius: 12px;
  background: var(--bg); display: flex;
  align-items: center; justify-content: center;
  margin-bottom: 16px;
}
.theme-card h3 {
  font-family: 'Outfit', sans-serif;
  font-size: 18px; font-weight: 800;
  letter-spacing: -0.025em; color: var(--ink);
  margin-bottom: 8px;
}
.theme-card p { font-size: 13px; line-height: 1.68; color: var(--mid); }

/* About section points */
.about-point {
  display: flex; flex-direction: column; gap: 4px;
  padding: 16px 0;
  border-bottom: 1px solid rgba(18,19,26,.06);
}
.about-point:last-child { border-bottom: none; }
.about-point strong {
  font-family: 'Outfit', sans-serif;
  font-size: 15px; font-weight: 700;
  color: var(--ink); letter-spacing: -.01em;
}
.about-point span { font-size: 13px; line-height: 1.68; color: var(--mid); }

/* Story / CTA band */
#story-shell, .story-shell {
  display: grid; grid-template-columns: auto 1fr;
  gap: 40px; align-items: center;
  padding: 44px 52px; border-radius: 20px;
  background: linear-gradient(108deg, var(--indigo) 0%, #3d3060 55%, var(--maroon) 130%);
  box-shadow: 0 20px 56px rgba(39,33,63,.2);
  overflow: hidden; position: relative;
}
#story-img, .story-img-hero {
  width: 180px; height: 180px; border-radius: 14px;
  object-fit: cover; flex-shrink: 0;
}
#story-title {
  font-family: 'Outfit', sans-serif;
  font-size: 36px; font-weight: 400;
  color: var(--white); letter-spacing: -0.025em;
  line-height: 1.28; margin-bottom: 12px;
}
#story-copy { font-size: 14px; line-height: 1.72; color: rgba(255,255,255,.7); }

/* Panel cards */
#panel-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 20px; margin-top: 32px;
}
.panel-card {
  border-radius: 16px; padding: 32px 28px;
}
.panel-dark {
  background: var(--indigo); color: var(--white);
}
.panel-light {
  background: var(--bg2);
  border: 1px solid rgba(18,19,26,.07);
}
.panel-card h3 {
  font-family: 'Outfit', sans-serif;
  font-size: 20px; font-weight: 800;
  letter-spacing: -0.025em; margin-bottom: 10px;
}
.panel-dark h3 { color: var(--ochre); }
.panel-light h3 { color: var(--ink); }
.panel-card p { font-size: 13px; line-height: 1.68; }
.panel-dark p { color: rgba(255,255,255,.68); }
.panel-light p { color: var(--mid); }

/* Speaker/agenda grids (inner pages) */
#speakers-grid, #speakers-top {
  display: grid;
}
#speakers-top {
  grid-template-columns: 1fr auto;
  align-items: flex-end;
  gap: 24px; margin-bottom: 40px;
}
#speakers-grid { grid-template-columns: repeat(4, 1fr); gap: 20px; }

.speaker-card {
  background: var(--white);
  border: 1px solid rgba(18,19,26,.07);
  border-radius: 16px; padding: 24px;
  box-shadow: 0 4px 20px rgba(18,19,26,.06);
  transition: transform .25s, box-shadow .25s;
}
.speaker-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 36px rgba(18,19,26,.1);
}
.speaker-avatar {
  width: 64px; height: 64px; border-radius: 50%;
  object-fit: cover; margin-bottom: 12px;
}
.speaker-name {
  font-family: 'Outfit', sans-serif;
  font-size: 16px; font-weight: 800;
  color: var(--ink); letter-spacing: -0.025em;
  margin-bottom: 3px;
}
.speaker-role {
  font-size: 11px; font-weight: 600;
  color: var(--ochre); text-transform: uppercase;
  letter-spacing: .06em; margin-bottom: 10px;
}
.speaker-bio { font-size: 12px; line-height: 1.65; color: var(--mid); }

/* Agenda (inner page) */
#agenda-shell { display: flex; flex-direction: column; gap: 28px; }
#agenda-days {
  display: flex; gap: 8px; flex-wrap: wrap;
}
.agenda-day {
  padding: 9px 20px; border-radius: 100px;
  background: var(--bg); color: var(--mid);
  font-family: 'DM Sans', sans-serif;
  font-size: 13px; font-weight: 600;
  border: 1px solid rgba(18,19,26,.08);
  cursor: pointer;
  transition: all .25s;
}
.agenda-day:hover { background: var(--bg2); color: var(--ink); }
.agenda-day.active {
  background: var(--indigo); color: var(--white);
  border-color: var(--indigo);
}
.agenda-item {
  display: grid; grid-template-columns: 120px 1fr;
  gap: 20px; padding: 20px 22px;
  border-radius: 14px;
  background: var(--white);
  border: 1px solid rgba(18,19,26,.05);
  transition: transform .25s, box-shadow .25s;
}
.agenda-item:hover {
  transform: translateX(4px);
  box-shadow: 0 6px 24px rgba(18,19,26,.07);
}
.agenda-time strong {
  display: block;
  font-family: 'Outfit', sans-serif;
  font-size: 16px; font-weight: 800;
  color: var(--indigo); letter-spacing: -.02em;
  margin-bottom: 4px;
}
.agenda-time span {
  font-size: 10px; font-weight: 600;
  letter-spacing: .1em; text-transform: uppercase;
  color: var(--mid);
}
.agenda-title {
  font-family: 'Outfit', sans-serif;
  font-size: 17px; font-weight: 700;
  color: var(--ink); letter-spacing: -0.025em;
  margin-bottom: 6px;
}
.agenda-desc { font-size: 13px; line-height: 1.65; color: var(--mid); margin-bottom: 10px; }
.agenda-speaker { display: flex; align-items: center; gap: 8px; }
.agenda-speaker img { width: 28px; height: 28px; border-radius: 50%; object-fit: cover; }
.agenda-speaker span { font-size: 12px; font-weight: 600; color: var(--ink); }

/* Session type tags */
.session-type-tag {
  display: inline-block;
  padding: 3px 10px; border-radius: 100px;
  font-size: 10px; font-weight: 700;
  letter-spacing: .08em; text-transform: uppercase;
}
.tag-keynote { background: rgba(113,36,22,.1); color: var(--maroon); }
.tag-panel   { background: rgba(39,33,63,.1);  color: var(--indigo); }
.tag-workshop{ background: rgba(255,160,2,.12); color: #a06800; }

/* Benefits grid */
#benefits-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.benefit-card {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 16px; padding: 28px 22px;
  transition: background .25s;
}
.benefit-card:hover { background: rgba(255,255,255,.10); }
.benefit-icon {
  width: 44px; height: 44px; border-radius: 12px;
  background: rgba(255,255,255,.08);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 16px;
}
.benefit-card h3 {
  font-family: 'Outfit', sans-serif;
  font-size: 16px; font-weight: 800;
  color: var(--white); letter-spacing: -0.025em; margin-bottom: 8px;
}
.benefit-card p { font-size: 13px; line-height: 1.68; color: rgba(255,255,255,.62); }

/* Mission grid (about page) */
.mission-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 20px; margin-bottom: 60px;
}
.mission-card {
  border-radius: 16px; padding: 32px 28px;
}
.mission-card.dark {
  background: var(--indigo); color: var(--white);
}
.mission-card.light {
  background: var(--bg2);
  border: 1px solid rgba(18,19,26,.07);
}
.mission-card-icon {
  width: 44px; height: 44px; border-radius: 12px;
  background: rgba(255,255,255,.1);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 16px;
}
.mission-card h3 {
  font-family: 'Outfit', sans-serif;
  font-size: 20px; font-weight: 800;
  letter-spacing: -0.025em; margin-bottom: 10px;
}
.mission-card.dark h3 { color: var(--ochre); }
.mission-card.light h3 { color: var(--ink); }
.mission-card p { font-size: 14px; line-height: 1.72; }
.mission-card.dark p { color: rgba(255,255,255,.72); }
.mission-card.light p { color: var(--mid); }

/* Hero stats strip (inner page) */
#stats-strip {
  background: var(--indigo); padding: 40px 0;
}
#stats-shell { }
#stats-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 1px; background: rgba(255,255,255,.08);
}
.count-up { display: inline; }

/* Keynote spotlight (speakers page) */
.keynote-spotlight {
  display: grid; grid-template-columns: 280px 1fr;
  gap: 40px; align-items: center;
  background: var(--bg2);
  border-radius: 20px; overflow: hidden;
  border: 1px solid rgba(18,19,26,.07);
  box-shadow: 0 4px 24px rgba(18,19,26,.06);
}
.keynote-img {
  width: 100%; height: 320px;
  object-fit: cover; display: block;
}
.keynote-label {
  font-size: 10px; font-weight: 700;
  letter-spacing: .14em; text-transform: uppercase;
  color: var(--ochre); display: block; margin-bottom: 12px;
}
.keynote-name {
  font-family: 'Outfit', sans-serif;
  font-size: 36px; font-weight: 400;
  color: var(--ink); letter-spacing: -0.025em; margin-bottom: 4px;
}
.keynote-role {
  font-size: 14px; color: var(--mid); margin-bottom: 16px;
}

/* About/hero image layout */
#about-layout {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 64px; align-items: center;
}
#about-img-wrap { border-radius: 20px; overflow: hidden; }
#about-img { width: 100%; display: block; }
.about-points { display: flex; flex-direction: column; margin: 28px 0; }
#about-float {
  background: var(--indigo); color: var(--white);
  border-radius: 14px; padding: 18px 22px;
  display: flex; flex-direction: column; gap: 6px;
  margin-top: 12px;
}
#about-float strong {
  font-family: 'Outfit', sans-serif;
  font-size: 32px; font-weight: 900;
  color: var(--ochre); letter-spacing: -.04em;
}
#about-float span { font-size: 13px; line-height: 1.6; color: rgba(255,255,255,.68); }

/* Hero visual panel (home - kept for compat) */
#hero-visual, #hero-panel, #float-1, #float-2,
.float-note, .hero-eyebrow { display: none; }

/* Theme grid shared */
#themes-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 20px; margin-bottom: 20px;
}

/* Marquee (inner pages use same strip) */
#marquee-band {
  background: var(--indigo); padding: 13px 0; overflow: hidden;
}
.marquee-track {
  display: flex; width: max-content;
  animation: marquee 26s linear infinite;
}
.marquee-item {
  display: inline-flex; align-items: center; gap: 12px;
  padding: 0 30px;
  font-family: 'DM Sans', sans-serif;
  font-size: 11px; font-weight: 700;
  letter-spacing: .1em; text-transform: uppercase;
  color: rgba(255,255,255,.82);
}
.marquee-dot {
  width: 5px; height: 5px; border-radius: 50%;
  background: var(--ochre); flex: 0 0 auto;
}

/* CTA section (inner pages) */
#cta-section { padding: 80px 0; background: var(--bg2); }
#cta-shell {
  display: grid; grid-template-columns: 1fr auto;
  gap: 32px; align-items: center;
  padding: 44px 52px; border-radius: 20px;
  background: linear-gradient(108deg, var(--indigo) 0%, #3d3060 55%, var(--maroon) 130%);
  box-shadow: 0 20px 56px rgba(39,33,63,.2);
  position: relative; overflow: hidden;
}
#cta-shell::before {
  content: ''; position: absolute; right: -60px; top: -60px;
  width: 280px; height: 280px; border-radius: 50%;
  background: rgba(255,255,255,.04); pointer-events: none;
}
#cta-title {
  font-family: 'Outfit', sans-serif;
  font-size: 36px; font-weight: 400;
  color: var(--white); letter-spacing: -0.025em; line-height: 1.28;
  margin-bottom: 10px;
}
#cta-text { font-size: 14px; line-height: 1.7; color: rgba(255,255,255,.7); max-width: 500px; }
#cta-btn {
  display: inline-flex; align-items: center;
  padding: 14px 28px; border-radius: 10px;
  background: var(--ochre); color: var(--indigo);
  font-family: 'DM Sans', sans-serif;
  font-size: 14px; font-weight: 700;
  white-space: nowrap; flex: 0 0 auto;
  transition: box-shadow .25s, transform .25s;
}
#cta-btn:hover { box-shadow: 0 8px 22px rgba(255,160,2,.38); transform: translateY(-2px); }

/* Responsive inner pages */
@media (max-width: 1024px) {
  #speakers-grid { grid-template-columns: repeat(2, 1fr); }
  #benefits-grid { grid-template-columns: repeat(2, 1fr); }
  #themes-grid   { grid-template-columns: repeat(2, 1fr); }
  #about-layout  { grid-template-columns: 1fr; }
  .mission-grid  { grid-template-columns: 1fr; }
  .keynote-spotlight { grid-template-columns: 1fr; }
  .keynote-img   { height: 220px; }
  #panel-grid    { grid-template-columns: 1fr; }
  #cta-shell     { grid-template-columns: 1fr; }
  #story-shell   { grid-template-columns: 1fr; }
  #stats-grid    { grid-template-columns: repeat(2, 1fr); }
  #speakers-top  { grid-template-columns: 1fr; }
}
@media (max-width: 700px) {
  .page-hero-title { font-size: 36px; }
  #speakers-grid   { grid-template-columns: 1fr; }
  #benefits-grid   { grid-template-columns: 1fr; }
  #themes-grid     { grid-template-columns: 1fr; }
  #stats-grid      { grid-template-columns: 1fr; }
  .agenda-item     { grid-template-columns: 1fr; }
  .section-title   { font-size: 32px; }
}

/* ============================================================
   SCHEDULE PAGE
   ============================================================ */
.sch-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.sch-card {
  background: var(--white);
  border: 1px solid rgba(18,19,26,.07);
  border-radius: 16px; padding: 24px 20px;
  display: flex; flex-direction: column; gap: 6px;
  box-shadow: 0 4px 20px rgba(18,19,26,.05);
  transition: transform .25s cubic-bezier(.16,1,.3,1), box-shadow .25s;
}
.sch-card:hover { transform: translateY(-3px); box-shadow: 0 12px 32px rgba(18,19,26,.1); }
.sch-card-closing { background: var(--indigo); }
.sch-card-closing .sch-date,
.sch-card-closing .sch-state,
.sch-card-closing .sch-city,
.sch-card-closing .sch-theme { color: rgba(255,255,255,.85); }
.sch-date { font-family:'Outfit',sans-serif; font-size:28px; font-weight:400; letter-spacing:-0.05em; color:var(--indigo); line-height:1; }
.sch-state { font-size:10px; font-weight:700; letter-spacing:.1em; text-transform:uppercase; color:var(--ochre); margin-top:4px; }
.sch-city { font-family:'Outfit',sans-serif; font-size:18px; font-weight:400; color:var(--ink); letter-spacing: -0.025em; }
.sch-theme { font-size:13px; line-height:1.6; color:var(--mid); flex:1; margin-top:4px; }
.sch-tag { display:inline-block; padding:4px 10px; border-radius:100px; background:var(--bg); border:1px solid rgba(18,19,26,.08); font-size:10px; font-weight:700; letter-spacing:.08em; text-transform:uppercase; color:var(--mid); align-self:flex-start; margin-top:8px; }
.sch-tag-gold { background:var(--ochre); color:var(--indigo); border-color:var(--ochre); }
.sch-tag-field { background:rgba(39,33,63,.08); color:var(--indigo); border-color:rgba(39,33,63,.15); }

/* Recordings */
.rec-tabs { display:flex; gap:8px; flex-wrap:wrap; margin-bottom:24px; }
.rec-tab { padding:9px 20px; border-radius:100px; background:var(--white); color:var(--mid); font-family:'DM Sans',sans-serif; font-size:13px; font-weight:600; border:1px solid rgba(18,19,26,.08); cursor:pointer; transition:all .25s; }
.rec-tab:hover { background:var(--bg); color:var(--ink); }
.rec-tab.active { background:var(--indigo); color:var(--white); border-color:var(--indigo); }
.rec-grid { display:flex; flex-direction:column; gap:10px; }
.rec-item { display:flex; align-items:center; gap:16px; padding:18px 20px; border-radius:14px; background:var(--white); border:1px solid rgba(18,19,26,.06); transition:transform .2s, box-shadow .2s; }
.rec-item:hover { transform:translateX(4px); box-shadow:0 4px 20px rgba(18,19,26,.07); }
.rec-play { width:40px; height:40px; border-radius:50%; background:var(--bg); border:1px solid rgba(18,19,26,.08); display:flex; align-items:center; justify-content:center; flex-shrink:0; }
.rec-location { font-size:10px; font-weight:700; letter-spacing:.1em; text-transform:uppercase; color:var(--ochre); margin-bottom:4px; }
.rec-title { font-family:'Outfit',sans-serif; font-size:15px; font-weight:400; color:var(--ink); letter-spacing: -0.025em; line-height:1.4; }

@media (max-width:1024px) { .sch-grid { grid-template-columns:repeat(2,1fr); } }
@media (max-width:600px) { .sch-grid { grid-template-columns:1fr; } .rec-tabs { overflow-x:auto; flex-wrap:nowrap; } }

/* ============================================================
   SPEAKERS PAGE
   ============================================================ */
.featured-spk-grid {
  display:grid; grid-template-columns:340px 1fr; gap:56px; align-items:center;
  background:var(--bg2); border-radius:20px; overflow:hidden;
  box-shadow:0 4px 24px rgba(18,19,26,.06);
}
.featured-spk-img { height:420px; }
.featured-spk-img img { width:100%; height:100%; object-fit:cover; object-position:top; display:block; }
.featured-spk-copy { padding:40px 48px 40px 0; }
.featured-spk-role { font-size:14px; color:var(--mid); line-height:1.5; }
.featured-spk-tags { display:flex; flex-wrap:wrap; gap:8px; }
.spk-tag { padding:5px 12px; border-radius:100px; background:var(--white); border:1px solid rgba(18,19,26,.08); font-size:11px; font-weight:600; letter-spacing:.06em; text-transform:uppercase; color:var(--mid); }
.spk-announce { display:flex; align-items:center; gap:28px; padding:40px 44px; border-radius:20px; background:var(--bg2); border:1px solid rgba(18,19,26,.07); }
.spk-announce-icon { width:64px; height:64px; border-radius:16px; background:var(--white); display:flex; align-items:center; justify-content:center; flex-shrink:0; box-shadow:0 4px 16px rgba(18,19,26,.08); }

@media (max-width:860px) { .featured-spk-grid { grid-template-columns:1fr; } .featured-spk-img { height:280px; } .featured-spk-copy { padding:28px; } .spk-announce { flex-direction:column; align-items:flex-start; padding:28px; } }

/* ============================================================
   ARCHIVE PAGE
   ============================================================ */
.archive-card {
  display:grid; grid-template-columns:200px 1fr; gap:40px; align-items:center;
  background:var(--white); border:1px solid rgba(18,19,26,.07);
  border-radius:20px; padding:36px 40px;
  box-shadow:0 4px 20px rgba(18,19,26,.05);
  transition:transform .25s, box-shadow .25s;
}
.archive-card:hover { transform:translateY(-3px); box-shadow:0 12px 36px rgba(18,19,26,.1); }
.archive-card-ochre { background:var(--ochre); border-color:var(--ochre); }
.archive-card-maroon { background:var(--maroon); border-color:var(--maroon); }
.archive-card-dark { background:var(--indigo); border-color:var(--indigo); }
.archive-card-navy { background:var(--navy); border-color:var(--navy); }
.archive-edition-label { display:block; font-size:10px; font-weight:700; letter-spacing:.14em; text-transform:uppercase; color:var(--mid); margin-bottom:6px; }
.archive-card-ochre .archive-edition-label { color:rgba(39,33,63,.6); }
.archive-card-maroon .archive-edition-label,
.archive-card-navy .archive-edition-label,
.archive-card-dark .archive-edition-label { color:rgba(255,255,255,.55); }
.archive-year-num { display:block; font-family:'Outfit',sans-serif; font-size:56px; font-weight:400; letter-spacing:-0.06em; line-height:1; color:var(--ink); }
.archive-card-ochre .archive-year-num { color:var(--indigo); }
.archive-card-maroon .archive-year-num,
.archive-card-navy .archive-year-num,
.archive-card-dark .archive-year-num { color:var(--white); }
.archive-edition-num { display:block; font-size:12px; color:var(--mid); margin-top:4px; }
.archive-card-ochre .archive-edition-num { color:rgba(39,33,63,.6); }
.archive-card-maroon .archive-edition-num,
.archive-card-navy .archive-edition-num,
.archive-card-dark .archive-edition-num { color:rgba(255,255,255,.5); }
.archive-meta { display:flex; flex-wrap:wrap; gap:16px; margin-top:8px; }
.archive-meta-item { display:inline-flex; align-items:center; gap:5px; font-size:12px; font-weight:600; color:var(--mid); }
.archive-meta-light .archive-meta-item { color:rgba(255,255,255,.65); }
.btn-outline-white { display:inline-flex; align-items:center; gap:6px; padding:10px 20px; border-radius:10px; border:1.5px solid rgba(255,255,255,.4); color:var(--white); font-family:'DM Sans',sans-serif; font-size:13px; font-weight:700; transition:background .2s; }
.btn-outline-white:hover { background:rgba(255,255,255,.12); }

@media (max-width:700px) { .archive-card { grid-template-columns:1fr; gap:16px; padding:24px; } .archive-year-num { font-size:40px; } }

/* ============================================================
   RESOURCES PAGE
   ============================================================ */
.res-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:20px; }
.res-card { background:var(--white); border:1px solid rgba(18,19,26,.07); border-radius:16px; padding:28px 24px; box-shadow:0 4px 20px rgba(18,19,26,.05); transition:transform .25s, box-shadow .25s; display:flex; flex-direction:column; }
.res-card:hover { transform:translateY(-3px); box-shadow:0 12px 32px rgba(18,19,26,.1); }
.res-icon { width:52px; height:52px; border-radius:14px; background:rgba(255,160,2,.1); display:flex; align-items:center; justify-content:center; margin-bottom:16px; }
.res-title { font-family:'Outfit',sans-serif; font-size:18px; font-weight:400; letter-spacing: -0.025em; color:var(--ink); margin-bottom:10px; }
.res-desc { font-size:13px; line-height:1.68; color:var(--mid); flex:1; margin-bottom:16px; }
.res-link { display:inline-flex; align-items:center; gap:6px; font-size:13px; font-weight:700; color:var(--ochre); transition:gap .2s; align-self:flex-start; }
.res-link:hover { gap:10px; }

@media (max-width:860px) { .res-grid { grid-template-columns:repeat(2,1fr); } }
@media (max-width:600px) { .res-grid { grid-template-columns:1fr; } }

/* ════════════════════════════════════════════════
   VIDEO LIGHTBOX MODAL
   ════════════════════════════════════════════════ */
.video-wrap[data-video] { cursor: pointer; }

.video-modal {
  position: fixed; inset: 0;
  display: flex; align-items: center; justify-content: center;
  padding: 24px;
  background: rgba(18, 19, 26, 0);
  backdrop-filter: blur(0px);
  z-index: 10000;
  opacity: 0;
  transition: opacity .28s ease, background .28s ease;
}
.video-modal.open {
  opacity: 1;
  background: rgba(18, 19, 26, .82);
  backdrop-filter: blur(6px);
}
.video-modal-inner {
  position: relative;
  width: 100%; max-width: min(94vw, 1180px);
  transform: scale(.96);
  transition: transform .28s cubic-bezier(.16,1,.3,1);
}
.video-modal.open .video-modal-inner { transform: scale(1); }
.video-modal-frame {
  position: relative;
  width: 100%; padding-top: 56.25%; /* 16:9 */
  border-radius: 14px; overflow: hidden;
  box-shadow: 0 30px 80px rgba(0,0,0,.5);
  background: #000;
}
.video-modal-frame iframe {
  position: absolute; inset: 0;
  width: 100%; height: 100%; border: 0;
}
.video-modal-close {
  position: absolute; top: -46px; right: 0;
  display: inline-flex; align-items: center; justify-content: center;
  width: 38px; height: 38px;
  border: 0; border-radius: 50%;
  background: rgba(255,255,255,.12); color: var(--white);
  cursor: pointer;
  transition: background .2s;
}
.video-modal-close:hover { background: var(--ochre); color: var(--indigo); }

@media (max-width: 560px) {
  .video-modal-close { top: -44px; right: 50%; transform: translateX(50%); }
}

/* ════════════════════════════════════════════════
   REGISTRATION PAGE COMPONENTS
   ════════════════════════════════════════════════ */

/* ── Pricing ─────────────────────────────────────── */
.pricing-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
  align-items: stretch; margin-top: 48px;
}
.pricing-card {
  position: relative; display: flex; flex-direction: column;
  background: var(--white); border: 1px solid rgba(18,19,26,.08);
  border-radius: 18px; padding: 34px 30px;
  box-shadow: 0 10px 30px rgba(18,19,26,.05);
  transition: transform .25s, box-shadow .25s;
}
.pricing-card:hover { transform: translateY(-4px); box-shadow: 0 20px 46px rgba(18,19,26,.10); }
.pricing-card.featured {
  background: var(--indigo); color: var(--white);
  border-color: var(--indigo); box-shadow: 0 24px 56px rgba(39,33,63,.30);
}
.pricing-featured-badge {
  position: absolute; top: -13px; left: 50%; transform: translateX(-50%);
  background: var(--ochre); color: var(--indigo);
  font-size: 11px; font-weight: 800; letter-spacing: .04em; text-transform: uppercase;
  padding: 6px 16px; border-radius: 999px; white-space: nowrap;
}
.pricing-tier-name {
  font-family: 'Outfit', sans-serif; font-size: 18px; font-weight: 700;
  margin-bottom: 14px;
}
.pricing-price-row { display: flex; align-items: flex-start; gap: 3px; }
.pricing-currency { font-size: 22px; font-weight: 700; margin-top: 6px; }
.pricing-amount { font-family: 'Outfit', sans-serif; font-size: 46px; font-weight: 800; line-height: 1; }
.pricing-period { font-size: 13px; color: var(--muted); margin-top: 10px; }
.pricing-card.featured .pricing-period { color: rgba(255,255,255,.65); }
.pricing-divider { height: 1px; background: rgba(18,19,26,.10); margin: 24px 0; }
.pricing-card.featured .pricing-divider { background: rgba(255,255,255,.16); }
.pricing-features { list-style: none; display: flex; flex-direction: column; gap: 13px; margin-bottom: 28px; flex: 1; }
.pricing-features li { display: flex; align-items: flex-start; gap: 10px; font-size: 13.5px; line-height: 1.5; }
.pricing-features li iconify-icon { color: var(--ochre); flex: 0 0 auto; margin-top: 1px; }
.pricing-cta {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 13px 24px; border-radius: 11px;
  font-family: 'DM Sans', sans-serif; font-size: 14px; font-weight: 700;
  text-align: center; transition: transform .2s, box-shadow .2s, background .2s, color .2s;
}
.pricing-cta:hover { transform: translateY(-2px); }
.pricing-cta-outline { border: 1.6px solid var(--indigo); color: var(--indigo); }
.pricing-cta-outline:hover { background: var(--indigo); color: var(--white); }
.pricing-cta-filled { background: var(--ochre); color: var(--indigo); box-shadow: 0 8px 22px rgba(255,160,2,.35); }

/* ── How-it-works steps ──────────────────────────── */
.steps-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; margin-top: 48px; }
.step-card {
  position: relative; background: var(--white); border: 1px solid rgba(18,19,26,.07);
  border-radius: 16px; padding: 30px 24px; overflow: hidden;
}
.step-number {
  position: absolute; top: 14px; right: 18px;
  font-family: 'Outfit', sans-serif; font-size: 40px; font-weight: 800;
  color: rgba(18,19,26,.06); line-height: 1;
}
.step-icon {
  width: 48px; height: 48px; border-radius: 12px;
  display: inline-flex; align-items: center; justify-content: center;
  background: rgba(255,160,2,.12); margin-bottom: 18px;
}
.step-card h4 { font-family: 'Outfit', sans-serif; font-size: 16px; font-weight: 700; margin-bottom: 8px; }
.step-card p { font-size: 13.5px; line-height: 1.6; color: var(--muted); }

/* ── Form fields ─────────────────────────────────── */
.newsletter-input {
  font-family: 'DM Sans', sans-serif; font-size: 14px; color: var(--ink);
  padding: 13px 16px; border: 1.5px solid rgba(18,19,26,.14);
  border-radius: 11px; background: var(--white); transition: border-color .2s, box-shadow .2s;
}
.newsletter-input:focus { outline: none; border-color: var(--ochre); box-shadow: 0 0 0 3px rgba(255,160,2,.16); }
.newsletter-submit {
  font-family: 'DM Sans', sans-serif; font-weight: 700; color: var(--indigo);
  background: var(--ochre); border: 0; cursor: pointer;
  transition: transform .2s, box-shadow .2s;
}
.newsletter-submit:hover { transform: translateY(-2px); box-shadow: 0 10px 26px rgba(255,160,2,.4); }
.reg-card { background: var(--white); border: 1px solid rgba(18,19,26,.08); border-radius: 18px; padding: 36px; box-shadow: 0 10px 30px rgba(18,19,26,.05); }
.reg-label { display: block; font-size: 13px; font-weight: 700; color: var(--fg); margin-bottom: 8px; }

/* ── FAQ accordion ───────────────────────────────── */
.faq-list { max-width: 760px; margin: 48px auto 0; display: flex; flex-direction: column; gap: 14px; }
.faq-item { background: var(--white); border: 1px solid rgba(18,19,26,.08); border-radius: 14px; overflow: hidden; }
.faq-question {
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  padding: 20px 24px; cursor: pointer;
  font-family: 'Outfit', sans-serif; font-size: 15.5px; font-weight: 600; color: var(--ink);
}
.faq-icon {
  flex: 0 0 auto; width: 30px; height: 30px; border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  background: rgba(255,160,2,.12); transition: transform .28s;
}
.faq-item.open .faq-icon { transform: rotate(45deg); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height .32s ease; }
.faq-answer-inner { padding: 0 24px 22px; font-size: 14px; line-height: 1.65; color: var(--muted); }

@media (max-width: 980px) {
  .pricing-grid { grid-template-columns: 1fr; max-width: 460px; margin-left: auto; margin-right: auto; }
  .steps-grid   { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
  .steps-grid { grid-template-columns: 1fr; }
  #agenda-shell { padding: 24px; }
}

/* ════════════════════════════════════════════════
   HOMEPAGE — CLIENT FEEDBACK SECTIONS
   ════════════════════════════════════════════════ */

/* ── Intro: Join the India Rural Colloquy (S3) ───── */
.intro-block { max-width: 840px; margin: 0 auto; text-align: center; }
.intro-lead {
  font-family: 'DM Sans', sans-serif;
  font-size: 18px; line-height: 1.78; color: var(--ink);
  margin-bottom: 22px; letter-spacing: -0.005em;
}
.intro-lead:last-child { margin-bottom: 0; }
.intro-lead .oc { font-weight: 600; }

/* ── Why be a part — 4 cards (S5) ────────────────── */
.why4-head { text-align: center; margin-bottom: 48px; }
.why4-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.why4-card {
  background: var(--white); border: 1px solid rgba(18,19,26,.07);
  border-radius: 16px; padding: 32px 26px;
  transition: transform .25s, box-shadow .25s;
}
.why4-card:hover { transform: translateY(-4px); box-shadow: 0 18px 42px rgba(18,19,26,.09); }
.why4-icon {
  width: 50px; height: 50px; border-radius: 13px;
  display: inline-flex; align-items: center; justify-content: center;
  background: rgba(255,160,2,.12); color: var(--ochre); margin-bottom: 18px;
}
.why4-title {
  font-family: 'Outfit', sans-serif; font-size: 18px; font-weight: 700;
  letter-spacing: -0.025em; color: var(--ink); margin-bottom: 10px;
}
.why4-desc { font-size: 14px; line-height: 1.64; color: var(--mid); }

/* ── Rural Influencers — video grid (S9) ─────────── */
.infl-head { text-align: center; margin-bottom: 44px; }
.infl-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.infl-card {
  position: relative; border-radius: 14px; overflow: hidden;
  cursor: pointer; aspect-ratio: 16 / 9; background: var(--indigo);
}
.infl-card img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .4s; }
.infl-card:hover img { transform: scale(1.05); }
.infl-card::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(18,19,26,0) 45%, rgba(18,19,26,.42));
}
.infl-play {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%); z-index: 1;
  width: 54px; height: 54px; border-radius: 50%;
  background: rgba(255,255,255,.92);
  display: flex; align-items: center; justify-content: center;
  transition: transform .25s, background .25s;
}
.infl-card:hover .infl-play { transform: translate(-50%,-50%) scale(1.08); background: var(--ochre); }

@media (max-width: 980px) {
  .why4-grid { grid-template-columns: repeat(2, 1fr); }
  .infl-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 680px) {
  .infl-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
  .why4-grid { grid-template-columns: 1fr; }
}

/* ════════════════════════════════════════════════
   WHAT OUR SPEAKERS SAY — testimonials (S7)
   ════════════════════════════════════════════════ */
.tst-head { text-align: center; margin-bottom: 44px; }
.tst-slider { position: relative; }
.tst-track {
  display: flex; gap: 22px;
  overflow-x: auto; scroll-snap-type: x mandatory; scroll-behavior: smooth;
  padding: 6px 2px 12px;
  -ms-overflow-style: none; scrollbar-width: none;
  align-items: stretch;
}
.tst-track::-webkit-scrollbar { display: none; }
.tst-card {
  flex: 0 0 calc((100% - 44px) / 3);   /* 3 across, 22px gaps */
  scroll-snap-align: start;
  background: var(--white); border: 1px solid rgba(18,19,26,.07);
  border-radius: 18px; padding: 30px 28px; box-shadow: 0 8px 28px rgba(18,19,26,.05);
  display: flex; flex-direction: column;
}
.tst-quote-icon { font-size: 30px; color: var(--ochre); }
.tst-quote { font-size: 15px; line-height: 1.7; color: var(--ink); margin: 12px 0 22px; }
.tst-author { display: flex; align-items: center; gap: 12px; margin-top: auto; }
.tst-author img {
  width: 48px; height: 48px; border-radius: 50%;
  object-fit: cover; object-position: top center; flex: 0 0 auto;
}
.tst-name { font-family: 'Outfit', sans-serif; font-weight: 700; font-size: 15px; color: var(--ink); letter-spacing: -0.025em; }
.tst-org { font-size: 12px; color: var(--mid); }
.tst-arrow {
  position: absolute; top: 50%; transform: translateY(-50%);
  width: 46px; height: 46px; border-radius: 50%;
  background: var(--white); border: 1px solid rgba(18,19,26,.1);
  box-shadow: 0 8px 24px rgba(18,19,26,.14);
  display: flex; align-items: center; justify-content: center;
  color: var(--indigo); cursor: pointer; z-index: 3;
  transition: background .2s, color .2s, opacity .2s;
}
.tst-arrow:hover { background: var(--ochre); color: var(--indigo); }
.tst-arrow-prev { left: -14px; }
.tst-arrow-next { right: -14px; }
.tst-arrow:disabled { opacity: 0; pointer-events: none; }
@media (max-width: 900px) { .tst-card { flex: 0 0 calc((100% - 22px) / 2); } }
@media (max-width: 600px) {
  .tst-card { flex: 0 0 84%; }
  .tst-arrow { display: none; }
}

/* ════════════════════════════════════════════════
   SPEAKERS SLIDER (homepage)
   ════════════════════════════════════════════════ */
.spk-slider { position: relative; }
.spk-track {
  display: flex; gap: 20px;
  overflow-x: auto; scroll-snap-type: x mandatory; scroll-behavior: smooth;
  padding: 6px 2px 12px;
  -ms-overflow-style: none; scrollbar-width: none;
}
.spk-track::-webkit-scrollbar { display: none; }
.spk-track .spk-card { flex: 0 0 240px; scroll-snap-align: start; }
.spk-arrow {
  position: absolute; top: 46%; transform: translateY(-50%);
  width: 46px; height: 46px; border-radius: 50%;
  background: var(--white); border: 1px solid rgba(18,19,26,.1);
  box-shadow: 0 8px 24px rgba(18,19,26,.14);
  display: flex; align-items: center; justify-content: center;
  color: var(--indigo); cursor: pointer; z-index: 3;
  transition: background .2s, color .2s, opacity .2s;
}
.spk-arrow:hover { background: var(--ochre); color: var(--indigo); }
.spk-arrow-prev { left: -14px; }
.spk-arrow-next { right: -14px; }
.spk-arrow:disabled { opacity: 0; pointer-events: none; }
@media (max-width: 600px) {
  .spk-track .spk-card { flex: 0 0 72%; }
  .spk-arrow { display: none; }
}

/* ════════════════════════════════════════════════
   VIDEO SLIDER (Memorable Moments + Rural Influencers)
   3 cards in viewport, sized like Success Stories
   ════════════════════════════════════════════════ */
.vid-slider { position: relative; }
.vid-track {
  display: flex; gap: 16px;
  overflow-x: auto; scroll-snap-type: x mandatory; scroll-behavior: smooth;
  padding: 4px 2px 10px;
  scrollbar-width: none; -ms-overflow-style: none;
}
.vid-track::-webkit-scrollbar { display: none; }
.vid-track .infl-card {
  flex: 0 0 calc((100% - 32px) / 3);   /* 3 across, 16px gaps */
  scroll-snap-align: start;
  border-radius: 16px;
}
.vid-arrow {
  position: absolute; top: 50%; transform: translateY(-50%);
  width: 46px; height: 46px; border-radius: 50%;
  background: var(--white); border: 1px solid rgba(18,19,26,.1);
  box-shadow: 0 8px 24px rgba(18,19,26,.14);
  display: flex; align-items: center; justify-content: center;
  color: var(--indigo); cursor: pointer; z-index: 3;
  transition: background .2s, color .2s, opacity .2s;
}
.vid-arrow:hover { background: var(--ochre); color: var(--indigo); }
.vid-arrow-prev { left: -14px; }
.vid-arrow-next { right: -14px; }
.vid-arrow:disabled { opacity: 0; pointer-events: none; }
@media (max-width: 900px) {
  .vid-track .infl-card { flex: 0 0 calc((100% - 16px) / 2); }  /* 2 across */
}
@media (max-width: 600px) {
  .vid-track .infl-card { flex: 0 0 84%; }                       /* 1-ish */
  .vid-arrow { display: none; }
}

/* ════════════════════════════════════════════════
   INTRO — image-left / text-right layout
   ════════════════════════════════════════════════ */
.intro-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 56px;
  align-items: center;
}
.intro-visual {
  position: relative;
  border-radius: 14px;
  overflow: visible;
  aspect-ratio: 850 / 612;
}
.intro-visual img { width: 100%; height: 100%; object-fit: cover; display: block; border-radius: 14px; }
.intro-stat {
  position: absolute; left: 50%; transform: translateX(-50%); bottom: -28px;
  width: max-content; max-width: calc(100% - 36px);
  background: rgba(255, 255, 255, .94);
  backdrop-filter: blur(5px);
  border-radius: 14px; padding: 15px 18px;
  display: inline-flex; align-items: center; gap: 14px;
  box-shadow: 0 10px 30px rgba(18, 19, 26, .12);
  z-index: 1;
}
.intro-stat strong {
  font-family: 'Outfit', sans-serif; font-size: 32px; font-weight: 800;
  color: var(--maroon); line-height: 1; letter-spacing: -0.025em; flex: 0 0 auto;
}
.intro-stat span { font-size: 13px; line-height: 1.42; color: var(--ink); }
.intro-head { text-align: center; margin: 0 0 44px; }
.intro-copy { max-width: 620px; }
.intro-copy .intro-lead { text-align: left; font-size: 16px; line-height: 1.72; }
.intro-copy .intro-lead:last-child { margin-bottom: 0; }

@media (max-width: 880px) {
  .intro-grid { grid-template-columns: 1fr; gap: 30px; }
  .intro-visual { aspect-ratio: 850 / 612; }
  .intro-copy { max-width: none; }
}

/* ── Registration form: radio / checkbox choices ── */
.reg-choice-row { display: flex; gap: 28px; flex-wrap: wrap; }
.reg-choice-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px 24px; }
.reg-choice { display: flex; align-items: center; gap: 9px; font-size: 14px; color: var(--ink); cursor: pointer; }
.reg-choice input { accent-color: var(--ochre); width: 16px; height: 16px; flex: 0 0 auto; margin: 0; }
@media (max-width: 560px) { .reg-choice-grid { grid-template-columns: 1fr; } }

/* ── Contact Form 7 registration form — match the static design ── */
/* CF7 wraps every control in <p>…</p> with a <br> after the label — neutralise that */
.reg-cf7 p { margin: 0; }
.reg-cf7 br { display: none; }
.reg-cf7 .reg-field { margin-bottom: 20px; }
.reg-cf7 .reg-label { margin-bottom: 8px; }
.reg-cf7 .reg-grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-bottom: 20px; }
.reg-cf7 .reg-grid-2 .reg-field { margin-bottom: 0; }
/* inputs fill the field width */
.reg-cf7 .wpcf7-form-control-wrap { display: block; }
.reg-cf7 .newsletter-input { width: 100%; }
.reg-cf7 textarea.newsletter-input { min-height: 100px; resize: vertical; }
/* radio / checkbox groups — CF7 wraps the whole group in one <p>, so the outer
   wrapper must be full-width block; the inner list controls the columns */
.reg-cf7 .reg-choice-row,
.reg-cf7 .reg-choice-grid { display: block; }
.reg-cf7 .reg-choice-row .wpcf7-radio { display: flex; gap: 28px; flex-wrap: wrap; }
.reg-cf7 .reg-choice-grid .wpcf7-checkbox { display: grid; grid-template-columns: 1fr; gap: 14px; }
.reg-cf7 .wpcf7-list-item { margin: 0 !important; }
.reg-cf7 .wpcf7-list-item label { display: flex; align-items: flex-start; gap: 9px; margin: 0; cursor: pointer; }
.reg-cf7 .wpcf7-list-item .wpcf7-list-item-label { font-size: 14px; font-weight: 400; line-height: 1.35; color: var(--ink); }
.reg-cf7 .wpcf7-list-item input { accent-color: var(--ochre); width: 16px !important; height: 16px !important; min-width: 16px; flex: 0 0 16px; margin: 1px 0 0 !important; padding: 0; }
/* submit + feedback */
.reg-cf7 .newsletter-submit { width: 100%; padding: 16px; font-size: 15px; border-radius: 12px; margin-top: 4px; }
/* spinner hidden — the original static form had none */
.reg-cf7 .wpcf7-spinner { display: none !important; }
.reg-cf7 .wpcf7-not-valid-tip { color: #c0392b; font-size: 12px; margin-top: 6px; display: block; }
.reg-cf7 .wpcf7-response-output { margin: 18px 0 0 !important; border-radius: 10px; font-size: 14px; padding: 12px 16px !important; }
@media (max-width: 560px) {
  .reg-cf7 .reg-grid-2,
  .reg-cf7 .reg-choice-grid .wpcf7-checkbox { grid-template-columns: 1fr; }
}

/* ── WordPress admin bar: keep the fixed header below it (logged-in views) ── */
.admin-bar #hdr { top: 32px; }
.admin-bar #drawer { top: 32px; }
@media screen and (max-width: 782px) {
  .admin-bar #hdr { top: 46px; }
  .admin-bar #drawer { top: 46px; }
}

/* ════════════════════════════════════════════════
   AGENDA AT A GLANCE — tabbed by day (client agenda, June 2026)
   ════════════════════════════════════════════════ */
.ag2-tabbed {
  margin-top: 44px;
  background: var(--white); border: 1px solid rgba(18,19,26,.08);
  border-radius: 20px; box-shadow: 0 10px 34px rgba(18,19,26,.05);
  overflow: hidden;
}
/* Day tabs */
.ag2-tabs {
  display: flex; border-bottom: 1px solid rgba(18,19,26,.08);
  overflow-x: auto; scrollbar-width: none; -ms-overflow-style: none;
}
.ag2-tabs::-webkit-scrollbar { display: none; }
.ag2-tab {
  flex: 1 1 0; min-width: 132px;
  display: flex; flex-direction: column; gap: 4px; align-items: flex-start;
  padding: 17px 22px; background: #faf7f1;
  border: none; border-right: 1px solid rgba(18,19,26,.06);
  border-bottom: 3px solid transparent;
  cursor: pointer; text-align: left; transition: background .2s;
}
.ag2-tab:last-child { border-right: none; }
.ag2-tab:hover { background: #f3eee4; }
.ag2-tab.active { background: var(--white); border-bottom-color: var(--ochre); }
.ag2-tab-date {
  font-family: 'Outfit', sans-serif; font-weight: 500; font-size: 18px;
  letter-spacing: -0.02em; color: var(--ink);
}
.ag2-tab.active .ag2-tab-date { color: var(--maroon); }
.ag2-tab-loc {
  font-family: 'DM Sans', sans-serif; font-size: 10px; font-weight: 700;
  letter-spacing: .14em; text-transform: uppercase; color: var(--mid); line-height: 1.35;
}
.ag2-tab.active .ag2-tab-loc { color: var(--ochre); }
/* Panels */
.ag2-panels { padding: 38px 40px; }
.ag2-panel { display: none; }
.ag2-panel.active { display: block; animation: ag2Fade .35s ease; }
@keyframes ag2Fade { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: none; } }
.ag2-panel-head { margin-bottom: 4px; }
.ag2-title {
  font-family: 'Outfit', sans-serif; font-weight: 400; font-size: 28px;
  letter-spacing: -0.025em; color: var(--ink); line-height: 1.22;
}
.ag2-subtitle { margin-top: 8px; font-family: 'DM Sans', sans-serif; font-size: 14px; font-weight: 600; letter-spacing: .01em; color: var(--ochre); }
.ag2-desc { margin-top: 14px; font-family: 'DM Sans', sans-serif; font-size: 15px; line-height: 1.7; color: var(--mid); max-width: 760px; }
.ag2-cols { display: grid; grid-template-columns: 1fr 1fr; gap: 36px; margin-top: 26px; }
.ag2-col-label {
  display: block; font-family: 'DM Sans', sans-serif; font-size: 10px; font-weight: 700;
  letter-spacing: .18em; text-transform: uppercase; color: var(--ochre); margin-bottom: 14px;
}
.ag2-list { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 10px; }
.ag2-list li {
  position: relative; padding-left: 20px; font-size: 14px; line-height: 1.5; color: var(--ink);
}
.ag2-list li::before {
  content: ''; position: absolute; left: 2px; top: 7px;
  width: 7px; height: 7px; border-radius: 50%; background: var(--ochre);
}
.ag2-list li strong { display: block; font-weight: 700; color: var(--ink); }
.ag2-list li .ag2-sub { display: block; margin-top: 3px; font-size: 13px; line-height: 1.55; color: var(--mid); }

/* National Convergence tracks */
.ag2-tracks { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; margin-top: 24px; }
.ag2-track { background: #faf7f1; border: 1px solid rgba(18,19,26,.07); border-radius: 14px; padding: 20px; }
.ag2-track-name {
  font-family: 'Outfit', sans-serif; font-weight: 500; font-size: 17px;
  letter-spacing: -0.02em; color: var(--ink); margin-bottom: 8px;
}
.ag2-track-intro { font-size: 13px; line-height: 1.55; color: var(--mid); margin-bottom: 16px; }
.ag2-session { padding-top: 12px; border-top: 1px solid rgba(18,19,26,.07); margin-top: 12px; }
.ag2-session:first-of-type { border-top: none; padding-top: 0; margin-top: 0; }
.ag2-session-title { font-size: 14px; font-weight: 600; color: var(--ink); line-height: 1.35; }
.ag2-format {
  display: inline-block; margin-top: 6px; font-size: 11px; font-weight: 600;
  color: var(--ochre); background: rgba(255,160,2,.12); padding: 3px 9px; border-radius: 20px;
}
.ag2-note { text-align: center; margin-top: 28px; font-size: 13px; font-weight: 600; letter-spacing: .04em; color: var(--mid); text-transform: uppercase; }

@media (max-width: 880px) {
  .ag2-tab { min-width: 120px; flex: 0 0 auto; }
  .ag2-panels { padding: 26px 22px; }
  .ag2-cols { grid-template-columns: 1fr; gap: 22px; }
  .ag2-tracks { grid-template-columns: 1fr; }
}

/* ── Homepage: hide header logo at top (hero shows the big logo); reveal on scroll ── */
#logo-link { transition: opacity .3s ease, visibility .3s ease; }
#hdr.hdr-home:not(.scrolled) #logo-link { opacity: 0; visibility: hidden; pointer-events: none; }
