:root {
  --deep: #0c3222;
  --deep-2: #0f3d29;
  --forest: #155538;
  --forest-2: #1c6b46;
  --sage-1: #8fc3a1;
  --sage-2: #5a9b7a;
  --cream: #f4f8f3;
  --white: #ffffff;
  --ink: #0c2418;
  --muted: rgba(255, 255, 255, 0.72);
  --muted-dark: rgba(12, 36, 24, 0.62);
  --line: rgba(255, 255, 255, 0.14);
  --gold: #c9a24b;
  --radius: 18px;
  --shadow: 0 20px 45px rgba(9, 30, 20, 0.18);
}

a {
  text-decoration: none;
  color: inherit;
}

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

.wrap {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 32px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 18px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.28);
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--white);
}

.eyebrow.dark {
  background: rgba(12, 50, 34, 0.08);
  border-color: rgba(12, 50, 34, 0.18);
  color: var(--deep);
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 14.5px;
  border: none;
  cursor: pointer;
  transition: transform .25s ease, box-shadow .25s ease;
}

.btn-light {
  background: var(--white);
  color: var(--deep);
}

.btn-light:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.18);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 1.5px solid rgba(255, 255, 255, 0.55);
}

.btn-outline:hover {
  background: rgba(255, 255, 255, 0.12);
}


/* ===== BREADCRUMB / HERO ===== */
.session-hero {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(120deg, rgba(9, 32, 22, 0.92) 0%, rgb(5 69 39 / 87%) 55%, rgb(3 50 28 / 78%) 100%),
    radial-gradient(ellipse at 80% 20%, rgba(201, 162, 75, 0.18), transparent 55%);
  padding: 110px 0 40px;
}

.session-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    repeating-linear-gradient(115deg, rgba(255, 255, 255, 0.035) 0 2px, transparent 2px 60px);
  opacity: .5;
}

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--muted);
  font-size: 13px;
  margin-bottom: 28px;
  position: relative;
  z-index: 2;
}

.breadcrumb a {
  color: var(--muted);
}

.breadcrumb a:hover {
  color: var(--white);
}

.breadcrumb .sep {
  opacity: .5;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 48px;
  align-items: end;
  position: relative;
  z-index: 2;
}

.session-tag {
  margin-bottom: 22px;
}

.session-hero h1 {
  color: var(--white);
  font-size: clamp(32px, 4.4vw, 52px);
  font-weight: 700;
  line-height: 1.12;
  letter-spacing: -0.01em;
  max-width: 640px;
  font-size:24px;
}

.session-hero .sub {
  color: var(--muted);
  font-size: 17px;
  margin-top: 18px;
  max-width: 560px;
}

.meta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.meta-pill {
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 255, 255, 0.09);
  border: 1px solid rgba(255, 255, 255, 0.18);
  padding: 12px 18px;
  border-radius: 14px;
  color: var(--white);
  backdrop-filter: blur(6px);
}

.meta-pill .ic {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.14);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  flex-shrink: 0;
}

.meta-pill .lbl {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--muted);
}

.meta-pill .val {
  font-size: 14.5px;
  font-weight: 600;
}

.hero-card {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: var(--radius);
  padding: 28px;
  backdrop-filter: blur(8px);
  color: var(--white);
}

.hero-card h4 {
  font-size: 12px;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 16px;
  font-family: 'Inter';
  font-weight: 600;
}

.track-list {
  display: flex;
  flex-direction: column;
  gap: 13px;
  margin-bottom: 20px;
}

.track-list li {
  list-style: none;
  display: flex;
  gap: 12px;
  align-items: flex-start;
  font-size: 14.5px;
}

.track-list .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold);
  margin-top: 7px;
  flex-shrink: 0;
}

/* ===== SECTION LABEL ===== */
.section-head {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 52px;
}

.section-head .eyebrow {
  margin-bottom: 18px;
}

.section-head h2 {
  font-size: clamp(26px, 3.2vw, 38px);
  font-weight: 700;
  color: var(--deep);
}

.section-head h2 span {
  color: var(--forest-2);
}

.section-head p {
  color: var(--muted-dark);
  margin-top: 14px;
  font-size: 15.5px;
}

/* ===== AGENDA / SUBTOPICS ===== */
section.agenda {
  padding: 30px;
  background: var(--cream);
}

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

.agenda-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 28px 24px;
  box-shadow: var(--shadow);
  border: 1px solid rgba(12, 50, 34, 0.06);
  transition: transform .3s ease, box-shadow .3s ease;
}

.agenda-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 26px 50px rgba(9, 30, 20, 0.16);
}

.agenda-num {
  font-family: 'Poppins';
  font-weight: 800;
  font-size: 26px;
  color: rgba(21, 85, 56, 0.18);
  margin-bottom: 14px;
}

.agenda-card h3 {
  font-size: 17px;
  color: var(--deep);
  margin-bottom: 10px;
  line-height: 1.35;
}

.agenda-card p {
  font-size: 13.5px;
  color: var(--muted-dark);
}

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

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

/* ===== LEADERSHIP (Chair/Co-chair) ===== */
section.leadership {
  padding: 30px 0;
  position: relative;
  background: linear-gradient(180deg, var(--sage-1) 0%, var(--sage-2) 100%);
}

.lead-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.lead-card {
  background: rgba(12, 50, 34, 0.94);
  border-radius: var(--radius);
  padding: 32px;
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.lead-card::before {
  content: "";
  position: absolute;
  top: -40px;
  right: -40px;
  width: 150px;
  height: 150px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201, 162, 75, 0.18), transparent 70%);
}

.role-tag {
  display: inline-block;
  font-size: 11.5px;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 700;
  margin-bottom: 14px;
}

.lead-card h3 {
  font-size: 21px;
  margin-bottom: 6px;
  line-height: 1.3;
}

.lead-card .desig {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.72);
  margin-bottom: 16px;
}

.lead-card .org {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 13.5px;
  color: rgba(255, 255, 255, 0.85);
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  padding-top: 16px;
}

/* ===== PANEL ===== */
section.panel {
  padding: 30px 0;
  background: var(--white);
}

.panel-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.panel-card {
  background: var(--deep-2);
  border-radius: var(--radius);
  padding: 30px 26px;
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.avatar-ring {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--forest-2), var(--sage-2));
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Poppins';
  font-weight: 700;
  font-size: 18px;
  margin-bottom: 18px;
}

.panel-card .role-tag {
  margin-bottom: 10px;
}

.panel-card h4 {
  font-size: 16.5px;
  margin-bottom: 6px;
}

.panel-card p {
  font-size: 13.5px;
  color: var(--muted);
}

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

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

/* ===== SUBTOPIC SPEAKERS TABLE ===== */
section.speakers-table {
  padding: 30px 0;
  background: var(--cream);
}

.table-wrap {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
  border: 1px solid rgba(12, 50, 34, 0.06);
}

.table-head {
  background: var(--deep);
  color: var(--white);
  padding: 26px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.table-head h3 {
  font-size: 18px;
}

.table-head p {
  color: var(--muted);
  font-size: 13.5px;
  margin-top: 4px;
}

.role-row {
  display: grid;
  grid-template-columns: 170px 1fr;
  gap: 20px;
  padding: 22px 32px;
  border-bottom: 1px solid rgba(12, 50, 34, 0.07);
  align-items: center;
}

.role-row:last-child {
  border-bottom: none;
}

.role-row:nth-child(even) {
  background: rgba(21, 85, 56, 0.03);
}

.role-key {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  color: var(--forest-2);
  font-size: 14px;
}

.role-key .ic {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--forest-2);
  flex-shrink: 0;
}

.role-val {
  color: var(--ink);
  font-size: 14.5px;
}

.role-val .name {
  font-weight: 600;
}

.role-val .tbd {
  color: var(--muted-dark);
  font-style: italic;
}

.role-row.moderator .role-key {
  color: var(--gold);
}

.role-row.moderator .role-key .ic {
  background: var(--gold);
}

/* ===== CTA STRIP ===== */
section.cta-strip {
  padding: 70px 0;
  background: linear-gradient(120deg, var(--deep) 0%, var(--forest) 100%);
}

.cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.cta-inner h3 {
  color: var(--white);
  font-size: 26px;
  max-width: 480px;
}

.cta-inner p {
  color: var(--muted);
  margin-top: 8px;
  font-size: 14.5px;
}

.cta-btns {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

/* ===== FOOTER ===== */
footer.site {
  background: var(--deep-2);
  color: rgba(255, 255, 255, 0.72);
  padding: 56px 0 26px;
}

.foot-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 40px;
  padding-bottom: 36px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.foot-grid h4 {
  color: var(--white);
  font-size: 17px;
  margin-bottom: 14px;
}

.foot-grid p {
  font-size: 13.5px;
  margin-bottom: 8px;
}

.copyright {
  display: flex;
  justify-content: space-between;
  padding-top: 22px;
  font-size: 12.5px;
  flex-wrap: wrap;
  gap: 8px;
}

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

  .hero-grid {
    grid-template-columns: 1fr;
  }

  .cta-inner {
    flex-direction: column;
    align-items: flex-start;
  }
}