:root {
  --bg: #f6f4ee;
  --bg-2: #efece3;
  --ink: #1a1a1a;
  --ink-2: #2b2b2b;
  --muted: #5e5b55;
  --line: #e4dfd2;
  --red: #a3202d;
  --red-2: #8a1a25;
  --teal: #2f5a63;
  --teal-2: #264d55;
  --amber: #f6c552;
  --amber-2: #f2b232;
  --cream: #fff9e6;
  --shadow: 0 20px 40px -18px rgba(30, 20, 10, .18);
  --radius: 22px;
  --radius-sm: 14px;
  --serif: "Poppins", -apple-system, "Segoe UI", Roboto, sans-serif;
  --sans: "Poppins", -apple-system, "Segoe UI", Roboto, sans-serif;
}

* {
  box-sizing: border-box
}

html {
  scroll-behavior: smooth
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

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

/* ---------- NAV ---------- */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: saturate(140%) blur(10px);
  background: rgba(246, 244, 238, .72);
  transition: box-shadow .3s ease, background .3s ease;
  border-bottom: 1px solid transparent;
}

.nav.scrolled {
  background: rgba(246, 244, 238, .92);
  border-bottom-color: var(--line);
}

.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 16px 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--serif);
  font-weight: 700;
  font-size: 18px;
  letter-spacing: -.01em
}

.brand-mark {
  width: 14px;
  height: 14px;
  background: var(--red);
  border-radius: 4px;
  transform: rotate(45deg)
}

.brand-text em {
  font-style: normal;
  color: var(--muted);
  font-weight: 500;
  margin-left: 4px;
  font-size: 14px
}

.nav nav {
  display: flex;
  align-items: center;
  gap: 26px;
  font-size: 14.5px;
  font-weight: 500;
  color: var(--ink-2)
}

.nav nav a {
  position: relative;
  padding: 6px 0;
  transition: color .2s
}

.nav nav a:hover {
  color: var(--red)
}

.nav-cta {
  background: var(--ink);
  color: #fff !important;
  padding: 9px 18px !important;
  border-radius: 999px;
  transition: transform .2s, background .2s;
}

.nav-cta:hover {
  background: var(--red);
  transform: translateY(-1px)
}

@media(max-width:640px) {
  .nav nav a:not(.nav-cta) {
    display: none
  }
}

/* ---------- HERO ---------- */
.hero {
  position: relative;
  padding: 56px 28px 40px;
  overflow: hidden;
}

.grid-bg {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(0, 0, 0, .045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 0, 0, .045) 1px, transparent 1px);
  background-size: 36px 36px;
  mask-image: radial-gradient(ellipse at 60% 40%, #000 40%, transparent 80%);
  pointer-events: none;
}

.hero-inner {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 56px;
  align-items: center;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #fff;
  border: 1px solid var(--line);
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 12.5px;
  letter-spacing: .14em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--ink-2);
  box-shadow: var(--shadow);
}

.eyebrow .dot {
  width: 8px;
  height: 8px;
  background: var(--red);
  border-radius: 50%;
  box-shadow: 0 0 0 4px rgba(163, 32, 45, .15)
}

.hero h1 {
  font-family: var(--serif);
  font-weight: 800;
  font-size: clamp(44px, 7vw, 92px);
  line-height: .95;
  letter-spacing: -.03em;
  margin: 22px 0 18px;
  color: var(--ink);
}

.hero h1 .amp {
  color: var(--red);
  font-style: italic;
  font-weight: 600
}

.hero-quote {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 500;
  font-size: clamp(20px, 2.2vw, 26px);
  color: var(--teal);
  border-left: 3px solid var(--red);
  padding-left: 16px;
  margin: 0 0 22px;
}

.hero-lede {
  font-size: 17px;
  color: var(--muted);
  max-width: 560px;
  margin: 0 0 30px
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 36px
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 24px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 15px;
  letter-spacing: .01em;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease, color .2s ease;
  border: 1px solid transparent;
  cursor: pointer;
}

.btn-primary {
  background: var(--ink);
  color: #fff;
  box-shadow: var(--shadow)
}

.btn-primary:hover {
  background: var(--red);
  transform: translateY(-2px);
  box-shadow: 0 24px 40px -18px rgba(163, 32, 45, .4)
}

.btn-ghost {
  background: transparent;
  color: var(--ink);
  border-color: var(--ink)
}

.btn-ghost:hover {
  background: var(--ink);
  color: #fff
}

.hero-meta {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  border-top: 1px solid var(--line);
  padding-top: 24px;
  max-width: 640px;
}

.hero-meta>div {
  padding: 0 20px;
  border-left: 1px solid var(--line)
}

.hero-meta>div:first-child {
  padding-left: 0;
  border-left: 0
}

.hm-label {
  display: block;
  font-size: 12px;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 6px
}

.hm-value {
  display: block;
  font-family: var(--serif);
  font-weight: 600;
  font-size: 16px;
  color: var(--ink);
  line-height: 1.3
}

/* Hero card */
.hero-card {
  position: relative
}

.lecture-portrait {
  position: relative;
  margin: 0;
  background: linear-gradient(160deg, var(--teal), var(--teal-2));
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 40px 80px -30px rgba(30, 20, 10, .35);
  aspect-ratio: 4/5;
}

.lecture-portrait img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: bottom center;
  filter: grayscale(1) contrast(1.05);
}

.lecture-portrait::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 10%, rgba(255, 255, 255, .08), transparent 40%),
    linear-gradient(180deg, transparent 55%, rgba(0, 0, 0, .35));
  pointer-events: none;
}

.lecture-portrait figcaption {
  position: absolute;
  left: 20px;
  bottom: 22px;
  color: #fff;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.lecture-portrait .tag {
  align-self: flex-start;
  background: var(--red);
  color: #fff;
  padding: 6px 12px;
  border-radius: 6px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
}

.lecture-portrait figcaption strong {
  font-family: var(--serif);
  font-weight: 700;
  font-size: 26px;
  letter-spacing: -.01em
}

.date-tag {
  position: absolute;
  top: -18px;
  right: -14px;
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 14px 18px;
  text-align: center;
  box-shadow: var(--shadow);
  transform: rotate(4deg);
}

.date-tag span {
  font-family: var(--serif);
  font-weight: 900;
  font-size: 36px;
  color: var(--red);
  display: block;
  line-height: 1
}

.date-tag em {
  font-style: normal;
  font-size: 11px;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--muted)
}

.chevrons {
  position: absolute;
  left: 32px;
  bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  opacity: .4;
}

.chevrons span {
  width: 22px;
  height: 8px;
  border-right: 2px solid var(--ink);
  border-bottom: 2px solid var(--ink);
  transform: rotate(45deg);
}

@media(max-width:900px) {
  .hero {
    padding-top: 36px
  }

  .hero-inner {
    grid-template-columns: 1fr;
    gap: 44px
  }

  .date-tag {
    top: 14px;
    right: 14px
  }

  .chevrons {
    display: none
  }
}

@media(max-width:520px) {
  .hero-meta {
    grid-template-columns: 1fr;
    gap: 16px
  }

  .hero-meta>div {
    padding: 0;
    border-left: 0;
    border-top: 1px solid var(--line);
    padding-top: 16px
  }

  .hero-meta>div:first-child {
    border-top: 0;
    padding-top: 0
  }
}

/* ---------- SECTIONS ---------- */
.section {
  max-width: 1200px;
  margin: 0 auto;
  padding: 96px 28px
}

.section-head {
  max-width: 720px;
  margin-bottom: 52px
}

.kicker {
  display: inline-block;
  font-size: 12px;
  letter-spacing: .24em;
  text-transform: uppercase;
  color: var(--red);
  font-weight: 700;
  margin-bottom: 16px;
}

.kicker.light {
  color: var(--amber)
}

.section-head h2 {
  font-family: var(--serif);
  font-weight: 700;
  font-size: clamp(32px, 4.5vw, 56px);
  line-height: 1.02;
  letter-spacing: -.02em;
  margin: 0;
}

/* ---------- ABOUT ---------- */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 44px
}

.about-grid p {
  font-size: 18px;
  color: var(--ink-2);
  margin: 0;
  line-height: 1.65
}

.about-grid p strong {
  color: var(--ink);
  font-weight: 600
}

.about-grid p em {
  font-family: var(--serif);
  color: var(--red);
  font-weight: 600
}

@media(max-width:760px) {
  .about-grid {
    grid-template-columns: 1fr;
    gap: 24px
  }
}

/* ---------- SPEAKERS ---------- */
.speaker-block {
  margin-top: 56px
}

.speaker-block:first-of-type {
  margin-top: 0
}

.block-title {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 28px;
  flex-wrap: wrap
}

.block-title h3 {
  font-family: var(--serif);
  font-size: 22px;
  margin: 0;
  font-weight: 600;
  color: var(--ink)
}

.chip {
  display: inline-block;
  padding: 6px 14px;
  border-radius: 6px;
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.chip-red {
  background: var(--red);
  color: #fff
}

.chip-amber {
  background: var(--amber);
  color: #3a2a08
}

.lecture-featured {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 40px;
  align-items: center;
  background: #fff;
  border: 1px solid var(--line);
  padding: 32px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.lf-photo {
  aspect-ratio: 1/1;
  border-radius: var(--radius-sm);
  overflow: hidden;
  background: linear-gradient(160deg, var(--teal), var(--teal-2));
  position: relative;
}

.lf-photo img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  filter: grayscale(1) contrast(1.05)
}

.lf-name {
  font-family: var(--serif);
  font-weight: 700;
  font-size: 32px;
  margin: 0 0 6px;
  letter-spacing: -.01em
}

.lf-role {
  color: var(--red);
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  font-size: 12px;
  margin: 0 0 16px
}

.lf-note {
  color: var(--muted);
  font-size: 16.5px;
  margin: 0;
  max-width: 520px
}

@media(max-width:720px) {
  .lecture-featured {
    grid-template-columns: 1fr;
    padding: 24px;
    gap: 24px
  }

  .lf-photo {
    max-width: 220px
  }
}

.speaker-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 22px;
}

/* On phones, stack the Narasumber cards vertically (one per row). */
@media(max-width:560px) {
  .speaker-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }
}

.speaker-card {
  background: #fff;
  border: 1px solid var(--line);
  padding: 20px;
  border-radius: var(--radius);
  text-align: center;
  transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
}

.speaker-card:hover {
  transform: translateY(-6px);
  border-color: transparent;
  box-shadow: 0 30px 60px -30px rgba(30, 20, 10, .28);
}

.sc-photo {
  width: 100%;
  aspect-ratio: 1/1;
  border-radius: 16px;
  overflow: hidden;
  background: linear-gradient(160deg, var(--teal), var(--teal-2));
  margin-bottom: 16px;
  position: relative;
}

.sc-photo img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  filter: grayscale(1) contrast(1.05)
}

.speaker-card h4 {
  font-family: var(--serif);
  font-size: 19px;
  font-weight: 600;
  letter-spacing: -.01em;
  margin: 0 0 6px;
  color: var(--ink);
  line-height: 1.2;
  min-height: 2.4em;
}

.speaker-card p {
  margin: 0;
  font-size: 13px;
  color: var(--muted);
  letter-spacing: .08em;
  text-transform: uppercase;
  font-weight: 600
}

.host-card {
  background: var(--cream);
  border-color: #f0e5c5
}

/* ---------- FORUM ---------- */
.forum {
  background: #fff;
  border-radius: var(--radius);
  margin: 0 auto;
  max-width: none;
  padding: 0
}

.forum-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 96px 28px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.forum-copy .kicker {
  color: var(--red)
}

.forum-copy h2 {
  font-family: var(--serif);
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1.05;
  margin: 0 0 20px;
  letter-spacing: -.02em;
  font-weight: 700
}

.forum-copy p {
  font-size: 17px;
  color: var(--muted);
  margin: 0
}

.forum-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 2px
}

.forum-list li {
  display: grid;
  grid-template-columns: 96px 1fr;
  gap: 24px;
  padding: 20px 0;
  border-top: 1px solid var(--line);
}

.forum-list li:last-child {
  border-bottom: 1px solid var(--line)
}

.fl-time {
  font-family: var(--serif);
  font-size: 26px;
  font-weight: 700;
  color: var(--red);
  letter-spacing: -.01em
}

.fl-body {
  font-size: 15.5px;
  color: var(--ink-2);
  line-height: 1.5
}

.fl-body strong {
  font-family: var(--serif);
  font-size: 18px;
  font-weight: 600;
  color: var(--ink)
}

@media(max-width:760px) {
  .forum-inner {
    grid-template-columns: 1fr;
    gap: 32px;
    padding: 64px 24px
  }

  .forum-list li {
    grid-template-columns: 72px 1fr;
    gap: 16px
  }
}

/* ---------- REGISTER ---------- */
.register {
  padding-top: 96px;
  padding-bottom: 96px
}

.register-card {
  position: relative;
  overflow: hidden;
  background: linear-gradient(160deg, var(--red) 0%, var(--red-2) 100%);
  color: #fff;
  border-radius: 32px;
  padding: 80px 56px;
  text-align: center;
  box-shadow: 0 60px 100px -40px rgba(163, 32, 45, .5);
}

.rc-dots {
  position: absolute;
  top: -40px;
  right: -40px;
  width: 260px;
  height: 180px;
  background-image: radial-gradient(rgba(255, 255, 255, .22) 2px, transparent 2px);
  background-size: 22px 22px;
  transform: rotate(12deg);
  pointer-events: none;
}

.register-card::after {
  content: "";
  position: absolute;
  bottom: -80px;
  left: -60px;
  width: 260px;
  height: 260px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 255, 255, .08), transparent 70%);
}

.register-card h2 {
  font-family: var(--serif);
  font-weight: 700;
  font-size: clamp(34px, 4.4vw, 54px);
  line-height: 1.05;
  letter-spacing: -.02em;
  margin: 0 auto 20px;
  max-width: 720px;
}

.register-card>p {
  max-width: 560px;
  margin: 0 auto 40px;
  color: rgba(255, 255, 255, .85);
  font-size: 17px
}

.btn-huge {
  background: var(--amber);
  color: #3a2a08;
  padding: 22px 44px;
  font-size: 19px;
  box-shadow: 0 24px 40px -14px rgba(0, 0, 0, .35);
  position: relative;
}

.btn-huge:hover {
  background: #fff;
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 32px 50px -14px rgba(0, 0, 0, .4);
}

.rc-link {
  margin: 28px 0 0;
  font-size: 14px;
  color: rgba(255, 255, 255, .75)
}

.rc-link code {
  background: rgba(255, 255, 255, .14);
  padding: 4px 10px;
  border-radius: 6px;
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 13px;
}

.rc-contact {
  margin-top: 56px;
  padding-top: 32px;
  border-top: 1px solid rgba(255, 255, 255, .18);
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
  font-size: 14.5px;
  color: rgba(255, 255, 255, .85);
}

.rc-contact>span {
  font-size: 12px;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--amber);
  font-weight: 700
}

.rc-contact strong {
  color: #fff;
  font-weight: 600
}

@media(max-width:640px) {
  .register-card {
    padding: 56px 26px;
    border-radius: 24px
  }

  .btn-huge {
    padding: 18px 30px;
    font-size: 16.5px
  }

  .rc-contact {
    gap: 16px 24px
  }
}

/* ---------- FOOTER ---------- */
.footer {
  background: var(--ink);
  color: rgba(255, 255, 255, .7);
  padding: 44px 28px;
  margin-top: 40px
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
  font-size: 14px
}

.foot-quote {
  font-family: var(--serif);
  font-style: italic;
  color: rgba(255, 255, 255, .85)
}

/* ---------- REVEAL ---------- */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .8s ease, transform .8s ease
}

.reveal.is-visible {
  opacity: 1;
  transform: none
}

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

  html {
    scroll-behavior: auto
  }
}
/* ============================================================
   DETAIL PAGE (Kerangka Acuan / TOR)
   ============================================================ */
.detail-hero {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  padding: 140px 28px 40px;
  overflow: hidden;
}

.detail-hero-inner {
  position: relative;
  z-index: 1;
  max-width: 840px;
}

.back-link {
  display: inline-block;
  color: var(--red);
  font-weight: 600;
  font-size: 14px;
  text-decoration: none;
  margin-bottom: 22px;
  transition: opacity .2s ease;
}

.back-link:hover {
  opacity: .65
}

.detail-hero h1 {
  font-family: var(--serif);
  font-weight: 800;
  font-size: clamp(40px, 6vw, 72px);
  line-height: 1.02;
  letter-spacing: -.03em;
  margin: 10px 0 20px;
}

.detail-lede {
  font-size: 19px;
  color: var(--ink-2);
  line-height: 1.6;
  max-width: 680px;
  margin: 0 0 34px;
}

.detail-lede strong {
  color: var(--red);
  font-weight: 600
}

/* Section rhythm on the detail page */
.tor-section {
  padding-top: 60px;
  padding-bottom: 60px;
}

.tor-section .section-head {
  margin-bottom: 32px
}

.section-note {
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 15px;
}

.section-note strong {
  color: var(--ink)
}

/* Long-form prose */
.tor-prose {
  max-width: 820px
}

.tor-prose p {
  font-size: 17px;
  line-height: 1.75;
  color: var(--ink-2);
  margin: 0 0 18px;
  text-align: justify;
}

.tor-prose p:last-child {
  margin-bottom: 0
}

.tor-prose .tor-lead {
  font-weight: 600;
  color: var(--ink);
  text-align: left;
}

/* Goals */
.goal-list {
  max-width: 900px;
  list-style: none;
  counter-reset: goal;
  margin: 8px 0 0;
  padding: 0;
  display: grid;
  gap: 16px;
}

.goal-list li {
  counter-increment: goal;
  position: relative;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 22px 24px 22px 68px;
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink-2);
  box-shadow: var(--shadow);
}

.goal-list li::before {
  content: counter(goal);
  position: absolute;
  left: 20px;
  top: 20px;
  width: 34px;
  height: 34px;
  border-radius: 9px;
  background: var(--red);
  color: #fff;
  font-weight: 700;
  font-family: var(--serif);
  display: grid;
  place-items: center;
  font-size: 16px;
}

/* Topic (Public Lecture / Dialog) cards */
.topic-list {
  display: grid;
  gap: 22px;
}

.topic-item {
  display: grid;
  grid-template-columns: 132px 1fr;
  gap: 26px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 26px;
  box-shadow: var(--shadow);
}

.ti-photo {
  width: 132px;
  height: 132px;
  border-radius: 16px;
  overflow: hidden;
  background: linear-gradient(160deg, var(--teal), var(--teal-2));
  position: relative;
}

.ti-photo img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  filter: grayscale(1) contrast(1.05);
}

.ti-body {
  min-width: 0
}

.ti-body h3 {
  font-family: var(--serif);
  font-size: 21px;
  font-weight: 700;
  letter-spacing: -.01em;
  margin: 12px 0 2px;
  color: var(--ink);
  display: flex;
  align-items: center;
  gap: 12px;
}

.ti-num {
  flex: none;
  width: 28px;
  height: 28px;
  border-radius: 8px;
  background: var(--teal);
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  display: grid;
  place-items: center;
}

.ti-degree {
  margin: 0 0 12px;
  font-size: 12px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 600;
}

.ti-topic {
  font-family: var(--serif);
  font-size: 17px;
  font-weight: 600;
  color: var(--red);
  margin: 0 0 14px;
  line-height: 1.35;
}

.ti-body p:not(.ti-degree):not(.ti-topic) {
  font-size: 15.5px;
  line-height: 1.7;
  color: var(--ink-2);
  margin: 0 0 12px;
  text-align: justify;
}

.ti-body p:last-child {
  margin-bottom: 0
}

/* Daring list */
.daring-list {
  max-width: 900px;
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 14px;
}

.daring-list li {
  position: relative;
  padding: 4px 0 4px 30px;
  font-size: 16.5px;
  line-height: 1.7;
  color: var(--ink-2);
}

.daring-list li::before {
  content: "";
  position: absolute;
  left: 4px;
  top: 13px;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--teal);
}

/* Rundown table */
.rundown-wrap {
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  background: #fff;
}

.rundown-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 560px;
}

.rundown-table thead th {
  text-align: left;
  background: var(--teal);
  color: #fff;
  font-size: 12px;
  letter-spacing: .12em;
  text-transform: uppercase;
  padding: 16px 20px;
  font-weight: 700;
}

.rundown-table td {
  padding: 16px 20px;
  border-top: 1px solid var(--line);
  font-size: 15px;
  color: var(--ink-2);
  vertical-align: top;
}

.rundown-table tbody tr:nth-child(even) td,
.rundown-table tbody tr:nth-child(even) td {
  background: var(--bg-2)
}

.rt-no {
  width: 48px;
  font-weight: 700;
  color: var(--red);
  font-family: var(--serif);
}

.rt-time {
  white-space: nowrap;
  font-weight: 600;
  color: var(--ink);
}

.rt-note {
  display: block;
  color: var(--muted);
  font-size: 13px;
  margin-top: 4px;
}

@media(max-width:640px) {
  .detail-hero {
    padding-top: 116px
  }

  .topic-item {
    grid-template-columns: 1fr;
    gap: 18px;
    padding: 20px;
  }

  .ti-photo {
    width: 96px;
    height: 96px;
  }

  .ti-body h3 {
    margin-top: 0
  }

  .tor-prose p,
  .ti-body p:not(.ti-degree):not(.ti-topic) {
    text-align: left
  }
}

/* ============================================================
   PARTNERS / SUPPORTER LOGOS
   ============================================================ */
.partners-head {
  text-align: center;
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}

.logo-wall {
  display: flex;
  gap: 18px;
  overflow-x: auto;
  scroll-snap-type: x proximity;
  padding: 6px 4px 20px;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
  scrollbar-color: var(--teal) transparent;
}

.logo-wall::-webkit-scrollbar {
  height: 8px;
}

.logo-wall::-webkit-scrollbar-thumb {
  background: var(--teal);
  border-radius: 8px;
}

.logo-wall::-webkit-scrollbar-track {
  background: var(--line);
  border-radius: 8px;
}

.logo-item {
  flex: 0 0 auto;
  width: 200px;
  scroll-snap-align: start;
  display: grid;
  place-items: center;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 22px;
  min-height: 120px;
  transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
}

.logo-item:hover {
  transform: translateY(-4px);
  border-color: transparent;
  box-shadow: 0 24px 44px -26px rgba(30, 20, 10, .3);
}

.logo-item img {
  max-width: 100%;
  max-height: 72px;
  width: auto;
  height: auto;
  object-fit: contain;
  filter: grayscale(1);
  opacity: .72;
  transition: filter .3s ease, opacity .3s ease;
}

.logo-item:hover img {
  filter: grayscale(0);
  opacity: 1;
}

.site-credit {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  margin-top: 26px;
  padding-top: 26px;
  border-top: 1px solid var(--line);
}

.site-credit-label {
  font-size: .8rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--muted, #6b7280);
}

.site-credit-logo {
  height: 40px;
  width: auto;
  object-fit: contain;
}

/* ============================================================
   NETERRA POPUP AD (auto-dismisses)
   ============================================================ */
.ad-pop-backdrop {
  position: fixed;
  inset: 0;
  z-index: 119;
  background: rgba(20, 14, 8, .45);
  opacity: 0;
  pointer-events: none;
  transition: opacity .4s ease;
}

.ad-pop-backdrop.is-open {
  opacity: 1;
  pointer-events: auto;
}

.ad-pop {
  position: fixed;
  top: 50%;
  left: 50%;
  z-index: 120;
  width: 420px;
  max-width: calc(100vw - 32px);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  box-shadow: 0 40px 80px -28px rgba(20, 14, 8, .55);
  overflow: hidden;
  opacity: 0;
  transform: translate(-50%, -50%) scale(.94);
  pointer-events: none;
  transition: opacity .4s ease, transform .4s cubic-bezier(.2, .8, .3, 1);
}

.ad-pop.is-open {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
  pointer-events: auto;
}

.ad-pop-link {
  display: block;
  text-decoration: none;
  color: inherit;
}

.ad-pop-shot {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  object-position: top center;
  background: var(--line);
}

.ad-pop-body {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 6px;
  padding: 14px 16px 16px;
}

.ad-pop-logo {
  height: 26px;
  width: auto;
}

.ad-pop-text {
  font-size: .78rem;
  line-height: 1.35;
  color: var(--muted, #6b7280);
}

.ad-pop-close {
  position: absolute;
  top: 8px;
  right: 8px;
  z-index: 2;
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  border: 0;
  border-radius: 50%;
  cursor: pointer;
  font-size: 20px;
  line-height: 1;
  color: #fff;
  background: rgba(20, 14, 8, .55);
  transition: background .25s ease;
}

.ad-pop-close:hover {
  background: rgba(20, 14, 8, .8);
}

@media (max-width:520px) {
  .ad-pop {
    width: 300px;
  }
}

@media (prefers-reduced-motion: reduce) {

  .ad-pop,
  .ad-pop-backdrop {
    transition: opacity .2s ease;
  }

  .ad-pop,
  .ad-pop.is-open {
    transform: translate(-50%, -50%);
  }
}

@media(max-width:520px) {
  .logo-wall {
    gap: 12px;
  }

  .logo-item {
    width: 150px;
    padding: 16px;
    min-height: 96px;
  }

  .logo-item img {
    max-height: 56px;
  }
}

/* ============================================================
   CLICKABLE SPEAKER CARDS + PROFILE MODAL
   ============================================================ */
.speaker-card.is-clickable,
.lecture-featured.is-clickable {
  cursor: pointer;
}

.speaker-card.is-clickable:focus-visible,
.lecture-featured.is-clickable:focus-visible {
  outline: 3px solid var(--teal);
  outline-offset: 3px;
}

/* Persistent "click me" hint */
.sc-hint {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  margin-top: 12px;
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: .04em;
  color: var(--red);
  transition: gap .25s ease;
}

.lecture-featured .sc-hint {
  margin-top: 18px;
  font-size: 14px;
}

.speaker-card.is-clickable:hover .sc-hint,
.lecture-featured.is-clickable:hover .sc-hint {
  gap: 9px;
}

/* Info badge on the photo */
.sc-badge {
  position: absolute;
  top: 10px;
  right: 10px;
  z-index: 3;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .92);
  color: var(--teal);
  font-family: var(--serif);
  font-weight: 700;
  font-style: italic;
  font-size: 15px;
  display: grid;
  place-items: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, .18);
}

/* Hover overlay on the photo */
.sc-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: grid;
  place-items: center;
  background: linear-gradient(180deg, rgba(47, 90, 99, .1), rgba(38, 77, 85, .82));
  color: #fff;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: .08em;
  text-transform: uppercase;
  opacity: 0;
  transition: opacity .3s ease;
}

.speaker-card.is-clickable:hover .sc-overlay {
  opacity: 1;
}

/* Modal */
.profile-modal {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity .28s ease, visibility .28s ease;
}

.profile-modal.open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.pm-overlay {
  position: absolute;
  inset: 0;
  background: rgba(20, 14, 8, .55);
  backdrop-filter: blur(4px);
}

.pm-dialog {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 660px;
  max-height: 90vh;
  overflow-y: auto;
  background: var(--bg);
  border-radius: var(--radius);
  display: grid;
  grid-template-columns: 220px 1fr;
  box-shadow: 0 50px 90px -30px rgba(20, 14, 8, .6);
  transform: translateY(16px) scale(.97);
  transition: transform .3s cubic-bezier(.2, .8, .2, 1);
}

.profile-modal.open .pm-dialog {
  transform: translateY(0) scale(1);
}

.pm-photo {
  position: relative;
  background: linear-gradient(160deg, var(--teal), var(--teal-2));
  border-radius: var(--radius) 0 0 var(--radius);
  overflow: hidden;
  min-height: 260px;
}

.pm-photo img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  filter: grayscale(1) contrast(1.05);
}

.pm-body {
  padding: 40px 40px 40px 36px;
}

.pm-body .chip {
  margin-bottom: 16px;
}

.pm-body h3 {
  font-family: var(--serif);
  font-weight: 700;
  font-size: 27px;
  line-height: 1.1;
  letter-spacing: -.01em;
  margin: 0 0 18px;
  color: var(--ink);
}

.pm-body p {
  margin: 0;
  font-size: 15.5px;
  line-height: 1.75;
  color: var(--ink-2);
  text-align: justify;
}

.pm-close {
  position: absolute;
  top: 12px;
  right: 14px;
  z-index: 4;
  width: 40px;
  height: 40px;
  border: none;
  border-radius: 50%;
  background: rgba(255, 255, 255, .9);
  color: var(--ink);
  font-size: 26px;
  line-height: 1;
  cursor: pointer;
  display: grid;
  place-items: center;
  box-shadow: 0 6px 16px rgba(0, 0, 0, .2);
  transition: transform .2s ease, background .2s ease;
}

.pm-close:hover {
  transform: rotate(90deg);
  background: #fff;
}

@media(max-width:600px) {
  .pm-dialog {
    grid-template-columns: 1fr;
    max-height: 88vh;
  }

  .pm-photo {
    border-radius: var(--radius) var(--radius) 0 0;
    min-height: 240px;
    aspect-ratio: 1/1;
  }

  .pm-body {
    padding: 26px 22px 30px;
  }

  .pm-body p {
    text-align: left;
  }
}
